* xcoffout.h (xcoffout_source_line): Update prototype.
[official-gcc.git] / gcc / targhooks.c
blobd5c80c29aad3af415dc714d44d669e5f7ec7c6f4
1 /* Default target hook functions.
2 Copyright (C) 2003, 2004, 2005, 2007, 2008, 2009
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_cc_modes_compatible (enum machine_mode m1, enum machine_mode m2)
118 if (m1 == m2)
119 return m1;
120 return VOIDmode;
123 bool
124 default_return_in_memory (const_tree type,
125 const_tree fntype ATTRIBUTE_UNUSED)
127 return (TYPE_MODE (type) == BLKmode);
131 default_legitimize_address (rtx x, rtx orig_x ATTRIBUTE_UNUSED,
132 enum machine_mode mode ATTRIBUTE_UNUSED)
134 return x;
138 default_expand_builtin_saveregs (void)
140 error ("__builtin_saveregs not supported by this target");
141 return const0_rtx;
144 void
145 default_setup_incoming_varargs (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
146 enum machine_mode mode ATTRIBUTE_UNUSED,
147 tree type ATTRIBUTE_UNUSED,
148 int *pretend_arg_size ATTRIBUTE_UNUSED,
149 int second_time ATTRIBUTE_UNUSED)
153 /* The default implementation of TARGET_BUILTIN_SETJMP_FRAME_VALUE. */
156 default_builtin_setjmp_frame_value (void)
158 return virtual_stack_vars_rtx;
161 /* Generic hook that takes a CUMULATIVE_ARGS pointer and returns false. */
163 bool
164 hook_bool_CUMULATIVE_ARGS_false (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED)
166 return false;
169 bool
170 default_pretend_outgoing_varargs_named (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED)
172 return (targetm.calls.setup_incoming_varargs
173 != default_setup_incoming_varargs);
176 enum machine_mode
177 default_eh_return_filter_mode (void)
179 return targetm.unwind_word_mode ();
182 enum machine_mode
183 default_libgcc_cmp_return_mode (void)
185 return word_mode;
188 enum machine_mode
189 default_libgcc_shift_count_mode (void)
191 return word_mode;
194 enum machine_mode
195 default_unwind_word_mode (void)
197 return word_mode;
200 /* The default implementation of TARGET_SHIFT_TRUNCATION_MASK. */
202 unsigned HOST_WIDE_INT
203 default_shift_truncation_mask (enum machine_mode mode)
205 return SHIFT_COUNT_TRUNCATED ? GET_MODE_BITSIZE (mode) - 1 : 0;
208 /* The default implementation of TARGET_MIN_DIVISIONS_FOR_RECIP_MUL. */
210 unsigned int
211 default_min_divisions_for_recip_mul (enum machine_mode mode ATTRIBUTE_UNUSED)
213 return have_insn_for (DIV, mode) ? 3 : 2;
216 /* The default implementation of TARGET_MODE_REP_EXTENDED. */
219 default_mode_rep_extended (enum machine_mode mode ATTRIBUTE_UNUSED,
220 enum machine_mode mode_rep ATTRIBUTE_UNUSED)
222 return UNKNOWN;
225 /* Generic hook that takes a CUMULATIVE_ARGS pointer and returns true. */
227 bool
228 hook_bool_CUMULATIVE_ARGS_true (CUMULATIVE_ARGS * a ATTRIBUTE_UNUSED)
230 return true;
233 /* Return machine mode for non-standard suffix
234 or VOIDmode if non-standard suffixes are unsupported. */
235 enum machine_mode
236 default_mode_for_suffix (char suffix ATTRIBUTE_UNUSED)
238 return VOIDmode;
241 /* The generic C++ ABI specifies this is a 64-bit value. */
242 tree
243 default_cxx_guard_type (void)
245 return long_long_integer_type_node;
249 /* Returns the size of the cookie to use when allocating an array
250 whose elements have the indicated TYPE. Assumes that it is already
251 known that a cookie is needed. */
253 tree
254 default_cxx_get_cookie_size (tree type)
256 tree cookie_size;
258 /* We need to allocate an additional max (sizeof (size_t), alignof
259 (true_type)) bytes. */
260 tree sizetype_size;
261 tree type_align;
263 sizetype_size = size_in_bytes (sizetype);
264 type_align = size_int (TYPE_ALIGN_UNIT (type));
265 if (INT_CST_LT_UNSIGNED (type_align, sizetype_size))
266 cookie_size = sizetype_size;
267 else
268 cookie_size = type_align;
270 return cookie_size;
273 /* Return true if a parameter must be passed by reference. This version
274 of the TARGET_PASS_BY_REFERENCE hook uses just MUST_PASS_IN_STACK. */
276 bool
277 hook_pass_by_reference_must_pass_in_stack (CUMULATIVE_ARGS *c ATTRIBUTE_UNUSED,
278 enum machine_mode mode ATTRIBUTE_UNUSED, const_tree type ATTRIBUTE_UNUSED,
279 bool named_arg ATTRIBUTE_UNUSED)
281 return targetm.calls.must_pass_in_stack (mode, type);
284 /* Return true if a parameter follows callee copies conventions. This
285 version of the hook is true for all named arguments. */
287 bool
288 hook_callee_copies_named (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
289 enum machine_mode mode ATTRIBUTE_UNUSED,
290 const_tree type ATTRIBUTE_UNUSED, bool named)
292 return named;
295 /* Emit any directives required to unwind this instruction. */
297 void
298 default_unwind_emit (FILE * stream ATTRIBUTE_UNUSED,
299 rtx insn ATTRIBUTE_UNUSED)
301 /* Should never happen. */
302 gcc_unreachable ();
305 /* True if MODE is valid for the target. By "valid", we mean able to
306 be manipulated in non-trivial ways. In particular, this means all
307 the arithmetic is supported.
309 By default we guess this means that any C type is supported. If
310 we can't map the mode back to a type that would be available in C,
311 then reject it. Special case, here, is the double-word arithmetic
312 supported by optabs.c. */
314 bool
315 default_scalar_mode_supported_p (enum machine_mode mode)
317 int precision = GET_MODE_PRECISION (mode);
319 switch (GET_MODE_CLASS (mode))
321 case MODE_PARTIAL_INT:
322 case MODE_INT:
323 if (precision == CHAR_TYPE_SIZE)
324 return true;
325 if (precision == SHORT_TYPE_SIZE)
326 return true;
327 if (precision == INT_TYPE_SIZE)
328 return true;
329 if (precision == LONG_TYPE_SIZE)
330 return true;
331 if (precision == LONG_LONG_TYPE_SIZE)
332 return true;
333 if (precision == 2 * BITS_PER_WORD)
334 return true;
335 return false;
337 case MODE_FLOAT:
338 if (precision == FLOAT_TYPE_SIZE)
339 return true;
340 if (precision == DOUBLE_TYPE_SIZE)
341 return true;
342 if (precision == LONG_DOUBLE_TYPE_SIZE)
343 return true;
344 return false;
346 case MODE_DECIMAL_FLOAT:
347 case MODE_FRACT:
348 case MODE_UFRACT:
349 case MODE_ACCUM:
350 case MODE_UACCUM:
351 return false;
353 default:
354 gcc_unreachable ();
358 /* True if the target supports decimal floating point. */
360 bool
361 default_decimal_float_supported_p (void)
363 return ENABLE_DECIMAL_FLOAT;
366 /* True if the target supports fixed-point arithmetic. */
368 bool
369 default_fixed_point_supported_p (void)
371 return ENABLE_FIXED_POINT;
374 /* NULL if INSN insn is valid within a low-overhead loop, otherwise returns
375 an error message.
377 This function checks whether a given INSN is valid within a low-overhead
378 loop. If INSN is invalid it returns the reason for that, otherwise it
379 returns NULL. A called function may clobber any special registers required
380 for low-overhead looping. Additionally, some targets (eg, PPC) use the count
381 register for branch on table instructions. We reject the doloop pattern in
382 these cases. */
384 const char *
385 default_invalid_within_doloop (const_rtx insn)
387 if (CALL_P (insn))
388 return "Function call in loop.";
390 if (JUMP_P (insn)
391 && (GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC
392 || GET_CODE (PATTERN (insn)) == ADDR_VEC))
393 return "Computed branch in the loop.";
395 return NULL;
398 /* Mapping of builtin functions to vectorized variants. */
400 tree
401 default_builtin_vectorized_function (enum built_in_function fn ATTRIBUTE_UNUSED,
402 tree type_out ATTRIBUTE_UNUSED,
403 tree type_in ATTRIBUTE_UNUSED)
405 return NULL_TREE;
408 /* Vectorized conversion. */
410 tree
411 default_builtin_vectorized_conversion (enum tree_code code ATTRIBUTE_UNUSED,
412 tree type ATTRIBUTE_UNUSED)
414 return NULL_TREE;
417 /* Reciprocal. */
419 tree
420 default_builtin_reciprocal (enum built_in_function fn ATTRIBUTE_UNUSED,
421 bool md_fn ATTRIBUTE_UNUSED,
422 bool sqrt ATTRIBUTE_UNUSED)
424 return NULL_TREE;
427 bool
428 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false (
429 CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
430 enum machine_mode mode ATTRIBUTE_UNUSED,
431 const_tree type ATTRIBUTE_UNUSED, bool named ATTRIBUTE_UNUSED)
433 return false;
436 bool
437 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true (
438 CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
439 enum machine_mode mode ATTRIBUTE_UNUSED,
440 const_tree type ATTRIBUTE_UNUSED, bool named ATTRIBUTE_UNUSED)
442 return true;
446 hook_int_CUMULATIVE_ARGS_mode_tree_bool_0 (
447 CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
448 enum machine_mode mode ATTRIBUTE_UNUSED,
449 tree type ATTRIBUTE_UNUSED, bool named ATTRIBUTE_UNUSED)
451 return 0;
454 void
455 hook_void_bitmap (bitmap regs ATTRIBUTE_UNUSED)
459 const char *
460 hook_invalid_arg_for_unprototyped_fn (
461 const_tree typelist ATTRIBUTE_UNUSED,
462 const_tree funcdecl ATTRIBUTE_UNUSED,
463 const_tree val ATTRIBUTE_UNUSED)
465 return NULL;
468 /* Initialize the stack protection decls. */
470 /* Stack protection related decls living in libgcc. */
471 static GTY(()) tree stack_chk_guard_decl;
473 tree
474 default_stack_protect_guard (void)
476 tree t = stack_chk_guard_decl;
478 if (t == NULL)
480 t = build_decl (VAR_DECL, get_identifier ("__stack_chk_guard"),
481 ptr_type_node);
482 TREE_STATIC (t) = 1;
483 TREE_PUBLIC (t) = 1;
484 DECL_EXTERNAL (t) = 1;
485 TREE_USED (t) = 1;
486 TREE_THIS_VOLATILE (t) = 1;
487 DECL_ARTIFICIAL (t) = 1;
488 DECL_IGNORED_P (t) = 1;
490 stack_chk_guard_decl = t;
493 return t;
496 static GTY(()) tree stack_chk_fail_decl;
498 tree
499 default_external_stack_protect_fail (void)
501 tree t = stack_chk_fail_decl;
503 if (t == NULL_TREE)
505 t = build_function_type_list (void_type_node, NULL_TREE);
506 t = build_decl (FUNCTION_DECL, get_identifier ("__stack_chk_fail"), t);
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 TREE_NOTHROW (t) = 1;
513 DECL_ARTIFICIAL (t) = 1;
514 DECL_IGNORED_P (t) = 1;
515 DECL_VISIBILITY (t) = VISIBILITY_DEFAULT;
516 DECL_VISIBILITY_SPECIFIED (t) = 1;
518 stack_chk_fail_decl = t;
521 return build_call_expr (t, 0);
524 tree
525 default_hidden_stack_protect_fail (void)
527 #ifndef HAVE_GAS_HIDDEN
528 return default_external_stack_protect_fail ();
529 #else
530 tree t = stack_chk_fail_decl;
532 if (!flag_pic)
533 return default_external_stack_protect_fail ();
535 if (t == NULL_TREE)
537 t = build_function_type_list (void_type_node, NULL_TREE);
538 t = build_decl (FUNCTION_DECL,
539 get_identifier ("__stack_chk_fail_local"), t);
540 TREE_STATIC (t) = 1;
541 TREE_PUBLIC (t) = 1;
542 DECL_EXTERNAL (t) = 1;
543 TREE_USED (t) = 1;
544 TREE_THIS_VOLATILE (t) = 1;
545 TREE_NOTHROW (t) = 1;
546 DECL_ARTIFICIAL (t) = 1;
547 DECL_IGNORED_P (t) = 1;
548 DECL_VISIBILITY_SPECIFIED (t) = 1;
549 DECL_VISIBILITY (t) = VISIBILITY_HIDDEN;
551 stack_chk_fail_decl = t;
554 return build_call_expr (t, 0);
555 #endif
558 bool
559 hook_bool_const_rtx_commutative_p (const_rtx x,
560 int outer_code ATTRIBUTE_UNUSED)
562 return COMMUTATIVE_P (x);
566 default_function_value (const_tree ret_type ATTRIBUTE_UNUSED,
567 const_tree fn_decl_or_type,
568 bool outgoing ATTRIBUTE_UNUSED)
570 /* The old interface doesn't handle receiving the function type. */
571 if (fn_decl_or_type
572 && !DECL_P (fn_decl_or_type))
573 fn_decl_or_type = NULL;
575 #ifdef FUNCTION_OUTGOING_VALUE
576 if (outgoing)
577 return FUNCTION_OUTGOING_VALUE (ret_type, fn_decl_or_type);
578 #endif
580 #ifdef FUNCTION_VALUE
581 return FUNCTION_VALUE (ret_type, fn_decl_or_type);
582 #else
583 return NULL_RTX;
584 #endif
588 default_internal_arg_pointer (void)
590 /* If the reg that the virtual arg pointer will be translated into is
591 not a fixed reg or is the stack pointer, make a copy of the virtual
592 arg pointer, and address parms via the copy. The frame pointer is
593 considered fixed even though it is not marked as such. */
594 if ((ARG_POINTER_REGNUM == STACK_POINTER_REGNUM
595 || ! (fixed_regs[ARG_POINTER_REGNUM]
596 || ARG_POINTER_REGNUM == FRAME_POINTER_REGNUM)))
597 return copy_to_reg (virtual_incoming_args_rtx);
598 else
599 return virtual_incoming_args_rtx;
602 enum reg_class
603 default_branch_target_register_class (void)
605 return NO_REGS;
608 #ifdef IRA_COVER_CLASSES
609 const enum reg_class *
610 default_ira_cover_classes (void)
612 static enum reg_class classes[] = IRA_COVER_CLASSES;
613 return classes;
615 #endif
617 enum reg_class
618 default_secondary_reload (bool in_p ATTRIBUTE_UNUSED, rtx x ATTRIBUTE_UNUSED,
619 enum reg_class reload_class ATTRIBUTE_UNUSED,
620 enum machine_mode reload_mode ATTRIBUTE_UNUSED,
621 secondary_reload_info *sri)
623 enum reg_class rclass = NO_REGS;
625 if (sri->prev_sri && sri->prev_sri->t_icode != CODE_FOR_nothing)
627 sri->icode = sri->prev_sri->t_icode;
628 return NO_REGS;
630 #ifdef SECONDARY_INPUT_RELOAD_CLASS
631 if (in_p)
632 rclass = SECONDARY_INPUT_RELOAD_CLASS (reload_class, reload_mode, x);
633 #endif
634 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
635 if (! in_p)
636 rclass = SECONDARY_OUTPUT_RELOAD_CLASS (reload_class, reload_mode, x);
637 #endif
638 if (rclass != NO_REGS)
640 enum insn_code icode = (in_p ? reload_in_optab[(int) reload_mode]
641 : reload_out_optab[(int) reload_mode]);
643 if (icode != CODE_FOR_nothing
644 && insn_data[(int) icode].operand[in_p].predicate
645 && ! insn_data[(int) icode].operand[in_p].predicate (x, reload_mode))
646 icode = CODE_FOR_nothing;
647 else if (icode != CODE_FOR_nothing)
649 const char *insn_constraint, *scratch_constraint;
650 char insn_letter, scratch_letter;
651 enum reg_class insn_class, scratch_class;
653 gcc_assert (insn_data[(int) icode].n_operands == 3);
654 insn_constraint = insn_data[(int) icode].operand[!in_p].constraint;
655 if (!*insn_constraint)
656 insn_class = ALL_REGS;
657 else
659 if (in_p)
661 gcc_assert (*insn_constraint == '=');
662 insn_constraint++;
664 insn_letter = *insn_constraint;
665 insn_class
666 = (insn_letter == 'r' ? GENERAL_REGS
667 : REG_CLASS_FROM_CONSTRAINT ((unsigned char) insn_letter,
668 insn_constraint));
669 gcc_assert (insn_class != NO_REGS);
672 scratch_constraint = insn_data[(int) icode].operand[2].constraint;
673 /* The scratch register's constraint must start with "=&",
674 except for an input reload, where only "=" is necessary,
675 and where it might be beneficial to re-use registers from
676 the input. */
677 gcc_assert (scratch_constraint[0] == '='
678 && (in_p || scratch_constraint[1] == '&'));
679 scratch_constraint++;
680 if (*scratch_constraint == '&')
681 scratch_constraint++;
682 scratch_letter = *scratch_constraint;
683 scratch_class
684 = (scratch_letter == 'r' ? GENERAL_REGS
685 : REG_CLASS_FROM_CONSTRAINT ((unsigned char) scratch_letter,
686 scratch_constraint));
688 if (reg_class_subset_p (reload_class, insn_class))
690 gcc_assert (scratch_class == rclass);
691 rclass = NO_REGS;
693 else
694 rclass = insn_class;
697 if (rclass == NO_REGS)
698 sri->icode = icode;
699 else
700 sri->t_icode = icode;
702 return rclass;
705 bool
706 default_handle_c_option (size_t code ATTRIBUTE_UNUSED,
707 const char *arg ATTRIBUTE_UNUSED,
708 int value ATTRIBUTE_UNUSED)
710 return false;
713 /* By default, if flag_pic is true, then neither local nor global relocs
714 should be placed in readonly memory. */
717 default_reloc_rw_mask (void)
719 return flag_pic ? 3 : 0;
722 /* By default, do no modification. */
723 tree default_mangle_decl_assembler_name (tree decl ATTRIBUTE_UNUSED,
724 tree id)
726 return id;
729 bool
730 default_builtin_vector_alignment_reachable (const_tree type, bool is_packed)
732 if (is_packed)
733 return false;
735 /* Assuming that types whose size is > pointer-size are not guaranteed to be
736 naturally aligned. */
737 if (tree_int_cst_compare (TYPE_SIZE (type), bitsize_int (POINTER_SIZE)) > 0)
738 return false;
740 /* Assuming that types whose size is <= pointer-size
741 are naturally aligned. */
742 return true;
745 bool
746 default_hard_regno_scratch_ok (unsigned int regno ATTRIBUTE_UNUSED)
748 return true;
751 bool
752 default_target_option_valid_attribute_p (tree ARG_UNUSED (fndecl),
753 tree ARG_UNUSED (name),
754 tree ARG_UNUSED (args),
755 int ARG_UNUSED (flags))
757 warning (OPT_Wattributes,
758 "target attribute is not supported on this machine");
760 return false;
763 bool
764 default_target_option_pragma_parse (tree ARG_UNUSED (args),
765 tree ARG_UNUSED (pop_target))
767 warning (OPT_Wpragmas,
768 "#pragma GCC target is not supported for this machine");
770 return false;
773 bool
774 default_target_option_can_inline_p (tree caller, tree callee)
776 bool ret = false;
777 tree callee_opts = DECL_FUNCTION_SPECIFIC_TARGET (callee);
778 tree caller_opts = DECL_FUNCTION_SPECIFIC_TARGET (caller);
780 /* If callee has no option attributes, then it is ok to inline */
781 if (!callee_opts)
782 ret = true;
784 /* If caller has no option attributes, but callee does then it is not ok to
785 inline */
786 else if (!caller_opts)
787 ret = false;
789 /* If both caller and callee have attributes, assume that if the pointer is
790 different, the the two functions have different target options since
791 build_target_option_node uses a hash table for the options. */
792 else
793 ret = (callee_opts == caller_opts);
795 return ret;
798 #ifndef HAVE_casesi
799 # define HAVE_casesi 0
800 #endif
802 /* If the machine does not have a case insn that compares the bounds,
803 this means extra overhead for dispatch tables, which raises the
804 threshold for using them. */
806 unsigned int default_case_values_threshold (void)
808 return (HAVE_casesi ? 4 : 5);
811 #include "gt-targhooks.h"