1 /* Definitions of target machine for GNU compiler, for MMIX.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005
3 Free Software Foundation, Inc.
4 Contributed by Hans-Peter Nilsson (hp@bitrange.com)
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to
20 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
25 #include "coretypes.h"
29 #include "hard-reg-set.h"
31 #include "insn-config.h"
43 #include "integrate.h"
45 #include "target-def.h"
48 /* First some local helper definitions. */
49 #define MMIX_FIRST_GLOBAL_REGNUM 32
51 /* We'd need a current_function_has_landing_pad. It's marked as such when
52 a nonlocal_goto_receiver is expanded. Not just a C++ thing, but
54 #define MMIX_CFUN_HAS_LANDING_PAD (cfun->machine->has_landing_pad != 0)
56 /* We have no means to tell DWARF 2 about the register stack, so we need
57 to store the return address on the stack if an exception can get into
58 this function. FIXME: Narrow condition. Before any whole-function
59 analysis, regs_ever_live[] isn't initialized. We know it's up-to-date
60 after reload_completed; it may contain incorrect information some time
61 before that. Within a RTL sequence (after a call to start_sequence,
62 such as in RTL expanders), leaf_function_p doesn't see all insns
63 (perhaps any insn). But regs_ever_live is up-to-date when
64 leaf_function_p () isn't, so we "or" them together to get accurate
65 information. FIXME: Some tweak to leaf_function_p might be
67 #define MMIX_CFUN_NEEDS_SAVED_EH_RETURN_ADDRESS \
69 && ((reload_completed && regs_ever_live[MMIX_rJ_REGNUM]) \
70 || !leaf_function_p ()))
72 #define IS_MMIX_EH_RETURN_DATA_REG(REGNO) \
73 (current_function_calls_eh_return \
74 && (EH_RETURN_DATA_REGNO (0) == REGNO \
75 || EH_RETURN_DATA_REGNO (1) == REGNO \
76 || EH_RETURN_DATA_REGNO (2) == REGNO \
77 || EH_RETURN_DATA_REGNO (3) == REGNO))
79 /* For the default ABI, we rename registers at output-time to fill the gap
80 between the (statically partitioned) saved registers and call-clobbered
81 registers. In effect this makes unused call-saved registers to be used
82 as call-clobbered registers. The benefit comes from keeping the number
83 of local registers (value of rL) low, since there's a cost of
84 increasing rL and clearing unused (unset) registers with lower numbers.
85 Don't translate while outputting the prologue. */
86 #define MMIX_OUTPUT_REGNO(N) \
88 || (int) (N) < MMIX_RETURN_VALUE_REGNUM \
89 || (int) (N) > MMIX_LAST_STACK_REGISTER_REGNUM \
91 || cfun->machine == NULL \
92 || cfun->machine->in_prologue \
93 ? (N) : ((N) - MMIX_RETURN_VALUE_REGNUM \
94 + cfun->machine->highest_saved_stack_register + 1))
96 /* The %d in "POP %d,0". */
97 #define MMIX_POP_ARGUMENT() \
99 && current_function_return_rtx != NULL \
100 && ! current_function_returns_struct) \
101 ? (GET_CODE (current_function_return_rtx) == PARALLEL \
102 ? GET_NUM_ELEM (XVEC (current_function_return_rtx, 0)) : 1) \
105 /* The canonical saved comparison operands for non-cc0 machines, set in
106 the compare expander. */
107 rtx mmix_compare_op0
;
108 rtx mmix_compare_op1
;
110 /* Declarations of locals. */
112 /* Intermediate for insn output. */
113 static int mmix_output_destination_register
;
115 static void mmix_output_shiftvalue_op_from_str
116 (FILE *, const char *, HOST_WIDEST_INT
);
117 static void mmix_output_shifted_value (FILE *, HOST_WIDEST_INT
);
118 static void mmix_output_condition (FILE *, rtx
, int);
119 static HOST_WIDEST_INT
mmix_intval (rtx
);
120 static void mmix_output_octa (FILE *, HOST_WIDEST_INT
, int);
121 static bool mmix_assemble_integer (rtx
, unsigned int, int);
122 static struct machine_function
*mmix_init_machine_status (void);
123 static void mmix_encode_section_info (tree
, rtx
, int);
124 static const char *mmix_strip_name_encoding (const char *);
125 static void mmix_emit_sp_add (HOST_WIDE_INT offset
);
126 static void mmix_target_asm_function_prologue (FILE *, HOST_WIDE_INT
);
127 static void mmix_target_asm_function_end_prologue (FILE *);
128 static void mmix_target_asm_function_epilogue (FILE *, HOST_WIDE_INT
);
129 static void mmix_reorg (void);
130 static void mmix_asm_output_mi_thunk
131 (FILE *, tree
, HOST_WIDE_INT
, HOST_WIDE_INT
, tree
);
132 static void mmix_setup_incoming_varargs
133 (CUMULATIVE_ARGS
*, enum machine_mode
, tree
, int *, int);
134 static void mmix_file_start (void);
135 static void mmix_file_end (void);
136 static bool mmix_rtx_costs (rtx
, int, int, int *);
137 static rtx
mmix_struct_value_rtx (tree
, int);
138 static bool mmix_pass_by_reference (const CUMULATIVE_ARGS
*,
139 enum machine_mode
, tree
, bool);
141 /* Target structure macros. Listed by node. See `Using and Porting GCC'
142 for a general description. */
144 /* Node: Function Entry */
146 #undef TARGET_ASM_BYTE_OP
147 #define TARGET_ASM_BYTE_OP NULL
148 #undef TARGET_ASM_ALIGNED_HI_OP
149 #define TARGET_ASM_ALIGNED_HI_OP NULL
150 #undef TARGET_ASM_ALIGNED_SI_OP
151 #define TARGET_ASM_ALIGNED_SI_OP NULL
152 #undef TARGET_ASM_ALIGNED_DI_OP
153 #define TARGET_ASM_ALIGNED_DI_OP NULL
154 #undef TARGET_ASM_INTEGER
155 #define TARGET_ASM_INTEGER mmix_assemble_integer
157 #undef TARGET_ASM_FUNCTION_PROLOGUE
158 #define TARGET_ASM_FUNCTION_PROLOGUE mmix_target_asm_function_prologue
160 #undef TARGET_ASM_FUNCTION_END_PROLOGUE
161 #define TARGET_ASM_FUNCTION_END_PROLOGUE mmix_target_asm_function_end_prologue
163 #undef TARGET_ASM_FUNCTION_EPILOGUE
164 #define TARGET_ASM_FUNCTION_EPILOGUE mmix_target_asm_function_epilogue
166 #undef TARGET_ENCODE_SECTION_INFO
167 #define TARGET_ENCODE_SECTION_INFO mmix_encode_section_info
168 #undef TARGET_STRIP_NAME_ENCODING
169 #define TARGET_STRIP_NAME_ENCODING mmix_strip_name_encoding
171 #undef TARGET_ASM_OUTPUT_MI_THUNK
172 #define TARGET_ASM_OUTPUT_MI_THUNK mmix_asm_output_mi_thunk
173 #undef TARGET_ASM_CAN_OUTPUT_MI_THUNK
174 #define TARGET_ASM_CAN_OUTPUT_MI_THUNK default_can_output_mi_thunk_no_vcall
175 #undef TARGET_ASM_FILE_START
176 #define TARGET_ASM_FILE_START mmix_file_start
177 #undef TARGET_ASM_FILE_START_FILE_DIRECTIVE
178 #define TARGET_ASM_FILE_START_FILE_DIRECTIVE true
179 #undef TARGET_ASM_FILE_END
180 #define TARGET_ASM_FILE_END mmix_file_end
182 #undef TARGET_RTX_COSTS
183 #define TARGET_RTX_COSTS mmix_rtx_costs
184 #undef TARGET_ADDRESS_COST
185 #define TARGET_ADDRESS_COST hook_int_rtx_0
187 #undef TARGET_MACHINE_DEPENDENT_REORG
188 #define TARGET_MACHINE_DEPENDENT_REORG mmix_reorg
190 #undef TARGET_PROMOTE_FUNCTION_ARGS
191 #define TARGET_PROMOTE_FUNCTION_ARGS hook_bool_tree_true
193 /* Apparently not doing TRT if int < register-size. FIXME: Perhaps
194 FUNCTION_VALUE and LIBCALL_VALUE needs tweaking as some ports say. */
195 #undef TARGET_PROMOTE_FUNCTION_RETURN
196 #define TARGET_PROMOTE_FUNCTION_RETURN hook_bool_tree_true
199 #undef TARGET_STRUCT_VALUE_RTX
200 #define TARGET_STRUCT_VALUE_RTX mmix_struct_value_rtx
201 #undef TARGET_SETUP_INCOMING_VARARGS
202 #define TARGET_SETUP_INCOMING_VARARGS mmix_setup_incoming_varargs
203 #undef TARGET_PASS_BY_REFERENCE
204 #define TARGET_PASS_BY_REFERENCE mmix_pass_by_reference
205 #undef TARGET_CALLEE_COPIES
206 #define TARGET_CALLEE_COPIES hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true
207 #undef TARGET_DEFAULT_TARGET_FLAGS
208 #define TARGET_DEFAULT_TARGET_FLAGS TARGET_DEFAULT
210 struct gcc_target targetm
= TARGET_INITIALIZER
;
212 /* Functions that are expansions for target macros.
213 See Target Macros in `Using and Porting GCC'. */
215 /* OVERRIDE_OPTIONS. */
218 mmix_override_options (void)
220 /* Should we err or should we warn? Hmm. At least we must neutralize
221 it. For example the wrong kind of case-tables will be generated with
222 PIC; we use absolute address items for mmixal compatibility. FIXME:
223 They could be relative if we just elide them to after all pertinent
227 warning (0, "-f%s not supported: ignored", (flag_pic
> 1) ? "PIC" : "pic");
232 /* INIT_EXPANDERS. */
235 mmix_init_expanders (void)
237 init_machine_status
= mmix_init_machine_status
;
240 /* Set the per-function data. */
242 static struct machine_function
*
243 mmix_init_machine_status (void)
245 return ggc_alloc_cleared (sizeof (struct machine_function
));
249 We have trouble getting the address of stuff that is located at other
250 than 32-bit alignments (GETA requirements), so try to give everything
251 at least 32-bit alignment. */
254 mmix_data_alignment (tree type ATTRIBUTE_UNUSED
, int basic_align
)
256 if (basic_align
< 32)
262 /* CONSTANT_ALIGNMENT. */
265 mmix_constant_alignment (tree constant ATTRIBUTE_UNUSED
, int basic_align
)
267 if (basic_align
< 32)
273 /* LOCAL_ALIGNMENT. */
276 mmix_local_alignment (tree type ATTRIBUTE_UNUSED
, int basic_align
)
278 if (basic_align
< 32)
284 /* CONDITIONAL_REGISTER_USAGE. */
287 mmix_conditional_register_usage (void)
293 static const int gnu_abi_reg_alloc_order
[]
294 = MMIX_GNU_ABI_REG_ALLOC_ORDER
;
296 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
297 reg_alloc_order
[i
] = gnu_abi_reg_alloc_order
[i
];
299 /* Change the default from the mmixware ABI. For the GNU ABI,
300 $15..$30 are call-saved just as $0..$14. There must be one
301 call-clobbered local register for the "hole" that holds the
302 number of saved local registers saved by PUSHJ/PUSHGO during the
303 function call, receiving the return value at return. So best is
304 to use the highest, $31. It's already marked call-clobbered for
306 for (i
= 15; i
<= 30; i
++)
307 call_used_regs
[i
] = 0;
309 /* "Unfix" the parameter registers. */
310 for (i
= MMIX_RESERVED_GNU_ARG_0_REGNUM
;
311 i
< MMIX_RESERVED_GNU_ARG_0_REGNUM
+ MMIX_MAX_ARGS_IN_REGS
;
316 /* Step over the ":" in special register names. */
317 if (! TARGET_TOPLEVEL_SYMBOLS
)
318 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
319 if (reg_names
[i
][0] == ':')
324 All registers that are part of the register stack and that will be
328 mmix_local_regno (int regno
)
330 return regno
<= MMIX_LAST_STACK_REGISTER_REGNUM
&& !call_used_regs
[regno
];
333 /* PREFERRED_RELOAD_CLASS.
334 We need to extend the reload class of REMAINDER_REG and HIMULT_REG. */
337 mmix_preferred_reload_class (rtx x ATTRIBUTE_UNUSED
, enum reg_class
class)
339 /* FIXME: Revisit. */
340 return GET_CODE (x
) == MOD
&& GET_MODE (x
) == DImode
341 ? REMAINDER_REG
: class;
344 /* PREFERRED_OUTPUT_RELOAD_CLASS.
345 We need to extend the reload class of REMAINDER_REG and HIMULT_REG. */
348 mmix_preferred_output_reload_class (rtx x ATTRIBUTE_UNUSED
,
349 enum reg_class
class)
351 /* FIXME: Revisit. */
352 return GET_CODE (x
) == MOD
&& GET_MODE (x
) == DImode
353 ? REMAINDER_REG
: class;
356 /* SECONDARY_RELOAD_CLASS.
357 We need to reload regs of REMAINDER_REG and HIMULT_REG elsewhere. */
360 mmix_secondary_reload_class (enum reg_class
class,
361 enum machine_mode mode ATTRIBUTE_UNUSED
,
362 rtx x ATTRIBUTE_UNUSED
,
363 int in_p ATTRIBUTE_UNUSED
)
365 if (class == REMAINDER_REG
366 || class == HIMULT_REG
367 || class == SYSTEM_REGS
)
373 /* CONST_OK_FOR_LETTER_P. */
376 mmix_const_ok_for_letter_p (HOST_WIDE_INT value
, int c
)
379 (c
== 'I' ? value
>= 0 && value
<= 255
380 : c
== 'J' ? value
>= 0 && value
<= 65535
381 : c
== 'K' ? value
<= 0 && value
>= -255
382 : c
== 'L' ? mmix_shiftable_wyde_value (value
)
383 : c
== 'M' ? value
== 0
384 : c
== 'N' ? mmix_shiftable_wyde_value (~value
)
385 : c
== 'O' ? (value
== 3 || value
== 5 || value
== 9
390 /* CONST_DOUBLE_OK_FOR_LETTER_P. */
393 mmix_const_double_ok_for_letter_p (rtx value
, int c
)
396 (c
== 'G' ? value
== CONST0_RTX (GET_MODE (value
))
401 We need this since our constants are not always expressible as
402 CONST_INT:s, but rather often as CONST_DOUBLE:s. */
405 mmix_extra_constraint (rtx x
, int c
, int strict
)
407 HOST_WIDEST_INT value
;
409 /* When checking for an address, we need to handle strict vs. non-strict
410 register checks. Don't use address_operand, but instead its
411 equivalent (its callee, which it is just a wrapper for),
412 memory_operand_p and the strict-equivalent strict_memory_address_p. */
416 ? strict_memory_address_p (Pmode
, x
)
417 : memory_address_p (Pmode
, x
);
419 /* R asks whether x is to be loaded with GETA or something else. Right
420 now, only a SYMBOL_REF and LABEL_REF can fit for
421 TARGET_BASE_ADDRESSES.
423 Only constant symbolic addresses apply. With TARGET_BASE_ADDRESSES,
424 we just allow straight LABEL_REF or SYMBOL_REFs with SYMBOL_REF_FLAG
425 set right now; only function addresses and code labels. If we change
426 to let SYMBOL_REF_FLAG be set on other symbols, we have to check
427 inside CONST expressions. When TARGET_BASE_ADDRESSES is not in
428 effect, a "raw" constant check together with mmix_constant_address_p
429 is all that's needed; we want all constant addresses to be loaded
433 GET_CODE (x
) != CONST_INT
&& GET_CODE (x
) != CONST_DOUBLE
434 && mmix_constant_address_p (x
)
435 && (! TARGET_BASE_ADDRESSES
436 || (GET_CODE (x
) == LABEL_REF
437 || (GET_CODE (x
) == SYMBOL_REF
&& SYMBOL_REF_FLAG (x
))));
439 if (GET_CODE (x
) != CONST_DOUBLE
|| GET_MODE (x
) != VOIDmode
)
442 value
= mmix_intval (x
);
444 /* We used to map Q->J, R->K, S->L, T->N, U->O, but we don't have to any
445 more ('U' taken for address_operand, 'R' similarly). Some letters map
446 outside of CONST_INT, though; we still use 'S' and 'T'. */
448 return mmix_shiftable_wyde_value (value
);
450 return mmix_shiftable_wyde_value (~value
);
454 /* DYNAMIC_CHAIN_ADDRESS. */
457 mmix_dynamic_chain_address (rtx frame
)
459 /* FIXME: the frame-pointer is stored at offset -8 from the current
460 frame-pointer. Unfortunately, the caller assumes that a
461 frame-pointer is present for *all* previous frames. There should be
462 a way to say that that cannot be done, like for RETURN_ADDR_RTX. */
463 return plus_constant (frame
, -8);
466 /* STARTING_FRAME_OFFSET. */
469 mmix_starting_frame_offset (void)
471 /* The old frame pointer is in the slot below the new one, so
472 FIRST_PARM_OFFSET does not need to depend on whether the
473 frame-pointer is needed or not. We have to adjust for the register
474 stack pointer being located below the saved frame pointer.
475 Similarly, we store the return address on the stack too, for
476 exception handling, and always if we save the register stack pointer. */
479 + (MMIX_CFUN_HAS_LANDING_PAD
480 ? -16 : (MMIX_CFUN_NEEDS_SAVED_EH_RETURN_ADDRESS
? -8 : 0)));
483 /* RETURN_ADDR_RTX. */
486 mmix_return_addr_rtx (int count
, rtx frame ATTRIBUTE_UNUSED
)
489 ? (MMIX_CFUN_NEEDS_SAVED_EH_RETURN_ADDRESS
490 /* FIXME: Set frame_alias_set on the following. (Why?)
491 See mmix_initial_elimination_offset for the reason we can't use
492 get_hard_reg_initial_val for both. Always using a stack slot
493 and not a register would be suboptimal. */
494 ? validize_mem (gen_rtx_MEM (Pmode
, plus_constant (frame_pointer_rtx
, -16)))
495 : get_hard_reg_initial_val (Pmode
, MMIX_INCOMING_RETURN_ADDRESS_REGNUM
))
499 /* SETUP_FRAME_ADDRESSES. */
502 mmix_setup_frame_addresses (void)
504 /* Nothing needed at the moment. */
507 /* The difference between the (imaginary) frame pointer and the stack
508 pointer. Used to eliminate the frame pointer. */
511 mmix_initial_elimination_offset (int fromreg
, int toreg
)
515 = (get_frame_size () + current_function_outgoing_args_size
+ 7) & ~7;
517 /* There is no actual offset between these two virtual values, but for
518 the frame-pointer, we have the old one in the stack position below
519 it, so the offset for the frame-pointer to the stack-pointer is one
521 if (fromreg
== MMIX_ARG_POINTER_REGNUM
522 && toreg
== MMIX_FRAME_POINTER_REGNUM
)
525 /* The difference is the size of local variables plus the size of
526 outgoing function arguments that would normally be passed as
527 registers but must be passed on stack because we're out of
528 function-argument registers. Only global saved registers are
529 counted; the others go on the register stack.
531 The frame-pointer is counted too if it is what is eliminated, as we
532 need to balance the offset for it from STARTING_FRAME_OFFSET.
534 Also add in the slot for the register stack pointer we save if we
537 Unfortunately, we can't access $0..$14, from unwinder code easily, so
538 store the return address in a frame slot too. FIXME: Only for
539 non-leaf functions. FIXME: Always with a landing pad, because it's
540 hard to know whether we need the other at the time we know we need
541 the offset for one (and have to state it). It's a kludge until we
542 can express the register stack in the EH frame info.
544 We have to do alignment here; get_frame_size will not return a
545 multiple of STACK_BOUNDARY. FIXME: Add note in manual. */
547 for (regno
= MMIX_FIRST_GLOBAL_REGNUM
;
550 if ((regs_ever_live
[regno
] && ! call_used_regs
[regno
])
551 || IS_MMIX_EH_RETURN_DATA_REG (regno
))
555 + (MMIX_CFUN_HAS_LANDING_PAD
556 ? 16 : (MMIX_CFUN_NEEDS_SAVED_EH_RETURN_ADDRESS
? 8 : 0))
557 + (fromreg
== MMIX_ARG_POINTER_REGNUM
? 0 : 8);
560 /* Return an rtx for a function argument to go in a register, and 0 for
561 one that must go on stack. */
564 mmix_function_arg (const CUMULATIVE_ARGS
*argsp
,
565 enum machine_mode mode
,
567 int named ATTRIBUTE_UNUSED
,
570 /* Last-argument marker. */
571 if (type
== void_type_node
)
572 return (argsp
->regs
< MMIX_MAX_ARGS_IN_REGS
)
575 ? MMIX_FIRST_INCOMING_ARG_REGNUM
576 : MMIX_FIRST_ARG_REGNUM
) + argsp
->regs
)
579 return (argsp
->regs
< MMIX_MAX_ARGS_IN_REGS
580 && !targetm
.calls
.must_pass_in_stack (mode
, type
)
581 && (GET_MODE_BITSIZE (mode
) <= 64
586 ? MMIX_FIRST_INCOMING_ARG_REGNUM
587 : MMIX_FIRST_ARG_REGNUM
)
592 /* Returns nonzero for everything that goes by reference, 0 for
593 everything that goes by value. */
596 mmix_pass_by_reference (const CUMULATIVE_ARGS
*argsp
, enum machine_mode mode
,
597 tree type
, bool named ATTRIBUTE_UNUSED
)
599 /* FIXME: Check: I'm not sure the must_pass_in_stack check is
601 if (targetm
.calls
.must_pass_in_stack (mode
, type
))
604 if (MMIX_FUNCTION_ARG_SIZE (mode
, type
) > 8
606 && (!argsp
|| !argsp
->lib
))
612 /* Return nonzero if regno is a register number where a parameter is
613 passed, and 0 otherwise. */
616 mmix_function_arg_regno_p (int regno
, int incoming
)
619 = incoming
? MMIX_FIRST_INCOMING_ARG_REGNUM
: MMIX_FIRST_ARG_REGNUM
;
621 return regno
>= first_arg_regnum
622 && regno
< first_arg_regnum
+ MMIX_MAX_ARGS_IN_REGS
;
625 /* FUNCTION_OUTGOING_VALUE. */
628 mmix_function_outgoing_value (tree valtype
, tree func ATTRIBUTE_UNUSED
)
630 enum machine_mode mode
= TYPE_MODE (valtype
);
631 enum machine_mode cmode
;
632 int first_val_regnum
= MMIX_OUTGOING_RETURN_VALUE_REGNUM
;
633 rtx vec
[MMIX_MAX_REGS_FOR_VALUE
];
637 /* Return values that fit in a register need no special handling.
638 There's no register hole when parameters are passed in global
641 || GET_MODE_BITSIZE (mode
) <= BITS_PER_WORD
)
643 gen_rtx_REG (mode
, MMIX_OUTGOING_RETURN_VALUE_REGNUM
);
645 if (COMPLEX_MODE_P (mode
))
646 /* A complex type, made up of components. */
647 cmode
= TYPE_MODE (TREE_TYPE (valtype
));
650 /* Of the other larger-than-register modes, we only support
651 scalar mode TImode. (At least, that's the only one that's
652 been rudimentally tested.) Make sure we're alerted for
655 sorry ("support for mode %qs", GET_MODE_NAME (mode
));
657 /* In any case, we will fill registers to the natural size. */
661 nregs
= ((GET_MODE_BITSIZE (mode
) + BITS_PER_WORD
- 1) / BITS_PER_WORD
);
663 /* We need to take care of the effect of the register hole on return
664 values of large sizes; the last register will appear as the first
665 register, with the rest shifted. (For complex modes, this is just
666 swapped registers.) */
668 if (nregs
> MMIX_MAX_REGS_FOR_VALUE
)
669 internal_error ("too large function value type, needs %d registers,\
670 have only %d registers for this", nregs
, MMIX_MAX_REGS_FOR_VALUE
);
672 /* FIXME: Maybe we should handle structure values like this too
673 (adjusted for BLKmode), perhaps for both ABI:s. */
674 for (i
= 0; i
< nregs
- 1; i
++)
676 = gen_rtx_EXPR_LIST (VOIDmode
,
677 gen_rtx_REG (cmode
, first_val_regnum
+ i
),
678 GEN_INT ((i
+ 1) * BITS_PER_UNIT
));
681 = gen_rtx_EXPR_LIST (VOIDmode
,
682 gen_rtx_REG (cmode
, first_val_regnum
+ nregs
- 1),
685 return gen_rtx_PARALLEL (VOIDmode
, gen_rtvec_v (nregs
, vec
));
688 /* FUNCTION_VALUE_REGNO_P. */
691 mmix_function_value_regno_p (int regno
)
693 return regno
== MMIX_RETURN_VALUE_REGNUM
;
696 /* EH_RETURN_DATA_REGNO. */
699 mmix_eh_return_data_regno (int n
)
702 return MMIX_EH_RETURN_DATA_REGNO_START
+ n
;
704 return INVALID_REGNUM
;
707 /* EH_RETURN_STACKADJ_RTX. */
710 mmix_eh_return_stackadj_rtx (void)
712 return gen_rtx_REG (Pmode
, MMIX_EH_RETURN_STACKADJ_REGNUM
);
715 /* EH_RETURN_HANDLER_RTX. */
718 mmix_eh_return_handler_rtx (void)
720 return gen_rtx_REG (Pmode
, MMIX_INCOMING_RETURN_ADDRESS_REGNUM
);
723 /* ASM_PREFERRED_EH_DATA_FORMAT. */
726 mmix_asm_preferred_eh_data_format (int code ATTRIBUTE_UNUSED
,
727 int global ATTRIBUTE_UNUSED
)
729 /* This is the default (was at 2001-07-20). Revisit when needed. */
730 return DW_EH_PE_absptr
;
733 /* Make a note that we've seen the beginning of the prologue. This
734 matters to whether we'll translate register numbers as calculated by
738 mmix_target_asm_function_prologue (FILE *stream ATTRIBUTE_UNUSED
,
739 HOST_WIDE_INT framesize ATTRIBUTE_UNUSED
)
741 cfun
->machine
->in_prologue
= 1;
744 /* Make a note that we've seen the end of the prologue. */
747 mmix_target_asm_function_end_prologue (FILE *stream ATTRIBUTE_UNUSED
)
749 cfun
->machine
->in_prologue
= 0;
752 /* Implement TARGET_MACHINE_DEPENDENT_REORG. No actual rearrangements
753 done here; just virtually by calculating the highest saved stack
754 register number used to modify the register numbers at output time. */
761 /* We put the number of the highest saved register-file register in a
762 location convenient for the call-patterns to output. Note that we
763 don't tell dwarf2 about these registers, since it can't restore them
765 for (regno
= MMIX_LAST_STACK_REGISTER_REGNUM
;
768 if ((regs_ever_live
[regno
] && !call_used_regs
[regno
])
769 || (regno
== MMIX_FRAME_POINTER_REGNUM
&& frame_pointer_needed
))
772 /* Regardless of whether they're saved (they might be just read), we
773 mustn't include registers that carry parameters. We could scan the
774 insns to see whether they're actually used (and indeed do other less
775 trivial register usage analysis and transformations), but it seems
776 wasteful to optimize for unused parameter registers. As of
777 2002-04-30, regs_ever_live[n] seems to be set for only-reads too, but
778 that might change. */
779 if (!TARGET_ABI_GNU
&& regno
< current_function_args_info
.regs
- 1)
781 regno
= current_function_args_info
.regs
- 1;
783 /* We don't want to let this cause us to go over the limit and make
784 incoming parameter registers be misnumbered and treating the last
785 parameter register and incoming return value register call-saved.
786 Stop things at the unmodified scheme. */
787 if (regno
> MMIX_RETURN_VALUE_REGNUM
- 1)
788 regno
= MMIX_RETURN_VALUE_REGNUM
- 1;
791 cfun
->machine
->highest_saved_stack_register
= regno
;
794 /* TARGET_ASM_FUNCTION_EPILOGUE. */
797 mmix_target_asm_function_epilogue (FILE *stream
,
798 HOST_WIDE_INT locals_size ATTRIBUTE_UNUSED
)
800 /* Emit an \n for readability of the generated assembly. */
801 fputc ('\n', stream
);
804 /* TARGET_ASM_OUTPUT_MI_THUNK. */
807 mmix_asm_output_mi_thunk (FILE *stream
,
808 tree fndecl ATTRIBUTE_UNUSED
,
810 HOST_WIDE_INT vcall_offset ATTRIBUTE_UNUSED
,
813 /* If you define TARGET_STRUCT_VALUE_RTX that returns 0 (i.e. pass
814 location of structure to return as invisible first argument), you
815 need to tweak this code too. */
816 const char *regname
= reg_names
[MMIX_FIRST_INCOMING_ARG_REGNUM
];
818 if (delta
>= 0 && delta
< 65536)
819 fprintf (stream
, "\tINCL %s,%d\n", regname
, (int)delta
);
820 else if (delta
< 0 && delta
>= -255)
821 fprintf (stream
, "\tSUBU %s,%s,%d\n", regname
, regname
, (int)-delta
);
824 mmix_output_register_setting (stream
, 255, delta
, 1);
825 fprintf (stream
, "\tADDU %s,%s,$255\n", regname
, regname
);
828 fprintf (stream
, "\tJMP ");
829 assemble_name (stream
, XSTR (XEXP (DECL_RTL (func
), 0), 0));
830 fprintf (stream
, "\n");
833 /* FUNCTION_PROFILER. */
836 mmix_function_profiler (FILE *stream ATTRIBUTE_UNUSED
,
837 int labelno ATTRIBUTE_UNUSED
)
839 sorry ("function_profiler support for MMIX");
842 /* Worker function for TARGET_SETUP_INCOMING_VARARGS. For the moment,
843 let's stick to pushing argument registers on the stack. Later, we
844 can parse all arguments in registers, to improve performance. */
847 mmix_setup_incoming_varargs (CUMULATIVE_ARGS
*args_so_farp
,
848 enum machine_mode mode
,
851 int second_time ATTRIBUTE_UNUSED
)
853 /* The last named variable has been handled, but
854 args_so_farp has not been advanced for it. */
855 if (args_so_farp
->regs
+ 1 < MMIX_MAX_ARGS_IN_REGS
)
856 *pretend_sizep
= (MMIX_MAX_ARGS_IN_REGS
- (args_so_farp
->regs
+ 1)) * 8;
858 /* We assume that one argument takes up one register here. That should
859 be true until we start messing with multi-reg parameters. */
860 if ((7 + (MMIX_FUNCTION_ARG_SIZE (mode
, vartype
))) / 8 != 1)
861 internal_error ("MMIX Internal: Last named vararg would not fit in a register");
864 /* TRAMPOLINE_SIZE. */
865 /* Four 4-byte insns plus two 8-byte values. */
866 int mmix_trampoline_size
= 32;
869 /* TRAMPOLINE_TEMPLATE. */
872 mmix_trampoline_template (FILE *stream
)
874 /* Read a value into the static-chain register and jump somewhere. The
875 static chain is stored at offset 16, and the function address is
876 stored at offset 24. */
877 /* FIXME: GCC copies this using *intsize* (tetra), when it should use
878 register size (octa). */
879 fprintf (stream
, "\tGETA $255,1F\n\t");
880 fprintf (stream
, "LDOU %s,$255,0\n\t",
881 reg_names
[MMIX_STATIC_CHAIN_REGNUM
]);
882 fprintf (stream
, "LDOU $255,$255,8\n\t");
883 fprintf (stream
, "GO $255,$255,0\n");
884 fprintf (stream
, "1H\tOCTA 0\n\t");
885 fprintf (stream
, "OCTA 0\n");
888 /* INITIALIZE_TRAMPOLINE. */
889 /* Set the static chain and function pointer field in the trampoline.
890 We also SYNCID here to be sure (doesn't matter in the simulator, but
891 some day it will). */
894 mmix_initialize_trampoline (rtx trampaddr
, rtx fnaddr
, rtx static_chain
)
896 emit_move_insn (gen_rtx_MEM (DImode
, plus_constant (trampaddr
, 16)),
898 emit_move_insn (gen_rtx_MEM (DImode
,
899 plus_constant (trampaddr
, 24)),
901 emit_insn (gen_sync_icache (validize_mem (gen_rtx_MEM (DImode
,
903 GEN_INT (mmix_trampoline_size
- 1)));
906 /* We must exclude constant addresses that have an increment that is not a
907 multiple of four bytes because of restrictions of the GETA
908 instruction, unless TARGET_BASE_ADDRESSES. */
911 mmix_constant_address_p (rtx x
)
913 RTX_CODE code
= GET_CODE (x
);
915 /* When using "base addresses", anything constant goes. */
916 int constant_ok
= TARGET_BASE_ADDRESSES
!= 0;
925 /* FIXME: Don't know how to dissect these. Avoid them for now,
926 except we know they're constants. */
934 if (GET_MODE (x
) != VOIDmode
)
935 /* Strange that we got here. FIXME: Check if we do. */
937 addend
= CONST_DOUBLE_LOW (x
);
941 /* Note that expressions with arithmetic on forward references don't
942 work in mmixal. People using gcc assembly code with mmixal might
943 need to move arrays and such to before the point of use. */
944 if (GET_CODE (XEXP (x
, 0)) == PLUS
)
946 rtx x0
= XEXP (XEXP (x
, 0), 0);
947 rtx x1
= XEXP (XEXP (x
, 0), 1);
949 if ((GET_CODE (x0
) == SYMBOL_REF
950 || GET_CODE (x0
) == LABEL_REF
)
951 && (GET_CODE (x1
) == CONST_INT
952 || (GET_CODE (x1
) == CONST_DOUBLE
953 && GET_MODE (x1
) == VOIDmode
)))
954 addend
= mmix_intval (x1
);
966 return constant_ok
|| (addend
& 3) == 0;
969 /* Return 1 if the address is OK, otherwise 0.
970 Used by GO_IF_LEGITIMATE_ADDRESS. */
973 mmix_legitimate_address (enum machine_mode mode ATTRIBUTE_UNUSED
,
977 #define MMIX_REG_OK(X) \
979 && (REGNO (X) <= MMIX_LAST_GENERAL_REGISTER \
980 || (reg_renumber[REGNO (X)] > 0 \
981 && reg_renumber[REGNO (X)] <= MMIX_LAST_GENERAL_REGISTER))) \
982 || (!strict_checking \
983 && (REGNO (X) <= MMIX_LAST_GENERAL_REGISTER \
984 || REGNO (X) >= FIRST_PSEUDO_REGISTER \
985 || REGNO (X) == ARG_POINTER_REGNUM)))
990 (mem (plus reg 0..255)).
991 unless TARGET_BASE_ADDRESSES, in which case we accept all
992 (mem constant_address) too. */
996 if (REG_P (x
) && MMIX_REG_OK (x
))
999 if (GET_CODE(x
) == PLUS
)
1001 rtx x1
= XEXP (x
, 0);
1002 rtx x2
= XEXP (x
, 1);
1004 /* Try swapping the order. FIXME: Do we need this? */
1012 /* (mem (plus (reg?) (?))) */
1013 if (!REG_P (x1
) || !MMIX_REG_OK (x1
))
1014 return TARGET_BASE_ADDRESSES
&& mmix_constant_address_p (x
);
1016 /* (mem (plus (reg) (reg?))) */
1017 if (REG_P (x2
) && MMIX_REG_OK (x2
))
1020 /* (mem (plus (reg) (0..255?))) */
1021 if (GET_CODE (x2
) == CONST_INT
1022 && CONST_OK_FOR_LETTER_P (INTVAL (x2
), 'I'))
1028 return TARGET_BASE_ADDRESSES
&& mmix_constant_address_p (x
);
1031 /* LEGITIMATE_CONSTANT_P. */
1034 mmix_legitimate_constant_p (rtx x
)
1036 RTX_CODE code
= GET_CODE (x
);
1038 /* We must allow any number due to the way the cse passes works; if we
1039 do not allow any number here, general_operand will fail, and insns
1040 will fatally fail recognition instead of "softly". */
1041 if (code
== CONST_INT
|| code
== CONST_DOUBLE
)
1044 return CONSTANT_ADDRESS_P (x
);
1047 /* SELECT_CC_MODE. */
1050 mmix_select_cc_mode (RTX_CODE op
, rtx x
, rtx y ATTRIBUTE_UNUSED
)
1052 /* We use CCmode, CC_UNSmode, CC_FPmode, CC_FPEQmode and CC_FUNmode to
1053 output different compare insns. Note that we do not check the
1054 validity of the comparison here. */
1056 if (GET_MODE_CLASS (GET_MODE (x
)) == MODE_FLOAT
)
1058 if (op
== ORDERED
|| op
== UNORDERED
|| op
== UNGE
1059 || op
== UNGT
|| op
== UNLE
|| op
== UNLT
)
1062 if (op
== EQ
|| op
== NE
)
1068 if (op
== GTU
|| op
== LTU
|| op
== GEU
|| op
== LEU
)
1074 /* REVERSIBLE_CC_MODE. */
1077 mmix_reversible_cc_mode (enum machine_mode mode
)
1079 /* That is, all integer and the EQ, NE, ORDERED and UNORDERED float
1081 return mode
!= CC_FPmode
;
1084 /* TARGET_RTX_COSTS. */
1087 mmix_rtx_costs (rtx x ATTRIBUTE_UNUSED
,
1088 int code ATTRIBUTE_UNUSED
,
1089 int outer_code ATTRIBUTE_UNUSED
,
1090 int *total ATTRIBUTE_UNUSED
)
1092 /* For the time being, this is just a stub and we'll accept the
1093 generic calculations, until we can do measurements, at least.
1094 Say we did not modify any calculated costs. */
1098 /* REGISTER_MOVE_COST. */
1101 mmix_register_move_cost (enum machine_mode mode ATTRIBUTE_UNUSED
,
1102 enum reg_class from
,
1105 return (from
== GENERAL_REGS
&& from
== to
) ? 2 : 3;
1108 /* Note that we don't have a TEXT_SECTION_ASM_OP, because it has to be a
1109 compile-time constant; it's used in an asm in crtstuff.c, compiled for
1112 /* DATA_SECTION_ASM_OP. */
1115 mmix_data_section_asm_op (void)
1117 return "\t.data ! mmixal:= 8H LOC 9B";
1121 mmix_encode_section_info (tree decl
, rtx rtl
, int first
)
1123 /* Test for an external declaration, and do nothing if it is one. */
1124 if ((TREE_CODE (decl
) == VAR_DECL
1125 && (DECL_EXTERNAL (decl
) || TREE_PUBLIC (decl
)))
1126 || (TREE_CODE (decl
) == FUNCTION_DECL
&& TREE_PUBLIC (decl
)))
1128 else if (first
&& DECL_P (decl
))
1130 /* For non-visible declarations, add a "@" prefix, which we skip
1131 when the label is output. If the label does not have this
1132 prefix, a ":" is output if -mtoplevel-symbols.
1134 Note that this does not work for data that is declared extern and
1135 later defined as static. If there's code in between, that code
1136 will refer to the extern declaration, and vice versa. This just
1137 means that when -mtoplevel-symbols is in use, we can just handle
1138 well-behaved ISO-compliant code. */
1140 const char *str
= XSTR (XEXP (rtl
, 0), 0);
1141 int len
= strlen (str
);
1144 /* Why is the return type of ggc_alloc_string const? */
1145 newstr
= (char *) ggc_alloc_string ("", len
+ 1);
1147 strcpy (newstr
+ 1, str
);
1149 XSTR (XEXP (rtl
, 0), 0) = newstr
;
1152 /* Set SYMBOL_REF_FLAG for things that we want to access with GETA. We
1153 may need different options to reach for different things with GETA.
1154 For now, functions and things we know or have been told are constant. */
1155 if (TREE_CODE (decl
) == FUNCTION_DECL
1156 || TREE_CONSTANT (decl
)
1157 || (TREE_CODE (decl
) == VAR_DECL
1158 && TREE_READONLY (decl
)
1159 && !TREE_SIDE_EFFECTS (decl
)
1160 && (!DECL_INITIAL (decl
)
1161 || TREE_CONSTANT (DECL_INITIAL (decl
)))))
1162 SYMBOL_REF_FLAG (XEXP (rtl
, 0)) = 1;
1166 mmix_strip_name_encoding (const char *name
)
1168 for (; (*name
== '@' || *name
== '*'); name
++)
1174 /* TARGET_ASM_FILE_START.
1175 We just emit a little comment for the time being. */
1178 mmix_file_start (void)
1180 default_file_start ();
1182 fputs ("! mmixal:= 8H LOC Data_Section\n", asm_out_file
);
1184 /* Make sure each file starts with the text section. */
1188 /* TARGET_ASM_FILE_END. */
1191 mmix_file_end (void)
1193 /* Make sure each file ends with the data section. */
1197 /* ASM_OUTPUT_SOURCE_FILENAME. */
1200 mmix_asm_output_source_filename (FILE *stream
, const char *name
)
1202 fprintf (stream
, "# 1 ");
1203 OUTPUT_QUOTED_STRING (stream
, name
);
1204 fprintf (stream
, "\n");
1207 /* OUTPUT_QUOTED_STRING. */
1210 mmix_output_quoted_string (FILE *stream
, const char *string
, int length
)
1212 const char * string_end
= string
+ length
;
1213 static const char *const unwanted_chars
= "\"[]\\";
1215 /* Output "any character except newline and double quote character". We
1216 play it safe and avoid all control characters too. We also do not
1217 want [] as characters, should input be passed through m4 with [] as
1218 quotes. Further, we avoid "\", because the GAS port handles it as a
1219 quoting character. */
1220 while (string
< string_end
)
1223 && (unsigned char) *string
< 128
1224 && !ISCNTRL (*string
)
1225 && strchr (unwanted_chars
, *string
) == NULL
)
1227 fputc ('"', stream
);
1229 && (unsigned char) *string
< 128
1230 && !ISCNTRL (*string
)
1231 && strchr (unwanted_chars
, *string
) == NULL
1232 && string
< string_end
)
1234 fputc (*string
, stream
);
1237 fputc ('"', stream
);
1238 if (string
< string_end
)
1239 fprintf (stream
, ",");
1241 if (string
< string_end
)
1243 fprintf (stream
, "#%x", *string
& 255);
1245 if (string
< string_end
)
1246 fprintf (stream
, ",");
1251 /* Target hook for assembling integer objects. Use mmix_print_operand
1252 for WYDE and TETRA. Use mmix_output_octa to output 8-byte
1256 mmix_assemble_integer (rtx x
, unsigned int size
, int aligned_p
)
1261 /* We handle a limited number of types of operands in here. But
1262 that's ok, because we can punt to generic functions. We then
1263 pretend that aligned data isn't needed, so the usual .<pseudo>
1264 syntax is used (which works for aligned data too). We actually
1265 *must* do that, since we say we don't have simple aligned
1266 pseudos, causing this function to be called. We just try and
1267 keep as much compatibility as possible with mmixal syntax for
1268 normal cases (i.e. without GNU extensions and C only). */
1270 if (GET_CODE (x
) != CONST_INT
)
1275 fputs ("\tBYTE\t", asm_out_file
);
1276 mmix_print_operand (asm_out_file
, x
, 'B');
1277 fputc ('\n', asm_out_file
);
1281 if (GET_CODE (x
) != CONST_INT
)
1286 fputs ("\tWYDE\t", asm_out_file
);
1287 mmix_print_operand (asm_out_file
, x
, 'W');
1288 fputc ('\n', asm_out_file
);
1292 if (GET_CODE (x
) != CONST_INT
)
1297 fputs ("\tTETRA\t", asm_out_file
);
1298 mmix_print_operand (asm_out_file
, x
, 'L');
1299 fputc ('\n', asm_out_file
);
1303 /* We don't get here anymore for CONST_DOUBLE, because DImode
1304 isn't expressed as CONST_DOUBLE, and DFmode is handled
1306 gcc_assert (GET_CODE (x
) != CONST_DOUBLE
);
1307 assemble_integer_with_op ("\tOCTA\t", x
);
1310 return default_assemble_integer (x
, size
, aligned_p
);
1313 /* ASM_OUTPUT_ASCII. */
1316 mmix_asm_output_ascii (FILE *stream
, const char *string
, int length
)
1320 int chunk_size
= length
> 60 ? 60 : length
;
1321 fprintf (stream
, "\tBYTE ");
1322 mmix_output_quoted_string (stream
, string
, chunk_size
);
1323 string
+= chunk_size
;
1324 length
-= chunk_size
;
1325 fprintf (stream
, "\n");
1329 /* ASM_OUTPUT_ALIGNED_COMMON. */
1332 mmix_asm_output_aligned_common (FILE *stream
,
1337 /* This is mostly the elfos.h one. There doesn't seem to be a way to
1338 express this in a mmixal-compatible way. */
1339 fprintf (stream
, "\t.comm\t");
1340 assemble_name (stream
, name
);
1341 fprintf (stream
, ",%u,%u ! mmixal-incompatible COMMON\n",
1342 size
, align
/ BITS_PER_UNIT
);
1345 /* ASM_OUTPUT_ALIGNED_LOCAL. */
1348 mmix_asm_output_aligned_local (FILE *stream
,
1355 ASM_OUTPUT_ALIGN (stream
, exact_log2 (align
/BITS_PER_UNIT
));
1356 assemble_name (stream
, name
);
1357 fprintf (stream
, "\tLOC @+%d\n", size
);
1360 /* ASM_OUTPUT_LABEL. */
1363 mmix_asm_output_label (FILE *stream
, const char *name
)
1365 assemble_name (stream
, name
);
1366 fprintf (stream
, "\tIS @\n");
1369 /* ASM_OUTPUT_INTERNAL_LABEL. */
1372 mmix_asm_output_internal_label (FILE *stream
, const char *name
)
1374 assemble_name_raw (stream
, name
);
1375 fprintf (stream
, "\tIS @\n");
1378 /* ASM_DECLARE_REGISTER_GLOBAL. */
1381 mmix_asm_declare_register_global (FILE *stream ATTRIBUTE_UNUSED
,
1382 tree decl ATTRIBUTE_UNUSED
,
1383 int regno ATTRIBUTE_UNUSED
,
1384 const char *name ATTRIBUTE_UNUSED
)
1386 /* Nothing to do here, but there *will* be, therefore the framework is
1390 /* ASM_WEAKEN_LABEL. */
1393 mmix_asm_weaken_label (FILE *stream ATTRIBUTE_UNUSED
,
1394 const char *name ATTRIBUTE_UNUSED
)
1396 fprintf (stream
, "\t.weak ");
1397 assemble_name (stream
, name
);
1398 fprintf (stream
, " ! mmixal-incompatible\n");
1401 /* MAKE_DECL_ONE_ONLY. */
1404 mmix_make_decl_one_only (tree decl
)
1406 DECL_WEAK (decl
) = 1;
1409 /* ASM_OUTPUT_LABELREF.
1410 Strip GCC's '*' and our own '@'. No order is assumed. */
1413 mmix_asm_output_labelref (FILE *stream
, const char *name
)
1417 for (; (*name
== '@' || *name
== '*'); name
++)
1421 asm_fprintf (stream
, "%s%U%s",
1422 is_extern
&& TARGET_TOPLEVEL_SYMBOLS
? ":" : "",
1426 /* ASM_OUTPUT_DEF. */
1429 mmix_asm_output_def (FILE *stream
, const char *name
, const char *value
)
1431 assemble_name (stream
, name
);
1432 fprintf (stream
, "\tIS ");
1433 assemble_name (stream
, value
);
1434 fputc ('\n', stream
);
1437 /* PRINT_OPERAND. */
1440 mmix_print_operand (FILE *stream
, rtx x
, int code
)
1442 /* When we add support for different codes later, we can, when needed,
1443 drop through to the main handler with a modified operand. */
1445 int regno
= x
!= NULL_RTX
&& REG_P (x
) ? REGNO (x
) : 0;
1449 /* Unrelated codes are in alphabetic order. */
1452 /* For conditional branches, output "P" for a probable branch. */
1453 if (TARGET_BRANCH_PREDICT
)
1455 x
= find_reg_note (current_output_insn
, REG_BR_PROB
, 0);
1456 if (x
&& INTVAL (XEXP (x
, 0)) > REG_BR_PROB_BASE
/ 2)
1462 /* For the %d in POP %d,0. */
1463 fprintf (stream
, "%d", MMIX_POP_ARGUMENT ());
1467 if (GET_CODE (x
) != CONST_INT
)
1468 fatal_insn ("MMIX Internal: Expected a CONST_INT, not this", x
);
1469 fprintf (stream
, "%d", (int) (INTVAL (x
) & 0xff));
1473 /* Highpart. Must be general register, and not the last one, as
1474 that one cannot be part of a consecutive register pair. */
1475 if (regno
> MMIX_LAST_GENERAL_REGISTER
- 1)
1476 internal_error ("MMIX Internal: Bad register: %d", regno
);
1478 /* This is big-endian, so the high-part is the first one. */
1479 fprintf (stream
, "%s", reg_names
[MMIX_OUTPUT_REGNO (regno
)]);
1483 /* Lowpart. Must be CONST_INT or general register, and not the last
1484 one, as that one cannot be part of a consecutive register pair. */
1485 if (GET_CODE (x
) == CONST_INT
)
1487 fprintf (stream
, "#%lx",
1488 (unsigned long) (INTVAL (x
)
1489 & ((unsigned int) 0x7fffffff * 2 + 1)));
1493 if (GET_CODE (x
) == SYMBOL_REF
)
1495 output_addr_const (stream
, x
);
1499 if (regno
> MMIX_LAST_GENERAL_REGISTER
- 1)
1500 internal_error ("MMIX Internal: Bad register: %d", regno
);
1502 /* This is big-endian, so the low-part is + 1. */
1503 fprintf (stream
, "%s", reg_names
[MMIX_OUTPUT_REGNO (regno
) + 1]);
1506 /* Can't use 'a' because that's a generic modifier for address
1509 mmix_output_shiftvalue_op_from_str (stream
, "ANDN",
1510 ~(unsigned HOST_WIDEST_INT
)
1515 mmix_output_shiftvalue_op_from_str (stream
, "INC",
1516 (unsigned HOST_WIDEST_INT
)
1521 mmix_output_shiftvalue_op_from_str (stream
, "OR",
1522 (unsigned HOST_WIDEST_INT
)
1527 mmix_output_shiftvalue_op_from_str (stream
, "SET",
1528 (unsigned HOST_WIDEST_INT
)
1534 mmix_output_condition (stream
, x
, (code
== 'D'));
1538 /* Output an extra "e" to make fcmpe, fune. */
1539 if (TARGET_FCMP_EPSILON
)
1540 fprintf (stream
, "e");
1544 /* Output the number minus 1. */
1545 if (GET_CODE (x
) != CONST_INT
)
1547 fatal_insn ("MMIX Internal: Bad value for 'm', not a CONST_INT",
1550 fprintf (stream
, HOST_WIDEST_INT_PRINT_DEC
,
1551 (HOST_WIDEST_INT
) (mmix_intval (x
) - 1));
1555 /* Store the number of registers we want to save. This was setup
1556 by the prologue. The actual operand contains the number of
1557 registers to pass, but we don't use it currently. Anyway, we
1558 need to output the number of saved registers here. */
1559 fprintf (stream
, "%d",
1560 cfun
->machine
->highest_saved_stack_register
+ 1);
1564 /* Store the register to output a constant to. */
1566 fatal_insn ("MMIX Internal: Expected a register, not this", x
);
1567 mmix_output_destination_register
= MMIX_OUTPUT_REGNO (regno
);
1571 /* Output the constant. Note that we use this for floats as well. */
1572 if (GET_CODE (x
) != CONST_INT
1573 && (GET_CODE (x
) != CONST_DOUBLE
1574 || (GET_MODE (x
) != VOIDmode
&& GET_MODE (x
) != DFmode
1575 && GET_MODE (x
) != SFmode
)))
1576 fatal_insn ("MMIX Internal: Expected a constant, not this", x
);
1577 mmix_output_register_setting (stream
,
1578 mmix_output_destination_register
,
1579 mmix_intval (x
), 0);
1583 /* An U for unsigned, if TARGET_ZERO_EXTEND. Ignore the operand. */
1584 if (TARGET_ZERO_EXTEND
)
1589 mmix_output_shifted_value (stream
, (HOST_WIDEST_INT
) mmix_intval (x
));
1593 mmix_output_shifted_value (stream
, (HOST_WIDEST_INT
) ~mmix_intval (x
));
1597 if (GET_CODE (x
) != CONST_INT
)
1598 fatal_insn ("MMIX Internal: Expected a CONST_INT, not this", x
);
1599 fprintf (stream
, "#%x", (int) (INTVAL (x
) & 0xffff));
1603 /* Nothing to do. */
1607 /* Presumably there's a missing case above if we get here. */
1608 internal_error ("MMIX Internal: Missing %qc case in mmix_print_operand", code
);
1611 switch (GET_CODE (modified_x
))
1614 regno
= REGNO (modified_x
);
1615 if (regno
>= FIRST_PSEUDO_REGISTER
)
1616 internal_error ("MMIX Internal: Bad register: %d", regno
);
1617 fprintf (stream
, "%s", reg_names
[MMIX_OUTPUT_REGNO (regno
)]);
1621 output_address (XEXP (modified_x
, 0));
1625 /* For -2147483648, mmixal complains that the constant does not fit
1626 in 4 bytes, so let's output it as hex. Take care to handle hosts
1627 where HOST_WIDE_INT is longer than an int.
1629 Print small constants +-255 using decimal. */
1631 if (INTVAL (modified_x
) > -256 && INTVAL (modified_x
) < 256)
1632 fprintf (stream
, "%d", (int) (INTVAL (modified_x
)));
1634 fprintf (stream
, "#%x",
1635 (int) (INTVAL (modified_x
)) & (unsigned int) ~0);
1639 /* Do somewhat as CONST_INT. */
1640 mmix_output_octa (stream
, mmix_intval (modified_x
), 0);
1644 output_addr_const (stream
, modified_x
);
1648 /* No need to test for all strange things. Let output_addr_const do
1650 if (CONSTANT_P (modified_x
)
1651 /* Strangely enough, this is not included in CONSTANT_P.
1652 FIXME: Ask/check about sanity here. */
1653 || GET_CODE (modified_x
) == CODE_LABEL
)
1655 output_addr_const (stream
, modified_x
);
1659 /* We need the original here. */
1660 fatal_insn ("MMIX Internal: Cannot decode this operand", x
);
1664 /* PRINT_OPERAND_PUNCT_VALID_P. */
1667 mmix_print_operand_punct_valid_p (int code ATTRIBUTE_UNUSED
)
1669 /* A '+' is used for branch prediction, similar to other ports. */
1671 /* A '.' is used for the %d in the POP %d,0 return insn. */
1675 /* PRINT_OPERAND_ADDRESS. */
1678 mmix_print_operand_address (FILE *stream
, rtx x
)
1682 /* I find the generated assembly code harder to read without
1684 fprintf (stream
, "%s,0", reg_names
[MMIX_OUTPUT_REGNO (REGNO (x
))]);
1687 else if (GET_CODE (x
) == PLUS
)
1689 rtx x1
= XEXP (x
, 0);
1690 rtx x2
= XEXP (x
, 1);
1694 fprintf (stream
, "%s,", reg_names
[MMIX_OUTPUT_REGNO (REGNO (x1
))]);
1698 fprintf (stream
, "%s",
1699 reg_names
[MMIX_OUTPUT_REGNO (REGNO (x2
))]);
1702 else if (GET_CODE (x2
) == CONST_INT
1703 && CONST_OK_FOR_LETTER_P (INTVAL (x2
), 'I'))
1705 output_addr_const (stream
, x2
);
1711 if (TARGET_BASE_ADDRESSES
&& mmix_legitimate_constant_p (x
))
1713 output_addr_const (stream
, x
);
1717 fatal_insn ("MMIX Internal: This is not a recognized address", x
);
1720 /* ASM_OUTPUT_REG_PUSH. */
1723 mmix_asm_output_reg_push (FILE *stream
, int regno
)
1725 fprintf (stream
, "\tSUBU %s,%s,8\n\tSTOU %s,%s,0\n",
1726 reg_names
[MMIX_STACK_POINTER_REGNUM
],
1727 reg_names
[MMIX_STACK_POINTER_REGNUM
],
1728 reg_names
[MMIX_OUTPUT_REGNO (regno
)],
1729 reg_names
[MMIX_STACK_POINTER_REGNUM
]);
1732 /* ASM_OUTPUT_REG_POP. */
1735 mmix_asm_output_reg_pop (FILE *stream
, int regno
)
1737 fprintf (stream
, "\tLDOU %s,%s,0\n\tINCL %s,8\n",
1738 reg_names
[MMIX_OUTPUT_REGNO (regno
)],
1739 reg_names
[MMIX_STACK_POINTER_REGNUM
],
1740 reg_names
[MMIX_STACK_POINTER_REGNUM
]);
1743 /* ASM_OUTPUT_ADDR_DIFF_ELT. */
1746 mmix_asm_output_addr_diff_elt (FILE *stream
,
1747 rtx body ATTRIBUTE_UNUSED
,
1751 fprintf (stream
, "\tTETRA L%d-L%d\n", value
, rel
);
1754 /* ASM_OUTPUT_ADDR_VEC_ELT. */
1757 mmix_asm_output_addr_vec_elt (FILE *stream
, int value
)
1759 fprintf (stream
, "\tOCTA L:%d\n", value
);
1762 /* ASM_OUTPUT_SKIP. */
1765 mmix_asm_output_skip (FILE *stream
, int nbytes
)
1767 fprintf (stream
, "\tLOC @+%d\n", nbytes
);
1770 /* ASM_OUTPUT_ALIGN. */
1773 mmix_asm_output_align (FILE *stream
, int power
)
1775 /* We need to record the needed alignment of this section in the object,
1776 so we have to output an alignment directive. Use a .p2align (not
1777 .align) so people will never have to wonder about whether the
1778 argument is in number of bytes or the log2 thereof. We do it in
1779 addition to the LOC directive, so nothing needs tweaking when
1780 copy-pasting assembly into mmixal. */
1781 fprintf (stream
, "\t.p2align %d\n", power
);
1782 fprintf (stream
, "\tLOC @+(%d-@)&%d\n", 1 << power
, (1 << power
) - 1);
1785 /* DBX_REGISTER_NUMBER. */
1788 mmix_dbx_register_number (int regno
)
1790 /* Adjust the register number to the one it will be output as, dammit.
1791 It'd be nice if we could check the assumption that we're filling a
1792 gap, but every register between the last saved register and parameter
1793 registers might be a valid parameter register. */
1794 regno
= MMIX_OUTPUT_REGNO (regno
);
1796 /* We need to renumber registers to get the number of the return address
1797 register in the range 0..255. It is also space-saving if registers
1798 mentioned in the call-frame information (which uses this function by
1799 defaulting DWARF_FRAME_REGNUM to DBX_REGISTER_NUMBER) are numbered
1800 0 .. 63. So map 224 .. 256+15 -> 0 .. 47 and 0 .. 223 -> 48..223+48. */
1801 return regno
>= 224 ? (regno
- 224) : (regno
+ 48);
1804 /* End of target macro support functions.
1806 Now the MMIX port's own functions. First the exported ones. */
1808 /* Wrapper for get_hard_reg_initial_val since integrate.h isn't included
1809 from insn-emit.c. */
1812 mmix_get_hard_reg_initial_val (enum machine_mode mode
, int regno
)
1814 return get_hard_reg_initial_val (mode
, regno
);
1817 /* Nonzero when the function epilogue is simple enough that a single
1818 "POP %d,0" should be used even within the function. */
1821 mmix_use_simple_return (void)
1825 int stack_space_to_allocate
1826 = (current_function_outgoing_args_size
1827 + current_function_pretend_args_size
1828 + get_frame_size () + 7) & ~7;
1830 if (!TARGET_USE_RETURN_INSN
|| !reload_completed
)
1834 regno
>= MMIX_FIRST_GLOBAL_REGNUM
;
1836 /* Note that we assume that the frame-pointer-register is one of these
1837 registers, in which case we don't count it here. */
1838 if ((((regno
!= MMIX_FRAME_POINTER_REGNUM
|| !frame_pointer_needed
)
1839 && regs_ever_live
[regno
] && !call_used_regs
[regno
]))
1840 || IS_MMIX_EH_RETURN_DATA_REG (regno
))
1843 if (frame_pointer_needed
)
1844 stack_space_to_allocate
+= 8;
1846 if (MMIX_CFUN_HAS_LANDING_PAD
)
1847 stack_space_to_allocate
+= 16;
1848 else if (MMIX_CFUN_NEEDS_SAVED_EH_RETURN_ADDRESS
)
1849 stack_space_to_allocate
+= 8;
1851 return stack_space_to_allocate
== 0;
1855 /* Expands the function prologue into RTX. */
1858 mmix_expand_prologue (void)
1860 HOST_WIDE_INT locals_size
= get_frame_size ();
1862 HOST_WIDE_INT stack_space_to_allocate
1863 = (current_function_outgoing_args_size
1864 + current_function_pretend_args_size
1865 + locals_size
+ 7) & ~7;
1866 HOST_WIDE_INT offset
= -8;
1868 /* Add room needed to save global non-register-stack registers. */
1870 regno
>= MMIX_FIRST_GLOBAL_REGNUM
;
1872 /* Note that we assume that the frame-pointer-register is one of these
1873 registers, in which case we don't count it here. */
1874 if ((((regno
!= MMIX_FRAME_POINTER_REGNUM
|| !frame_pointer_needed
)
1875 && regs_ever_live
[regno
] && !call_used_regs
[regno
]))
1876 || IS_MMIX_EH_RETURN_DATA_REG (regno
))
1877 stack_space_to_allocate
+= 8;
1879 /* If we do have a frame-pointer, add room for it. */
1880 if (frame_pointer_needed
)
1881 stack_space_to_allocate
+= 8;
1883 /* If we have a non-local label, we need to be able to unwind to it, so
1884 store the current register stack pointer. Also store the return
1885 address if we do that. */
1886 if (MMIX_CFUN_HAS_LANDING_PAD
)
1887 stack_space_to_allocate
+= 16;
1888 else if (MMIX_CFUN_NEEDS_SAVED_EH_RETURN_ADDRESS
)
1889 /* If we do have a saved return-address slot, add room for it. */
1890 stack_space_to_allocate
+= 8;
1892 /* Make sure we don't get an unaligned stack. */
1893 if ((stack_space_to_allocate
% 8) != 0)
1894 internal_error ("stack frame not a multiple of 8 bytes: %wd",
1895 stack_space_to_allocate
);
1897 if (current_function_pretend_args_size
)
1899 int mmix_first_vararg_reg
1900 = (MMIX_FIRST_INCOMING_ARG_REGNUM
1901 + (MMIX_MAX_ARGS_IN_REGS
1902 - current_function_pretend_args_size
/ 8));
1905 = MMIX_FIRST_INCOMING_ARG_REGNUM
+ MMIX_MAX_ARGS_IN_REGS
- 1;
1906 regno
>= mmix_first_vararg_reg
;
1911 HOST_WIDE_INT stack_chunk
1912 = stack_space_to_allocate
> (256 - 8)
1913 ? (256 - 8) : stack_space_to_allocate
;
1915 mmix_emit_sp_add (-stack_chunk
);
1916 offset
+= stack_chunk
;
1917 stack_space_to_allocate
-= stack_chunk
;
1920 /* These registers aren't actually saved (as in "will be
1921 restored"), so don't tell DWARF2 they're saved. */
1922 emit_move_insn (gen_rtx_MEM (DImode
,
1923 plus_constant (stack_pointer_rtx
,
1925 gen_rtx_REG (DImode
, regno
));
1930 /* Store the frame-pointer. */
1932 if (frame_pointer_needed
)
1938 /* Get 8 less than otherwise, since we need to reach offset + 8. */
1939 HOST_WIDE_INT stack_chunk
1940 = stack_space_to_allocate
> (256 - 8 - 8)
1941 ? (256 - 8 - 8) : stack_space_to_allocate
;
1943 mmix_emit_sp_add (-stack_chunk
);
1945 offset
+= stack_chunk
;
1946 stack_space_to_allocate
-= stack_chunk
;
1949 insn
= emit_move_insn (gen_rtx_MEM (DImode
,
1950 plus_constant (stack_pointer_rtx
,
1952 hard_frame_pointer_rtx
);
1953 RTX_FRAME_RELATED_P (insn
) = 1;
1954 insn
= emit_insn (gen_adddi3 (hard_frame_pointer_rtx
,
1956 GEN_INT (offset
+ 8)));
1957 RTX_FRAME_RELATED_P (insn
) = 1;
1961 if (MMIX_CFUN_NEEDS_SAVED_EH_RETURN_ADDRESS
)
1966 /* Store the return-address, if one is needed on the stack. We
1967 usually store it in a register when needed, but that doesn't work
1968 with -fexceptions. */
1972 /* Get 8 less than otherwise, since we need to reach offset + 8. */
1973 HOST_WIDE_INT stack_chunk
1974 = stack_space_to_allocate
> (256 - 8 - 8)
1975 ? (256 - 8 - 8) : stack_space_to_allocate
;
1977 mmix_emit_sp_add (-stack_chunk
);
1979 offset
+= stack_chunk
;
1980 stack_space_to_allocate
-= stack_chunk
;
1983 tmpreg
= gen_rtx_REG (DImode
, 255);
1984 retreg
= gen_rtx_REG (DImode
, MMIX_rJ_REGNUM
);
1986 /* Dwarf2 code is confused by the use of a temporary register for
1987 storing the return address, so we have to express it as a note,
1988 which we attach to the actual store insn. */
1989 emit_move_insn (tmpreg
, retreg
);
1991 insn
= emit_move_insn (gen_rtx_MEM (DImode
,
1992 plus_constant (stack_pointer_rtx
,
1995 RTX_FRAME_RELATED_P (insn
) = 1;
1997 = gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR
,
1998 gen_rtx_SET (VOIDmode
,
1999 gen_rtx_MEM (DImode
,
2000 plus_constant (stack_pointer_rtx
,
2007 else if (MMIX_CFUN_HAS_LANDING_PAD
)
2010 if (MMIX_CFUN_HAS_LANDING_PAD
)
2012 /* Store the register defining the numbering of local registers, so
2013 we know how long to unwind the register stack. */
2017 /* Get 8 less than otherwise, since we need to reach offset + 8. */
2018 HOST_WIDE_INT stack_chunk
2019 = stack_space_to_allocate
> (256 - 8 - 8)
2020 ? (256 - 8 - 8) : stack_space_to_allocate
;
2022 mmix_emit_sp_add (-stack_chunk
);
2024 offset
+= stack_chunk
;
2025 stack_space_to_allocate
-= stack_chunk
;
2028 /* We don't tell dwarf2 about this one; we just have it to unwind
2029 the register stack at landing pads. FIXME: It's a kludge because
2030 we can't describe the effect of the PUSHJ and PUSHGO insns on the
2031 register stack at the moment. Best thing would be to handle it
2032 like stack-pointer offsets. Better: some hook into dwarf2out.c
2033 to produce DW_CFA_expression:s that specify the increment of rO,
2034 and unwind it at eh_return (preferred) or at the landing pad.
2035 Then saves to $0..$G-1 could be specified through that register. */
2037 emit_move_insn (gen_rtx_REG (DImode
, 255),
2038 gen_rtx_REG (DImode
,
2040 emit_move_insn (gen_rtx_MEM (DImode
,
2041 plus_constant (stack_pointer_rtx
, offset
)),
2042 gen_rtx_REG (DImode
, 255));
2046 /* After the return-address and the frame-pointer, we have the local
2047 variables. They're the ones that may have an "unaligned" size. */
2048 offset
-= (locals_size
+ 7) & ~7;
2050 /* Now store all registers that are global, i.e. not saved by the
2051 register file machinery.
2053 It is assumed that the frame-pointer is one of these registers, so it
2054 is explicitly excluded in the count. */
2057 regno
>= MMIX_FIRST_GLOBAL_REGNUM
;
2059 if (((regno
!= MMIX_FRAME_POINTER_REGNUM
|| !frame_pointer_needed
)
2060 && regs_ever_live
[regno
] && ! call_used_regs
[regno
])
2061 || IS_MMIX_EH_RETURN_DATA_REG (regno
))
2067 HOST_WIDE_INT stack_chunk
2068 = (stack_space_to_allocate
> (256 - offset
- 8)
2069 ? (256 - offset
- 8) : stack_space_to_allocate
);
2071 mmix_emit_sp_add (-stack_chunk
);
2072 offset
+= stack_chunk
;
2073 stack_space_to_allocate
-= stack_chunk
;
2076 insn
= emit_move_insn (gen_rtx_MEM (DImode
,
2077 plus_constant (stack_pointer_rtx
,
2079 gen_rtx_REG (DImode
, regno
));
2080 RTX_FRAME_RELATED_P (insn
) = 1;
2084 /* Finally, allocate room for outgoing args and local vars if room
2085 wasn't allocated above. */
2086 if (stack_space_to_allocate
)
2087 mmix_emit_sp_add (-stack_space_to_allocate
);
2090 /* Expands the function epilogue into RTX. */
2093 mmix_expand_epilogue (void)
2095 HOST_WIDE_INT locals_size
= get_frame_size ();
2097 HOST_WIDE_INT stack_space_to_deallocate
2098 = (current_function_outgoing_args_size
2099 + current_function_pretend_args_size
2100 + locals_size
+ 7) & ~7;
2102 /* The first address to access is beyond the outgoing_args area. */
2103 HOST_WIDE_INT offset
= current_function_outgoing_args_size
;
2105 /* Add the space for global non-register-stack registers.
2106 It is assumed that the frame-pointer register can be one of these
2107 registers, in which case it is excluded from the count when needed. */
2109 regno
>= MMIX_FIRST_GLOBAL_REGNUM
;
2111 if (((regno
!= MMIX_FRAME_POINTER_REGNUM
|| !frame_pointer_needed
)
2112 && regs_ever_live
[regno
] && !call_used_regs
[regno
])
2113 || IS_MMIX_EH_RETURN_DATA_REG (regno
))
2114 stack_space_to_deallocate
+= 8;
2116 /* Add in the space for register stack-pointer. If so, always add room
2117 for the saved PC. */
2118 if (MMIX_CFUN_HAS_LANDING_PAD
)
2119 stack_space_to_deallocate
+= 16;
2120 else if (MMIX_CFUN_NEEDS_SAVED_EH_RETURN_ADDRESS
)
2121 /* If we have a saved return-address slot, add it in. */
2122 stack_space_to_deallocate
+= 8;
2124 /* Add in the frame-pointer. */
2125 if (frame_pointer_needed
)
2126 stack_space_to_deallocate
+= 8;
2128 /* Make sure we don't get an unaligned stack. */
2129 if ((stack_space_to_deallocate
% 8) != 0)
2130 internal_error ("stack frame not a multiple of octabyte: %wd",
2131 stack_space_to_deallocate
);
2133 /* We will add back small offsets to the stack pointer as we go.
2134 First, we restore all registers that are global, i.e. not saved by
2135 the register file machinery. */
2137 for (regno
= MMIX_FIRST_GLOBAL_REGNUM
;
2140 if (((regno
!= MMIX_FRAME_POINTER_REGNUM
|| !frame_pointer_needed
)
2141 && regs_ever_live
[regno
] && !call_used_regs
[regno
])
2142 || IS_MMIX_EH_RETURN_DATA_REG (regno
))
2146 mmix_emit_sp_add (offset
);
2147 stack_space_to_deallocate
-= offset
;
2151 emit_move_insn (gen_rtx_REG (DImode
, regno
),
2152 gen_rtx_MEM (DImode
,
2153 plus_constant (stack_pointer_rtx
,
2158 /* Here is where the local variables were. As in the prologue, they
2159 might be of an unaligned size. */
2160 offset
+= (locals_size
+ 7) & ~7;
2162 /* The saved register stack pointer is just below the frame-pointer
2163 register. We don't need to restore it "manually"; the POP
2164 instruction does that. */
2165 if (MMIX_CFUN_HAS_LANDING_PAD
)
2167 else if (MMIX_CFUN_NEEDS_SAVED_EH_RETURN_ADDRESS
)
2168 /* The return-address slot is just below the frame-pointer register.
2169 We don't need to restore it because we don't really use it. */
2172 /* Get back the old frame-pointer-value. */
2173 if (frame_pointer_needed
)
2177 mmix_emit_sp_add (offset
);
2179 stack_space_to_deallocate
-= offset
;
2183 emit_move_insn (hard_frame_pointer_rtx
,
2184 gen_rtx_MEM (DImode
,
2185 plus_constant (stack_pointer_rtx
,
2190 /* We do not need to restore pretended incoming args, just add back
2192 if (stack_space_to_deallocate
!= 0)
2193 mmix_emit_sp_add (stack_space_to_deallocate
);
2195 if (current_function_calls_eh_return
)
2196 /* Adjust the (normal) stack-pointer to that of the receiver.
2197 FIXME: It would be nice if we could also adjust the register stack
2198 here, but we need to express it through DWARF 2 too. */
2199 emit_insn (gen_adddi3 (stack_pointer_rtx
, stack_pointer_rtx
,
2200 gen_rtx_REG (DImode
,
2201 MMIX_EH_RETURN_STACKADJ_REGNUM
)));
2204 /* Output an optimal sequence for setting a register to a specific
2205 constant. Used in an alternative for const_ints in movdi, and when
2206 using large stack-frame offsets.
2208 Use do_begin_end to say if a line-starting TAB and newline before the
2209 first insn and after the last insn is wanted. */
2212 mmix_output_register_setting (FILE *stream
,
2214 HOST_WIDEST_INT value
,
2218 fprintf (stream
, "\t");
2220 if (mmix_shiftable_wyde_value ((unsigned HOST_WIDEST_INT
) value
))
2222 /* First, the one-insn cases. */
2223 mmix_output_shiftvalue_op_from_str (stream
, "SET",
2224 (unsigned HOST_WIDEST_INT
)
2226 fprintf (stream
, " %s,", reg_names
[regno
]);
2227 mmix_output_shifted_value (stream
, (unsigned HOST_WIDEST_INT
) value
);
2229 else if (mmix_shiftable_wyde_value (-(unsigned HOST_WIDEST_INT
) value
))
2231 /* We do this to get a bit more legible assembly code. The next
2232 alternative is mostly redundant with this. */
2234 mmix_output_shiftvalue_op_from_str (stream
, "SET",
2235 -(unsigned HOST_WIDEST_INT
)
2237 fprintf (stream
, " %s,", reg_names
[regno
]);
2238 mmix_output_shifted_value (stream
, -(unsigned HOST_WIDEST_INT
) value
);
2239 fprintf (stream
, "\n\tNEGU %s,0,%s", reg_names
[regno
],
2242 else if (mmix_shiftable_wyde_value (~(unsigned HOST_WIDEST_INT
) value
))
2244 /* Slightly more expensive, the two-insn cases. */
2246 /* FIXME: We could of course also test if 0..255-N or ~(N | 1..255)
2247 is shiftable, or any other one-insn transformation of the value.
2248 FIXME: Check first if the value is "shiftable" by two loading
2249 with two insns, since it makes more readable assembly code (if
2250 anyone else cares). */
2252 mmix_output_shiftvalue_op_from_str (stream
, "SET",
2253 ~(unsigned HOST_WIDEST_INT
)
2255 fprintf (stream
, " %s,", reg_names
[regno
]);
2256 mmix_output_shifted_value (stream
, ~(unsigned HOST_WIDEST_INT
) value
);
2257 fprintf (stream
, "\n\tNOR %s,%s,0", reg_names
[regno
],
2262 /* The generic case. 2..4 insns. */
2263 static const char *const higher_parts
[] = {"L", "ML", "MH", "H"};
2264 const char *op
= "SET";
2265 const char *line_begin
= "";
2268 HOST_WIDEST_INT tmpvalue
= value
;
2270 /* Compute the number of insns needed to output this constant. */
2271 for (i
= 0; i
< 4 && tmpvalue
!= 0; i
++)
2273 if (tmpvalue
& 65535)
2277 if (TARGET_BASE_ADDRESSES
&& insns
== 3)
2279 /* The number three is based on a static observation on
2280 ghostscript-6.52. Two and four are excluded because there
2281 are too many such constants, and each unique constant (maybe
2282 offset by 1..255) were used few times compared to other uses,
2285 We use base-plus-offset addressing to force it into a global
2286 register; we just use a "LDA reg,VALUE", which will cause the
2287 assembler and linker to DTRT (for constants as well as
2289 fprintf (stream
, "LDA %s,", reg_names
[regno
]);
2290 mmix_output_octa (stream
, value
, 0);
2294 /* Output pertinent parts of the 4-wyde sequence.
2295 Still more to do if we want this to be optimal, but hey...
2296 Note that the zero case has been handled above. */
2297 for (i
= 0; i
< 4 && value
!= 0; i
++)
2301 fprintf (stream
, "%s%s%s %s,#%x", line_begin
, op
,
2302 higher_parts
[i
], reg_names
[regno
],
2303 (int) (value
& 65535));
2304 /* The first one sets the rest of the bits to 0, the next
2305 ones add set bits. */
2307 line_begin
= "\n\t";
2316 fprintf (stream
, "\n");
2319 /* Return 1 if value is 0..65535*2**(16*N) for N=0..3.
2323 mmix_shiftable_wyde_value (unsigned HOST_WIDEST_INT value
)
2325 /* Shift by 16 bits per group, stop when we've found two groups with
2328 int has_candidate
= 0;
2330 for (i
= 0; i
< 4; i
++)
2346 /* Returns zero if code and mode is not a valid condition from a
2347 compare-type insn. Nonzero if it is. The parameter op, if non-NULL,
2348 is the comparison of mode is CC-somethingmode. */
2351 mmix_valid_comparison (RTX_CODE code
, enum machine_mode mode
, rtx op
)
2353 if (mode
== VOIDmode
&& op
!= NULL_RTX
)
2354 mode
= GET_MODE (op
);
2356 /* We don't care to look at these, they should always be valid. */
2357 if (mode
== CCmode
|| mode
== CC_UNSmode
|| mode
== DImode
)
2360 if ((mode
== CC_FPmode
|| mode
== DFmode
)
2361 && (code
== GT
|| code
== LT
))
2364 if ((mode
== CC_FPEQmode
|| mode
== DFmode
)
2365 && (code
== EQ
|| code
== NE
))
2368 if ((mode
== CC_FUNmode
|| mode
== DFmode
)
2369 && (code
== ORDERED
|| code
== UNORDERED
))
2375 /* X and Y are two things to compare using CODE. Emit a compare insn if
2376 possible and return the rtx for the cc-reg in the proper mode, or
2377 NULL_RTX if this is not a valid comparison. */
2380 mmix_gen_compare_reg (RTX_CODE code
, rtx x
, rtx y
)
2382 enum machine_mode ccmode
= SELECT_CC_MODE (code
, x
, y
);
2385 /* FIXME: Do we get constants here? Of double mode? */
2386 enum machine_mode mode
2387 = GET_MODE (x
) == VOIDmode
2389 : GET_MODE_CLASS (GET_MODE (x
)) == MODE_FLOAT
? DFmode
: DImode
;
2391 if (! mmix_valid_comparison (code
, mode
, x
))
2394 cc_reg
= gen_reg_rtx (ccmode
);
2396 /* FIXME: Can we avoid emitting a compare insn here? */
2397 if (! REG_P (x
) && ! REG_P (y
))
2398 x
= force_reg (mode
, x
);
2400 /* If it's not quite right yet, put y in a register. */
2402 && (GET_CODE (y
) != CONST_INT
2403 || ! CONST_OK_FOR_LETTER_P (INTVAL (y
), 'I')))
2404 y
= force_reg (mode
, y
);
2406 emit_insn (gen_rtx_SET (VOIDmode
, cc_reg
,
2407 gen_rtx_COMPARE (ccmode
, x
, y
)));
2412 /* Local (static) helper functions. */
2415 mmix_emit_sp_add (HOST_WIDE_INT offset
)
2421 /* Negative stack-pointer adjustments are allocations and appear in
2422 the prologue only. We mark them as frame-related so unwind and
2423 debug info is properly emitted for them. */
2425 insn
= emit_insn (gen_adddi3 (stack_pointer_rtx
,
2430 rtx tmpr
= gen_rtx_REG (DImode
, 255);
2431 RTX_FRAME_RELATED_P (emit_move_insn (tmpr
, GEN_INT (offset
))) = 1;
2432 insn
= emit_insn (gen_adddi3 (stack_pointer_rtx
,
2433 stack_pointer_rtx
, tmpr
));
2435 RTX_FRAME_RELATED_P (insn
) = 1;
2439 /* Positive adjustments are in the epilogue only. Don't mark them
2440 as "frame-related" for unwind info. */
2441 if (CONST_OK_FOR_LETTER_P (offset
, 'L'))
2442 emit_insn (gen_adddi3 (stack_pointer_rtx
,
2447 rtx tmpr
= gen_rtx_REG (DImode
, 255);
2448 emit_move_insn (tmpr
, GEN_INT (offset
));
2449 insn
= emit_insn (gen_adddi3 (stack_pointer_rtx
,
2450 stack_pointer_rtx
, tmpr
));
2455 /* Print operator suitable for doing something with a shiftable
2456 wyde. The type of operator is passed as an asm output modifier. */
2459 mmix_output_shiftvalue_op_from_str (FILE *stream
,
2461 HOST_WIDEST_INT value
)
2463 static const char *const op_part
[] = {"L", "ML", "MH", "H"};
2466 if (! mmix_shiftable_wyde_value (value
))
2468 char s
[sizeof ("0xffffffffffffffff")];
2469 sprintf (s
, HOST_WIDEST_INT_PRINT_HEX
, value
);
2470 internal_error ("MMIX Internal: %s is not a shiftable int", s
);
2473 for (i
= 0; i
< 4; i
++)
2475 /* We know we're through when we find one-bits in the low
2479 fprintf (stream
, "%s%s", mainop
, op_part
[i
]);
2485 /* No bits set? Then it must have been zero. */
2486 fprintf (stream
, "%sL", mainop
);
2489 /* Print a 64-bit value, optionally prefixed by assembly pseudo. */
2492 mmix_output_octa (FILE *stream
, HOST_WIDEST_INT value
, int do_begin_end
)
2494 /* Snipped from final.c:output_addr_const. We need to avoid the
2495 presumed universal "0x" prefix. We can do it by replacing "0x" with
2496 "#0" here; we must avoid a space in the operands and no, the zero
2497 won't cause the number to be assumed in octal format. */
2498 char hex_format
[sizeof (HOST_WIDEST_INT_PRINT_HEX
)];
2501 fprintf (stream
, "\tOCTA ");
2503 strcpy (hex_format
, HOST_WIDEST_INT_PRINT_HEX
);
2504 hex_format
[0] = '#';
2505 hex_format
[1] = '0';
2507 /* Provide a few alternative output formats depending on the number, to
2508 improve legibility of assembler output. */
2509 if ((value
< (HOST_WIDEST_INT
) 0 && value
> (HOST_WIDEST_INT
) -10000)
2510 || (value
>= (HOST_WIDEST_INT
) 0 && value
<= (HOST_WIDEST_INT
) 16384))
2511 fprintf (stream
, "%d", (int) value
);
2512 else if (value
> (HOST_WIDEST_INT
) 0
2513 && value
< ((HOST_WIDEST_INT
) 1 << 31) * 2)
2514 fprintf (stream
, "#%x", (unsigned int) value
);
2516 fprintf (stream
, hex_format
, value
);
2519 fprintf (stream
, "\n");
2522 /* Print the presumed shiftable wyde argument shifted into place (to
2523 be output with an operand). */
2526 mmix_output_shifted_value (FILE *stream
, HOST_WIDEST_INT value
)
2530 if (! mmix_shiftable_wyde_value (value
))
2533 sprintf (s
, HOST_WIDEST_INT_PRINT_HEX
, value
);
2534 internal_error ("MMIX Internal: %s is not a shiftable int", s
);
2537 for (i
= 0; i
< 4; i
++)
2539 /* We know we're through when we find one-bits in the low 16 bits. */
2542 fprintf (stream
, "#%x", (int) (value
& 0xffff));
2549 /* No bits set? Then it must have been zero. */
2550 fprintf (stream
, "0");
2553 /* Output an MMIX condition name corresponding to an operator
2555 (comparison_operator [(comparison_operator ...) (const_int 0)])
2556 which means we have to look at *two* operators.
2558 The argument "reversed" refers to reversal of the condition (not the
2559 same as swapping the arguments). */
2562 mmix_output_condition (FILE *stream
, rtx x
, int reversed
)
2568 /* The normal output cc-code. */
2569 const char *const normal
;
2571 /* The reversed cc-code, or NULL if invalid. */
2572 const char *const reversed
;
2577 enum machine_mode cc_mode
;
2579 /* Terminated with {UNKNOWN, NULL, NULL} */
2580 const struct cc_conv
*const convs
;
2584 #define CCEND {UNKNOWN, NULL, NULL}
2586 static const struct cc_conv cc_fun_convs
[]
2587 = {{ORDERED
, "Z", "P"},
2588 {UNORDERED
, "P", "Z"},
2590 static const struct cc_conv cc_fp_convs
[]
2594 static const struct cc_conv cc_fpeq_convs
[]
2598 static const struct cc_conv cc_uns_convs
[]
2599 = {{GEU
, "NN", "N"},
2604 static const struct cc_conv cc_signed_convs
[]
2612 static const struct cc_conv cc_di_convs
[]
2624 static const struct cc_type_conv cc_convs
[]
2625 = {{CC_FUNmode
, cc_fun_convs
},
2626 {CC_FPmode
, cc_fp_convs
},
2627 {CC_FPEQmode
, cc_fpeq_convs
},
2628 {CC_UNSmode
, cc_uns_convs
},
2629 {CCmode
, cc_signed_convs
},
2630 {DImode
, cc_di_convs
}};
2635 enum machine_mode mode
= GET_MODE (XEXP (x
, 0));
2636 RTX_CODE cc
= GET_CODE (x
);
2638 for (i
= 0; i
< ARRAY_SIZE (cc_convs
); i
++)
2640 if (mode
== cc_convs
[i
].cc_mode
)
2642 for (j
= 0; cc_convs
[i
].convs
[j
].cc
!= UNKNOWN
; j
++)
2643 if (cc
== cc_convs
[i
].convs
[j
].cc
)
2646 = (reversed
? cc_convs
[i
].convs
[j
].reversed
2647 : cc_convs
[i
].convs
[j
].normal
);
2649 if (mmix_cc
== NULL
)
2650 fatal_insn ("MMIX Internal: Trying to output invalidly\
2651 reversed condition:", x
);
2653 fprintf (stream
, "%s", mmix_cc
);
2657 fatal_insn ("MMIX Internal: What's the CC of this?", x
);
2661 fatal_insn ("MMIX Internal: What is the CC of this?", x
);
2664 /* Return the bit-value for a const_int or const_double. */
2666 static HOST_WIDEST_INT
2669 unsigned HOST_WIDEST_INT retval
;
2671 if (GET_CODE (x
) == CONST_INT
)
2674 /* We make a little song and dance because converting to long long in
2675 gcc-2.7.2 is broken. I still want people to be able to use it for
2676 cross-compilation to MMIX. */
2677 if (GET_CODE (x
) == CONST_DOUBLE
&& GET_MODE (x
) == VOIDmode
)
2679 if (sizeof (HOST_WIDE_INT
) < sizeof (HOST_WIDEST_INT
))
2681 retval
= (unsigned) CONST_DOUBLE_LOW (x
) / 2;
2683 retval
|= CONST_DOUBLE_LOW (x
) & 1;
2686 (unsigned HOST_WIDEST_INT
) CONST_DOUBLE_HIGH (x
)
2687 << (HOST_BITS_PER_LONG
);
2690 retval
= CONST_DOUBLE_HIGH (x
);
2695 if (GET_CODE (x
) == CONST_DOUBLE
)
2697 REAL_VALUE_TYPE value
;
2699 /* FIXME: This macro is not in the manual but should be. */
2700 REAL_VALUE_FROM_CONST_DOUBLE (value
, x
);
2702 if (GET_MODE (x
) == DFmode
)
2706 REAL_VALUE_TO_TARGET_DOUBLE (value
, bits
);
2708 if (sizeof (long) < sizeof (HOST_WIDEST_INT
))
2710 retval
= (unsigned long) bits
[1] / 2;
2712 retval
|= (unsigned long) bits
[1] & 1;
2714 |= (unsigned HOST_WIDEST_INT
) bits
[0]
2715 << (sizeof (bits
[0]) * 8);
2718 retval
= (unsigned long) bits
[1];
2722 else if (GET_MODE (x
) == SFmode
)
2725 REAL_VALUE_TO_TARGET_SINGLE (value
, bits
);
2727 return (unsigned long) bits
;
2731 fatal_insn ("MMIX Internal: This is not a constant:", x
);
2734 /* Worker function for TARGET_STRUCT_VALUE_RTX. */
2737 mmix_struct_value_rtx (tree fntype ATTRIBUTE_UNUSED
,
2738 int incoming ATTRIBUTE_UNUSED
)
2740 return gen_rtx_REG (Pmode
, MMIX_STRUCT_VALUE_REGNUM
);
2745 * eval: (c-set-style "gnu")
2746 * indent-tabs-mode: t