1 /* Default target hook functions.
2 Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to the Free
18 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
21 /* The migration of target macros to target hooks works as follows:
23 1. Create a target hook that uses the existing target macros to
24 implement the same functionality.
26 2. Convert all the MI files to use the hook instead of the macro.
28 3. Repeat for a majority of the remaining target macros. This will
31 4. Tell target maintainers to start migrating.
33 5. Eventually convert the backends to override the hook instead of
34 defining the macros. This will take some time too.
36 6. TBD when, poison the macros. Unmigrated targets will break at
39 Note that we expect steps 1-3 to be done by the people that
40 understand what the MI does with each macro, and step 5 to be done
41 by the target maintainers for their respective targets.
43 Note that steps 1 and 2 don't have to be done together, but no
44 target can override the new hook until step 2 is complete for it.
46 Once the macros are poisoned, we will revert to the old migration
47 rules - migrate the macro, callers, and targets all at once. This
48 comment can thus be removed at that point. */
52 #include "coretypes.h"
63 #include "target-def.h"
65 #include "hard-reg-set.h"
72 default_external_libcall (rtx fun ATTRIBUTE_UNUSED
)
74 #ifdef ASM_OUTPUT_EXTERNAL_LIBCALL
75 ASM_OUTPUT_EXTERNAL_LIBCALL(asm_out_file
, fun
);
80 default_cc_modes_compatible (enum machine_mode m1
, enum machine_mode m2
)
88 default_return_in_memory (tree type
,
89 tree fntype ATTRIBUTE_UNUSED
)
91 #ifndef RETURN_IN_MEMORY
92 return (TYPE_MODE (type
) == BLKmode
);
94 return RETURN_IN_MEMORY (type
);
99 default_expand_builtin_saveregs (void)
101 error ("__builtin_saveregs not supported by this target");
106 default_setup_incoming_varargs (CUMULATIVE_ARGS
*ca ATTRIBUTE_UNUSED
,
107 enum machine_mode mode ATTRIBUTE_UNUSED
,
108 tree type ATTRIBUTE_UNUSED
,
109 int *pretend_arg_size ATTRIBUTE_UNUSED
,
110 int second_time ATTRIBUTE_UNUSED
)
114 /* The default implementation of TARGET_BUILTIN_SETJMP_FRAME_VALUE. */
117 default_builtin_setjmp_frame_value (void)
119 return virtual_stack_vars_rtx
;
122 /* Generic hook that takes a CUMULATIVE_ARGS pointer and returns false. */
125 hook_bool_CUMULATIVE_ARGS_false (CUMULATIVE_ARGS
*ca ATTRIBUTE_UNUSED
)
131 default_pretend_outgoing_varargs_named (CUMULATIVE_ARGS
*ca ATTRIBUTE_UNUSED
)
133 return (targetm
.calls
.setup_incoming_varargs
134 != default_setup_incoming_varargs
);
138 default_eh_return_filter_mode (void)
143 /* The default implementation of TARGET_SHIFT_TRUNCATION_MASK. */
145 unsigned HOST_WIDE_INT
146 default_shift_truncation_mask (enum machine_mode mode
)
148 return SHIFT_COUNT_TRUNCATED
? GET_MODE_BITSIZE (mode
) - 1 : 0;
151 /* Generic hook that takes a CUMULATIVE_ARGS pointer and returns true. */
154 hook_bool_CUMULATIVE_ARGS_true (CUMULATIVE_ARGS
* a ATTRIBUTE_UNUSED
)
160 /* The generic C++ ABI specifies this is a 64-bit value. */
162 default_cxx_guard_type (void)
164 return long_long_integer_type_node
;
168 /* Returns the size of the cookie to use when allocating an array
169 whose elements have the indicated TYPE. Assumes that it is already
170 known that a cookie is needed. */
173 default_cxx_get_cookie_size (tree type
)
177 /* We need to allocate an additional max (sizeof (size_t), alignof
178 (true_type)) bytes. */
182 sizetype_size
= size_in_bytes (sizetype
);
183 type_align
= size_int (TYPE_ALIGN_UNIT (type
));
184 if (INT_CST_LT_UNSIGNED (type_align
, sizetype_size
))
185 cookie_size
= sizetype_size
;
187 cookie_size
= type_align
;
192 /* Return true if a parameter must be passed by reference. This version
193 of the TARGET_PASS_BY_REFERENCE hook uses just MUST_PASS_IN_STACK. */
196 hook_pass_by_reference_must_pass_in_stack (CUMULATIVE_ARGS
*c ATTRIBUTE_UNUSED
,
197 enum machine_mode mode ATTRIBUTE_UNUSED
, tree type ATTRIBUTE_UNUSED
,
198 bool named_arg ATTRIBUTE_UNUSED
)
200 return targetm
.calls
.must_pass_in_stack (mode
, type
);
203 /* Return true if a parameter follows callee copies conventions. This
204 version of the hook is true for all named arguments. */
207 hook_callee_copies_named (CUMULATIVE_ARGS
*ca ATTRIBUTE_UNUSED
,
208 enum machine_mode mode ATTRIBUTE_UNUSED
,
209 tree type ATTRIBUTE_UNUSED
, bool named
)
214 /* Emit any directives required to unwind this instruction. */
217 default_unwind_emit (FILE * stream ATTRIBUTE_UNUSED
,
218 rtx insn ATTRIBUTE_UNUSED
)
220 /* Should never happen. */
224 /* True if MODE is valid for the target. By "valid", we mean able to
225 be manipulated in non-trivial ways. In particular, this means all
226 the arithmetic is supported.
228 By default we guess this means that any C type is supported. If
229 we can't map the mode back to a type that would be available in C,
230 then reject it. Special case, here, is the double-word arithmetic
231 supported by optabs.c. */
234 default_scalar_mode_supported_p (enum machine_mode mode
)
236 int precision
= GET_MODE_PRECISION (mode
);
238 switch (GET_MODE_CLASS (mode
))
240 case MODE_PARTIAL_INT
:
242 if (precision
== CHAR_TYPE_SIZE
)
244 if (precision
== SHORT_TYPE_SIZE
)
246 if (precision
== INT_TYPE_SIZE
)
248 if (precision
== LONG_TYPE_SIZE
)
250 if (precision
== LONG_LONG_TYPE_SIZE
)
252 if (precision
== 2 * BITS_PER_WORD
)
257 if (precision
== FLOAT_TYPE_SIZE
)
259 if (precision
== DOUBLE_TYPE_SIZE
)
261 if (precision
== LONG_DOUBLE_TYPE_SIZE
)
270 /* NULL if INSN insn is valid within a low-overhead loop, otherwise returns
273 This function checks whether a given INSN is valid within a low-overhead
274 loop. If INSN is invalid it returns the reason for that, otherwise it
275 returns NULL. A called function may clobber any special registers required
276 for low-overhead looping. Additionally, some targets (eg, PPC) use the count
277 register for branch on table instructions. We reject the doloop pattern in
281 default_invalid_within_doloop (rtx insn
)
284 return "Function call in loop.";
287 && (GET_CODE (PATTERN (insn
)) == ADDR_DIFF_VEC
288 || GET_CODE (PATTERN (insn
)) == ADDR_VEC
))
289 return "Computed branch in the loop.";
295 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false (
296 CUMULATIVE_ARGS
*ca ATTRIBUTE_UNUSED
,
297 enum machine_mode mode ATTRIBUTE_UNUSED
,
298 tree type ATTRIBUTE_UNUSED
, bool named ATTRIBUTE_UNUSED
)
304 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true (
305 CUMULATIVE_ARGS
*ca ATTRIBUTE_UNUSED
,
306 enum machine_mode mode ATTRIBUTE_UNUSED
,
307 tree type ATTRIBUTE_UNUSED
, bool named ATTRIBUTE_UNUSED
)
313 hook_int_CUMULATIVE_ARGS_mode_tree_bool_0 (
314 CUMULATIVE_ARGS
*ca ATTRIBUTE_UNUSED
,
315 enum machine_mode mode ATTRIBUTE_UNUSED
,
316 tree type ATTRIBUTE_UNUSED
, bool named ATTRIBUTE_UNUSED
)
322 hook_invalid_arg_for_unprototyped_fn (
323 tree typelist ATTRIBUTE_UNUSED
,
324 tree funcdecl ATTRIBUTE_UNUSED
,
325 tree val ATTRIBUTE_UNUSED
)
330 /* Initialize the stack protection decls. */
332 /* Stack protection related decls living in libgcc. */
333 static GTY(()) tree stack_chk_guard_decl
;
336 default_stack_protect_guard (void)
338 tree t
= stack_chk_guard_decl
;
342 t
= build_decl (VAR_DECL
, get_identifier ("__stack_chk_guard"),
346 DECL_EXTERNAL (t
) = 1;
348 TREE_THIS_VOLATILE (t
) = 1;
349 DECL_ARTIFICIAL (t
) = 1;
350 DECL_IGNORED_P (t
) = 1;
352 stack_chk_guard_decl
= t
;
358 static GTY(()) tree stack_chk_fail_decl
;
361 default_external_stack_protect_fail (void)
363 tree t
= stack_chk_fail_decl
;
367 t
= build_function_type_list (void_type_node
, NULL_TREE
);
368 t
= build_decl (FUNCTION_DECL
, get_identifier ("__stack_chk_fail"), t
);
371 DECL_EXTERNAL (t
) = 1;
373 TREE_THIS_VOLATILE (t
) = 1;
374 TREE_NOTHROW (t
) = 1;
375 DECL_ARTIFICIAL (t
) = 1;
376 DECL_IGNORED_P (t
) = 1;
378 stack_chk_fail_decl
= t
;
381 return build_function_call_expr (t
, NULL_TREE
);
385 default_hidden_stack_protect_fail (void)
387 #ifndef HAVE_GAS_HIDDEN
388 return default_external_stack_protect_fail ();
390 tree t
= stack_chk_fail_decl
;
393 return default_external_stack_protect_fail ();
397 t
= build_function_type_list (void_type_node
, NULL_TREE
);
398 t
= build_decl (FUNCTION_DECL
,
399 get_identifier ("__stack_chk_fail_local"), t
);
402 DECL_EXTERNAL (t
) = 1;
404 TREE_THIS_VOLATILE (t
) = 1;
405 TREE_NOTHROW (t
) = 1;
406 DECL_ARTIFICIAL (t
) = 1;
407 DECL_IGNORED_P (t
) = 1;
408 DECL_VISIBILITY_SPECIFIED (t
) = 1;
409 DECL_VISIBILITY (t
) = VISIBILITY_HIDDEN
;
411 stack_chk_fail_decl
= t
;
414 return build_function_call_expr (t
, NULL_TREE
);
419 hook_bool_rtx_commutative_p (rtx x
, int outer_code ATTRIBUTE_UNUSED
)
421 return COMMUTATIVE_P (x
);
425 default_function_value (tree ret_type ATTRIBUTE_UNUSED
,
426 tree fn_decl_or_type
,
427 bool outgoing ATTRIBUTE_UNUSED
)
429 /* The old interface doesn't handle receiving the function type. */
431 && !DECL_P (fn_decl_or_type
))
432 fn_decl_or_type
= NULL
;
434 #ifdef FUNCTION_OUTGOING_VALUE
436 return FUNCTION_OUTGOING_VALUE (ret_type
, fn_decl_or_type
);
439 #ifdef FUNCTION_VALUE
440 return FUNCTION_VALUE (ret_type
, fn_decl_or_type
);
447 default_internal_arg_pointer (void)
449 /* If the reg that the virtual arg pointer will be translated into is
450 not a fixed reg or is the stack pointer, make a copy of the virtual
451 arg pointer, and address parms via the copy. The frame pointer is
452 considered fixed even though it is not marked as such. */
453 if ((ARG_POINTER_REGNUM
== STACK_POINTER_REGNUM
454 || ! (fixed_regs
[ARG_POINTER_REGNUM
]
455 || ARG_POINTER_REGNUM
== FRAME_POINTER_REGNUM
)))
456 return copy_to_reg (virtual_incoming_args_rtx
);
458 return virtual_incoming_args_rtx
;
462 default_secondary_reload (bool in_p ATTRIBUTE_UNUSED
, rtx x ATTRIBUTE_UNUSED
,
463 enum reg_class reload_class ATTRIBUTE_UNUSED
,
464 enum machine_mode reload_mode ATTRIBUTE_UNUSED
,
465 secondary_reload_info
*sri
)
467 enum reg_class
class = NO_REGS
;
469 if (sri
->prev_sri
&& sri
->prev_sri
->t_icode
!= CODE_FOR_nothing
)
471 sri
->icode
= sri
->prev_sri
->t_icode
;
474 #ifdef SECONDARY_INPUT_RELOAD_CLASS
476 class = SECONDARY_INPUT_RELOAD_CLASS (reload_class
, reload_mode
, x
);
478 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
480 class = SECONDARY_OUTPUT_RELOAD_CLASS (reload_class
, reload_mode
, x
);
482 if (class != NO_REGS
)
484 enum insn_code icode
= (in_p
? reload_in_optab
[(int) reload_mode
]
485 : reload_out_optab
[(int) reload_mode
]);
487 if (icode
!= CODE_FOR_nothing
488 && insn_data
[(int) icode
].operand
[in_p
].predicate
489 && ! insn_data
[(int) icode
].operand
[in_p
].predicate (x
, reload_mode
))
490 icode
= CODE_FOR_nothing
;
491 else if (icode
!= CODE_FOR_nothing
)
493 const char *insn_constraint
, *scratch_constraint
;
494 char insn_letter
, scratch_letter
;
495 enum reg_class insn_class
, scratch_class
;
497 gcc_assert (insn_data
[(int) icode
].n_operands
== 3);
498 insn_constraint
= insn_data
[(int) icode
].operand
[!in_p
].constraint
;
499 if (!*insn_constraint
)
500 insn_class
= ALL_REGS
;
505 gcc_assert (*insn_constraint
== '=');
508 insn_letter
= *insn_constraint
;
510 = (insn_letter
== 'r' ? GENERAL_REGS
511 : REG_CLASS_FROM_CONSTRAINT ((unsigned char) insn_letter
,
513 gcc_assert (insn_class
!= NO_REGS
);
516 scratch_constraint
= insn_data
[(int) icode
].operand
[2].constraint
;
517 /* The scratch register's constraint must start with "=&",
518 except for an input reload, where only "=" is necessary,
519 and where it might be beneficial to re-use registers from
521 gcc_assert (scratch_constraint
[0] == '='
522 && (in_p
|| scratch_constraint
[1] == '&'));
523 scratch_constraint
++;
524 if (*scratch_constraint
== '&')
525 scratch_constraint
++;
526 scratch_letter
= *scratch_constraint
;
528 = (scratch_letter
== 'r' ? GENERAL_REGS
529 : REG_CLASS_FROM_CONSTRAINT ((unsigned char) scratch_letter
,
530 scratch_constraint
));
532 if (reg_class_subset_p (reload_class
, insn_class
))
534 gcc_assert (scratch_class
== class);
541 if (class == NO_REGS
)
544 sri
->t_icode
= icode
;
549 #include "gt-targhooks.h"