OSDN Git Service

2003-06-18 Stephen Clarke <stephen.clarke@superh.com>
[pf3gnuchains/gcc-fork.git] / gcc / config / sh / sh.h
1 /* Definitions of target machine for GNU compiler for Renesas / SuperH SH.
2    Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3    2003 Free Software Foundation, Inc.
4    Contributed by Steve Chamberlain (sac@cygnus.com).
5    Improved by Jim Wilson (wilson@cygnus.com).
6
7 This file is part of GNU CC.
8
9 GNU CC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
13
14 GNU CC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GNU CC; see the file COPYING.  If not, write to
21 the Free Software Foundation, 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA.  */
23
24 #ifndef GCC_SH_H
25 #define GCC_SH_H
26
27 #define TARGET_VERSION \
28   fputs (" (Hitachi SH)", stderr);
29
30 /* Unfortunately, insn-attrtab.c doesn't include insn-codes.h.  We can't
31    include it here, because bconfig.h is also included by gencodes.c .  */
32 /* ??? No longer true.  */
33 extern int code_for_indirect_jump_scratch;
34
35 #define TARGET_CPU_CPP_BUILTINS() \
36 do { \
37   builtin_define ("__sh__"); \
38   builtin_assert ("cpu=sh"); \
39   builtin_assert ("machine=sh"); \
40   switch ((int) sh_cpu) \
41     { \
42     case PROCESSOR_SH1: \
43       builtin_define ("__sh1__"); \
44       break; \
45     case PROCESSOR_SH2: \
46       builtin_define ("__sh2__"); \
47       break; \
48     case PROCESSOR_SH2E: \
49       builtin_define ("__SH2E__"); \
50       break; \
51     case PROCESSOR_SH3: \
52       builtin_define ("__sh3__"); \
53       builtin_define ("__SH3__"); \
54       if (TARGET_HARD_SH4) \
55         builtin_define ("__SH4_NOFPU__"); \
56       break; \
57     case PROCESSOR_SH3E: \
58       builtin_define (TARGET_HARD_SH4 ? "__SH4_SINGLE_ONLY__" : "__SH3E__"); \
59       break; \
60     case PROCESSOR_SH4: \
61       builtin_define (TARGET_FPU_SINGLE ? "__SH4_SINGLE__" : "__SH4__"); \
62       break; \
63     case PROCESSOR_SH5: \
64       { \
65         builtin_define_with_value ("__SH5__", \
66                                    TARGET_SHMEDIA64 ? "64" : "32", 0); \
67         builtin_define_with_value ("__SHMEDIA__", \
68                                    TARGET_SHMEDIA ? "1" : "0", 0); \
69         if (! TARGET_FPU_DOUBLE) \
70           builtin_define ("__SH4_NOFPU__"); \
71       } \
72     } \
73   if (TARGET_HITACHI) \
74     builtin_define ("__HITACHI__"); \
75   builtin_define (TARGET_LITTLE_ENDIAN \
76                   ? "__LITTLE_ENDIAN__" : "__BIG_ENDIAN__"); \
77   if (flag_pic) \
78     { \
79       builtin_define ("__pic__"); \
80       builtin_define ("__PIC__"); \
81     } \
82 } while (0)
83
84 /* We can not debug without a frame pointer.  */
85 /* #define CAN_DEBUG_WITHOUT_FP */
86
87 #define CONDITIONAL_REGISTER_USAGE do                                   \
88 {                                                                       \
89   int regno;                                                            \
90   for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno ++)              \
91     if (! VALID_REGISTER_P (regno))                                     \
92       fixed_regs[regno] = call_used_regs[regno] = 1;                    \
93   /* R8 and R9 are call-clobbered on SH5, but not on earlier SH ABIs.  */ \
94   if (TARGET_SH5)                                                       \
95     call_used_regs[FIRST_GENERAL_REG + 8]                               \
96       = call_used_regs[FIRST_GENERAL_REG + 9] = 1;                      \
97   if (TARGET_SHMEDIA)                                                   \
98     {                                                                   \
99       regno_reg_class[FIRST_GENERAL_REG] = GENERAL_REGS;                \
100       CLEAR_HARD_REG_SET (reg_class_contents[FP0_REGS]);                \
101       regno_reg_class[FIRST_FP_REG] = FP_REGS;                          \
102     }                                                                   \
103   if (flag_pic)                                                         \
104     fixed_regs[PIC_OFFSET_TABLE_REGNUM] = 1;                            \
105   /* Renesas saves and restores mac registers on call.  */              \
106   if (TARGET_HITACHI && ! TARGET_NOMACSAVE)                             \
107     {                                                                   \
108       call_used_regs[MACH_REG] = 0;                                     \
109       call_used_regs[MACL_REG] = 0;                                     \
110     }                                                                   \
111   for (regno = FIRST_FP_REG + (TARGET_LITTLE_ENDIAN != 0);              \
112        regno <= LAST_FP_REG; regno += 2)                                \
113     SET_HARD_REG_BIT (reg_class_contents[DF_HI_REGS], regno);           \
114   if (TARGET_SHMEDIA)                                                   \
115     {                                                                   \
116       for (regno = FIRST_TARGET_REG; regno <= LAST_TARGET_REG; regno ++)\
117         if (! fixed_regs[regno] && call_used_regs[regno])               \
118           SET_HARD_REG_BIT (reg_class_contents[SIBCALL_REGS], regno);   \
119     }                                                                   \
120   else                                                                  \
121     for (regno = FIRST_GENERAL_REG; regno <= LAST_GENERAL_REG; regno++) \
122       if (! fixed_regs[regno] && call_used_regs[regno])                 \
123         SET_HARD_REG_BIT (reg_class_contents[SIBCALL_REGS], regno);     \
124 } while (0)
125 \f
126 /* ??? Need to write documentation for all SH options and add it to the
127    invoke.texi file.  */
128
129 /* Run-time compilation parameters selecting different hardware subsets.  */
130
131 extern int target_flags;
132 #define ISIZE_BIT       (1<<1)
133 #define DALIGN_BIT      (1<<6)
134 #define SH1_BIT         (1<<8)
135 #define SH2_BIT         (1<<9)
136 #define SH3_BIT         (1<<10)
137 #define SH_E_BIT        (1<<11)
138 #define HARD_SH4_BIT    (1<<5)
139 #define FPU_SINGLE_BIT  (1<<7)
140 #define SH4_BIT         (1<<12)
141 #define FMOVD_BIT       (1<<4)
142 #define SH5_BIT         (1<<0)
143 #define SPACE_BIT       (1<<13)
144 #define BIGTABLE_BIT    (1<<14)
145 #define RELAX_BIT       (1<<15)
146 #define USERMODE_BIT    (1<<16)
147 #define HITACHI_BIT     (1<<22)
148 #define NOMACSAVE_BIT   (1<<23)
149 #define PREFERGOT_BIT   (1<<24)
150 #define PADSTRUCT_BIT  (1<<28)
151 #define LITTLE_ENDIAN_BIT (1<<29)
152 #define IEEE_BIT (1<<30)
153 #define SAVE_ALL_TR_BIT (1<<2)
154
155 /* Nonzero if we should dump out instruction size info.  */
156 #define TARGET_DUMPISIZE  (target_flags & ISIZE_BIT)
157
158 /* Nonzero to align doubles on 64 bit boundaries.  */
159 #define TARGET_ALIGN_DOUBLE (target_flags & DALIGN_BIT)
160
161 /* Nonzero if we should generate code using type 1 insns.  */
162 #define TARGET_SH1 (target_flags & SH1_BIT)
163
164 /* Nonzero if we should generate code using type 2 insns.  */
165 #define TARGET_SH2 (target_flags & SH2_BIT)
166
167 /* Nonzero if we should generate code using type 2E insns.  */
168 #define TARGET_SH2E ((target_flags & SH_E_BIT) && TARGET_SH2)
169
170 /* Nonzero if we should generate code using type 3 insns.  */
171 #define TARGET_SH3 (target_flags & SH3_BIT)
172
173 /* Nonzero if we should generate code using type 3E insns.  */
174 #define TARGET_SH3E ((target_flags & SH_E_BIT) && TARGET_SH3)
175
176 /* Nonzero if the cache line size is 32.  */
177 #define TARGET_CACHE32 (target_flags & HARD_SH4_BIT || TARGET_SH5)
178
179 /* Nonzero if we schedule for a superscalar implementation.  */
180 #define TARGET_SUPERSCALAR (target_flags & HARD_SH4_BIT)
181
182 /* Nonzero if the target has separate instruction and data caches.  */
183 #define TARGET_HARVARD (target_flags & HARD_SH4_BIT)
184
185 /* Nonzero if compiling for SH4 hardware (to be used for insn costs etc.)  */
186 #define TARGET_HARD_SH4 (target_flags & HARD_SH4_BIT)
187
188 /* Nonzero if the default precision of th FPU is single */
189 #define TARGET_FPU_SINGLE (target_flags & FPU_SINGLE_BIT)
190
191 /* Nonzero if a double-precision FPU is available.  */
192 #define TARGET_FPU_DOUBLE (target_flags & SH4_BIT)
193
194 /* Nonzero if an FPU is available.  */
195 #define TARGET_FPU_ANY (TARGET_SH2E || TARGET_FPU_DOUBLE)
196
197 /* Nonzero if we should generate code using type 4 insns.  */
198 #define TARGET_SH4 ((target_flags & SH4_BIT) && (target_flags & SH1_BIT))
199
200 /* Nonzero if we should generate code for a SH5 CPU (either ISA).  */
201 #define TARGET_SH5 (target_flags & SH5_BIT)
202
203 /* Nonzero if we should generate code using the SHcompact instruction
204    set and 32-bit ABI.  */
205 #define TARGET_SHCOMPACT (TARGET_SH5 && TARGET_SH1)
206
207 /* Nonzero if we should generate code using the SHmedia instruction
208    set and ABI.  */
209 #define TARGET_SHMEDIA (TARGET_SH5 && ! TARGET_SH1)
210
211 /* Nonzero if we should generate code using the SHmedia ISA and 32-bit
212    ABI.  */
213 #define TARGET_SHMEDIA32 (TARGET_SH5 && ! TARGET_SH1 \
214                           && (target_flags & SH_E_BIT))
215
216 /* Nonzero if we should generate code using the SHmedia ISA and 64-bit
217    ABI.  */
218 #define TARGET_SHMEDIA64 (TARGET_SH5 && ! TARGET_SH1 \
219                           && ! (target_flags & SH_E_BIT))
220
221 /* Nonzero if we should generate code using SHmedia FPU instructions.  */
222 #define TARGET_SHMEDIA_FPU (TARGET_SHMEDIA && TARGET_FPU_DOUBLE)
223 /* Nonzero if we should generate fmovd.  */
224 #define TARGET_FMOVD (target_flags & FMOVD_BIT)
225
226 /* Nonzero if we respect NANs.  */
227 #define TARGET_IEEE (target_flags & IEEE_BIT)
228
229 /* Nonzero if we should generate smaller code rather than faster code.  */
230 #define TARGET_SMALLCODE   (target_flags & SPACE_BIT)
231
232 /* Nonzero to use long jump tables.  */
233 #define TARGET_BIGTABLE     (target_flags & BIGTABLE_BIT)
234
235 /* Nonzero to generate pseudo-ops needed by the assembler and linker
236    to do function call relaxing.  */
237 #define TARGET_RELAX (target_flags & RELAX_BIT)
238
239 /* Nonzero if using Renesas's calling convention.  */
240 #define TARGET_HITACHI          (target_flags & HITACHI_BIT)
241
242 /* Nonzero if not saving macl/mach when using -mhitachi */
243 #define TARGET_NOMACSAVE        (target_flags & NOMACSAVE_BIT)
244
245 /* Nonzero if padding structures to a multiple of 4 bytes.  This is
246    incompatible with Renesas's compiler, and gives unusual structure layouts
247    which confuse programmers.
248    ??? This option is not useful, but is retained in case there are people
249    who are still relying on it.  It may be deleted in the future.  */
250 #define TARGET_PADSTRUCT       (target_flags & PADSTRUCT_BIT)
251
252 /* Nonzero if generating code for a little endian SH.  */
253 #define TARGET_LITTLE_ENDIAN     (target_flags & LITTLE_ENDIAN_BIT)
254
255 /* Nonzero if we should do everything in userland.  */
256 #define TARGET_USERMODE         (target_flags & USERMODE_BIT)
257
258 /* Nonzero if we should prefer @GOT calls when generating PIC.  */
259 #define TARGET_PREFERGOT        (target_flags & PREFERGOT_BIT)
260
261 #define TARGET_SAVE_ALL_TARGET_REGS (target_flags & SAVE_ALL_TR_BIT)
262
263 #define SELECT_SH1               (SH1_BIT)
264 #define SELECT_SH2               (SH2_BIT | SELECT_SH1)
265 #define SELECT_SH2E              (SH_E_BIT | SH2_BIT | SH1_BIT | FPU_SINGLE_BIT)
266 #define SELECT_SH3               (SH3_BIT | SELECT_SH2)
267 #define SELECT_SH3E              (SH_E_BIT | FPU_SINGLE_BIT | SELECT_SH3)
268 #define SELECT_SH4_NOFPU         (HARD_SH4_BIT | SELECT_SH3)
269 #define SELECT_SH4_SINGLE_ONLY   (HARD_SH4_BIT | SELECT_SH3E)
270 #define SELECT_SH4               (SH4_BIT | SH_E_BIT | HARD_SH4_BIT | SELECT_SH3)
271 #define SELECT_SH4_SINGLE        (FPU_SINGLE_BIT | SELECT_SH4)
272 #define SELECT_SH5_64            (SH5_BIT | SH4_BIT)
273 #define SELECT_SH5_64_NOFPU      (SH5_BIT)
274 #define SELECT_SH5_32            (SH5_BIT | SH4_BIT | SH_E_BIT)
275 #define SELECT_SH5_32_NOFPU      (SH5_BIT | SH_E_BIT)
276 #define SELECT_SH5_COMPACT       (SH5_BIT | SH4_BIT | SELECT_SH3E)
277 #define SELECT_SH5_COMPACT_NOFPU (SH5_BIT | SELECT_SH3)
278
279 /* Reset all target-selection flags.  */
280 #define TARGET_NONE -(SH1_BIT | SH2_BIT | SH3_BIT | SH_E_BIT | SH4_BIT \
281                       | HARD_SH4_BIT | FPU_SINGLE_BIT | SH5_BIT)
282
283 #define TARGET_SWITCHES                         \
284 { {"1",         TARGET_NONE, "" },              \
285   {"1",         SELECT_SH1, "Generate SH1 code" },              \
286   {"2",         TARGET_NONE, "" },              \
287   {"2",         SELECT_SH2, "Generate SH2 code" },              \
288   {"2e",        TARGET_NONE, "" },              \
289   {"2e",        SELECT_SH2E, "Generate SH2e code" },            \
290   {"3",         TARGET_NONE, "" },              \
291   {"3",         SELECT_SH3, "Generate SH3 code" },              \
292   {"3e",        TARGET_NONE, "" },              \
293   {"3e",        SELECT_SH3E, "Generate SH3e code" },            \
294   {"4-single-only",     TARGET_NONE, "" },      \
295   {"4-single-only",     SELECT_SH4_SINGLE_ONLY, "Generate only single-precision SH4 code" },    \
296   {"4-single",  TARGET_NONE, "" },              \
297   {"4-single",  SELECT_SH4_SINGLE, "Generate default single-precision SH4 code" },      \
298   {"4-nofpu",   TARGET_NONE, "" },              \
299   {"4-nofpu",   SELECT_SH4_NOFPU, "Generate SH4 FPU-less code" },               \
300   {"4",         TARGET_NONE, "" },              \
301   {"4",         SELECT_SH4, "Generate SH4 code" },              \
302   {"5-64media", TARGET_NONE, "" },              \
303   {"5-64media", SELECT_SH5_64, "Generate 64-bit SHmedia code" }, \
304   {"5-64media-nofpu", TARGET_NONE, "" },        \
305   {"5-64media-nofpu", SELECT_SH5_64_NOFPU, "Generate 64-bit FPU-less SHmedia code" }, \
306   {"5-32media", TARGET_NONE, "" },              \
307   {"5-32media", SELECT_SH5_32, "Generate 32-bit SHmedia code" }, \
308   {"5-32media-nofpu", TARGET_NONE, "" },        \
309   {"5-32media-nofpu", SELECT_SH5_32_NOFPU, "Generate 32-bit FPU-less SHmedia code" }, \
310   {"5-compact", TARGET_NONE, "" },              \
311   {"5-compact", SELECT_SH5_COMPACT, "Generate SHcompact code" }, \
312   {"5-compact-nofpu", TARGET_NONE, "" },        \
313   {"5-compact-nofpu", SELECT_SH5_COMPACT_NOFPU, "Generate FPU-less SHcompact code" }, \
314   {"b",         -LITTLE_ENDIAN_BIT, "Generate code in big endian mode" },       \
315   {"bigtable",  BIGTABLE_BIT, "Generate 32-bit offsets in switch tables" },             \
316   {"dalign",    DALIGN_BIT, "Aligns doubles at 64-bit boundaries" },            \
317   {"fmovd",     FMOVD_BIT, "" },                \
318   {"hitachi",   HITACHI_BIT, "Follow Renesas (formerly Hitachi) / SuperH calling conventions" },                \
319   {"nomacsave", NOMACSAVE_BIT, "Mark MAC register as call-clobbered" },         \
320   {"ieee",      IEEE_BIT, "Increase the IEEE compliance for floating-point code" },                     \
321   {"isize",     ISIZE_BIT, "" },                \
322   {"l",         LITTLE_ENDIAN_BIT, "Generate code in little endian mode" },     \
323   {"no-ieee",   -IEEE_BIT, "" },                \
324   {"padstruct", PADSTRUCT_BIT, "" },            \
325   {"prefergot", PREFERGOT_BIT, "Emit function-calls using global offset table when generating PIC" },           \
326   {"relax",     RELAX_BIT, "Shorten address references during linking" },               \
327   {"space",     SPACE_BIT, "Deprecated. Use -Os instead" },             \
328   {"usermode",  USERMODE_BIT, "Generate library function call to invalidate instruction cache entries after fixing trampoline" },               \
329   SUBTARGET_SWITCHES                            \
330   {"",          TARGET_DEFAULT, "" }            \
331 }
332
333 /* This are meant to be redefined in the host dependent files */
334 #define SUBTARGET_SWITCHES
335
336 /* This defaults us to big-endian.  */
337 #ifndef TARGET_ENDIAN_DEFAULT
338 #define TARGET_ENDIAN_DEFAULT 0
339 #endif
340
341 #ifndef TARGET_CPU_DEFAULT
342 #define TARGET_CPU_DEFAULT SELECT_SH1
343 #endif
344
345 #define TARGET_DEFAULT  (TARGET_CPU_DEFAULT|TARGET_ENDIAN_DEFAULT)
346
347 #define CPP_SPEC " %(subtarget_cpp_spec) "
348
349 #ifndef SUBTARGET_CPP_SPEC
350 #define SUBTARGET_CPP_SPEC ""
351 #endif
352
353 #ifndef SUBTARGET_EXTRA_SPECS
354 #define SUBTARGET_EXTRA_SPECS
355 #endif
356
357 #define EXTRA_SPECS                                             \
358   { "subtarget_cpp_spec", SUBTARGET_CPP_SPEC },                 \
359   { "link_emul_prefix", LINK_EMUL_PREFIX },                     \
360   { "link_default_cpu_emul", LINK_DEFAULT_CPU_EMUL },           \
361   { "subtarget_link_emul_suffix", SUBTARGET_LINK_EMUL_SUFFIX }, \
362   { "subtarget_link_spec", SUBTARGET_LINK_SPEC },               \
363   { "subtarget_asm_endian_spec", SUBTARGET_ASM_ENDIAN_SPEC },   \
364   { "subtarget_asm_relax_spec", SUBTARGET_ASM_RELAX_SPEC },     \
365   { "subtarget_asm_isa_spec", SUBTARGET_ASM_ISA_SPEC }, \
366   SUBTARGET_EXTRA_SPECS
367
368 #if TARGET_CPU_DEFAULT & HARD_SH4_BIT
369 #define SUBTARGET_ASM_RELAX_SPEC "%{!m1:%{!m2:%{!m3*:%{!m5*:-isa=sh4}}}}"
370 #else
371 #define SUBTARGET_ASM_RELAX_SPEC "%{m4*:-isa=sh4}"
372 #endif
373
374 #define SH_ASM_SPEC \
375  "%(subtarget_asm_endian_spec) %{mrelax:-relax %(subtarget_asm_relax_spec)}\
376 %(subtarget_asm_isa_spec)"
377
378 #define ASM_SPEC SH_ASM_SPEC
379
380 #ifndef SUBTARGET_ASM_ENDIAN_SPEC
381 #if TARGET_ENDIAN_DEFAULT == LITTLE_ENDIAN_BIT
382 #define SUBTARGET_ASM_ENDIAN_SPEC "%{mb:-big} %{!mb:-little}"
383 #else
384 #define SUBTARGET_ASM_ENDIAN_SPEC "%{ml:-little} %{!ml:-big}"
385 #endif
386 #endif
387
388 #define SUBTARGET_ASM_ISA_SPEC ""
389
390 #define LINK_EMUL_PREFIX "sh%{ml:l}"
391
392 #if TARGET_CPU_DEFAULT & SH5_BIT
393 #if TARGET_CPU_DEFAULT & SH_E_BIT
394 #define LINK_DEFAULT_CPU_EMUL "32"
395 #else
396 #define LINK_DEFAULT_CPU_EMUL "64"
397 #endif /* SH_E_BIT */
398 #else
399 #define LINK_DEFAULT_CPU_EMUL ""
400 #endif /* SH5_BIT */
401
402 #define SUBTARGET_LINK_EMUL_SUFFIX ""
403 #define SUBTARGET_LINK_SPEC ""
404
405 /* svr4.h redefines LINK_SPEC inappropriately, so go via SH_LINK_SPEC,
406    so that we can undo the damage without code replication.  */
407 #define LINK_SPEC SH_LINK_SPEC
408
409 #define SH_LINK_SPEC "\
410 -m %(link_emul_prefix)\
411 %{m5-compact*|m5-32media*:32}\
412 %{m5-64media*:64}\
413 %{!m1:%{!m2:%{!m3*:%{!m4*:%{!m5*:%(link_default_cpu_emul)}}}}}\
414 %(subtarget_link_emul_suffix) \
415 %{mrelax:-relax} %(subtarget_link_spec)"
416
417 #define OPTIMIZATION_OPTIONS(LEVEL,SIZE)                                \
418 do {                                                                    \
419   if (LEVEL)                                                            \
420     flag_omit_frame_pointer = -1;                                       \
421   if (SIZE)                                                             \
422     target_flags |= SPACE_BIT;                                          \
423   if (TARGET_SHMEDIA && LEVEL > 1)                                      \
424     {                                                                   \
425       flag_branch_target_load_optimize = 1;                             \
426       if (! (SIZE))                                                     \
427         target_flags |= SAVE_ALL_TR_BIT;                                \
428     }                                                                   \
429 } while (0)
430
431 #define ASSEMBLER_DIALECT assembler_dialect
432
433 extern int assembler_dialect;
434
435 #define OVERRIDE_OPTIONS                                                \
436 do {                                                                    \
437   int regno;                                                            \
438                                                                         \
439   sh_cpu = CPU_SH1;                                                     \
440   assembler_dialect = 0;                                                \
441   if (TARGET_SH2)                                                       \
442     sh_cpu = CPU_SH2;                                                   \
443   if (TARGET_SH2E)                                                      \
444     sh_cpu = CPU_SH2E;                                                  \
445   if (TARGET_SH3)                                                       \
446     sh_cpu = CPU_SH3;                                                   \
447   if (TARGET_SH3E)                                                      \
448     sh_cpu = CPU_SH3E;                                                  \
449   if (TARGET_SH4)                                                       \
450     {                                                                   \
451       assembler_dialect = 1;                                            \
452       sh_cpu = CPU_SH4;                                                 \
453     }                                                                   \
454   if (TARGET_SH5)                                                       \
455     {                                                                   \
456       sh_cpu = CPU_SH5;                                                 \
457       target_flags |= DALIGN_BIT;                                       \
458       if (TARGET_FPU_ANY                                                \
459           && ! (TARGET_SHCOMPACT && TARGET_LITTLE_ENDIAN))              \
460         target_flags |= FMOVD_BIT;                                      \
461       if (TARGET_SHMEDIA)                                               \
462         {                                                               \
463           /* There are no delay slots on SHmedia.  */                   \
464           flag_delayed_branch = 0;                                      \
465           /* Relaxation isn't yet supported for SHmedia */              \
466           target_flags &= ~RELAX_BIT;                                   \
467         }                                                               \
468       /* -fprofile-arcs needs a working libgcov .  In unified tree      \
469          configurations with newlib, this requires to configure with    \
470          --with-newlib --with-headers.  But there is no way to check    \
471          here we have a working libgcov, so just assume that we have.  */\
472       if (profile_flag)                                                 \
473         {                                                               \
474           warning ("Profiling is not supported on this target.");       \
475           profile_flag = profile_arc_flag = 0;                          \
476         }                                                               \
477     }                                                                   \
478   else                                                                  \
479     {                                                                   \
480        /* Only the sh64-elf assembler fully supports .quad properly.  */\
481        targetm.asm_out.aligned_op.di = NULL;                            \
482        targetm.asm_out.unaligned_op.di = NULL;                          \
483     }                                                                   \
484   if (TARGET_FMOVD)                                                     \
485     reg_class_from_letter['e' - 'a'] = NO_REGS;                         \
486                                                                         \
487   for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)               \
488     if (! VALID_REGISTER_P (regno))                                     \
489       sh_register_names[regno][0] = '\0';                               \
490                                                                         \
491   for (regno = 0; regno < ADDREGNAMES_SIZE; regno++)                    \
492     if (! VALID_REGISTER_P (ADDREGNAMES_REGNO (regno)))                 \
493       sh_additional_register_names[regno][0] = '\0';                    \
494                                                                         \
495   if (flag_omit_frame_pointer < 0)                                      \
496    {                                                                    \
497      /* The debugging information is sufficient,                        \
498         but gdb doesn't implement this yet */                           \
499      if (0)                                                             \
500       flag_omit_frame_pointer                                           \
501         = (PREFERRED_DEBUGGING_TYPE == DWARF_DEBUG                      \
502            || PREFERRED_DEBUGGING_TYPE == DWARF2_DEBUG);                \
503      else                                                               \
504       flag_omit_frame_pointer = 0;                                      \
505    }                                                                    \
506                                                                         \
507   if (flag_pic && ! TARGET_PREFERGOT)                                   \
508     flag_no_function_cse = 1;                                           \
509                                                                         \
510   if (SMALL_REGISTER_CLASSES)                                           \
511     {                                                                   \
512       /* Never run scheduling before reload, since that can             \
513          break global alloc, and generates slower code anyway due       \
514          to the pressure on R0.  */                                     \
515       flag_schedule_insns = 0;                                          \
516     }                                                                   \
517                                                                         \
518   if (align_loops == 0)                                                 \
519     align_loops =  1 << (TARGET_SH5 ? 3 : 2);                           \
520   if (align_jumps == 0)                                                 \
521     align_jumps = 1 << CACHE_LOG;                                       \
522   else if (align_jumps < (TARGET_SHMEDIA ? 4 : 2))                      \
523     align_jumps = TARGET_SHMEDIA ? 4 : 2;                               \
524                                                                         \
525   /* Allocation boundary (in *bytes*) for the code of a function.       \
526      SH1: 32 bit alignment is faster, because instructions are always   \
527      fetched as a pair from a longword boundary.                        \
528      SH2 .. SH5 : align to cache line start.  */                        \
529   if (align_functions == 0)                                             \
530     align_functions                                                     \
531       = TARGET_SMALLCODE ? FUNCTION_BOUNDARY/8 : (1 << CACHE_LOG);      \
532   /* The linker relaxation code breaks when a function contains         \
533      alignments that are larger than that at the start of a             \
534      compilation unit.  */                                              \
535   if (TARGET_RELAX)                                                     \
536     {                                                                   \
537       int min_align                                                     \
538         = align_loops > align_jumps ? align_loops : align_jumps;        \
539                                                                         \
540       /* Also take possible .long constants / mova tables int account.  */\
541       if (min_align < 4)                                                \
542         min_align = 4;                                                  \
543       if (align_functions < min_align)                                  \
544         align_functions = min_align;                                    \
545     }                                                                   \
546 } while (0)
547 \f
548 /* Target machine storage layout.  */
549
550 /* Define this if most significant bit is lowest numbered
551    in instructions that operate on numbered bit-fields.  */
552
553 #define BITS_BIG_ENDIAN  0
554
555 /* Define this if most significant byte of a word is the lowest numbered.  */
556 #define BYTES_BIG_ENDIAN (TARGET_LITTLE_ENDIAN == 0)
557
558 /* Define this if most significant word of a multiword number is the lowest
559    numbered.  */
560 #define WORDS_BIG_ENDIAN (TARGET_LITTLE_ENDIAN == 0)
561
562 /* Define this to set the endianness to use in libgcc2.c, which can
563    not depend on target_flags.  */
564 #if defined(__LITTLE_ENDIAN__)
565 #define LIBGCC2_WORDS_BIG_ENDIAN 0
566 #else
567 #define LIBGCC2_WORDS_BIG_ENDIAN 1
568 #endif
569
570 #define MAX_BITS_PER_WORD 64
571
572 #define MAX_LONG_TYPE_SIZE MAX_BITS_PER_WORD
573
574 /* Width in bits of an `int'.  We want just 32-bits, even if words are
575    longer. */
576 #define INT_TYPE_SIZE 32
577
578 /* Width in bits of a `long'.  */
579 #define LONG_TYPE_SIZE (TARGET_SHMEDIA64 ? 64 : 32)
580
581 /* Width in bits of a `long long'.  */
582 #define LONG_LONG_TYPE_SIZE 64
583
584 /* Width in bits of a `long double'.  */
585 #define LONG_DOUBLE_TYPE_SIZE 64
586
587 /* Width of a word, in units (bytes).  */
588 #define UNITS_PER_WORD  (TARGET_SHMEDIA ? 8 : 4)
589 #define MIN_UNITS_PER_WORD 4
590
591 /* Width in bits of a pointer.
592    See also the macro `Pmode' defined below.  */
593 #define POINTER_SIZE  (TARGET_SHMEDIA64 ? 64 : 32)
594
595 /* Allocation boundary (in *bits*) for storing arguments in argument list.  */
596 #define PARM_BOUNDARY   (TARGET_SH5 ? 64 : 32)
597
598 /* Boundary (in *bits*) on which stack pointer should be aligned.  */
599 #define STACK_BOUNDARY  BIGGEST_ALIGNMENT
600
601 /* The log (base 2) of the cache line size, in bytes.  Processors prior to
602    SH2 have no actual cache, but they fetch code in chunks of 4 bytes.
603    The SH2/3 have 16 byte cache lines, and the SH4 has a 32 byte cache line */
604 #define CACHE_LOG (TARGET_CACHE32 ? 5 : TARGET_SH2 ? 4 : 2)
605
606 /* ABI given & required minimum allocation boundary (in *bits*) for the
607    code of a function.  */
608 #define FUNCTION_BOUNDARY (16 << TARGET_SHMEDIA)
609
610 /* On SH5, the lowest bit is used to indicate SHmedia functions, so
611    the vbit must go into the delta field of
612    pointers-to-member-functions.  */
613 #define TARGET_PTRMEMFUNC_VBIT_LOCATION \
614   (TARGET_SH5 ? ptrmemfunc_vbit_in_delta : ptrmemfunc_vbit_in_pfn)
615
616 /* Alignment of field after `int : 0' in a structure.  */
617 #define EMPTY_FIELD_BOUNDARY  32
618
619 /* No data type wants to be aligned rounder than this.  */
620 #define BIGGEST_ALIGNMENT  (TARGET_ALIGN_DOUBLE ? 64 : 32)
621
622 /* The best alignment to use in cases where we have a choice.  */
623 #define FASTEST_ALIGNMENT (TARGET_SH5 ? 64 : 32)
624
625 /* Make strings word-aligned so strcpy from constants will be faster.  */
626 #define CONSTANT_ALIGNMENT(EXP, ALIGN)  \
627   ((TREE_CODE (EXP) == STRING_CST       \
628     && (ALIGN) < FASTEST_ALIGNMENT)     \
629     ? FASTEST_ALIGNMENT : (ALIGN))
630
631 /* get_mode_alignment assumes complex values are always held in multiple
632    registers, but that is not the case on the SH; CQImode and CHImode are
633    held in a single integer register.  SH5 also holds CSImode and SCmode
634    values in integer regsters.  Thus the alignment needs to be bumped up
635    to match the size of the mode.  */
636 #define ROUND_TYPE_ALIGN(STRUCT, COMPUTED, SPECIFIED) \
637   (MAX ((GET_MODE_CLASS (TYPE_MODE (STRUCT)) == MODE_COMPLEX_INT \
638          || GET_MODE_CLASS (TYPE_MODE (STRUCT)) == MODE_COMPLEX_FLOAT) \
639         ? MIN (BIGGEST_ALIGNMENT, GET_MODE_BITSIZE (TYPE_MODE (STRUCT))) \
640         : (COMPUTED), \
641         (SPECIFIED)))
642 #define LOCAL_ALIGNMENT(TYPE, ALIGN) \
643   ((GET_MODE_CLASS (TYPE_MODE (TYPE)) == MODE_COMPLEX_INT \
644     || GET_MODE_CLASS (TYPE_MODE (TYPE)) == MODE_COMPLEX_FLOAT) \
645    ? MIN (BIGGEST_ALIGNMENT, GET_MODE_BITSIZE (TYPE_MODE (TYPE))) \
646    : ALIGN)
647
648 /* Make arrays of chars word-aligned for the same reasons.  */
649 #define DATA_ALIGNMENT(TYPE, ALIGN)             \
650   (TREE_CODE (TYPE) == ARRAY_TYPE               \
651    && TYPE_MODE (TREE_TYPE (TYPE)) == QImode    \
652    && (ALIGN) < FASTEST_ALIGNMENT ? FASTEST_ALIGNMENT : (ALIGN))
653
654 /* Number of bits which any structure or union's size must be a
655    multiple of.  Each structure or union's size is rounded up to a
656    multiple of this.  */
657 #define STRUCTURE_SIZE_BOUNDARY (TARGET_PADSTRUCT ? 32 : 8)
658
659 /* Set this nonzero if move instructions will actually fail to work
660    when given unaligned data.  */
661 #define STRICT_ALIGNMENT 1
662
663 /* If LABEL_AFTER_BARRIER demands an alignment, return its base 2 logarithm.  */
664 #define LABEL_ALIGN_AFTER_BARRIER(LABEL_AFTER_BARRIER) \
665   barrier_align (LABEL_AFTER_BARRIER)
666
667 #define LOOP_ALIGN(A_LABEL) \
668   ((! optimize || TARGET_HARVARD || TARGET_SMALLCODE) \
669    ? 0 : sh_loop_align (A_LABEL))
670
671 #define LABEL_ALIGN(A_LABEL) \
672 (                                                                       \
673   (PREV_INSN (A_LABEL)                                                  \
674    && GET_CODE (PREV_INSN (A_LABEL)) == INSN                            \
675    && GET_CODE (PATTERN (PREV_INSN (A_LABEL))) == UNSPEC_VOLATILE       \
676    && XINT (PATTERN (PREV_INSN (A_LABEL)), 1) == UNSPECV_ALIGN)         \
677    /* explicit alignment insn in constant tables.  */                   \
678   ? INTVAL (XVECEXP (PATTERN (PREV_INSN (A_LABEL)), 0, 0))              \
679   : 0)
680
681 /* Jump tables must be 32 bit aligned, no matter the size of the element.  */
682 #define ADDR_VEC_ALIGN(ADDR_VEC) 2
683
684 /* The base two logarithm of the known minimum alignment of an insn length.  */
685 #define INSN_LENGTH_ALIGNMENT(A_INSN)                                   \
686   (GET_CODE (A_INSN) == INSN                                            \
687    ? 1 << TARGET_SHMEDIA                                                \
688    : GET_CODE (A_INSN) == JUMP_INSN || GET_CODE (A_INSN) == CALL_INSN   \
689    ? 1 << TARGET_SHMEDIA                                                \
690    : CACHE_LOG)
691 \f
692 /* Standard register usage.  */
693
694 /* Register allocation for the Renesas calling convention:
695
696         r0              arg return
697         r1..r3          scratch
698         r4..r7          args in
699         r8..r13         call saved
700         r14             frame pointer/call saved
701         r15             stack pointer
702         ap              arg pointer (doesn't really exist, always eliminated)
703         pr              subroutine return address
704         t               t bit
705         mach            multiply/accumulate result, high part
706         macl            multiply/accumulate result, low part.
707         fpul            fp/int communication register
708         rap             return address pointer register
709         fr0             fp arg return
710         fr1..fr3        scratch floating point registers
711         fr4..fr11       fp args in
712         fr12..fr15      call saved floating point registers  */
713
714 #define MAX_REGISTER_NAME_LENGTH 5
715 extern char sh_register_names[][MAX_REGISTER_NAME_LENGTH + 1];
716
717 #define SH_REGISTER_NAMES_INITIALIZER                                   \
718 {                                                                       \
719   "r0",   "r1",   "r2",   "r3",   "r4",   "r5",   "r6",   "r7",         \
720   "r8",   "r9",   "r10",  "r11",  "r12",  "r13",  "r14",  "r15",        \
721   "r16",  "r17",  "r18",  "r19",  "r20",  "r21",  "r22",  "r23",        \
722   "r24",  "r25",  "r26",  "r27",  "r28",  "r29",  "r30",  "r31",        \
723   "r32",  "r33",  "r34",  "r35",  "r36",  "r37",  "r38",  "r39",        \
724   "r40",  "r41",  "r42",  "r43",  "r44",  "r45",  "r46",  "r47",        \
725   "r48",  "r49",  "r50",  "r51",  "r52",  "r53",  "r54",  "r55",        \
726   "r56",  "r57",  "r58",  "r59",  "r60",  "r61",  "r62",  "r63",        \
727   "fr0",  "fr1",  "fr2",  "fr3",  "fr4",  "fr5",  "fr6",  "fr7",        \
728   "fr8",  "fr9",  "fr10", "fr11", "fr12", "fr13", "fr14", "fr15",       \
729   "fr16", "fr17", "fr18", "fr19", "fr20", "fr21", "fr22", "fr23",       \
730   "fr24", "fr25", "fr26", "fr27", "fr28", "fr29", "fr30", "fr31",       \
731   "fr32", "fr33", "fr34", "fr35", "fr36", "fr37", "fr38", "fr39",       \
732   "fr40", "fr41", "fr42", "fr43", "fr44", "fr45", "fr46", "fr47",       \
733   "fr48", "fr49", "fr50", "fr51", "fr52", "fr53", "fr54", "fr55",       \
734   "fr56", "fr57", "fr58", "fr59", "fr60", "fr61", "fr62", "fr63",       \
735   "tr0",  "tr1",  "tr2",  "tr3",  "tr4",  "tr5",  "tr6",  "tr7",        \
736   "xd0",  "xd2",  "xd4",  "xd6",  "xd8",  "xd10", "xd12", "xd14",       \
737   "gbr",  "ap",   "pr",   "t",    "mach", "macl", "fpul", "fpscr",      \
738   "rap"                                                                 \
739 }
740
741 #define DEBUG_REGISTER_NAMES SH_REGISTER_NAMES_INITIALIZER
742
743 #define REGNAMES_ARR_INDEX_1(index) \
744   (sh_register_names[index])
745 #define REGNAMES_ARR_INDEX_2(index) \
746   REGNAMES_ARR_INDEX_1 ((index)), REGNAMES_ARR_INDEX_1 ((index)+1)
747 #define REGNAMES_ARR_INDEX_4(index) \
748   REGNAMES_ARR_INDEX_2 ((index)), REGNAMES_ARR_INDEX_2 ((index)+2)
749 #define REGNAMES_ARR_INDEX_8(index) \
750   REGNAMES_ARR_INDEX_4 ((index)), REGNAMES_ARR_INDEX_4 ((index)+4)
751 #define REGNAMES_ARR_INDEX_16(index) \
752   REGNAMES_ARR_INDEX_8 ((index)), REGNAMES_ARR_INDEX_8 ((index)+8)
753 #define REGNAMES_ARR_INDEX_32(index) \
754   REGNAMES_ARR_INDEX_16 ((index)), REGNAMES_ARR_INDEX_16 ((index)+16)
755 #define REGNAMES_ARR_INDEX_64(index) \
756   REGNAMES_ARR_INDEX_32 ((index)), REGNAMES_ARR_INDEX_32 ((index)+32)
757
758 #define REGISTER_NAMES \
759 { \
760   REGNAMES_ARR_INDEX_64 (0), \
761   REGNAMES_ARR_INDEX_64 (64), \
762   REGNAMES_ARR_INDEX_8 (128), \
763   REGNAMES_ARR_INDEX_8 (136), \
764   REGNAMES_ARR_INDEX_8 (144), \
765   REGNAMES_ARR_INDEX_1 (152) \
766 }
767
768 #define ADDREGNAMES_SIZE 32
769 #define MAX_ADDITIONAL_REGISTER_NAME_LENGTH 4
770 extern char sh_additional_register_names[ADDREGNAMES_SIZE] \
771   [MAX_ADDITIONAL_REGISTER_NAME_LENGTH + 1];
772
773 #define SH_ADDITIONAL_REGISTER_NAMES_INITIALIZER                        \
774 {                                                                       \
775   "dr0",  "dr2",  "dr4",  "dr6",  "dr8",  "dr10", "dr12", "dr14",       \
776   "dr16", "dr18", "dr20", "dr22", "dr24", "dr26", "dr28", "dr30",       \
777   "dr32", "dr34", "dr36", "dr38", "dr40", "dr42", "dr44", "dr46",       \
778   "dr48", "dr50", "dr52", "dr54", "dr56", "dr58", "dr60", "dr62"        \
779 }
780
781 #define ADDREGNAMES_REGNO(index) \
782   ((index < 32) ? (FIRST_FP_REG + (index) * 2) \
783    : (-1))
784
785 #define ADDREGNAMES_ARR_INDEX_1(index) \
786   { (sh_additional_register_names[index]), ADDREGNAMES_REGNO (index) }
787 #define ADDREGNAMES_ARR_INDEX_2(index) \
788   ADDREGNAMES_ARR_INDEX_1 ((index)), ADDREGNAMES_ARR_INDEX_1 ((index)+1)
789 #define ADDREGNAMES_ARR_INDEX_4(index) \
790   ADDREGNAMES_ARR_INDEX_2 ((index)), ADDREGNAMES_ARR_INDEX_2 ((index)+2)
791 #define ADDREGNAMES_ARR_INDEX_8(index) \
792   ADDREGNAMES_ARR_INDEX_4 ((index)), ADDREGNAMES_ARR_INDEX_4 ((index)+4)
793 #define ADDREGNAMES_ARR_INDEX_16(index) \
794   ADDREGNAMES_ARR_INDEX_8 ((index)), ADDREGNAMES_ARR_INDEX_8 ((index)+8)
795 #define ADDREGNAMES_ARR_INDEX_32(index) \
796   ADDREGNAMES_ARR_INDEX_16 ((index)), ADDREGNAMES_ARR_INDEX_16 ((index)+16)
797
798 #define ADDITIONAL_REGISTER_NAMES \
799 {                                       \
800   ADDREGNAMES_ARR_INDEX_32 (0)          \
801 }
802
803 /* Number of actual hardware registers.
804    The hardware registers are assigned numbers for the compiler
805    from 0 to just below FIRST_PSEUDO_REGISTER.
806    All registers that the compiler knows about must be given numbers,
807    even those that are not normally considered general registers.  */
808
809 /* There are many other relevant definitions in sh.md's md_constants.  */
810
811 #define FIRST_GENERAL_REG R0_REG
812 #define LAST_GENERAL_REG (FIRST_GENERAL_REG + (TARGET_SHMEDIA ? 63 : 15))
813 #define FIRST_FP_REG DR0_REG
814 #define LAST_FP_REG  (FIRST_FP_REG + \
815                       (TARGET_SHMEDIA_FPU ? 63 : TARGET_SH2E ? 15 : -1))
816 #define FIRST_XD_REG XD0_REG
817 #define LAST_XD_REG  (FIRST_XD_REG + ((TARGET_SH4 && TARGET_FMOVD) ? 7 : -1))
818 #define FIRST_TARGET_REG TR0_REG
819 #define LAST_TARGET_REG  (FIRST_TARGET_REG + (TARGET_SHMEDIA ? 7 : -1))
820
821 #define GENERAL_REGISTER_P(REGNO) \
822   IN_RANGE ((REGNO), FIRST_GENERAL_REG, LAST_GENERAL_REG)
823
824 #define GENERAL_OR_AP_REGISTER_P(REGNO) \
825   (GENERAL_REGISTER_P (REGNO) || ((REGNO) == AP_REG))
826
827 #define FP_REGISTER_P(REGNO) \
828   ((REGNO) >= FIRST_FP_REG && (REGNO) <= LAST_FP_REG)
829
830 #define XD_REGISTER_P(REGNO) \
831   ((REGNO) >= FIRST_XD_REG && (REGNO) <= LAST_XD_REG)
832
833 #define FP_OR_XD_REGISTER_P(REGNO) \
834   (FP_REGISTER_P (REGNO) || XD_REGISTER_P (REGNO))
835
836 #define FP_ANY_REGISTER_P(REGNO) \
837   (FP_REGISTER_P (REGNO) || XD_REGISTER_P (REGNO) || (REGNO) == FPUL_REG)
838
839 #define SPECIAL_REGISTER_P(REGNO) \
840   ((REGNO) == GBR_REG || (REGNO) == T_REG \
841    || (REGNO) == MACH_REG || (REGNO) == MACL_REG)
842
843 #define TARGET_REGISTER_P(REGNO) \
844   ((REGNO) >= FIRST_TARGET_REG && (REGNO) <= LAST_TARGET_REG)
845
846 #define SHMEDIA_REGISTER_P(REGNO) \
847   (GENERAL_REGISTER_P (REGNO) || FP_REGISTER_P (REGNO) \
848    || TARGET_REGISTER_P (REGNO))
849
850 /* This is to be used in CONDITIONAL_REGISTER_USAGE, to mark registers
851    that should be fixed.  */
852 #define VALID_REGISTER_P(REGNO) \
853   (SHMEDIA_REGISTER_P (REGNO) || XD_REGISTER_P (REGNO) \
854    || (REGNO) == AP_REG || (REGNO) == RAP_REG \
855    || (TARGET_SH1 && (SPECIAL_REGISTER_P (REGNO) || (REGNO) == PR_REG)) \
856    || (TARGET_SH2E && (REGNO) == FPUL_REG))
857
858 /* The mode that should be generally used to store a register by
859    itself in the stack, or to load it back.  */
860 #define REGISTER_NATURAL_MODE(REGNO) \
861   (FP_REGISTER_P (REGNO) ? SFmode \
862    : XD_REGISTER_P (REGNO) ? DFmode \
863    : TARGET_SHMEDIA && ! HARD_REGNO_CALL_PART_CLOBBERED ((REGNO), DImode) \
864    ? DImode \
865    : SImode)
866
867 #define FIRST_PSEUDO_REGISTER 153
868
869 /* 1 for registers that have pervasive standard uses
870    and are not available for the register allocator.
871
872    Mach register is fixed 'cause it's only 10 bits wide for SH1.
873    It is 32 bits wide for SH2.  */
874
875 #define FIXED_REGISTERS                                                 \
876 {                                                                       \
877 /* Regular registers.  */                                               \
878   0,      0,      0,      0,      0,      0,      0,      0,            \
879   0,      0,      0,      0,      0,      0,      0,      1,            \
880   /* r16 is reserved, r18 is the former pr.  */                         \
881   1,      0,      0,      0,      0,      0,      0,      0,            \
882   /* r24 is reserved for the OS; r25, for the assembler or linker.  */  \
883   /* r26 is a global variable data pointer; r27 is for constants.  */   \
884   1,      1,      1,      1,      0,      0,      0,      0,            \
885   0,      0,      0,      0,      0,      0,      0,      0,            \
886   0,      0,      0,      0,      0,      0,      0,      0,            \
887   0,      0,      0,      0,      0,      0,      0,      0,            \
888   0,      0,      0,      0,      0,      0,      0,      1,            \
889 /* FP registers.  */                                                    \
890   0,      0,      0,      0,      0,      0,      0,      0,            \
891   0,      0,      0,      0,      0,      0,      0,      0,            \
892   0,      0,      0,      0,      0,      0,      0,      0,            \
893   0,      0,      0,      0,      0,      0,      0,      0,            \
894   0,      0,      0,      0,      0,      0,      0,      0,            \
895   0,      0,      0,      0,      0,      0,      0,      0,            \
896   0,      0,      0,      0,      0,      0,      0,      0,            \
897   0,      0,      0,      0,      0,      0,      0,      0,            \
898 /* Branch target registers.  */                                         \
899   0,      0,      0,      0,      0,      0,      0,      0,            \
900 /* XD registers.  */                                                    \
901   0,      0,      0,      0,      0,      0,      0,      0,            \
902 /*"gbr",  "ap",   "pr",   "t",    "mach", "macl", "fpul", "fpscr", */   \
903   1,      1,      1,      1,      1,      1,      0,      1,            \
904 /*"rap" */                                                              \
905   1,                                                                    \
906 }
907
908 /* 1 for registers not available across function calls.
909    These must include the FIXED_REGISTERS and also any
910    registers that can be used without being saved.
911    The latter must include the registers where values are returned
912    and the register where structure-value addresses are passed.
913    Aside from that, you can include as many other registers as you like.  */
914
915 #define CALL_USED_REGISTERS                                             \
916 {                                                                       \
917 /* Regular registers.  */                                               \
918   1,      1,      1,      1,      1,      1,      1,      1,            \
919   /* R8 and R9 are call-clobbered on SH5, but not on earlier SH ABIs.   \
920      Only the lower 32bits of R10-R14 are guaranteed to be preserved    \
921      across SH5 function calls.  */                                     \
922   0,      0,      0,      0,      0,      0,      0,      1,            \
923   1,      1,      0,      1,      1,      1,      1,      1,            \
924   1,      1,      1,      1,      0,      0,      0,      0,            \
925   0,      0,      0,      0,      1,      1,      1,      1,            \
926   1,      1,      1,      1,      0,      0,      0,      0,            \
927   0,      0,      0,      0,      0,      0,      0,      0,            \
928   0,      0,      0,      0,      1,      1,      1,      1,            \
929 /* FP registers.  */                                                    \
930   1,      1,      1,      1,      1,      1,      1,      1,            \
931   1,      1,      1,      1,      0,      0,      0,      0,            \
932   1,      1,      1,      1,      1,      1,      1,      1,            \
933   1,      1,      1,      1,      1,      1,      1,      1,            \
934   1,      1,      1,      1,      0,      0,      0,      0,            \
935   0,      0,      0,      0,      0,      0,      0,      0,            \
936   0,      0,      0,      0,      0,      0,      0,      0,            \
937   0,      0,      0,      0,      0,      0,      0,      0,            \
938 /* Branch target registers.  */                                         \
939   1,      1,      1,      1,      1,      0,      0,      0,            \
940 /* XD registers.  */                                                    \
941   1,      1,      1,      1,      1,      1,      0,      0,            \
942 /*"gbr",  "ap",   "pr",   "t",    "mach", "macl", "fpul", "fpscr", */   \
943   1,      1,      0,      1,      1,      1,      1,      1,            \
944 /*"rap" */                                                              \
945   1,                                                                    \
946 }
947
948 /* Only the lower 32-bits of R10-R14 are guaranteed to be preserved
949    across SHcompact function calls.  We can't tell whether a called
950    function is SHmedia or SHcompact, so we assume it may be when
951    compiling SHmedia code with the 32-bit ABI, since that's the only
952    ABI that can be linked with SHcompact code.  */
953 #define HARD_REGNO_CALL_PART_CLOBBERED(REGNO,MODE) \
954   (TARGET_SHMEDIA32 \
955    && GET_MODE_SIZE (MODE) > 4 \
956    && (((REGNO) >= FIRST_GENERAL_REG + 10 \
957         && (REGNO) <= FIRST_GENERAL_REG + 14) \
958        || (REGNO) == PR_MEDIA_REG))
959
960 /* Return number of consecutive hard regs needed starting at reg REGNO
961    to hold something of mode MODE.
962    This is ordinarily the length in words of a value of mode MODE
963    but can be less for certain modes in special long registers.
964
965    On the SH all but the XD regs are UNITS_PER_WORD bits wide.  */
966
967 #define HARD_REGNO_NREGS(REGNO, MODE) \
968    (XD_REGISTER_P (REGNO) \
969     ? ((GET_MODE_SIZE (MODE) + (2*UNITS_PER_WORD - 1)) / (2*UNITS_PER_WORD)) \
970     : (TARGET_SHMEDIA && FP_REGISTER_P (REGNO)) \
971     ? ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD/2 - 1) / (UNITS_PER_WORD/2)) \
972     : ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
973
974 /* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.
975    We can allow any mode in any general register.  The special registers
976    only allow SImode.  Don't allow any mode in the PR.  */
977
978 /* We cannot hold DCmode values in the XD registers because alter_reg
979    handles subregs of them incorrectly.  We could work around this by
980    spacing the XD registers like the DR registers, but this would require
981    additional memory in every compilation to hold larger register vectors.
982    We could hold SFmode / SCmode values in XD registers, but that
983    would require a tertiary reload when reloading from / to memory,
984    and a secondary reload to reload from / to general regs; that
985    seems to be a loosing proposition.  */
986 /* We want to allow TImode FP regs so that when V4SFmode is loaded as TImode,
987    it won't be ferried through GP registers first.  */
988 #define HARD_REGNO_MODE_OK(REGNO, MODE)         \
989   (SPECIAL_REGISTER_P (REGNO) ? (MODE) == SImode \
990    : (REGNO) == FPUL_REG ? (MODE) == SImode || (MODE) == SFmode \
991    : FP_REGISTER_P (REGNO) && (MODE) == SFmode \
992    ? 1 \
993    : (MODE) == V2SFmode \
994    ? ((FP_REGISTER_P (REGNO) && ((REGNO) - FIRST_FP_REG) % 2 == 0) \
995       || GENERAL_REGISTER_P (REGNO)) \
996    : (MODE) == V4SFmode \
997    ? ((FP_REGISTER_P (REGNO) && ((REGNO) - FIRST_FP_REG) % 4 == 0) \
998       || (! TARGET_SHMEDIA && GENERAL_REGISTER_P (REGNO))) \
999    : (MODE) == V16SFmode \
1000    ? (TARGET_SHMEDIA \
1001       ? (FP_REGISTER_P (REGNO) && ((REGNO) - FIRST_FP_REG) % 16 == 0) \
1002       : (REGNO) == FIRST_XD_REG) \
1003    : FP_REGISTER_P (REGNO) \
1004    ? ((MODE) == SFmode || (MODE) == SImode \
1005       || ((TARGET_SH2E || TARGET_SHMEDIA) && (MODE) == SCmode) \
1006       || (((TARGET_SH4 && (MODE) == DFmode) || (MODE) == DCmode \
1007            || (TARGET_SHMEDIA && ((MODE) == DFmode || (MODE) == DImode \
1008                                   || (MODE) == V2SFmode || (MODE) == TImode))) \
1009           && (((REGNO) - FIRST_FP_REG) & 1) == 0)) \
1010    : XD_REGISTER_P (REGNO) \
1011    ? (MODE) == DFmode \
1012    : TARGET_REGISTER_P (REGNO) \
1013    ? ((MODE) == DImode || (MODE) == SImode) \
1014    : (REGNO) == PR_REG ? 0                      \
1015    : (REGNO) == FPSCR_REG ? (MODE) == PSImode \
1016    : 1)
1017
1018 /* Value is 1 if MODE is a supported vector mode.  */
1019 #define VECTOR_MODE_SUPPORTED_P(MODE) \
1020   ((TARGET_FPU_ANY \
1021     && ((MODE) == V2SFmode || (MODE) == V4SFmode || (MODE) == V16SFmode)) \
1022    || (TARGET_SHMEDIA \
1023        && ((MODE) == V8QImode || (MODE) == V2HImode || (MODE) == V4HImode \
1024            || (MODE) == V2SImode)))
1025
1026 /* Value is 1 if it is a good idea to tie two pseudo registers
1027    when one has mode MODE1 and one has mode MODE2.
1028    If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
1029    for any hard reg, then this must be 0 for correct output.
1030    That's the case for xd registers: we don't hold SFmode values in
1031    them, so we can't tie an SFmode pseudos with one in another
1032    floating-point mode.  */
1033
1034 #define MODES_TIEABLE_P(MODE1, MODE2) \
1035   ((MODE1) == (MODE2) \
1036    || (GET_MODE_CLASS (MODE1) == GET_MODE_CLASS (MODE2) \
1037        && (TARGET_SHMEDIA ? ((GET_MODE_SIZE (MODE1) <= 4) \
1038                               && (GET_MODE_SIZE (MODE2) <= 4)) \
1039                           : ((MODE1) != SFmode && (MODE2) != SFmode))))
1040
1041 /* A C expression that is nonzero if hard register NEW_REG can be
1042    considered for use as a rename register for OLD_REG register */
1043
1044 #define HARD_REGNO_RENAME_OK(OLD_REG, NEW_REG) \
1045    sh_hard_regno_rename_ok (OLD_REG, NEW_REG)
1046
1047 /* Specify the registers used for certain standard purposes.
1048    The values of these macros are register numbers.  */
1049
1050 /* Define this if the program counter is overloaded on a register.  */
1051 /* #define PC_REGNUM            15*/
1052
1053 /* Register to use for pushing function arguments.  */
1054 #define STACK_POINTER_REGNUM    SP_REG
1055
1056 /* Base register for access to local variables of the function.  */
1057 #define FRAME_POINTER_REGNUM    FP_REG
1058
1059 /* Fake register that holds the address on the stack of the
1060    current function's return address.  */
1061 #define RETURN_ADDRESS_POINTER_REGNUM RAP_REG
1062
1063 /* Register to hold the addressing base for position independent
1064    code access to data items.  */
1065 #define PIC_OFFSET_TABLE_REGNUM (flag_pic ? PIC_REG : INVALID_REGNUM)
1066
1067 #define GOT_SYMBOL_NAME "*_GLOBAL_OFFSET_TABLE_"
1068
1069 /* Value should be nonzero if functions must have frame pointers.
1070    Zero means the frame pointer need not be set up (and parms may be accessed
1071    via the stack pointer) in functions that seem suitable.  */
1072
1073 #define FRAME_POINTER_REQUIRED  0
1074
1075 /* Definitions for register eliminations.
1076
1077    We have three registers that can be eliminated on the SH.  First, the
1078    frame pointer register can often be eliminated in favor of the stack
1079    pointer register.  Secondly, the argument pointer register can always be
1080    eliminated; it is replaced with either the stack or frame pointer.
1081    Third, there is the return address pointer, which can also be replaced
1082    with either the stack or the frame pointer.  */
1083
1084 /* This is an array of structures.  Each structure initializes one pair
1085    of eliminable registers.  The "from" register number is given first,
1086    followed by "to".  Eliminations of the same "from" register are listed
1087    in order of preference.  */
1088
1089 /* If you add any registers here that are not actually hard registers,
1090    and that have any alternative of elimination that doesn't always
1091    apply, you need to amend calc_live_regs to exclude it, because
1092    reload spills all eliminable registers where it sees an
1093    can_eliminate == 0 entry, thus making them 'live' .
1094    If you add any hard registers that can be eliminated in different
1095    ways, you have to patch reload to spill them only when all alternatives
1096    of elimination fail.  */
1097
1098 #define ELIMINABLE_REGS                                         \
1099 {{ FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM},                 \
1100  { RETURN_ADDRESS_POINTER_REGNUM, STACK_POINTER_REGNUM},        \
1101  { RETURN_ADDRESS_POINTER_REGNUM, FRAME_POINTER_REGNUM},        \
1102  { ARG_POINTER_REGNUM, STACK_POINTER_REGNUM},                   \
1103  { ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM},}
1104
1105 /* Given FROM and TO register numbers, say whether this elimination
1106    is allowed.  */
1107 #define CAN_ELIMINATE(FROM, TO) \
1108   (!((FROM) == FRAME_POINTER_REGNUM && FRAME_POINTER_REQUIRED))
1109
1110 /* Define the offset between two registers, one to be eliminated, and the other
1111    its replacement, at the start of a routine.  */
1112
1113 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
1114   OFFSET = initial_elimination_offset ((FROM), (TO))
1115
1116 /* Base register for access to arguments of the function.  */
1117 #define ARG_POINTER_REGNUM      AP_REG
1118
1119 /* Register in which the static-chain is passed to a function.  */
1120 #define STATIC_CHAIN_REGNUM     (TARGET_SH5 ? 1 : 3)
1121
1122 /* The register in which a struct value address is passed.  */
1123
1124 #define STRUCT_VALUE_REGNUM 2
1125
1126 /* If the structure value address is not passed in a register, define
1127    `STRUCT_VALUE' as an expression returning an RTX for the place
1128    where the address is passed.  If it returns 0, the address is
1129    passed as an "invisible" first argument.  */
1130
1131 /* The Renesas calling convention doesn't quite fit into this scheme since
1132    the address is passed like an invisible argument, but one that is always
1133    passed in memory.  */
1134 #define STRUCT_VALUE \
1135   (TARGET_HITACHI ? 0 : gen_rtx_REG (Pmode, STRUCT_VALUE_REGNUM))
1136
1137 #define RETURN_IN_MEMORY(TYPE) \
1138   (TARGET_SH5 \
1139    ? ((TYPE_MODE (TYPE) == BLKmode \
1140        ? (unsigned HOST_WIDE_INT) int_size_in_bytes (TYPE) \
1141        : GET_MODE_SIZE (TYPE_MODE (TYPE))) > 8) \
1142    : (TYPE_MODE (TYPE) == BLKmode \
1143       || TARGET_HITACHI && TREE_CODE (TYPE) == RECORD_TYPE))
1144
1145 /* Don't default to pcc-struct-return, because we have already specified
1146    exactly how to return structures in the RETURN_IN_MEMORY macro.  */
1147
1148 #define DEFAULT_PCC_STRUCT_RETURN 0
1149
1150 #define SHMEDIA_REGS_STACK_ADJUST() \
1151   (TARGET_SHCOMPACT && current_function_has_nonlocal_label \
1152    ? (8 * (/* r28-r35 */ 8 + /* r44-r59 */ 16 + /* tr5-tr7 */ 3) \
1153       + (TARGET_FPU_ANY ? 4 * (/* fr36 - fr63 */ 28) : 0)) \
1154    : 0)
1155
1156 \f
1157 /* Define the classes of registers for register constraints in the
1158    machine description.  Also define ranges of constants.
1159
1160    One of the classes must always be named ALL_REGS and include all hard regs.
1161    If there is more than one class, another class must be named NO_REGS
1162    and contain no registers.
1163
1164    The name GENERAL_REGS must be the name of a class (or an alias for
1165    another name such as ALL_REGS).  This is the class of registers
1166    that is allowed by "g" or "r" in a register constraint.
1167    Also, registers outside this class are allocated only when
1168    instructions express preferences for them.
1169
1170    The classes must be numbered in nondecreasing order; that is,
1171    a larger-numbered class must never be contained completely
1172    in a smaller-numbered class.
1173
1174    For any two classes, it is very desirable that there be another
1175    class that represents their union.  */
1176
1177 /* The SH has two sorts of general registers, R0 and the rest.  R0 can
1178    be used as the destination of some of the arithmetic ops. There are
1179    also some special purpose registers; the T bit register, the
1180    Procedure Return Register and the Multiply Accumulate Registers.  */
1181 /* Place GENERAL_REGS after FPUL_REGS so that it will be preferred by
1182    reg_class_subunion.  We don't want to have an actual union class
1183    of these, because it would only be used when both classes are calculated
1184    to give the same cost, but there is only one FPUL register.
1185    Besides, regclass fails to notice the different REGISTER_MOVE_COSTS
1186    applying to the actual instruction alternative considered.  E.g., the
1187    y/r alternative of movsi_ie is considered to have no more cost that
1188    the r/r alternative, which is patently untrue.  */
1189
1190 enum reg_class
1191 {
1192   NO_REGS,
1193   R0_REGS,
1194   PR_REGS,
1195   T_REGS,
1196   MAC_REGS,
1197   FPUL_REGS,
1198   SIBCALL_REGS,
1199   GENERAL_REGS,
1200   FP0_REGS,
1201   FP_REGS,
1202   DF_HI_REGS,
1203   DF_REGS,
1204   FPSCR_REGS,
1205   GENERAL_FP_REGS,
1206   TARGET_REGS,
1207   ALL_REGS,
1208   LIM_REG_CLASSES
1209 };
1210
1211 #define N_REG_CLASSES  (int) LIM_REG_CLASSES
1212
1213 /* Give names of register classes as strings for dump file.  */
1214 #define REG_CLASS_NAMES \
1215 {                       \
1216   "NO_REGS",            \
1217   "R0_REGS",            \
1218   "PR_REGS",            \
1219   "T_REGS",             \
1220   "MAC_REGS",           \
1221   "FPUL_REGS",          \
1222   "SIBCALL_REGS",       \
1223   "GENERAL_REGS",       \
1224   "FP0_REGS",           \
1225   "FP_REGS",            \
1226   "DF_HI_REGS",         \
1227   "DF_REGS",            \
1228   "FPSCR_REGS",         \
1229   "GENERAL_FP_REGS",    \
1230   "TARGET_REGS",        \
1231   "ALL_REGS",           \
1232 }
1233
1234 /* Define which registers fit in which classes.
1235    This is an initializer for a vector of HARD_REG_SET
1236    of length N_REG_CLASSES.  */
1237
1238 #define REG_CLASS_CONTENTS                                              \
1239 {                                                                       \
1240 /* NO_REGS:  */                                                         \
1241   { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },       \
1242 /* R0_REGS:  */                                                         \
1243   { 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },       \
1244 /* PR_REGS:  */                                                         \
1245   { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00040000 },       \
1246 /* T_REGS:  */                                                          \
1247   { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00080000 },       \
1248 /* MAC_REGS:  */                                                        \
1249   { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00300000 },       \
1250 /* FPUL_REGS:  */                                                       \
1251   { 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00400000 },       \
1252 /* SIBCALL_REGS: Initialized in CONDITIONAL_REGISTER_USAGE.  */ \
1253   { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },       \
1254 /* GENERAL_REGS:  */                                                    \
1255   { 0xffffffff, 0xffffffff, 0x00000000, 0x00000000, 0x01020000 },       \
1256 /* FP0_REGS:  */                                                        \
1257   { 0x00000000, 0x00000000, 0x00000001, 0x00000000, 0x00000000 },       \
1258 /* FP_REGS:  */                                                         \
1259   { 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0x00000000 },       \
1260 /* DF_HI_REGS:  Initialized in CONDITIONAL_REGISTER_USAGE.  */          \
1261   { 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0x0000ff00 },       \
1262 /* DF_REGS:  */                                                         \
1263   { 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0x0000ff00 },       \
1264 /* FPSCR_REGS:  */                                                      \
1265   { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00800000 },       \
1266 /* GENERAL_FP_REGS:  */                                                 \
1267   { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0x0102ff00 },       \
1268 /* TARGET_REGS:  */                                                     \
1269   { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x000000ff },       \
1270 /* ALL_REGS:  */                                                        \
1271   { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0x01ffffff },       \
1272 }                                                                        
1273
1274 /* The same information, inverted:
1275    Return the class number of the smallest class containing
1276    reg number REGNO.  This could be a conditional expression
1277    or could index an array.  */
1278
1279 extern int regno_reg_class[FIRST_PSEUDO_REGISTER];
1280 #define REGNO_REG_CLASS(REGNO) regno_reg_class[(REGNO)]
1281
1282 /* When defined, the compiler allows registers explicitly used in the
1283    rtl to be used as spill registers but prevents the compiler from
1284    extending the lifetime of these registers.  */
1285
1286 #define SMALL_REGISTER_CLASSES (! TARGET_SHMEDIA)
1287
1288 /* The order in which register should be allocated.  */
1289 /* Sometimes FP0_REGS becomes the preferred class of a floating point pseudo,
1290    and GENERAL_FP_REGS the alternate class.  Since FP0 is likely to be
1291    spilled or used otherwise, we better have the FP_REGS allocated first.  */
1292 #define REG_ALLOC_ORDER \
1293   {/* Caller-saved FPRs */ \
1294     65, 66, 67, 68, 69, 70, 71, 64, \
1295     72, 73, 74, 75, 80, 81, 82, 83, \
1296     84, 85, 86, 87, 88, 89, 90, 91, \
1297     92, 93, 94, 95, 96, 97, 98, 99, \
1298    /* Callee-saved FPRs */ \
1299     76, 77, 78, 79,100,101,102,103, \
1300    104,105,106,107,108,109,110,111, \
1301    112,113,114,115,116,117,118,119, \
1302    120,121,122,123,124,125,126,127, \
1303    136,137,138,139,140,141,142,143, \
1304    /* FPSCR */ 151, \
1305    /* Caller-saved GPRs (except 8/9 on SH1-4) */ \
1306      1,  2,  3,  7,  6,  5,  4,  0, \
1307      8,  9, 17, 19, 20, 21, 22, 23, \
1308     36, 37, 38, 39, 40, 41, 42, 43, \
1309     60, 61, 62, \
1310    /* SH1-4 callee-saved saved GPRs / SH5 partially-saved GPRs */ \
1311     10, 11, 12, 13, 14, 18, \
1312     /* SH5 callee-saved GPRs */ \
1313     28, 29, 30, 31, 32, 33, 34, 35, \
1314     44, 45, 46, 47, 48, 49, 50, 51, \
1315     52, 53, 54, 55, 56, 57, 58, 59, \
1316    /* FPUL */ 150, \
1317    /* SH5 branch target registers */ \
1318    128,129,130,131,132,133,134,135, \
1319    /* Fixed registers */ \
1320     15, 16, 24, 25, 26, 27, 63,144, \
1321    145,146,147,148,149,152 }
1322
1323 /* The class value for index registers, and the one for base regs.  */
1324 #define INDEX_REG_CLASS  (TARGET_SHMEDIA ? GENERAL_REGS : R0_REGS)
1325 #define BASE_REG_CLASS   GENERAL_REGS
1326
1327 /* Get reg_class from a letter such as appears in the machine
1328    description.  */
1329 extern enum reg_class reg_class_from_letter[];
1330
1331 /* We might use 'Rxx' constraints in the future for exotic reg classes.*/
1332 #define REG_CLASS_FROM_CONSTRAINT(C, STR) \
1333   (ISLOWER (C) ? reg_class_from_letter[(C)-'a'] : NO_REGS )
1334 \f
1335 /* Overview of uppercase letter constraints:
1336    A: Addresses (constraint len == 3)
1337     Ac4: sh4 cache operations
1338     Ac5: sh5 cache operations
1339    Bxx: miscellaneous constraints
1340     Bsc: SCRATCH - for the scratch register in movsi_ie in the
1341          fldi0 / fldi0 cases
1342    C: Constants other than only CONST_INT (constraint len == 3)
1343     C16: 16 bit constant, literal or symbolic
1344     Csy: label or symbol
1345     Cpg: non-explicit constants that can be directly loaded into a general
1346          purpose register in PIC code.  like 's' except we don't allow
1347          PIC_DIRECT_ADDR_P
1348    IJKLMNOP: CONT_INT constants
1349     Ixx: signed xx bit
1350     J16: 0xffffffff00000000 | 0x00000000ffffffff
1351     Kxx: unsigned xx bit
1352     M: 1
1353     N: 0
1354     P27: 1 | 2 | 8 | 16
1355    Q: pc relative load operand
1356    Rxx: reserved for exotic register classes.
1357    S: extra memory (storage) constraints (constraint len == 3)
1358     Sua: unaligned memory operations
1359    W: vector
1360    Z: zero in any mode
1361
1362    unused CONST_INT constraint letters: LO
1363    unused EXTRA_CONSTRAINT letters: D T U Y */
1364
1365 #if 1 /* check that the transistion went well.  */
1366 #define CONSTRAINT_LEN(C,STR) \
1367   (((C) == 'L' || (C) == 'O' || (C) == 'D' || (C) == 'T' || (C) == 'U' \
1368     || (C) == 'Y' \
1369     || ((C) == 'I' && (((STR)[1] != '0' && (STR)[1] != '1') || ! isdigit ((STR)[2]))) \
1370     || ((C) == 'B' && ((STR)[1] != 's' || (STR)[2] != 'c')) \
1371     || ((C) == 'J' && ((STR)[1] != '1' || (STR)[2] != '6')) \
1372     || ((C) == 'K' && ((STR)[1] != '0' || (STR)[2] != '8')) \
1373     || ((C) == 'P' && ((STR)[1] != '2' || (STR)[2] != '7'))) \
1374    ? -1 \
1375    : ((C) == 'A' || (C) == 'B' || (C) == 'C' \
1376       || (C) == 'I' || (C) == 'J' || (C) == 'K' || (C) == 'P' \
1377       || (C) == 'R' || (C) == 'S') \
1378    ? 3 \
1379    : DEFAULT_CONSTRAINT_LEN ((C), (STR)))
1380 #else
1381 #define CONSTRAINT_LEN(C,STR) \
1382   (((C) == 'A' || (C) == 'B' || (C) == 'C' \
1383     || (C) == 'I' || (C) == 'J' || (C) == 'K' || (C) == 'P' \
1384     || (C) == 'R' || (C) == 'S') \
1385    ? 3 : DEFAULT_CONSTRAINT_LEN ((C), (STR)))
1386 #endif
1387
1388 /* The letters I, J, K, L and M in a register constraint string
1389    can be used to stand for particular ranges of immediate operands.
1390    This macro defines what the ranges are.
1391    C is the letter, and VALUE is a constant value.
1392    Return 1 if VALUE is in the range specified by C.
1393         I08: arithmetic operand -127..128, as used in add, sub, etc
1394         I16: arithmetic operand -32768..32767, as used in SHmedia movi and shori
1395         P27: shift operand 1,2,8 or 16
1396         K08: logical operand 0..255, as used in and, or, etc.
1397         M: constant 1
1398         N: constant 0
1399         I06: arithmetic operand -32..31, as used in SHmedia beqi, bnei and xori
1400         I10: arithmetic operand -512..511, as used in SHmedia andi, ori
1401 */
1402
1403 #define CONST_OK_FOR_I06(VALUE) (((HOST_WIDE_INT)(VALUE)) >= -32 \
1404                                  && ((HOST_WIDE_INT)(VALUE)) <= 31)
1405 #define CONST_OK_FOR_I08(VALUE) (((HOST_WIDE_INT)(VALUE))>= -128 \
1406                                  && ((HOST_WIDE_INT)(VALUE)) <= 127)
1407 #define CONST_OK_FOR_I10(VALUE) (((HOST_WIDE_INT)(VALUE)) >= -512 \
1408                                  && ((HOST_WIDE_INT)(VALUE)) <= 511)
1409 #define CONST_OK_FOR_I16(VALUE) (((HOST_WIDE_INT)(VALUE)) >= -32768 \
1410                                  && ((HOST_WIDE_INT)(VALUE)) <= 32767)
1411 #define CONST_OK_FOR_I(VALUE, STR) \
1412   ((STR)[1] == '0' && (STR)[2] == 6 ? CONST_OK_FOR_I06 (VALUE) \
1413    : (STR)[1] == '0' && (STR)[2] == '8' ? CONST_OK_FOR_I08 (VALUE) \
1414    : (STR)[1] == '1' && (STR)[2] == '0' ? CONST_OK_FOR_I10 (VALUE) \
1415    : (STR)[1] == '1' && (STR)[2] == '6' ? CONST_OK_FOR_I16 (VALUE) \
1416    : 0)
1417
1418 #define CONST_OK_FOR_J16(VALUE) \
1419   (HOST_BITS_PER_WIDE_INT >= 64 && (VALUE) == (HOST_WIDE_INT) 0xffffffff \
1420    || (HOST_BITS_PER_WIDE_INT >= 64 && (VALUE) == (HOST_WIDE_INT) -1 << 32))
1421 #define CONST_OK_FOR_J(VALUE, STR) \
1422   ((STR)[1] == '1' && (STR)[2] == '6' ? CONST_OK_FOR_J16 (VALUE) \
1423    : 0)
1424
1425 #define CONST_OK_FOR_K08(VALUE) (((HOST_WIDE_INT)(VALUE))>= 0 \
1426                                  && ((HOST_WIDE_INT)(VALUE)) <= 255)
1427 #define CONST_OK_FOR_K(VALUE, STR) \
1428   ((STR)[1] == '0' && (STR)[2] == '8' ? CONST_OK_FOR_K08 (VALUE) \
1429    : 0)
1430 #define CONST_OK_FOR_P27(VALUE) \
1431   ((VALUE)==1||(VALUE)==2||(VALUE)==8||(VALUE)==16)
1432 #define CONST_OK_FOR_P(VALUE, STR) \
1433   ((STR)[1] == '2' && (STR)[2] == '7' ? CONST_OK_FOR_P27 (VALUE) \
1434    : 0)
1435 #define CONST_OK_FOR_M(VALUE) ((VALUE)==1)
1436 #define CONST_OK_FOR_N(VALUE) ((VALUE)==0)
1437 #define CONST_OK_FOR_CONSTRAINT_P(VALUE, C, STR)        \
1438      ((C) == 'I' ? CONST_OK_FOR_I ((VALUE), (STR))      \
1439     : (C) == 'J' ? CONST_OK_FOR_J ((VALUE), (STR))      \
1440     : (C) == 'K' ? CONST_OK_FOR_K ((VALUE), (STR))      \
1441     : (C) == 'M' ? CONST_OK_FOR_M (VALUE)               \
1442     : (C) == 'N' ? CONST_OK_FOR_N (VALUE)               \
1443     : (C) == 'P' ? CONST_OK_FOR_P ((VALUE), (STR))      \
1444     : 0)
1445
1446 /* Similar, but for floating constants, and defining letters G and H.
1447    Here VALUE is the CONST_DOUBLE rtx itself.  */
1448
1449 #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C)          \
1450 ((C) == 'G' ? (fp_zero_operand (VALUE) && fldi_ok ())   \
1451  : (C) == 'H' ? (fp_one_operand (VALUE) && fldi_ok ())  \
1452  : (C) == 'F')
1453
1454 /* Given an rtx X being reloaded into a reg required to be
1455    in class CLASS, return the class of reg to actually use.
1456    In general this is just CLASS; but on some machines
1457    in some cases it is preferable to use a more restrictive class.  */
1458
1459 #define PREFERRED_RELOAD_CLASS(X, CLASS) \
1460   ((CLASS) == NO_REGS && TARGET_SHMEDIA \
1461    && (GET_CODE (X) == CONST_DOUBLE \
1462        || GET_CODE (X) == SYMBOL_REF) \
1463    ? GENERAL_REGS \
1464    : (CLASS)) \
1465
1466 #define SECONDARY_OUTPUT_RELOAD_CLASS(CLASS,MODE,X) \
1467   ((((REGCLASS_HAS_FP_REG (CLASS)                                       \
1468       && (GET_CODE (X) == REG                                           \
1469       && (GENERAL_OR_AP_REGISTER_P (REGNO (X))                          \
1470           || (FP_REGISTER_P (REGNO (X)) && (MODE) == SImode             \
1471               && TARGET_FMOVD))))                                       \
1472      || (REGCLASS_HAS_GENERAL_REG (CLASS)                               \
1473          && GET_CODE (X) == REG                                         \
1474          && FP_REGISTER_P (REGNO (X))))                                 \
1475     && ! TARGET_SHMEDIA                                                 \
1476     && ((MODE) == SFmode || (MODE) == SImode))                          \
1477    ? FPUL_REGS                                                          \
1478    : (((CLASS) == FPUL_REGS                                             \
1479        || (REGCLASS_HAS_FP_REG (CLASS)                                  \
1480            && ! TARGET_SHMEDIA && MODE == SImode))                      \
1481       && (GET_CODE (X) == MEM                                           \
1482           || (GET_CODE (X) == REG                                       \
1483               && (REGNO (X) >= FIRST_PSEUDO_REGISTER                    \
1484                   || REGNO (X) == T_REG                                 \
1485                   || system_reg_operand (X, VOIDmode)))))               \
1486    ? GENERAL_REGS                                                       \
1487    : ((CLASS) == TARGET_REGS                                            \
1488       || (TARGET_SHMEDIA && (CLASS) == SIBCALL_REGS))                   \
1489    ? ((target_operand ((X), (MODE))                                     \
1490        && ! target_reg_operand ((X), (MODE)))                           \
1491       ? NO_REGS : GENERAL_REGS)                                         \
1492    : (((CLASS) == MAC_REGS || (CLASS) == PR_REGS)                       \
1493       && GET_CODE (X) == REG && ! GENERAL_REGISTER_P (REGNO (X))        \
1494       && (CLASS) != REGNO_REG_CLASS (REGNO (X)))                        \
1495    ? GENERAL_REGS                                                       \
1496    : ((CLASS) != GENERAL_REGS && GET_CODE (X) == REG                    \
1497       && TARGET_REGISTER_P (REGNO (X)))                                 \
1498    ? GENERAL_REGS : NO_REGS)
1499
1500 #define SECONDARY_INPUT_RELOAD_CLASS(CLASS,MODE,X)  \
1501   ((REGCLASS_HAS_FP_REG (CLASS)                                         \
1502     && ! TARGET_SHMEDIA                                                 \
1503     && immediate_operand ((X), (MODE))                                  \
1504     && ! ((fp_zero_operand (X) || fp_one_operand (X))                   \
1505           && (MODE) == SFmode && fldi_ok ()))                           \
1506    ? R0_REGS                                                            \
1507    : (CLASS == FPUL_REGS                                                \
1508       && ((GET_CODE (X) == REG                                          \
1509            && (REGNO (X) == MACL_REG || REGNO (X) == MACH_REG           \
1510                || REGNO (X) == T_REG))                                  \
1511           || GET_CODE (X) == PLUS))                                     \
1512    ? GENERAL_REGS                                                       \
1513    : CLASS == FPUL_REGS && immediate_operand ((X), (MODE))              \
1514    ? (GET_CODE (X) == CONST_INT && CONST_OK_FOR_I08 (INTVAL (X))        \
1515       ? GENERAL_REGS                                                    \
1516       : R0_REGS)                                                        \
1517    : (CLASS == FPSCR_REGS                                               \
1518       && ((GET_CODE (X) == REG && REGNO (X) >= FIRST_PSEUDO_REGISTER)   \
1519           || (GET_CODE (X) == MEM && GET_CODE (XEXP ((X), 0)) == PLUS)))\
1520    ? GENERAL_REGS                                                       \
1521    : (REGCLASS_HAS_FP_REG (CLASS)                                       \
1522       && TARGET_SHMEDIA                                                 \
1523       && immediate_operand ((X), (MODE))                                \
1524       && (X) != CONST0_RTX (GET_MODE (X))                               \
1525       && GET_MODE (X) != V4SFmode)                                      \
1526    ? GENERAL_REGS                                                       \
1527    : SECONDARY_OUTPUT_RELOAD_CLASS((CLASS),(MODE),(X)))
1528
1529 /* Return the maximum number of consecutive registers
1530    needed to represent mode MODE in a register of class CLASS.
1531
1532    If TARGET_SHMEDIA, we need two FP registers per word.
1533    Otherwise we will need at most one register per word.  */
1534 #define CLASS_MAX_NREGS(CLASS, MODE) \
1535     (TARGET_SHMEDIA \
1536      && TEST_HARD_REG_BIT (reg_class_contents[CLASS], FIRST_FP_REG) \
1537      ? (GET_MODE_SIZE (MODE) + UNITS_PER_WORD/2 - 1) / (UNITS_PER_WORD/2) \
1538      : (GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
1539
1540 /* If defined, gives a class of registers that cannot be used as the
1541    operand of a SUBREG that changes the mode of the object illegally.  */
1542 /* ??? We need to renumber the internal numbers for the frnn registers
1543    when in little endian in order to allow mode size changes.  */
1544
1545 #define CANNOT_CHANGE_MODE_CLASS(FROM, TO, CLASS)                           \
1546   sh_cannot_change_mode_class (FROM, TO, CLASS)
1547 \f
1548 /* Stack layout; function entry, exit and calling.  */
1549
1550 /* Define the number of registers that can hold parameters.
1551    These macros are used only in other macro definitions below.  */
1552
1553 #define NPARM_REGS(MODE) \
1554   (TARGET_FPU_ANY && (MODE) == SFmode \
1555    ? (TARGET_SH5 ? 12 : 8) \
1556    : TARGET_SH4 && (GET_MODE_CLASS (MODE) == MODE_FLOAT \
1557                     || GET_MODE_CLASS (MODE) == MODE_COMPLEX_FLOAT) \
1558    ? (TARGET_SH5 ? 12 : 8) \
1559    : (TARGET_SH5 ? 8 : 4))
1560
1561 #define FIRST_PARM_REG (FIRST_GENERAL_REG + (TARGET_SH5 ? 2 : 4))
1562 #define FIRST_RET_REG  (FIRST_GENERAL_REG + (TARGET_SH5 ? 2 : 0))
1563
1564 #define FIRST_FP_PARM_REG (FIRST_FP_REG + (TARGET_SH5 ? 0 : 4))
1565 #define FIRST_FP_RET_REG FIRST_FP_REG
1566
1567 /* Define this if pushing a word on the stack
1568    makes the stack pointer a smaller address.  */
1569 #define STACK_GROWS_DOWNWARD
1570
1571 /*  Define this macro if the addresses of local variable slots are at
1572     negative offsets from the frame pointer.
1573
1574     The SH only has positive indexes, so grow the frame up.  */
1575 /* #define FRAME_GROWS_DOWNWARD */
1576
1577 /* Offset from the frame pointer to the first local variable slot to
1578    be allocated.  */
1579 #define STARTING_FRAME_OFFSET  0
1580
1581 /* If we generate an insn to push BYTES bytes,
1582    this says how many the stack pointer really advances by.  */
1583 /* Don't define PUSH_ROUNDING, since the hardware doesn't do this.
1584    When PUSH_ROUNDING is not defined, PARM_BOUNDARY will cause gcc to
1585    do correct alignment.  */
1586 #if 0
1587 #define PUSH_ROUNDING(NPUSHED)  (((NPUSHED) + 3) & ~3)
1588 #endif
1589
1590 /* Offset of first parameter from the argument pointer register value.  */
1591 #define FIRST_PARM_OFFSET(FNDECL)  0
1592
1593 /* Value is the number of byte of arguments automatically
1594    popped when returning from a subroutine call.
1595    FUNDECL is the declaration node of the function (as a tree),
1596    FUNTYPE is the data type of the function (as a tree),
1597    or for a library call it is an identifier node for the subroutine name.
1598    SIZE is the number of bytes of arguments passed on the stack.
1599
1600    On the SH, the caller does not pop any of its arguments that were passed
1601    on the stack.  */
1602 #define RETURN_POPS_ARGS(FUNDECL,FUNTYPE,SIZE)  0
1603
1604 /* Value is the number of bytes of arguments automatically popped when
1605    calling a subroutine.
1606    CUM is the accumulated argument list.
1607
1608    On SHcompact, the call trampoline pops arguments off the stack.  */
1609 #define CALL_POPS_ARGS(CUM) (TARGET_SHCOMPACT ? (CUM).stack_regs * 8 : 0)
1610
1611 /* Nonzero if we do not know how to pass TYPE solely in registers.
1612    Values that come in registers with inconvenient padding are stored
1613    to memory at the function start.  */
1614
1615 #define MUST_PASS_IN_STACK(MODE,TYPE)                   \
1616   ((TYPE) != 0                                          \
1617    && (TREE_CODE (TYPE_SIZE (TYPE)) != INTEGER_CST      \
1618        || TREE_ADDRESSABLE (TYPE)))
1619 /* Some subroutine macros specific to this machine.  */
1620
1621 #define BASE_RETURN_VALUE_REG(MODE) \
1622   ((TARGET_FPU_ANY && ((MODE) == SFmode))                       \
1623    ? FIRST_FP_RET_REG                                   \
1624    : TARGET_FPU_ANY && (MODE) == SCmode         \
1625    ? FIRST_FP_RET_REG                                   \
1626    : (TARGET_FPU_DOUBLE                                 \
1627       && ((MODE) == DFmode || (MODE) == SFmode          \
1628           || (MODE) == DCmode || (MODE) == SCmode ))    \
1629    ? FIRST_FP_RET_REG                                   \
1630    : FIRST_RET_REG)
1631
1632 #define BASE_ARG_REG(MODE) \
1633   ((TARGET_SH2E && ((MODE) == SFmode))                  \
1634    ? FIRST_FP_PARM_REG                                  \
1635    : TARGET_SH4 && (GET_MODE_CLASS (MODE) == MODE_FLOAT \
1636                     || GET_MODE_CLASS (MODE) == MODE_COMPLEX_FLOAT)\
1637    ? FIRST_FP_PARM_REG                                  \
1638    : FIRST_PARM_REG)
1639
1640 /* Define how to find the value returned by a function.
1641    VALTYPE is the data type of the value (as a tree).
1642    If the precise function being called is known, FUNC is its FUNCTION_DECL;
1643    otherwise, FUNC is 0.
1644    For the SH, this is like LIBCALL_VALUE, except that we must change the
1645    mode like PROMOTE_MODE does.
1646    ??? PROMOTE_MODE is ignored for non-scalar types.  The set of types
1647    tested here has to be kept in sync with the one in explow.c:promote_mode.  */
1648
1649 #define FUNCTION_VALUE(VALTYPE, FUNC)                                   \
1650   gen_rtx (REG,                                                         \
1651            ((GET_MODE_CLASS (TYPE_MODE (VALTYPE)) == MODE_INT           \
1652              && GET_MODE_SIZE (TYPE_MODE (VALTYPE)) < UNITS_PER_WORD    \
1653              && (TREE_CODE (VALTYPE) == INTEGER_TYPE                    \
1654                  || TREE_CODE (VALTYPE) == ENUMERAL_TYPE                \
1655                  || TREE_CODE (VALTYPE) == BOOLEAN_TYPE                 \
1656                  || TREE_CODE (VALTYPE) == CHAR_TYPE                    \
1657                  || TREE_CODE (VALTYPE) == REAL_TYPE                    \
1658                  || TREE_CODE (VALTYPE) == OFFSET_TYPE))                \
1659             ? (TARGET_SHMEDIA ? DImode : SImode) : TYPE_MODE (VALTYPE)), \
1660            BASE_RETURN_VALUE_REG (TYPE_MODE (VALTYPE)))
1661      
1662 /* Define how to find the value returned by a library function
1663    assuming the value has mode MODE.  */
1664 #define LIBCALL_VALUE(MODE) \
1665   gen_rtx_REG ((MODE), BASE_RETURN_VALUE_REG (MODE));
1666
1667 /* 1 if N is a possible register number for a function value.  */
1668 #define FUNCTION_VALUE_REGNO_P(REGNO) \
1669   ((REGNO) == FIRST_RET_REG || (TARGET_SH2E && (REGNO) == FIRST_FP_RET_REG) \
1670    || (TARGET_SHMEDIA_FPU && (REGNO) == FIRST_FP_RET_REG))
1671
1672 /* 1 if N is a possible register number for function argument passing.  */
1673 #define FUNCTION_ARG_REGNO_P(REGNO) \
1674   (((REGNO) >= FIRST_PARM_REG && (REGNO) < (FIRST_PARM_REG              \
1675                                             + NPARM_REGS (SImode)))     \
1676    || (TARGET_FPU_ANY                                                   \
1677        && (REGNO) >= FIRST_FP_PARM_REG && (REGNO) < (FIRST_FP_PARM_REG  \
1678                                                      + NPARM_REGS (SFmode))))
1679 \f
1680 /* Define a data type for recording info about an argument list
1681    during the scan of that argument list.  This data type should
1682    hold all necessary information about the function itself
1683    and about the args processed so far, enough to enable macros
1684    such as FUNCTION_ARG to determine where the next arg should go.
1685
1686    On SH, this is a single integer, which is a number of words
1687    of arguments scanned so far (including the invisible argument,
1688    if any, which holds the structure-value-address).
1689    Thus NARGREGS or more means all following args should go on the stack.  */
1690
1691 enum sh_arg_class { SH_ARG_INT = 0, SH_ARG_FLOAT = 1 };
1692 struct sh_args {
1693     int arg_count[2];
1694     int force_mem;
1695   /* Nonzero if a prototype is available for the function.  */
1696     int prototype_p;
1697   /* The number of an odd floating-point register, that should be used
1698      for the next argument of type float.  */
1699     int free_single_fp_reg;
1700   /* Whether we're processing an outgoing function call.  */
1701     int outgoing;
1702   /* The number of general-purpose registers that should have been
1703      used to pass partial arguments, that are passed totally on the
1704      stack.  On SHcompact, a call trampoline will pop them off the
1705      stack before calling the actual function, and, if the called
1706      function is implemented in SHcompact mode, the incoming arguments
1707      decoder will push such arguments back onto the stack.  For
1708      incoming arguments, STACK_REGS also takes into account other
1709      arguments passed by reference, that the decoder will also push
1710      onto the stack.  */
1711     int stack_regs;
1712   /* The number of general-purpose registers that should have been
1713      used to pass arguments, if the arguments didn't have to be passed
1714      by reference.  */
1715     int byref_regs;
1716   /* Set by SHCOMPACT_BYREF if the current argument is to be passed by
1717      reference.  */
1718     int byref;
1719
1720   /* call_cookie is a bitmask used by call expanders, as well as
1721      function prologue and epilogues, to allow SHcompact to comply
1722      with the SH5 32-bit ABI, that requires 64-bit registers to be
1723      used even though only the lower 32-bit half is visible in
1724      SHcompact mode.  The strategy is to call SHmedia trampolines.
1725
1726      The alternatives for each of the argument-passing registers are
1727      (a) leave it unchanged; (b) pop it off the stack; (c) load its
1728      contents from the address in it; (d) add 8 to it, storing the
1729      result in the next register, then (c); (e) copy it from some
1730      floating-point register,
1731
1732      Regarding copies from floating-point registers, r2 may only be
1733      copied from dr0.  r3 may be copied from dr0 or dr2.  r4 maybe
1734      copied from dr0, dr2 or dr4.  r5 maybe copied from dr0, dr2,
1735      dr4 or dr6.  r6 may be copied from dr0, dr2, dr4, dr6 or dr8.
1736      r7 through to r9 may be copied from dr0, dr2, dr4, dr8, dr8 or
1737      dr10.
1738
1739      The bit mask is structured as follows:
1740
1741      - 1 bit to tell whether to set up a return trampoline.
1742
1743      - 3 bits to count the number consecutive registers to pop off the
1744        stack.
1745
1746      - 4 bits for each of r9, r8, r7 and r6.
1747
1748      - 3 bits for each of r5, r4, r3 and r2.
1749
1750      - 3 bits set to 0 (the most significant ones)
1751
1752         3           2            1           0
1753        1098 7654 3210 9876 5432 1098 7654 3210
1754        FLPF LPFL PFLP FFLP FFLP FFLP FFLP SSST
1755        2223 3344 4555 6666 7777 8888 9999 SSS-
1756
1757      - If F is set, the register must be copied from an FP register,
1758        whose number is encoded in the remaining bits.
1759
1760      - Else, if L is set, the register must be loaded from the address
1761        contained in it.  If the P bit is *not* set, the address of the
1762        following dword should be computed first, and stored in the
1763        following register.
1764
1765      - Else, if P is set, the register alone should be popped off the
1766        stack.
1767
1768      - After all this processing, the number of registers represented
1769        in SSS will be popped off the stack.  This is an optimization
1770        for pushing/popping consecutive registers, typically used for
1771        varargs and large arguments partially passed in registers.
1772
1773      - If T is set, a return trampoline will be set up for 64-bit
1774      return values to be split into 2 32-bit registers.  */
1775 #define CALL_COOKIE_RET_TRAMP_SHIFT 0
1776 #define CALL_COOKIE_RET_TRAMP(VAL) ((VAL) << CALL_COOKIE_RET_TRAMP_SHIFT)
1777 #define CALL_COOKIE_STACKSEQ_SHIFT 1
1778 #define CALL_COOKIE_STACKSEQ(VAL) ((VAL) << CALL_COOKIE_STACKSEQ_SHIFT)
1779 #define CALL_COOKIE_STACKSEQ_GET(COOKIE) \
1780   (((COOKIE) >> CALL_COOKIE_STACKSEQ_SHIFT) & 7)
1781 #define CALL_COOKIE_INT_REG_SHIFT(REG) \
1782   (4 * (7 - (REG)) + (((REG) <= 2) ? ((REG) - 2) : 1) + 3)
1783 #define CALL_COOKIE_INT_REG(REG, VAL) \
1784   ((VAL) << CALL_COOKIE_INT_REG_SHIFT (REG))
1785 #define CALL_COOKIE_INT_REG_GET(COOKIE, REG) \
1786   (((COOKIE) >> CALL_COOKIE_INT_REG_SHIFT (REG)) & ((REG) < 4 ? 7 : 15))
1787     long call_cookie;
1788 };
1789
1790 #define CUMULATIVE_ARGS  struct sh_args
1791
1792 #define GET_SH_ARG_CLASS(MODE) \
1793   ((TARGET_FPU_ANY && (MODE) == SFmode) \
1794    ? SH_ARG_FLOAT \
1795    /* There's no mention of complex float types in the SH5 ABI, so we
1796       should presumably handle them as aggregate types.  */ \
1797    : TARGET_SH5 && GET_MODE_CLASS (MODE) == MODE_COMPLEX_FLOAT \
1798    ? SH_ARG_INT \
1799    : TARGET_FPU_DOUBLE && (GET_MODE_CLASS (MODE) == MODE_FLOAT \
1800                            || GET_MODE_CLASS (MODE) == MODE_COMPLEX_FLOAT) \
1801    ? SH_ARG_FLOAT : SH_ARG_INT)
1802
1803 #define ROUND_ADVANCE(SIZE) \
1804   (((SIZE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
1805
1806 /* Round a register number up to a proper boundary for an arg of mode
1807    MODE.
1808
1809    The SH doesn't care about double alignment, so we only
1810    round doubles to even regs when asked to explicitly.  */
1811
1812 #define ROUND_REG(CUM, MODE) \
1813    (((TARGET_ALIGN_DOUBLE                                       \
1814       || (TARGET_SH4 && ((MODE) == DFmode || (MODE) == DCmode)  \
1815           && (CUM).arg_count[(int) SH_ARG_FLOAT] < NPARM_REGS (MODE)))\
1816      && GET_MODE_UNIT_SIZE ((MODE)) > UNITS_PER_WORD)           \
1817     ? ((CUM).arg_count[(int) GET_SH_ARG_CLASS (MODE)]           \
1818        + ((CUM).arg_count[(int) GET_SH_ARG_CLASS (MODE)] & 1))  \
1819     : (CUM).arg_count[(int) GET_SH_ARG_CLASS (MODE)])
1820
1821 /* Initialize a variable CUM of type CUMULATIVE_ARGS
1822    for a call to a function whose data type is FNTYPE.
1823    For a library call, FNTYPE is 0.
1824
1825    On SH, the offset always starts at 0: the first parm reg is always
1826    the same reg for a given argument class.
1827
1828    For TARGET_HITACHI, the structure value pointer is passed in memory.  */
1829
1830 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT) \
1831   do {                                                          \
1832     (CUM).arg_count[(int) SH_ARG_INT] = 0;                      \
1833     (CUM).arg_count[(int) SH_ARG_FLOAT] = 0;                    \
1834     (CUM).force_mem                                             \
1835       = (TARGET_HITACHI && FNTYPE                               \
1836          && aggregate_value_p (TREE_TYPE (FNTYPE)));            \
1837     (CUM).prototype_p = (FNTYPE) && TYPE_ARG_TYPES (FNTYPE);    \
1838     (CUM).arg_count[(int) SH_ARG_INT]                           \
1839       = (TARGET_SH5 && (FNTYPE)                                 \
1840          && aggregate_value_p (TREE_TYPE (FNTYPE)));            \
1841     (CUM).free_single_fp_reg = 0;                               \
1842     (CUM).outgoing = 1;                                         \
1843     (CUM).stack_regs = 0;                                       \
1844     (CUM).byref_regs = 0;                                       \
1845     (CUM).byref = 0;                                            \
1846     (CUM).call_cookie                                           \
1847       = (CALL_COOKIE_RET_TRAMP                                  \
1848          (TARGET_SHCOMPACT && (FNTYPE)                          \
1849           && (CUM).arg_count[(int) SH_ARG_INT] == 0             \
1850           && (TYPE_MODE (TREE_TYPE (FNTYPE)) == BLKmode         \
1851               ? int_size_in_bytes (TREE_TYPE (FNTYPE))          \
1852               : GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (FNTYPE)))) > 4 \
1853           && (BASE_RETURN_VALUE_REG (TYPE_MODE (TREE_TYPE       \
1854                                                 (FNTYPE)))      \
1855               == FIRST_RET_REG)));                              \
1856   } while (0)
1857
1858 #define INIT_CUMULATIVE_LIBCALL_ARGS(CUM, MODE, LIBNAME) \
1859   do {                                                          \
1860     INIT_CUMULATIVE_ARGS ((CUM), NULL_TREE, (LIBNAME), 0);      \
1861     (CUM).call_cookie                                           \
1862       = (CALL_COOKIE_RET_TRAMP                                  \
1863          (TARGET_SHCOMPACT && GET_MODE_SIZE (MODE) > 4          \
1864           && BASE_RETURN_VALUE_REG (MODE) == FIRST_RET_REG));   \
1865   } while (0)
1866
1867 #define INIT_CUMULATIVE_INCOMING_ARGS(CUM, FNTYPE, LIBNAME) \
1868   do {                                                          \
1869     INIT_CUMULATIVE_ARGS ((CUM), (FNTYPE), (LIBNAME), 0);       \
1870     (CUM).outgoing = 0;                                         \
1871   } while (0)
1872  
1873 #define OLD_ARG_MODE(MODE, TYPE) \
1874   (((TYPE) \
1875     && (TREE_CODE (TYPE) == RECORD_TYPE || TREE_CODE (TYPE) == UNION_TYPE) \
1876     && (MODE) != BLKmode && GET_MODE_CLASS (MODE) != MODE_INT) \
1877    ? int_mode_for_mode (MODE) : (MODE))
1878
1879 /* Update the data in CUM to advance over an argument
1880    of mode MODE and data type TYPE.
1881    (TYPE is null for libcalls where that information may not be
1882    available.)  */
1883
1884 #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED)    \
1885 do {                                                    \
1886  enum machine_mode MODE_ = OLD_ARG_MODE ((MODE), (TYPE));\
1887  if ((CUM).force_mem)                                   \
1888    (CUM).force_mem = 0;                                 \
1889  else if (TARGET_SH5)                                   \
1890    {                                                    \
1891      tree TYPE_ = ((CUM).byref && (TYPE)                \
1892                    ? TREE_TYPE (TYPE)                   \
1893                    : (TYPE));                           \
1894      int dwords, numregs;                               \
1895                                                         \
1896      MODE_ = ((CUM).byref && (TYPE)                     \
1897               ? TYPE_MODE (TYPE_) : (MODE_));           \
1898      dwords = (((CUM).byref                             \
1899                 ? (CUM).byref                           \
1900                 : (MODE_) == BLKmode                    \
1901                 ? int_size_in_bytes (TYPE_)             \
1902                 : GET_MODE_SIZE (MODE_)) + 7) / 8;      \
1903      numregs = MIN (dwords, NPARM_REGS (SImode)         \
1904                     - (CUM).arg_count[(int) SH_ARG_INT]); \
1905      if (numregs)                                       \
1906        {                                                \
1907          (CUM).arg_count[(int) SH_ARG_INT] += numregs;  \
1908          if (TARGET_SHCOMPACT                           \
1909              && SHCOMPACT_FORCE_ON_STACK (MODE_, TYPE_)) \
1910            {                                            \
1911              (CUM).call_cookie                          \
1912                |= CALL_COOKIE_INT_REG (((CUM).arg_count[(int) SH_ARG_INT] \
1913                                         - numregs), 1); \
1914              /* N.B. We want this also for outgoing.   */\
1915              (CUM).stack_regs += numregs;               \
1916            }                                            \
1917          else if ((CUM).byref)                          \
1918            {                                            \
1919              if (! (CUM).outgoing)                      \
1920                (CUM).stack_regs += numregs;             \
1921              (CUM).byref_regs += numregs;               \
1922              (CUM).byref = 0;                           \
1923              do                                         \
1924                (CUM).call_cookie                        \
1925                  |= CALL_COOKIE_INT_REG (((CUM).arg_count[(int) SH_ARG_INT] \
1926                                           - numregs), 2); \
1927              while (--numregs);                         \
1928              (CUM).call_cookie                          \
1929                |= CALL_COOKIE_INT_REG (((CUM).arg_count[(int) SH_ARG_INT] \
1930                                         - 1), 1); \
1931            }                                            \
1932          else if (dwords > numregs)                     \
1933            {                                            \
1934              int pushregs = numregs;                    \
1935                                                         \
1936              if (TARGET_SHCOMPACT)                      \
1937                (CUM).stack_regs += numregs;             \
1938              while (pushregs < NPARM_REGS (SImode) - 1  \
1939                     && (CALL_COOKIE_INT_REG_GET         \
1940                         ((CUM).call_cookie,             \
1941                         NPARM_REGS (SImode) - pushregs) \
1942                         == 1))                          \
1943                {                                        \
1944                  (CUM).call_cookie                      \
1945                    &= ~ CALL_COOKIE_INT_REG (NPARM_REGS (SImode) \
1946                                              - pushregs, 1); \
1947                  pushregs++;                            \
1948                }                                        \
1949              if (numregs == NPARM_REGS (SImode))        \
1950                (CUM).call_cookie                        \
1951                  |= CALL_COOKIE_INT_REG (0, 1)          \
1952                     | CALL_COOKIE_STACKSEQ (numregs - 1); \
1953              else                                       \
1954                (CUM).call_cookie                        \
1955                  |= CALL_COOKIE_STACKSEQ (numregs);     \
1956            }                                            \
1957        }                                                \
1958      if (GET_SH_ARG_CLASS (MODE_) == SH_ARG_FLOAT       \
1959          && ((NAMED) || ! (CUM).prototype_p))           \
1960        {                                                \
1961          if ((MODE_) == SFmode && (CUM).free_single_fp_reg) \
1962            (CUM).free_single_fp_reg = 0;                \
1963          else if ((CUM).arg_count[(int) SH_ARG_FLOAT]   \
1964                   < NPARM_REGS (SFmode))                \
1965            {                                            \
1966              int numfpregs                              \
1967                = MIN ((GET_MODE_SIZE (MODE_) + 7) / 8 * 2, \
1968                       NPARM_REGS (SFmode)               \
1969                       - (CUM).arg_count[(int) SH_ARG_FLOAT]); \
1970                                                         \
1971              (CUM).arg_count[(int) SH_ARG_FLOAT] += numfpregs; \
1972                                                         \
1973              if (TARGET_SHCOMPACT && ! (CUM).prototype_p) \
1974                {                                        \
1975                  if ((CUM).outgoing && numregs > 0)     \
1976                    do                                   \
1977                      {                                  \
1978                        (CUM).call_cookie                \
1979                          |= (CALL_COOKIE_INT_REG        \
1980                              ((CUM).arg_count[(int) SH_ARG_INT] \
1981                               - numregs + ((numfpregs - 2) / 2), \
1982                               4 + ((CUM).arg_count[(int) SH_ARG_FLOAT] \
1983                                    - numfpregs) / 2));  \
1984                      }                                  \
1985                    while (numfpregs -= 2);              \
1986                }                                        \
1987              else if ((MODE_) == SFmode && (NAMED)      \
1988                       && ((CUM).arg_count[(int) SH_ARG_FLOAT] \
1989                           < NPARM_REGS (SFmode)))       \
1990                (CUM).free_single_fp_reg                 \
1991                  = FIRST_FP_PARM_REG - numfpregs        \
1992                  + (CUM).arg_count[(int) SH_ARG_FLOAT] + 1; \
1993            }                                            \
1994        }                                                \
1995    }                                                    \
1996  else if (! TARGET_SH4 || PASS_IN_REG_P ((CUM), (MODE_), (TYPE))) \
1997    ((CUM).arg_count[(int) GET_SH_ARG_CLASS (MODE_)]     \
1998     = (ROUND_REG ((CUM), (MODE_))                       \
1999        + ((MODE_) == BLKmode                            \
2000           ? ROUND_ADVANCE (int_size_in_bytes (TYPE))    \
2001           : ROUND_ADVANCE (GET_MODE_SIZE (MODE_)))));   \
2002 } while (0)
2003
2004 /* Return boolean indicating arg of mode MODE will be passed in a reg.
2005    This macro is only used in this file.  */
2006
2007 #define PASS_IN_REG_P(CUM, MODE, TYPE) \
2008   (((TYPE) == 0 \
2009     || (! TREE_ADDRESSABLE ((tree)(TYPE)) \
2010         && (! TARGET_HITACHI || ! AGGREGATE_TYPE_P (TYPE)))) \
2011    && ! (CUM).force_mem \
2012    && (TARGET_SH2E \
2013        ? ((MODE) == BLKmode \
2014           ? (((CUM).arg_count[(int) SH_ARG_INT] * UNITS_PER_WORD \
2015               + int_size_in_bytes (TYPE)) \
2016              <= NPARM_REGS (SImode) * UNITS_PER_WORD) \
2017           : ((ROUND_REG((CUM), (MODE)) \
2018               + HARD_REGNO_NREGS (BASE_ARG_REG (MODE), (MODE))) \
2019              <= NPARM_REGS (MODE))) \
2020        : ROUND_REG ((CUM), (MODE)) < NPARM_REGS (MODE)))
2021
2022 /* Define where to put the arguments to a function.
2023    Value is zero to push the argument on the stack,
2024    or a hard register in which to store the argument.
2025
2026    MODE is the argument's machine mode.
2027    TYPE is the data type of the argument (as a tree).
2028     This is null for libcalls where that information may
2029     not be available.
2030    CUM is a variable of type CUMULATIVE_ARGS which gives info about
2031     the preceding args and about the function being called.
2032    NAMED is nonzero if this argument is a named parameter
2033     (otherwise it is an extra parameter matching an ellipsis).
2034
2035    On SH the first args are normally in registers
2036    and the rest are pushed.  Any arg that starts within the first
2037    NPARM_REGS words is at least partially passed in a register unless
2038    its data type forbids.  */
2039
2040 #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \
2041   FUNCTION_ARG_1 ((CUM), OLD_ARG_MODE ((MODE), (TYPE)), (MODE), (TYPE), (NAMED))
2042
2043 #define FUNCTION_ARG_1(CUM, MODE, NEW_MODE, TYPE, NAMED) \
2044   ((! TARGET_SH5 \
2045     && PASS_IN_REG_P ((CUM), (MODE), (TYPE))                            \
2046     && ((NAMED) || !TARGET_HITACHI))                                    \
2047    ? gen_rtx_REG ((NEW_MODE),                                           \
2048                   ((BASE_ARG_REG (MODE) + ROUND_REG ((CUM), (MODE)))    \
2049                    ^ ((MODE) == SFmode && TARGET_SH4                    \
2050                       && TARGET_LITTLE_ENDIAN != 0)))                   \
2051    : TARGET_SH5                                                         \
2052    ? ((MODE) == VOIDmode && TARGET_SHCOMPACT                            \
2053       ? GEN_INT ((CUM).call_cookie)                                     \
2054       /* The following test assumes unnamed arguments are promoted to   \
2055          DFmode.  */                                                    \
2056       : (MODE) == SFmode && (CUM).free_single_fp_reg                    \
2057       ? SH5_PROTOTYPED_FLOAT_ARG ((CUM), (NEW_MODE), (CUM).free_single_fp_reg) \
2058       : (GET_SH_ARG_CLASS (MODE) == SH_ARG_FLOAT                        \
2059          && ((NAMED) || ! (CUM).prototype_p)                            \
2060          && (CUM).arg_count[(int) SH_ARG_FLOAT] < NPARM_REGS (SFmode))  \
2061       ? ((! (CUM).prototype_p && TARGET_SHMEDIA)                        \
2062          ? SH5_PROTOTYPELESS_FLOAT_ARG ((CUM), (NEW_MODE))              \
2063          : SH5_PROTOTYPED_FLOAT_ARG ((CUM), (NEW_MODE),                 \
2064                                      FIRST_FP_PARM_REG                  \
2065                                      + (CUM).arg_count[(int) SH_ARG_FLOAT])) \
2066       : ((CUM).arg_count[(int) SH_ARG_INT] < NPARM_REGS (SImode)        \
2067          && (! TARGET_SHCOMPACT                                         \
2068              || (! SHCOMPACT_FORCE_ON_STACK ((MODE), (TYPE))            \
2069                  && ! SH5_WOULD_BE_PARTIAL_NREGS ((CUM), (MODE),        \
2070                                                   (TYPE), (NAMED)))))   \
2071       ? gen_rtx_REG ((NEW_MODE), (FIRST_PARM_REG                        \
2072                               + (CUM).arg_count[(int) SH_ARG_INT]))     \
2073       : 0)                                                              \
2074    : 0)
2075
2076 /* Whether an argument must be passed by reference.  On SHcompact, we
2077    pretend arguments wider than 32-bits that would have been passed in
2078    registers are passed by reference, so that an SHmedia trampoline
2079    loads them into the full 64-bits registers.  */
2080 #define FUNCTION_ARG_PASS_BY_REFERENCE(CUM,MODE,TYPE,NAMED) \
2081   (MUST_PASS_IN_STACK ((MODE), (TYPE)) \
2082    || SHCOMPACT_BYREF ((CUM), OLD_ARG_MODE ((MODE), (TYPE)), (TYPE), (NAMED)))
2083
2084 #define SHCOMPACT_BYREF(CUM, MODE, TYPE, NAMED) \
2085   ((CUM).byref                                                          \
2086    = (TARGET_SHCOMPACT                                                  \
2087       && (CUM).arg_count[(int) SH_ARG_INT] < NPARM_REGS (SImode)        \
2088       && (! (NAMED) || GET_SH_ARG_CLASS (MODE) == SH_ARG_INT            \
2089           || (GET_SH_ARG_CLASS (MODE) == SH_ARG_FLOAT                   \
2090               && ((CUM).arg_count[(int) SH_ARG_FLOAT]                   \
2091                   >= NPARM_REGS (SFmode))))                             \
2092       && ((MODE) == BLKmode ? int_size_in_bytes (TYPE)                  \
2093           : GET_MODE_SIZE (MODE)) > 4                                   \
2094       && ! SHCOMPACT_FORCE_ON_STACK ((MODE), (TYPE))                    \
2095       && ! SH5_WOULD_BE_PARTIAL_NREGS ((CUM), (MODE),                   \
2096                                        (TYPE), (NAMED)))                \
2097       ? ((MODE) == BLKmode ? int_size_in_bytes (TYPE)                   \
2098          : GET_MODE_SIZE (MODE))                                        \
2099       : 0)
2100
2101 /* If an argument of size 5, 6 or 7 bytes is to be passed in a 64-bit
2102    register in SHcompact mode, it must be padded in the most
2103    significant end.  This means that passing it by reference wouldn't
2104    pad properly on a big-endian machine.  In this particular case, we
2105    pass this argument on the stack, in a way that the call trampoline
2106    will load its value into the appropriate register.  */
2107 #define SHCOMPACT_FORCE_ON_STACK(MODE,TYPE) \
2108   ((MODE) == BLKmode \
2109    && TARGET_SHCOMPACT \
2110    && ! TARGET_LITTLE_ENDIAN \
2111    && int_size_in_bytes (TYPE) > 4 \
2112    && int_size_in_bytes (TYPE) < 8)
2113
2114 /* Minimum alignment for an argument to be passed by callee-copy
2115    reference.  We need such arguments to be aligned to 8 byte
2116    boundaries, because they'll be loaded using quad loads.  */
2117 #define SH_MIN_ALIGN_FOR_CALLEE_COPY (8 * BITS_PER_UNIT)
2118
2119 #define FUNCTION_ARG_CALLEE_COPIES(CUM,MODE,TYPE,NAMED) \
2120   ((CUM).outgoing                                                       \
2121    && (((MODE) == BLKmode ? TYPE_ALIGN (TYPE)                           \
2122         : GET_MODE_ALIGNMENT (MODE))                                    \
2123        % SH_MIN_ALIGN_FOR_CALLEE_COPY == 0))
2124
2125 /* The SH5 ABI requires floating-point arguments to be passed to
2126    functions without a prototype in both an FP register and a regular
2127    register or the stack.  When passing the argument in both FP and
2128    general-purpose registers, list the FP register first.  */
2129 #define SH5_PROTOTYPELESS_FLOAT_ARG(CUM,MODE) \
2130   (gen_rtx_PARALLEL                                                     \
2131    ((MODE),                                                             \
2132     gen_rtvec (2,                                                       \
2133                gen_rtx_EXPR_LIST                                        \
2134                (VOIDmode,                                               \
2135                 ((CUM).arg_count[(int) SH_ARG_INT] < NPARM_REGS (SImode) \
2136                  ? gen_rtx_REG ((MODE), FIRST_FP_PARM_REG               \
2137                                 + (CUM).arg_count[(int) SH_ARG_FLOAT])  \
2138                  : NULL_RTX),                                           \
2139                 const0_rtx),                                            \
2140                gen_rtx_EXPR_LIST                                        \
2141                (VOIDmode,                                               \
2142                 ((CUM).arg_count[(int) SH_ARG_INT] < NPARM_REGS (SImode) \
2143                  ? gen_rtx_REG ((MODE), FIRST_PARM_REG                  \
2144                                 + (CUM).arg_count[(int) SH_ARG_INT])    \
2145                  : gen_rtx_REG ((MODE), FIRST_FP_PARM_REG               \
2146                                 + (CUM).arg_count[(int) SH_ARG_FLOAT])), \
2147                 const0_rtx))))
2148
2149 /* The SH5 ABI requires regular registers or stack slots to be
2150    reserved for floating-point arguments.  Registers are taken care of
2151    in FUNCTION_ARG_ADVANCE, but stack slots must be reserved here.
2152    Unfortunately, there's no way to just reserve a stack slot, so
2153    we'll end up needlessly storing a copy of the argument in the
2154    stack.  For incoming arguments, however, the PARALLEL will be
2155    optimized to the register-only form, and the value in the stack
2156    slot won't be used at all.  */
2157 #define SH5_PROTOTYPED_FLOAT_ARG(CUM,MODE,REG) \
2158   ((CUM).arg_count[(int) SH_ARG_INT] < NPARM_REGS (SImode)              \
2159    ? gen_rtx_REG ((MODE), (REG))                                        \
2160    : gen_rtx_PARALLEL ((MODE),                                          \
2161                        gen_rtvec (2,                                    \
2162                                   gen_rtx_EXPR_LIST                     \
2163                                   (VOIDmode, NULL_RTX,                  \
2164                                    const0_rtx),                         \
2165                                   gen_rtx_EXPR_LIST                     \
2166                                   (VOIDmode, gen_rtx_REG ((MODE),       \
2167                                                           (REG)),       \
2168                                    const0_rtx))))
2169
2170 #define STRICT_ARGUMENT_NAMING TARGET_SH5
2171
2172 #define PRETEND_OUTGOING_VARARGS_NAMED (! TARGET_HITACHI && ! TARGET_SH5)
2173
2174 /* For an arg passed partly in registers and partly in memory,
2175    this is the number of registers used.
2176    For args passed entirely in registers or entirely in memory, zero.
2177
2178    We sometimes split args.  */
2179
2180 #define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) \
2181   ((! TARGET_SH5 \
2182     && PASS_IN_REG_P ((CUM), (MODE), (TYPE))                    \
2183     && ! TARGET_SH4                                             \
2184     && (ROUND_REG ((CUM), (MODE))                               \
2185         + ((MODE) != BLKmode                                    \
2186            ? ROUND_ADVANCE (GET_MODE_SIZE (MODE))               \
2187            : ROUND_ADVANCE (int_size_in_bytes (TYPE)))          \
2188         > NPARM_REGS (MODE)))                                   \
2189    ? NPARM_REGS (MODE) - ROUND_REG ((CUM), (MODE))              \
2190    : (SH5_WOULD_BE_PARTIAL_NREGS ((CUM), (MODE), (TYPE), (NAMED)) \
2191       && ! TARGET_SHCOMPACT)                                    \
2192    ? NPARM_REGS (SImode) - (CUM).arg_count[(int) SH_ARG_INT]    \
2193    : 0)
2194
2195 #define SH5_WOULD_BE_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) \
2196   (TARGET_SH5                                                   \
2197    && ((MODE) == BLKmode || (MODE) == TImode || (MODE) == CDImode \
2198        || (MODE) == DCmode) \
2199    && ((CUM).arg_count[(int) SH_ARG_INT]                        \
2200        + (int_size_in_bytes (TYPE) + 7) / 8) > NPARM_REGS (SImode))
2201
2202 /* Perform any needed actions needed for a function that is receiving a
2203    variable number of arguments.  */
2204
2205 /* We actually emit the code in sh_expand_prologue.  We used to use
2206    a static variable to flag that we need to emit this code, but that
2207    doesn't when inlining, when functions are deferred and then emitted
2208    later.  Fortunately, we already have two flags that are part of struct
2209    function that tell if a function uses varargs or stdarg.  */
2210 #define SETUP_INCOMING_VARARGS(ASF, MODE, TYPE, PAS, ST)  do \
2211   if (! current_function_stdarg) \
2212     abort (); \
2213 while (0)
2214
2215 /* Define the `__builtin_va_list' type for the ABI.  */
2216 #define BUILD_VA_LIST_TYPE(VALIST) \
2217   (VALIST) = sh_build_va_list ()
2218
2219 /* Implement `va_start' for varargs and stdarg.  */
2220 #define EXPAND_BUILTIN_VA_START(valist, nextarg) \
2221   sh_va_start (valist, nextarg)
2222
2223 /* Implement `va_arg'.  */
2224 #define EXPAND_BUILTIN_VA_ARG(valist, type) \
2225   sh_va_arg (valist, type)
2226
2227 /* Call the function profiler with a given profile label.
2228    We use two .aligns, so as to make sure that both the .long is aligned
2229    on a 4 byte boundary, and that the .long is a fixed distance (2 bytes)
2230    from the trapa instruction.  */
2231
2232 #define FUNCTION_PROFILER(STREAM,LABELNO)                       \
2233 {                                                               \
2234         fprintf((STREAM), "\t.align\t2\n");                     \
2235         fprintf((STREAM), "\ttrapa\t#33\n");                    \
2236         fprintf((STREAM), "\t.align\t2\n");                     \
2237         asm_fprintf((STREAM), "\t.long\t%LLP%d\n", (LABELNO));  \
2238 }
2239
2240 /* Define this macro if the code for function profiling should come
2241    before the function prologue.  Normally, the profiling code comes
2242    after.  */
2243
2244 #define PROFILE_BEFORE_PROLOGUE
2245
2246 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
2247    the stack pointer does not matter.  The value is tested only in
2248    functions that have frame pointers.
2249    No definition is equivalent to always zero.  */
2250
2251 #define EXIT_IGNORE_STACK 1
2252
2253 /* 
2254    On the SH, the trampoline looks like
2255    2 0002 D202                  mov.l   l2,r2
2256    1 0000 D301                  mov.l   l1,r3
2257    3 0004 422B                  jmp     @r2
2258    4 0006 0009                  nop
2259    5 0008 00000000      l1:     .long   area
2260    6 000c 00000000      l2:     .long   function  */
2261
2262 /* Length in units of the trampoline for entering a nested function.  */
2263 #define TRAMPOLINE_SIZE  (TARGET_SHMEDIA64 ? 40 : TARGET_SH5 ? 24 : 16)
2264
2265 /* Alignment required for a trampoline in bits .  */
2266 #define TRAMPOLINE_ALIGNMENT \
2267   ((CACHE_LOG < 3 || (TARGET_SMALLCODE && ! TARGET_HARVARD)) ? 32 \
2268    : TARGET_SHMEDIA ? 256 : 64)
2269
2270 /* Emit RTL insns to initialize the variable parts of a trampoline.
2271    FNADDR is an RTX for the address of the function's pure code.
2272    CXT is an RTX for the static chain value for the function.  */
2273
2274 #define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT) \
2275   sh_initialize_trampoline ((TRAMP), (FNADDR), (CXT))
2276
2277 /* On SH5, trampolines are SHmedia code, so add 1 to the address.  */
2278
2279 #define TRAMPOLINE_ADJUST_ADDRESS(TRAMP) do                             \
2280 {                                                                       \
2281   if (TARGET_SHMEDIA)                                                   \
2282     (TRAMP) = expand_simple_binop (Pmode, PLUS, (TRAMP), GEN_INT (1),   \
2283                                    gen_reg_rtx (Pmode), 0,              \
2284                                    OPTAB_LIB_WIDEN);                    \
2285 } while (0)
2286
2287 /* A C expression whose value is RTL representing the value of the return
2288    address for the frame COUNT steps up from the current frame.
2289    FRAMEADDR is already the frame pointer of the COUNT frame, so we
2290    can ignore COUNT.  */
2291
2292 #define RETURN_ADDR_RTX(COUNT, FRAME)   \
2293   (((COUNT) == 0)                               \
2294    ? get_hard_reg_initial_val (Pmode, TARGET_SHMEDIA ? PR_MEDIA_REG : PR_REG) \
2295    : (rtx) 0)
2296
2297 /* A C expression whose value is RTL representing the location of the
2298    incoming return address at the beginning of any function, before the
2299    prologue.  This RTL is either a REG, indicating that the return
2300    value is saved in REG, or a MEM representing a location in
2301    the stack.  */
2302 #define INCOMING_RETURN_ADDR_RTX \
2303   gen_rtx_REG (Pmode, TARGET_SHMEDIA ? PR_MEDIA_REG : PR_REG)
2304 \f
2305 /* Generate necessary RTL for __builtin_saveregs().  */
2306 #define EXPAND_BUILTIN_SAVEREGS() sh_builtin_saveregs ()
2307 \f
2308 /* Addressing modes, and classification of registers for them.  */
2309 #define HAVE_POST_INCREMENT  TARGET_SH1
2310 #define HAVE_PRE_DECREMENT   TARGET_SH1
2311
2312 #define USE_LOAD_POST_INCREMENT(mode)    ((mode == SImode || mode == DImode) \
2313                                            ? 0 : TARGET_SH1)
2314 #define USE_LOAD_PRE_DECREMENT(mode)     0
2315 #define USE_STORE_POST_INCREMENT(mode)   0
2316 #define USE_STORE_PRE_DECREMENT(mode)    ((mode == SImode || mode == DImode) \
2317                                            ? 0 : TARGET_SH1)
2318
2319 #define MOVE_BY_PIECES_P(SIZE, ALIGN)  (move_by_pieces_ninsns (SIZE, ALIGN) \
2320                                         < (TARGET_SMALLCODE ? 2 :           \
2321                                            ((ALIGN >= 32) ? 16 : 2)))
2322
2323 /* Macros to check register numbers against specific register classes.  */
2324
2325 /* These assume that REGNO is a hard or pseudo reg number.
2326    They give nonzero only if REGNO is a hard reg of the suitable class
2327    or a pseudo reg currently allocated to a suitable hard reg.
2328    Since they use reg_renumber, they are safe only once reg_renumber
2329    has been allocated, which happens in local-alloc.c.  */
2330
2331 #define REGNO_OK_FOR_BASE_P(REGNO) \
2332   (GENERAL_OR_AP_REGISTER_P (REGNO) \
2333    || GENERAL_OR_AP_REGISTER_P (reg_renumber[(REGNO)]))
2334 #define REGNO_OK_FOR_INDEX_P(REGNO) \
2335   (TARGET_SHMEDIA \
2336    ? (GENERAL_REGISTER_P (REGNO) \
2337       || GENERAL_REGISTER_P ((unsigned) reg_renumber[(REGNO)])) \
2338    : (REGNO) == R0_REG || (unsigned) reg_renumber[(REGNO)] == R0_REG)
2339
2340 /* Maximum number of registers that can appear in a valid memory
2341    address.  */
2342
2343 #define MAX_REGS_PER_ADDRESS 2
2344
2345 /* Recognize any constant value that is a valid address.  */
2346
2347 #define CONSTANT_ADDRESS_P(X)   (GET_CODE (X) == LABEL_REF)
2348
2349 /* Nonzero if the constant value X is a legitimate general operand.  */
2350
2351 #define LEGITIMATE_CONSTANT_P(X) \
2352   (TARGET_SHMEDIA                                                       \
2353    ? ((GET_MODE (X) != DFmode                                           \
2354        && GET_MODE_CLASS (GET_MODE (X)) != MODE_VECTOR_FLOAT)           \
2355       || (X) == CONST0_RTX (GET_MODE (X))                               \
2356       || ! TARGET_SHMEDIA_FPU                                           \
2357       || TARGET_SHMEDIA64)                                              \
2358    : (GET_CODE (X) != CONST_DOUBLE                                      \
2359       || GET_MODE (X) == DFmode || GET_MODE (X) == SFmode               \
2360       || (TARGET_SH2E && (fp_zero_operand (X) || fp_one_operand (X)))))
2361
2362 /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
2363    and check its validity for a certain class.
2364    We have two alternate definitions for each of them.
2365    The usual definition accepts all pseudo regs; the other rejects
2366    them unless they have been allocated suitable hard regs.
2367    The symbol REG_OK_STRICT causes the latter definition to be used.  */
2368
2369 #ifndef REG_OK_STRICT
2370
2371 /* Nonzero if X is a hard reg that can be used as a base reg
2372    or if it is a pseudo reg.  */
2373 #define REG_OK_FOR_BASE_P(X) \
2374   (GENERAL_OR_AP_REGISTER_P (REGNO (X)) || REGNO (X) >= FIRST_PSEUDO_REGISTER)
2375
2376 /* Nonzero if X is a hard reg that can be used as an index
2377    or if it is a pseudo reg.  */
2378 #define REG_OK_FOR_INDEX_P(X) \
2379   ((TARGET_SHMEDIA ? GENERAL_REGISTER_P (REGNO (X)) \
2380     : REGNO (X) == R0_REG) || REGNO (X) >= FIRST_PSEUDO_REGISTER)
2381
2382 /* Nonzero if X/OFFSET is a hard reg that can be used as an index
2383    or if X is a pseudo reg.  */
2384 #define SUBREG_OK_FOR_INDEX_P(X, OFFSET) \
2385   ((TARGET_SHMEDIA ? GENERAL_REGISTER_P (REGNO (X)) \
2386     : REGNO (X) == R0_REG && OFFSET == 0) || REGNO (X) >= FIRST_PSEUDO_REGISTER)
2387
2388 #else
2389
2390 /* Nonzero if X is a hard reg that can be used as a base reg.  */
2391 #define REG_OK_FOR_BASE_P(X) \
2392   REGNO_OK_FOR_BASE_P (REGNO (X))
2393
2394 /* Nonzero if X is a hard reg that can be used as an index.  */
2395 #define REG_OK_FOR_INDEX_P(X) \
2396   REGNO_OK_FOR_INDEX_P (REGNO (X))
2397
2398 /* Nonzero if X/OFFSET is a hard reg that can be used as an index.  */
2399 #define SUBREG_OK_FOR_INDEX_P(X, OFFSET) \
2400   (REGNO_OK_FOR_INDEX_P (REGNO (X)) && (OFFSET) == 0)
2401
2402 #endif
2403
2404 /* The 'Q' constraint is a pc relative load operand.  */
2405 #define EXTRA_CONSTRAINT_Q(OP)                                          \
2406   (GET_CODE (OP) == MEM                                                 \
2407    && ((GET_CODE (XEXP ((OP), 0)) == LABEL_REF)                         \
2408        || (GET_CODE (XEXP ((OP), 0)) == CONST                           \
2409            && GET_CODE (XEXP (XEXP ((OP), 0), 0)) == PLUS               \
2410            && GET_CODE (XEXP (XEXP (XEXP ((OP), 0), 0), 0)) == LABEL_REF \
2411            && GET_CODE (XEXP (XEXP (XEXP ((OP), 0), 0), 1)) == CONST_INT)))
2412
2413 /* Extra address constraints.  */
2414 #define EXTRA_CONSTRAINT_A(OP, STR) 0
2415
2416 /* Constraint for selecting FLDI0 or FLDI1 instruction. If the clobber
2417    operand is not SCRATCH (i.e. REG) then R0 is probably being
2418    used, hence mova is being used, hence do not select this pattern */
2419 #define EXTRA_CONSTRAINT_Bsc(OP)    (GET_CODE(OP) == SCRATCH)
2420 #define EXTRA_CONSTRAINT_B(OP, STR) \
2421   ((STR)[1] == 's' && (STR)[2] == 'c' ? EXTRA_CONSTRAINT_Bsc (OP) \
2422    : 0)
2423
2424 /* The `C16' constraint is a 16-bit constant, literal or symbolic.  */
2425 #define EXTRA_CONSTRAINT_C16(OP) \
2426   (GET_CODE (OP) == CONST \
2427    && GET_CODE (XEXP ((OP), 0)) == SIGN_EXTEND \
2428    && GET_MODE (XEXP ((OP), 0)) == DImode \
2429    && GET_CODE (XEXP (XEXP ((OP), 0), 0)) == TRUNCATE \
2430    && GET_MODE (XEXP (XEXP ((OP), 0), 0)) == HImode \
2431    && (MOVI_SHORI_BASE_OPERAND_P (XEXP (XEXP (XEXP ((OP), 0), 0), 0)) \
2432        || (GET_CODE (XEXP (XEXP (XEXP ((OP), 0), 0), 0)) == ASHIFTRT \
2433            && (MOVI_SHORI_BASE_OPERAND_P \
2434                (XEXP (XEXP (XEXP (XEXP ((OP), 0), 0), 0), 0))) \
2435            && GET_CODE (XEXP (XEXP (XEXP (XEXP ((OP), 0), 0), 0), \
2436                               1)) == CONST_INT)))
2437
2438 /* Check whether OP is a datalabel unspec.  */
2439 #define DATALABEL_REF_NO_CONST_P(OP) \
2440   (GET_CODE (OP) == UNSPEC \
2441    && XINT ((OP), 1) == UNSPEC_DATALABEL \
2442    && XVECLEN ((OP), 0) == 1 \
2443    && (GET_CODE (XVECEXP ((OP), 0, 0)) == SYMBOL_REF \
2444        || GET_CODE (XVECEXP ((OP), 0, 0)) == LABEL_REF))
2445
2446 /* Check whether OP is a datalabel unspec, possibly enclosed within a
2447    CONST.  */
2448 #define DATALABEL_REF_P(OP) \
2449   ((GET_CODE (OP) == CONST && DATALABEL_REF_NO_CONST_P (XEXP ((OP), 0))) \
2450    || DATALABEL_REF_NO_CONST_P (OP))
2451
2452 #define GOT_ENTRY_P(OP) \
2453   (GET_CODE (OP) == CONST && GET_CODE (XEXP ((OP), 0)) == UNSPEC \
2454    && XINT (XEXP ((OP), 0), 1) == UNSPEC_GOT)
2455
2456 #define GOTPLT_ENTRY_P(OP) \
2457   (GET_CODE (OP) == CONST && GET_CODE (XEXP ((OP), 0)) == UNSPEC \
2458    && XINT (XEXP ((OP), 0), 1) == UNSPEC_GOTPLT)
2459
2460 #define UNSPEC_GOTOFF_P(OP) \
2461   (GET_CODE (OP) == UNSPEC && XINT ((OP), 1) == UNSPEC_GOTOFF)
2462
2463 #define GOTOFF_P(OP) \
2464   (GET_CODE (OP) == CONST \
2465    && (UNSPEC_GOTOFF_P (XEXP ((OP), 0)) \
2466        || (GET_CODE (XEXP ((OP), 0)) == PLUS \
2467            && UNSPEC_GOTOFF_P (XEXP (XEXP ((OP), 0), 0)) \
2468            && GET_CODE (XEXP (XEXP ((OP), 0), 1)) == CONST_INT)))
2469
2470 #define PIC_ADDR_P(OP) \
2471   (GET_CODE (OP) == CONST && GET_CODE (XEXP ((OP), 0)) == UNSPEC \
2472    && XINT (XEXP ((OP), 0), 1) == UNSPEC_PIC)
2473
2474 #define PIC_OFFSET_P(OP) \
2475   (PIC_ADDR_P (OP) \
2476    && GET_CODE (XVECEXP (XEXP ((OP), 0), 0, 0)) == MINUS \
2477    && reg_mentioned_p (pc_rtx, XEXP (XVECEXP (XEXP ((OP), 0), 0, 0), 1)))
2478
2479 #define PIC_DIRECT_ADDR_P(OP) \
2480   (PIC_ADDR_P (OP) && GET_CODE (XVECEXP (XEXP ((OP), 0), 0, 0)) != MINUS)
2481
2482 #define NON_PIC_REFERENCE_P(OP) \
2483   (GET_CODE (OP) == LABEL_REF || GET_CODE (OP) == SYMBOL_REF \
2484    || DATALABEL_REF_P (OP) \
2485    || (GET_CODE (OP) == CONST && GET_CODE (XEXP ((OP), 0)) == PLUS \
2486        && (GET_CODE (XEXP (XEXP ((OP), 0), 0)) == SYMBOL_REF \
2487            || DATALABEL_REF_P (XEXP (XEXP ((OP), 0), 0))) \
2488        && GET_CODE (XEXP (XEXP ((OP), 0), 1)) == CONST_INT))
2489
2490 #define PIC_REFERENCE_P(OP) \
2491   (GOT_ENTRY_P (OP) || GOTPLT_ENTRY_P (OP) \
2492    || GOTOFF_P (OP) || PIC_ADDR_P (OP))
2493
2494 #define MOVI_SHORI_BASE_OPERAND_P(OP) \
2495   (flag_pic \
2496    ? (GOT_ENTRY_P (OP) || GOTPLT_ENTRY_P (OP)  || GOTOFF_P (OP) \
2497       || PIC_OFFSET_P (OP)) \
2498    : NON_PIC_REFERENCE_P (OP))
2499
2500 /* The `Csy' constraint is a label or a symbol.  */
2501 #define EXTRA_CONSTRAINT_Csy(OP) \
2502   (NON_PIC_REFERENCE_P (OP) || PIC_DIRECT_ADDR_P (OP))
2503
2504 /* A zero in any shape or form.  */
2505 #define EXTRA_CONSTRAINT_Z(OP) \
2506   ((OP) == CONST0_RTX (GET_MODE (OP)))
2507
2508 /* Any vector constant we can handle.  */
2509 #define EXTRA_CONSTRAINT_W(OP) \
2510   (GET_CODE (OP) == CONST_VECTOR \
2511    && (sh_rep_vec ((OP), VOIDmode) \
2512        || (HOST_BITS_PER_WIDE_INT >= 64 \
2513            ? sh_const_vec ((OP), VOIDmode) \
2514            : sh_1el_vec ((OP), VOIDmode))))
2515
2516 /* A non-explicit constant that can be loaded directly into a general purpose
2517    register.  This is like 's' except we don't allow PIC_DIRECT_ADDR_P.  */
2518 #define EXTRA_CONSTRAINT_Cpg(OP) \
2519   (CONSTANT_P (OP) \
2520    && GET_CODE (OP) != CONST_INT \
2521    && GET_CODE (OP) != CONST_DOUBLE \
2522    && (!flag_pic \
2523        || (LEGITIMATE_PIC_OPERAND_P (OP) \
2524         && (! PIC_ADDR_P (OP) || PIC_OFFSET_P (OP)) \
2525         && GET_CODE (OP) != LABEL_REF)))
2526 #define EXTRA_CONSTRAINT_C(OP, STR) \
2527   ((STR)[1] == '1' && (STR)[2] == '6' ? EXTRA_CONSTRAINT_C16 (OP) \
2528    : (STR)[1] == 's' && (STR)[2] == 'y' ? EXTRA_CONSTRAINT_Csy (OP) \
2529    : (STR)[1] == 'p' && (STR)[2] == 'g' ? EXTRA_CONSTRAINT_Cpg (OP) \
2530    : 0)
2531
2532 #define EXTRA_MEMORY_CONSTRAINT(C,STR) ((C) == 'S')
2533 #define EXTRA_CONSTRAINT_Sr0(OP) \
2534   (memory_operand((OP), GET_MODE (OP)) \
2535    && ! refers_to_regno_p (R0_REG, R0_REG + 1, OP, (rtx *)0))
2536 #define EXTRA_CONSTRAINT_S(OP, STR) \
2537   ((STR)[1] == 'r' && (STR)[2] == '0' ? EXTRA_CONSTRAINT_Sr0 (OP) \
2538    : 0)
2539
2540 #define EXTRA_CONSTRAINT_STR(OP, C, STR)                \
2541   ((C) == 'Q' ? EXTRA_CONSTRAINT_Q (OP) \
2542    : (C) == 'A' ? EXTRA_CONSTRAINT_A ((OP), (STR)) \
2543    : (C) == 'B' ? EXTRA_CONSTRAINT_B ((OP), (STR)) \
2544    : (C) == 'C' ? EXTRA_CONSTRAINT_C ((OP), (STR)) \
2545    : (C) == 'S' ? EXTRA_CONSTRAINT_S ((OP), (STR)) \
2546    : (C) == 'W' ? EXTRA_CONSTRAINT_W (OP) \
2547    : (C) == 'Z' ? EXTRA_CONSTRAINT_Z (OP) \
2548    : 0)
2549 \f
2550 /* GO_IF_LEGITIMATE_ADDRESS recognizes an RTL expression
2551    that is a valid memory address for an instruction.
2552    The MODE argument is the machine mode for the MEM expression
2553    that wants to use this address.  */
2554
2555 #define MODE_DISP_OK_4(X,MODE) \
2556 (GET_MODE_SIZE (MODE) == 4 && (unsigned) INTVAL (X) < 64        \
2557  && ! (INTVAL (X) & 3) && ! (TARGET_SH2E && (MODE) == SFmode))
2558
2559 #define MODE_DISP_OK_8(X,MODE) \
2560 ((GET_MODE_SIZE(MODE)==8) && ((unsigned)INTVAL(X)<60)   \
2561  && ! (INTVAL(X) & 3) && ! (TARGET_SH4 && (MODE) == DFmode))
2562
2563 #define BASE_REGISTER_RTX_P(X)                          \
2564   ((GET_CODE (X) == REG && REG_OK_FOR_BASE_P (X))       \
2565    || (GET_CODE (X) == SUBREG                           \
2566        && GET_CODE (SUBREG_REG (X)) == REG              \
2567        && REG_OK_FOR_BASE_P (SUBREG_REG (X))))
2568
2569 /* Since this must be r0, which is a single register class, we must check
2570    SUBREGs more carefully, to be sure that we don't accept one that extends
2571    outside the class.  */
2572 #define INDEX_REGISTER_RTX_P(X)                         \
2573   ((GET_CODE (X) == REG && REG_OK_FOR_INDEX_P (X))      \
2574    || (GET_CODE (X) == SUBREG                           \
2575        && GET_CODE (SUBREG_REG (X)) == REG              \
2576        && SUBREG_OK_FOR_INDEX_P (SUBREG_REG (X), SUBREG_BYTE (X))))
2577
2578 /* Jump to LABEL if X is a valid address RTX.  This must also take
2579    REG_OK_STRICT into account when deciding about valid registers, but it uses
2580    the above macros so we are in luck.
2581
2582    Allow  REG
2583           REG+disp
2584           REG+r0
2585           REG++
2586           --REG  */
2587
2588 /* ??? The SH2e does not have the REG+disp addressing mode when loading values
2589    into the FRx registers.  We implement this by setting the maximum offset
2590    to zero when the value is SFmode.  This also restricts loading of SFmode
2591    values into the integer registers, but that can't be helped.  */
2592
2593 /* The SH allows a displacement in a QI or HI amode, but only when the
2594    other operand is R0. GCC doesn't handle this very well, so we forgo
2595    all of that.
2596
2597    A legitimate index for a QI or HI is 0, SI can be any number 0..63,
2598    DI can be any number 0..60.  */
2599
2600 #define GO_IF_LEGITIMATE_INDEX(MODE, OP, LABEL)                         \
2601   do {                                                                  \
2602     if (GET_CODE (OP) == CONST_INT)                                     \
2603       {                                                                 \
2604         if (TARGET_SHMEDIA)                                             \
2605           {                                                             \
2606             int MODE_SIZE = GET_MODE_SIZE (MODE);                       \
2607             if (! (INTVAL (OP) & (MODE_SIZE - 1))                       \
2608                 && INTVAL (OP) >= -512 * MODE_SIZE                      \
2609                 && INTVAL (OP) < 512 * MODE_SIZE)                       \
2610               goto LABEL;                                               \
2611             else                                                        \
2612               break;                                                    \
2613           }                                                             \
2614         if (MODE_DISP_OK_4 ((OP), (MODE)))  goto LABEL;                 \
2615         if (MODE_DISP_OK_8 ((OP), (MODE)))  goto LABEL;                 \
2616       }                                                                 \
2617   } while(0)
2618
2619 #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, LABEL)                        \
2620 {                                                                       \
2621   if (BASE_REGISTER_RTX_P (X))                                          \
2622     goto LABEL;                                                         \
2623   else if ((GET_CODE (X) == POST_INC || GET_CODE (X) == PRE_DEC)        \
2624            && ! TARGET_SHMEDIA                                          \
2625            && BASE_REGISTER_RTX_P (XEXP ((X), 0)))                      \
2626     goto LABEL;                                                         \
2627   else if (GET_CODE (X) == PLUS                                         \
2628            && ((MODE) != PSImode || reload_completed))                  \
2629     {                                                                   \
2630       rtx xop0 = XEXP ((X), 0);                                         \
2631       rtx xop1 = XEXP ((X), 1);                                         \
2632       if (GET_MODE_SIZE (MODE) <= 8 && BASE_REGISTER_RTX_P (xop0))      \
2633         GO_IF_LEGITIMATE_INDEX ((MODE), xop1, LABEL);                   \
2634       if (GET_MODE_SIZE (MODE) <= 4                                     \
2635           || (TARGET_SHMEDIA && GET_MODE_SIZE (MODE) <= 8)              \
2636           || (TARGET_SH4 && TARGET_FMOVD && MODE == DFmode))            \
2637         {                                                               \
2638           if (BASE_REGISTER_RTX_P (xop1) && INDEX_REGISTER_RTX_P (xop0))\
2639             goto LABEL;                                                 \
2640           if (INDEX_REGISTER_RTX_P (xop1) && BASE_REGISTER_RTX_P (xop0))\
2641             goto LABEL;                                                 \
2642         }                                                               \
2643     }                                                                   \
2644 }
2645 \f
2646 /* Try machine-dependent ways of modifying an illegitimate address
2647    to be legitimate.  If we find one, return the new, valid address.
2648    This macro is used in only one place: `memory_address' in explow.c.
2649
2650    OLDX is the address as it was before break_out_memory_refs was called.
2651    In some cases it is useful to look at this to decide what needs to be done.
2652
2653    MODE and WIN are passed so that this macro can use
2654    GO_IF_LEGITIMATE_ADDRESS.
2655
2656    It is always safe for this macro to do nothing.  It exists to recognize
2657    opportunities to optimize the output.
2658
2659    For the SH, if X is almost suitable for indexing, but the offset is
2660    out of range, convert it into a normal form so that cse has a chance
2661    of reducing the number of address registers used.  */
2662
2663 #define LEGITIMIZE_ADDRESS(X,OLDX,MODE,WIN)                     \
2664 {                                                               \
2665   if (flag_pic)                                                 \
2666     (X) = legitimize_pic_address (OLDX, MODE, NULL_RTX);        \
2667   if (GET_CODE (X) == PLUS                                      \
2668       && (GET_MODE_SIZE (MODE) == 4                             \
2669           || GET_MODE_SIZE (MODE) == 8)                         \
2670       && GET_CODE (XEXP ((X), 1)) == CONST_INT                  \
2671       && BASE_REGISTER_RTX_P (XEXP ((X), 0))                    \
2672       && ! TARGET_SHMEDIA                                       \
2673       && ! (TARGET_SH4 && (MODE) == DFmode)                     \
2674       && ! (TARGET_SH2E && (MODE) == SFmode))                   \
2675     {                                                           \
2676       rtx index_rtx = XEXP ((X), 1);                            \
2677       HOST_WIDE_INT offset = INTVAL (index_rtx), offset_base;   \
2678       rtx sum;                                                  \
2679                                                                 \
2680       GO_IF_LEGITIMATE_INDEX ((MODE), index_rtx, WIN);          \
2681       /* On rare occasions, we might get an unaligned pointer   \
2682          that is indexed in a way to give an aligned address.   \
2683          Therefore, keep the lower two bits in offset_base.  */ \
2684       /* Instead of offset_base 128..131 use 124..127, so that  \
2685          simple add suffices.  */                               \
2686       if (offset > 127)                                         \
2687         {                                                       \
2688           offset_base = ((offset + 4) & ~60) - 4;               \
2689         }                                                       \
2690       else                                                      \
2691         offset_base = offset & ~60;                             \
2692       /* Sometimes the normal form does not suit DImode.  We    \
2693          could avoid that by using smaller ranges, but that     \
2694          would give less optimized code when SImode is          \
2695          prevalent.  */                                         \
2696       if (GET_MODE_SIZE (MODE) + offset - offset_base <= 64)    \
2697         {                                                       \
2698           sum = expand_binop (Pmode, add_optab, XEXP ((X), 0),  \
2699                               GEN_INT (offset_base), NULL_RTX, 0, \
2700                               OPTAB_LIB_WIDEN);                 \
2701                                                                 \
2702           (X) = gen_rtx_PLUS (Pmode, sum, GEN_INT (offset - offset_base)); \
2703           goto WIN;                                             \
2704         }                                                       \
2705     }                                                           \
2706 }
2707
2708 /* A C compound statement that attempts to replace X, which is an address
2709    that needs reloading, with a valid memory address for an operand of
2710    mode MODE.  WIN is a C statement label elsewhere in the code.
2711
2712    Like for LEGITIMIZE_ADDRESS, for the SH we try to get a normal form
2713    of the address.  That will allow inheritance of the address reloads.  */
2714
2715 #define LEGITIMIZE_RELOAD_ADDRESS(X,MODE,OPNUM,TYPE,IND_LEVELS,WIN)     \
2716 {                                                                       \
2717   if (GET_CODE (X) == PLUS                                              \
2718       && (GET_MODE_SIZE (MODE) == 4 || GET_MODE_SIZE (MODE) == 8)       \
2719       && GET_CODE (XEXP (X, 1)) == CONST_INT                            \
2720       && BASE_REGISTER_RTX_P (XEXP (X, 0))                              \
2721       && ! TARGET_SHMEDIA                                               \
2722       && ! (TARGET_SH4 && (MODE) == DFmode)                             \
2723       && ! ((MODE) == PSImode && (TYPE) == RELOAD_FOR_INPUT_ADDRESS))   \
2724     {                                                                   \
2725       rtx index_rtx = XEXP (X, 1);                                      \
2726       HOST_WIDE_INT offset = INTVAL (index_rtx), offset_base;           \
2727       rtx sum;                                                          \
2728                                                                         \
2729       if (TARGET_SH2E && MODE == SFmode)                                \
2730         {                                                               \
2731           X = copy_rtx (X);                                             \
2732           push_reload (index_rtx, NULL_RTX, &XEXP (X, 1), NULL,         \
2733                        INDEX_REG_CLASS, Pmode, VOIDmode, 0, 0, (OPNUM), \
2734                        (TYPE));                                         \
2735           goto WIN;                                                     \
2736         }                                                               \
2737       /* Instead of offset_base 128..131 use 124..127, so that          \
2738          simple add suffices.  */                                       \
2739       if (offset > 127)                                                 \
2740         {                                                               \
2741           offset_base = ((offset + 4) & ~60) - 4;                       \
2742         }                                                               \
2743       else                                                              \
2744         offset_base = offset & ~60;                                     \
2745       /* Sometimes the normal form does not suit DImode.  We            \
2746          could avoid that by using smaller ranges, but that             \
2747          would give less optimized code when SImode is                  \
2748          prevalent.  */                                                 \
2749       if (GET_MODE_SIZE (MODE) + offset - offset_base <= 64)            \
2750         {                                                               \
2751           sum = gen_rtx (PLUS, Pmode, XEXP (X, 0),                      \
2752                          GEN_INT (offset_base));                        \
2753           X = gen_rtx (PLUS, Pmode, sum, GEN_INT (offset - offset_base));\
2754           push_reload (sum, NULL_RTX, &XEXP (X, 0), NULL,               \
2755                        BASE_REG_CLASS, Pmode, VOIDmode, 0, 0, (OPNUM),  \
2756                        (TYPE));                                         \
2757           goto WIN;                                                     \
2758         }                                                               \
2759     }                                                                   \
2760   /* We must re-recognize what we created before.  */                   \
2761   else if (GET_CODE (X) == PLUS                                         \
2762            && (GET_MODE_SIZE (MODE) == 4 || GET_MODE_SIZE (MODE) == 8)  \
2763            && GET_CODE (XEXP (X, 0)) == PLUS                            \
2764            && GET_CODE (XEXP (XEXP (X, 0), 1)) == CONST_INT             \
2765            && BASE_REGISTER_RTX_P (XEXP (XEXP (X, 0), 0))               \
2766            && GET_CODE (XEXP (X, 1)) == CONST_INT                       \
2767            && ! TARGET_SHMEDIA                                          \
2768            && ! (TARGET_SH2E && MODE == SFmode))                        \
2769     {                                                                   \
2770       /* Because this address is so complex, we know it must have       \
2771          been created by LEGITIMIZE_RELOAD_ADDRESS before; thus,        \
2772          it is already unshared, and needs no further unsharing.  */    \
2773       push_reload (XEXP ((X), 0), NULL_RTX, &XEXP ((X), 0), NULL,       \
2774                    BASE_REG_CLASS, Pmode, VOIDmode, 0, 0, (OPNUM), (TYPE));\
2775       goto WIN;                                                         \
2776     }                                                                   \
2777 }
2778
2779 /* Go to LABEL if ADDR (a legitimate address expression)
2780    has an effect that depends on the machine mode it is used for.
2781
2782    ??? Strictly speaking, we should also include all indexed addressing,
2783    because the index scale factor is the length of the operand.
2784    However, the impact of GO_IF_MODE_DEPENDENT_ADDRESS would be to
2785    high if we did that.  So we rely on reload to fix things up.  */
2786
2787 #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR,LABEL)                        \
2788 {                                                                       \
2789   if (GET_CODE(ADDR) == PRE_DEC || GET_CODE(ADDR) == POST_INC)          \
2790     goto LABEL;                                                         \
2791 }
2792 \f
2793 /* Specify the machine mode that this machine uses
2794    for the index in the tablejump instruction.  */
2795 #define CASE_VECTOR_MODE ((! optimize || TARGET_BIGTABLE) ? SImode : HImode)
2796
2797 #define CASE_VECTOR_SHORTEN_MODE(MIN_OFFSET, MAX_OFFSET, BODY) \
2798 ((MIN_OFFSET) >= 0 && (MAX_OFFSET) <= 127 \
2799  ? (ADDR_DIFF_VEC_FLAGS (BODY).offset_unsigned = 0, QImode) \
2800  : (MIN_OFFSET) >= 0 && (MAX_OFFSET) <= 255 \
2801  ? (ADDR_DIFF_VEC_FLAGS (BODY).offset_unsigned = 1, QImode) \
2802  : (MIN_OFFSET) >= -32768 && (MAX_OFFSET) <= 32767 ? HImode \
2803  : SImode)
2804
2805 /* Define as C expression which evaluates to nonzero if the tablejump
2806    instruction expects the table to contain offsets from the address of the
2807    table.
2808    Do not define this if the table should contain absolute addresses.  */
2809 #define CASE_VECTOR_PC_RELATIVE 1
2810
2811 /* Define it here, so that it doesn't get bumped to 64-bits on SHmedia.  */
2812 #define FLOAT_TYPE_SIZE 32
2813
2814 /* Since the SH2e has only `float' support, it is desirable to make all
2815    floating point types equivalent to `float'.  */
2816 #define DOUBLE_TYPE_SIZE ((TARGET_SH2E && ! TARGET_SH4) ? 32 : 64)
2817
2818 /* 'char' is signed by default.  */
2819 #define DEFAULT_SIGNED_CHAR  1
2820
2821 /* The type of size_t unsigned int.  */
2822 #define SIZE_TYPE (TARGET_SH5 ? "long unsigned int" : "unsigned int")
2823
2824 #undef  PTRDIFF_TYPE
2825 #define PTRDIFF_TYPE (TARGET_SH5 ? "long int" : "int")
2826
2827 #define WCHAR_TYPE "short unsigned int"
2828 #define WCHAR_TYPE_SIZE 16
2829
2830 #define SH_ELF_WCHAR_TYPE "long int"
2831
2832 /* Don't cse the address of the function being compiled.  */
2833 /*#define NO_RECURSIVE_FUNCTION_CSE 1*/
2834
2835 /* Max number of bytes we can move from memory to memory
2836    in one reasonably fast instruction.  */
2837 #define MOVE_MAX (TARGET_SHMEDIA ? 8 : 4)
2838
2839 /* Maximum value possibly taken by MOVE_MAX.  Must be defined whenever
2840    MOVE_MAX is not a compile-time constant.  */
2841 #define MAX_MOVE_MAX 8
2842
2843 /* Max number of bytes we want move_by_pieces to be able to copy
2844    efficiently.  */
2845 #define MOVE_MAX_PIECES (TARGET_SH4 || TARGET_SHMEDIA ? 8 : 4)
2846
2847 /* Define if operations between registers always perform the operation
2848    on the full register even if a narrower mode is specified.  */
2849 #define WORD_REGISTER_OPERATIONS
2850
2851 /* Define if loading in MODE, an integral mode narrower than BITS_PER_WORD
2852    will either zero-extend or sign-extend.  The value of this macro should
2853    be the code that says which one of the two operations is implicitly
2854    done, NIL if none.  */
2855 /* For SHmedia, we can truncate to QImode easier using zero extension.  */
2856 /* FP registers can load SImode values, but don't implicitly sign-extend
2857    them to DImode.  */
2858 #define LOAD_EXTEND_OP(MODE) \
2859  (((MODE) == QImode  && TARGET_SHMEDIA) ? ZERO_EXTEND \
2860   : (MODE) != SImode ? SIGN_EXTEND : NIL)
2861
2862 /* Define if loading short immediate values into registers sign extends.  */
2863 #define SHORT_IMMEDIATES_SIGN_EXTEND
2864
2865 /* Nonzero if access to memory by bytes is no faster than for words.  */
2866 #define SLOW_BYTE_ACCESS 1
2867
2868 /* Immediate shift counts are truncated by the output routines (or was it
2869    the assembler?).  Shift counts in a register are truncated by SH.  Note
2870    that the native compiler puts too large (> 32) immediate shift counts
2871    into a register and shifts by the register, letting the SH decide what
2872    to do instead of doing that itself.  */
2873 /* ??? The library routines in lib1funcs.asm truncate the shift count.
2874    However, the SH3 has hardware shifts that do not truncate exactly as gcc
2875    expects - the sign bit is significant - so it appears that we need to
2876    leave this zero for correct SH3 code.  */
2877 #define SHIFT_COUNT_TRUNCATED (! TARGET_SH3)
2878
2879 /* All integers have the same format so truncation is easy.  */
2880 #define TRULY_NOOP_TRUNCATION(OUTPREC,INPREC)  1
2881
2882 /* Define this if addresses of constant functions
2883    shouldn't be put through pseudo regs where they can be cse'd.
2884    Desirable on machines where ordinary constants are expensive
2885    but a CALL with constant address is cheap.  */
2886 /*#define NO_FUNCTION_CSE 1*/
2887
2888 /* Chars and shorts should be passed as ints.  */
2889 #define PROMOTE_PROTOTYPES 1
2890
2891 /* The machine modes of pointers and functions.  */
2892 #define Pmode  (TARGET_SHMEDIA64 ? DImode : SImode)
2893 #define FUNCTION_MODE  Pmode
2894
2895 /* The multiply insn on the SH1 and the divide insns on the SH1 and SH2
2896    are actually function calls with some special constraints on arguments
2897    and register usage.
2898
2899    These macros tell reorg that the references to arguments and
2900    register clobbers for insns of type sfunc do not appear to happen
2901    until after the millicode call.  This allows reorg to put insns
2902    which set the argument registers into the delay slot of the millicode
2903    call -- thus they act more like traditional CALL_INSNs.
2904
2905    get_attr_is_sfunc will try to recognize the given insn, so make sure to
2906    filter out things it will not accept -- SEQUENCE, USE and CLOBBER insns
2907    in particular.  */
2908
2909 #define INSN_SETS_ARE_DELAYED(X)                \
2910   ((GET_CODE (X) == INSN                        \
2911     && GET_CODE (PATTERN (X)) != SEQUENCE       \
2912     && GET_CODE (PATTERN (X)) != USE            \
2913     && GET_CODE (PATTERN (X)) != CLOBBER        \
2914     && get_attr_is_sfunc (X)))
2915
2916 #define INSN_REFERENCES_ARE_DELAYED(X)          \
2917   ((GET_CODE (X) == INSN                        \
2918     && GET_CODE (PATTERN (X)) != SEQUENCE       \
2919     && GET_CODE (PATTERN (X)) != USE            \
2920     && GET_CODE (PATTERN (X)) != CLOBBER        \
2921     && get_attr_is_sfunc (X)))
2922
2923 \f
2924 /* Position Independent Code.  */
2925
2926 /* We can't directly access anything that contains a symbol,
2927    nor can we indirect via the constant pool.  */
2928 #define LEGITIMATE_PIC_OPERAND_P(X)                             \
2929         ((! nonpic_symbol_mentioned_p (X)                       \
2930           && (GET_CODE (X) != SYMBOL_REF                        \
2931               || ! CONSTANT_POOL_ADDRESS_P (X)                  \
2932               || ! nonpic_symbol_mentioned_p (get_pool_constant (X)))) \
2933          || (TARGET_SHMEDIA && GET_CODE (X) == LABEL_REF))
2934
2935 #define SYMBOLIC_CONST_P(X)     \
2936 ((GET_CODE (X) == SYMBOL_REF || GET_CODE (X) == LABEL_REF)      \
2937   && nonpic_symbol_mentioned_p (X))
2938 \f
2939 /* Compute extra cost of moving data between one register class
2940    and another.  */
2941
2942 /* If SECONDARY*_RELOAD_CLASS says something about the src/dst pair, regclass
2943    uses this information.  Hence, the general register <-> floating point
2944    register information here is not used for SFmode.  */
2945
2946 #define REGCLASS_HAS_GENERAL_REG(CLASS) \
2947   ((CLASS) == GENERAL_REGS || (CLASS) == R0_REGS \
2948     || (! TARGET_SHMEDIA && (CLASS) == SIBCALL_REGS))
2949
2950 #define REGCLASS_HAS_FP_REG(CLASS) \
2951   ((CLASS) == FP0_REGS || (CLASS) == FP_REGS \
2952    || (CLASS) == DF_REGS || (CLASS) == DF_HI_REGS)
2953
2954 #define REGISTER_MOVE_COST(MODE, SRCCLASS, DSTCLASS) \
2955   sh_register_move_cost ((MODE), (SRCCLASS), (DSTCLASS))
2956
2957 /* ??? Perhaps make MEMORY_MOVE_COST depend on compiler option?  This
2958    would be so that people with slow memory systems could generate
2959    different code that does fewer memory accesses.  */
2960
2961 /* A C expression for the cost of a branch instruction.  A value of 1
2962    is the default; other values are interpreted relative to that.
2963    The SH1 does not have delay slots, hence we get a pipeline stall
2964    at every branch.  The SH4 is superscalar, so the single delay slot
2965    is not sufficient to keep both pipelines filled.  */
2966 #define BRANCH_COST (TARGET_SH5 ? 1 : ! TARGET_SH2 || TARGET_HARD_SH4 ? 2 : 1)
2967 \f
2968 /* Assembler output control.  */
2969
2970 /* A C string constant describing how to begin a comment in the target
2971    assembler language.  The compiler assumes that the comment will end at
2972    the end of the line.  */
2973 #define ASM_COMMENT_START "!"
2974
2975 /* The text to go at the start of the assembler file.  */
2976 #define ASM_FILE_START(STREAM) \
2977   output_file_start (STREAM)
2978
2979 #define ASM_APP_ON              ""
2980 #define ASM_APP_OFF             ""
2981 #define FILE_ASM_OP             "\t.file\n"
2982 #define SET_ASM_OP              "\t.set\t"
2983
2984 /* How to change between sections.  */
2985
2986 #define TEXT_SECTION_ASM_OP             (TARGET_SHMEDIA32 ? "\t.section\t.text..SHmedia32,\"ax\"" : "\t.text")
2987 #define DATA_SECTION_ASM_OP             "\t.data"
2988
2989 #if defined CRT_BEGIN || defined CRT_END
2990 /* Arrange for TEXT_SECTION_ASM_OP to be a compile-time constant.  */
2991 # undef TEXT_SECTION_ASM_OP
2992 # if __SHMEDIA__ == 1 && __SH5__ == 32
2993 #  define TEXT_SECTION_ASM_OP "\t.section\t.text..SHmedia32,\"ax\""
2994 # else
2995 #  define TEXT_SECTION_ASM_OP "\t.text"
2996 # endif
2997 #endif
2998
2999
3000 /* If defined, a C expression whose value is a string containing the
3001    assembler operation to identify the following data as
3002    uninitialized global data.  If not defined, and neither
3003    `ASM_OUTPUT_BSS' nor `ASM_OUTPUT_ALIGNED_BSS' are defined,
3004    uninitialized global data will be output in the data section if
3005    `-fno-common' is passed, otherwise `ASM_OUTPUT_COMMON' will be
3006    used.  */
3007 #ifndef BSS_SECTION_ASM_OP
3008 #define BSS_SECTION_ASM_OP      "\t.section\t.bss"
3009 #endif
3010
3011 /* Like `ASM_OUTPUT_BSS' except takes the required alignment as a
3012    separate, explicit argument.  If you define this macro, it is used
3013    in place of `ASM_OUTPUT_BSS', and gives you more flexibility in
3014    handling the required alignment of the variable.  The alignment is
3015    specified as the number of bits.
3016
3017    Try to use function `asm_output_aligned_bss' defined in file
3018    `varasm.c' when defining this macro.  */
3019 #ifndef ASM_OUTPUT_ALIGNED_BSS
3020 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
3021   asm_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN)
3022 #endif
3023
3024 /* Define this so that jump tables go in same section as the current function,
3025    which could be text or it could be a user defined section.  */
3026 #define JUMP_TABLES_IN_TEXT_SECTION 1
3027
3028 #undef DO_GLOBAL_CTORS_BODY
3029 #define DO_GLOBAL_CTORS_BODY                    \
3030 {                                               \
3031   typedef (*pfunc)();                           \
3032   extern pfunc __ctors[];                       \
3033   extern pfunc __ctors_end[];                   \
3034   pfunc *p;                                     \
3035   for (p = __ctors_end; p > __ctors; )          \
3036     {                                           \
3037       (*--p)();                                 \
3038     }                                           \
3039 }
3040
3041 #undef DO_GLOBAL_DTORS_BODY
3042 #define DO_GLOBAL_DTORS_BODY                    \
3043 {                                               \
3044   typedef (*pfunc)();                           \
3045   extern pfunc __dtors[];                       \
3046   extern pfunc __dtors_end[];                   \
3047   pfunc *p;                                     \
3048   for (p = __dtors; p < __dtors_end; p++)       \
3049     {                                           \
3050       (*p)();                                   \
3051     }                                           \
3052 }
3053
3054 #define ASM_OUTPUT_REG_PUSH(file, v) \
3055   fprintf ((file), "\tmov.l\tr%d,@-r15\n", (v));
3056
3057 #define ASM_OUTPUT_REG_POP(file, v) \
3058   fprintf ((file), "\tmov.l\t@r15+,r%d\n", (v));
3059
3060 /* DBX register number for a given compiler register number.  */
3061 /* GDB has FPUL at 23 and FP0 at 25, so we must add one to all FP registers
3062    to match gdb.  */
3063 /* svr4.h undefines this macro, yet we really want to use the same numbers
3064    for coff as for elf, so we go via another macro: SH_DBX_REGISTER_NUMBER.  */
3065 /* expand_builtin_init_dwarf_reg_sizes uses this to test if a
3066    register exists, so we should return -1 for invalid register numbers.  */
3067 #define DBX_REGISTER_NUMBER(REGNO) SH_DBX_REGISTER_NUMBER (REGNO)
3068
3069 #define SH_DBX_REGISTER_NUMBER(REGNO) \
3070   (GENERAL_REGISTER_P (REGNO) \
3071    ? ((REGNO) - FIRST_GENERAL_REG) \
3072    : FP_REGISTER_P (REGNO) \
3073    ? ((REGNO) - FIRST_FP_REG + (TARGET_SH5 ? (TARGET_SHCOMPACT ? 245 \
3074                                               : 77) : 25)) \
3075    : XD_REGISTER_P (REGNO) \
3076    ? ((REGNO) - FIRST_XD_REG + (TARGET_SH5 ? 289 : 87)) \
3077    : TARGET_REGISTER_P (REGNO) \
3078    ? ((REGNO) - FIRST_TARGET_REG + 68) \
3079    : (REGNO) == PR_REG \
3080    ? (TARGET_SH5 ? 241 : 17) \
3081    : (REGNO) == PR_MEDIA_REG \
3082    ? (TARGET_SH5 ? 18 : -1) \
3083    : (REGNO) == T_REG \
3084    ? (TARGET_SH5 ? 242 : 18) \
3085    : (REGNO) == GBR_REG \
3086    ? (TARGET_SH5 ? 238 : 19) \
3087    : (REGNO) == MACH_REG \
3088    ? (TARGET_SH5 ? 239 : 20) \
3089    : (REGNO) == MACL_REG \
3090    ? (TARGET_SH5 ? 240 : 21) \
3091    : (REGNO) == FPUL_REG \
3092    ? (TARGET_SH5 ? 244 : 23) \
3093    : -1)
3094
3095 /* This is how to output a reference to a symbol_ref.  On SH5,
3096    references to non-code symbols must be preceded by `datalabel'.  */
3097 #define ASM_OUTPUT_SYMBOL_REF(FILE,SYM)                 \
3098   do                                                    \
3099     {                                                   \
3100       if (TARGET_SH5 && !SYMBOL_REF_FUNCTION_P (SYM))   \
3101         fputs ("datalabel ", (FILE));                   \
3102       assemble_name ((FILE), XSTR ((SYM), 0));          \
3103     }                                                   \
3104   while (0)
3105
3106 /* This is how to output an assembler line
3107    that says to advance the location counter
3108    to a multiple of 2**LOG bytes.  */
3109
3110 #define ASM_OUTPUT_ALIGN(FILE,LOG)      \
3111   if ((LOG) != 0)                       \
3112     fprintf ((FILE), "\t.align %d\n", (LOG))
3113
3114 /* Globalizing directive for a label.  */
3115 #define GLOBAL_ASM_OP "\t.global\t"
3116
3117 /* #define ASM_OUTPUT_CASE_END(STREAM,NUM,TABLE)            */
3118
3119 /* Output a relative address table.  */
3120
3121 #define ASM_OUTPUT_ADDR_DIFF_ELT(STREAM,BODY,VALUE,REL)                 \
3122   switch (GET_MODE (BODY))                                              \
3123     {                                                                   \
3124     case SImode:                                                        \
3125       if (TARGET_SH5)                                                   \
3126         {                                                               \
3127           asm_fprintf ((STREAM), "\t.long\t%LL%d-datalabel %LL%d\n",    \
3128                        (VALUE), (REL));                                 \
3129           break;                                                        \
3130         }                                                               \
3131       asm_fprintf ((STREAM), "\t.long\t%LL%d-%LL%d\n", (VALUE),(REL));  \
3132       break;                                                            \
3133     case HImode:                                                        \
3134       if (TARGET_SH5)                                                   \
3135         {                                                               \
3136           asm_fprintf ((STREAM), "\t.word\t%LL%d-datalabel %LL%d\n",    \
3137                        (VALUE), (REL));                                 \
3138           break;                                                        \
3139         }                                                               \
3140       asm_fprintf ((STREAM), "\t.word\t%LL%d-%LL%d\n", (VALUE),(REL));  \
3141       break;                                                            \
3142     case QImode:                                                        \
3143       if (TARGET_SH5)                                                   \
3144         {                                                               \
3145           asm_fprintf ((STREAM), "\t.byte\t%LL%d-datalabel %LL%d\n",    \
3146                        (VALUE), (REL));                                 \
3147           break;                                                        \
3148         }                                                               \
3149       asm_fprintf ((STREAM), "\t.byte\t%LL%d-%LL%d\n", (VALUE),(REL));  \
3150       break;                                                            \
3151     default:                                                            \
3152       break;                                                            \
3153     }
3154
3155 /* Output an absolute table element.  */
3156
3157 #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM,VALUE)                           \
3158   if (! optimize || TARGET_BIGTABLE)                                    \
3159     asm_fprintf ((STREAM), "\t.long\t%LL%d\n", (VALUE));                \
3160   else                                                                  \
3161     asm_fprintf ((STREAM), "\t.word\t%LL%d\n", (VALUE));
3162
3163 \f
3164 /* A C statement to be executed just prior to the output of
3165    assembler code for INSN, to modify the extracted operands so
3166    they will be output differently.
3167
3168    Here the argument OPVEC is the vector containing the operands
3169    extracted from INSN, and NOPERANDS is the number of elements of
3170    the vector which contain meaningful data for this insn.
3171    The contents of this vector are what will be used to convert the insn
3172    template into assembler code, so you can change the assembler output
3173    by changing the contents of the vector.  */
3174
3175 #define FINAL_PRESCAN_INSN(INSN, OPVEC, NOPERANDS) \
3176   final_prescan_insn ((INSN), (OPVEC), (NOPERANDS))
3177
3178 /* Print operand X (an rtx) in assembler syntax to file FILE.
3179    CODE is a letter or dot (`z' in `%z0') or 0 if no letter was specified.
3180    For `%' followed by punctuation, CODE is the punctuation and X is null.  */
3181
3182 #define PRINT_OPERAND(STREAM, X, CODE)  print_operand ((STREAM), (X), (CODE))
3183
3184 /* Print a memory address as an operand to reference that memory location.  */
3185
3186 #define PRINT_OPERAND_ADDRESS(STREAM,X)  print_operand_address ((STREAM), (X))
3187
3188 #define PRINT_OPERAND_PUNCT_VALID_P(CHAR) \
3189   ((CHAR) == '.' || (CHAR) == '#' || (CHAR) == '@' || (CHAR) == ','     \
3190    || (CHAR) == '$'|| (CHAR) == '\'')
3191
3192 /* Recognize machine-specific patterns that may appear within
3193    constants.  Used for PIC-specific UNSPECs.  */
3194 #define OUTPUT_ADDR_CONST_EXTRA(STREAM, X, FAIL) \
3195   do                                                                    \
3196     if (GET_CODE (X) == UNSPEC && XVECLEN ((X), 0) == 1)        \
3197       {                                                                 \
3198         switch (XINT ((X), 1))                                          \
3199           {                                                             \
3200           case UNSPEC_DATALABEL:                                        \
3201             fputs ("datalabel ", (STREAM));                             \
3202             output_addr_const ((STREAM), XVECEXP ((X), 0, 0));          \
3203             break;                                                      \
3204           case UNSPEC_PIC:                                              \
3205             /* GLOBAL_OFFSET_TABLE or local symbols, no suffix.  */     \
3206             output_addr_const ((STREAM), XVECEXP ((X), 0, 0));          \
3207             break;                                                      \
3208           case UNSPEC_GOT:                                              \
3209             output_addr_const ((STREAM), XVECEXP ((X), 0, 0));          \
3210             fputs ("@GOT", (STREAM));                                   \
3211             break;                                                      \
3212           case UNSPEC_GOTOFF:                                           \
3213             output_addr_const ((STREAM), XVECEXP ((X), 0, 0));          \
3214             fputs ("@GOTOFF", (STREAM));                                \
3215             break;                                                      \
3216           case UNSPEC_PLT:                                              \
3217             output_addr_const ((STREAM), XVECEXP ((X), 0, 0));          \
3218             fputs ("@PLT", (STREAM));                                   \
3219             break;                                                      \
3220           case UNSPEC_GOTPLT:                                           \
3221             output_addr_const ((STREAM), XVECEXP ((X), 0, 0));          \
3222             fputs ("@GOTPLT", (STREAM));                                \
3223             break;                                                      \
3224           case UNSPEC_DTPOFF:                                           \
3225             output_addr_const ((STREAM), XVECEXP ((X), 0, 0));          \
3226             fputs ("@DTPOFF", (STREAM));                                \
3227             break;                                                      \
3228           case UNSPEC_GOTTPOFF:                                         \
3229             output_addr_const ((STREAM), XVECEXP ((X), 0, 0));          \
3230             fputs ("@GOTTPOFF", (STREAM));                              \
3231             break;                                                      \
3232           case UNSPEC_TPOFF:                                            \
3233             output_addr_const ((STREAM), XVECEXP ((X), 0, 0));          \
3234             fputs ("@TPOFF", (STREAM));                                 \
3235             break;                                                      \
3236           case UNSPEC_CALLER:                                           \
3237             {                                                           \
3238               char name[32];                                            \
3239               /* LPCS stands for Label for PIC Call Site.  */           \
3240               ASM_GENERATE_INTERNAL_LABEL                               \
3241                 (name, "LPCS", INTVAL (XVECEXP ((X), 0, 0)));           \
3242               assemble_name ((STREAM), name);                           \
3243             }                                                           \
3244             break;                                                      \
3245           default:                                                      \
3246             goto FAIL;                                                  \
3247           }                                                             \
3248         break;                                                          \
3249       }                                                                 \
3250     else                                                                \
3251       goto FAIL;                                                        \
3252   while (0)
3253
3254 \f
3255 extern struct rtx_def *sh_compare_op0;
3256 extern struct rtx_def *sh_compare_op1;
3257
3258 /* Which processor to schedule for.  The elements of the enumeration must
3259    match exactly the cpu attribute in the sh.md file.  */
3260
3261 enum processor_type {
3262   PROCESSOR_SH1,
3263   PROCESSOR_SH2,
3264   PROCESSOR_SH2E,
3265   PROCESSOR_SH3,
3266   PROCESSOR_SH3E,
3267   PROCESSOR_SH4,
3268   PROCESSOR_SH5
3269 };
3270
3271 #define sh_cpu_attr ((enum attr_cpu)sh_cpu)
3272 extern enum processor_type sh_cpu;
3273
3274 extern int optimize; /* needed for gen_casesi.  */
3275
3276 enum mdep_reorg_phase_e
3277 {
3278   SH_BEFORE_MDEP_REORG,
3279   SH_INSERT_USES_LABELS,
3280   SH_SHORTEN_BRANCHES0,
3281   SH_FIXUP_PCLOAD,
3282   SH_SHORTEN_BRANCHES1,
3283   SH_AFTER_MDEP_REORG
3284 };
3285
3286 extern enum mdep_reorg_phase_e mdep_reorg_phase;
3287
3288 /* Generate calls to memcpy, memcmp and memset.  */
3289
3290 #define TARGET_MEM_FUNCTIONS
3291
3292 /* Handle Renesas compiler's pragmas.  */
3293 #define REGISTER_TARGET_PRAGMAS() do {                                  \
3294   c_register_pragma (0, "interrupt", sh_pr_interrupt);                  \
3295   c_register_pragma (0, "trapa", sh_pr_trapa);                          \
3296   c_register_pragma (0, "nosave_low_regs", sh_pr_nosave_low_regs);      \
3297 } while (0)
3298
3299 /* Set when processing a function with pragma interrupt turned on.  */
3300
3301 extern int pragma_interrupt;
3302
3303 /* Set when processing a function with interrupt attribute.  */
3304
3305 extern int current_function_interrupt;
3306
3307 /* Set to an RTX containing the address of the stack to switch to
3308    for interrupt functions.  */
3309 extern struct rtx_def *sp_switch;
3310
3311 extern int rtx_equal_function_value_matters;
3312
3313 \f
3314 /* Instructions with unfilled delay slots take up an
3315    extra two bytes for the nop in the delay slot.
3316    sh-dsp parallel processing insns are four bytes long.  */
3317
3318 #define ADJUST_INSN_LENGTH(X, LENGTH)                           \
3319   (LENGTH) += sh_insn_length_adjustment (X);
3320 \f
3321 /* Define the codes that are matched by predicates in sh.c.  */
3322 #define PREDICATE_CODES \
3323   {"and_operand", {SUBREG, REG, CONST_INT}},                            \
3324   {"any_register_operand", {SUBREG, REG}},                              \
3325   {"arith_operand", {SUBREG, REG, CONST_INT}},                          \
3326   {"arith_reg_dest", {SUBREG, REG}},                                    \
3327   {"arith_reg_operand", {SUBREG, REG}},                                 \
3328   {"arith_reg_or_0_operand", {SUBREG, REG, CONST_INT, CONST_VECTOR}},   \
3329   {"binary_float_operator", {PLUS, MINUS, MULT, DIV}},                  \
3330   {"binary_logical_operator", {AND, IOR, XOR}},                         \
3331   {"commutative_float_operator", {PLUS, MULT}},                         \
3332   {"equality_comparison_operator", {EQ,NE}},                            \
3333   {"extend_reg_operand", {SUBREG, REG, TRUNCATE}},                      \
3334   {"extend_reg_or_0_operand", {SUBREG, REG, TRUNCATE, CONST_INT}},      \
3335   {"fp_arith_reg_operand", {SUBREG, REG}},                              \
3336   {"fpscr_operand", {REG}},                                             \
3337   {"fpul_operand", {REG}},                                              \
3338   {"general_extend_operand", {SUBREG, REG, MEM, TRUNCATE}},             \
3339   {"general_movsrc_operand", {SUBREG, REG, CONST_INT, CONST_DOUBLE, MEM}}, \
3340   {"general_movdst_operand", {SUBREG, REG, MEM}},                       \
3341   {"greater_comparison_operator", {GT,GE,GTU,GEU}},                     \
3342   {"int_gpr_dest", {SUBREG, REG}},                                      \
3343   {"inqhi_operand", {TRUNCATE}},                                        \
3344   {"less_comparison_operator", {LT,LE,LTU,LEU}},                        \
3345   {"logical_operand", {SUBREG, REG, CONST_INT}},                        \
3346   {"mextr_bit_offset", {CONST_INT}},                                    \
3347   {"noncommutative_float_operator", {MINUS, DIV}},                      \
3348   {"shmedia_6bit_operand", {SUBREG, REG, CONST_INT}},                   \
3349   {"sh_register_operand", {REG, SUBREG, CONST_INT}},                    \
3350   {"target_reg_operand", {SUBREG, REG}},                                \
3351   {"target_operand", {SUBREG, REG, LABEL_REF, SYMBOL_REF, CONST, UNSPEC}},\
3352   {"trunc_hi_operand", {SUBREG, REG, TRUNCATE}},                        \
3353   {"register_operand", {SUBREG, REG}},                                  \
3354   {"sh_const_vec", {CONST_VECTOR}},                                     \
3355   {"sh_1el_vec", {CONST_VECTOR, PARALLEL}},                             \
3356   {"sh_rep_vec", {CONST_VECTOR, PARALLEL}},                             \
3357   {"symbol_ref_operand", {SYMBOL_REF}},                                 \
3358   {"unary_float_operator", {ABS, NEG, SQRT}},                           \
3359
3360 #define SPECIAL_MODE_PREDICATES \
3361   "any_register_operand", \
3362   "int_gpr_dest", \
3363   "trunc_hi_operand", \
3364   /* This line intentionally left blank.  */
3365
3366 #define any_register_operand register_operand
3367
3368 /* Define this macro if it is advisable to hold scalars in registers
3369    in a wider mode than that declared by the program.  In such cases, 
3370    the value is constrained to be within the bounds of the declared
3371    type, but kept valid in the wider mode.  The signedness of the
3372    extension may differ from that of the type.
3373
3374    Leaving the unsignedp unchanged gives better code than always setting it
3375    to 0.  This is despite the fact that we have only signed char and short
3376    load instructions.  */
3377 #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
3378   if (GET_MODE_CLASS (MODE) == MODE_INT                 \
3379       && GET_MODE_SIZE (MODE) < UNITS_PER_WORD)         \
3380     (UNSIGNEDP) = ((MODE) == SImode ? 0 : (UNSIGNEDP)), \
3381     (MODE) = (TARGET_SH1 ? SImode : DImode);
3382
3383 /* Defining PROMOTE_FUNCTION_ARGS eliminates some unnecessary zero/sign
3384    extensions applied to char/short functions arguments.  Defining
3385    PROMOTE_FUNCTION_RETURN does the same for function returns.  */
3386
3387 #define PROMOTE_FUNCTION_ARGS
3388 #define PROMOTE_FUNCTION_RETURN
3389
3390 #define MAX_FIXED_MODE_SIZE (TARGET_SH5 ? 128 : 64)
3391
3392 /* ??? Define ACCUMULATE_OUTGOING_ARGS?  This is more efficient than pushing
3393    and poping arguments.  However, we do have push/pop instructions, and
3394    rather limited offsets (4 bits) in load/store instructions, so it isn't
3395    clear if this would give better code.  If implemented, should check for
3396    compatibility problems.  */
3397
3398 #define SH_DYNAMIC_SHIFT_COST \
3399   (TARGET_HARD_SH4 ? 1 : TARGET_SH3 ? (TARGET_SMALLCODE ? 1 : 2) : 20)
3400
3401
3402 #define NUM_MODES_FOR_MODE_SWITCHING { FP_MODE_NONE }
3403
3404 #define OPTIMIZE_MODE_SWITCHING(ENTITY) TARGET_SH4
3405
3406 #define ACTUAL_NORMAL_MODE(ENTITY) \
3407   (TARGET_FPU_SINGLE ? FP_MODE_SINGLE : FP_MODE_DOUBLE)
3408
3409 #define NORMAL_MODE(ENTITY) \
3410   (sh_cfun_interrupt_handler_p () \
3411    ? (TARGET_FMOVD ? FP_MODE_DOUBLE : FP_MODE_NONE) \
3412    : ACTUAL_NORMAL_MODE (ENTITY))
3413
3414 #define EPILOGUE_USES(REGNO)       ((TARGET_SH2E || TARGET_SH4)         \
3415                                     && (REGNO) == FPSCR_REG)
3416
3417 #define MODE_NEEDED(ENTITY, INSN)                                       \
3418   (recog_memoized (INSN) >= 0                                           \
3419    ? get_attr_fp_mode (INSN)                                            \
3420    : FP_MODE_NONE)
3421
3422 #define MODE_PRIORITY_TO_MODE(ENTITY, N) \
3423   ((TARGET_FPU_SINGLE != 0) ^ (N) ? FP_MODE_SINGLE : FP_MODE_DOUBLE)
3424
3425 #define EMIT_MODE_SET(ENTITY, MODE, HARD_REGS_LIVE) \
3426   fpscr_set_from_mem ((MODE), (HARD_REGS_LIVE))
3427
3428 #define MD_CAN_REDIRECT_BRANCH(INSN, SEQ) \
3429   sh_can_redirect_branch ((INSN), (SEQ))
3430
3431 #define DWARF_FRAME_RETURN_COLUMN \
3432   (TARGET_SH5 ? DWARF_FRAME_REGNUM (PR_MEDIA_REG) : DWARF_FRAME_REGNUM (PR_REG))
3433
3434 #define EH_RETURN_DATA_REGNO(N) \
3435   ((N) < 4 ? (N) + (TARGET_SH5 ? 2 : 4) : INVALID_REGNUM)
3436
3437 #define EH_RETURN_STACKADJ_RTX  gen_rtx_REG (Pmode, STATIC_CHAIN_REGNUM)
3438
3439 #if (defined CRT_BEGIN || defined CRT_END) && ! __SHMEDIA__
3440 /* SH constant pool breaks the devices in crtstuff.c to control section
3441    in where code resides.  We have to write it as asm code.  */
3442 #define CRT_CALL_STATIC_FUNCTION(SECTION_OP, FUNC) \
3443    asm (SECTION_OP "\n\
3444         mov.l   1f,r1\n\
3445         mova    2f,r0\n\
3446         braf    r1\n\
3447         lds     r0,pr\n\
3448 0:      .p2align 2\n\
3449 1:      .long   " USER_LABEL_PREFIX #FUNC " - 0b\n\
3450 2:\n" TEXT_SECTION_ASM_OP);
3451 #endif /* (defined CRT_BEGIN || defined CRT_END) && ! __SHMEDIA__ */
3452
3453 #define ALLOCATE_INITIAL_VALUE(hard_reg) \
3454   (REGNO (hard_reg) == (TARGET_SH5 ? PR_MEDIA_REG : PR_REG) \
3455    ? (current_function_is_leaf && ! sh_pr_n_sets () \
3456       ? (hard_reg) \
3457       : gen_rtx_MEM (Pmode, TARGET_SH5 \
3458                             ? (plus_constant (arg_pointer_rtx, \
3459                                               TARGET_SHMEDIA64 ? -8 : -4)) \
3460                             : frame_pointer_rtx)) \
3461    : NULL_RTX)
3462
3463 #endif /* ! GCC_SH_H */