Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / targhooks.c
blobda840190a2b8c691575a1bef757f2da93b9c95f9
1 /* Default target hook functions.
2 Copyright (C) 2003, 2004, 2005, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 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 /* 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
29 take some time.
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
37 this point.
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. */
50 #include "config.h"
51 #include "system.h"
52 #include "coretypes.h"
53 #include "tm.h"
54 #include "machmode.h"
55 #include "rtl.h"
56 #include "tree.h"
57 #include "expr.h"
58 #include "output.h"
59 #include "toplev.h"
60 #include "function.h"
61 #include "target.h"
62 #include "tm_p.h"
63 #include "target-def.h"
64 #include "ggc.h"
65 #include "hard-reg-set.h"
66 #include "reload.h"
67 #include "optabs.h"
68 #include "recog.h"
71 bool
72 default_legitimate_address_p (enum machine_mode mode ATTRIBUTE_UNUSED,
73 rtx addr ATTRIBUTE_UNUSED,
74 bool strict ATTRIBUTE_UNUSED)
76 #ifdef GO_IF_LEGITIMATE_ADDRESS
77 /* Defer to the old implementation using a goto. */
78 if (strict)
79 return strict_memory_address_p (mode, addr);
80 else
81 return memory_address_p (mode, addr);
82 #else
83 gcc_unreachable ();
84 #endif
87 void
88 default_external_libcall (rtx fun ATTRIBUTE_UNUSED)
90 #ifdef ASM_OUTPUT_EXTERNAL_LIBCALL
91 ASM_OUTPUT_EXTERNAL_LIBCALL(asm_out_file, fun);
92 #endif
95 int
96 default_unspec_may_trap_p (const_rtx x, unsigned flags)
98 int i;
100 if (GET_CODE (x) == UNSPEC_VOLATILE
101 /* Any floating arithmetic may trap. */
102 || (SCALAR_FLOAT_MODE_P (GET_MODE (x))
103 && flag_trapping_math))
104 return 1;
106 for (i = 0; i < XVECLEN (x, 0); ++i)
108 if (may_trap_p_1 (XVECEXP (x, 0, i), flags))
109 return 1;
112 return 0;
115 enum machine_mode
116 default_promote_function_mode (const_tree type ATTRIBUTE_UNUSED,
117 enum machine_mode mode,
118 int *punsignedp ATTRIBUTE_UNUSED,
119 const_tree funtype ATTRIBUTE_UNUSED,
120 int for_return ATTRIBUTE_UNUSED)
122 if (for_return == 2)
123 return promote_mode (type, mode, punsignedp);
124 return mode;
127 enum machine_mode
128 default_promote_function_mode_always_promote (const_tree type,
129 enum machine_mode mode,
130 int *punsignedp,
131 const_tree funtype ATTRIBUTE_UNUSED,
132 int for_return ATTRIBUTE_UNUSED)
134 return promote_mode (type, mode, punsignedp);
138 enum machine_mode
139 default_cc_modes_compatible (enum machine_mode m1, enum machine_mode m2)
141 if (m1 == m2)
142 return m1;
143 return VOIDmode;
146 bool
147 default_return_in_memory (const_tree type,
148 const_tree fntype ATTRIBUTE_UNUSED)
150 return (TYPE_MODE (type) == BLKmode);
154 default_legitimize_address (rtx x, rtx orig_x ATTRIBUTE_UNUSED,
155 enum machine_mode mode ATTRIBUTE_UNUSED)
157 return x;
161 default_expand_builtin_saveregs (void)
163 error ("__builtin_saveregs not supported by this target");
164 return const0_rtx;
167 void
168 default_setup_incoming_varargs (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
169 enum machine_mode mode ATTRIBUTE_UNUSED,
170 tree type ATTRIBUTE_UNUSED,
171 int *pretend_arg_size ATTRIBUTE_UNUSED,
172 int second_time ATTRIBUTE_UNUSED)
176 /* The default implementation of TARGET_BUILTIN_SETJMP_FRAME_VALUE. */
179 default_builtin_setjmp_frame_value (void)
181 return virtual_stack_vars_rtx;
184 /* Generic hook that takes a CUMULATIVE_ARGS pointer and returns false. */
186 bool
187 hook_bool_CUMULATIVE_ARGS_false (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED)
189 return false;
192 bool
193 default_pretend_outgoing_varargs_named (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED)
195 return (targetm.calls.setup_incoming_varargs
196 != default_setup_incoming_varargs);
199 enum machine_mode
200 default_eh_return_filter_mode (void)
202 return targetm.unwind_word_mode ();
205 enum machine_mode
206 default_libgcc_cmp_return_mode (void)
208 return word_mode;
211 enum machine_mode
212 default_libgcc_shift_count_mode (void)
214 return word_mode;
217 enum machine_mode
218 default_unwind_word_mode (void)
220 return word_mode;
223 /* The default implementation of TARGET_SHIFT_TRUNCATION_MASK. */
225 unsigned HOST_WIDE_INT
226 default_shift_truncation_mask (enum machine_mode mode)
228 return SHIFT_COUNT_TRUNCATED ? GET_MODE_BITSIZE (mode) - 1 : 0;
231 /* The default implementation of TARGET_MIN_DIVISIONS_FOR_RECIP_MUL. */
233 unsigned int
234 default_min_divisions_for_recip_mul (enum machine_mode mode ATTRIBUTE_UNUSED)
236 return have_insn_for (DIV, mode) ? 3 : 2;
239 /* The default implementation of TARGET_MODE_REP_EXTENDED. */
242 default_mode_rep_extended (enum machine_mode mode ATTRIBUTE_UNUSED,
243 enum machine_mode mode_rep ATTRIBUTE_UNUSED)
245 return UNKNOWN;
248 /* Generic hook that takes a CUMULATIVE_ARGS pointer and returns true. */
250 bool
251 hook_bool_CUMULATIVE_ARGS_true (CUMULATIVE_ARGS * a ATTRIBUTE_UNUSED)
253 return true;
256 /* Return machine mode for non-standard suffix
257 or VOIDmode if non-standard suffixes are unsupported. */
258 enum machine_mode
259 default_mode_for_suffix (char suffix ATTRIBUTE_UNUSED)
261 return VOIDmode;
264 /* The generic C++ ABI specifies this is a 64-bit value. */
265 tree
266 default_cxx_guard_type (void)
268 return long_long_integer_type_node;
272 /* Returns the size of the cookie to use when allocating an array
273 whose elements have the indicated TYPE. Assumes that it is already
274 known that a cookie is needed. */
276 tree
277 default_cxx_get_cookie_size (tree type)
279 tree cookie_size;
281 /* We need to allocate an additional max (sizeof (size_t), alignof
282 (true_type)) bytes. */
283 tree sizetype_size;
284 tree type_align;
286 sizetype_size = size_in_bytes (sizetype);
287 type_align = size_int (TYPE_ALIGN_UNIT (type));
288 if (INT_CST_LT_UNSIGNED (type_align, sizetype_size))
289 cookie_size = sizetype_size;
290 else
291 cookie_size = type_align;
293 return cookie_size;
296 /* Return true if a parameter must be passed by reference. This version
297 of the TARGET_PASS_BY_REFERENCE hook uses just MUST_PASS_IN_STACK. */
299 bool
300 hook_pass_by_reference_must_pass_in_stack (CUMULATIVE_ARGS *c ATTRIBUTE_UNUSED,
301 enum machine_mode mode ATTRIBUTE_UNUSED, const_tree type ATTRIBUTE_UNUSED,
302 bool named_arg ATTRIBUTE_UNUSED)
304 return targetm.calls.must_pass_in_stack (mode, type);
307 /* Return true if a parameter follows callee copies conventions. This
308 version of the hook is true for all named arguments. */
310 bool
311 hook_callee_copies_named (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
312 enum machine_mode mode ATTRIBUTE_UNUSED,
313 const_tree type ATTRIBUTE_UNUSED, bool named)
315 return named;
318 /* Emit any directives required to unwind this instruction. */
320 void
321 default_unwind_emit (FILE * stream ATTRIBUTE_UNUSED,
322 rtx insn ATTRIBUTE_UNUSED)
324 /* Should never happen. */
325 gcc_unreachable ();
328 /* True if MODE is valid for the target. By "valid", we mean able to
329 be manipulated in non-trivial ways. In particular, this means all
330 the arithmetic is supported.
332 By default we guess this means that any C type is supported. If
333 we can't map the mode back to a type that would be available in C,
334 then reject it. Special case, here, is the double-word arithmetic
335 supported by optabs.c. */
337 bool
338 default_scalar_mode_supported_p (enum machine_mode mode)
340 int precision = GET_MODE_PRECISION (mode);
342 switch (GET_MODE_CLASS (mode))
344 case MODE_PARTIAL_INT:
345 case MODE_INT:
346 if (precision == CHAR_TYPE_SIZE)
347 return true;
348 if (precision == SHORT_TYPE_SIZE)
349 return true;
350 if (precision == INT_TYPE_SIZE)
351 return true;
352 if (precision == LONG_TYPE_SIZE)
353 return true;
354 if (precision == LONG_LONG_TYPE_SIZE)
355 return true;
356 if (precision == 2 * BITS_PER_WORD)
357 return true;
358 return false;
360 case MODE_FLOAT:
361 if (precision == FLOAT_TYPE_SIZE)
362 return true;
363 if (precision == DOUBLE_TYPE_SIZE)
364 return true;
365 if (precision == LONG_DOUBLE_TYPE_SIZE)
366 return true;
367 return false;
369 case MODE_DECIMAL_FLOAT:
370 case MODE_FRACT:
371 case MODE_UFRACT:
372 case MODE_ACCUM:
373 case MODE_UACCUM:
374 return false;
376 default:
377 gcc_unreachable ();
381 /* True if the target supports decimal floating point. */
383 bool
384 default_decimal_float_supported_p (void)
386 return ENABLE_DECIMAL_FLOAT;
389 /* True if the target supports fixed-point arithmetic. */
391 bool
392 default_fixed_point_supported_p (void)
394 return ENABLE_FIXED_POINT;
397 /* NULL if INSN insn is valid within a low-overhead loop, otherwise returns
398 an error message.
400 This function checks whether a given INSN is valid within a low-overhead
401 loop. If INSN is invalid it returns the reason for that, otherwise it
402 returns NULL. A called function may clobber any special registers required
403 for low-overhead looping. Additionally, some targets (eg, PPC) use the count
404 register for branch on table instructions. We reject the doloop pattern in
405 these cases. */
407 const char *
408 default_invalid_within_doloop (const_rtx insn)
410 if (CALL_P (insn))
411 return "Function call in loop.";
413 if (JUMP_TABLE_DATA_P (insn))
414 return "Computed branch in the loop.";
416 return NULL;
419 /* Mapping of builtin functions to vectorized variants. */
421 tree
422 default_builtin_vectorized_function (tree fndecl ATTRIBUTE_UNUSED,
423 tree type_out ATTRIBUTE_UNUSED,
424 tree type_in ATTRIBUTE_UNUSED)
426 return NULL_TREE;
429 /* Vectorized conversion. */
431 tree
432 default_builtin_vectorized_conversion (unsigned int code ATTRIBUTE_UNUSED,
433 tree dest_type ATTRIBUTE_UNUSED,
434 tree src_type ATTRIBUTE_UNUSED)
436 return NULL_TREE;
439 /* Reciprocal. */
441 tree
442 default_builtin_reciprocal (unsigned int fn ATTRIBUTE_UNUSED,
443 bool md_fn ATTRIBUTE_UNUSED,
444 bool sqrt ATTRIBUTE_UNUSED)
446 return NULL_TREE;
449 bool
450 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false (
451 CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
452 enum machine_mode mode ATTRIBUTE_UNUSED,
453 const_tree type ATTRIBUTE_UNUSED, bool named ATTRIBUTE_UNUSED)
455 return false;
458 bool
459 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true (
460 CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
461 enum machine_mode mode ATTRIBUTE_UNUSED,
462 const_tree type ATTRIBUTE_UNUSED, bool named ATTRIBUTE_UNUSED)
464 return true;
468 hook_int_CUMULATIVE_ARGS_mode_tree_bool_0 (
469 CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
470 enum machine_mode mode ATTRIBUTE_UNUSED,
471 tree type ATTRIBUTE_UNUSED, bool named ATTRIBUTE_UNUSED)
473 return 0;
476 void
477 hook_void_bitmap (bitmap regs ATTRIBUTE_UNUSED)
481 const char *
482 hook_invalid_arg_for_unprototyped_fn (
483 const_tree typelist ATTRIBUTE_UNUSED,
484 const_tree funcdecl ATTRIBUTE_UNUSED,
485 const_tree val ATTRIBUTE_UNUSED)
487 return NULL;
490 /* Initialize the stack protection decls. */
492 /* Stack protection related decls living in libgcc. */
493 static GTY(()) tree stack_chk_guard_decl;
495 tree
496 default_stack_protect_guard (void)
498 tree t = stack_chk_guard_decl;
500 if (t == NULL)
502 rtx x;
504 t = build_decl (UNKNOWN_LOCATION,
505 VAR_DECL, get_identifier ("__stack_chk_guard"),
506 ptr_type_node);
507 TREE_STATIC (t) = 1;
508 TREE_PUBLIC (t) = 1;
509 DECL_EXTERNAL (t) = 1;
510 TREE_USED (t) = 1;
511 TREE_THIS_VOLATILE (t) = 1;
512 DECL_ARTIFICIAL (t) = 1;
513 DECL_IGNORED_P (t) = 1;
515 /* Do not share RTL as the declaration is visible outside of
516 current function. */
517 x = DECL_RTL (t);
518 RTX_FLAG (x, used) = 1;
520 stack_chk_guard_decl = t;
523 return t;
526 static GTY(()) tree stack_chk_fail_decl;
528 tree
529 default_external_stack_protect_fail (void)
531 tree t = stack_chk_fail_decl;
533 if (t == NULL_TREE)
535 t = build_function_type_list (void_type_node, NULL_TREE);
536 t = build_decl (UNKNOWN_LOCATION,
537 FUNCTION_DECL, get_identifier ("__stack_chk_fail"), t);
538 TREE_STATIC (t) = 1;
539 TREE_PUBLIC (t) = 1;
540 DECL_EXTERNAL (t) = 1;
541 TREE_USED (t) = 1;
542 TREE_THIS_VOLATILE (t) = 1;
543 TREE_NOTHROW (t) = 1;
544 DECL_ARTIFICIAL (t) = 1;
545 DECL_IGNORED_P (t) = 1;
546 DECL_VISIBILITY (t) = VISIBILITY_DEFAULT;
547 DECL_VISIBILITY_SPECIFIED (t) = 1;
549 stack_chk_fail_decl = t;
552 return build_call_expr (t, 0);
555 tree
556 default_hidden_stack_protect_fail (void)
558 #ifndef HAVE_GAS_HIDDEN
559 return default_external_stack_protect_fail ();
560 #else
561 tree t = stack_chk_fail_decl;
563 if (!flag_pic)
564 return default_external_stack_protect_fail ();
566 if (t == NULL_TREE)
568 t = build_function_type_list (void_type_node, NULL_TREE);
569 t = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL,
570 get_identifier ("__stack_chk_fail_local"), t);
571 TREE_STATIC (t) = 1;
572 TREE_PUBLIC (t) = 1;
573 DECL_EXTERNAL (t) = 1;
574 TREE_USED (t) = 1;
575 TREE_THIS_VOLATILE (t) = 1;
576 TREE_NOTHROW (t) = 1;
577 DECL_ARTIFICIAL (t) = 1;
578 DECL_IGNORED_P (t) = 1;
579 DECL_VISIBILITY_SPECIFIED (t) = 1;
580 DECL_VISIBILITY (t) = VISIBILITY_HIDDEN;
582 stack_chk_fail_decl = t;
585 return build_call_expr (t, 0);
586 #endif
589 bool
590 hook_bool_const_rtx_commutative_p (const_rtx x,
591 int outer_code ATTRIBUTE_UNUSED)
593 return COMMUTATIVE_P (x);
597 default_function_value (const_tree ret_type ATTRIBUTE_UNUSED,
598 const_tree fn_decl_or_type,
599 bool outgoing ATTRIBUTE_UNUSED)
601 /* The old interface doesn't handle receiving the function type. */
602 if (fn_decl_or_type
603 && !DECL_P (fn_decl_or_type))
604 fn_decl_or_type = NULL;
606 #ifdef FUNCTION_OUTGOING_VALUE
607 if (outgoing)
608 return FUNCTION_OUTGOING_VALUE (ret_type, fn_decl_or_type);
609 #endif
611 #ifdef FUNCTION_VALUE
612 return FUNCTION_VALUE (ret_type, fn_decl_or_type);
613 #else
614 gcc_unreachable ();
615 #endif
619 default_libcall_value (enum machine_mode mode ATTRIBUTE_UNUSED,
620 const_rtx fun ATTRIBUTE_UNUSED)
622 #ifdef LIBCALL_VALUE
623 return LIBCALL_VALUE (mode);
624 #else
625 gcc_unreachable ();
626 #endif
629 /* The default hook for TARGET_FUNCTION_VALUE_REGNO_P. */
631 bool
632 default_function_value_regno_p (const unsigned int regno ATTRIBUTE_UNUSED)
634 #ifdef FUNCTION_VALUE_REGNO_P
635 return FUNCTION_VALUE_REGNO_P (regno);
636 #else
637 gcc_unreachable ();
638 #endif
642 default_internal_arg_pointer (void)
644 /* If the reg that the virtual arg pointer will be translated into is
645 not a fixed reg or is the stack pointer, make a copy of the virtual
646 arg pointer, and address parms via the copy. The frame pointer is
647 considered fixed even though it is not marked as such. */
648 if ((ARG_POINTER_REGNUM == STACK_POINTER_REGNUM
649 || ! (fixed_regs[ARG_POINTER_REGNUM]
650 || ARG_POINTER_REGNUM == FRAME_POINTER_REGNUM)))
651 return copy_to_reg (virtual_incoming_args_rtx);
652 else
653 return virtual_incoming_args_rtx;
657 default_static_chain (const_tree fndecl, bool incoming_p)
659 if (!DECL_STATIC_CHAIN (fndecl))
660 return NULL;
662 if (incoming_p)
664 #ifdef STATIC_CHAIN_INCOMING_REGNUM
665 return gen_rtx_REG (Pmode, STATIC_CHAIN_INCOMING_REGNUM);
666 #endif
669 #ifdef STATIC_CHAIN_REGNUM
670 return gen_rtx_REG (Pmode, STATIC_CHAIN_REGNUM);
671 #endif
674 static bool issued_error;
675 if (!issued_error)
677 issued_error = true;
678 sorry ("nested functions not supported on this target");
681 /* It really doesn't matter what we return here, so long at it
682 doesn't cause the rest of the compiler to crash. */
683 return gen_rtx_MEM (Pmode, stack_pointer_rtx);
687 void
688 default_trampoline_init (rtx ARG_UNUSED (m_tramp), tree ARG_UNUSED (t_func),
689 rtx ARG_UNUSED (r_chain))
691 sorry ("nested function trampolines not supported on this target");
694 enum reg_class
695 default_branch_target_register_class (void)
697 return NO_REGS;
700 #ifdef IRA_COVER_CLASSES
701 const enum reg_class *
702 default_ira_cover_classes (void)
704 static enum reg_class classes[] = IRA_COVER_CLASSES;
705 return classes;
707 #endif
709 enum reg_class
710 default_secondary_reload (bool in_p ATTRIBUTE_UNUSED, rtx x ATTRIBUTE_UNUSED,
711 enum reg_class reload_class ATTRIBUTE_UNUSED,
712 enum machine_mode reload_mode ATTRIBUTE_UNUSED,
713 secondary_reload_info *sri)
715 enum reg_class rclass = NO_REGS;
717 if (sri->prev_sri && sri->prev_sri->t_icode != CODE_FOR_nothing)
719 sri->icode = sri->prev_sri->t_icode;
720 return NO_REGS;
722 #ifdef SECONDARY_INPUT_RELOAD_CLASS
723 if (in_p)
724 rclass = SECONDARY_INPUT_RELOAD_CLASS (reload_class, reload_mode, x);
725 #endif
726 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
727 if (! in_p)
728 rclass = SECONDARY_OUTPUT_RELOAD_CLASS (reload_class, reload_mode, x);
729 #endif
730 if (rclass != NO_REGS)
732 enum insn_code icode = (in_p ? reload_in_optab[(int) reload_mode]
733 : reload_out_optab[(int) reload_mode]);
735 if (icode != CODE_FOR_nothing
736 && insn_data[(int) icode].operand[in_p].predicate
737 && ! insn_data[(int) icode].operand[in_p].predicate (x, reload_mode))
738 icode = CODE_FOR_nothing;
739 else if (icode != CODE_FOR_nothing)
741 const char *insn_constraint, *scratch_constraint;
742 char insn_letter, scratch_letter;
743 enum reg_class insn_class, scratch_class;
745 gcc_assert (insn_data[(int) icode].n_operands == 3);
746 insn_constraint = insn_data[(int) icode].operand[!in_p].constraint;
747 if (!*insn_constraint)
748 insn_class = ALL_REGS;
749 else
751 if (in_p)
753 gcc_assert (*insn_constraint == '=');
754 insn_constraint++;
756 insn_letter = *insn_constraint;
757 insn_class
758 = (insn_letter == 'r' ? GENERAL_REGS
759 : REG_CLASS_FROM_CONSTRAINT ((unsigned char) insn_letter,
760 insn_constraint));
761 gcc_assert (insn_class != NO_REGS);
764 scratch_constraint = insn_data[(int) icode].operand[2].constraint;
765 /* The scratch register's constraint must start with "=&",
766 except for an input reload, where only "=" is necessary,
767 and where it might be beneficial to re-use registers from
768 the input. */
769 gcc_assert (scratch_constraint[0] == '='
770 && (in_p || scratch_constraint[1] == '&'));
771 scratch_constraint++;
772 if (*scratch_constraint == '&')
773 scratch_constraint++;
774 scratch_letter = *scratch_constraint;
775 scratch_class
776 = (scratch_letter == 'r' ? GENERAL_REGS
777 : REG_CLASS_FROM_CONSTRAINT ((unsigned char) scratch_letter,
778 scratch_constraint));
780 if (reg_class_subset_p (reload_class, insn_class))
782 gcc_assert (scratch_class == rclass);
783 rclass = NO_REGS;
785 else
786 rclass = insn_class;
789 if (rclass == NO_REGS)
790 sri->icode = icode;
791 else
792 sri->t_icode = icode;
794 return rclass;
797 bool
798 default_handle_c_option (size_t code ATTRIBUTE_UNUSED,
799 const char *arg ATTRIBUTE_UNUSED,
800 int value ATTRIBUTE_UNUSED)
802 return false;
805 /* By default, if flag_pic is true, then neither local nor global relocs
806 should be placed in readonly memory. */
809 default_reloc_rw_mask (void)
811 return flag_pic ? 3 : 0;
814 /* By default, do no modification. */
815 tree default_mangle_decl_assembler_name (tree decl ATTRIBUTE_UNUSED,
816 tree id)
818 return id;
821 bool
822 default_builtin_vector_alignment_reachable (const_tree type, bool is_packed)
824 if (is_packed)
825 return false;
827 /* Assuming that types whose size is > pointer-size are not guaranteed to be
828 naturally aligned. */
829 if (tree_int_cst_compare (TYPE_SIZE (type), bitsize_int (POINTER_SIZE)) > 0)
830 return false;
832 /* Assuming that types whose size is <= pointer-size
833 are naturally aligned. */
834 return true;
837 /* By default, assume that a target supports any factor of misalignment
838 memory access if it supports movmisalign patten.
839 is_packed is true if the memory access is defined in a packed struct. */
840 bool
841 default_builtin_support_vector_misalignment (enum machine_mode mode,
842 const_tree type
843 ATTRIBUTE_UNUSED,
844 int misalignment
845 ATTRIBUTE_UNUSED,
846 bool is_packed
847 ATTRIBUTE_UNUSED)
849 if (optab_handler (movmisalign_optab, mode)->insn_code != CODE_FOR_nothing)
850 return true;
851 return false;
854 /* Determine whether or not a pointer mode is valid. Assume defaults
855 of ptr_mode or Pmode - can be overridden. */
856 bool
857 default_valid_pointer_mode (enum machine_mode mode)
859 return (mode == ptr_mode || mode == Pmode);
862 /* Return the mode for a pointer to a given ADDRSPACE, defaulting to ptr_mode
863 for the generic address space only. */
865 enum machine_mode
866 default_addr_space_pointer_mode (addr_space_t addrspace ATTRIBUTE_UNUSED)
868 gcc_assert (ADDR_SPACE_GENERIC_P (addrspace));
869 return ptr_mode;
872 /* Return the mode for an address in a given ADDRSPACE, defaulting to Pmode
873 for the generic address space only. */
875 enum machine_mode
876 default_addr_space_address_mode (addr_space_t addrspace ATTRIBUTE_UNUSED)
878 gcc_assert (ADDR_SPACE_GENERIC_P (addrspace));
879 return Pmode;
882 /* Named address space version of valid_pointer_mode. */
884 bool
885 default_addr_space_valid_pointer_mode (enum machine_mode mode, addr_space_t as)
887 if (!ADDR_SPACE_GENERIC_P (as))
888 return (mode == targetm.addr_space.pointer_mode (as)
889 || mode == targetm.addr_space.address_mode (as));
891 return targetm.valid_pointer_mode (mode);
894 /* Some places still assume that all pointer or address modes are the
895 standard Pmode and ptr_mode. These optimizations become invalid if
896 the target actually supports multiple different modes. For now,
897 we disable such optimizations on such targets, using this function. */
899 bool
900 target_default_pointer_address_modes_p (void)
902 if (targetm.addr_space.address_mode != default_addr_space_address_mode)
903 return false;
904 if (targetm.addr_space.pointer_mode != default_addr_space_pointer_mode)
905 return false;
907 return true;
910 /* Named address space version of legitimate_address_p. */
912 bool
913 default_addr_space_legitimate_address_p (enum machine_mode mode, rtx mem,
914 bool strict, addr_space_t as)
916 if (!ADDR_SPACE_GENERIC_P (as))
917 gcc_unreachable ();
919 return targetm.legitimate_address_p (mode, mem, strict);
922 /* Named address space version of LEGITIMIZE_ADDRESS. */
925 default_addr_space_legitimize_address (rtx x, rtx oldx,
926 enum machine_mode mode, addr_space_t as)
928 if (!ADDR_SPACE_GENERIC_P (as))
929 return x;
931 return targetm.legitimize_address (x, oldx, mode);
934 /* The default hook for determining if one named address space is a subset of
935 another and to return which address space to use as the common address
936 space. */
938 bool
939 default_addr_space_subset_p (addr_space_t subset, addr_space_t superset)
941 return (subset == superset);
944 /* The default hook for TARGET_ADDR_SPACE_CONVERT. This hook should never be
945 called for targets with only a generic address space. */
948 default_addr_space_convert (rtx op ATTRIBUTE_UNUSED,
949 tree from_type ATTRIBUTE_UNUSED,
950 tree to_type ATTRIBUTE_UNUSED)
952 gcc_unreachable ();
955 bool
956 default_hard_regno_scratch_ok (unsigned int regno ATTRIBUTE_UNUSED)
958 return true;
961 /* The default implementation of TARGET_MODE_DEPENDENT_ADDRESS_P. */
963 bool
964 default_mode_dependent_address_p (const_rtx addr ATTRIBUTE_UNUSED)
966 #ifdef GO_IF_MODE_DEPENDENT_ADDRESS
968 GO_IF_MODE_DEPENDENT_ADDRESS (CONST_CAST_RTX (addr), win);
969 return false;
970 /* Label `win' might (not) be used via GO_IF_MODE_DEPENDENT_ADDRESS. */
971 win: ATTRIBUTE_UNUSED_LABEL
972 return true;
974 #else
976 return false;
978 #endif
981 bool
982 default_target_option_valid_attribute_p (tree ARG_UNUSED (fndecl),
983 tree ARG_UNUSED (name),
984 tree ARG_UNUSED (args),
985 int ARG_UNUSED (flags))
987 warning (OPT_Wattributes,
988 "target attribute is not supported on this machine");
990 return false;
993 bool
994 default_target_option_pragma_parse (tree ARG_UNUSED (args),
995 tree ARG_UNUSED (pop_target))
997 warning (OPT_Wpragmas,
998 "#pragma GCC target is not supported for this machine");
1000 return false;
1003 bool
1004 default_target_can_inline_p (tree caller, tree callee)
1006 bool ret = false;
1007 tree callee_opts = DECL_FUNCTION_SPECIFIC_TARGET (callee);
1008 tree caller_opts = DECL_FUNCTION_SPECIFIC_TARGET (caller);
1010 /* If callee has no option attributes, then it is ok to inline */
1011 if (!callee_opts)
1012 ret = true;
1014 /* If caller has no option attributes, but callee does then it is not ok to
1015 inline */
1016 else if (!caller_opts)
1017 ret = false;
1019 /* If both caller and callee have attributes, assume that if the pointer is
1020 different, the the two functions have different target options since
1021 build_target_option_node uses a hash table for the options. */
1022 else
1023 ret = (callee_opts == caller_opts);
1025 return ret;
1028 #ifndef HAVE_casesi
1029 # define HAVE_casesi 0
1030 #endif
1032 /* If the machine does not have a case insn that compares the bounds,
1033 this means extra overhead for dispatch tables, which raises the
1034 threshold for using them. */
1036 unsigned int default_case_values_threshold (void)
1038 return (HAVE_casesi ? 4 : 5);
1041 bool
1042 default_have_conditional_execution (void)
1044 #ifdef HAVE_conditional_execution
1045 return HAVE_conditional_execution;
1046 #else
1047 return false;
1048 #endif
1051 #include "gt-targhooks.h"