]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/targhooks.c
2015-06-17 Andrew MacLeod <amacleod@redhat.com>
[thirdparty/gcc.git] / gcc / targhooks.c
1 /* Default target hook functions.
2 Copyright (C) 2003-2015 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
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 3, or (at your option) any later
9 version.
10
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
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20 /* The migration of target macros to target hooks works as follows:
21
22 1. Create a target hook that uses the existing target macros to
23 implement the same functionality.
24
25 2. Convert all the MI files to use the hook instead of the macro.
26
27 3. Repeat for a majority of the remaining target macros. This will
28 take some time.
29
30 4. Tell target maintainers to start migrating.
31
32 5. Eventually convert the backends to override the hook instead of
33 defining the macros. This will take some time too.
34
35 6. TBD when, poison the macros. Unmigrated targets will break at
36 this point.
37
38 Note that we expect steps 1-3 to be done by the people that
39 understand what the MI does with each macro, and step 5 to be done
40 by the target maintainers for their respective targets.
41
42 Note that steps 1 and 2 don't have to be done together, but no
43 target can override the new hook until step 2 is complete for it.
44
45 Once the macros are poisoned, we will revert to the old migration
46 rules - migrate the macro, callers, and targets all at once. This
47 comment can thus be removed at that point. */
48
49 #include "config.h"
50 #include "system.h"
51 #include "coretypes.h"
52 #include "tm.h"
53 #include "rtl.h"
54 #include "alias.h"
55 #include "symtab.h"
56 #include "tree.h"
57 #include "fold-const.h"
58 #include "stor-layout.h"
59 #include "varasm.h"
60 #include "hard-reg-set.h"
61 #include "function.h"
62 #include "flags.h"
63 #include "insn-config.h"
64 #include "expmed.h"
65 #include "dojump.h"
66 #include "explow.h"
67 #include "calls.h"
68 #include "emit-rtl.h"
69 #include "stmt.h"
70 #include "expr.h"
71 #include "output.h"
72 #include "diagnostic-core.h"
73 #include "target.h"
74 #include "tm_p.h"
75 #include "target-def.h"
76 #include "regs.h"
77 #include "reload.h"
78 #include "insn-codes.h"
79 #include "optabs.h"
80 #include "recog.h"
81 #include "intl.h"
82 #include "opts.h"
83 #include "tree-ssa-alias.h"
84 #include "gimple-expr.h"
85 #include "gimplify.h"
86 #include "stringpool.h"
87 #include "tree-ssanames.h"
88
89
90 bool
91 default_legitimate_address_p (machine_mode mode ATTRIBUTE_UNUSED,
92 rtx addr ATTRIBUTE_UNUSED,
93 bool strict ATTRIBUTE_UNUSED)
94 {
95 #ifdef GO_IF_LEGITIMATE_ADDRESS
96 /* Defer to the old implementation using a goto. */
97 if (strict)
98 return strict_memory_address_p (mode, addr);
99 else
100 return memory_address_p (mode, addr);
101 #else
102 gcc_unreachable ();
103 #endif
104 }
105
106 void
107 default_external_libcall (rtx fun ATTRIBUTE_UNUSED)
108 {
109 #ifdef ASM_OUTPUT_EXTERNAL_LIBCALL
110 ASM_OUTPUT_EXTERNAL_LIBCALL (asm_out_file, fun);
111 #endif
112 }
113
114 int
115 default_unspec_may_trap_p (const_rtx x, unsigned flags)
116 {
117 int i;
118
119 /* Any floating arithmetic may trap. */
120 if ((SCALAR_FLOAT_MODE_P (GET_MODE (x)) && flag_trapping_math))
121 return 1;
122
123 for (i = 0; i < XVECLEN (x, 0); ++i)
124 {
125 if (may_trap_p_1 (XVECEXP (x, 0, i), flags))
126 return 1;
127 }
128
129 return 0;
130 }
131
132 machine_mode
133 default_promote_function_mode (const_tree type ATTRIBUTE_UNUSED,
134 machine_mode mode,
135 int *punsignedp ATTRIBUTE_UNUSED,
136 const_tree funtype ATTRIBUTE_UNUSED,
137 int for_return ATTRIBUTE_UNUSED)
138 {
139 if (type != NULL_TREE && for_return == 2)
140 return promote_mode (type, mode, punsignedp);
141 return mode;
142 }
143
144 machine_mode
145 default_promote_function_mode_always_promote (const_tree type,
146 machine_mode mode,
147 int *punsignedp,
148 const_tree funtype ATTRIBUTE_UNUSED,
149 int for_return ATTRIBUTE_UNUSED)
150 {
151 return promote_mode (type, mode, punsignedp);
152 }
153
154 machine_mode
155 default_cc_modes_compatible (machine_mode m1, machine_mode m2)
156 {
157 if (m1 == m2)
158 return m1;
159 return VOIDmode;
160 }
161
162 bool
163 default_return_in_memory (const_tree type,
164 const_tree fntype ATTRIBUTE_UNUSED)
165 {
166 return (TYPE_MODE (type) == BLKmode);
167 }
168
169 rtx
170 default_legitimize_address (rtx x, rtx orig_x ATTRIBUTE_UNUSED,
171 machine_mode mode ATTRIBUTE_UNUSED)
172 {
173 return x;
174 }
175
176 bool
177 default_legitimize_address_displacement (rtx *disp ATTRIBUTE_UNUSED,
178 rtx *offset ATTRIBUTE_UNUSED,
179 machine_mode mode ATTRIBUTE_UNUSED)
180 {
181 return false;
182 }
183
184 rtx
185 default_expand_builtin_saveregs (void)
186 {
187 error ("__builtin_saveregs not supported by this target");
188 return const0_rtx;
189 }
190
191 void
192 default_setup_incoming_varargs (cumulative_args_t ca ATTRIBUTE_UNUSED,
193 machine_mode mode ATTRIBUTE_UNUSED,
194 tree type ATTRIBUTE_UNUSED,
195 int *pretend_arg_size ATTRIBUTE_UNUSED,
196 int second_time ATTRIBUTE_UNUSED)
197 {
198 }
199
200 /* The default implementation of TARGET_BUILTIN_SETJMP_FRAME_VALUE. */
201
202 rtx
203 default_builtin_setjmp_frame_value (void)
204 {
205 return virtual_stack_vars_rtx;
206 }
207
208 /* Generic hook that takes a CUMULATIVE_ARGS pointer and returns false. */
209
210 bool
211 hook_bool_CUMULATIVE_ARGS_false (cumulative_args_t ca ATTRIBUTE_UNUSED)
212 {
213 return false;
214 }
215
216 bool
217 default_pretend_outgoing_varargs_named (cumulative_args_t ca ATTRIBUTE_UNUSED)
218 {
219 return (targetm.calls.setup_incoming_varargs
220 != default_setup_incoming_varargs);
221 }
222
223 machine_mode
224 default_eh_return_filter_mode (void)
225 {
226 return targetm.unwind_word_mode ();
227 }
228
229 machine_mode
230 default_libgcc_cmp_return_mode (void)
231 {
232 return word_mode;
233 }
234
235 machine_mode
236 default_libgcc_shift_count_mode (void)
237 {
238 return word_mode;
239 }
240
241 machine_mode
242 default_unwind_word_mode (void)
243 {
244 return word_mode;
245 }
246
247 /* The default implementation of TARGET_SHIFT_TRUNCATION_MASK. */
248
249 unsigned HOST_WIDE_INT
250 default_shift_truncation_mask (machine_mode mode)
251 {
252 return SHIFT_COUNT_TRUNCATED ? GET_MODE_BITSIZE (mode) - 1 : 0;
253 }
254
255 /* The default implementation of TARGET_MIN_DIVISIONS_FOR_RECIP_MUL. */
256
257 unsigned int
258 default_min_divisions_for_recip_mul (machine_mode mode ATTRIBUTE_UNUSED)
259 {
260 return have_insn_for (DIV, mode) ? 3 : 2;
261 }
262
263 /* The default implementation of TARGET_MODE_REP_EXTENDED. */
264
265 int
266 default_mode_rep_extended (machine_mode mode ATTRIBUTE_UNUSED,
267 machine_mode mode_rep ATTRIBUTE_UNUSED)
268 {
269 return UNKNOWN;
270 }
271
272 /* Generic hook that takes a CUMULATIVE_ARGS pointer and returns true. */
273
274 bool
275 hook_bool_CUMULATIVE_ARGS_true (cumulative_args_t a ATTRIBUTE_UNUSED)
276 {
277 return true;
278 }
279
280 /* Return machine mode for non-standard suffix
281 or VOIDmode if non-standard suffixes are unsupported. */
282 machine_mode
283 default_mode_for_suffix (char suffix ATTRIBUTE_UNUSED)
284 {
285 return VOIDmode;
286 }
287
288 /* The generic C++ ABI specifies this is a 64-bit value. */
289 tree
290 default_cxx_guard_type (void)
291 {
292 return long_long_integer_type_node;
293 }
294
295 /* Returns the size of the cookie to use when allocating an array
296 whose elements have the indicated TYPE. Assumes that it is already
297 known that a cookie is needed. */
298
299 tree
300 default_cxx_get_cookie_size (tree type)
301 {
302 tree cookie_size;
303
304 /* We need to allocate an additional max (sizeof (size_t), alignof
305 (true_type)) bytes. */
306 tree sizetype_size;
307 tree type_align;
308
309 sizetype_size = size_in_bytes (sizetype);
310 type_align = size_int (TYPE_ALIGN_UNIT (type));
311 if (tree_int_cst_lt (type_align, sizetype_size))
312 cookie_size = sizetype_size;
313 else
314 cookie_size = type_align;
315
316 return cookie_size;
317 }
318
319 /* Return true if a parameter must be passed by reference. This version
320 of the TARGET_PASS_BY_REFERENCE hook uses just MUST_PASS_IN_STACK. */
321
322 bool
323 hook_pass_by_reference_must_pass_in_stack (cumulative_args_t c ATTRIBUTE_UNUSED,
324 machine_mode mode ATTRIBUTE_UNUSED, const_tree type ATTRIBUTE_UNUSED,
325 bool named_arg ATTRIBUTE_UNUSED)
326 {
327 return targetm.calls.must_pass_in_stack (mode, type);
328 }
329
330 /* Return true if a parameter follows callee copies conventions. This
331 version of the hook is true for all named arguments. */
332
333 bool
334 hook_callee_copies_named (cumulative_args_t ca ATTRIBUTE_UNUSED,
335 machine_mode mode ATTRIBUTE_UNUSED,
336 const_tree type ATTRIBUTE_UNUSED, bool named)
337 {
338 return named;
339 }
340
341 /* Emit to STREAM the assembler syntax for insn operand X. */
342
343 void
344 default_print_operand (FILE *stream ATTRIBUTE_UNUSED, rtx x ATTRIBUTE_UNUSED,
345 int code ATTRIBUTE_UNUSED)
346 {
347 #ifdef PRINT_OPERAND
348 PRINT_OPERAND (stream, x, code);
349 #else
350 gcc_unreachable ();
351 #endif
352 }
353
354 /* Emit to STREAM the assembler syntax for an insn operand whose memory
355 address is X. */
356
357 void
358 default_print_operand_address (FILE *stream ATTRIBUTE_UNUSED,
359 rtx x ATTRIBUTE_UNUSED)
360 {
361 #ifdef PRINT_OPERAND_ADDRESS
362 PRINT_OPERAND_ADDRESS (stream, x);
363 #else
364 gcc_unreachable ();
365 #endif
366 }
367
368 /* Return true if CODE is a valid punctuation character for the
369 `print_operand' hook. */
370
371 bool
372 default_print_operand_punct_valid_p (unsigned char code ATTRIBUTE_UNUSED)
373 {
374 #ifdef PRINT_OPERAND_PUNCT_VALID_P
375 return PRINT_OPERAND_PUNCT_VALID_P (code);
376 #else
377 return false;
378 #endif
379 }
380
381 /* The default implementation of TARGET_MANGLE_ASSEMBLER_NAME. */
382 tree
383 default_mangle_assembler_name (const char *name ATTRIBUTE_UNUSED)
384 {
385 const char *skipped = name + (*name == '*' ? 1 : 0);
386 const char *stripped = targetm.strip_name_encoding (skipped);
387 if (*name != '*' && user_label_prefix[0])
388 stripped = ACONCAT ((user_label_prefix, stripped, NULL));
389 return get_identifier (stripped);
390 }
391
392 /* True if MODE is valid for the target. By "valid", we mean able to
393 be manipulated in non-trivial ways. In particular, this means all
394 the arithmetic is supported.
395
396 By default we guess this means that any C type is supported. If
397 we can't map the mode back to a type that would be available in C,
398 then reject it. Special case, here, is the double-word arithmetic
399 supported by optabs.c. */
400
401 bool
402 default_scalar_mode_supported_p (machine_mode mode)
403 {
404 int precision = GET_MODE_PRECISION (mode);
405
406 switch (GET_MODE_CLASS (mode))
407 {
408 case MODE_PARTIAL_INT:
409 case MODE_INT:
410 if (precision == CHAR_TYPE_SIZE)
411 return true;
412 if (precision == SHORT_TYPE_SIZE)
413 return true;
414 if (precision == INT_TYPE_SIZE)
415 return true;
416 if (precision == LONG_TYPE_SIZE)
417 return true;
418 if (precision == LONG_LONG_TYPE_SIZE)
419 return true;
420 if (precision == 2 * BITS_PER_WORD)
421 return true;
422 return false;
423
424 case MODE_FLOAT:
425 if (precision == FLOAT_TYPE_SIZE)
426 return true;
427 if (precision == DOUBLE_TYPE_SIZE)
428 return true;
429 if (precision == LONG_DOUBLE_TYPE_SIZE)
430 return true;
431 return false;
432
433 case MODE_DECIMAL_FLOAT:
434 case MODE_FRACT:
435 case MODE_UFRACT:
436 case MODE_ACCUM:
437 case MODE_UACCUM:
438 return false;
439
440 default:
441 gcc_unreachable ();
442 }
443 }
444
445 /* Return true if libgcc supports floating-point mode MODE (known to
446 be supported as a scalar mode). */
447
448 bool
449 default_libgcc_floating_mode_supported_p (machine_mode mode)
450 {
451 switch (mode)
452 {
453 #ifdef HAVE_SFmode
454 case SFmode:
455 #endif
456 #ifdef HAVE_DFmode
457 case DFmode:
458 #endif
459 #ifdef HAVE_XFmode
460 case XFmode:
461 #endif
462 #ifdef HAVE_TFmode
463 case TFmode:
464 #endif
465 return true;
466
467 default:
468 return false;
469 }
470 }
471
472 /* Make some target macros useable by target-independent code. */
473 bool
474 targhook_words_big_endian (void)
475 {
476 return !!WORDS_BIG_ENDIAN;
477 }
478
479 bool
480 targhook_float_words_big_endian (void)
481 {
482 return !!FLOAT_WORDS_BIG_ENDIAN;
483 }
484
485 /* True if the target supports floating-point exceptions and rounding
486 modes. */
487
488 bool
489 default_float_exceptions_rounding_supported_p (void)
490 {
491 #ifdef HAVE_adddf3
492 return HAVE_adddf3;
493 #else
494 return false;
495 #endif
496 }
497
498 /* True if the target supports decimal floating point. */
499
500 bool
501 default_decimal_float_supported_p (void)
502 {
503 return ENABLE_DECIMAL_FLOAT;
504 }
505
506 /* True if the target supports fixed-point arithmetic. */
507
508 bool
509 default_fixed_point_supported_p (void)
510 {
511 return ENABLE_FIXED_POINT;
512 }
513
514 /* True if the target supports GNU indirect functions. */
515
516 bool
517 default_has_ifunc_p (void)
518 {
519 return HAVE_GNU_INDIRECT_FUNCTION;
520 }
521
522 /* NULL if INSN insn is valid within a low-overhead loop, otherwise returns
523 an error message.
524
525 This function checks whether a given INSN is valid within a low-overhead
526 loop. If INSN is invalid it returns the reason for that, otherwise it
527 returns NULL. A called function may clobber any special registers required
528 for low-overhead looping. Additionally, some targets (eg, PPC) use the count
529 register for branch on table instructions. We reject the doloop pattern in
530 these cases. */
531
532 const char *
533 default_invalid_within_doloop (const rtx_insn *insn)
534 {
535 if (CALL_P (insn))
536 return "Function call in loop.";
537
538 if (tablejump_p (insn, NULL, NULL) || computed_jump_p (insn))
539 return "Computed branch in the loop.";
540
541 return NULL;
542 }
543
544 /* Mapping of builtin functions to vectorized variants. */
545
546 tree
547 default_builtin_vectorized_function (tree fndecl ATTRIBUTE_UNUSED,
548 tree type_out ATTRIBUTE_UNUSED,
549 tree type_in ATTRIBUTE_UNUSED)
550 {
551 return NULL_TREE;
552 }
553
554 /* Vectorized conversion. */
555
556 tree
557 default_builtin_vectorized_conversion (unsigned int code ATTRIBUTE_UNUSED,
558 tree dest_type ATTRIBUTE_UNUSED,
559 tree src_type ATTRIBUTE_UNUSED)
560 {
561 return NULL_TREE;
562 }
563
564 /* Default vectorizer cost model values. */
565
566 int
567 default_builtin_vectorization_cost (enum vect_cost_for_stmt type_of_cost,
568 tree vectype,
569 int misalign ATTRIBUTE_UNUSED)
570 {
571 unsigned elements;
572
573 switch (type_of_cost)
574 {
575 case scalar_stmt:
576 case scalar_load:
577 case scalar_store:
578 case vector_stmt:
579 case vector_load:
580 case vector_store:
581 case vec_to_scalar:
582 case scalar_to_vec:
583 case cond_branch_not_taken:
584 case vec_perm:
585 case vec_promote_demote:
586 return 1;
587
588 case unaligned_load:
589 case unaligned_store:
590 return 2;
591
592 case cond_branch_taken:
593 return 3;
594
595 case vec_construct:
596 elements = TYPE_VECTOR_SUBPARTS (vectype);
597 return elements / 2 + 1;
598
599 default:
600 gcc_unreachable ();
601 }
602 }
603
604 /* Reciprocal. */
605
606 tree
607 default_builtin_reciprocal (unsigned int fn ATTRIBUTE_UNUSED,
608 bool md_fn ATTRIBUTE_UNUSED,
609 bool sqrt ATTRIBUTE_UNUSED)
610 {
611 return NULL_TREE;
612 }
613
614 bool
615 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false (
616 cumulative_args_t ca ATTRIBUTE_UNUSED,
617 machine_mode mode ATTRIBUTE_UNUSED,
618 const_tree type ATTRIBUTE_UNUSED, bool named ATTRIBUTE_UNUSED)
619 {
620 return false;
621 }
622
623 bool
624 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true (
625 cumulative_args_t ca ATTRIBUTE_UNUSED,
626 machine_mode mode ATTRIBUTE_UNUSED,
627 const_tree type ATTRIBUTE_UNUSED, bool named ATTRIBUTE_UNUSED)
628 {
629 return true;
630 }
631
632 int
633 hook_int_CUMULATIVE_ARGS_mode_tree_bool_0 (
634 cumulative_args_t ca ATTRIBUTE_UNUSED,
635 machine_mode mode ATTRIBUTE_UNUSED,
636 tree type ATTRIBUTE_UNUSED, bool named ATTRIBUTE_UNUSED)
637 {
638 return 0;
639 }
640
641 void
642 default_function_arg_advance (cumulative_args_t ca ATTRIBUTE_UNUSED,
643 machine_mode mode ATTRIBUTE_UNUSED,
644 const_tree type ATTRIBUTE_UNUSED,
645 bool named ATTRIBUTE_UNUSED)
646 {
647 gcc_unreachable ();
648 }
649
650 rtx
651 default_function_arg (cumulative_args_t ca ATTRIBUTE_UNUSED,
652 machine_mode mode ATTRIBUTE_UNUSED,
653 const_tree type ATTRIBUTE_UNUSED,
654 bool named ATTRIBUTE_UNUSED)
655 {
656 gcc_unreachable ();
657 }
658
659 rtx
660 default_function_incoming_arg (cumulative_args_t ca ATTRIBUTE_UNUSED,
661 machine_mode mode ATTRIBUTE_UNUSED,
662 const_tree type ATTRIBUTE_UNUSED,
663 bool named ATTRIBUTE_UNUSED)
664 {
665 gcc_unreachable ();
666 }
667
668 unsigned int
669 default_function_arg_boundary (machine_mode mode ATTRIBUTE_UNUSED,
670 const_tree type ATTRIBUTE_UNUSED)
671 {
672 return PARM_BOUNDARY;
673 }
674
675 unsigned int
676 default_function_arg_round_boundary (machine_mode mode ATTRIBUTE_UNUSED,
677 const_tree type ATTRIBUTE_UNUSED)
678 {
679 return PARM_BOUNDARY;
680 }
681
682 void
683 hook_void_bitmap (bitmap regs ATTRIBUTE_UNUSED)
684 {
685 }
686
687 const char *
688 hook_invalid_arg_for_unprototyped_fn (
689 const_tree typelist ATTRIBUTE_UNUSED,
690 const_tree funcdecl ATTRIBUTE_UNUSED,
691 const_tree val ATTRIBUTE_UNUSED)
692 {
693 return NULL;
694 }
695
696 /* Initialize the stack protection decls. */
697
698 /* Stack protection related decls living in libgcc. */
699 static GTY(()) tree stack_chk_guard_decl;
700
701 tree
702 default_stack_protect_guard (void)
703 {
704 tree t = stack_chk_guard_decl;
705
706 if (t == NULL)
707 {
708 rtx x;
709
710 t = build_decl (UNKNOWN_LOCATION,
711 VAR_DECL, get_identifier ("__stack_chk_guard"),
712 ptr_type_node);
713 TREE_STATIC (t) = 1;
714 TREE_PUBLIC (t) = 1;
715 DECL_EXTERNAL (t) = 1;
716 TREE_USED (t) = 1;
717 TREE_THIS_VOLATILE (t) = 1;
718 DECL_ARTIFICIAL (t) = 1;
719 DECL_IGNORED_P (t) = 1;
720
721 /* Do not share RTL as the declaration is visible outside of
722 current function. */
723 x = DECL_RTL (t);
724 RTX_FLAG (x, used) = 1;
725
726 stack_chk_guard_decl = t;
727 }
728
729 return t;
730 }
731
732 static GTY(()) tree stack_chk_fail_decl;
733
734 tree
735 default_external_stack_protect_fail (void)
736 {
737 tree t = stack_chk_fail_decl;
738
739 if (t == NULL_TREE)
740 {
741 t = build_function_type_list (void_type_node, NULL_TREE);
742 t = build_decl (UNKNOWN_LOCATION,
743 FUNCTION_DECL, get_identifier ("__stack_chk_fail"), t);
744 TREE_STATIC (t) = 1;
745 TREE_PUBLIC (t) = 1;
746 DECL_EXTERNAL (t) = 1;
747 TREE_USED (t) = 1;
748 TREE_THIS_VOLATILE (t) = 1;
749 TREE_NOTHROW (t) = 1;
750 DECL_ARTIFICIAL (t) = 1;
751 DECL_IGNORED_P (t) = 1;
752 DECL_VISIBILITY (t) = VISIBILITY_DEFAULT;
753 DECL_VISIBILITY_SPECIFIED (t) = 1;
754
755 stack_chk_fail_decl = t;
756 }
757
758 return build_call_expr (t, 0);
759 }
760
761 tree
762 default_hidden_stack_protect_fail (void)
763 {
764 #ifndef HAVE_GAS_HIDDEN
765 return default_external_stack_protect_fail ();
766 #else
767 tree t = stack_chk_fail_decl;
768
769 if (!flag_pic)
770 return default_external_stack_protect_fail ();
771
772 if (t == NULL_TREE)
773 {
774 t = build_function_type_list (void_type_node, NULL_TREE);
775 t = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL,
776 get_identifier ("__stack_chk_fail_local"), t);
777 TREE_STATIC (t) = 1;
778 TREE_PUBLIC (t) = 1;
779 DECL_EXTERNAL (t) = 1;
780 TREE_USED (t) = 1;
781 TREE_THIS_VOLATILE (t) = 1;
782 TREE_NOTHROW (t) = 1;
783 DECL_ARTIFICIAL (t) = 1;
784 DECL_IGNORED_P (t) = 1;
785 DECL_VISIBILITY_SPECIFIED (t) = 1;
786 DECL_VISIBILITY (t) = VISIBILITY_HIDDEN;
787
788 stack_chk_fail_decl = t;
789 }
790
791 return build_call_expr (t, 0);
792 #endif
793 }
794
795 bool
796 hook_bool_const_rtx_commutative_p (const_rtx x,
797 int outer_code ATTRIBUTE_UNUSED)
798 {
799 return COMMUTATIVE_P (x);
800 }
801
802 rtx
803 default_function_value (const_tree ret_type ATTRIBUTE_UNUSED,
804 const_tree fn_decl_or_type,
805 bool outgoing ATTRIBUTE_UNUSED)
806 {
807 /* The old interface doesn't handle receiving the function type. */
808 if (fn_decl_or_type
809 && !DECL_P (fn_decl_or_type))
810 fn_decl_or_type = NULL;
811
812 #ifdef FUNCTION_VALUE
813 return FUNCTION_VALUE (ret_type, fn_decl_or_type);
814 #else
815 gcc_unreachable ();
816 #endif
817 }
818
819 rtx
820 default_libcall_value (machine_mode mode ATTRIBUTE_UNUSED,
821 const_rtx fun ATTRIBUTE_UNUSED)
822 {
823 #ifdef LIBCALL_VALUE
824 return LIBCALL_VALUE (mode);
825 #else
826 gcc_unreachable ();
827 #endif
828 }
829
830 /* The default hook for TARGET_FUNCTION_VALUE_REGNO_P. */
831
832 bool
833 default_function_value_regno_p (const unsigned int regno ATTRIBUTE_UNUSED)
834 {
835 #ifdef FUNCTION_VALUE_REGNO_P
836 return FUNCTION_VALUE_REGNO_P (regno);
837 #else
838 gcc_unreachable ();
839 #endif
840 }
841
842 rtx
843 default_internal_arg_pointer (void)
844 {
845 /* If the reg that the virtual arg pointer will be translated into is
846 not a fixed reg or is the stack pointer, make a copy of the virtual
847 arg pointer, and address parms via the copy. The frame pointer is
848 considered fixed even though it is not marked as such. */
849 if ((ARG_POINTER_REGNUM == STACK_POINTER_REGNUM
850 || ! (fixed_regs[ARG_POINTER_REGNUM]
851 || ARG_POINTER_REGNUM == FRAME_POINTER_REGNUM)))
852 return copy_to_reg (virtual_incoming_args_rtx);
853 else
854 return virtual_incoming_args_rtx;
855 }
856
857 rtx
858 default_static_chain (const_tree ARG_UNUSED (fndecl_or_type), bool incoming_p)
859 {
860 if (incoming_p)
861 {
862 #ifdef STATIC_CHAIN_INCOMING_REGNUM
863 return gen_rtx_REG (Pmode, STATIC_CHAIN_INCOMING_REGNUM);
864 #endif
865 }
866
867 #ifdef STATIC_CHAIN_REGNUM
868 return gen_rtx_REG (Pmode, STATIC_CHAIN_REGNUM);
869 #endif
870
871 {
872 static bool issued_error;
873 if (!issued_error)
874 {
875 issued_error = true;
876 sorry ("nested functions not supported on this target");
877 }
878
879 /* It really doesn't matter what we return here, so long at it
880 doesn't cause the rest of the compiler to crash. */
881 return gen_rtx_MEM (Pmode, stack_pointer_rtx);
882 }
883 }
884
885 void
886 default_trampoline_init (rtx ARG_UNUSED (m_tramp), tree ARG_UNUSED (t_func),
887 rtx ARG_UNUSED (r_chain))
888 {
889 sorry ("nested function trampolines not supported on this target");
890 }
891
892 int
893 default_return_pops_args (tree fundecl ATTRIBUTE_UNUSED,
894 tree funtype ATTRIBUTE_UNUSED,
895 int size ATTRIBUTE_UNUSED)
896 {
897 return 0;
898 }
899
900 reg_class_t
901 default_branch_target_register_class (void)
902 {
903 return NO_REGS;
904 }
905
906 reg_class_t
907 default_ira_change_pseudo_allocno_class (int regno ATTRIBUTE_UNUSED,
908 reg_class_t cl)
909 {
910 return cl;
911 }
912
913 extern bool
914 default_lra_p (void)
915 {
916 return false;
917 }
918
919 int
920 default_register_priority (int hard_regno ATTRIBUTE_UNUSED)
921 {
922 return 0;
923 }
924
925 extern bool
926 default_register_usage_leveling_p (void)
927 {
928 return false;
929 }
930
931 extern bool
932 default_different_addr_displacement_p (void)
933 {
934 return false;
935 }
936
937 reg_class_t
938 default_secondary_reload (bool in_p ATTRIBUTE_UNUSED, rtx x ATTRIBUTE_UNUSED,
939 reg_class_t reload_class_i ATTRIBUTE_UNUSED,
940 machine_mode reload_mode ATTRIBUTE_UNUSED,
941 secondary_reload_info *sri)
942 {
943 enum reg_class rclass = NO_REGS;
944 enum reg_class reload_class = (enum reg_class) reload_class_i;
945
946 if (sri->prev_sri && sri->prev_sri->t_icode != CODE_FOR_nothing)
947 {
948 sri->icode = sri->prev_sri->t_icode;
949 return NO_REGS;
950 }
951 #ifdef SECONDARY_INPUT_RELOAD_CLASS
952 if (in_p)
953 rclass = SECONDARY_INPUT_RELOAD_CLASS (reload_class, reload_mode, x);
954 #endif
955 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
956 if (! in_p)
957 rclass = SECONDARY_OUTPUT_RELOAD_CLASS (reload_class, reload_mode, x);
958 #endif
959 if (rclass != NO_REGS)
960 {
961 enum insn_code icode
962 = direct_optab_handler (in_p ? reload_in_optab : reload_out_optab,
963 reload_mode);
964
965 if (icode != CODE_FOR_nothing
966 && !insn_operand_matches (icode, in_p, x))
967 icode = CODE_FOR_nothing;
968 else if (icode != CODE_FOR_nothing)
969 {
970 const char *insn_constraint, *scratch_constraint;
971 enum reg_class insn_class, scratch_class;
972
973 gcc_assert (insn_data[(int) icode].n_operands == 3);
974 insn_constraint = insn_data[(int) icode].operand[!in_p].constraint;
975 if (!*insn_constraint)
976 insn_class = ALL_REGS;
977 else
978 {
979 if (in_p)
980 {
981 gcc_assert (*insn_constraint == '=');
982 insn_constraint++;
983 }
984 insn_class = (reg_class_for_constraint
985 (lookup_constraint (insn_constraint)));
986 gcc_assert (insn_class != NO_REGS);
987 }
988
989 scratch_constraint = insn_data[(int) icode].operand[2].constraint;
990 /* The scratch register's constraint must start with "=&",
991 except for an input reload, where only "=" is necessary,
992 and where it might be beneficial to re-use registers from
993 the input. */
994 gcc_assert (scratch_constraint[0] == '='
995 && (in_p || scratch_constraint[1] == '&'));
996 scratch_constraint++;
997 if (*scratch_constraint == '&')
998 scratch_constraint++;
999 scratch_class = (reg_class_for_constraint
1000 (lookup_constraint (scratch_constraint)));
1001
1002 if (reg_class_subset_p (reload_class, insn_class))
1003 {
1004 gcc_assert (scratch_class == rclass);
1005 rclass = NO_REGS;
1006 }
1007 else
1008 rclass = insn_class;
1009
1010 }
1011 if (rclass == NO_REGS)
1012 sri->icode = icode;
1013 else
1014 sri->t_icode = icode;
1015 }
1016 return rclass;
1017 }
1018
1019 /* By default, if flag_pic is true, then neither local nor global relocs
1020 should be placed in readonly memory. */
1021
1022 int
1023 default_reloc_rw_mask (void)
1024 {
1025 return flag_pic ? 3 : 0;
1026 }
1027
1028 /* By default, do no modification. */
1029 tree default_mangle_decl_assembler_name (tree decl ATTRIBUTE_UNUSED,
1030 tree id)
1031 {
1032 return id;
1033 }
1034
1035 /* Default to natural alignment for vector types. */
1036 HOST_WIDE_INT
1037 default_vector_alignment (const_tree type)
1038 {
1039 return tree_to_shwi (TYPE_SIZE (type));
1040 }
1041
1042 bool
1043 default_builtin_vector_alignment_reachable (const_tree type, bool is_packed)
1044 {
1045 if (is_packed)
1046 return false;
1047
1048 /* Assuming that types whose size is > pointer-size are not guaranteed to be
1049 naturally aligned. */
1050 if (tree_int_cst_compare (TYPE_SIZE (type), bitsize_int (POINTER_SIZE)) > 0)
1051 return false;
1052
1053 /* Assuming that types whose size is <= pointer-size
1054 are naturally aligned. */
1055 return true;
1056 }
1057
1058 /* By default, assume that a target supports any factor of misalignment
1059 memory access if it supports movmisalign patten.
1060 is_packed is true if the memory access is defined in a packed struct. */
1061 bool
1062 default_builtin_support_vector_misalignment (machine_mode mode,
1063 const_tree type
1064 ATTRIBUTE_UNUSED,
1065 int misalignment
1066 ATTRIBUTE_UNUSED,
1067 bool is_packed
1068 ATTRIBUTE_UNUSED)
1069 {
1070 if (optab_handler (movmisalign_optab, mode) != CODE_FOR_nothing)
1071 return true;
1072 return false;
1073 }
1074
1075 /* By default, only attempt to parallelize bitwise operations, and
1076 possibly adds/subtracts using bit-twiddling. */
1077
1078 machine_mode
1079 default_preferred_simd_mode (machine_mode mode ATTRIBUTE_UNUSED)
1080 {
1081 return word_mode;
1082 }
1083
1084 /* By default only the size derived from the preferred vector mode
1085 is tried. */
1086
1087 unsigned int
1088 default_autovectorize_vector_sizes (void)
1089 {
1090 return 0;
1091 }
1092
1093 /* By default, the cost model accumulates three separate costs (prologue,
1094 loop body, and epilogue) for a vectorized loop or block. So allocate an
1095 array of three unsigned ints, set it to zero, and return its address. */
1096
1097 void *
1098 default_init_cost (struct loop *loop_info ATTRIBUTE_UNUSED)
1099 {
1100 unsigned *cost = XNEWVEC (unsigned, 3);
1101 cost[vect_prologue] = cost[vect_body] = cost[vect_epilogue] = 0;
1102 return cost;
1103 }
1104
1105 /* By default, the cost model looks up the cost of the given statement
1106 kind and mode, multiplies it by the occurrence count, accumulates
1107 it into the cost specified by WHERE, and returns the cost added. */
1108
1109 unsigned
1110 default_add_stmt_cost (void *data, int count, enum vect_cost_for_stmt kind,
1111 struct _stmt_vec_info *stmt_info, int misalign,
1112 enum vect_cost_model_location where)
1113 {
1114 unsigned *cost = (unsigned *) data;
1115 unsigned retval = 0;
1116
1117 tree vectype = stmt_info ? stmt_vectype (stmt_info) : NULL_TREE;
1118 int stmt_cost = targetm.vectorize.builtin_vectorization_cost (kind, vectype,
1119 misalign);
1120 /* Statements in an inner loop relative to the loop being
1121 vectorized are weighted more heavily. The value here is
1122 arbitrary and could potentially be improved with analysis. */
1123 if (where == vect_body && stmt_info && stmt_in_inner_loop_p (stmt_info))
1124 count *= 50; /* FIXME. */
1125
1126 retval = (unsigned) (count * stmt_cost);
1127 cost[where] += retval;
1128
1129 return retval;
1130 }
1131
1132 /* By default, the cost model just returns the accumulated costs. */
1133
1134 void
1135 default_finish_cost (void *data, unsigned *prologue_cost,
1136 unsigned *body_cost, unsigned *epilogue_cost)
1137 {
1138 unsigned *cost = (unsigned *) data;
1139 *prologue_cost = cost[vect_prologue];
1140 *body_cost = cost[vect_body];
1141 *epilogue_cost = cost[vect_epilogue];
1142 }
1143
1144 /* Free the cost data. */
1145
1146 void
1147 default_destroy_cost_data (void *data)
1148 {
1149 free (data);
1150 }
1151
1152 /* Determine whether or not a pointer mode is valid. Assume defaults
1153 of ptr_mode or Pmode - can be overridden. */
1154 bool
1155 default_valid_pointer_mode (machine_mode mode)
1156 {
1157 return (mode == ptr_mode || mode == Pmode);
1158 }
1159
1160 /* Determine whether the memory reference specified by REF may alias
1161 the C libraries errno location. */
1162 bool
1163 default_ref_may_alias_errno (ao_ref *ref)
1164 {
1165 tree base = ao_ref_base (ref);
1166 /* The default implementation assumes the errno location is
1167 a declaration of type int or is always accessed via a
1168 pointer to int. We assume that accesses to errno are
1169 not deliberately obfuscated (even in conforming ways). */
1170 if (TYPE_UNSIGNED (TREE_TYPE (base))
1171 || TYPE_MODE (TREE_TYPE (base)) != TYPE_MODE (integer_type_node))
1172 return false;
1173 /* The default implementation assumes an errno location
1174 declaration is never defined in the current compilation unit. */
1175 if (DECL_P (base)
1176 && !TREE_STATIC (base))
1177 return true;
1178 else if (TREE_CODE (base) == MEM_REF
1179 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME)
1180 {
1181 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (TREE_OPERAND (base, 0));
1182 return !pi || pi->pt.anything || pi->pt.nonlocal;
1183 }
1184 return false;
1185 }
1186
1187 /* Return the mode for a pointer to a given ADDRSPACE, defaulting to ptr_mode
1188 for the generic address space only. */
1189
1190 machine_mode
1191 default_addr_space_pointer_mode (addr_space_t addrspace ATTRIBUTE_UNUSED)
1192 {
1193 gcc_assert (ADDR_SPACE_GENERIC_P (addrspace));
1194 return ptr_mode;
1195 }
1196
1197 /* Return the mode for an address in a given ADDRSPACE, defaulting to Pmode
1198 for the generic address space only. */
1199
1200 machine_mode
1201 default_addr_space_address_mode (addr_space_t addrspace ATTRIBUTE_UNUSED)
1202 {
1203 gcc_assert (ADDR_SPACE_GENERIC_P (addrspace));
1204 return Pmode;
1205 }
1206
1207 /* Named address space version of valid_pointer_mode. */
1208
1209 bool
1210 default_addr_space_valid_pointer_mode (machine_mode mode, addr_space_t as)
1211 {
1212 if (!ADDR_SPACE_GENERIC_P (as))
1213 return (mode == targetm.addr_space.pointer_mode (as)
1214 || mode == targetm.addr_space.address_mode (as));
1215
1216 return targetm.valid_pointer_mode (mode);
1217 }
1218
1219 /* Some places still assume that all pointer or address modes are the
1220 standard Pmode and ptr_mode. These optimizations become invalid if
1221 the target actually supports multiple different modes. For now,
1222 we disable such optimizations on such targets, using this function. */
1223
1224 bool
1225 target_default_pointer_address_modes_p (void)
1226 {
1227 if (targetm.addr_space.address_mode != default_addr_space_address_mode)
1228 return false;
1229 if (targetm.addr_space.pointer_mode != default_addr_space_pointer_mode)
1230 return false;
1231
1232 return true;
1233 }
1234
1235 /* Named address space version of legitimate_address_p. */
1236
1237 bool
1238 default_addr_space_legitimate_address_p (machine_mode mode, rtx mem,
1239 bool strict, addr_space_t as)
1240 {
1241 if (!ADDR_SPACE_GENERIC_P (as))
1242 gcc_unreachable ();
1243
1244 return targetm.legitimate_address_p (mode, mem, strict);
1245 }
1246
1247 /* Named address space version of LEGITIMIZE_ADDRESS. */
1248
1249 rtx
1250 default_addr_space_legitimize_address (rtx x, rtx oldx,
1251 machine_mode mode, addr_space_t as)
1252 {
1253 if (!ADDR_SPACE_GENERIC_P (as))
1254 return x;
1255
1256 return targetm.legitimize_address (x, oldx, mode);
1257 }
1258
1259 /* The default hook for determining if one named address space is a subset of
1260 another and to return which address space to use as the common address
1261 space. */
1262
1263 bool
1264 default_addr_space_subset_p (addr_space_t subset, addr_space_t superset)
1265 {
1266 return (subset == superset);
1267 }
1268
1269 /* The default hook for TARGET_ADDR_SPACE_CONVERT. This hook should never be
1270 called for targets with only a generic address space. */
1271
1272 rtx
1273 default_addr_space_convert (rtx op ATTRIBUTE_UNUSED,
1274 tree from_type ATTRIBUTE_UNUSED,
1275 tree to_type ATTRIBUTE_UNUSED)
1276 {
1277 gcc_unreachable ();
1278 }
1279
1280 bool
1281 default_hard_regno_scratch_ok (unsigned int regno ATTRIBUTE_UNUSED)
1282 {
1283 return true;
1284 }
1285
1286 /* The default implementation of TARGET_MODE_DEPENDENT_ADDRESS_P. */
1287
1288 bool
1289 default_mode_dependent_address_p (const_rtx addr ATTRIBUTE_UNUSED,
1290 addr_space_t addrspace ATTRIBUTE_UNUSED)
1291 {
1292 return false;
1293 }
1294
1295 bool
1296 default_target_option_valid_attribute_p (tree ARG_UNUSED (fndecl),
1297 tree ARG_UNUSED (name),
1298 tree ARG_UNUSED (args),
1299 int ARG_UNUSED (flags))
1300 {
1301 warning (OPT_Wattributes,
1302 "target attribute is not supported on this machine");
1303
1304 return false;
1305 }
1306
1307 bool
1308 default_target_option_pragma_parse (tree ARG_UNUSED (args),
1309 tree ARG_UNUSED (pop_target))
1310 {
1311 warning (OPT_Wpragmas,
1312 "#pragma GCC target is not supported for this machine");
1313
1314 return false;
1315 }
1316
1317 bool
1318 default_target_can_inline_p (tree caller, tree callee)
1319 {
1320 bool ret = false;
1321 tree callee_opts = DECL_FUNCTION_SPECIFIC_TARGET (callee);
1322 tree caller_opts = DECL_FUNCTION_SPECIFIC_TARGET (caller);
1323
1324 /* If callee has no option attributes, then it is ok to inline */
1325 if (!callee_opts)
1326 ret = true;
1327
1328 /* If caller has no option attributes, but callee does then it is not ok to
1329 inline */
1330 else if (!caller_opts)
1331 ret = false;
1332
1333 /* If both caller and callee have attributes, assume that if the
1334 pointer is different, the two functions have different target
1335 options since build_target_option_node uses a hash table for the
1336 options. */
1337 else
1338 ret = (callee_opts == caller_opts);
1339
1340 return ret;
1341 }
1342
1343 #ifndef HAVE_casesi
1344 # define HAVE_casesi 0
1345 #endif
1346
1347 /* If the machine does not have a case insn that compares the bounds,
1348 this means extra overhead for dispatch tables, which raises the
1349 threshold for using them. */
1350
1351 unsigned int
1352 default_case_values_threshold (void)
1353 {
1354 return (HAVE_casesi ? 4 : 5);
1355 }
1356
1357 bool
1358 default_have_conditional_execution (void)
1359 {
1360 #ifdef HAVE_conditional_execution
1361 return HAVE_conditional_execution;
1362 #else
1363 return false;
1364 #endif
1365 }
1366
1367 /* By default we assume that c99 functions are present at the runtime,
1368 but sincos is not. */
1369 bool
1370 default_libc_has_function (enum function_class fn_class)
1371 {
1372 if (fn_class == function_c94
1373 || fn_class == function_c99_misc
1374 || fn_class == function_c99_math_complex)
1375 return true;
1376
1377 return false;
1378 }
1379
1380 bool
1381 gnu_libc_has_function (enum function_class fn_class ATTRIBUTE_UNUSED)
1382 {
1383 return true;
1384 }
1385
1386 bool
1387 no_c99_libc_has_function (enum function_class fn_class ATTRIBUTE_UNUSED)
1388 {
1389 return false;
1390 }
1391
1392 tree
1393 default_builtin_tm_load_store (tree ARG_UNUSED (type))
1394 {
1395 return NULL_TREE;
1396 }
1397
1398 /* Compute cost of moving registers to/from memory. */
1399
1400 int
1401 default_memory_move_cost (machine_mode mode ATTRIBUTE_UNUSED,
1402 reg_class_t rclass ATTRIBUTE_UNUSED,
1403 bool in ATTRIBUTE_UNUSED)
1404 {
1405 #ifndef MEMORY_MOVE_COST
1406 return (4 + memory_move_secondary_cost (mode, (enum reg_class) rclass, in));
1407 #else
1408 return MEMORY_MOVE_COST (mode, (enum reg_class) rclass, in);
1409 #endif
1410 }
1411
1412 /* Compute cost of moving data from a register of class FROM to one of
1413 TO, using MODE. */
1414
1415 int
1416 default_register_move_cost (machine_mode mode ATTRIBUTE_UNUSED,
1417 reg_class_t from ATTRIBUTE_UNUSED,
1418 reg_class_t to ATTRIBUTE_UNUSED)
1419 {
1420 #ifndef REGISTER_MOVE_COST
1421 return 2;
1422 #else
1423 return REGISTER_MOVE_COST (mode, (enum reg_class) from, (enum reg_class) to);
1424 #endif
1425 }
1426
1427 /* For hooks which use the MOVE_RATIO macro, this gives the legacy default
1428 behaviour. SPEED_P is true if we are compiling for speed. */
1429
1430 unsigned int
1431 get_move_ratio (bool speed_p ATTRIBUTE_UNUSED)
1432 {
1433 unsigned int move_ratio;
1434 #ifdef MOVE_RATIO
1435 move_ratio = (unsigned int) MOVE_RATIO (speed_p);
1436 #else
1437 #if defined (HAVE_movmemqi) || defined (HAVE_movmemhi) || defined (HAVE_movmemsi) || defined (HAVE_movmemdi) || defined (HAVE_movmemti)
1438 move_ratio = 2;
1439 #else /* No movmem patterns, pick a default. */
1440 move_ratio = ((speed_p) ? 15 : 3);
1441 #endif
1442 #endif
1443 return move_ratio;
1444 }
1445
1446 /* Return TRUE if the move_by_pieces/set_by_pieces infrastructure should be
1447 used; return FALSE if the movmem/setmem optab should be expanded, or
1448 a call to memcpy emitted. */
1449
1450 bool
1451 default_use_by_pieces_infrastructure_p (unsigned HOST_WIDE_INT size,
1452 unsigned int alignment,
1453 enum by_pieces_operation op,
1454 bool speed_p)
1455 {
1456 unsigned int max_size = 0;
1457 unsigned int ratio = 0;
1458
1459 switch (op)
1460 {
1461 case CLEAR_BY_PIECES:
1462 max_size = STORE_MAX_PIECES;
1463 ratio = CLEAR_RATIO (speed_p);
1464 break;
1465 case MOVE_BY_PIECES:
1466 max_size = MOVE_MAX_PIECES;
1467 ratio = get_move_ratio (speed_p);
1468 break;
1469 case SET_BY_PIECES:
1470 max_size = STORE_MAX_PIECES;
1471 ratio = SET_RATIO (speed_p);
1472 break;
1473 case STORE_BY_PIECES:
1474 max_size = STORE_MAX_PIECES;
1475 ratio = get_move_ratio (speed_p);
1476 break;
1477 }
1478
1479 return move_by_pieces_ninsns (size, alignment, max_size + 1) < ratio;
1480 }
1481
1482 bool
1483 default_profile_before_prologue (void)
1484 {
1485 #ifdef PROFILE_BEFORE_PROLOGUE
1486 return true;
1487 #else
1488 return false;
1489 #endif
1490 }
1491
1492 /* The default implementation of TARGET_PREFERRED_RELOAD_CLASS. */
1493
1494 reg_class_t
1495 default_preferred_reload_class (rtx x ATTRIBUTE_UNUSED,
1496 reg_class_t rclass)
1497 {
1498 #ifdef PREFERRED_RELOAD_CLASS
1499 return (reg_class_t) PREFERRED_RELOAD_CLASS (x, (enum reg_class) rclass);
1500 #else
1501 return rclass;
1502 #endif
1503 }
1504
1505 /* The default implementation of TARGET_OUTPUT_PREFERRED_RELOAD_CLASS. */
1506
1507 reg_class_t
1508 default_preferred_output_reload_class (rtx x ATTRIBUTE_UNUSED,
1509 reg_class_t rclass)
1510 {
1511 return rclass;
1512 }
1513
1514 /* The default implementation of TARGET_PREFERRED_RENAME_CLASS. */
1515 reg_class_t
1516 default_preferred_rename_class (reg_class_t rclass ATTRIBUTE_UNUSED)
1517 {
1518 return NO_REGS;
1519 }
1520
1521 /* The default implementation of TARGET_CLASS_LIKELY_SPILLED_P. */
1522
1523 bool
1524 default_class_likely_spilled_p (reg_class_t rclass)
1525 {
1526 return (reg_class_size[(int) rclass] == 1);
1527 }
1528
1529 /* The default implementation of TARGET_CLASS_MAX_NREGS. */
1530
1531 unsigned char
1532 default_class_max_nregs (reg_class_t rclass ATTRIBUTE_UNUSED,
1533 machine_mode mode ATTRIBUTE_UNUSED)
1534 {
1535 #ifdef CLASS_MAX_NREGS
1536 return (unsigned char) CLASS_MAX_NREGS ((enum reg_class) rclass, mode);
1537 #else
1538 return ((GET_MODE_SIZE (mode) + UNITS_PER_WORD - 1) / UNITS_PER_WORD);
1539 #endif
1540 }
1541
1542 /* Determine the debugging unwind mechanism for the target. */
1543
1544 enum unwind_info_type
1545 default_debug_unwind_info (void)
1546 {
1547 /* If the target wants to force the use of dwarf2 unwind info, let it. */
1548 /* ??? Change all users to the hook, then poison this. */
1549 #ifdef DWARF2_FRAME_INFO
1550 if (DWARF2_FRAME_INFO)
1551 return UI_DWARF2;
1552 #endif
1553
1554 /* Otherwise, only turn it on if dwarf2 debugging is enabled. */
1555 #ifdef DWARF2_DEBUGGING_INFO
1556 if (write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1557 return UI_DWARF2;
1558 #endif
1559
1560 return UI_NONE;
1561 }
1562
1563 /* Determine the correct mode for a Dwarf frame register that represents
1564 register REGNO. */
1565
1566 machine_mode
1567 default_dwarf_frame_reg_mode (int regno)
1568 {
1569 machine_mode save_mode = reg_raw_mode[regno];
1570
1571 if (HARD_REGNO_CALL_PART_CLOBBERED (regno, save_mode))
1572 save_mode = choose_hard_reg_mode (regno, 1, true);
1573 return save_mode;
1574 }
1575
1576 /* To be used by targets where reg_raw_mode doesn't return the right
1577 mode for registers used in apply_builtin_return and apply_builtin_arg. */
1578
1579 machine_mode
1580 default_get_reg_raw_mode (int regno)
1581 {
1582 return reg_raw_mode[regno];
1583 }
1584
1585 /* Return true if a leaf function should stay leaf even with profiling
1586 enabled. */
1587
1588 bool
1589 default_keep_leaf_when_profiled ()
1590 {
1591 return false;
1592 }
1593
1594 /* Return true if the state of option OPTION should be stored in PCH files
1595 and checked by default_pch_valid_p. Store the option's current state
1596 in STATE if so. */
1597
1598 static inline bool
1599 option_affects_pch_p (int option, struct cl_option_state *state)
1600 {
1601 if ((cl_options[option].flags & CL_TARGET) == 0)
1602 return false;
1603 if ((cl_options[option].flags & CL_PCH_IGNORE) != 0)
1604 return false;
1605 if (option_flag_var (option, &global_options) == &target_flags)
1606 if (targetm.check_pch_target_flags)
1607 return false;
1608 return get_option_state (&global_options, option, state);
1609 }
1610
1611 /* Default version of get_pch_validity.
1612 By default, every flag difference is fatal; that will be mostly right for
1613 most targets, but completely right for very few. */
1614
1615 void *
1616 default_get_pch_validity (size_t *sz)
1617 {
1618 struct cl_option_state state;
1619 size_t i;
1620 char *result, *r;
1621
1622 *sz = 2;
1623 if (targetm.check_pch_target_flags)
1624 *sz += sizeof (target_flags);
1625 for (i = 0; i < cl_options_count; i++)
1626 if (option_affects_pch_p (i, &state))
1627 *sz += state.size;
1628
1629 result = r = XNEWVEC (char, *sz);
1630 r[0] = flag_pic;
1631 r[1] = flag_pie;
1632 r += 2;
1633 if (targetm.check_pch_target_flags)
1634 {
1635 memcpy (r, &target_flags, sizeof (target_flags));
1636 r += sizeof (target_flags);
1637 }
1638
1639 for (i = 0; i < cl_options_count; i++)
1640 if (option_affects_pch_p (i, &state))
1641 {
1642 memcpy (r, state.data, state.size);
1643 r += state.size;
1644 }
1645
1646 return result;
1647 }
1648
1649 /* Return a message which says that a PCH file was created with a different
1650 setting of OPTION. */
1651
1652 static const char *
1653 pch_option_mismatch (const char *option)
1654 {
1655 return xasprintf (_("created and used with differing settings of '%s'"),
1656 option);
1657 }
1658
1659 /* Default version of pch_valid_p. */
1660
1661 const char *
1662 default_pch_valid_p (const void *data_p, size_t len)
1663 {
1664 struct cl_option_state state;
1665 const char *data = (const char *)data_p;
1666 size_t i;
1667
1668 /* -fpic and -fpie also usually make a PCH invalid. */
1669 if (data[0] != flag_pic)
1670 return _("created and used with different settings of -fpic");
1671 if (data[1] != flag_pie)
1672 return _("created and used with different settings of -fpie");
1673 data += 2;
1674
1675 /* Check target_flags. */
1676 if (targetm.check_pch_target_flags)
1677 {
1678 int tf;
1679 const char *r;
1680
1681 memcpy (&tf, data, sizeof (target_flags));
1682 data += sizeof (target_flags);
1683 len -= sizeof (target_flags);
1684 r = targetm.check_pch_target_flags (tf);
1685 if (r != NULL)
1686 return r;
1687 }
1688
1689 for (i = 0; i < cl_options_count; i++)
1690 if (option_affects_pch_p (i, &state))
1691 {
1692 if (memcmp (data, state.data, state.size) != 0)
1693 return pch_option_mismatch (cl_options[i].opt_text);
1694 data += state.size;
1695 len -= state.size;
1696 }
1697
1698 return NULL;
1699 }
1700
1701 /* Default version of cstore_mode. */
1702
1703 machine_mode
1704 default_cstore_mode (enum insn_code icode)
1705 {
1706 return insn_data[(int) icode].operand[0].mode;
1707 }
1708
1709 /* Default version of member_type_forces_blk. */
1710
1711 bool
1712 default_member_type_forces_blk (const_tree, machine_mode)
1713 {
1714 return false;
1715 }
1716
1717 rtx
1718 default_load_bounds_for_arg (rtx addr ATTRIBUTE_UNUSED,
1719 rtx ptr ATTRIBUTE_UNUSED,
1720 rtx bnd ATTRIBUTE_UNUSED)
1721 {
1722 gcc_unreachable ();
1723 }
1724
1725 void
1726 default_store_bounds_for_arg (rtx val ATTRIBUTE_UNUSED,
1727 rtx addr ATTRIBUTE_UNUSED,
1728 rtx bounds ATTRIBUTE_UNUSED,
1729 rtx to ATTRIBUTE_UNUSED)
1730 {
1731 gcc_unreachable ();
1732 }
1733
1734 rtx
1735 default_load_returned_bounds (rtx slot ATTRIBUTE_UNUSED)
1736 {
1737 gcc_unreachable ();
1738 }
1739
1740 void
1741 default_store_returned_bounds (rtx slot ATTRIBUTE_UNUSED,
1742 rtx bounds ATTRIBUTE_UNUSED)
1743 {
1744 gcc_unreachable ();
1745 }
1746
1747 /* Default version of canonicalize_comparison. */
1748
1749 void
1750 default_canonicalize_comparison (int *, rtx *, rtx *, bool)
1751 {
1752 }
1753
1754 /* Default implementation of TARGET_ATOMIC_ASSIGN_EXPAND_FENV. */
1755
1756 void
1757 default_atomic_assign_expand_fenv (tree *, tree *, tree *)
1758 {
1759 }
1760
1761 #ifndef PAD_VARARGS_DOWN
1762 #define PAD_VARARGS_DOWN BYTES_BIG_ENDIAN
1763 #endif
1764
1765 /* Build an indirect-ref expression over the given TREE, which represents a
1766 piece of a va_arg() expansion. */
1767 tree
1768 build_va_arg_indirect_ref (tree addr)
1769 {
1770 addr = build_simple_mem_ref_loc (EXPR_LOCATION (addr), addr);
1771 return addr;
1772 }
1773
1774 /* The "standard" implementation of va_arg: read the value from the
1775 current (padded) address and increment by the (padded) size. */
1776
1777 tree
1778 std_gimplify_va_arg_expr (tree valist, tree type, gimple_seq *pre_p,
1779 gimple_seq *post_p)
1780 {
1781 tree addr, t, type_size, rounded_size, valist_tmp;
1782 unsigned HOST_WIDE_INT align, boundary;
1783 bool indirect;
1784
1785 /* All of the alignment and movement below is for args-grow-up machines.
1786 As of 2004, there are only 3 ARGS_GROW_DOWNWARD targets, and they all
1787 implement their own specialized gimplify_va_arg_expr routines. */
1788 if (ARGS_GROW_DOWNWARD)
1789 gcc_unreachable ();
1790
1791 indirect = pass_by_reference (NULL, TYPE_MODE (type), type, false);
1792 if (indirect)
1793 type = build_pointer_type (type);
1794
1795 align = PARM_BOUNDARY / BITS_PER_UNIT;
1796 boundary = targetm.calls.function_arg_boundary (TYPE_MODE (type), type);
1797
1798 /* When we align parameter on stack for caller, if the parameter
1799 alignment is beyond MAX_SUPPORTED_STACK_ALIGNMENT, it will be
1800 aligned at MAX_SUPPORTED_STACK_ALIGNMENT. We will match callee
1801 here with caller. */
1802 if (boundary > MAX_SUPPORTED_STACK_ALIGNMENT)
1803 boundary = MAX_SUPPORTED_STACK_ALIGNMENT;
1804
1805 boundary /= BITS_PER_UNIT;
1806
1807 /* Hoist the valist value into a temporary for the moment. */
1808 valist_tmp = get_initialized_tmp_var (valist, pre_p, NULL);
1809
1810 /* va_list pointer is aligned to PARM_BOUNDARY. If argument actually
1811 requires greater alignment, we must perform dynamic alignment. */
1812 if (boundary > align
1813 && !integer_zerop (TYPE_SIZE (type)))
1814 {
1815 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist_tmp,
1816 fold_build_pointer_plus_hwi (valist_tmp, boundary - 1));
1817 gimplify_and_add (t, pre_p);
1818
1819 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist_tmp,
1820 fold_build2 (BIT_AND_EXPR, TREE_TYPE (valist),
1821 valist_tmp,
1822 build_int_cst (TREE_TYPE (valist), -boundary)));
1823 gimplify_and_add (t, pre_p);
1824 }
1825 else
1826 boundary = align;
1827
1828 /* If the actual alignment is less than the alignment of the type,
1829 adjust the type accordingly so that we don't assume strict alignment
1830 when dereferencing the pointer. */
1831 boundary *= BITS_PER_UNIT;
1832 if (boundary < TYPE_ALIGN (type))
1833 {
1834 type = build_variant_type_copy (type);
1835 TYPE_ALIGN (type) = boundary;
1836 }
1837
1838 /* Compute the rounded size of the type. */
1839 type_size = size_in_bytes (type);
1840 rounded_size = round_up (type_size, align);
1841
1842 /* Reduce rounded_size so it's sharable with the postqueue. */
1843 gimplify_expr (&rounded_size, pre_p, post_p, is_gimple_val, fb_rvalue);
1844
1845 /* Get AP. */
1846 addr = valist_tmp;
1847 if (PAD_VARARGS_DOWN && !integer_zerop (rounded_size))
1848 {
1849 /* Small args are padded downward. */
1850 t = fold_build2_loc (input_location, GT_EXPR, sizetype,
1851 rounded_size, size_int (align));
1852 t = fold_build3 (COND_EXPR, sizetype, t, size_zero_node,
1853 size_binop (MINUS_EXPR, rounded_size, type_size));
1854 addr = fold_build_pointer_plus (addr, t);
1855 }
1856
1857 /* Compute new value for AP. */
1858 t = fold_build_pointer_plus (valist_tmp, rounded_size);
1859 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist, t);
1860 gimplify_and_add (t, pre_p);
1861
1862 addr = fold_convert (build_pointer_type (type), addr);
1863
1864 if (indirect)
1865 addr = build_va_arg_indirect_ref (addr);
1866
1867 return build_va_arg_indirect_ref (addr);
1868 }
1869
1870 tree
1871 default_chkp_bound_type (void)
1872 {
1873 tree res = make_node (POINTER_BOUNDS_TYPE);
1874 TYPE_PRECISION (res) = TYPE_PRECISION (size_type_node) * 2;
1875 TYPE_NAME (res) = get_identifier ("__bounds_type");
1876 SET_TYPE_MODE (res, targetm.chkp_bound_mode ());
1877 layout_type (res);
1878 return res;
1879 }
1880
1881 enum machine_mode
1882 default_chkp_bound_mode (void)
1883 {
1884 return VOIDmode;
1885 }
1886
1887 tree
1888 default_builtin_chkp_function (unsigned int fcode ATTRIBUTE_UNUSED)
1889 {
1890 return NULL_TREE;
1891 }
1892
1893 rtx
1894 default_chkp_function_value_bounds (const_tree ret_type ATTRIBUTE_UNUSED,
1895 const_tree fn_decl_or_type ATTRIBUTE_UNUSED,
1896 bool outgoing ATTRIBUTE_UNUSED)
1897 {
1898 gcc_unreachable ();
1899 }
1900
1901 tree
1902 default_chkp_make_bounds_constant (HOST_WIDE_INT lb ATTRIBUTE_UNUSED,
1903 HOST_WIDE_INT ub ATTRIBUTE_UNUSED)
1904 {
1905 return NULL_TREE;
1906 }
1907
1908 int
1909 default_chkp_initialize_bounds (tree var ATTRIBUTE_UNUSED,
1910 tree lb ATTRIBUTE_UNUSED,
1911 tree ub ATTRIBUTE_UNUSED,
1912 tree *stmts ATTRIBUTE_UNUSED)
1913 {
1914 return 0;
1915 }
1916
1917 void
1918 default_setup_incoming_vararg_bounds (cumulative_args_t ca ATTRIBUTE_UNUSED,
1919 enum machine_mode mode ATTRIBUTE_UNUSED,
1920 tree type ATTRIBUTE_UNUSED,
1921 int *pretend_arg_size ATTRIBUTE_UNUSED,
1922 int second_time ATTRIBUTE_UNUSED)
1923 {
1924 }
1925
1926 /* An implementation of TARGET_CAN_USE_DOLOOP_P for targets that do
1927 not support nested low-overhead loops. */
1928
1929 bool
1930 can_use_doloop_if_innermost (const widest_int &, const widest_int &,
1931 unsigned int loop_depth, bool)
1932 {
1933 return loop_depth == 1;
1934 }
1935
1936 #include "gt-targhooks.h"