1 /* Default target hook functions.
2 Copyright (C) 2003, 2004 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, 59 Temple Place - Suite 330, 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"
67 default_external_libcall (rtx fun ATTRIBUTE_UNUSED
)
69 #ifdef ASM_OUTPUT_EXTERNAL_LIBCALL
70 ASM_OUTPUT_EXTERNAL_LIBCALL(asm_out_file
, fun
);
75 default_cc_modes_compatible (enum machine_mode m1
, enum machine_mode m2
)
83 default_return_in_memory (tree type
,
84 tree fntype ATTRIBUTE_UNUSED
)
86 #ifndef RETURN_IN_MEMORY
87 return (TYPE_MODE (type
) == BLKmode
);
89 return RETURN_IN_MEMORY (type
);
94 default_expand_builtin_saveregs (void)
96 error ("__builtin_saveregs not supported by this target");
101 default_setup_incoming_varargs (CUMULATIVE_ARGS
*ca ATTRIBUTE_UNUSED
,
102 enum machine_mode mode ATTRIBUTE_UNUSED
,
103 tree type ATTRIBUTE_UNUSED
,
104 int *pretend_arg_size ATTRIBUTE_UNUSED
,
105 int second_time ATTRIBUTE_UNUSED
)
109 /* The default implementation of TARGET_BUILTIN_SETJMP_FRAME_VALUE. */
112 default_builtin_setjmp_frame_value (void)
114 return virtual_stack_vars_rtx
;
117 /* Generic hook that takes a CUMULATIVE_ARGS pointer and returns false. */
120 hook_bool_CUMULATIVE_ARGS_false (CUMULATIVE_ARGS
*ca ATTRIBUTE_UNUSED
)
126 default_pretend_outgoing_varargs_named (CUMULATIVE_ARGS
*ca ATTRIBUTE_UNUSED
)
128 return (targetm
.calls
.setup_incoming_varargs
129 != default_setup_incoming_varargs
);
133 default_eh_return_filter_mode (void)
138 /* Generic hook that takes a CUMULATIVE_ARGS pointer and returns true. */
141 hook_bool_CUMULATIVE_ARGS_true (CUMULATIVE_ARGS
* a ATTRIBUTE_UNUSED
)
147 /* The generic C++ ABI specifies this is a 64-bit value. */
149 default_cxx_guard_type (void)
151 return long_long_integer_type_node
;
155 /* Returns the size of the cookie to use when allocating an array
156 whose elements have the indicated TYPE. Assumes that it is already
157 known that a cookie is needed. */
160 default_cxx_get_cookie_size (tree type
)
164 /* We need to allocate an additional max (sizeof (size_t), alignof
165 (true_type)) bytes. */
169 sizetype_size
= size_in_bytes (sizetype
);
170 type_align
= size_int (TYPE_ALIGN_UNIT (type
));
171 if (INT_CST_LT_UNSIGNED (type_align
, sizetype_size
))
172 cookie_size
= sizetype_size
;
174 cookie_size
= type_align
;
179 /* This version of the TARGET_PASS_BY_REFERENCE hook adds no conditions
180 beyond those mandated by generic code. */
183 hook_pass_by_reference_false (CUMULATIVE_ARGS
*c ATTRIBUTE_UNUSED
,
184 enum machine_mode mode ATTRIBUTE_UNUSED
, tree type ATTRIBUTE_UNUSED
,
185 bool named_arg ATTRIBUTE_UNUSED
)
190 /* Return true if a parameter must be passed by reference. This version
191 of the TARGET_PASS_BY_REFERENCE hook uses just MUST_PASS_IN_STACK. */
194 hook_pass_by_reference_must_pass_in_stack (CUMULATIVE_ARGS
*c ATTRIBUTE_UNUSED
,
195 enum machine_mode mode ATTRIBUTE_UNUSED
, tree type ATTRIBUTE_UNUSED
,
196 bool named_arg ATTRIBUTE_UNUSED
)
198 return targetm
.calls
.must_pass_in_stack (mode
, type
);
202 /* Emit any directives required to unwind this instruction. */
205 default_unwind_emit (FILE * stream ATTRIBUTE_UNUSED
,
206 rtx insn ATTRIBUTE_UNUSED
)
208 /* Should never happen. */
212 /* True if MODE is valid for the target. By "valid", we mean able to
213 be manipulated in non-trivial ways. In particular, this means all
214 the arithmetic is supported.
216 By default we guess this means that any C type is supported. If
217 we can't map the mode back to a type that would be available in C,
218 then reject it. Special case, here, is the double-word arithmetic
219 supported by optabs.c. */
222 default_scalar_mode_supported_p (enum machine_mode mode
)
224 int precision
= GET_MODE_PRECISION (mode
);
226 switch (GET_MODE_CLASS (mode
))
228 case MODE_PARTIAL_INT
:
230 if (precision
== CHAR_TYPE_SIZE
)
232 if (precision
== SHORT_TYPE_SIZE
)
234 if (precision
== INT_TYPE_SIZE
)
236 if (precision
== LONG_TYPE_SIZE
)
238 if (precision
== LONG_LONG_TYPE_SIZE
)
240 if (precision
== 2 * BITS_PER_WORD
)
245 if (precision
== FLOAT_TYPE_SIZE
)
247 if (precision
== DOUBLE_TYPE_SIZE
)
249 if (precision
== LONG_DOUBLE_TYPE_SIZE
)