Add missing header file attribs.h to couple of targets.
[official-gcc.git] / gcc / config / m32c / m32c.c
blob95e97abf53397c5d880ffae702c597d222dc4d54
1 /* Target Code for R8C/M16C/M32C
2 Copyright (C) 2005-2017 Free Software Foundation, Inc.
3 Contributed by Red Hat.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published
9 by the Free Software Foundation; either version 3, or (at your
10 option) any later version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "backend.h"
25 #include "target.h"
26 #include "rtl.h"
27 #include "tree.h"
28 #include "stringpool.h"
29 #include "attribs.h"
30 #include "df.h"
31 #include "memmodel.h"
32 #include "tm_p.h"
33 #include "optabs.h"
34 #include "regs.h"
35 #include "emit-rtl.h"
36 #include "recog.h"
37 #include "diagnostic-core.h"
38 #include "output.h"
39 #include "insn-attr.h"
40 #include "flags.h"
41 #include "reload.h"
42 #include "stor-layout.h"
43 #include "varasm.h"
44 #include "calls.h"
45 #include "explow.h"
46 #include "expr.h"
47 #include "tm-constrs.h"
48 #include "builtins.h"
50 /* This file should be included last. */
51 #include "target-def.h"
53 /* Prototypes */
55 /* Used by m32c_pushm_popm. */
56 typedef enum
58 PP_pushm,
59 PP_popm,
60 PP_justcount
61 } Push_Pop_Type;
63 static bool m32c_function_needs_enter (void);
64 static tree interrupt_handler (tree *, tree, tree, int, bool *);
65 static tree function_vector_handler (tree *, tree, tree, int, bool *);
66 static int interrupt_p (tree node);
67 static int bank_switch_p (tree node);
68 static int fast_interrupt_p (tree node);
69 static int interrupt_p (tree node);
70 static bool m32c_asm_integer (rtx, unsigned int, int);
71 static int m32c_comp_type_attributes (const_tree, const_tree);
72 static bool m32c_fixed_condition_code_regs (unsigned int *, unsigned int *);
73 static struct machine_function *m32c_init_machine_status (void);
74 static void m32c_insert_attributes (tree, tree *);
75 static bool m32c_legitimate_address_p (machine_mode, rtx, bool);
76 static bool m32c_addr_space_legitimate_address_p (machine_mode, rtx, bool, addr_space_t);
77 static rtx m32c_function_arg (cumulative_args_t, machine_mode,
78 const_tree, bool);
79 static bool m32c_pass_by_reference (cumulative_args_t, machine_mode,
80 const_tree, bool);
81 static void m32c_function_arg_advance (cumulative_args_t, machine_mode,
82 const_tree, bool);
83 static unsigned int m32c_function_arg_boundary (machine_mode, const_tree);
84 static int m32c_pushm_popm (Push_Pop_Type);
85 static bool m32c_strict_argument_naming (cumulative_args_t);
86 static rtx m32c_struct_value_rtx (tree, int);
87 static rtx m32c_subreg (machine_mode, rtx, machine_mode, int);
88 static int need_to_save (int);
89 static rtx m32c_function_value (const_tree, const_tree, bool);
90 static rtx m32c_libcall_value (machine_mode, const_rtx);
92 /* Returns true if an address is specified, else false. */
93 static bool m32c_get_pragma_address (const char *varname, unsigned *addr);
95 #define SYMBOL_FLAG_FUNCVEC_FUNCTION (SYMBOL_FLAG_MACH_DEP << 0)
97 #define streq(a,b) (strcmp ((a), (b)) == 0)
99 /* Internal support routines */
101 /* Debugging statements are tagged with DEBUG0 only so that they can
102 be easily enabled individually, by replacing the '0' with '1' as
103 needed. */
104 #define DEBUG0 0
105 #define DEBUG1 1
107 #if DEBUG0
108 #include "print-tree.h"
109 /* This is needed by some of the commented-out debug statements
110 below. */
111 static char const *class_names[LIM_REG_CLASSES] = REG_CLASS_NAMES;
112 #endif
113 static int class_contents[LIM_REG_CLASSES][1] = REG_CLASS_CONTENTS;
115 /* These are all to support encode_pattern(). */
116 static char pattern[30], *patternp;
117 static GTY(()) rtx patternr[30];
118 #define RTX_IS(x) (streq (pattern, x))
120 /* Some macros to simplify the logic throughout this file. */
121 #define IS_MEM_REGNO(regno) ((regno) >= MEM0_REGNO && (regno) <= MEM7_REGNO)
122 #define IS_MEM_REG(rtx) (GET_CODE (rtx) == REG && IS_MEM_REGNO (REGNO (rtx)))
124 #define IS_CR_REGNO(regno) ((regno) >= SB_REGNO && (regno) <= PC_REGNO)
125 #define IS_CR_REG(rtx) (GET_CODE (rtx) == REG && IS_CR_REGNO (REGNO (rtx)))
127 static int
128 far_addr_space_p (rtx x)
130 if (GET_CODE (x) != MEM)
131 return 0;
132 #if DEBUG0
133 fprintf(stderr, "\033[35mfar_addr_space: "); debug_rtx(x);
134 fprintf(stderr, " = %d\033[0m\n", MEM_ADDR_SPACE (x) == ADDR_SPACE_FAR);
135 #endif
136 return MEM_ADDR_SPACE (x) == ADDR_SPACE_FAR;
139 /* We do most RTX matching by converting the RTX into a string, and
140 using string compares. This vastly simplifies the logic in many of
141 the functions in this file.
143 On exit, pattern[] has the encoded string (use RTX_IS("...") to
144 compare it) and patternr[] has pointers to the nodes in the RTX
145 corresponding to each character in the encoded string. The latter
146 is mostly used by print_operand().
148 Unrecognized patterns have '?' in them; this shows up when the
149 assembler complains about syntax errors.
152 static void
153 encode_pattern_1 (rtx x)
155 int i;
157 if (patternp == pattern + sizeof (pattern) - 2)
159 patternp[-1] = '?';
160 return;
163 patternr[patternp - pattern] = x;
165 switch (GET_CODE (x))
167 case REG:
168 *patternp++ = 'r';
169 break;
170 case SUBREG:
171 if (GET_MODE_SIZE (GET_MODE (x)) !=
172 GET_MODE_SIZE (GET_MODE (XEXP (x, 0))))
173 *patternp++ = 'S';
174 if (GET_MODE (x) == PSImode
175 && GET_CODE (XEXP (x, 0)) == REG)
176 *patternp++ = 'S';
177 encode_pattern_1 (XEXP (x, 0));
178 break;
179 case MEM:
180 *patternp++ = 'm';
181 /* FALLTHRU */
182 case CONST:
183 encode_pattern_1 (XEXP (x, 0));
184 break;
185 case SIGN_EXTEND:
186 *patternp++ = '^';
187 *patternp++ = 'S';
188 encode_pattern_1 (XEXP (x, 0));
189 break;
190 case ZERO_EXTEND:
191 *patternp++ = '^';
192 *patternp++ = 'Z';
193 encode_pattern_1 (XEXP (x, 0));
194 break;
195 case PLUS:
196 *patternp++ = '+';
197 encode_pattern_1 (XEXP (x, 0));
198 encode_pattern_1 (XEXP (x, 1));
199 break;
200 case PRE_DEC:
201 *patternp++ = '>';
202 encode_pattern_1 (XEXP (x, 0));
203 break;
204 case POST_INC:
205 *patternp++ = '<';
206 encode_pattern_1 (XEXP (x, 0));
207 break;
208 case LO_SUM:
209 *patternp++ = 'L';
210 encode_pattern_1 (XEXP (x, 0));
211 encode_pattern_1 (XEXP (x, 1));
212 break;
213 case HIGH:
214 *patternp++ = 'H';
215 encode_pattern_1 (XEXP (x, 0));
216 break;
217 case SYMBOL_REF:
218 *patternp++ = 's';
219 break;
220 case LABEL_REF:
221 *patternp++ = 'l';
222 break;
223 case CODE_LABEL:
224 *patternp++ = 'c';
225 break;
226 case CONST_INT:
227 case CONST_DOUBLE:
228 *patternp++ = 'i';
229 break;
230 case UNSPEC:
231 *patternp++ = 'u';
232 *patternp++ = '0' + XCINT (x, 1, UNSPEC);
233 for (i = 0; i < XVECLEN (x, 0); i++)
234 encode_pattern_1 (XVECEXP (x, 0, i));
235 break;
236 case USE:
237 *patternp++ = 'U';
238 break;
239 case PARALLEL:
240 *patternp++ = '|';
241 for (i = 0; i < XVECLEN (x, 0); i++)
242 encode_pattern_1 (XVECEXP (x, 0, i));
243 break;
244 case EXPR_LIST:
245 *patternp++ = 'E';
246 encode_pattern_1 (XEXP (x, 0));
247 if (XEXP (x, 1))
248 encode_pattern_1 (XEXP (x, 1));
249 break;
250 default:
251 *patternp++ = '?';
252 #if DEBUG0
253 fprintf (stderr, "can't encode pattern %s\n",
254 GET_RTX_NAME (GET_CODE (x)));
255 debug_rtx (x);
256 #endif
257 break;
261 static void
262 encode_pattern (rtx x)
264 patternp = pattern;
265 encode_pattern_1 (x);
266 *patternp = 0;
269 /* Since register names indicate the mode they're used in, we need a
270 way to determine which name to refer to the register with. Called
271 by print_operand(). */
273 static const char *
274 reg_name_with_mode (int regno, machine_mode mode)
276 int mlen = GET_MODE_SIZE (mode);
277 if (regno == R0_REGNO && mlen == 1)
278 return "r0l";
279 if (regno == R0_REGNO && (mlen == 3 || mlen == 4))
280 return "r2r0";
281 if (regno == R0_REGNO && mlen == 6)
282 return "r2r1r0";
283 if (regno == R0_REGNO && mlen == 8)
284 return "r3r1r2r0";
285 if (regno == R1_REGNO && mlen == 1)
286 return "r1l";
287 if (regno == R1_REGNO && (mlen == 3 || mlen == 4))
288 return "r3r1";
289 if (regno == A0_REGNO && TARGET_A16 && (mlen == 3 || mlen == 4))
290 return "a1a0";
291 return reg_names[regno];
294 /* How many bytes a register uses on stack when it's pushed. We need
295 to know this because the push opcode needs to explicitly indicate
296 the size of the register, even though the name of the register
297 already tells it that. Used by m32c_output_reg_{push,pop}, which
298 is only used through calls to ASM_OUTPUT_REG_{PUSH,POP}. */
300 static int
301 reg_push_size (int regno)
303 switch (regno)
305 case R0_REGNO:
306 case R1_REGNO:
307 return 2;
308 case R2_REGNO:
309 case R3_REGNO:
310 case FLG_REGNO:
311 return 2;
312 case A0_REGNO:
313 case A1_REGNO:
314 case SB_REGNO:
315 case FB_REGNO:
316 case SP_REGNO:
317 if (TARGET_A16)
318 return 2;
319 else
320 return 3;
321 default:
322 gcc_unreachable ();
326 /* Given two register classes, find the largest intersection between
327 them. If there is no intersection, return RETURNED_IF_EMPTY
328 instead. */
329 static reg_class_t
330 reduce_class (reg_class_t original_class, reg_class_t limiting_class,
331 reg_class_t returned_if_empty)
333 HARD_REG_SET cc;
334 int i;
335 reg_class_t best = NO_REGS;
336 unsigned int best_size = 0;
338 if (original_class == limiting_class)
339 return original_class;
341 cc = reg_class_contents[original_class];
342 AND_HARD_REG_SET (cc, reg_class_contents[limiting_class]);
344 for (i = 0; i < LIM_REG_CLASSES; i++)
346 if (hard_reg_set_subset_p (reg_class_contents[i], cc))
347 if (best_size < reg_class_size[i])
349 best = (reg_class_t) i;
350 best_size = reg_class_size[i];
354 if (best == NO_REGS)
355 return returned_if_empty;
356 return best;
359 /* Used by m32c_register_move_cost to determine if a move is
360 impossibly expensive. */
361 static bool
362 class_can_hold_mode (reg_class_t rclass, machine_mode mode)
364 /* Cache the results: 0=untested 1=no 2=yes */
365 static char results[LIM_REG_CLASSES][MAX_MACHINE_MODE];
367 if (results[(int) rclass][mode] == 0)
369 int r;
370 results[rclass][mode] = 1;
371 for (r = 0; r < FIRST_PSEUDO_REGISTER; r++)
372 if (in_hard_reg_set_p (reg_class_contents[(int) rclass], mode, r)
373 && HARD_REGNO_MODE_OK (r, mode))
375 results[rclass][mode] = 2;
376 break;
380 #if DEBUG0
381 fprintf (stderr, "class %s can hold %s? %s\n",
382 class_names[(int) rclass], mode_name[mode],
383 (results[rclass][mode] == 2) ? "yes" : "no");
384 #endif
385 return results[(int) rclass][mode] == 2;
388 /* Run-time Target Specification. */
390 /* Memregs are memory locations that gcc treats like general
391 registers, as there are a limited number of true registers and the
392 m32c families can use memory in most places that registers can be
393 used.
395 However, since memory accesses are more expensive than registers,
396 we allow the user to limit the number of memregs available, in
397 order to try to persuade gcc to try harder to use real registers.
399 Memregs are provided by lib1funcs.S.
402 int ok_to_change_target_memregs = TRUE;
404 /* Implements TARGET_OPTION_OVERRIDE. */
406 #undef TARGET_OPTION_OVERRIDE
407 #define TARGET_OPTION_OVERRIDE m32c_option_override
409 static void
410 m32c_option_override (void)
412 /* We limit memregs to 0..16, and provide a default. */
413 if (global_options_set.x_target_memregs)
415 if (target_memregs < 0 || target_memregs > 16)
416 error ("invalid target memregs value '%d'", target_memregs);
418 else
419 target_memregs = 16;
421 if (TARGET_A24)
422 flag_ivopts = 0;
424 /* This target defaults to strict volatile bitfields. */
425 if (flag_strict_volatile_bitfields < 0 && abi_version_at_least(2))
426 flag_strict_volatile_bitfields = 1;
428 /* r8c/m16c have no 16-bit indirect call, so thunks are involved.
429 This is always worse than an absolute call. */
430 if (TARGET_A16)
431 flag_no_function_cse = 1;
433 /* This wants to put insns between compares and their jumps. */
434 /* FIXME: The right solution is to properly trace the flags register
435 values, but that is too much work for stage 4. */
436 flag_combine_stack_adjustments = 0;
439 #undef TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE
440 #define TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE m32c_override_options_after_change
442 static void
443 m32c_override_options_after_change (void)
445 if (TARGET_A16)
446 flag_no_function_cse = 1;
449 /* Defining data structures for per-function information */
451 /* The usual; we set up our machine_function data. */
452 static struct machine_function *
453 m32c_init_machine_status (void)
455 return ggc_cleared_alloc<machine_function> ();
458 /* Implements INIT_EXPANDERS. We just set up to call the above
459 function. */
460 void
461 m32c_init_expanders (void)
463 init_machine_status = m32c_init_machine_status;
466 /* Storage Layout */
468 /* Register Basics */
470 /* Basic Characteristics of Registers */
472 /* Whether a mode fits in a register is complex enough to warrant a
473 table. */
474 static struct
476 char qi_regs;
477 char hi_regs;
478 char pi_regs;
479 char si_regs;
480 char di_regs;
481 } nregs_table[FIRST_PSEUDO_REGISTER] =
483 { 1, 1, 2, 2, 4 }, /* r0 */
484 { 0, 1, 0, 0, 0 }, /* r2 */
485 { 1, 1, 2, 2, 0 }, /* r1 */
486 { 0, 1, 0, 0, 0 }, /* r3 */
487 { 0, 1, 1, 0, 0 }, /* a0 */
488 { 0, 1, 1, 0, 0 }, /* a1 */
489 { 0, 1, 1, 0, 0 }, /* sb */
490 { 0, 1, 1, 0, 0 }, /* fb */
491 { 0, 1, 1, 0, 0 }, /* sp */
492 { 1, 1, 1, 0, 0 }, /* pc */
493 { 0, 0, 0, 0, 0 }, /* fl */
494 { 1, 1, 1, 0, 0 }, /* ap */
495 { 1, 1, 2, 2, 4 }, /* mem0 */
496 { 1, 1, 2, 2, 4 }, /* mem1 */
497 { 1, 1, 2, 2, 4 }, /* mem2 */
498 { 1, 1, 2, 2, 4 }, /* mem3 */
499 { 1, 1, 2, 2, 4 }, /* mem4 */
500 { 1, 1, 2, 2, 0 }, /* mem5 */
501 { 1, 1, 2, 2, 0 }, /* mem6 */
502 { 1, 1, 0, 0, 0 }, /* mem7 */
505 /* Implements TARGET_CONDITIONAL_REGISTER_USAGE. We adjust the number
506 of available memregs, and select which registers need to be preserved
507 across calls based on the chip family. */
509 #undef TARGET_CONDITIONAL_REGISTER_USAGE
510 #define TARGET_CONDITIONAL_REGISTER_USAGE m32c_conditional_register_usage
511 void
512 m32c_conditional_register_usage (void)
514 int i;
516 if (0 <= target_memregs && target_memregs <= 16)
518 /* The command line option is bytes, but our "registers" are
519 16-bit words. */
520 for (i = (target_memregs+1)/2; i < 8; i++)
522 fixed_regs[MEM0_REGNO + i] = 1;
523 CLEAR_HARD_REG_BIT (reg_class_contents[MEM_REGS], MEM0_REGNO + i);
527 /* M32CM and M32C preserve more registers across function calls. */
528 if (TARGET_A24)
530 call_used_regs[R1_REGNO] = 0;
531 call_used_regs[R2_REGNO] = 0;
532 call_used_regs[R3_REGNO] = 0;
533 call_used_regs[A0_REGNO] = 0;
534 call_used_regs[A1_REGNO] = 0;
538 /* How Values Fit in Registers */
540 /* Implements HARD_REGNO_NREGS. This is complicated by the fact that
541 different registers are different sizes from each other, *and* may
542 be different sizes in different chip families. */
543 static int
544 m32c_hard_regno_nregs_1 (int regno, machine_mode mode)
546 if (regno == FLG_REGNO && mode == CCmode)
547 return 1;
548 if (regno >= FIRST_PSEUDO_REGISTER)
549 return ((GET_MODE_SIZE (mode) + UNITS_PER_WORD - 1) / UNITS_PER_WORD);
551 if (regno >= MEM0_REGNO && regno <= MEM7_REGNO)
552 return (GET_MODE_SIZE (mode) + 1) / 2;
554 if (GET_MODE_SIZE (mode) <= 1)
555 return nregs_table[regno].qi_regs;
556 if (GET_MODE_SIZE (mode) <= 2)
557 return nregs_table[regno].hi_regs;
558 if (regno == A0_REGNO && mode == SImode && TARGET_A16)
559 return 2;
560 if ((GET_MODE_SIZE (mode) <= 3 || mode == PSImode) && TARGET_A24)
561 return nregs_table[regno].pi_regs;
562 if (GET_MODE_SIZE (mode) <= 4)
563 return nregs_table[regno].si_regs;
564 if (GET_MODE_SIZE (mode) <= 8)
565 return nregs_table[regno].di_regs;
566 return 0;
570 m32c_hard_regno_nregs (int regno, machine_mode mode)
572 int rv = m32c_hard_regno_nregs_1 (regno, mode);
573 return rv ? rv : 1;
576 /* Implements HARD_REGNO_MODE_OK. The above function does the work
577 already; just test its return value. */
579 m32c_hard_regno_ok (int regno, machine_mode mode)
581 return m32c_hard_regno_nregs_1 (regno, mode) != 0;
584 /* Implements MODES_TIEABLE_P. In general, modes aren't tieable since
585 registers are all different sizes. However, since most modes are
586 bigger than our registers anyway, it's easier to implement this
587 function that way, leaving QImode as the only unique case. */
589 m32c_modes_tieable_p (machine_mode m1, machine_mode m2)
591 if (GET_MODE_SIZE (m1) == GET_MODE_SIZE (m2))
592 return 1;
594 #if 0
595 if (m1 == QImode || m2 == QImode)
596 return 0;
597 #endif
599 return 1;
602 /* Register Classes */
604 /* Implements REGNO_REG_CLASS. */
605 enum reg_class
606 m32c_regno_reg_class (int regno)
608 switch (regno)
610 case R0_REGNO:
611 return R0_REGS;
612 case R1_REGNO:
613 return R1_REGS;
614 case R2_REGNO:
615 return R2_REGS;
616 case R3_REGNO:
617 return R3_REGS;
618 case A0_REGNO:
619 return A0_REGS;
620 case A1_REGNO:
621 return A1_REGS;
622 case SB_REGNO:
623 return SB_REGS;
624 case FB_REGNO:
625 return FB_REGS;
626 case SP_REGNO:
627 return SP_REGS;
628 case FLG_REGNO:
629 return FLG_REGS;
630 default:
631 if (IS_MEM_REGNO (regno))
632 return MEM_REGS;
633 return ALL_REGS;
637 /* Implements REGNO_OK_FOR_BASE_P. */
639 m32c_regno_ok_for_base_p (int regno)
641 if (regno == A0_REGNO
642 || regno == A1_REGNO || regno >= FIRST_PSEUDO_REGISTER)
643 return 1;
644 return 0;
647 /* Implements TARGET_PREFERRED_RELOAD_CLASS. In general, prefer general
648 registers of the appropriate size. */
650 #undef TARGET_PREFERRED_RELOAD_CLASS
651 #define TARGET_PREFERRED_RELOAD_CLASS m32c_preferred_reload_class
653 static reg_class_t
654 m32c_preferred_reload_class (rtx x, reg_class_t rclass)
656 reg_class_t newclass = rclass;
658 #if DEBUG0
659 fprintf (stderr, "\npreferred_reload_class for %s is ",
660 class_names[rclass]);
661 #endif
662 if (rclass == NO_REGS)
663 rclass = GET_MODE (x) == QImode ? HL_REGS : R03_REGS;
665 if (reg_classes_intersect_p (rclass, CR_REGS))
667 switch (GET_MODE (x))
669 case QImode:
670 newclass = HL_REGS;
671 break;
672 default:
673 /* newclass = HI_REGS; */
674 break;
678 else if (newclass == QI_REGS && GET_MODE_SIZE (GET_MODE (x)) > 2)
679 newclass = SI_REGS;
680 else if (GET_MODE_SIZE (GET_MODE (x)) > 4
681 && ! reg_class_subset_p (R03_REGS, rclass))
682 newclass = DI_REGS;
684 rclass = reduce_class (rclass, newclass, rclass);
686 if (GET_MODE (x) == QImode)
687 rclass = reduce_class (rclass, HL_REGS, rclass);
689 #if DEBUG0
690 fprintf (stderr, "%s\n", class_names[rclass]);
691 debug_rtx (x);
693 if (GET_CODE (x) == MEM
694 && GET_CODE (XEXP (x, 0)) == PLUS
695 && GET_CODE (XEXP (XEXP (x, 0), 0)) == PLUS)
696 fprintf (stderr, "Glorm!\n");
697 #endif
698 return rclass;
701 /* Implements TARGET_PREFERRED_OUTPUT_RELOAD_CLASS. */
703 #undef TARGET_PREFERRED_OUTPUT_RELOAD_CLASS
704 #define TARGET_PREFERRED_OUTPUT_RELOAD_CLASS m32c_preferred_output_reload_class
706 static reg_class_t
707 m32c_preferred_output_reload_class (rtx x, reg_class_t rclass)
709 return m32c_preferred_reload_class (x, rclass);
712 /* Implements LIMIT_RELOAD_CLASS. We basically want to avoid using
713 address registers for reloads since they're needed for address
714 reloads. */
716 m32c_limit_reload_class (machine_mode mode, int rclass)
718 #if DEBUG0
719 fprintf (stderr, "limit_reload_class for %s: %s ->",
720 mode_name[mode], class_names[rclass]);
721 #endif
723 if (mode == QImode)
724 rclass = reduce_class (rclass, HL_REGS, rclass);
725 else if (mode == HImode)
726 rclass = reduce_class (rclass, HI_REGS, rclass);
727 else if (mode == SImode)
728 rclass = reduce_class (rclass, SI_REGS, rclass);
730 if (rclass != A_REGS)
731 rclass = reduce_class (rclass, DI_REGS, rclass);
733 #if DEBUG0
734 fprintf (stderr, " %s\n", class_names[rclass]);
735 #endif
736 return rclass;
739 /* Implements SECONDARY_RELOAD_CLASS. QImode have to be reloaded in
740 r0 or r1, as those are the only real QImode registers. CR regs get
741 reloaded through appropriately sized general or address
742 registers. */
744 m32c_secondary_reload_class (int rclass, machine_mode mode, rtx x)
746 int cc = class_contents[rclass][0];
747 #if DEBUG0
748 fprintf (stderr, "\nsecondary reload class %s %s\n",
749 class_names[rclass], mode_name[mode]);
750 debug_rtx (x);
751 #endif
752 if (mode == QImode
753 && GET_CODE (x) == MEM && (cc & ~class_contents[R23_REGS][0]) == 0)
754 return QI_REGS;
755 if (reg_classes_intersect_p (rclass, CR_REGS)
756 && GET_CODE (x) == REG
757 && REGNO (x) >= SB_REGNO && REGNO (x) <= SP_REGNO)
758 return (TARGET_A16 || mode == HImode) ? HI_REGS : A_REGS;
759 return NO_REGS;
762 /* Implements TARGET_CLASS_LIKELY_SPILLED_P. A_REGS is needed for address
763 reloads. */
765 #undef TARGET_CLASS_LIKELY_SPILLED_P
766 #define TARGET_CLASS_LIKELY_SPILLED_P m32c_class_likely_spilled_p
768 static bool
769 m32c_class_likely_spilled_p (reg_class_t regclass)
771 if (regclass == A_REGS)
772 return true;
774 return (reg_class_size[(int) regclass] == 1);
777 /* Implements TARGET_CLASS_MAX_NREGS. We calculate this according to its
778 documented meaning, to avoid potential inconsistencies with actual
779 class definitions. */
781 #undef TARGET_CLASS_MAX_NREGS
782 #define TARGET_CLASS_MAX_NREGS m32c_class_max_nregs
784 static unsigned char
785 m32c_class_max_nregs (reg_class_t regclass, machine_mode mode)
787 int rn;
788 unsigned char max = 0;
790 for (rn = 0; rn < FIRST_PSEUDO_REGISTER; rn++)
791 if (TEST_HARD_REG_BIT (reg_class_contents[(int) regclass], rn))
793 unsigned char n = m32c_hard_regno_nregs (rn, mode);
794 if (max < n)
795 max = n;
797 return max;
800 /* Implements CANNOT_CHANGE_MODE_CLASS. Only r0 and r1 can change to
801 QI (r0l, r1l) because the chip doesn't support QI ops on other
802 registers (well, it does on a0/a1 but if we let gcc do that, reload
803 suffers). Otherwise, we allow changes to larger modes. */
805 m32c_cannot_change_mode_class (machine_mode from,
806 machine_mode to, int rclass)
808 int rn;
809 #if DEBUG0
810 fprintf (stderr, "cannot change from %s to %s in %s\n",
811 mode_name[from], mode_name[to], class_names[rclass]);
812 #endif
814 /* If the larger mode isn't allowed in any of these registers, we
815 can't allow the change. */
816 for (rn = 0; rn < FIRST_PSEUDO_REGISTER; rn++)
817 if (class_contents[rclass][0] & (1 << rn))
818 if (! m32c_hard_regno_ok (rn, to))
819 return 1;
821 if (to == QImode)
822 return (class_contents[rclass][0] & 0x1ffa);
824 if (class_contents[rclass][0] & 0x0005 /* r0, r1 */
825 && GET_MODE_SIZE (from) > 1)
826 return 0;
827 if (GET_MODE_SIZE (from) > 2) /* all other regs */
828 return 0;
830 return 1;
833 /* Helpers for the rest of the file. */
834 /* TRUE if the rtx is a REG rtx for the given register. */
835 #define IS_REG(rtx,regno) (GET_CODE (rtx) == REG \
836 && REGNO (rtx) == regno)
837 /* TRUE if the rtx is a pseudo - specifically, one we can use as a
838 base register in address calculations (hence the "strict"
839 argument). */
840 #define IS_PSEUDO(rtx,strict) (!strict && GET_CODE (rtx) == REG \
841 && (REGNO (rtx) == AP_REGNO \
842 || REGNO (rtx) >= FIRST_PSEUDO_REGISTER))
844 #define A0_OR_PSEUDO(x) (IS_REG(x, A0_REGNO) || REGNO (x) >= FIRST_PSEUDO_REGISTER)
846 /* Implements matching for constraints (see next function too). 'S' is
847 for memory constraints, plus "Rpa" for PARALLEL rtx's we use for
848 call return values. */
849 bool
850 m32c_matches_constraint_p (rtx value, int constraint)
852 encode_pattern (value);
854 switch (constraint) {
855 case CONSTRAINT_SF:
856 return (far_addr_space_p (value)
857 && ((RTX_IS ("mr")
858 && A0_OR_PSEUDO (patternr[1])
859 && GET_MODE (patternr[1]) == SImode)
860 || (RTX_IS ("m+^Sri")
861 && A0_OR_PSEUDO (patternr[4])
862 && GET_MODE (patternr[4]) == HImode)
863 || (RTX_IS ("m+^Srs")
864 && A0_OR_PSEUDO (patternr[4])
865 && GET_MODE (patternr[4]) == HImode)
866 || (RTX_IS ("m+^S+ris")
867 && A0_OR_PSEUDO (patternr[5])
868 && GET_MODE (patternr[5]) == HImode)
869 || RTX_IS ("ms")));
870 case CONSTRAINT_Sd:
872 /* This is the common "src/dest" address */
873 rtx r;
874 if (GET_CODE (value) == MEM && CONSTANT_P (XEXP (value, 0)))
875 return true;
876 if (RTX_IS ("ms") || RTX_IS ("m+si"))
877 return true;
878 if (RTX_IS ("m++rii"))
880 if (REGNO (patternr[3]) == FB_REGNO
881 && INTVAL (patternr[4]) == 0)
882 return true;
884 if (RTX_IS ("mr"))
885 r = patternr[1];
886 else if (RTX_IS ("m+ri") || RTX_IS ("m+rs") || RTX_IS ("m+r+si"))
887 r = patternr[2];
888 else
889 return false;
890 if (REGNO (r) == SP_REGNO)
891 return false;
892 return m32c_legitimate_address_p (GET_MODE (value), XEXP (value, 0), 1);
894 case CONSTRAINT_Sa:
896 rtx r;
897 if (RTX_IS ("mr"))
898 r = patternr[1];
899 else if (RTX_IS ("m+ri"))
900 r = patternr[2];
901 else
902 return false;
903 return (IS_REG (r, A0_REGNO) || IS_REG (r, A1_REGNO));
905 case CONSTRAINT_Si:
906 return (RTX_IS ("mi") || RTX_IS ("ms") || RTX_IS ("m+si"));
907 case CONSTRAINT_Ss:
908 return ((RTX_IS ("mr")
909 && (IS_REG (patternr[1], SP_REGNO)))
910 || (RTX_IS ("m+ri") && (IS_REG (patternr[2], SP_REGNO))));
911 case CONSTRAINT_Sf:
912 return ((RTX_IS ("mr")
913 && (IS_REG (patternr[1], FB_REGNO)))
914 || (RTX_IS ("m+ri") && (IS_REG (patternr[2], FB_REGNO))));
915 case CONSTRAINT_Sb:
916 return ((RTX_IS ("mr")
917 && (IS_REG (patternr[1], SB_REGNO)))
918 || (RTX_IS ("m+ri") && (IS_REG (patternr[2], SB_REGNO))));
919 case CONSTRAINT_Sp:
920 /* Absolute addresses 0..0x1fff used for bit addressing (I/O ports) */
921 return (RTX_IS ("mi")
922 && !(INTVAL (patternr[1]) & ~0x1fff));
923 case CONSTRAINT_S1:
924 return r1h_operand (value, QImode);
925 case CONSTRAINT_Rpa:
926 return GET_CODE (value) == PARALLEL;
927 default:
928 return false;
932 /* STACK AND CALLING */
934 /* Frame Layout */
936 /* Implements RETURN_ADDR_RTX. Note that R8C and M16C push 24 bits
937 (yes, THREE bytes) onto the stack for the return address, but we
938 don't support pointers bigger than 16 bits on those chips. This
939 will likely wreak havoc with exception unwinding. FIXME. */
941 m32c_return_addr_rtx (int count)
943 machine_mode mode;
944 int offset;
945 rtx ra_mem;
947 if (count)
948 return NULL_RTX;
949 /* we want 2[$fb] */
951 if (TARGET_A24)
953 /* It's four bytes */
954 mode = PSImode;
955 offset = 4;
957 else
959 /* FIXME: it's really 3 bytes */
960 mode = HImode;
961 offset = 2;
964 ra_mem =
965 gen_rtx_MEM (mode, plus_constant (Pmode, gen_rtx_REG (Pmode, FP_REGNO),
966 offset));
967 return copy_to_mode_reg (mode, ra_mem);
970 /* Implements INCOMING_RETURN_ADDR_RTX. See comment above. */
972 m32c_incoming_return_addr_rtx (void)
974 /* we want [sp] */
975 return gen_rtx_MEM (PSImode, gen_rtx_REG (PSImode, SP_REGNO));
978 /* Exception Handling Support */
980 /* Implements EH_RETURN_DATA_REGNO. Choose registers able to hold
981 pointers. */
983 m32c_eh_return_data_regno (int n)
985 switch (n)
987 case 0:
988 return MEM0_REGNO;
989 case 1:
990 return MEM0_REGNO+4;
991 default:
992 return INVALID_REGNUM;
996 /* Implements EH_RETURN_STACKADJ_RTX. Saved and used later in
997 m32c_emit_eh_epilogue. */
999 m32c_eh_return_stackadj_rtx (void)
1001 if (!cfun->machine->eh_stack_adjust)
1003 rtx sa;
1005 sa = gen_rtx_REG (Pmode, R0_REGNO);
1006 cfun->machine->eh_stack_adjust = sa;
1008 return cfun->machine->eh_stack_adjust;
1011 /* Registers That Address the Stack Frame */
1013 /* Implements DWARF_FRAME_REGNUM and DBX_REGISTER_NUMBER. Note that
1014 the original spec called for dwarf numbers to vary with register
1015 width as well, for example, r0l, r0, and r2r0 would each have
1016 different dwarf numbers. GCC doesn't support this, and we don't do
1017 it, and gdb seems to like it this way anyway. */
1018 unsigned int
1019 m32c_dwarf_frame_regnum (int n)
1021 switch (n)
1023 case R0_REGNO:
1024 return 5;
1025 case R1_REGNO:
1026 return 6;
1027 case R2_REGNO:
1028 return 7;
1029 case R3_REGNO:
1030 return 8;
1031 case A0_REGNO:
1032 return 9;
1033 case A1_REGNO:
1034 return 10;
1035 case FB_REGNO:
1036 return 11;
1037 case SB_REGNO:
1038 return 19;
1040 case SP_REGNO:
1041 return 12;
1042 case PC_REGNO:
1043 return 13;
1044 default:
1045 return DWARF_FRAME_REGISTERS + 1;
1049 /* The frame looks like this:
1051 ap -> +------------------------------
1052 | Return address (3 or 4 bytes)
1053 | Saved FB (2 or 4 bytes)
1054 fb -> +------------------------------
1055 | local vars
1056 | register saves fb
1057 | through r0 as needed
1058 sp -> +------------------------------
1061 /* We use this to wrap all emitted insns in the prologue. */
1062 static rtx
1063 F (rtx x)
1065 RTX_FRAME_RELATED_P (x) = 1;
1066 return x;
1069 /* This maps register numbers to the PUSHM/POPM bitfield, and tells us
1070 how much the stack pointer moves for each, for each cpu family. */
1071 static struct
1073 int reg1;
1074 int bit;
1075 int a16_bytes;
1076 int a24_bytes;
1077 } pushm_info[] =
1079 /* These are in reverse push (nearest-to-sp) order. */
1080 { R0_REGNO, 0x80, 2, 2 },
1081 { R1_REGNO, 0x40, 2, 2 },
1082 { R2_REGNO, 0x20, 2, 2 },
1083 { R3_REGNO, 0x10, 2, 2 },
1084 { A0_REGNO, 0x08, 2, 4 },
1085 { A1_REGNO, 0x04, 2, 4 },
1086 { SB_REGNO, 0x02, 2, 4 },
1087 { FB_REGNO, 0x01, 2, 4 }
1090 #define PUSHM_N (sizeof(pushm_info)/sizeof(pushm_info[0]))
1092 /* Returns TRUE if we need to save/restore the given register. We
1093 save everything for exception handlers, so that any register can be
1094 unwound. For interrupt handlers, we save everything if the handler
1095 calls something else (because we don't know what *that* function
1096 might do), but try to be a bit smarter if the handler is a leaf
1097 function. We always save $a0, though, because we use that in the
1098 epilogue to copy $fb to $sp. */
1099 static int
1100 need_to_save (int regno)
1102 if (fixed_regs[regno])
1103 return 0;
1104 if (crtl->calls_eh_return)
1105 return 1;
1106 if (regno == FP_REGNO)
1107 return 0;
1108 if (cfun->machine->is_interrupt
1109 && (!cfun->machine->is_leaf
1110 || (regno == A0_REGNO
1111 && m32c_function_needs_enter ())
1113 return 1;
1114 if (df_regs_ever_live_p (regno)
1115 && (!call_used_regs[regno] || cfun->machine->is_interrupt))
1116 return 1;
1117 return 0;
1120 /* This function contains all the intelligence about saving and
1121 restoring registers. It always figures out the register save set.
1122 When called with PP_justcount, it merely returns the size of the
1123 save set (for eliminating the frame pointer, for example). When
1124 called with PP_pushm or PP_popm, it emits the appropriate
1125 instructions for saving (pushm) or restoring (popm) the
1126 registers. */
1127 static int
1128 m32c_pushm_popm (Push_Pop_Type ppt)
1130 int reg_mask = 0;
1131 int byte_count = 0, bytes;
1132 int i;
1133 rtx dwarf_set[PUSHM_N];
1134 int n_dwarfs = 0;
1135 int nosave_mask = 0;
1137 if (crtl->return_rtx
1138 && GET_CODE (crtl->return_rtx) == PARALLEL
1139 && !(crtl->calls_eh_return || cfun->machine->is_interrupt))
1141 rtx exp = XVECEXP (crtl->return_rtx, 0, 0);
1142 rtx rv = XEXP (exp, 0);
1143 int rv_bytes = GET_MODE_SIZE (GET_MODE (rv));
1145 if (rv_bytes > 2)
1146 nosave_mask |= 0x20; /* PSI, SI */
1147 else
1148 nosave_mask |= 0xf0; /* DF */
1149 if (rv_bytes > 4)
1150 nosave_mask |= 0x50; /* DI */
1153 for (i = 0; i < (int) PUSHM_N; i++)
1155 /* Skip if neither register needs saving. */
1156 if (!need_to_save (pushm_info[i].reg1))
1157 continue;
1159 if (pushm_info[i].bit & nosave_mask)
1160 continue;
1162 reg_mask |= pushm_info[i].bit;
1163 bytes = TARGET_A16 ? pushm_info[i].a16_bytes : pushm_info[i].a24_bytes;
1165 if (ppt == PP_pushm)
1167 machine_mode mode = (bytes == 2) ? HImode : SImode;
1168 rtx addr;
1170 /* Always use stack_pointer_rtx instead of calling
1171 rtx_gen_REG ourselves. Code elsewhere in GCC assumes
1172 that there is a single rtx representing the stack pointer,
1173 namely stack_pointer_rtx, and uses == to recognize it. */
1174 addr = stack_pointer_rtx;
1176 if (byte_count != 0)
1177 addr = gen_rtx_PLUS (GET_MODE (addr), addr, GEN_INT (byte_count));
1179 dwarf_set[n_dwarfs++] =
1180 gen_rtx_SET (gen_rtx_MEM (mode, addr),
1181 gen_rtx_REG (mode, pushm_info[i].reg1));
1182 F (dwarf_set[n_dwarfs - 1]);
1185 byte_count += bytes;
1188 if (cfun->machine->is_interrupt)
1190 cfun->machine->intr_pushm = reg_mask & 0xfe;
1191 reg_mask = 0;
1192 byte_count = 0;
1195 if (cfun->machine->is_interrupt)
1196 for (i = MEM0_REGNO; i <= MEM7_REGNO; i++)
1197 if (need_to_save (i))
1199 byte_count += 2;
1200 cfun->machine->intr_pushmem[i - MEM0_REGNO] = 1;
1203 if (ppt == PP_pushm && byte_count)
1205 rtx note = gen_rtx_SEQUENCE (VOIDmode, rtvec_alloc (n_dwarfs + 1));
1206 rtx pushm;
1208 if (reg_mask)
1210 XVECEXP (note, 0, 0)
1211 = gen_rtx_SET (stack_pointer_rtx,
1212 gen_rtx_PLUS (GET_MODE (stack_pointer_rtx),
1213 stack_pointer_rtx,
1214 GEN_INT (-byte_count)));
1215 F (XVECEXP (note, 0, 0));
1217 for (i = 0; i < n_dwarfs; i++)
1218 XVECEXP (note, 0, i + 1) = dwarf_set[i];
1220 pushm = F (emit_insn (gen_pushm (GEN_INT (reg_mask))));
1222 add_reg_note (pushm, REG_FRAME_RELATED_EXPR, note);
1225 if (cfun->machine->is_interrupt)
1226 for (i = MEM0_REGNO; i <= MEM7_REGNO; i++)
1227 if (cfun->machine->intr_pushmem[i - MEM0_REGNO])
1229 if (TARGET_A16)
1230 pushm = emit_insn (gen_pushhi_16 (gen_rtx_REG (HImode, i)));
1231 else
1232 pushm = emit_insn (gen_pushhi_24 (gen_rtx_REG (HImode, i)));
1233 F (pushm);
1236 if (ppt == PP_popm && byte_count)
1238 if (cfun->machine->is_interrupt)
1239 for (i = MEM7_REGNO; i >= MEM0_REGNO; i--)
1240 if (cfun->machine->intr_pushmem[i - MEM0_REGNO])
1242 if (TARGET_A16)
1243 emit_insn (gen_pophi_16 (gen_rtx_REG (HImode, i)));
1244 else
1245 emit_insn (gen_pophi_24 (gen_rtx_REG (HImode, i)));
1247 if (reg_mask)
1248 emit_insn (gen_popm (GEN_INT (reg_mask)));
1251 return byte_count;
1254 /* Implements INITIAL_ELIMINATION_OFFSET. See the comment above that
1255 diagrams our call frame. */
1257 m32c_initial_elimination_offset (int from, int to)
1259 int ofs = 0;
1261 if (from == AP_REGNO)
1263 if (TARGET_A16)
1264 ofs += 5;
1265 else
1266 ofs += 8;
1269 if (to == SP_REGNO)
1271 ofs += m32c_pushm_popm (PP_justcount);
1272 ofs += get_frame_size ();
1275 /* Account for push rounding. */
1276 if (TARGET_A24)
1277 ofs = (ofs + 1) & ~1;
1278 #if DEBUG0
1279 fprintf (stderr, "initial_elimination_offset from=%d to=%d, ofs=%d\n", from,
1280 to, ofs);
1281 #endif
1282 return ofs;
1285 /* Passing Function Arguments on the Stack */
1287 /* Implements PUSH_ROUNDING. The R8C and M16C have byte stacks, the
1288 M32C has word stacks. */
1289 unsigned int
1290 m32c_push_rounding (int n)
1292 if (TARGET_R8C || TARGET_M16C)
1293 return n;
1294 return (n + 1) & ~1;
1297 /* Passing Arguments in Registers */
1299 /* Implements TARGET_FUNCTION_ARG. Arguments are passed partly in
1300 registers, partly on stack. If our function returns a struct, a
1301 pointer to a buffer for it is at the top of the stack (last thing
1302 pushed). The first few real arguments may be in registers as
1303 follows:
1305 R8C/M16C: arg1 in r1 if it's QI or HI (else it's pushed on stack)
1306 arg2 in r2 if it's HI (else pushed on stack)
1307 rest on stack
1308 M32C: arg1 in r0 if it's QI or HI (else it's pushed on stack)
1309 rest on stack
1311 Structs are not passed in registers, even if they fit. Only
1312 integer and pointer types are passed in registers.
1314 Note that when arg1 doesn't fit in r1, arg2 may still be passed in
1315 r2 if it fits. */
1316 #undef TARGET_FUNCTION_ARG
1317 #define TARGET_FUNCTION_ARG m32c_function_arg
1318 static rtx
1319 m32c_function_arg (cumulative_args_t ca_v,
1320 machine_mode mode, const_tree type, bool named)
1322 CUMULATIVE_ARGS *ca = get_cumulative_args (ca_v);
1324 /* Can return a reg, parallel, or 0 for stack */
1325 rtx rv = NULL_RTX;
1326 #if DEBUG0
1327 fprintf (stderr, "func_arg %d (%s, %d)\n",
1328 ca->parm_num, mode_name[mode], named);
1329 debug_tree ((tree)type);
1330 #endif
1332 if (mode == VOIDmode)
1333 return GEN_INT (0);
1335 if (ca->force_mem || !named)
1337 #if DEBUG0
1338 fprintf (stderr, "func arg: force %d named %d, mem\n", ca->force_mem,
1339 named);
1340 #endif
1341 return NULL_RTX;
1344 if (type && INTEGRAL_TYPE_P (type) && POINTER_TYPE_P (type))
1345 return NULL_RTX;
1347 if (type && AGGREGATE_TYPE_P (type))
1348 return NULL_RTX;
1350 switch (ca->parm_num)
1352 case 1:
1353 if (GET_MODE_SIZE (mode) == 1 || GET_MODE_SIZE (mode) == 2)
1354 rv = gen_rtx_REG (mode, TARGET_A16 ? R1_REGNO : R0_REGNO);
1355 break;
1357 case 2:
1358 if (TARGET_A16 && GET_MODE_SIZE (mode) == 2)
1359 rv = gen_rtx_REG (mode, R2_REGNO);
1360 break;
1363 #if DEBUG0
1364 debug_rtx (rv);
1365 #endif
1366 return rv;
1369 #undef TARGET_PASS_BY_REFERENCE
1370 #define TARGET_PASS_BY_REFERENCE m32c_pass_by_reference
1371 static bool
1372 m32c_pass_by_reference (cumulative_args_t ca ATTRIBUTE_UNUSED,
1373 machine_mode mode ATTRIBUTE_UNUSED,
1374 const_tree type ATTRIBUTE_UNUSED,
1375 bool named ATTRIBUTE_UNUSED)
1377 return 0;
1380 /* Implements INIT_CUMULATIVE_ARGS. */
1381 void
1382 m32c_init_cumulative_args (CUMULATIVE_ARGS * ca,
1383 tree fntype,
1384 rtx libname ATTRIBUTE_UNUSED,
1385 tree fndecl,
1386 int n_named_args ATTRIBUTE_UNUSED)
1388 if (fntype && aggregate_value_p (TREE_TYPE (fntype), fndecl))
1389 ca->force_mem = 1;
1390 else
1391 ca->force_mem = 0;
1392 ca->parm_num = 1;
1395 /* Implements TARGET_FUNCTION_ARG_ADVANCE. force_mem is set for
1396 functions returning structures, so we always reset that. Otherwise,
1397 we only need to know the sequence number of the argument to know what
1398 to do with it. */
1399 #undef TARGET_FUNCTION_ARG_ADVANCE
1400 #define TARGET_FUNCTION_ARG_ADVANCE m32c_function_arg_advance
1401 static void
1402 m32c_function_arg_advance (cumulative_args_t ca_v,
1403 machine_mode mode ATTRIBUTE_UNUSED,
1404 const_tree type ATTRIBUTE_UNUSED,
1405 bool named ATTRIBUTE_UNUSED)
1407 CUMULATIVE_ARGS *ca = get_cumulative_args (ca_v);
1409 if (ca->force_mem)
1410 ca->force_mem = 0;
1411 else
1412 ca->parm_num++;
1415 /* Implements TARGET_FUNCTION_ARG_BOUNDARY. */
1416 #undef TARGET_FUNCTION_ARG_BOUNDARY
1417 #define TARGET_FUNCTION_ARG_BOUNDARY m32c_function_arg_boundary
1418 static unsigned int
1419 m32c_function_arg_boundary (machine_mode mode ATTRIBUTE_UNUSED,
1420 const_tree type ATTRIBUTE_UNUSED)
1422 return (TARGET_A16 ? 8 : 16);
1425 /* Implements FUNCTION_ARG_REGNO_P. */
1427 m32c_function_arg_regno_p (int r)
1429 if (TARGET_A24)
1430 return (r == R0_REGNO);
1431 return (r == R1_REGNO || r == R2_REGNO);
1434 /* HImode and PSImode are the two "native" modes as far as GCC is
1435 concerned, but the chips also support a 32-bit mode which is used
1436 for some opcodes in R8C/M16C and for reset vectors and such. */
1437 #undef TARGET_VALID_POINTER_MODE
1438 #define TARGET_VALID_POINTER_MODE m32c_valid_pointer_mode
1439 static bool
1440 m32c_valid_pointer_mode (machine_mode mode)
1442 if (mode == HImode
1443 || mode == PSImode
1444 || mode == SImode
1446 return 1;
1447 return 0;
1450 /* How Scalar Function Values Are Returned */
1452 /* Implements TARGET_LIBCALL_VALUE. Most values are returned in $r0, or some
1453 combination of registers starting there (r2r0 for longs, r3r1r2r0
1454 for long long, r3r2r1r0 for doubles), except that that ABI
1455 currently doesn't work because it ends up using all available
1456 general registers and gcc often can't compile it. So, instead, we
1457 return anything bigger than 16 bits in "mem0" (effectively, a
1458 memory location). */
1460 #undef TARGET_LIBCALL_VALUE
1461 #define TARGET_LIBCALL_VALUE m32c_libcall_value
1463 static rtx
1464 m32c_libcall_value (machine_mode mode, const_rtx fun ATTRIBUTE_UNUSED)
1466 /* return reg or parallel */
1467 #if 0
1468 /* FIXME: GCC has difficulty returning large values in registers,
1469 because that ties up most of the general registers and gives the
1470 register allocator little to work with. Until we can resolve
1471 this, large values are returned in memory. */
1472 if (mode == DFmode)
1474 rtx rv;
1476 rv = gen_rtx_PARALLEL (mode, rtvec_alloc (4));
1477 XVECEXP (rv, 0, 0) = gen_rtx_EXPR_LIST (VOIDmode,
1478 gen_rtx_REG (HImode,
1479 R0_REGNO),
1480 GEN_INT (0));
1481 XVECEXP (rv, 0, 1) = gen_rtx_EXPR_LIST (VOIDmode,
1482 gen_rtx_REG (HImode,
1483 R1_REGNO),
1484 GEN_INT (2));
1485 XVECEXP (rv, 0, 2) = gen_rtx_EXPR_LIST (VOIDmode,
1486 gen_rtx_REG (HImode,
1487 R2_REGNO),
1488 GEN_INT (4));
1489 XVECEXP (rv, 0, 3) = gen_rtx_EXPR_LIST (VOIDmode,
1490 gen_rtx_REG (HImode,
1491 R3_REGNO),
1492 GEN_INT (6));
1493 return rv;
1496 if (TARGET_A24 && GET_MODE_SIZE (mode) > 2)
1498 rtx rv;
1500 rv = gen_rtx_PARALLEL (mode, rtvec_alloc (1));
1501 XVECEXP (rv, 0, 0) = gen_rtx_EXPR_LIST (VOIDmode,
1502 gen_rtx_REG (mode,
1503 R0_REGNO),
1504 GEN_INT (0));
1505 return rv;
1507 #endif
1509 if (GET_MODE_SIZE (mode) > 2)
1510 return gen_rtx_REG (mode, MEM0_REGNO);
1511 return gen_rtx_REG (mode, R0_REGNO);
1514 /* Implements TARGET_FUNCTION_VALUE. Functions and libcalls have the same
1515 conventions. */
1517 #undef TARGET_FUNCTION_VALUE
1518 #define TARGET_FUNCTION_VALUE m32c_function_value
1520 static rtx
1521 m32c_function_value (const_tree valtype,
1522 const_tree fn_decl_or_type ATTRIBUTE_UNUSED,
1523 bool outgoing ATTRIBUTE_UNUSED)
1525 /* return reg or parallel */
1526 const machine_mode mode = TYPE_MODE (valtype);
1527 return m32c_libcall_value (mode, NULL_RTX);
1530 /* Implements TARGET_FUNCTION_VALUE_REGNO_P. */
1532 #undef TARGET_FUNCTION_VALUE_REGNO_P
1533 #define TARGET_FUNCTION_VALUE_REGNO_P m32c_function_value_regno_p
1535 static bool
1536 m32c_function_value_regno_p (const unsigned int regno)
1538 return (regno == R0_REGNO || regno == MEM0_REGNO);
1541 /* How Large Values Are Returned */
1543 /* We return structures by pushing the address on the stack, even if
1544 we use registers for the first few "real" arguments. */
1545 #undef TARGET_STRUCT_VALUE_RTX
1546 #define TARGET_STRUCT_VALUE_RTX m32c_struct_value_rtx
1547 static rtx
1548 m32c_struct_value_rtx (tree fndecl ATTRIBUTE_UNUSED,
1549 int incoming ATTRIBUTE_UNUSED)
1551 return 0;
1554 /* Function Entry and Exit */
1556 /* Implements EPILOGUE_USES. Interrupts restore all registers. */
1558 m32c_epilogue_uses (int regno ATTRIBUTE_UNUSED)
1560 if (cfun->machine->is_interrupt)
1561 return 1;
1562 return 0;
1565 /* Implementing the Varargs Macros */
1567 #undef TARGET_STRICT_ARGUMENT_NAMING
1568 #define TARGET_STRICT_ARGUMENT_NAMING m32c_strict_argument_naming
1569 static bool
1570 m32c_strict_argument_naming (cumulative_args_t ca ATTRIBUTE_UNUSED)
1572 return 1;
1575 /* Trampolines for Nested Functions */
1578 m16c:
1579 1 0000 75C43412 mov.w #0x1234,a0
1580 2 0004 FC000000 jmp.a label
1582 m32c:
1583 1 0000 BC563412 mov.l:s #0x123456,a0
1584 2 0004 CC000000 jmp.a label
1587 /* Implements TRAMPOLINE_SIZE. */
1589 m32c_trampoline_size (void)
1591 /* Allocate extra space so we can avoid the messy shifts when we
1592 initialize the trampoline; we just write past the end of the
1593 opcode. */
1594 return TARGET_A16 ? 8 : 10;
1597 /* Implements TRAMPOLINE_ALIGNMENT. */
1599 m32c_trampoline_alignment (void)
1601 return 2;
1604 /* Implements TARGET_TRAMPOLINE_INIT. */
1606 #undef TARGET_TRAMPOLINE_INIT
1607 #define TARGET_TRAMPOLINE_INIT m32c_trampoline_init
1608 static void
1609 m32c_trampoline_init (rtx m_tramp, tree fndecl, rtx chainval)
1611 rtx function = XEXP (DECL_RTL (fndecl), 0);
1613 #define A0(m,i) adjust_address (m_tramp, m, i)
1614 if (TARGET_A16)
1616 /* Note: we subtract a "word" because the moves want signed
1617 constants, not unsigned constants. */
1618 emit_move_insn (A0 (HImode, 0), GEN_INT (0xc475 - 0x10000));
1619 emit_move_insn (A0 (HImode, 2), chainval);
1620 emit_move_insn (A0 (QImode, 4), GEN_INT (0xfc - 0x100));
1621 /* We use 16-bit addresses here, but store the zero to turn it
1622 into a 24-bit offset. */
1623 emit_move_insn (A0 (HImode, 5), function);
1624 emit_move_insn (A0 (QImode, 7), GEN_INT (0x00));
1626 else
1628 /* Note that the PSI moves actually write 4 bytes. Make sure we
1629 write stuff out in the right order, and leave room for the
1630 extra byte at the end. */
1631 emit_move_insn (A0 (QImode, 0), GEN_INT (0xbc - 0x100));
1632 emit_move_insn (A0 (PSImode, 1), chainval);
1633 emit_move_insn (A0 (QImode, 4), GEN_INT (0xcc - 0x100));
1634 emit_move_insn (A0 (PSImode, 5), function);
1636 #undef A0
1639 #undef TARGET_LRA_P
1640 #define TARGET_LRA_P hook_bool_void_false
1642 /* Addressing Modes */
1644 /* The r8c/m32c family supports a wide range of non-orthogonal
1645 addressing modes, including the ability to double-indirect on *some*
1646 of them. Not all insns support all modes, either, but we rely on
1647 predicates and constraints to deal with that. */
1648 #undef TARGET_LEGITIMATE_ADDRESS_P
1649 #define TARGET_LEGITIMATE_ADDRESS_P m32c_legitimate_address_p
1650 bool
1651 m32c_legitimate_address_p (machine_mode mode, rtx x, bool strict)
1653 int mode_adjust;
1654 if (CONSTANT_P (x))
1655 return 1;
1657 if (TARGET_A16 && GET_MODE (x) != HImode && GET_MODE (x) != SImode)
1658 return 0;
1659 if (TARGET_A24 && GET_MODE (x) != PSImode)
1660 return 0;
1662 /* Wide references to memory will be split after reload, so we must
1663 ensure that all parts of such splits remain legitimate
1664 addresses. */
1665 mode_adjust = GET_MODE_SIZE (mode) - 1;
1667 /* allowing PLUS yields mem:HI(plus:SI(mem:SI(plus:SI in m32c_split_move */
1668 if (GET_CODE (x) == PRE_DEC
1669 || GET_CODE (x) == POST_INC || GET_CODE (x) == PRE_MODIFY)
1671 return (GET_CODE (XEXP (x, 0)) == REG
1672 && REGNO (XEXP (x, 0)) == SP_REGNO);
1675 #if 0
1676 /* This is the double indirection detection, but it currently
1677 doesn't work as cleanly as this code implies, so until we've had
1678 a chance to debug it, leave it disabled. */
1679 if (TARGET_A24 && GET_CODE (x) == MEM && GET_CODE (XEXP (x, 0)) != PLUS)
1681 #if DEBUG_DOUBLE
1682 fprintf (stderr, "double indirect\n");
1683 #endif
1684 x = XEXP (x, 0);
1686 #endif
1688 encode_pattern (x);
1689 if (RTX_IS ("r"))
1691 /* Most indexable registers can be used without displacements,
1692 although some of them will be emitted with an explicit zero
1693 to please the assembler. */
1694 switch (REGNO (patternr[0]))
1696 case A1_REGNO:
1697 case SB_REGNO:
1698 case FB_REGNO:
1699 case SP_REGNO:
1700 if (TARGET_A16 && GET_MODE (x) == SImode)
1701 return 0;
1702 /* FALLTHRU */
1703 case A0_REGNO:
1704 return 1;
1706 default:
1707 if (IS_PSEUDO (patternr[0], strict))
1708 return 1;
1709 return 0;
1713 if (TARGET_A16 && GET_MODE (x) == SImode)
1714 return 0;
1716 if (RTX_IS ("+ri"))
1718 /* This is more interesting, because different base registers
1719 allow for different displacements - both range and signedness
1720 - and it differs from chip series to chip series too. */
1721 int rn = REGNO (patternr[1]);
1722 HOST_WIDE_INT offs = INTVAL (patternr[2]);
1723 switch (rn)
1725 case A0_REGNO:
1726 case A1_REGNO:
1727 case SB_REGNO:
1728 /* The syntax only allows positive offsets, but when the
1729 offsets span the entire memory range, we can simulate
1730 negative offsets by wrapping. */
1731 if (TARGET_A16)
1732 return (offs >= -65536 && offs <= 65535 - mode_adjust);
1733 if (rn == SB_REGNO)
1734 return (offs >= 0 && offs <= 65535 - mode_adjust);
1735 /* A0 or A1 */
1736 return (offs >= -16777216 && offs <= 16777215);
1738 case FB_REGNO:
1739 if (TARGET_A16)
1740 return (offs >= -128 && offs <= 127 - mode_adjust);
1741 return (offs >= -65536 && offs <= 65535 - mode_adjust);
1743 case SP_REGNO:
1744 return (offs >= -128 && offs <= 127 - mode_adjust);
1746 default:
1747 if (IS_PSEUDO (patternr[1], strict))
1748 return 1;
1749 return 0;
1752 if (RTX_IS ("+rs") || RTX_IS ("+r+si"))
1754 rtx reg = patternr[1];
1756 /* We don't know where the symbol is, so only allow base
1757 registers which support displacements spanning the whole
1758 address range. */
1759 switch (REGNO (reg))
1761 case A0_REGNO:
1762 case A1_REGNO:
1763 /* $sb needs a secondary reload, but since it's involved in
1764 memory address reloads too, we don't deal with it very
1765 well. */
1766 /* case SB_REGNO: */
1767 return 1;
1768 default:
1769 if (GET_CODE (reg) == SUBREG)
1770 return 0;
1771 if (IS_PSEUDO (reg, strict))
1772 return 1;
1773 return 0;
1776 return 0;
1779 /* Implements REG_OK_FOR_BASE_P. */
1781 m32c_reg_ok_for_base_p (rtx x, int strict)
1783 if (GET_CODE (x) != REG)
1784 return 0;
1785 switch (REGNO (x))
1787 case A0_REGNO:
1788 case A1_REGNO:
1789 case SB_REGNO:
1790 case FB_REGNO:
1791 case SP_REGNO:
1792 return 1;
1793 default:
1794 if (IS_PSEUDO (x, strict))
1795 return 1;
1796 return 0;
1800 /* We have three choices for choosing fb->aN offsets. If we choose -128,
1801 we need one MOVA -128[fb],aN opcode and 16-bit aN displacements,
1802 like this:
1803 EB 4B FF mova -128[$fb],$a0
1804 D8 0C FF FF mov.w:Q #0,-1[$a0]
1806 Alternately, we subtract the frame size, and hopefully use 8-bit aN
1807 displacements:
1808 7B F4 stc $fb,$a0
1809 77 54 00 01 sub #256,$a0
1810 D8 08 01 mov.w:Q #0,1[$a0]
1812 If we don't offset (i.e. offset by zero), we end up with:
1813 7B F4 stc $fb,$a0
1814 D8 0C 00 FF mov.w:Q #0,-256[$a0]
1816 We have to subtract *something* so that we have a PLUS rtx to mark
1817 that we've done this reload. The -128 offset will never result in
1818 an 8-bit aN offset, and the payoff for the second case is five
1819 loads *if* those loads are within 256 bytes of the other end of the
1820 frame, so the third case seems best. Note that we subtract the
1821 zero, but detect that in the addhi3 pattern. */
1823 #define BIG_FB_ADJ 0
1825 /* Implements LEGITIMIZE_ADDRESS. The only address we really have to
1826 worry about is frame base offsets, as $fb has a limited
1827 displacement range. We deal with this by attempting to reload $fb
1828 itself into an address register; that seems to result in the best
1829 code. */
1830 #undef TARGET_LEGITIMIZE_ADDRESS
1831 #define TARGET_LEGITIMIZE_ADDRESS m32c_legitimize_address
1832 static rtx
1833 m32c_legitimize_address (rtx x, rtx oldx ATTRIBUTE_UNUSED,
1834 machine_mode mode)
1836 #if DEBUG0
1837 fprintf (stderr, "m32c_legitimize_address for mode %s\n", mode_name[mode]);
1838 debug_rtx (x);
1839 fprintf (stderr, "\n");
1840 #endif
1842 if (GET_CODE (x) == PLUS
1843 && GET_CODE (XEXP (x, 0)) == REG
1844 && REGNO (XEXP (x, 0)) == FB_REGNO
1845 && GET_CODE (XEXP (x, 1)) == CONST_INT
1846 && (INTVAL (XEXP (x, 1)) < -128
1847 || INTVAL (XEXP (x, 1)) > (128 - GET_MODE_SIZE (mode))))
1849 /* reload FB to A_REGS */
1850 rtx temp = gen_reg_rtx (Pmode);
1851 x = copy_rtx (x);
1852 emit_insn (gen_rtx_SET (temp, XEXP (x, 0)));
1853 XEXP (x, 0) = temp;
1856 return x;
1859 /* Implements LEGITIMIZE_RELOAD_ADDRESS. See comment above. */
1861 m32c_legitimize_reload_address (rtx * x,
1862 machine_mode mode,
1863 int opnum,
1864 int type, int ind_levels ATTRIBUTE_UNUSED)
1866 #if DEBUG0
1867 fprintf (stderr, "\nm32c_legitimize_reload_address for mode %s\n",
1868 mode_name[mode]);
1869 debug_rtx (*x);
1870 #endif
1872 /* At one point, this function tried to get $fb copied to an address
1873 register, which in theory would maximize sharing, but gcc was
1874 *also* still trying to reload the whole address, and we'd run out
1875 of address registers. So we let gcc do the naive (but safe)
1876 reload instead, when the above function doesn't handle it for
1879 The code below is a second attempt at the above. */
1881 if (GET_CODE (*x) == PLUS
1882 && GET_CODE (XEXP (*x, 0)) == REG
1883 && REGNO (XEXP (*x, 0)) == FB_REGNO
1884 && GET_CODE (XEXP (*x, 1)) == CONST_INT
1885 && (INTVAL (XEXP (*x, 1)) < -128
1886 || INTVAL (XEXP (*x, 1)) > (128 - GET_MODE_SIZE (mode))))
1888 rtx sum;
1889 int offset = INTVAL (XEXP (*x, 1));
1890 int adjustment = -BIG_FB_ADJ;
1892 sum = gen_rtx_PLUS (Pmode, XEXP (*x, 0),
1893 GEN_INT (adjustment));
1894 *x = gen_rtx_PLUS (Pmode, sum, GEN_INT (offset - adjustment));
1895 if (type == RELOAD_OTHER)
1896 type = RELOAD_FOR_OTHER_ADDRESS;
1897 push_reload (sum, NULL_RTX, &XEXP (*x, 0), NULL,
1898 A_REGS, Pmode, VOIDmode, 0, 0, opnum,
1899 (enum reload_type) type);
1900 return 1;
1903 if (GET_CODE (*x) == PLUS
1904 && GET_CODE (XEXP (*x, 0)) == PLUS
1905 && GET_CODE (XEXP (XEXP (*x, 0), 0)) == REG
1906 && REGNO (XEXP (XEXP (*x, 0), 0)) == FB_REGNO
1907 && GET_CODE (XEXP (XEXP (*x, 0), 1)) == CONST_INT
1908 && GET_CODE (XEXP (*x, 1)) == CONST_INT
1911 if (type == RELOAD_OTHER)
1912 type = RELOAD_FOR_OTHER_ADDRESS;
1913 push_reload (XEXP (*x, 0), NULL_RTX, &XEXP (*x, 0), NULL,
1914 A_REGS, Pmode, VOIDmode, 0, 0, opnum,
1915 (enum reload_type) type);
1916 return 1;
1919 if (TARGET_A24 && GET_MODE (*x) == PSImode)
1921 push_reload (*x, NULL_RTX, x, NULL,
1922 A_REGS, PSImode, VOIDmode, 0, 0, opnum,
1923 (enum reload_type) type);
1924 return 1;
1927 return 0;
1930 /* Return the appropriate mode for a named address pointer. */
1931 #undef TARGET_ADDR_SPACE_POINTER_MODE
1932 #define TARGET_ADDR_SPACE_POINTER_MODE m32c_addr_space_pointer_mode
1933 static machine_mode
1934 m32c_addr_space_pointer_mode (addr_space_t addrspace)
1936 switch (addrspace)
1938 case ADDR_SPACE_GENERIC:
1939 return TARGET_A24 ? PSImode : HImode;
1940 case ADDR_SPACE_FAR:
1941 return SImode;
1942 default:
1943 gcc_unreachable ();
1947 /* Return the appropriate mode for a named address address. */
1948 #undef TARGET_ADDR_SPACE_ADDRESS_MODE
1949 #define TARGET_ADDR_SPACE_ADDRESS_MODE m32c_addr_space_address_mode
1950 static machine_mode
1951 m32c_addr_space_address_mode (addr_space_t addrspace)
1953 switch (addrspace)
1955 case ADDR_SPACE_GENERIC:
1956 return TARGET_A24 ? PSImode : HImode;
1957 case ADDR_SPACE_FAR:
1958 return SImode;
1959 default:
1960 gcc_unreachable ();
1964 /* Like m32c_legitimate_address_p, except with named addresses. */
1965 #undef TARGET_ADDR_SPACE_LEGITIMATE_ADDRESS_P
1966 #define TARGET_ADDR_SPACE_LEGITIMATE_ADDRESS_P \
1967 m32c_addr_space_legitimate_address_p
1968 static bool
1969 m32c_addr_space_legitimate_address_p (machine_mode mode, rtx x,
1970 bool strict, addr_space_t as)
1972 if (as == ADDR_SPACE_FAR)
1974 if (TARGET_A24)
1975 return 0;
1976 encode_pattern (x);
1977 if (RTX_IS ("r"))
1979 if (GET_MODE (x) != SImode)
1980 return 0;
1981 switch (REGNO (patternr[0]))
1983 case A0_REGNO:
1984 return 1;
1986 default:
1987 if (IS_PSEUDO (patternr[0], strict))
1988 return 1;
1989 return 0;
1992 if (RTX_IS ("+^Sri"))
1994 int rn = REGNO (patternr[3]);
1995 HOST_WIDE_INT offs = INTVAL (patternr[4]);
1996 if (GET_MODE (patternr[3]) != HImode)
1997 return 0;
1998 switch (rn)
2000 case A0_REGNO:
2001 return (offs >= 0 && offs <= 0xfffff);
2003 default:
2004 if (IS_PSEUDO (patternr[3], strict))
2005 return 1;
2006 return 0;
2009 if (RTX_IS ("+^Srs"))
2011 int rn = REGNO (patternr[3]);
2012 if (GET_MODE (patternr[3]) != HImode)
2013 return 0;
2014 switch (rn)
2016 case A0_REGNO:
2017 return 1;
2019 default:
2020 if (IS_PSEUDO (patternr[3], strict))
2021 return 1;
2022 return 0;
2025 if (RTX_IS ("+^S+ris"))
2027 int rn = REGNO (patternr[4]);
2028 if (GET_MODE (patternr[4]) != HImode)
2029 return 0;
2030 switch (rn)
2032 case A0_REGNO:
2033 return 1;
2035 default:
2036 if (IS_PSEUDO (patternr[4], strict))
2037 return 1;
2038 return 0;
2041 if (RTX_IS ("s"))
2043 return 1;
2045 return 0;
2048 else if (as != ADDR_SPACE_GENERIC)
2049 gcc_unreachable ();
2051 return m32c_legitimate_address_p (mode, x, strict);
2054 /* Like m32c_legitimate_address, except with named address support. */
2055 #undef TARGET_ADDR_SPACE_LEGITIMIZE_ADDRESS
2056 #define TARGET_ADDR_SPACE_LEGITIMIZE_ADDRESS m32c_addr_space_legitimize_address
2057 static rtx
2058 m32c_addr_space_legitimize_address (rtx x, rtx oldx, machine_mode mode,
2059 addr_space_t as)
2061 if (as != ADDR_SPACE_GENERIC)
2063 #if DEBUG0
2064 fprintf (stderr, "\033[36mm32c_addr_space_legitimize_address for mode %s\033[0m\n", mode_name[mode]);
2065 debug_rtx (x);
2066 fprintf (stderr, "\n");
2067 #endif
2069 if (GET_CODE (x) != REG)
2071 x = force_reg (SImode, x);
2073 return x;
2076 return m32c_legitimize_address (x, oldx, mode);
2079 /* Determine if one named address space is a subset of another. */
2080 #undef TARGET_ADDR_SPACE_SUBSET_P
2081 #define TARGET_ADDR_SPACE_SUBSET_P m32c_addr_space_subset_p
2082 static bool
2083 m32c_addr_space_subset_p (addr_space_t subset, addr_space_t superset)
2085 gcc_assert (subset == ADDR_SPACE_GENERIC || subset == ADDR_SPACE_FAR);
2086 gcc_assert (superset == ADDR_SPACE_GENERIC || superset == ADDR_SPACE_FAR);
2088 if (subset == superset)
2089 return true;
2091 else
2092 return (subset == ADDR_SPACE_GENERIC && superset == ADDR_SPACE_FAR);
2095 #undef TARGET_ADDR_SPACE_CONVERT
2096 #define TARGET_ADDR_SPACE_CONVERT m32c_addr_space_convert
2097 /* Convert from one address space to another. */
2098 static rtx
2099 m32c_addr_space_convert (rtx op, tree from_type, tree to_type)
2101 addr_space_t from_as = TYPE_ADDR_SPACE (TREE_TYPE (from_type));
2102 addr_space_t to_as = TYPE_ADDR_SPACE (TREE_TYPE (to_type));
2103 rtx result;
2105 gcc_assert (from_as == ADDR_SPACE_GENERIC || from_as == ADDR_SPACE_FAR);
2106 gcc_assert (to_as == ADDR_SPACE_GENERIC || to_as == ADDR_SPACE_FAR);
2108 if (to_as == ADDR_SPACE_GENERIC && from_as == ADDR_SPACE_FAR)
2110 /* This is unpredictable, as we're truncating off usable address
2111 bits. */
2113 result = gen_reg_rtx (HImode);
2114 emit_move_insn (result, simplify_subreg (HImode, op, SImode, 0));
2115 return result;
2117 else if (to_as == ADDR_SPACE_FAR && from_as == ADDR_SPACE_GENERIC)
2119 /* This always works. */
2120 result = gen_reg_rtx (SImode);
2121 emit_insn (gen_zero_extendhisi2 (result, op));
2122 return result;
2124 else
2125 gcc_unreachable ();
2128 /* Condition Code Status */
2130 #undef TARGET_FIXED_CONDITION_CODE_REGS
2131 #define TARGET_FIXED_CONDITION_CODE_REGS m32c_fixed_condition_code_regs
2132 static bool
2133 m32c_fixed_condition_code_regs (unsigned int *p1, unsigned int *p2)
2135 *p1 = FLG_REGNO;
2136 *p2 = INVALID_REGNUM;
2137 return true;
2140 /* Describing Relative Costs of Operations */
2142 /* Implements TARGET_REGISTER_MOVE_COST. We make impossible moves
2143 prohibitively expensive, like trying to put QIs in r2/r3 (there are
2144 no opcodes to do that). We also discourage use of mem* registers
2145 since they're really memory. */
2147 #undef TARGET_REGISTER_MOVE_COST
2148 #define TARGET_REGISTER_MOVE_COST m32c_register_move_cost
2150 static int
2151 m32c_register_move_cost (machine_mode mode, reg_class_t from,
2152 reg_class_t to)
2154 int cost = COSTS_N_INSNS (3);
2155 HARD_REG_SET cc;
2157 /* FIXME: pick real values, but not 2 for now. */
2158 COPY_HARD_REG_SET (cc, reg_class_contents[(int) from]);
2159 IOR_HARD_REG_SET (cc, reg_class_contents[(int) to]);
2161 if (mode == QImode
2162 && hard_reg_set_intersect_p (cc, reg_class_contents[R23_REGS]))
2164 if (hard_reg_set_subset_p (cc, reg_class_contents[R23_REGS]))
2165 cost = COSTS_N_INSNS (1000);
2166 else
2167 cost = COSTS_N_INSNS (80);
2170 if (!class_can_hold_mode (from, mode) || !class_can_hold_mode (to, mode))
2171 cost = COSTS_N_INSNS (1000);
2173 if (reg_classes_intersect_p (from, CR_REGS))
2174 cost += COSTS_N_INSNS (5);
2176 if (reg_classes_intersect_p (to, CR_REGS))
2177 cost += COSTS_N_INSNS (5);
2179 if (from == MEM_REGS || to == MEM_REGS)
2180 cost += COSTS_N_INSNS (50);
2181 else if (reg_classes_intersect_p (from, MEM_REGS)
2182 || reg_classes_intersect_p (to, MEM_REGS))
2183 cost += COSTS_N_INSNS (10);
2185 #if DEBUG0
2186 fprintf (stderr, "register_move_cost %s from %s to %s = %d\n",
2187 mode_name[mode], class_names[(int) from], class_names[(int) to],
2188 cost);
2189 #endif
2190 return cost;
2193 /* Implements TARGET_MEMORY_MOVE_COST. */
2195 #undef TARGET_MEMORY_MOVE_COST
2196 #define TARGET_MEMORY_MOVE_COST m32c_memory_move_cost
2198 static int
2199 m32c_memory_move_cost (machine_mode mode ATTRIBUTE_UNUSED,
2200 reg_class_t rclass ATTRIBUTE_UNUSED,
2201 bool in ATTRIBUTE_UNUSED)
2203 /* FIXME: pick real values. */
2204 return COSTS_N_INSNS (10);
2207 /* Here we try to describe when we use multiple opcodes for one RTX so
2208 that gcc knows when to use them. */
2209 #undef TARGET_RTX_COSTS
2210 #define TARGET_RTX_COSTS m32c_rtx_costs
2211 static bool
2212 m32c_rtx_costs (rtx x, machine_mode mode, int outer_code,
2213 int opno ATTRIBUTE_UNUSED,
2214 int *total, bool speed ATTRIBUTE_UNUSED)
2216 int code = GET_CODE (x);
2217 switch (code)
2219 case REG:
2220 if (REGNO (x) >= MEM0_REGNO && REGNO (x) <= MEM7_REGNO)
2221 *total += COSTS_N_INSNS (500);
2222 else
2223 *total += COSTS_N_INSNS (1);
2224 return true;
2226 case ASHIFT:
2227 case LSHIFTRT:
2228 case ASHIFTRT:
2229 if (GET_CODE (XEXP (x, 1)) != CONST_INT)
2231 /* mov.b r1l, r1h */
2232 *total += COSTS_N_INSNS (1);
2233 return true;
2235 if (INTVAL (XEXP (x, 1)) > 8
2236 || INTVAL (XEXP (x, 1)) < -8)
2238 /* mov.b #N, r1l */
2239 /* mov.b r1l, r1h */
2240 *total += COSTS_N_INSNS (2);
2241 return true;
2243 return true;
2245 case LE:
2246 case LEU:
2247 case LT:
2248 case LTU:
2249 case GT:
2250 case GTU:
2251 case GE:
2252 case GEU:
2253 case NE:
2254 case EQ:
2255 if (outer_code == SET)
2257 *total += COSTS_N_INSNS (2);
2258 return true;
2260 break;
2262 case ZERO_EXTRACT:
2264 rtx dest = XEXP (x, 0);
2265 rtx addr = XEXP (dest, 0);
2266 switch (GET_CODE (addr))
2268 case CONST_INT:
2269 *total += COSTS_N_INSNS (1);
2270 break;
2271 case SYMBOL_REF:
2272 *total += COSTS_N_INSNS (3);
2273 break;
2274 default:
2275 *total += COSTS_N_INSNS (2);
2276 break;
2278 return true;
2280 break;
2282 default:
2283 /* Reasonable default. */
2284 if (TARGET_A16 && mode == SImode)
2285 *total += COSTS_N_INSNS (2);
2286 break;
2288 return false;
2291 #undef TARGET_ADDRESS_COST
2292 #define TARGET_ADDRESS_COST m32c_address_cost
2293 static int
2294 m32c_address_cost (rtx addr, machine_mode mode ATTRIBUTE_UNUSED,
2295 addr_space_t as ATTRIBUTE_UNUSED,
2296 bool speed ATTRIBUTE_UNUSED)
2298 int i;
2299 /* fprintf(stderr, "\naddress_cost\n");
2300 debug_rtx(addr);*/
2301 switch (GET_CODE (addr))
2303 case CONST_INT:
2304 i = INTVAL (addr);
2305 if (i == 0)
2306 return COSTS_N_INSNS(1);
2307 if (0 < i && i <= 255)
2308 return COSTS_N_INSNS(2);
2309 if (0 < i && i <= 65535)
2310 return COSTS_N_INSNS(3);
2311 return COSTS_N_INSNS(4);
2312 case SYMBOL_REF:
2313 return COSTS_N_INSNS(4);
2314 case REG:
2315 return COSTS_N_INSNS(1);
2316 case PLUS:
2317 if (GET_CODE (XEXP (addr, 1)) == CONST_INT)
2319 i = INTVAL (XEXP (addr, 1));
2320 if (i == 0)
2321 return COSTS_N_INSNS(1);
2322 if (0 < i && i <= 255)
2323 return COSTS_N_INSNS(2);
2324 if (0 < i && i <= 65535)
2325 return COSTS_N_INSNS(3);
2327 return COSTS_N_INSNS(4);
2328 default:
2329 return 0;
2333 /* Defining the Output Assembler Language */
2335 /* Output of Data */
2337 /* We may have 24 bit sizes, which is the native address size.
2338 Currently unused, but provided for completeness. */
2339 #undef TARGET_ASM_INTEGER
2340 #define TARGET_ASM_INTEGER m32c_asm_integer
2341 static bool
2342 m32c_asm_integer (rtx x, unsigned int size, int aligned_p)
2344 switch (size)
2346 case 3:
2347 fprintf (asm_out_file, "\t.3byte\t");
2348 output_addr_const (asm_out_file, x);
2349 fputc ('\n', asm_out_file);
2350 return true;
2351 case 4:
2352 if (GET_CODE (x) == SYMBOL_REF)
2354 fprintf (asm_out_file, "\t.long\t");
2355 output_addr_const (asm_out_file, x);
2356 fputc ('\n', asm_out_file);
2357 return true;
2359 break;
2361 return default_assemble_integer (x, size, aligned_p);
2364 /* Output of Assembler Instructions */
2366 /* We use a lookup table because the addressing modes are non-orthogonal. */
2368 static struct
2370 char code;
2371 char const *pattern;
2372 char const *format;
2374 const conversions[] = {
2375 { 0, "r", "0" },
2377 { 0, "mr", "z[1]" },
2378 { 0, "m+ri", "3[2]" },
2379 { 0, "m+rs", "3[2]" },
2380 { 0, "m+^Zrs", "5[4]" },
2381 { 0, "m+^Zri", "5[4]" },
2382 { 0, "m+^Z+ris", "7+6[5]" },
2383 { 0, "m+^Srs", "5[4]" },
2384 { 0, "m+^Sri", "5[4]" },
2385 { 0, "m+^S+ris", "7+6[5]" },
2386 { 0, "m+r+si", "4+5[2]" },
2387 { 0, "ms", "1" },
2388 { 0, "mi", "1" },
2389 { 0, "m+si", "2+3" },
2391 { 0, "mmr", "[z[2]]" },
2392 { 0, "mm+ri", "[4[3]]" },
2393 { 0, "mm+rs", "[4[3]]" },
2394 { 0, "mm+r+si", "[5+6[3]]" },
2395 { 0, "mms", "[[2]]" },
2396 { 0, "mmi", "[[2]]" },
2397 { 0, "mm+si", "[4[3]]" },
2399 { 0, "i", "#0" },
2400 { 0, "s", "#0" },
2401 { 0, "+si", "#1+2" },
2402 { 0, "l", "#0" },
2404 { 'l', "l", "0" },
2405 { 'd', "i", "0" },
2406 { 'd', "s", "0" },
2407 { 'd', "+si", "1+2" },
2408 { 'D', "i", "0" },
2409 { 'D', "s", "0" },
2410 { 'D', "+si", "1+2" },
2411 { 'x', "i", "#0" },
2412 { 'X', "i", "#0" },
2413 { 'm', "i", "#0" },
2414 { 'b', "i", "#0" },
2415 { 'B', "i", "0" },
2416 { 'p', "i", "0" },
2418 { 0, 0, 0 }
2421 /* This is in order according to the bitfield that pushm/popm use. */
2422 static char const *pushm_regs[] = {
2423 "fb", "sb", "a1", "a0", "r3", "r2", "r1", "r0"
2426 /* Implements TARGET_PRINT_OPERAND. */
2428 #undef TARGET_PRINT_OPERAND
2429 #define TARGET_PRINT_OPERAND m32c_print_operand
2431 static void
2432 m32c_print_operand (FILE * file, rtx x, int code)
2434 int i, j, b;
2435 const char *comma;
2436 HOST_WIDE_INT ival;
2437 int unsigned_const = 0;
2438 int force_sign;
2440 /* Multiplies; constants are converted to sign-extended format but
2441 we need unsigned, so 'u' and 'U' tell us what size unsigned we
2442 need. */
2443 if (code == 'u')
2445 unsigned_const = 2;
2446 code = 0;
2448 if (code == 'U')
2450 unsigned_const = 1;
2451 code = 0;
2453 /* This one is only for debugging; you can put it in a pattern to
2454 force this error. */
2455 if (code == '!')
2457 fprintf (stderr, "dj: unreviewed pattern:");
2458 if (current_output_insn)
2459 debug_rtx (current_output_insn);
2460 gcc_unreachable ();
2462 /* PSImode operations are either .w or .l depending on the target. */
2463 if (code == '&')
2465 if (TARGET_A16)
2466 fprintf (file, "w");
2467 else
2468 fprintf (file, "l");
2469 return;
2471 /* Inverted conditionals. */
2472 if (code == 'C')
2474 switch (GET_CODE (x))
2476 case LE:
2477 fputs ("gt", file);
2478 break;
2479 case LEU:
2480 fputs ("gtu", file);
2481 break;
2482 case LT:
2483 fputs ("ge", file);
2484 break;
2485 case LTU:
2486 fputs ("geu", file);
2487 break;
2488 case GT:
2489 fputs ("le", file);
2490 break;
2491 case GTU:
2492 fputs ("leu", file);
2493 break;
2494 case GE:
2495 fputs ("lt", file);
2496 break;
2497 case GEU:
2498 fputs ("ltu", file);
2499 break;
2500 case NE:
2501 fputs ("eq", file);
2502 break;
2503 case EQ:
2504 fputs ("ne", file);
2505 break;
2506 default:
2507 gcc_unreachable ();
2509 return;
2511 /* Regular conditionals. */
2512 if (code == 'c')
2514 switch (GET_CODE (x))
2516 case LE:
2517 fputs ("le", file);
2518 break;
2519 case LEU:
2520 fputs ("leu", file);
2521 break;
2522 case LT:
2523 fputs ("lt", file);
2524 break;
2525 case LTU:
2526 fputs ("ltu", file);
2527 break;
2528 case GT:
2529 fputs ("gt", file);
2530 break;
2531 case GTU:
2532 fputs ("gtu", file);
2533 break;
2534 case GE:
2535 fputs ("ge", file);
2536 break;
2537 case GEU:
2538 fputs ("geu", file);
2539 break;
2540 case NE:
2541 fputs ("ne", file);
2542 break;
2543 case EQ:
2544 fputs ("eq", file);
2545 break;
2546 default:
2547 gcc_unreachable ();
2549 return;
2551 /* Used in negsi2 to do HImode ops on the two parts of an SImode
2552 operand. */
2553 if (code == 'h' && GET_MODE (x) == SImode)
2555 x = m32c_subreg (HImode, x, SImode, 0);
2556 code = 0;
2558 if (code == 'H' && GET_MODE (x) == SImode)
2560 x = m32c_subreg (HImode, x, SImode, 2);
2561 code = 0;
2563 if (code == 'h' && GET_MODE (x) == HImode)
2565 x = m32c_subreg (QImode, x, HImode, 0);
2566 code = 0;
2568 if (code == 'H' && GET_MODE (x) == HImode)
2570 /* We can't actually represent this as an rtx. Do it here. */
2571 if (GET_CODE (x) == REG)
2573 switch (REGNO (x))
2575 case R0_REGNO:
2576 fputs ("r0h", file);
2577 return;
2578 case R1_REGNO:
2579 fputs ("r1h", file);
2580 return;
2581 default:
2582 gcc_unreachable();
2585 /* This should be a MEM. */
2586 x = m32c_subreg (QImode, x, HImode, 1);
2587 code = 0;
2589 /* This is for BMcond, which always wants word register names. */
2590 if (code == 'h' && GET_MODE (x) == QImode)
2592 if (GET_CODE (x) == REG)
2593 x = gen_rtx_REG (HImode, REGNO (x));
2594 code = 0;
2596 /* 'x' and 'X' need to be ignored for non-immediates. */
2597 if ((code == 'x' || code == 'X') && GET_CODE (x) != CONST_INT)
2598 code = 0;
2600 encode_pattern (x);
2601 force_sign = 0;
2602 for (i = 0; conversions[i].pattern; i++)
2603 if (conversions[i].code == code
2604 && streq (conversions[i].pattern, pattern))
2606 for (j = 0; conversions[i].format[j]; j++)
2607 /* backslash quotes the next character in the output pattern. */
2608 if (conversions[i].format[j] == '\\')
2610 fputc (conversions[i].format[j + 1], file);
2611 j++;
2613 /* Digits in the output pattern indicate that the
2614 corresponding RTX is to be output at that point. */
2615 else if (ISDIGIT (conversions[i].format[j]))
2617 rtx r = patternr[conversions[i].format[j] - '0'];
2618 switch (GET_CODE (r))
2620 case REG:
2621 fprintf (file, "%s",
2622 reg_name_with_mode (REGNO (r), GET_MODE (r)));
2623 break;
2624 case CONST_INT:
2625 switch (code)
2627 case 'b':
2628 case 'B':
2630 int v = INTVAL (r);
2631 int i = (int) exact_log2 (v);
2632 if (i == -1)
2633 i = (int) exact_log2 ((v ^ 0xffff) & 0xffff);
2634 if (i == -1)
2635 i = (int) exact_log2 ((v ^ 0xff) & 0xff);
2636 /* Bit position. */
2637 fprintf (file, "%d", i);
2639 break;
2640 case 'x':
2641 /* Unsigned byte. */
2642 fprintf (file, HOST_WIDE_INT_PRINT_HEX,
2643 INTVAL (r) & 0xff);
2644 break;
2645 case 'X':
2646 /* Unsigned word. */
2647 fprintf (file, HOST_WIDE_INT_PRINT_HEX,
2648 INTVAL (r) & 0xffff);
2649 break;
2650 case 'p':
2651 /* pushm and popm encode a register set into a single byte. */
2652 comma = "";
2653 for (b = 7; b >= 0; b--)
2654 if (INTVAL (r) & (1 << b))
2656 fprintf (file, "%s%s", comma, pushm_regs[b]);
2657 comma = ",";
2659 break;
2660 case 'm':
2661 /* "Minus". Output -X */
2662 ival = (-INTVAL (r) & 0xffff);
2663 if (ival & 0x8000)
2664 ival = ival - 0x10000;
2665 fprintf (file, HOST_WIDE_INT_PRINT_DEC, ival);
2666 break;
2667 default:
2668 ival = INTVAL (r);
2669 if (conversions[i].format[j + 1] == '[' && ival < 0)
2671 /* We can simulate negative displacements by
2672 taking advantage of address space
2673 wrapping when the offset can span the
2674 entire address range. */
2675 rtx base =
2676 patternr[conversions[i].format[j + 2] - '0'];
2677 if (GET_CODE (base) == REG)
2678 switch (REGNO (base))
2680 case A0_REGNO:
2681 case A1_REGNO:
2682 if (TARGET_A24)
2683 ival = 0x1000000 + ival;
2684 else
2685 ival = 0x10000 + ival;
2686 break;
2687 case SB_REGNO:
2688 if (TARGET_A16)
2689 ival = 0x10000 + ival;
2690 break;
2693 else if (code == 'd' && ival < 0 && j == 0)
2694 /* The "mova" opcode is used to do addition by
2695 computing displacements, but again, we need
2696 displacements to be unsigned *if* they're
2697 the only component of the displacement
2698 (i.e. no "symbol-4" type displacement). */
2699 ival = (TARGET_A24 ? 0x1000000 : 0x10000) + ival;
2701 if (conversions[i].format[j] == '0')
2703 /* More conversions to unsigned. */
2704 if (unsigned_const == 2)
2705 ival &= 0xffff;
2706 if (unsigned_const == 1)
2707 ival &= 0xff;
2709 if (streq (conversions[i].pattern, "mi")
2710 || streq (conversions[i].pattern, "mmi"))
2712 /* Integers used as addresses are unsigned. */
2713 ival &= (TARGET_A24 ? 0xffffff : 0xffff);
2715 if (force_sign && ival >= 0)
2716 fputc ('+', file);
2717 fprintf (file, HOST_WIDE_INT_PRINT_DEC, ival);
2718 break;
2720 break;
2721 case CONST_DOUBLE:
2722 /* We don't have const_double constants. If it
2723 happens, make it obvious. */
2724 fprintf (file, "[const_double 0x%lx]",
2725 (unsigned long) CONST_DOUBLE_HIGH (r));
2726 break;
2727 case SYMBOL_REF:
2728 assemble_name (file, XSTR (r, 0));
2729 break;
2730 case LABEL_REF:
2731 output_asm_label (r);
2732 break;
2733 default:
2734 fprintf (stderr, "don't know how to print this operand:");
2735 debug_rtx (r);
2736 gcc_unreachable ();
2739 else
2741 if (conversions[i].format[j] == 'z')
2743 /* Some addressing modes *must* have a displacement,
2744 so insert a zero here if needed. */
2745 int k;
2746 for (k = j + 1; conversions[i].format[k]; k++)
2747 if (ISDIGIT (conversions[i].format[k]))
2749 rtx reg = patternr[conversions[i].format[k] - '0'];
2750 if (GET_CODE (reg) == REG
2751 && (REGNO (reg) == SB_REGNO
2752 || REGNO (reg) == FB_REGNO
2753 || REGNO (reg) == SP_REGNO))
2754 fputc ('0', file);
2756 continue;
2758 /* Signed displacements off symbols need to have signs
2759 blended cleanly. */
2760 if (conversions[i].format[j] == '+'
2761 && (!code || code == 'D' || code == 'd')
2762 && ISDIGIT (conversions[i].format[j + 1])
2763 && (GET_CODE (patternr[conversions[i].format[j + 1] - '0'])
2764 == CONST_INT))
2766 force_sign = 1;
2767 continue;
2769 fputc (conversions[i].format[j], file);
2771 break;
2773 if (!conversions[i].pattern)
2775 fprintf (stderr, "unconvertible operand %c `%s'", code ? code : '-',
2776 pattern);
2777 debug_rtx (x);
2778 fprintf (file, "[%c.%s]", code ? code : '-', pattern);
2781 return;
2784 /* Implements TARGET_PRINT_OPERAND_PUNCT_VALID_P.
2786 See m32c_print_operand above for descriptions of what these do. */
2788 #undef TARGET_PRINT_OPERAND_PUNCT_VALID_P
2789 #define TARGET_PRINT_OPERAND_PUNCT_VALID_P m32c_print_operand_punct_valid_p
2791 static bool
2792 m32c_print_operand_punct_valid_p (unsigned char c)
2794 if (c == '&' || c == '!')
2795 return true;
2797 return false;
2800 /* Implements TARGET_PRINT_OPERAND_ADDRESS. Nothing unusual here. */
2802 #undef TARGET_PRINT_OPERAND_ADDRESS
2803 #define TARGET_PRINT_OPERAND_ADDRESS m32c_print_operand_address
2805 static void
2806 m32c_print_operand_address (FILE * stream, machine_mode /*mode*/, rtx address)
2808 if (GET_CODE (address) == MEM)
2809 address = XEXP (address, 0);
2810 else
2811 /* cf: gcc.dg/asm-4.c. */
2812 gcc_assert (GET_CODE (address) == REG);
2814 m32c_print_operand (stream, address, 0);
2817 /* Implements ASM_OUTPUT_REG_PUSH. Control registers are pushed
2818 differently than general registers. */
2819 void
2820 m32c_output_reg_push (FILE * s, int regno)
2822 if (regno == FLG_REGNO)
2823 fprintf (s, "\tpushc\tflg\n");
2824 else
2825 fprintf (s, "\tpush.%c\t%s\n",
2826 " bwll"[reg_push_size (regno)], reg_names[regno]);
2829 /* Likewise for ASM_OUTPUT_REG_POP. */
2830 void
2831 m32c_output_reg_pop (FILE * s, int regno)
2833 if (regno == FLG_REGNO)
2834 fprintf (s, "\tpopc\tflg\n");
2835 else
2836 fprintf (s, "\tpop.%c\t%s\n",
2837 " bwll"[reg_push_size (regno)], reg_names[regno]);
2840 /* Defining target-specific uses of `__attribute__' */
2842 /* Used to simplify the logic below. Find the attributes wherever
2843 they may be. */
2844 #define M32C_ATTRIBUTES(decl) \
2845 (TYPE_P (decl)) ? TYPE_ATTRIBUTES (decl) \
2846 : DECL_ATTRIBUTES (decl) \
2847 ? (DECL_ATTRIBUTES (decl)) \
2848 : TYPE_ATTRIBUTES (TREE_TYPE (decl))
2850 /* Returns TRUE if the given tree has the "interrupt" attribute. */
2851 static int
2852 interrupt_p (tree node ATTRIBUTE_UNUSED)
2854 tree list = M32C_ATTRIBUTES (node);
2855 while (list)
2857 if (is_attribute_p ("interrupt", TREE_PURPOSE (list)))
2858 return 1;
2859 list = TREE_CHAIN (list);
2861 return fast_interrupt_p (node);
2864 /* Returns TRUE if the given tree has the "bank_switch" attribute. */
2865 static int
2866 bank_switch_p (tree node ATTRIBUTE_UNUSED)
2868 tree list = M32C_ATTRIBUTES (node);
2869 while (list)
2871 if (is_attribute_p ("bank_switch", TREE_PURPOSE (list)))
2872 return 1;
2873 list = TREE_CHAIN (list);
2875 return 0;
2878 /* Returns TRUE if the given tree has the "fast_interrupt" attribute. */
2879 static int
2880 fast_interrupt_p (tree node ATTRIBUTE_UNUSED)
2882 tree list = M32C_ATTRIBUTES (node);
2883 while (list)
2885 if (is_attribute_p ("fast_interrupt", TREE_PURPOSE (list)))
2886 return 1;
2887 list = TREE_CHAIN (list);
2889 return 0;
2892 static tree
2893 interrupt_handler (tree * node ATTRIBUTE_UNUSED,
2894 tree name ATTRIBUTE_UNUSED,
2895 tree args ATTRIBUTE_UNUSED,
2896 int flags ATTRIBUTE_UNUSED,
2897 bool * no_add_attrs ATTRIBUTE_UNUSED)
2899 return NULL_TREE;
2902 /* Returns TRUE if given tree has the "function_vector" attribute. */
2904 m32c_special_page_vector_p (tree func)
2906 tree list;
2908 if (TREE_CODE (func) != FUNCTION_DECL)
2909 return 0;
2911 list = M32C_ATTRIBUTES (func);
2912 while (list)
2914 if (is_attribute_p ("function_vector", TREE_PURPOSE (list)))
2915 return 1;
2916 list = TREE_CHAIN (list);
2918 return 0;
2921 static tree
2922 function_vector_handler (tree * node ATTRIBUTE_UNUSED,
2923 tree name ATTRIBUTE_UNUSED,
2924 tree args ATTRIBUTE_UNUSED,
2925 int flags ATTRIBUTE_UNUSED,
2926 bool * no_add_attrs ATTRIBUTE_UNUSED)
2928 if (TARGET_R8C)
2930 /* The attribute is not supported for R8C target. */
2931 warning (OPT_Wattributes,
2932 "%qE attribute is not supported for R8C target",
2933 name);
2934 *no_add_attrs = true;
2936 else if (TREE_CODE (*node) != FUNCTION_DECL)
2938 /* The attribute must be applied to functions only. */
2939 warning (OPT_Wattributes,
2940 "%qE attribute applies only to functions",
2941 name);
2942 *no_add_attrs = true;
2944 else if (TREE_CODE (TREE_VALUE (args)) != INTEGER_CST)
2946 /* The argument must be a constant integer. */
2947 warning (OPT_Wattributes,
2948 "%qE attribute argument not an integer constant",
2949 name);
2950 *no_add_attrs = true;
2952 else if (TREE_INT_CST_LOW (TREE_VALUE (args)) < 18
2953 || TREE_INT_CST_LOW (TREE_VALUE (args)) > 255)
2955 /* The argument value must be between 18 to 255. */
2956 warning (OPT_Wattributes,
2957 "%qE attribute argument should be between 18 to 255",
2958 name);
2959 *no_add_attrs = true;
2961 return NULL_TREE;
2964 /* If the function is assigned the attribute 'function_vector', it
2965 returns the function vector number, otherwise returns zero. */
2967 current_function_special_page_vector (rtx x)
2969 int num;
2971 if ((GET_CODE(x) == SYMBOL_REF)
2972 && (SYMBOL_REF_FLAGS (x) & SYMBOL_FLAG_FUNCVEC_FUNCTION))
2974 tree list;
2975 tree t = SYMBOL_REF_DECL (x);
2977 if (TREE_CODE (t) != FUNCTION_DECL)
2978 return 0;
2980 list = M32C_ATTRIBUTES (t);
2981 while (list)
2983 if (is_attribute_p ("function_vector", TREE_PURPOSE (list)))
2985 num = TREE_INT_CST_LOW (TREE_VALUE (TREE_VALUE (list)));
2986 return num;
2989 list = TREE_CHAIN (list);
2992 return 0;
2994 else
2995 return 0;
2998 #undef TARGET_ATTRIBUTE_TABLE
2999 #define TARGET_ATTRIBUTE_TABLE m32c_attribute_table
3000 static const struct attribute_spec m32c_attribute_table[] = {
3001 {"interrupt", 0, 0, false, false, false, interrupt_handler, false},
3002 {"bank_switch", 0, 0, false, false, false, interrupt_handler, false},
3003 {"fast_interrupt", 0, 0, false, false, false, interrupt_handler, false},
3004 {"function_vector", 1, 1, true, false, false, function_vector_handler,
3005 false},
3006 {0, 0, 0, 0, 0, 0, 0, false}
3009 #undef TARGET_COMP_TYPE_ATTRIBUTES
3010 #define TARGET_COMP_TYPE_ATTRIBUTES m32c_comp_type_attributes
3011 static int
3012 m32c_comp_type_attributes (const_tree type1 ATTRIBUTE_UNUSED,
3013 const_tree type2 ATTRIBUTE_UNUSED)
3015 /* 0=incompatible 1=compatible 2=warning */
3016 return 1;
3019 #undef TARGET_INSERT_ATTRIBUTES
3020 #define TARGET_INSERT_ATTRIBUTES m32c_insert_attributes
3021 static void
3022 m32c_insert_attributes (tree node ATTRIBUTE_UNUSED,
3023 tree * attr_ptr ATTRIBUTE_UNUSED)
3025 unsigned addr;
3026 /* See if we need to make #pragma address variables volatile. */
3028 if (TREE_CODE (node) == VAR_DECL)
3030 const char *name = IDENTIFIER_POINTER (DECL_NAME (node));
3031 if (m32c_get_pragma_address (name, &addr))
3033 TREE_THIS_VOLATILE (node) = true;
3038 /* Hash table of pragma info. */
3039 static GTY(()) hash_map<nofree_string_hash, unsigned> *pragma_htab;
3041 void
3042 m32c_note_pragma_address (const char *varname, unsigned address)
3044 if (!pragma_htab)
3045 pragma_htab = hash_map<nofree_string_hash, unsigned>::create_ggc (31);
3047 const char *name = ggc_strdup (varname);
3048 unsigned int *slot = &pragma_htab->get_or_insert (name);
3049 *slot = address;
3052 static bool
3053 m32c_get_pragma_address (const char *varname, unsigned *address)
3055 if (!pragma_htab)
3056 return false;
3058 unsigned int *slot = pragma_htab->get (varname);
3059 if (slot)
3061 *address = *slot;
3062 return true;
3064 return false;
3067 void
3068 m32c_output_aligned_common (FILE *stream, tree decl ATTRIBUTE_UNUSED,
3069 const char *name,
3070 int size, int align, int global)
3072 unsigned address;
3074 if (m32c_get_pragma_address (name, &address))
3076 /* We never output these as global. */
3077 assemble_name (stream, name);
3078 fprintf (stream, " = 0x%04x\n", address);
3079 return;
3081 if (!global)
3083 fprintf (stream, "\t.local\t");
3084 assemble_name (stream, name);
3085 fprintf (stream, "\n");
3087 fprintf (stream, "\t.comm\t");
3088 assemble_name (stream, name);
3089 fprintf (stream, ",%u,%u\n", size, align / BITS_PER_UNIT);
3092 /* Predicates */
3094 /* This is a list of legal subregs of hard regs. */
3095 static const struct {
3096 unsigned char outer_mode_size;
3097 unsigned char inner_mode_size;
3098 unsigned char byte_mask;
3099 unsigned char legal_when;
3100 unsigned int regno;
3101 } legal_subregs[] = {
3102 {1, 2, 0x03, 1, R0_REGNO}, /* r0h r0l */
3103 {1, 2, 0x03, 1, R1_REGNO}, /* r1h r1l */
3104 {1, 2, 0x01, 1, A0_REGNO},
3105 {1, 2, 0x01, 1, A1_REGNO},
3107 {1, 4, 0x01, 1, A0_REGNO},
3108 {1, 4, 0x01, 1, A1_REGNO},
3110 {2, 4, 0x05, 1, R0_REGNO}, /* r2 r0 */
3111 {2, 4, 0x05, 1, R1_REGNO}, /* r3 r1 */
3112 {2, 4, 0x05, 16, A0_REGNO}, /* a1 a0 */
3113 {2, 4, 0x01, 24, A0_REGNO}, /* a1 a0 */
3114 {2, 4, 0x01, 24, A1_REGNO}, /* a1 a0 */
3116 {4, 8, 0x55, 1, R0_REGNO}, /* r3 r1 r2 r0 */
3119 /* Returns TRUE if OP is a subreg of a hard reg which we don't
3120 support. We also bail on MEMs with illegal addresses. */
3121 bool
3122 m32c_illegal_subreg_p (rtx op)
3124 int offset;
3125 unsigned int i;
3126 machine_mode src_mode, dest_mode;
3128 if (GET_CODE (op) == MEM
3129 && ! m32c_legitimate_address_p (Pmode, XEXP (op, 0), false))
3131 return true;
3134 if (GET_CODE (op) != SUBREG)
3135 return false;
3137 dest_mode = GET_MODE (op);
3138 offset = SUBREG_BYTE (op);
3139 op = SUBREG_REG (op);
3140 src_mode = GET_MODE (op);
3142 if (GET_MODE_SIZE (dest_mode) == GET_MODE_SIZE (src_mode))
3143 return false;
3144 if (GET_CODE (op) != REG)
3145 return false;
3146 if (REGNO (op) >= MEM0_REGNO)
3147 return false;
3149 offset = (1 << offset);
3151 for (i = 0; i < ARRAY_SIZE (legal_subregs); i ++)
3152 if (legal_subregs[i].outer_mode_size == GET_MODE_SIZE (dest_mode)
3153 && legal_subregs[i].regno == REGNO (op)
3154 && legal_subregs[i].inner_mode_size == GET_MODE_SIZE (src_mode)
3155 && legal_subregs[i].byte_mask & offset)
3157 switch (legal_subregs[i].legal_when)
3159 case 1:
3160 return false;
3161 case 16:
3162 if (TARGET_A16)
3163 return false;
3164 break;
3165 case 24:
3166 if (TARGET_A24)
3167 return false;
3168 break;
3171 return true;
3174 /* Returns TRUE if we support a move between the first two operands.
3175 At the moment, we just want to discourage mem to mem moves until
3176 after reload, because reload has a hard time with our limited
3177 number of address registers, and we can get into a situation where
3178 we need three of them when we only have two. */
3179 bool
3180 m32c_mov_ok (rtx * operands, machine_mode mode ATTRIBUTE_UNUSED)
3182 rtx op0 = operands[0];
3183 rtx op1 = operands[1];
3185 if (TARGET_A24)
3186 return true;
3188 #define DEBUG_MOV_OK 0
3189 #if DEBUG_MOV_OK
3190 fprintf (stderr, "m32c_mov_ok %s\n", mode_name[mode]);
3191 debug_rtx (op0);
3192 debug_rtx (op1);
3193 #endif
3195 if (GET_CODE (op0) == SUBREG)
3196 op0 = XEXP (op0, 0);
3197 if (GET_CODE (op1) == SUBREG)
3198 op1 = XEXP (op1, 0);
3200 if (GET_CODE (op0) == MEM
3201 && GET_CODE (op1) == MEM
3202 && ! reload_completed)
3204 #if DEBUG_MOV_OK
3205 fprintf (stderr, " - no, mem to mem\n");
3206 #endif
3207 return false;
3210 #if DEBUG_MOV_OK
3211 fprintf (stderr, " - ok\n");
3212 #endif
3213 return true;
3216 /* Returns TRUE if two consecutive HImode mov instructions, generated
3217 for moving an immediate double data to a double data type variable
3218 location, can be combined into single SImode mov instruction. */
3219 bool
3220 m32c_immd_dbl_mov (rtx * operands ATTRIBUTE_UNUSED,
3221 machine_mode mode ATTRIBUTE_UNUSED)
3223 /* ??? This relied on the now-defunct MEM_SCALAR and MEM_IN_STRUCT_P
3224 flags. */
3225 return false;
3228 /* Expanders */
3230 /* Subregs are non-orthogonal for us, because our registers are all
3231 different sizes. */
3232 static rtx
3233 m32c_subreg (machine_mode outer,
3234 rtx x, machine_mode inner, int byte)
3236 int r, nr = -1;
3238 /* Converting MEMs to different types that are the same size, we
3239 just rewrite them. */
3240 if (GET_CODE (x) == SUBREG
3241 && SUBREG_BYTE (x) == 0
3242 && GET_CODE (SUBREG_REG (x)) == MEM
3243 && (GET_MODE_SIZE (GET_MODE (x))
3244 == GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))))
3246 rtx oldx = x;
3247 x = gen_rtx_MEM (GET_MODE (x), XEXP (SUBREG_REG (x), 0));
3248 MEM_COPY_ATTRIBUTES (x, SUBREG_REG (oldx));
3251 /* Push/pop get done as smaller push/pops. */
3252 if (GET_CODE (x) == MEM
3253 && (GET_CODE (XEXP (x, 0)) == PRE_DEC
3254 || GET_CODE (XEXP (x, 0)) == POST_INC))
3255 return gen_rtx_MEM (outer, XEXP (x, 0));
3256 if (GET_CODE (x) == SUBREG
3257 && GET_CODE (XEXP (x, 0)) == MEM
3258 && (GET_CODE (XEXP (XEXP (x, 0), 0)) == PRE_DEC
3259 || GET_CODE (XEXP (XEXP (x, 0), 0)) == POST_INC))
3260 return gen_rtx_MEM (outer, XEXP (XEXP (x, 0), 0));
3262 if (GET_CODE (x) != REG)
3264 rtx r = simplify_gen_subreg (outer, x, inner, byte);
3265 if (GET_CODE (r) == SUBREG
3266 && GET_CODE (x) == MEM
3267 && MEM_VOLATILE_P (x))
3269 /* Volatile MEMs don't get simplified, but we need them to
3270 be. We are little endian, so the subreg byte is the
3271 offset. */
3272 r = adjust_address_nv (x, outer, byte);
3274 return r;
3277 r = REGNO (x);
3278 if (r >= FIRST_PSEUDO_REGISTER || r == AP_REGNO)
3279 return simplify_gen_subreg (outer, x, inner, byte);
3281 if (IS_MEM_REGNO (r))
3282 return simplify_gen_subreg (outer, x, inner, byte);
3284 /* This is where the complexities of our register layout are
3285 described. */
3286 if (byte == 0)
3287 nr = r;
3288 else if (outer == HImode)
3290 if (r == R0_REGNO && byte == 2)
3291 nr = R2_REGNO;
3292 else if (r == R0_REGNO && byte == 4)
3293 nr = R1_REGNO;
3294 else if (r == R0_REGNO && byte == 6)
3295 nr = R3_REGNO;
3296 else if (r == R1_REGNO && byte == 2)
3297 nr = R3_REGNO;
3298 else if (r == A0_REGNO && byte == 2)
3299 nr = A1_REGNO;
3301 else if (outer == SImode)
3303 if (r == R0_REGNO && byte == 0)
3304 nr = R0_REGNO;
3305 else if (r == R0_REGNO && byte == 4)
3306 nr = R1_REGNO;
3308 if (nr == -1)
3310 fprintf (stderr, "m32c_subreg %s %s %d\n",
3311 mode_name[outer], mode_name[inner], byte);
3312 debug_rtx (x);
3313 gcc_unreachable ();
3315 return gen_rtx_REG (outer, nr);
3318 /* Used to emit move instructions. We split some moves,
3319 and avoid mem-mem moves. */
3321 m32c_prepare_move (rtx * operands, machine_mode mode)
3323 if (far_addr_space_p (operands[0])
3324 && CONSTANT_P (operands[1]))
3326 operands[1] = force_reg (GET_MODE (operands[0]), operands[1]);
3328 if (TARGET_A16 && mode == PSImode)
3329 return m32c_split_move (operands, mode, 1);
3330 if ((GET_CODE (operands[0]) == MEM)
3331 && (GET_CODE (XEXP (operands[0], 0)) == PRE_MODIFY))
3333 rtx pmv = XEXP (operands[0], 0);
3334 rtx dest_reg = XEXP (pmv, 0);
3335 rtx dest_mod = XEXP (pmv, 1);
3337 emit_insn (gen_rtx_SET (dest_reg, dest_mod));
3338 operands[0] = gen_rtx_MEM (mode, dest_reg);
3340 if (can_create_pseudo_p () && MEM_P (operands[0]) && MEM_P (operands[1]))
3341 operands[1] = copy_to_mode_reg (mode, operands[1]);
3342 return 0;
3345 #define DEBUG_SPLIT 0
3347 /* Returns TRUE if the given PSImode move should be split. We split
3348 for all r8c/m16c moves, since it doesn't support them, and for
3349 POP.L as we can only *push* SImode. */
3351 m32c_split_psi_p (rtx * operands)
3353 #if DEBUG_SPLIT
3354 fprintf (stderr, "\nm32c_split_psi_p\n");
3355 debug_rtx (operands[0]);
3356 debug_rtx (operands[1]);
3357 #endif
3358 if (TARGET_A16)
3360 #if DEBUG_SPLIT
3361 fprintf (stderr, "yes, A16\n");
3362 #endif
3363 return 1;
3365 if (GET_CODE (operands[1]) == MEM
3366 && GET_CODE (XEXP (operands[1], 0)) == POST_INC)
3368 #if DEBUG_SPLIT
3369 fprintf (stderr, "yes, pop.l\n");
3370 #endif
3371 return 1;
3373 #if DEBUG_SPLIT
3374 fprintf (stderr, "no, default\n");
3375 #endif
3376 return 0;
3379 /* Split the given move. SPLIT_ALL is 0 if splitting is optional
3380 (define_expand), 1 if it is not optional (define_insn_and_split),
3381 and 3 for define_split (alternate api). */
3383 m32c_split_move (rtx * operands, machine_mode mode, int split_all)
3385 rtx s[4], d[4];
3386 int parts, si, di, rev = 0;
3387 int rv = 0, opi = 2;
3388 machine_mode submode = HImode;
3389 rtx *ops, local_ops[10];
3391 /* define_split modifies the existing operands, but the other two
3392 emit new insns. OPS is where we store the operand pairs, which
3393 we emit later. */
3394 if (split_all == 3)
3395 ops = operands;
3396 else
3397 ops = local_ops;
3399 /* Else HImode. */
3400 if (mode == DImode)
3401 submode = SImode;
3403 /* Before splitting mem-mem moves, force one operand into a
3404 register. */
3405 if (can_create_pseudo_p () && MEM_P (operands[0]) && MEM_P (operands[1]))
3407 #if DEBUG0
3408 fprintf (stderr, "force_reg...\n");
3409 debug_rtx (operands[1]);
3410 #endif
3411 operands[1] = force_reg (mode, operands[1]);
3412 #if DEBUG0
3413 debug_rtx (operands[1]);
3414 #endif
3417 parts = 2;
3419 #if DEBUG_SPLIT
3420 fprintf (stderr, "\nsplit_move %d all=%d\n", !can_create_pseudo_p (),
3421 split_all);
3422 debug_rtx (operands[0]);
3423 debug_rtx (operands[1]);
3424 #endif
3426 /* Note that split_all is not used to select the api after this
3427 point, so it's safe to set it to 3 even with define_insn. */
3428 /* None of the chips can move SI operands to sp-relative addresses,
3429 so we always split those. */
3430 if (satisfies_constraint_Ss (operands[0]))
3431 split_all = 3;
3433 if (TARGET_A16
3434 && (far_addr_space_p (operands[0])
3435 || far_addr_space_p (operands[1])))
3436 split_all |= 1;
3438 /* We don't need to split these. */
3439 if (TARGET_A24
3440 && split_all != 3
3441 && (mode == SImode || mode == PSImode)
3442 && !(GET_CODE (operands[1]) == MEM
3443 && GET_CODE (XEXP (operands[1], 0)) == POST_INC))
3444 return 0;
3446 /* First, enumerate the subregs we'll be dealing with. */
3447 for (si = 0; si < parts; si++)
3449 d[si] =
3450 m32c_subreg (submode, operands[0], mode,
3451 si * GET_MODE_SIZE (submode));
3452 s[si] =
3453 m32c_subreg (submode, operands[1], mode,
3454 si * GET_MODE_SIZE (submode));
3457 /* Split pushes by emitting a sequence of smaller pushes. */
3458 if (GET_CODE (d[0]) == MEM && GET_CODE (XEXP (d[0], 0)) == PRE_DEC)
3460 for (si = parts - 1; si >= 0; si--)
3462 ops[opi++] = gen_rtx_MEM (submode,
3463 gen_rtx_PRE_DEC (Pmode,
3464 gen_rtx_REG (Pmode,
3465 SP_REGNO)));
3466 ops[opi++] = s[si];
3469 rv = 1;
3471 /* Likewise for pops. */
3472 else if (GET_CODE (s[0]) == MEM && GET_CODE (XEXP (s[0], 0)) == POST_INC)
3474 for (di = 0; di < parts; di++)
3476 ops[opi++] = d[di];
3477 ops[opi++] = gen_rtx_MEM (submode,
3478 gen_rtx_POST_INC (Pmode,
3479 gen_rtx_REG (Pmode,
3480 SP_REGNO)));
3482 rv = 1;
3484 else if (split_all)
3486 /* if d[di] == s[si] for any di < si, we'll early clobber. */
3487 for (di = 0; di < parts - 1; di++)
3488 for (si = di + 1; si < parts; si++)
3489 if (reg_mentioned_p (d[di], s[si]))
3490 rev = 1;
3492 if (rev)
3493 for (si = 0; si < parts; si++)
3495 ops[opi++] = d[si];
3496 ops[opi++] = s[si];
3498 else
3499 for (si = parts - 1; si >= 0; si--)
3501 ops[opi++] = d[si];
3502 ops[opi++] = s[si];
3504 rv = 1;
3506 /* Now emit any moves we may have accumulated. */
3507 if (rv && split_all != 3)
3509 int i;
3510 for (i = 2; i < opi; i += 2)
3511 emit_move_insn (ops[i], ops[i + 1]);
3513 return rv;
3516 /* The m32c has a number of opcodes that act like memcpy, strcmp, and
3517 the like. For the R8C they expect one of the addresses to be in
3518 R1L:An so we need to arrange for that. Otherwise, it's just a
3519 matter of picking out the operands we want and emitting the right
3520 pattern for them. All these expanders, which correspond to
3521 patterns in blkmov.md, must return nonzero if they expand the insn,
3522 or zero if they should FAIL. */
3524 /* This is a memset() opcode. All operands are implied, so we need to
3525 arrange for them to be in the right registers. The opcode wants
3526 addresses, not [mem] syntax. $0 is the destination (MEM:BLK), $1
3527 the count (HI), and $2 the value (QI). */
3529 m32c_expand_setmemhi(rtx *operands)
3531 rtx desta, count, val;
3532 rtx desto, counto;
3534 desta = XEXP (operands[0], 0);
3535 count = operands[1];
3536 val = operands[2];
3538 desto = gen_reg_rtx (Pmode);
3539 counto = gen_reg_rtx (HImode);
3541 if (GET_CODE (desta) != REG
3542 || REGNO (desta) < FIRST_PSEUDO_REGISTER)
3543 desta = copy_to_mode_reg (Pmode, desta);
3545 /* This looks like an arbitrary restriction, but this is by far the
3546 most common case. For counts 8..14 this actually results in
3547 smaller code with no speed penalty because the half-sized
3548 constant can be loaded with a shorter opcode. */
3549 if (GET_CODE (count) == CONST_INT
3550 && GET_CODE (val) == CONST_INT
3551 && ! (INTVAL (count) & 1)
3552 && (INTVAL (count) > 1)
3553 && (INTVAL (val) <= 7 && INTVAL (val) >= -8))
3555 unsigned v = INTVAL (val) & 0xff;
3556 v = v | (v << 8);
3557 count = copy_to_mode_reg (HImode, GEN_INT (INTVAL (count) / 2));
3558 val = copy_to_mode_reg (HImode, GEN_INT (v));
3559 if (TARGET_A16)
3560 emit_insn (gen_setmemhi_whi_op (desto, counto, val, desta, count));
3561 else
3562 emit_insn (gen_setmemhi_wpsi_op (desto, counto, val, desta, count));
3563 return 1;
3566 /* This is the generalized memset() case. */
3567 if (GET_CODE (val) != REG
3568 || REGNO (val) < FIRST_PSEUDO_REGISTER)
3569 val = copy_to_mode_reg (QImode, val);
3571 if (GET_CODE (count) != REG
3572 || REGNO (count) < FIRST_PSEUDO_REGISTER)
3573 count = copy_to_mode_reg (HImode, count);
3575 if (TARGET_A16)
3576 emit_insn (gen_setmemhi_bhi_op (desto, counto, val, desta, count));
3577 else
3578 emit_insn (gen_setmemhi_bpsi_op (desto, counto, val, desta, count));
3580 return 1;
3583 /* This is a memcpy() opcode. All operands are implied, so we need to
3584 arrange for them to be in the right registers. The opcode wants
3585 addresses, not [mem] syntax. $0 is the destination (MEM:BLK), $1
3586 is the source (MEM:BLK), and $2 the count (HI). */
3588 m32c_expand_movmemhi(rtx *operands)
3590 rtx desta, srca, count;
3591 rtx desto, srco, counto;
3593 desta = XEXP (operands[0], 0);
3594 srca = XEXP (operands[1], 0);
3595 count = operands[2];
3597 desto = gen_reg_rtx (Pmode);
3598 srco = gen_reg_rtx (Pmode);
3599 counto = gen_reg_rtx (HImode);
3601 if (GET_CODE (desta) != REG
3602 || REGNO (desta) < FIRST_PSEUDO_REGISTER)
3603 desta = copy_to_mode_reg (Pmode, desta);
3605 if (GET_CODE (srca) != REG
3606 || REGNO (srca) < FIRST_PSEUDO_REGISTER)
3607 srca = copy_to_mode_reg (Pmode, srca);
3609 /* Similar to setmem, but we don't need to check the value. */
3610 if (GET_CODE (count) == CONST_INT
3611 && ! (INTVAL (count) & 1)
3612 && (INTVAL (count) > 1))
3614 count = copy_to_mode_reg (HImode, GEN_INT (INTVAL (count) / 2));
3615 if (TARGET_A16)
3616 emit_insn (gen_movmemhi_whi_op (desto, srco, counto, desta, srca, count));
3617 else
3618 emit_insn (gen_movmemhi_wpsi_op (desto, srco, counto, desta, srca, count));
3619 return 1;
3622 /* This is the generalized memset() case. */
3623 if (GET_CODE (count) != REG
3624 || REGNO (count) < FIRST_PSEUDO_REGISTER)
3625 count = copy_to_mode_reg (HImode, count);
3627 if (TARGET_A16)
3628 emit_insn (gen_movmemhi_bhi_op (desto, srco, counto, desta, srca, count));
3629 else
3630 emit_insn (gen_movmemhi_bpsi_op (desto, srco, counto, desta, srca, count));
3632 return 1;
3635 /* This is a stpcpy() opcode. $0 is the destination (MEM:BLK) after
3636 the copy, which should point to the NUL at the end of the string,
3637 $1 is the destination (MEM:BLK), and $2 is the source (MEM:BLK).
3638 Since our opcode leaves the destination pointing *after* the NUL,
3639 we must emit an adjustment. */
3641 m32c_expand_movstr(rtx *operands)
3643 rtx desta, srca;
3644 rtx desto, srco;
3646 desta = XEXP (operands[1], 0);
3647 srca = XEXP (operands[2], 0);
3649 desto = gen_reg_rtx (Pmode);
3650 srco = gen_reg_rtx (Pmode);
3652 if (GET_CODE (desta) != REG
3653 || REGNO (desta) < FIRST_PSEUDO_REGISTER)
3654 desta = copy_to_mode_reg (Pmode, desta);
3656 if (GET_CODE (srca) != REG
3657 || REGNO (srca) < FIRST_PSEUDO_REGISTER)
3658 srca = copy_to_mode_reg (Pmode, srca);
3660 emit_insn (gen_movstr_op (desto, srco, desta, srca));
3661 /* desto ends up being a1, which allows this type of add through MOVA. */
3662 emit_insn (gen_addpsi3 (operands[0], desto, GEN_INT (-1)));
3664 return 1;
3667 /* This is a strcmp() opcode. $0 is the destination (HI) which holds
3668 <=>0 depending on the comparison, $1 is one string (MEM:BLK), and
3669 $2 is the other (MEM:BLK). We must do the comparison, and then
3670 convert the flags to a signed integer result. */
3672 m32c_expand_cmpstr(rtx *operands)
3674 rtx src1a, src2a;
3676 src1a = XEXP (operands[1], 0);
3677 src2a = XEXP (operands[2], 0);
3679 if (GET_CODE (src1a) != REG
3680 || REGNO (src1a) < FIRST_PSEUDO_REGISTER)
3681 src1a = copy_to_mode_reg (Pmode, src1a);
3683 if (GET_CODE (src2a) != REG
3684 || REGNO (src2a) < FIRST_PSEUDO_REGISTER)
3685 src2a = copy_to_mode_reg (Pmode, src2a);
3687 emit_insn (gen_cmpstrhi_op (src1a, src2a, src1a, src2a));
3688 emit_insn (gen_cond_to_int (operands[0]));
3690 return 1;
3694 typedef rtx (*shift_gen_func)(rtx, rtx, rtx);
3696 static shift_gen_func
3697 shift_gen_func_for (int mode, int code)
3699 #define GFF(m,c,f) if (mode == m && code == c) return f
3700 GFF(QImode, ASHIFT, gen_ashlqi3_i);
3701 GFF(QImode, ASHIFTRT, gen_ashrqi3_i);
3702 GFF(QImode, LSHIFTRT, gen_lshrqi3_i);
3703 GFF(HImode, ASHIFT, gen_ashlhi3_i);
3704 GFF(HImode, ASHIFTRT, gen_ashrhi3_i);
3705 GFF(HImode, LSHIFTRT, gen_lshrhi3_i);
3706 GFF(PSImode, ASHIFT, gen_ashlpsi3_i);
3707 GFF(PSImode, ASHIFTRT, gen_ashrpsi3_i);
3708 GFF(PSImode, LSHIFTRT, gen_lshrpsi3_i);
3709 GFF(SImode, ASHIFT, TARGET_A16 ? gen_ashlsi3_16 : gen_ashlsi3_24);
3710 GFF(SImode, ASHIFTRT, TARGET_A16 ? gen_ashrsi3_16 : gen_ashrsi3_24);
3711 GFF(SImode, LSHIFTRT, TARGET_A16 ? gen_lshrsi3_16 : gen_lshrsi3_24);
3712 #undef GFF
3713 gcc_unreachable ();
3716 /* The m32c only has one shift, but it takes a signed count. GCC
3717 doesn't want this, so we fake it by negating any shift count when
3718 we're pretending to shift the other way. Also, the shift count is
3719 limited to -8..8. It's slightly better to use two shifts for 9..15
3720 than to load the count into r1h, so we do that too. */
3722 m32c_prepare_shift (rtx * operands, int scale, int shift_code)
3724 machine_mode mode = GET_MODE (operands[0]);
3725 shift_gen_func func = shift_gen_func_for (mode, shift_code);
3726 rtx temp;
3728 if (GET_CODE (operands[2]) == CONST_INT)
3730 int maxc = TARGET_A24 && (mode == PSImode || mode == SImode) ? 32 : 8;
3731 int count = INTVAL (operands[2]) * scale;
3733 while (count > maxc)
3735 temp = gen_reg_rtx (mode);
3736 emit_insn (func (temp, operands[1], GEN_INT (maxc)));
3737 operands[1] = temp;
3738 count -= maxc;
3740 while (count < -maxc)
3742 temp = gen_reg_rtx (mode);
3743 emit_insn (func (temp, operands[1], GEN_INT (-maxc)));
3744 operands[1] = temp;
3745 count += maxc;
3747 emit_insn (func (operands[0], operands[1], GEN_INT (count)));
3748 return 1;
3751 temp = gen_reg_rtx (QImode);
3752 if (scale < 0)
3753 /* The pattern has a NEG that corresponds to this. */
3754 emit_move_insn (temp, gen_rtx_NEG (QImode, operands[2]));
3755 else if (TARGET_A16 && mode == SImode)
3756 /* We do this because the code below may modify this, we don't
3757 want to modify the origin of this value. */
3758 emit_move_insn (temp, operands[2]);
3759 else
3760 /* We'll only use it for the shift, no point emitting a move. */
3761 temp = operands[2];
3763 if (TARGET_A16 && GET_MODE_SIZE (mode) == 4)
3765 /* The m16c has a limit of -16..16 for SI shifts, even when the
3766 shift count is in a register. Since there are so many targets
3767 of these shifts, it's better to expand the RTL here than to
3768 call a helper function.
3770 The resulting code looks something like this:
3772 cmp.b r1h,-16
3773 jge.b 1f
3774 shl.l -16,dest
3775 add.b r1h,16
3776 1f: cmp.b r1h,16
3777 jle.b 1f
3778 shl.l 16,dest
3779 sub.b r1h,16
3780 1f: shl.l r1h,dest
3782 We take advantage of the fact that "negative" shifts are
3783 undefined to skip one of the comparisons. */
3785 rtx count;
3786 rtx tempvar;
3787 rtx_insn *insn;
3789 emit_move_insn (operands[0], operands[1]);
3791 count = temp;
3792 rtx_code_label *label = gen_label_rtx ();
3793 LABEL_NUSES (label) ++;
3795 tempvar = gen_reg_rtx (mode);
3797 if (shift_code == ASHIFT)
3799 /* This is a left shift. We only need check positive counts. */
3800 emit_jump_insn (gen_cbranchqi4 (gen_rtx_LE (VOIDmode, 0, 0),
3801 count, GEN_INT (16), label));
3802 emit_insn (func (tempvar, operands[0], GEN_INT (8)));
3803 emit_insn (func (operands[0], tempvar, GEN_INT (8)));
3804 insn = emit_insn (gen_addqi3 (count, count, GEN_INT (-16)));
3805 emit_label_after (label, insn);
3807 else
3809 /* This is a right shift. We only need check negative counts. */
3810 emit_jump_insn (gen_cbranchqi4 (gen_rtx_GE (VOIDmode, 0, 0),
3811 count, GEN_INT (-16), label));
3812 emit_insn (func (tempvar, operands[0], GEN_INT (-8)));
3813 emit_insn (func (operands[0], tempvar, GEN_INT (-8)));
3814 insn = emit_insn (gen_addqi3 (count, count, GEN_INT (16)));
3815 emit_label_after (label, insn);
3817 operands[1] = operands[0];
3818 emit_insn (func (operands[0], operands[0], count));
3819 return 1;
3822 operands[2] = temp;
3823 return 0;
3826 /* The m32c has a limited range of operations that work on PSImode
3827 values; we have to expand to SI, do the math, and truncate back to
3828 PSI. Yes, this is expensive, but hopefully gcc will learn to avoid
3829 those cases. */
3830 void
3831 m32c_expand_neg_mulpsi3 (rtx * operands)
3833 /* operands: a = b * i */
3834 rtx temp1; /* b as SI */
3835 rtx scale /* i as SI */;
3836 rtx temp2; /* a*b as SI */
3838 temp1 = gen_reg_rtx (SImode);
3839 temp2 = gen_reg_rtx (SImode);
3840 if (GET_CODE (operands[2]) != CONST_INT)
3842 scale = gen_reg_rtx (SImode);
3843 emit_insn (gen_zero_extendpsisi2 (scale, operands[2]));
3845 else
3846 scale = copy_to_mode_reg (SImode, operands[2]);
3848 emit_insn (gen_zero_extendpsisi2 (temp1, operands[1]));
3849 temp2 = expand_simple_binop (SImode, MULT, temp1, scale, temp2, 1, OPTAB_LIB);
3850 emit_insn (gen_truncsipsi2 (operands[0], temp2));
3853 /* Pattern Output Functions */
3856 m32c_expand_movcc (rtx *operands)
3858 rtx rel = operands[1];
3860 if (GET_CODE (rel) != EQ && GET_CODE (rel) != NE)
3861 return 1;
3862 if (GET_CODE (operands[2]) != CONST_INT
3863 || GET_CODE (operands[3]) != CONST_INT)
3864 return 1;
3865 if (GET_CODE (rel) == NE)
3867 rtx tmp = operands[2];
3868 operands[2] = operands[3];
3869 operands[3] = tmp;
3870 rel = gen_rtx_EQ (GET_MODE (rel), XEXP (rel, 0), XEXP (rel, 1));
3873 emit_move_insn (operands[0],
3874 gen_rtx_IF_THEN_ELSE (GET_MODE (operands[0]),
3875 rel,
3876 operands[2],
3877 operands[3]));
3878 return 0;
3881 /* Used for the "insv" pattern. Return nonzero to fail, else done. */
3883 m32c_expand_insv (rtx *operands)
3885 rtx op0, src0, p;
3886 int mask;
3888 if (INTVAL (operands[1]) != 1)
3889 return 1;
3891 /* Our insv opcode (bset, bclr) can only insert a one-bit constant. */
3892 if (GET_CODE (operands[3]) != CONST_INT)
3893 return 1;
3894 if (INTVAL (operands[3]) != 0
3895 && INTVAL (operands[3]) != 1
3896 && INTVAL (operands[3]) != -1)
3897 return 1;
3899 mask = 1 << INTVAL (operands[2]);
3901 op0 = operands[0];
3902 if (GET_CODE (op0) == SUBREG
3903 && SUBREG_BYTE (op0) == 0)
3905 rtx sub = SUBREG_REG (op0);
3906 if (GET_MODE (sub) == HImode || GET_MODE (sub) == QImode)
3907 op0 = sub;
3910 if (!can_create_pseudo_p ()
3911 || (GET_CODE (op0) == MEM && MEM_VOLATILE_P (op0)))
3912 src0 = op0;
3913 else
3915 src0 = gen_reg_rtx (GET_MODE (op0));
3916 emit_move_insn (src0, op0);
3919 if (GET_MODE (op0) == HImode
3920 && INTVAL (operands[2]) >= 8
3921 && GET_CODE (op0) == MEM)
3923 /* We are little endian. */
3924 rtx new_mem = gen_rtx_MEM (QImode, plus_constant (Pmode,
3925 XEXP (op0, 0), 1));
3926 MEM_COPY_ATTRIBUTES (new_mem, op0);
3927 mask >>= 8;
3930 /* First, we generate a mask with the correct polarity. If we are
3931 storing a zero, we want an AND mask, so invert it. */
3932 if (INTVAL (operands[3]) == 0)
3934 /* Storing a zero, use an AND mask */
3935 if (GET_MODE (op0) == HImode)
3936 mask ^= 0xffff;
3937 else
3938 mask ^= 0xff;
3940 /* Now we need to properly sign-extend the mask in case we need to
3941 fall back to an AND or OR opcode. */
3942 if (GET_MODE (op0) == HImode)
3944 if (mask & 0x8000)
3945 mask -= 0x10000;
3947 else
3949 if (mask & 0x80)
3950 mask -= 0x100;
3953 switch ( (INTVAL (operands[3]) ? 4 : 0)
3954 + ((GET_MODE (op0) == HImode) ? 2 : 0)
3955 + (TARGET_A24 ? 1 : 0))
3957 case 0: p = gen_andqi3_16 (op0, src0, GEN_INT (mask)); break;
3958 case 1: p = gen_andqi3_24 (op0, src0, GEN_INT (mask)); break;
3959 case 2: p = gen_andhi3_16 (op0, src0, GEN_INT (mask)); break;
3960 case 3: p = gen_andhi3_24 (op0, src0, GEN_INT (mask)); break;
3961 case 4: p = gen_iorqi3_16 (op0, src0, GEN_INT (mask)); break;
3962 case 5: p = gen_iorqi3_24 (op0, src0, GEN_INT (mask)); break;
3963 case 6: p = gen_iorhi3_16 (op0, src0, GEN_INT (mask)); break;
3964 case 7: p = gen_iorhi3_24 (op0, src0, GEN_INT (mask)); break;
3965 default: p = NULL_RTX; break; /* Not reached, but silences a warning. */
3968 emit_insn (p);
3969 return 0;
3972 const char *
3973 m32c_scc_pattern(rtx *operands, RTX_CODE code)
3975 static char buf[30];
3976 if (GET_CODE (operands[0]) == REG
3977 && REGNO (operands[0]) == R0_REGNO)
3979 if (code == EQ)
3980 return "stzx\t#1,#0,r0l";
3981 if (code == NE)
3982 return "stzx\t#0,#1,r0l";
3984 sprintf(buf, "bm%s\t0,%%h0\n\tand.b\t#1,%%0", GET_RTX_NAME (code));
3985 return buf;
3988 /* Encode symbol attributes of a SYMBOL_REF into its
3989 SYMBOL_REF_FLAGS. */
3990 static void
3991 m32c_encode_section_info (tree decl, rtx rtl, int first)
3993 int extra_flags = 0;
3995 default_encode_section_info (decl, rtl, first);
3996 if (TREE_CODE (decl) == FUNCTION_DECL
3997 && m32c_special_page_vector_p (decl))
3999 extra_flags = SYMBOL_FLAG_FUNCVEC_FUNCTION;
4001 if (extra_flags)
4002 SYMBOL_REF_FLAGS (XEXP (rtl, 0)) |= extra_flags;
4005 /* Returns TRUE if the current function is a leaf, and thus we can
4006 determine which registers an interrupt function really needs to
4007 save. The logic below is mostly about finding the insn sequence
4008 that's the function, versus any sequence that might be open for the
4009 current insn. */
4010 static int
4011 m32c_leaf_function_p (void)
4013 int rv;
4015 push_topmost_sequence ();
4016 rv = leaf_function_p ();
4017 pop_topmost_sequence ();
4018 return rv;
4021 /* Returns TRUE if the current function needs to use the ENTER/EXIT
4022 opcodes. If the function doesn't need the frame base or stack
4023 pointer, it can use the simpler RTS opcode. */
4024 static bool
4025 m32c_function_needs_enter (void)
4027 rtx_insn *insn;
4028 rtx sp = gen_rtx_REG (Pmode, SP_REGNO);
4029 rtx fb = gen_rtx_REG (Pmode, FB_REGNO);
4031 for (insn = get_topmost_sequence ()->first; insn; insn = NEXT_INSN (insn))
4032 if (NONDEBUG_INSN_P (insn))
4034 if (reg_mentioned_p (sp, insn))
4035 return true;
4036 if (reg_mentioned_p (fb, insn))
4037 return true;
4039 return false;
4042 /* Mark all the subexpressions of the PARALLEL rtx PAR as
4043 frame-related. Return PAR.
4045 dwarf2out.c:dwarf2out_frame_debug_expr ignores sub-expressions of a
4046 PARALLEL rtx other than the first if they do not have the
4047 FRAME_RELATED flag set on them. So this function is handy for
4048 marking up 'enter' instructions. */
4049 static rtx
4050 m32c_all_frame_related (rtx par)
4052 int len = XVECLEN (par, 0);
4053 int i;
4055 for (i = 0; i < len; i++)
4056 F (XVECEXP (par, 0, i));
4058 return par;
4061 /* Emits the prologue. See the frame layout comment earlier in this
4062 file. We can reserve up to 256 bytes with the ENTER opcode, beyond
4063 that we manually update sp. */
4064 void
4065 m32c_emit_prologue (void)
4067 int frame_size, extra_frame_size = 0, reg_save_size;
4068 int complex_prologue = 0;
4070 cfun->machine->is_leaf = m32c_leaf_function_p ();
4071 if (interrupt_p (cfun->decl))
4073 cfun->machine->is_interrupt = 1;
4074 complex_prologue = 1;
4076 else if (bank_switch_p (cfun->decl))
4077 warning (OPT_Wattributes,
4078 "%<bank_switch%> has no effect on non-interrupt functions");
4080 reg_save_size = m32c_pushm_popm (PP_justcount);
4082 if (interrupt_p (cfun->decl))
4084 if (bank_switch_p (cfun->decl))
4085 emit_insn (gen_fset_b ());
4086 else if (cfun->machine->intr_pushm)
4087 emit_insn (gen_pushm (GEN_INT (cfun->machine->intr_pushm)));
4090 frame_size =
4091 m32c_initial_elimination_offset (FB_REGNO, SP_REGNO) - reg_save_size;
4092 if (frame_size == 0
4093 && !m32c_function_needs_enter ())
4094 cfun->machine->use_rts = 1;
4096 if (flag_stack_usage_info)
4097 current_function_static_stack_size = frame_size;
4099 if (frame_size > 254)
4101 extra_frame_size = frame_size - 254;
4102 frame_size = 254;
4104 if (cfun->machine->use_rts == 0)
4105 F (emit_insn (m32c_all_frame_related
4106 (TARGET_A16
4107 ? gen_prologue_enter_16 (GEN_INT (frame_size + 2))
4108 : gen_prologue_enter_24 (GEN_INT (frame_size + 4)))));
4110 if (extra_frame_size)
4112 complex_prologue = 1;
4113 if (TARGET_A16)
4114 F (emit_insn (gen_addhi3 (gen_rtx_REG (HImode, SP_REGNO),
4115 gen_rtx_REG (HImode, SP_REGNO),
4116 GEN_INT (-extra_frame_size))));
4117 else
4118 F (emit_insn (gen_addpsi3 (gen_rtx_REG (PSImode, SP_REGNO),
4119 gen_rtx_REG (PSImode, SP_REGNO),
4120 GEN_INT (-extra_frame_size))));
4123 complex_prologue += m32c_pushm_popm (PP_pushm);
4125 /* This just emits a comment into the .s file for debugging. */
4126 if (complex_prologue)
4127 emit_insn (gen_prologue_end ());
4130 /* Likewise, for the epilogue. The only exception is that, for
4131 interrupts, we must manually unwind the frame as the REIT opcode
4132 doesn't do that. */
4133 void
4134 m32c_emit_epilogue (void)
4136 int popm_count = m32c_pushm_popm (PP_justcount);
4138 /* This just emits a comment into the .s file for debugging. */
4139 if (popm_count > 0 || cfun->machine->is_interrupt)
4140 emit_insn (gen_epilogue_start ());
4142 if (popm_count > 0)
4143 m32c_pushm_popm (PP_popm);
4145 if (cfun->machine->is_interrupt)
4147 machine_mode spmode = TARGET_A16 ? HImode : PSImode;
4149 /* REIT clears B flag and restores $fp for us, but we still
4150 have to fix up the stack. USE_RTS just means we didn't
4151 emit ENTER. */
4152 if (!cfun->machine->use_rts)
4154 emit_move_insn (gen_rtx_REG (spmode, A0_REGNO),
4155 gen_rtx_REG (spmode, FP_REGNO));
4156 emit_move_insn (gen_rtx_REG (spmode, SP_REGNO),
4157 gen_rtx_REG (spmode, A0_REGNO));
4158 /* We can't just add this to the POPM because it would be in
4159 the wrong order, and wouldn't fix the stack if we're bank
4160 switching. */
4161 if (TARGET_A16)
4162 emit_insn (gen_pophi_16 (gen_rtx_REG (HImode, FP_REGNO)));
4163 else
4164 emit_insn (gen_poppsi (gen_rtx_REG (PSImode, FP_REGNO)));
4166 if (!bank_switch_p (cfun->decl) && cfun->machine->intr_pushm)
4167 emit_insn (gen_popm (GEN_INT (cfun->machine->intr_pushm)));
4169 /* The FREIT (Fast REturn from InTerrupt) instruction should be
4170 generated only for M32C/M32CM targets (generate the REIT
4171 instruction otherwise). */
4172 if (fast_interrupt_p (cfun->decl))
4174 /* Check if fast_attribute is set for M32C or M32CM. */
4175 if (TARGET_A24)
4177 emit_jump_insn (gen_epilogue_freit ());
4179 /* If fast_interrupt attribute is set for an R8C or M16C
4180 target ignore this attribute and generated REIT
4181 instruction. */
4182 else
4184 warning (OPT_Wattributes,
4185 "%<fast_interrupt%> attribute directive ignored");
4186 emit_jump_insn (gen_epilogue_reit_16 ());
4189 else if (TARGET_A16)
4190 emit_jump_insn (gen_epilogue_reit_16 ());
4191 else
4192 emit_jump_insn (gen_epilogue_reit_24 ());
4194 else if (cfun->machine->use_rts)
4195 emit_jump_insn (gen_epilogue_rts ());
4196 else if (TARGET_A16)
4197 emit_jump_insn (gen_epilogue_exitd_16 ());
4198 else
4199 emit_jump_insn (gen_epilogue_exitd_24 ());
4202 void
4203 m32c_emit_eh_epilogue (rtx ret_addr)
4205 /* R0[R2] has the stack adjustment. R1[R3] has the address to
4206 return to. We have to fudge the stack, pop everything, pop SP
4207 (fudged), and return (fudged). This is actually easier to do in
4208 assembler, so punt to libgcc. */
4209 emit_jump_insn (gen_eh_epilogue (ret_addr, cfun->machine->eh_stack_adjust));
4210 /* emit_clobber (gen_rtx_REG (HImode, R0L_REGNO)); */
4213 /* Indicate which flags must be properly set for a given conditional. */
4214 static int
4215 flags_needed_for_conditional (rtx cond)
4217 switch (GET_CODE (cond))
4219 case LE:
4220 case GT:
4221 return FLAGS_OSZ;
4222 case LEU:
4223 case GTU:
4224 return FLAGS_ZC;
4225 case LT:
4226 case GE:
4227 return FLAGS_OS;
4228 case LTU:
4229 case GEU:
4230 return FLAGS_C;
4231 case EQ:
4232 case NE:
4233 return FLAGS_Z;
4234 default:
4235 return FLAGS_N;
4239 #define DEBUG_CMP 0
4241 /* Returns true if a compare insn is redundant because it would only
4242 set flags that are already set correctly. */
4243 static bool
4244 m32c_compare_redundant (rtx_insn *cmp, rtx *operands)
4246 int flags_needed;
4247 int pflags;
4248 rtx_insn *prev;
4249 rtx pp, next;
4250 rtx op0, op1;
4251 #if DEBUG_CMP
4252 int prev_icode, i;
4253 #endif
4255 op0 = operands[0];
4256 op1 = operands[1];
4258 #if DEBUG_CMP
4259 fprintf(stderr, "\n\033[32mm32c_compare_redundant\033[0m\n");
4260 debug_rtx(cmp);
4261 for (i=0; i<2; i++)
4263 fprintf(stderr, "operands[%d] = ", i);
4264 debug_rtx(operands[i]);
4266 #endif
4268 next = next_nonnote_insn (cmp);
4269 if (!next || !INSN_P (next))
4271 #if DEBUG_CMP
4272 fprintf(stderr, "compare not followed by insn\n");
4273 debug_rtx(next);
4274 #endif
4275 return false;
4277 if (GET_CODE (PATTERN (next)) == SET
4278 && GET_CODE (XEXP ( PATTERN (next), 1)) == IF_THEN_ELSE)
4280 next = XEXP (XEXP (PATTERN (next), 1), 0);
4282 else if (GET_CODE (PATTERN (next)) == SET)
4284 /* If this is a conditional, flags_needed will be something
4285 other than FLAGS_N, which we test below. */
4286 next = XEXP (PATTERN (next), 1);
4288 else
4290 #if DEBUG_CMP
4291 fprintf(stderr, "compare not followed by conditional\n");
4292 debug_rtx(next);
4293 #endif
4294 return false;
4296 #if DEBUG_CMP
4297 fprintf(stderr, "conditional is: ");
4298 debug_rtx(next);
4299 #endif
4301 flags_needed = flags_needed_for_conditional (next);
4302 if (flags_needed == FLAGS_N)
4304 #if DEBUG_CMP
4305 fprintf(stderr, "compare not followed by conditional\n");
4306 debug_rtx(next);
4307 #endif
4308 return false;
4311 /* Compare doesn't set overflow and carry the same way that
4312 arithmetic instructions do, so we can't replace those. */
4313 if (flags_needed & FLAGS_OC)
4314 return false;
4316 prev = cmp;
4317 do {
4318 prev = prev_nonnote_insn (prev);
4319 if (!prev)
4321 #if DEBUG_CMP
4322 fprintf(stderr, "No previous insn.\n");
4323 #endif
4324 return false;
4326 if (!INSN_P (prev))
4328 #if DEBUG_CMP
4329 fprintf(stderr, "Previous insn is a non-insn.\n");
4330 #endif
4331 return false;
4333 pp = PATTERN (prev);
4334 if (GET_CODE (pp) != SET)
4336 #if DEBUG_CMP
4337 fprintf(stderr, "Previous insn is not a SET.\n");
4338 #endif
4339 return false;
4341 pflags = get_attr_flags (prev);
4343 /* Looking up attributes of previous insns corrupted the recog
4344 tables. */
4345 INSN_UID (cmp) = -1;
4346 recog (PATTERN (cmp), cmp, 0);
4348 if (pflags == FLAGS_N
4349 && reg_mentioned_p (op0, pp))
4351 #if DEBUG_CMP
4352 fprintf(stderr, "intermediate non-flags insn uses op:\n");
4353 debug_rtx(prev);
4354 #endif
4355 return false;
4358 /* Check for comparisons against memory - between volatiles and
4359 aliases, we just can't risk this one. */
4360 if (GET_CODE (operands[0]) == MEM
4361 || GET_CODE (operands[0]) == MEM)
4363 #if DEBUG_CMP
4364 fprintf(stderr, "comparisons with memory:\n");
4365 debug_rtx(prev);
4366 #endif
4367 return false;
4370 /* Check for PREV changing a register that's used to compute a
4371 value in CMP, even if it doesn't otherwise change flags. */
4372 if (GET_CODE (operands[0]) == REG
4373 && rtx_referenced_p (SET_DEST (PATTERN (prev)), operands[0]))
4375 #if DEBUG_CMP
4376 fprintf(stderr, "sub-value affected, op0:\n");
4377 debug_rtx(prev);
4378 #endif
4379 return false;
4381 if (GET_CODE (operands[1]) == REG
4382 && rtx_referenced_p (SET_DEST (PATTERN (prev)), operands[1]))
4384 #if DEBUG_CMP
4385 fprintf(stderr, "sub-value affected, op1:\n");
4386 debug_rtx(prev);
4387 #endif
4388 return false;
4391 } while (pflags == FLAGS_N);
4392 #if DEBUG_CMP
4393 fprintf(stderr, "previous flag-setting insn:\n");
4394 debug_rtx(prev);
4395 debug_rtx(pp);
4396 #endif
4398 if (GET_CODE (pp) == SET
4399 && GET_CODE (XEXP (pp, 0)) == REG
4400 && REGNO (XEXP (pp, 0)) == FLG_REGNO
4401 && GET_CODE (XEXP (pp, 1)) == COMPARE)
4403 /* Adjacent cbranches must have the same operands to be
4404 redundant. */
4405 rtx pop0 = XEXP (XEXP (pp, 1), 0);
4406 rtx pop1 = XEXP (XEXP (pp, 1), 1);
4407 #if DEBUG_CMP
4408 fprintf(stderr, "adjacent cbranches\n");
4409 debug_rtx(pop0);
4410 debug_rtx(pop1);
4411 #endif
4412 if (rtx_equal_p (op0, pop0)
4413 && rtx_equal_p (op1, pop1))
4414 return true;
4415 #if DEBUG_CMP
4416 fprintf(stderr, "prev cmp not same\n");
4417 #endif
4418 return false;
4421 /* Else the previous insn must be a SET, with either the source or
4422 dest equal to operands[0], and operands[1] must be zero. */
4424 if (!rtx_equal_p (op1, const0_rtx))
4426 #if DEBUG_CMP
4427 fprintf(stderr, "operands[1] not const0_rtx\n");
4428 #endif
4429 return false;
4431 if (GET_CODE (pp) != SET)
4433 #if DEBUG_CMP
4434 fprintf (stderr, "pp not set\n");
4435 #endif
4436 return false;
4438 if (!rtx_equal_p (op0, SET_SRC (pp))
4439 && !rtx_equal_p (op0, SET_DEST (pp)))
4441 #if DEBUG_CMP
4442 fprintf(stderr, "operands[0] not found in set\n");
4443 #endif
4444 return false;
4447 #if DEBUG_CMP
4448 fprintf(stderr, "cmp flags %x prev flags %x\n", flags_needed, pflags);
4449 #endif
4450 if ((pflags & flags_needed) == flags_needed)
4451 return true;
4453 return false;
4456 /* Return the pattern for a compare. This will be commented out if
4457 the compare is redundant, else a normal pattern is returned. Thus,
4458 the assembler output says where the compare would have been. */
4459 char *
4460 m32c_output_compare (rtx_insn *insn, rtx *operands)
4462 static char templ[] = ";cmp.b\t%1,%0";
4463 /* ^ 5 */
4465 templ[5] = " bwll"[GET_MODE_SIZE(GET_MODE(operands[0]))];
4466 if (m32c_compare_redundant (insn, operands))
4468 #if DEBUG_CMP
4469 fprintf(stderr, "cbranch: cmp not needed\n");
4470 #endif
4471 return templ;
4474 #if DEBUG_CMP
4475 fprintf(stderr, "cbranch: cmp needed: `%s'\n", templ + 1);
4476 #endif
4477 return templ + 1;
4480 #undef TARGET_ENCODE_SECTION_INFO
4481 #define TARGET_ENCODE_SECTION_INFO m32c_encode_section_info
4483 /* If the frame pointer isn't used, we detect it manually. But the
4484 stack pointer doesn't have as flexible addressing as the frame
4485 pointer, so we always assume we have it. */
4487 #undef TARGET_FRAME_POINTER_REQUIRED
4488 #define TARGET_FRAME_POINTER_REQUIRED hook_bool_void_true
4490 /* The Global `targetm' Variable. */
4492 struct gcc_target targetm = TARGET_INITIALIZER;
4494 #include "gt-m32c.h"