OSDN Git Service

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