runtime: mark go-context.S as no-executable-stack and split-stack supported
[gcc.git] / gcc / targhooks.c
1 /* Default target hook functions.
2 Copyright (C) 2003-2019 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 "target.h"
53 #include "function.h"
54 #include "rtl.h"
55 #include "tree.h"
56 #include "tree-ssa-alias.h"
57 #include "gimple-expr.h"
58 #include "memmodel.h"
59 #include "tm_p.h"
60 #include "stringpool.h"
61 #include "tree-vrp.h"
62 #include "tree-ssanames.h"
63 #include "profile-count.h"
64 #include "optabs.h"
65 #include "regs.h"
66 #include "recog.h"
67 #include "diagnostic-core.h"
68 #include "fold-const.h"
69 #include "stor-layout.h"
70 #include "varasm.h"
71 #include "flags.h"
72 #include "explow.h"
73 #include "calls.h"
74 #include "expr.h"
75 #include "output.h"
76 #include "common/common-target.h"
77 #include "reload.h"
78 #include "intl.h"
79 #include "opts.h"
80 #include "gimplify.h"
81 #include "predict.h"
82 #include "params.h"
83 #include "real.h"
84 #include "langhooks.h"
85 #include "sbitmap.h"
86 #include "function-abi.h"
87
88 bool
89 default_legitimate_address_p (machine_mode mode ATTRIBUTE_UNUSED,
90 rtx addr ATTRIBUTE_UNUSED,
91 bool strict ATTRIBUTE_UNUSED)
92 {
93 #ifdef GO_IF_LEGITIMATE_ADDRESS
94 /* Defer to the old implementation using a goto. */
95 if (strict)
96 return strict_memory_address_p (mode, addr);
97 else
98 return memory_address_p (mode, addr);
99 #else
100 gcc_unreachable ();
101 #endif
102 }
103
104 void
105 default_external_libcall (rtx fun ATTRIBUTE_UNUSED)
106 {
107 #ifdef ASM_OUTPUT_EXTERNAL_LIBCALL
108 ASM_OUTPUT_EXTERNAL_LIBCALL (asm_out_file, fun);
109 #endif
110 }
111
112 int
113 default_unspec_may_trap_p (const_rtx x, unsigned flags)
114 {
115 int i;
116
117 /* Any floating arithmetic may trap. */
118 if ((SCALAR_FLOAT_MODE_P (GET_MODE (x)) && flag_trapping_math))
119 return 1;
120
121 for (i = 0; i < XVECLEN (x, 0); ++i)
122 {
123 if (may_trap_p_1 (XVECEXP (x, 0, i), flags))
124 return 1;
125 }
126
127 return 0;
128 }
129
130 machine_mode
131 default_promote_function_mode (const_tree type ATTRIBUTE_UNUSED,
132 machine_mode mode,
133 int *punsignedp ATTRIBUTE_UNUSED,
134 const_tree funtype ATTRIBUTE_UNUSED,
135 int for_return ATTRIBUTE_UNUSED)
136 {
137 if (type != NULL_TREE && for_return == 2)
138 return promote_mode (type, mode, punsignedp);
139 return mode;
140 }
141
142 machine_mode
143 default_promote_function_mode_always_promote (const_tree type,
144 machine_mode mode,
145 int *punsignedp,
146 const_tree funtype ATTRIBUTE_UNUSED,
147 int for_return ATTRIBUTE_UNUSED)
148 {
149 return promote_mode (type, mode, punsignedp);
150 }
151
152 machine_mode
153 default_cc_modes_compatible (machine_mode m1, machine_mode m2)
154 {
155 if (m1 == m2)
156 return m1;
157 return VOIDmode;
158 }
159
160 bool
161 default_return_in_memory (const_tree type,
162 const_tree fntype ATTRIBUTE_UNUSED)
163 {
164 return (TYPE_MODE (type) == BLKmode);
165 }
166
167 rtx
168 default_legitimize_address (rtx x, rtx orig_x ATTRIBUTE_UNUSED,
169 machine_mode mode ATTRIBUTE_UNUSED)
170 {
171 return x;
172 }
173
174 bool
175 default_legitimize_address_displacement (rtx *, rtx *, poly_int64,
176 machine_mode)
177 {
178 return false;
179 }
180
181 bool
182 default_const_not_ok_for_debug_p (rtx x)
183 {
184 if (GET_CODE (x) == UNSPEC)
185 return true;
186 return false;
187 }
188
189 rtx
190 default_expand_builtin_saveregs (void)
191 {
192 error ("%<__builtin_saveregs%> not supported by this target");
193 return const0_rtx;
194 }
195
196 void
197 default_setup_incoming_varargs (cumulative_args_t,
198 const function_arg_info &, int *, int)
199 {
200 }
201
202 /* The default implementation of TARGET_BUILTIN_SETJMP_FRAME_VALUE. */
203
204 rtx
205 default_builtin_setjmp_frame_value (void)
206 {
207 return virtual_stack_vars_rtx;
208 }
209
210 /* Generic hook that takes a CUMULATIVE_ARGS pointer and returns false. */
211
212 bool
213 hook_bool_CUMULATIVE_ARGS_false (cumulative_args_t ca ATTRIBUTE_UNUSED)
214 {
215 return false;
216 }
217
218 bool
219 default_pretend_outgoing_varargs_named (cumulative_args_t ca ATTRIBUTE_UNUSED)
220 {
221 return (targetm.calls.setup_incoming_varargs
222 != default_setup_incoming_varargs);
223 }
224
225 scalar_int_mode
226 default_eh_return_filter_mode (void)
227 {
228 return targetm.unwind_word_mode ();
229 }
230
231 scalar_int_mode
232 default_libgcc_cmp_return_mode (void)
233 {
234 return word_mode;
235 }
236
237 scalar_int_mode
238 default_libgcc_shift_count_mode (void)
239 {
240 return word_mode;
241 }
242
243 scalar_int_mode
244 default_unwind_word_mode (void)
245 {
246 return word_mode;
247 }
248
249 /* The default implementation of TARGET_SHIFT_TRUNCATION_MASK. */
250
251 unsigned HOST_WIDE_INT
252 default_shift_truncation_mask (machine_mode mode)
253 {
254 return SHIFT_COUNT_TRUNCATED ? GET_MODE_UNIT_BITSIZE (mode) - 1 : 0;
255 }
256
257 /* The default implementation of TARGET_MIN_DIVISIONS_FOR_RECIP_MUL. */
258
259 unsigned int
260 default_min_divisions_for_recip_mul (machine_mode mode ATTRIBUTE_UNUSED)
261 {
262 return have_insn_for (DIV, mode) ? 3 : 2;
263 }
264
265 /* The default implementation of TARGET_MODE_REP_EXTENDED. */
266
267 int
268 default_mode_rep_extended (scalar_int_mode, scalar_int_mode)
269 {
270 return UNKNOWN;
271 }
272
273 /* Generic hook that takes a CUMULATIVE_ARGS pointer and returns true. */
274
275 bool
276 hook_bool_CUMULATIVE_ARGS_true (cumulative_args_t a ATTRIBUTE_UNUSED)
277 {
278 return true;
279 }
280
281 /* Return machine mode for non-standard suffix
282 or VOIDmode if non-standard suffixes are unsupported. */
283 machine_mode
284 default_mode_for_suffix (char suffix ATTRIBUTE_UNUSED)
285 {
286 return VOIDmode;
287 }
288
289 /* The generic C++ ABI specifies this is a 64-bit value. */
290 tree
291 default_cxx_guard_type (void)
292 {
293 return long_long_integer_type_node;
294 }
295
296 /* Returns the size of the cookie to use when allocating an array
297 whose elements have the indicated TYPE. Assumes that it is already
298 known that a cookie is needed. */
299
300 tree
301 default_cxx_get_cookie_size (tree type)
302 {
303 tree cookie_size;
304
305 /* We need to allocate an additional max (sizeof (size_t), alignof
306 (true_type)) bytes. */
307 tree sizetype_size;
308 tree type_align;
309
310 sizetype_size = size_in_bytes (sizetype);
311 type_align = size_int (TYPE_ALIGN_UNIT (type));
312 if (tree_int_cst_lt (type_align, sizetype_size))
313 cookie_size = sizetype_size;
314 else
315 cookie_size = type_align;
316
317 return cookie_size;
318 }
319
320 /* Return true if a parameter must be passed by reference. This version
321 of the TARGET_PASS_BY_REFERENCE hook uses just MUST_PASS_IN_STACK. */
322
323 bool
324 hook_pass_by_reference_must_pass_in_stack (cumulative_args_t,
325 const function_arg_info &arg)
326 {
327 return targetm.calls.must_pass_in_stack (arg);
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, const function_arg_info &arg)
335 {
336 return arg.named;
337 }
338
339 /* Emit to STREAM the assembler syntax for insn operand X. */
340
341 void
342 default_print_operand (FILE *stream ATTRIBUTE_UNUSED, rtx x ATTRIBUTE_UNUSED,
343 int code ATTRIBUTE_UNUSED)
344 {
345 #ifdef PRINT_OPERAND
346 PRINT_OPERAND (stream, x, code);
347 #else
348 gcc_unreachable ();
349 #endif
350 }
351
352 /* Emit to STREAM the assembler syntax for an insn operand whose memory
353 address is X. */
354
355 void
356 default_print_operand_address (FILE *stream ATTRIBUTE_UNUSED,
357 machine_mode /*mode*/,
358 rtx x ATTRIBUTE_UNUSED)
359 {
360 #ifdef PRINT_OPERAND_ADDRESS
361 PRINT_OPERAND_ADDRESS (stream, x);
362 #else
363 gcc_unreachable ();
364 #endif
365 }
366
367 /* Return true if CODE is a valid punctuation character for the
368 `print_operand' hook. */
369
370 bool
371 default_print_operand_punct_valid_p (unsigned char code ATTRIBUTE_UNUSED)
372 {
373 #ifdef PRINT_OPERAND_PUNCT_VALID_P
374 return PRINT_OPERAND_PUNCT_VALID_P (code);
375 #else
376 return false;
377 #endif
378 }
379
380 /* The default implementation of TARGET_MANGLE_ASSEMBLER_NAME. */
381 tree
382 default_mangle_assembler_name (const char *name ATTRIBUTE_UNUSED)
383 {
384 const char *skipped = name + (*name == '*' ? 1 : 0);
385 const char *stripped = targetm.strip_name_encoding (skipped);
386 if (*name != '*' && user_label_prefix[0])
387 stripped = ACONCAT ((user_label_prefix, stripped, NULL));
388 return get_identifier (stripped);
389 }
390
391 /* The default implementation of TARGET_TRANSLATE_MODE_ATTRIBUTE. */
392
393 machine_mode
394 default_translate_mode_attribute (machine_mode mode)
395 {
396 return mode;
397 }
398
399 /* True if MODE is valid for the target. By "valid", we mean able to
400 be manipulated in non-trivial ways. In particular, this means all
401 the arithmetic is supported.
402
403 By default we guess this means that any C type is supported. If
404 we can't map the mode back to a type that would be available in C,
405 then reject it. Special case, here, is the double-word arithmetic
406 supported by optabs.c. */
407
408 bool
409 default_scalar_mode_supported_p (scalar_mode mode)
410 {
411 int precision = GET_MODE_PRECISION (mode);
412
413 switch (GET_MODE_CLASS (mode))
414 {
415 case MODE_PARTIAL_INT:
416 case MODE_INT:
417 if (precision == CHAR_TYPE_SIZE)
418 return true;
419 if (precision == SHORT_TYPE_SIZE)
420 return true;
421 if (precision == INT_TYPE_SIZE)
422 return true;
423 if (precision == LONG_TYPE_SIZE)
424 return true;
425 if (precision == LONG_LONG_TYPE_SIZE)
426 return true;
427 if (precision == 2 * BITS_PER_WORD)
428 return true;
429 return false;
430
431 case MODE_FLOAT:
432 if (precision == FLOAT_TYPE_SIZE)
433 return true;
434 if (precision == DOUBLE_TYPE_SIZE)
435 return true;
436 if (precision == LONG_DOUBLE_TYPE_SIZE)
437 return true;
438 return false;
439
440 case MODE_DECIMAL_FLOAT:
441 case MODE_FRACT:
442 case MODE_UFRACT:
443 case MODE_ACCUM:
444 case MODE_UACCUM:
445 return false;
446
447 default:
448 gcc_unreachable ();
449 }
450 }
451
452 /* Return true if libgcc supports floating-point mode MODE (known to
453 be supported as a scalar mode). */
454
455 bool
456 default_libgcc_floating_mode_supported_p (scalar_float_mode mode)
457 {
458 switch (mode)
459 {
460 #ifdef HAVE_SFmode
461 case E_SFmode:
462 #endif
463 #ifdef HAVE_DFmode
464 case E_DFmode:
465 #endif
466 #ifdef HAVE_XFmode
467 case E_XFmode:
468 #endif
469 #ifdef HAVE_TFmode
470 case E_TFmode:
471 #endif
472 return true;
473
474 default:
475 return false;
476 }
477 }
478
479 /* Return the machine mode to use for the type _FloatN, if EXTENDED is
480 false, or _FloatNx, if EXTENDED is true, or VOIDmode if not
481 supported. */
482 opt_scalar_float_mode
483 default_floatn_mode (int n, bool extended)
484 {
485 if (extended)
486 {
487 opt_scalar_float_mode cand1, cand2;
488 scalar_float_mode mode;
489 switch (n)
490 {
491 case 32:
492 #ifdef HAVE_DFmode
493 cand1 = DFmode;
494 #endif
495 break;
496
497 case 64:
498 #ifdef HAVE_XFmode
499 cand1 = XFmode;
500 #endif
501 #ifdef HAVE_TFmode
502 cand2 = TFmode;
503 #endif
504 break;
505
506 case 128:
507 break;
508
509 default:
510 /* Those are the only valid _FloatNx types. */
511 gcc_unreachable ();
512 }
513 if (cand1.exists (&mode)
514 && REAL_MODE_FORMAT (mode)->ieee_bits > n
515 && targetm.scalar_mode_supported_p (mode)
516 && targetm.libgcc_floating_mode_supported_p (mode))
517 return cand1;
518 if (cand2.exists (&mode)
519 && REAL_MODE_FORMAT (mode)->ieee_bits > n
520 && targetm.scalar_mode_supported_p (mode)
521 && targetm.libgcc_floating_mode_supported_p (mode))
522 return cand2;
523 }
524 else
525 {
526 opt_scalar_float_mode cand;
527 scalar_float_mode mode;
528 switch (n)
529 {
530 case 16:
531 /* Always enable _Float16 if we have basic support for the mode.
532 Targets can control the range and precision of operations on
533 the _Float16 type using TARGET_C_EXCESS_PRECISION. */
534 #ifdef HAVE_HFmode
535 cand = HFmode;
536 #endif
537 break;
538
539 case 32:
540 #ifdef HAVE_SFmode
541 cand = SFmode;
542 #endif
543 break;
544
545 case 64:
546 #ifdef HAVE_DFmode
547 cand = DFmode;
548 #endif
549 break;
550
551 case 128:
552 #ifdef HAVE_TFmode
553 cand = TFmode;
554 #endif
555 break;
556
557 default:
558 break;
559 }
560 if (cand.exists (&mode)
561 && REAL_MODE_FORMAT (mode)->ieee_bits == n
562 && targetm.scalar_mode_supported_p (mode)
563 && targetm.libgcc_floating_mode_supported_p (mode))
564 return cand;
565 }
566 return opt_scalar_float_mode ();
567 }
568
569 /* Define this to return true if the _Floatn and _Floatnx built-in functions
570 should implicitly enable the built-in function without the __builtin_ prefix
571 in addition to the normal built-in function with the __builtin_ prefix. The
572 default is to only enable built-in functions without the __builtin_ prefix
573 for the GNU C langauge. The argument FUNC is the enum builtin_in_function
574 id of the function to be enabled. */
575
576 bool
577 default_floatn_builtin_p (int func ATTRIBUTE_UNUSED)
578 {
579 static bool first_time_p = true;
580 static bool c_or_objective_c;
581
582 if (first_time_p)
583 {
584 first_time_p = false;
585 c_or_objective_c = lang_GNU_C () || lang_GNU_OBJC ();
586 }
587
588 return c_or_objective_c;
589 }
590
591 /* Make some target macros useable by target-independent code. */
592 bool
593 targhook_words_big_endian (void)
594 {
595 return !!WORDS_BIG_ENDIAN;
596 }
597
598 bool
599 targhook_float_words_big_endian (void)
600 {
601 return !!FLOAT_WORDS_BIG_ENDIAN;
602 }
603
604 /* True if the target supports floating-point exceptions and rounding
605 modes. */
606
607 bool
608 default_float_exceptions_rounding_supported_p (void)
609 {
610 #ifdef HAVE_adddf3
611 return HAVE_adddf3;
612 #else
613 return false;
614 #endif
615 }
616
617 /* True if the target supports decimal floating point. */
618
619 bool
620 default_decimal_float_supported_p (void)
621 {
622 return ENABLE_DECIMAL_FLOAT;
623 }
624
625 /* True if the target supports fixed-point arithmetic. */
626
627 bool
628 default_fixed_point_supported_p (void)
629 {
630 return ENABLE_FIXED_POINT;
631 }
632
633 /* True if the target supports GNU indirect functions. */
634
635 bool
636 default_has_ifunc_p (void)
637 {
638 return HAVE_GNU_INDIRECT_FUNCTION;
639 }
640
641 /* Return true if we predict the loop LOOP will be transformed to a
642 low-overhead loop, otherwise return false.
643
644 By default, false is returned, as this hook's applicability should be
645 verified for each target. Target maintainers should re-define the hook
646 if the target can take advantage of it. */
647
648 bool
649 default_predict_doloop_p (class loop *loop ATTRIBUTE_UNUSED)
650 {
651 return false;
652 }
653
654 /* NULL if INSN insn is valid within a low-overhead loop, otherwise returns
655 an error message.
656
657 This function checks whether a given INSN is valid within a low-overhead
658 loop. If INSN is invalid it returns the reason for that, otherwise it
659 returns NULL. A called function may clobber any special registers required
660 for low-overhead looping. Additionally, some targets (eg, PPC) use the count
661 register for branch on table instructions. We reject the doloop pattern in
662 these cases. */
663
664 const char *
665 default_invalid_within_doloop (const rtx_insn *insn)
666 {
667 if (CALL_P (insn))
668 return "Function call in loop.";
669
670 if (tablejump_p (insn, NULL, NULL) || computed_jump_p (insn))
671 return "Computed branch in the loop.";
672
673 return NULL;
674 }
675
676 /* Mapping of builtin functions to vectorized variants. */
677
678 tree
679 default_builtin_vectorized_function (unsigned int, tree, tree)
680 {
681 return NULL_TREE;
682 }
683
684 /* Mapping of target builtin functions to vectorized variants. */
685
686 tree
687 default_builtin_md_vectorized_function (tree, tree, tree)
688 {
689 return NULL_TREE;
690 }
691
692 /* Vectorized conversion. */
693
694 tree
695 default_builtin_vectorized_conversion (unsigned int code ATTRIBUTE_UNUSED,
696 tree dest_type ATTRIBUTE_UNUSED,
697 tree src_type ATTRIBUTE_UNUSED)
698 {
699 return NULL_TREE;
700 }
701
702 /* Default vectorizer cost model values. */
703
704 int
705 default_builtin_vectorization_cost (enum vect_cost_for_stmt type_of_cost,
706 tree vectype,
707 int misalign ATTRIBUTE_UNUSED)
708 {
709 switch (type_of_cost)
710 {
711 case scalar_stmt:
712 case scalar_load:
713 case scalar_store:
714 case vector_stmt:
715 case vector_load:
716 case vector_store:
717 case vec_to_scalar:
718 case scalar_to_vec:
719 case cond_branch_not_taken:
720 case vec_perm:
721 case vec_promote_demote:
722 return 1;
723
724 case unaligned_load:
725 case unaligned_store:
726 return 2;
727
728 case cond_branch_taken:
729 return 3;
730
731 case vec_construct:
732 return estimated_poly_value (TYPE_VECTOR_SUBPARTS (vectype)) - 1;
733
734 default:
735 gcc_unreachable ();
736 }
737 }
738
739 /* Reciprocal. */
740
741 tree
742 default_builtin_reciprocal (tree)
743 {
744 return NULL_TREE;
745 }
746
747 bool
748 hook_bool_CUMULATIVE_ARGS_arg_info_false (cumulative_args_t,
749 const function_arg_info &)
750 {
751 return false;
752 }
753
754 bool
755 hook_bool_CUMULATIVE_ARGS_arg_info_true (cumulative_args_t,
756 const function_arg_info &)
757 {
758 return true;
759 }
760
761 int
762 hook_int_CUMULATIVE_ARGS_arg_info_0 (cumulative_args_t,
763 const function_arg_info &)
764 {
765 return 0;
766 }
767
768 void
769 hook_void_CUMULATIVE_ARGS_tree (cumulative_args_t ca ATTRIBUTE_UNUSED,
770 tree ATTRIBUTE_UNUSED)
771 {
772 }
773
774 void
775 default_function_arg_advance (cumulative_args_t, const function_arg_info &)
776 {
777 gcc_unreachable ();
778 }
779
780 /* Default implementation of TARGET_FUNCTION_ARG_OFFSET. */
781
782 HOST_WIDE_INT
783 default_function_arg_offset (machine_mode, const_tree)
784 {
785 return 0;
786 }
787
788 /* Default implementation of TARGET_FUNCTION_ARG_PADDING: usually pad
789 upward, but pad short args downward on big-endian machines. */
790
791 pad_direction
792 default_function_arg_padding (machine_mode mode, const_tree type)
793 {
794 if (!BYTES_BIG_ENDIAN)
795 return PAD_UPWARD;
796
797 unsigned HOST_WIDE_INT size;
798 if (mode == BLKmode)
799 {
800 if (!type || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
801 return PAD_UPWARD;
802 size = int_size_in_bytes (type);
803 }
804 else
805 /* Targets with variable-sized modes must override this hook
806 and handle variable-sized modes explicitly. */
807 size = GET_MODE_SIZE (mode).to_constant ();
808
809 if (size < (PARM_BOUNDARY / BITS_PER_UNIT))
810 return PAD_DOWNWARD;
811
812 return PAD_UPWARD;
813 }
814
815 rtx
816 default_function_arg (cumulative_args_t, const function_arg_info &)
817 {
818 gcc_unreachable ();
819 }
820
821 rtx
822 default_function_incoming_arg (cumulative_args_t, const function_arg_info &)
823 {
824 gcc_unreachable ();
825 }
826
827 unsigned int
828 default_function_arg_boundary (machine_mode mode ATTRIBUTE_UNUSED,
829 const_tree type ATTRIBUTE_UNUSED)
830 {
831 return PARM_BOUNDARY;
832 }
833
834 unsigned int
835 default_function_arg_round_boundary (machine_mode mode ATTRIBUTE_UNUSED,
836 const_tree type ATTRIBUTE_UNUSED)
837 {
838 return PARM_BOUNDARY;
839 }
840
841 void
842 hook_void_bitmap (bitmap regs ATTRIBUTE_UNUSED)
843 {
844 }
845
846 const char *
847 hook_invalid_arg_for_unprototyped_fn (
848 const_tree typelist ATTRIBUTE_UNUSED,
849 const_tree funcdecl ATTRIBUTE_UNUSED,
850 const_tree val ATTRIBUTE_UNUSED)
851 {
852 return NULL;
853 }
854
855 /* Initialize the stack protection decls. */
856
857 /* Stack protection related decls living in libgcc. */
858 static GTY(()) tree stack_chk_guard_decl;
859
860 tree
861 default_stack_protect_guard (void)
862 {
863 tree t = stack_chk_guard_decl;
864
865 if (t == NULL)
866 {
867 rtx x;
868
869 t = build_decl (UNKNOWN_LOCATION,
870 VAR_DECL, get_identifier ("__stack_chk_guard"),
871 ptr_type_node);
872 TREE_STATIC (t) = 1;
873 TREE_PUBLIC (t) = 1;
874 DECL_EXTERNAL (t) = 1;
875 TREE_USED (t) = 1;
876 TREE_THIS_VOLATILE (t) = 1;
877 DECL_ARTIFICIAL (t) = 1;
878 DECL_IGNORED_P (t) = 1;
879
880 /* Do not share RTL as the declaration is visible outside of
881 current function. */
882 x = DECL_RTL (t);
883 RTX_FLAG (x, used) = 1;
884
885 stack_chk_guard_decl = t;
886 }
887
888 return t;
889 }
890
891 static GTY(()) tree stack_chk_fail_decl;
892
893 tree
894 default_external_stack_protect_fail (void)
895 {
896 tree t = stack_chk_fail_decl;
897
898 if (t == NULL_TREE)
899 {
900 t = build_function_type_list (void_type_node, NULL_TREE);
901 t = build_decl (UNKNOWN_LOCATION,
902 FUNCTION_DECL, get_identifier ("__stack_chk_fail"), t);
903 TREE_STATIC (t) = 1;
904 TREE_PUBLIC (t) = 1;
905 DECL_EXTERNAL (t) = 1;
906 TREE_USED (t) = 1;
907 TREE_THIS_VOLATILE (t) = 1;
908 TREE_NOTHROW (t) = 1;
909 DECL_ARTIFICIAL (t) = 1;
910 DECL_IGNORED_P (t) = 1;
911 DECL_VISIBILITY (t) = VISIBILITY_DEFAULT;
912 DECL_VISIBILITY_SPECIFIED (t) = 1;
913
914 stack_chk_fail_decl = t;
915 }
916
917 return build_call_expr (t, 0);
918 }
919
920 tree
921 default_hidden_stack_protect_fail (void)
922 {
923 #ifndef HAVE_GAS_HIDDEN
924 return default_external_stack_protect_fail ();
925 #else
926 tree t = stack_chk_fail_decl;
927
928 if (!flag_pic)
929 return default_external_stack_protect_fail ();
930
931 if (t == NULL_TREE)
932 {
933 t = build_function_type_list (void_type_node, NULL_TREE);
934 t = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL,
935 get_identifier ("__stack_chk_fail_local"), t);
936 TREE_STATIC (t) = 1;
937 TREE_PUBLIC (t) = 1;
938 DECL_EXTERNAL (t) = 1;
939 TREE_USED (t) = 1;
940 TREE_THIS_VOLATILE (t) = 1;
941 TREE_NOTHROW (t) = 1;
942 DECL_ARTIFICIAL (t) = 1;
943 DECL_IGNORED_P (t) = 1;
944 DECL_VISIBILITY_SPECIFIED (t) = 1;
945 DECL_VISIBILITY (t) = VISIBILITY_HIDDEN;
946
947 stack_chk_fail_decl = t;
948 }
949
950 return build_call_expr (t, 0);
951 #endif
952 }
953
954 bool
955 hook_bool_const_rtx_commutative_p (const_rtx x,
956 int outer_code ATTRIBUTE_UNUSED)
957 {
958 return COMMUTATIVE_P (x);
959 }
960
961 rtx
962 default_function_value (const_tree ret_type ATTRIBUTE_UNUSED,
963 const_tree fn_decl_or_type,
964 bool outgoing ATTRIBUTE_UNUSED)
965 {
966 /* The old interface doesn't handle receiving the function type. */
967 if (fn_decl_or_type
968 && !DECL_P (fn_decl_or_type))
969 fn_decl_or_type = NULL;
970
971 #ifdef FUNCTION_VALUE
972 return FUNCTION_VALUE (ret_type, fn_decl_or_type);
973 #else
974 gcc_unreachable ();
975 #endif
976 }
977
978 rtx
979 default_libcall_value (machine_mode mode ATTRIBUTE_UNUSED,
980 const_rtx fun ATTRIBUTE_UNUSED)
981 {
982 #ifdef LIBCALL_VALUE
983 return LIBCALL_VALUE (MACRO_MODE (mode));
984 #else
985 gcc_unreachable ();
986 #endif
987 }
988
989 /* The default hook for TARGET_FUNCTION_VALUE_REGNO_P. */
990
991 bool
992 default_function_value_regno_p (const unsigned int regno ATTRIBUTE_UNUSED)
993 {
994 #ifdef FUNCTION_VALUE_REGNO_P
995 return FUNCTION_VALUE_REGNO_P (regno);
996 #else
997 gcc_unreachable ();
998 #endif
999 }
1000
1001 rtx
1002 default_internal_arg_pointer (void)
1003 {
1004 /* If the reg that the virtual arg pointer will be translated into is
1005 not a fixed reg or is the stack pointer, make a copy of the virtual
1006 arg pointer, and address parms via the copy. The frame pointer is
1007 considered fixed even though it is not marked as such. */
1008 if ((ARG_POINTER_REGNUM == STACK_POINTER_REGNUM
1009 || ! (fixed_regs[ARG_POINTER_REGNUM]
1010 || ARG_POINTER_REGNUM == FRAME_POINTER_REGNUM)))
1011 return copy_to_reg (virtual_incoming_args_rtx);
1012 else
1013 return virtual_incoming_args_rtx;
1014 }
1015
1016 rtx
1017 default_static_chain (const_tree ARG_UNUSED (fndecl_or_type), bool incoming_p)
1018 {
1019 if (incoming_p)
1020 {
1021 #ifdef STATIC_CHAIN_INCOMING_REGNUM
1022 return gen_rtx_REG (Pmode, STATIC_CHAIN_INCOMING_REGNUM);
1023 #endif
1024 }
1025
1026 #ifdef STATIC_CHAIN_REGNUM
1027 return gen_rtx_REG (Pmode, STATIC_CHAIN_REGNUM);
1028 #endif
1029
1030 {
1031 static bool issued_error;
1032 if (!issued_error)
1033 {
1034 issued_error = true;
1035 sorry ("nested functions not supported on this target");
1036 }
1037
1038 /* It really doesn't matter what we return here, so long at it
1039 doesn't cause the rest of the compiler to crash. */
1040 return gen_rtx_MEM (Pmode, stack_pointer_rtx);
1041 }
1042 }
1043
1044 void
1045 default_trampoline_init (rtx ARG_UNUSED (m_tramp), tree ARG_UNUSED (t_func),
1046 rtx ARG_UNUSED (r_chain))
1047 {
1048 sorry ("nested function trampolines not supported on this target");
1049 }
1050
1051 poly_int64
1052 default_return_pops_args (tree, tree, poly_int64)
1053 {
1054 return 0;
1055 }
1056
1057 reg_class_t
1058 default_ira_change_pseudo_allocno_class (int regno ATTRIBUTE_UNUSED,
1059 reg_class_t cl,
1060 reg_class_t best_cl ATTRIBUTE_UNUSED)
1061 {
1062 return cl;
1063 }
1064
1065 extern bool
1066 default_lra_p (void)
1067 {
1068 return true;
1069 }
1070
1071 int
1072 default_register_priority (int hard_regno ATTRIBUTE_UNUSED)
1073 {
1074 return 0;
1075 }
1076
1077 extern bool
1078 default_register_usage_leveling_p (void)
1079 {
1080 return false;
1081 }
1082
1083 extern bool
1084 default_different_addr_displacement_p (void)
1085 {
1086 return false;
1087 }
1088
1089 reg_class_t
1090 default_secondary_reload (bool in_p ATTRIBUTE_UNUSED, rtx x ATTRIBUTE_UNUSED,
1091 reg_class_t reload_class_i ATTRIBUTE_UNUSED,
1092 machine_mode reload_mode ATTRIBUTE_UNUSED,
1093 secondary_reload_info *sri)
1094 {
1095 enum reg_class rclass = NO_REGS;
1096 enum reg_class reload_class = (enum reg_class) reload_class_i;
1097
1098 if (sri->prev_sri && sri->prev_sri->t_icode != CODE_FOR_nothing)
1099 {
1100 sri->icode = sri->prev_sri->t_icode;
1101 return NO_REGS;
1102 }
1103 #ifdef SECONDARY_INPUT_RELOAD_CLASS
1104 if (in_p)
1105 rclass = SECONDARY_INPUT_RELOAD_CLASS (reload_class,
1106 MACRO_MODE (reload_mode), x);
1107 #endif
1108 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
1109 if (! in_p)
1110 rclass = SECONDARY_OUTPUT_RELOAD_CLASS (reload_class,
1111 MACRO_MODE (reload_mode), x);
1112 #endif
1113 if (rclass != NO_REGS)
1114 {
1115 enum insn_code icode
1116 = direct_optab_handler (in_p ? reload_in_optab : reload_out_optab,
1117 reload_mode);
1118
1119 if (icode != CODE_FOR_nothing
1120 && !insn_operand_matches (icode, in_p, x))
1121 icode = CODE_FOR_nothing;
1122 else if (icode != CODE_FOR_nothing)
1123 {
1124 const char *insn_constraint, *scratch_constraint;
1125 enum reg_class insn_class, scratch_class;
1126
1127 gcc_assert (insn_data[(int) icode].n_operands == 3);
1128 insn_constraint = insn_data[(int) icode].operand[!in_p].constraint;
1129 if (!*insn_constraint)
1130 insn_class = ALL_REGS;
1131 else
1132 {
1133 if (in_p)
1134 {
1135 gcc_assert (*insn_constraint == '=');
1136 insn_constraint++;
1137 }
1138 insn_class = (reg_class_for_constraint
1139 (lookup_constraint (insn_constraint)));
1140 gcc_assert (insn_class != NO_REGS);
1141 }
1142
1143 scratch_constraint = insn_data[(int) icode].operand[2].constraint;
1144 /* The scratch register's constraint must start with "=&",
1145 except for an input reload, where only "=" is necessary,
1146 and where it might be beneficial to re-use registers from
1147 the input. */
1148 gcc_assert (scratch_constraint[0] == '='
1149 && (in_p || scratch_constraint[1] == '&'));
1150 scratch_constraint++;
1151 if (*scratch_constraint == '&')
1152 scratch_constraint++;
1153 scratch_class = (reg_class_for_constraint
1154 (lookup_constraint (scratch_constraint)));
1155
1156 if (reg_class_subset_p (reload_class, insn_class))
1157 {
1158 gcc_assert (scratch_class == rclass);
1159 rclass = NO_REGS;
1160 }
1161 else
1162 rclass = insn_class;
1163
1164 }
1165 if (rclass == NO_REGS)
1166 sri->icode = icode;
1167 else
1168 sri->t_icode = icode;
1169 }
1170 return rclass;
1171 }
1172
1173 /* The default implementation of TARGET_SECONDARY_MEMORY_NEEDED_MODE. */
1174
1175 machine_mode
1176 default_secondary_memory_needed_mode (machine_mode mode)
1177 {
1178 if (!targetm.lra_p ()
1179 && known_lt (GET_MODE_BITSIZE (mode), BITS_PER_WORD)
1180 && INTEGRAL_MODE_P (mode))
1181 return mode_for_size (BITS_PER_WORD, GET_MODE_CLASS (mode), 0).require ();
1182 return mode;
1183 }
1184
1185 /* By default, if flag_pic is true, then neither local nor global relocs
1186 should be placed in readonly memory. */
1187
1188 int
1189 default_reloc_rw_mask (void)
1190 {
1191 return flag_pic ? 3 : 0;
1192 }
1193
1194 /* By default, address diff vectors are generated
1195 for jump tables when flag_pic is true. */
1196
1197 bool
1198 default_generate_pic_addr_diff_vec (void)
1199 {
1200 return flag_pic;
1201 }
1202
1203 /* By default, do no modification. */
1204 tree default_mangle_decl_assembler_name (tree decl ATTRIBUTE_UNUSED,
1205 tree id)
1206 {
1207 return id;
1208 }
1209
1210 /* The default implementation of TARGET_STATIC_RTX_ALIGNMENT. */
1211
1212 HOST_WIDE_INT
1213 default_static_rtx_alignment (machine_mode mode)
1214 {
1215 return GET_MODE_ALIGNMENT (mode);
1216 }
1217
1218 /* The default implementation of TARGET_CONSTANT_ALIGNMENT. */
1219
1220 HOST_WIDE_INT
1221 default_constant_alignment (const_tree, HOST_WIDE_INT align)
1222 {
1223 return align;
1224 }
1225
1226 /* An implementation of TARGET_CONSTANT_ALIGNMENT that aligns strings
1227 to at least BITS_PER_WORD but otherwise makes no changes. */
1228
1229 HOST_WIDE_INT
1230 constant_alignment_word_strings (const_tree exp, HOST_WIDE_INT align)
1231 {
1232 if (TREE_CODE (exp) == STRING_CST)
1233 return MAX (align, BITS_PER_WORD);
1234 return align;
1235 }
1236
1237 /* Default to natural alignment for vector types, bounded by
1238 MAX_OFILE_ALIGNMENT. */
1239
1240 HOST_WIDE_INT
1241 default_vector_alignment (const_tree type)
1242 {
1243 unsigned HOST_WIDE_INT align = MAX_OFILE_ALIGNMENT;
1244 tree size = TYPE_SIZE (type);
1245 if (tree_fits_uhwi_p (size))
1246 align = tree_to_uhwi (size);
1247
1248 return align < MAX_OFILE_ALIGNMENT ? align : MAX_OFILE_ALIGNMENT;
1249 }
1250
1251 /* The default implementation of
1252 TARGET_VECTORIZE_PREFERRED_VECTOR_ALIGNMENT. */
1253
1254 poly_uint64
1255 default_preferred_vector_alignment (const_tree type)
1256 {
1257 return TYPE_ALIGN (type);
1258 }
1259
1260 /* By default assume vectors of element TYPE require a multiple of the natural
1261 alignment of TYPE. TYPE is naturally aligned if IS_PACKED is false. */
1262 bool
1263 default_builtin_vector_alignment_reachable (const_tree /*type*/, bool is_packed)
1264 {
1265 return ! is_packed;
1266 }
1267
1268 /* By default, assume that a target supports any factor of misalignment
1269 memory access if it supports movmisalign patten.
1270 is_packed is true if the memory access is defined in a packed struct. */
1271 bool
1272 default_builtin_support_vector_misalignment (machine_mode mode,
1273 const_tree type
1274 ATTRIBUTE_UNUSED,
1275 int misalignment
1276 ATTRIBUTE_UNUSED,
1277 bool is_packed
1278 ATTRIBUTE_UNUSED)
1279 {
1280 if (optab_handler (movmisalign_optab, mode) != CODE_FOR_nothing)
1281 return true;
1282 return false;
1283 }
1284
1285 /* By default, only attempt to parallelize bitwise operations, and
1286 possibly adds/subtracts using bit-twiddling. */
1287
1288 machine_mode
1289 default_preferred_simd_mode (scalar_mode)
1290 {
1291 return word_mode;
1292 }
1293
1294 /* By default do not split reductions further. */
1295
1296 machine_mode
1297 default_split_reduction (machine_mode mode)
1298 {
1299 return mode;
1300 }
1301
1302 /* By default only the size derived from the preferred vector mode
1303 is tried. */
1304
1305 void
1306 default_autovectorize_vector_sizes (vector_sizes *, bool)
1307 {
1308 }
1309
1310 /* By default a vector of integers is used as a mask. */
1311
1312 opt_machine_mode
1313 default_get_mask_mode (poly_uint64 nunits, poly_uint64 vector_size)
1314 {
1315 unsigned int elem_size = vector_element_size (vector_size, nunits);
1316 scalar_int_mode elem_mode
1317 = smallest_int_mode_for_size (elem_size * BITS_PER_UNIT);
1318 machine_mode vector_mode;
1319
1320 gcc_assert (known_eq (elem_size * nunits, vector_size));
1321
1322 if (mode_for_vector (elem_mode, nunits).exists (&vector_mode)
1323 && VECTOR_MODE_P (vector_mode)
1324 && targetm.vector_mode_supported_p (vector_mode))
1325 return vector_mode;
1326
1327 return opt_machine_mode ();
1328 }
1329
1330 /* By default consider masked stores to be expensive. */
1331
1332 bool
1333 default_empty_mask_is_expensive (unsigned ifn)
1334 {
1335 return ifn == IFN_MASK_STORE;
1336 }
1337
1338 /* By default, the cost model accumulates three separate costs (prologue,
1339 loop body, and epilogue) for a vectorized loop or block. So allocate an
1340 array of three unsigned ints, set it to zero, and return its address. */
1341
1342 void *
1343 default_init_cost (class loop *loop_info ATTRIBUTE_UNUSED)
1344 {
1345 unsigned *cost = XNEWVEC (unsigned, 3);
1346 cost[vect_prologue] = cost[vect_body] = cost[vect_epilogue] = 0;
1347 return cost;
1348 }
1349
1350 /* By default, the cost model looks up the cost of the given statement
1351 kind and mode, multiplies it by the occurrence count, accumulates
1352 it into the cost specified by WHERE, and returns the cost added. */
1353
1354 unsigned
1355 default_add_stmt_cost (void *data, int count, enum vect_cost_for_stmt kind,
1356 class _stmt_vec_info *stmt_info, int misalign,
1357 enum vect_cost_model_location where)
1358 {
1359 unsigned *cost = (unsigned *) data;
1360 unsigned retval = 0;
1361
1362 tree vectype = stmt_info ? stmt_vectype (stmt_info) : NULL_TREE;
1363 int stmt_cost = targetm.vectorize.builtin_vectorization_cost (kind, vectype,
1364 misalign);
1365 /* Statements in an inner loop relative to the loop being
1366 vectorized are weighted more heavily. The value here is
1367 arbitrary and could potentially be improved with analysis. */
1368 if (where == vect_body && stmt_info && stmt_in_inner_loop_p (stmt_info))
1369 count *= 50; /* FIXME. */
1370
1371 retval = (unsigned) (count * stmt_cost);
1372 cost[where] += retval;
1373
1374 return retval;
1375 }
1376
1377 /* By default, the cost model just returns the accumulated costs. */
1378
1379 void
1380 default_finish_cost (void *data, unsigned *prologue_cost,
1381 unsigned *body_cost, unsigned *epilogue_cost)
1382 {
1383 unsigned *cost = (unsigned *) data;
1384 *prologue_cost = cost[vect_prologue];
1385 *body_cost = cost[vect_body];
1386 *epilogue_cost = cost[vect_epilogue];
1387 }
1388
1389 /* Free the cost data. */
1390
1391 void
1392 default_destroy_cost_data (void *data)
1393 {
1394 free (data);
1395 }
1396
1397 /* Determine whether or not a pointer mode is valid. Assume defaults
1398 of ptr_mode or Pmode - can be overridden. */
1399 bool
1400 default_valid_pointer_mode (scalar_int_mode mode)
1401 {
1402 return (mode == ptr_mode || mode == Pmode);
1403 }
1404
1405 /* Determine whether the memory reference specified by REF may alias
1406 the C libraries errno location. */
1407 bool
1408 default_ref_may_alias_errno (ao_ref *ref)
1409 {
1410 tree base = ao_ref_base (ref);
1411 /* The default implementation assumes the errno location is
1412 a declaration of type int or is always accessed via a
1413 pointer to int. We assume that accesses to errno are
1414 not deliberately obfuscated (even in conforming ways). */
1415 if (TYPE_UNSIGNED (TREE_TYPE (base))
1416 || TYPE_MODE (TREE_TYPE (base)) != TYPE_MODE (integer_type_node))
1417 return false;
1418 /* The default implementation assumes an errno location
1419 declaration is never defined in the current compilation unit. */
1420 if (DECL_P (base)
1421 && !TREE_STATIC (base))
1422 return true;
1423 else if (TREE_CODE (base) == MEM_REF
1424 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME)
1425 {
1426 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (TREE_OPERAND (base, 0));
1427 return !pi || pi->pt.anything || pi->pt.nonlocal;
1428 }
1429 return false;
1430 }
1431
1432 /* Return the mode for a pointer to a given ADDRSPACE,
1433 defaulting to ptr_mode for all address spaces. */
1434
1435 scalar_int_mode
1436 default_addr_space_pointer_mode (addr_space_t addrspace ATTRIBUTE_UNUSED)
1437 {
1438 return ptr_mode;
1439 }
1440
1441 /* Return the mode for an address in a given ADDRSPACE,
1442 defaulting to Pmode for all address spaces. */
1443
1444 scalar_int_mode
1445 default_addr_space_address_mode (addr_space_t addrspace ATTRIBUTE_UNUSED)
1446 {
1447 return Pmode;
1448 }
1449
1450 /* Named address space version of valid_pointer_mode.
1451 To match the above, the same modes apply to all address spaces. */
1452
1453 bool
1454 default_addr_space_valid_pointer_mode (scalar_int_mode mode,
1455 addr_space_t as ATTRIBUTE_UNUSED)
1456 {
1457 return targetm.valid_pointer_mode (mode);
1458 }
1459
1460 /* Some places still assume that all pointer or address modes are the
1461 standard Pmode and ptr_mode. These optimizations become invalid if
1462 the target actually supports multiple different modes. For now,
1463 we disable such optimizations on such targets, using this function. */
1464
1465 bool
1466 target_default_pointer_address_modes_p (void)
1467 {
1468 if (targetm.addr_space.address_mode != default_addr_space_address_mode)
1469 return false;
1470 if (targetm.addr_space.pointer_mode != default_addr_space_pointer_mode)
1471 return false;
1472
1473 return true;
1474 }
1475
1476 /* Named address space version of legitimate_address_p.
1477 By default, all address spaces have the same form. */
1478
1479 bool
1480 default_addr_space_legitimate_address_p (machine_mode mode, rtx mem,
1481 bool strict,
1482 addr_space_t as ATTRIBUTE_UNUSED)
1483 {
1484 return targetm.legitimate_address_p (mode, mem, strict);
1485 }
1486
1487 /* Named address space version of LEGITIMIZE_ADDRESS.
1488 By default, all address spaces have the same form. */
1489
1490 rtx
1491 default_addr_space_legitimize_address (rtx x, rtx oldx, machine_mode mode,
1492 addr_space_t as ATTRIBUTE_UNUSED)
1493 {
1494 return targetm.legitimize_address (x, oldx, mode);
1495 }
1496
1497 /* The default hook for determining if one named address space is a subset of
1498 another and to return which address space to use as the common address
1499 space. */
1500
1501 bool
1502 default_addr_space_subset_p (addr_space_t subset, addr_space_t superset)
1503 {
1504 return (subset == superset);
1505 }
1506
1507 /* The default hook for determining if 0 within a named address
1508 space is a valid address. */
1509
1510 bool
1511 default_addr_space_zero_address_valid (addr_space_t as ATTRIBUTE_UNUSED)
1512 {
1513 return false;
1514 }
1515
1516 /* The default hook for debugging the address space is to return the
1517 address space number to indicate DW_AT_address_class. */
1518 int
1519 default_addr_space_debug (addr_space_t as)
1520 {
1521 return as;
1522 }
1523
1524 /* The default hook implementation for TARGET_ADDR_SPACE_DIAGNOSE_USAGE.
1525 Don't complain about any address space. */
1526
1527 void
1528 default_addr_space_diagnose_usage (addr_space_t, location_t)
1529 {
1530 }
1531
1532
1533 /* The default hook for TARGET_ADDR_SPACE_CONVERT. This hook should never be
1534 called for targets with only a generic address space. */
1535
1536 rtx
1537 default_addr_space_convert (rtx op ATTRIBUTE_UNUSED,
1538 tree from_type ATTRIBUTE_UNUSED,
1539 tree to_type ATTRIBUTE_UNUSED)
1540 {
1541 gcc_unreachable ();
1542 }
1543
1544 /* The defualt implementation of TARGET_HARD_REGNO_NREGS. */
1545
1546 unsigned int
1547 default_hard_regno_nregs (unsigned int, machine_mode mode)
1548 {
1549 /* Targets with variable-sized modes must provide their own definition
1550 of this hook. */
1551 return CEIL (GET_MODE_SIZE (mode).to_constant (), UNITS_PER_WORD);
1552 }
1553
1554 bool
1555 default_hard_regno_scratch_ok (unsigned int regno ATTRIBUTE_UNUSED)
1556 {
1557 return true;
1558 }
1559
1560 /* The default implementation of TARGET_MODE_DEPENDENT_ADDRESS_P. */
1561
1562 bool
1563 default_mode_dependent_address_p (const_rtx addr ATTRIBUTE_UNUSED,
1564 addr_space_t addrspace ATTRIBUTE_UNUSED)
1565 {
1566 return false;
1567 }
1568
1569 bool
1570 default_target_option_valid_attribute_p (tree ARG_UNUSED (fndecl),
1571 tree ARG_UNUSED (name),
1572 tree ARG_UNUSED (args),
1573 int ARG_UNUSED (flags))
1574 {
1575 warning (OPT_Wattributes,
1576 "target attribute is not supported on this machine");
1577
1578 return false;
1579 }
1580
1581 bool
1582 default_target_option_pragma_parse (tree ARG_UNUSED (args),
1583 tree ARG_UNUSED (pop_target))
1584 {
1585 /* If args is NULL the caller is handle_pragma_pop_options (). In that case,
1586 emit no warning because "#pragma GCC pop_target" is valid on targets that
1587 do not have the "target" pragma. */
1588 if (args)
1589 warning (OPT_Wpragmas,
1590 "%<#pragma GCC target%> is not supported for this machine");
1591
1592 return false;
1593 }
1594
1595 bool
1596 default_target_can_inline_p (tree caller, tree callee)
1597 {
1598 tree callee_opts = DECL_FUNCTION_SPECIFIC_TARGET (callee);
1599 tree caller_opts = DECL_FUNCTION_SPECIFIC_TARGET (caller);
1600 if (! callee_opts)
1601 callee_opts = target_option_default_node;
1602 if (! caller_opts)
1603 caller_opts = target_option_default_node;
1604
1605 /* If both caller and callee have attributes, assume that if the
1606 pointer is different, the two functions have different target
1607 options since build_target_option_node uses a hash table for the
1608 options. */
1609 return callee_opts == caller_opts;
1610 }
1611
1612 /* If the machine does not have a case insn that compares the bounds,
1613 this means extra overhead for dispatch tables, which raises the
1614 threshold for using them. */
1615
1616 unsigned int
1617 default_case_values_threshold (void)
1618 {
1619 return (targetm.have_casesi () ? 4 : 5);
1620 }
1621
1622 bool
1623 default_have_conditional_execution (void)
1624 {
1625 return HAVE_conditional_execution;
1626 }
1627
1628 /* By default we assume that c99 functions are present at the runtime,
1629 but sincos is not. */
1630 bool
1631 default_libc_has_function (enum function_class fn_class)
1632 {
1633 if (fn_class == function_c94
1634 || fn_class == function_c99_misc
1635 || fn_class == function_c99_math_complex)
1636 return true;
1637
1638 return false;
1639 }
1640
1641 /* By default assume that libc has not a fast implementation. */
1642
1643 bool
1644 default_libc_has_fast_function (int fcode ATTRIBUTE_UNUSED)
1645 {
1646 return false;
1647 }
1648
1649 bool
1650 gnu_libc_has_function (enum function_class fn_class ATTRIBUTE_UNUSED)
1651 {
1652 return true;
1653 }
1654
1655 bool
1656 no_c99_libc_has_function (enum function_class fn_class ATTRIBUTE_UNUSED)
1657 {
1658 return false;
1659 }
1660
1661 tree
1662 default_builtin_tm_load_store (tree ARG_UNUSED (type))
1663 {
1664 return NULL_TREE;
1665 }
1666
1667 /* Compute cost of moving registers to/from memory. */
1668
1669 int
1670 default_memory_move_cost (machine_mode mode ATTRIBUTE_UNUSED,
1671 reg_class_t rclass ATTRIBUTE_UNUSED,
1672 bool in ATTRIBUTE_UNUSED)
1673 {
1674 #ifndef MEMORY_MOVE_COST
1675 return (4 + memory_move_secondary_cost (mode, (enum reg_class) rclass, in));
1676 #else
1677 return MEMORY_MOVE_COST (MACRO_MODE (mode), (enum reg_class) rclass, in);
1678 #endif
1679 }
1680
1681 /* Compute cost of moving data from a register of class FROM to one of
1682 TO, using MODE. */
1683
1684 int
1685 default_register_move_cost (machine_mode mode ATTRIBUTE_UNUSED,
1686 reg_class_t from ATTRIBUTE_UNUSED,
1687 reg_class_t to ATTRIBUTE_UNUSED)
1688 {
1689 #ifndef REGISTER_MOVE_COST
1690 return 2;
1691 #else
1692 return REGISTER_MOVE_COST (MACRO_MODE (mode),
1693 (enum reg_class) from, (enum reg_class) to);
1694 #endif
1695 }
1696
1697 /* The default implementation of TARGET_SLOW_UNALIGNED_ACCESS. */
1698
1699 bool
1700 default_slow_unaligned_access (machine_mode, unsigned int)
1701 {
1702 return STRICT_ALIGNMENT;
1703 }
1704
1705 /* The default implementation of TARGET_ESTIMATED_POLY_VALUE. */
1706
1707 HOST_WIDE_INT
1708 default_estimated_poly_value (poly_int64 x)
1709 {
1710 return x.coeffs[0];
1711 }
1712
1713 /* For hooks which use the MOVE_RATIO macro, this gives the legacy default
1714 behavior. SPEED_P is true if we are compiling for speed. */
1715
1716 unsigned int
1717 get_move_ratio (bool speed_p ATTRIBUTE_UNUSED)
1718 {
1719 unsigned int move_ratio;
1720 #ifdef MOVE_RATIO
1721 move_ratio = (unsigned int) MOVE_RATIO (speed_p);
1722 #else
1723 #if defined (HAVE_cpymemqi) || defined (HAVE_cpymemhi) || defined (HAVE_cpymemsi) || defined (HAVE_cpymemdi) || defined (HAVE_cpymemti)
1724 move_ratio = 2;
1725 #else /* No cpymem patterns, pick a default. */
1726 move_ratio = ((speed_p) ? 15 : 3);
1727 #endif
1728 #endif
1729 return move_ratio;
1730 }
1731
1732 /* Return TRUE if the move_by_pieces/set_by_pieces infrastructure should be
1733 used; return FALSE if the cpymem/setmem optab should be expanded, or
1734 a call to memcpy emitted. */
1735
1736 bool
1737 default_use_by_pieces_infrastructure_p (unsigned HOST_WIDE_INT size,
1738 unsigned int alignment,
1739 enum by_pieces_operation op,
1740 bool speed_p)
1741 {
1742 unsigned int max_size = 0;
1743 unsigned int ratio = 0;
1744
1745 switch (op)
1746 {
1747 case CLEAR_BY_PIECES:
1748 max_size = STORE_MAX_PIECES;
1749 ratio = CLEAR_RATIO (speed_p);
1750 break;
1751 case MOVE_BY_PIECES:
1752 max_size = MOVE_MAX_PIECES;
1753 ratio = get_move_ratio (speed_p);
1754 break;
1755 case SET_BY_PIECES:
1756 max_size = STORE_MAX_PIECES;
1757 ratio = SET_RATIO (speed_p);
1758 break;
1759 case STORE_BY_PIECES:
1760 max_size = STORE_MAX_PIECES;
1761 ratio = get_move_ratio (speed_p);
1762 break;
1763 case COMPARE_BY_PIECES:
1764 max_size = COMPARE_MAX_PIECES;
1765 /* Pick a likely default, just as in get_move_ratio. */
1766 ratio = speed_p ? 15 : 3;
1767 break;
1768 }
1769
1770 return by_pieces_ninsns (size, alignment, max_size + 1, op) < ratio;
1771 }
1772
1773 /* This hook controls code generation for expanding a memcmp operation by
1774 pieces. Return 1 for the normal pattern of compare/jump after each pair
1775 of loads, or a higher number to reduce the number of branches. */
1776
1777 int
1778 default_compare_by_pieces_branch_ratio (machine_mode)
1779 {
1780 return 1;
1781 }
1782
1783 /* Write PATCH_AREA_SIZE NOPs into the asm outfile FILE around a function
1784 entry. If RECORD_P is true and the target supports named sections,
1785 the location of the NOPs will be recorded in a special object section
1786 called "__patchable_function_entries". This routine may be called
1787 twice per function to put NOPs before and after the function
1788 entry. */
1789
1790 void
1791 default_print_patchable_function_entry (FILE *file,
1792 unsigned HOST_WIDE_INT patch_area_size,
1793 bool record_p)
1794 {
1795 const char *nop_templ = 0;
1796 int code_num;
1797 rtx_insn *my_nop = make_insn_raw (gen_nop ());
1798
1799 /* We use the template alone, relying on the (currently sane) assumption
1800 that the NOP template does not have variable operands. */
1801 code_num = recog_memoized (my_nop);
1802 nop_templ = get_insn_template (code_num, my_nop);
1803
1804 if (record_p && targetm_common.have_named_sections)
1805 {
1806 char buf[256];
1807 static int patch_area_number;
1808 section *previous_section = in_section;
1809 const char *asm_op = integer_asm_op (POINTER_SIZE_UNITS, false);
1810
1811 gcc_assert (asm_op != NULL);
1812 patch_area_number++;
1813 ASM_GENERATE_INTERNAL_LABEL (buf, "LPFE", patch_area_number);
1814
1815 switch_to_section (get_section ("__patchable_function_entries",
1816 SECTION_WRITE | SECTION_RELRO, NULL));
1817 fputs (asm_op, file);
1818 assemble_name_raw (file, buf);
1819 fputc ('\n', file);
1820
1821 switch_to_section (previous_section);
1822 ASM_OUTPUT_LABEL (file, buf);
1823 }
1824
1825 unsigned i;
1826 for (i = 0; i < patch_area_size; ++i)
1827 fprintf (file, "\t%s\n", nop_templ);
1828 }
1829
1830 bool
1831 default_profile_before_prologue (void)
1832 {
1833 #ifdef PROFILE_BEFORE_PROLOGUE
1834 return true;
1835 #else
1836 return false;
1837 #endif
1838 }
1839
1840 /* The default implementation of TARGET_PREFERRED_RELOAD_CLASS. */
1841
1842 reg_class_t
1843 default_preferred_reload_class (rtx x ATTRIBUTE_UNUSED,
1844 reg_class_t rclass)
1845 {
1846 #ifdef PREFERRED_RELOAD_CLASS
1847 return (reg_class_t) PREFERRED_RELOAD_CLASS (x, (enum reg_class) rclass);
1848 #else
1849 return rclass;
1850 #endif
1851 }
1852
1853 /* The default implementation of TARGET_OUTPUT_PREFERRED_RELOAD_CLASS. */
1854
1855 reg_class_t
1856 default_preferred_output_reload_class (rtx x ATTRIBUTE_UNUSED,
1857 reg_class_t rclass)
1858 {
1859 return rclass;
1860 }
1861
1862 /* The default implementation of TARGET_PREFERRED_RENAME_CLASS. */
1863 reg_class_t
1864 default_preferred_rename_class (reg_class_t rclass ATTRIBUTE_UNUSED)
1865 {
1866 return NO_REGS;
1867 }
1868
1869 /* The default implementation of TARGET_CLASS_LIKELY_SPILLED_P. */
1870
1871 bool
1872 default_class_likely_spilled_p (reg_class_t rclass)
1873 {
1874 return (reg_class_size[(int) rclass] == 1);
1875 }
1876
1877 /* The default implementation of TARGET_CLASS_MAX_NREGS. */
1878
1879 unsigned char
1880 default_class_max_nregs (reg_class_t rclass ATTRIBUTE_UNUSED,
1881 machine_mode mode ATTRIBUTE_UNUSED)
1882 {
1883 #ifdef CLASS_MAX_NREGS
1884 return (unsigned char) CLASS_MAX_NREGS ((enum reg_class) rclass,
1885 MACRO_MODE (mode));
1886 #else
1887 /* Targets with variable-sized modes must provide their own definition
1888 of this hook. */
1889 unsigned int size = GET_MODE_SIZE (mode).to_constant ();
1890 return (size + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
1891 #endif
1892 }
1893
1894 /* Determine the debugging unwind mechanism for the target. */
1895
1896 enum unwind_info_type
1897 default_debug_unwind_info (void)
1898 {
1899 /* If the target wants to force the use of dwarf2 unwind info, let it. */
1900 /* ??? Change all users to the hook, then poison this. */
1901 #ifdef DWARF2_FRAME_INFO
1902 if (DWARF2_FRAME_INFO)
1903 return UI_DWARF2;
1904 #endif
1905
1906 /* Otherwise, only turn it on if dwarf2 debugging is enabled. */
1907 #ifdef DWARF2_DEBUGGING_INFO
1908 if (write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1909 return UI_DWARF2;
1910 #endif
1911
1912 return UI_NONE;
1913 }
1914
1915 /* Targets that set NUM_POLY_INT_COEFFS to something greater than 1
1916 must define this hook. */
1917
1918 unsigned int
1919 default_dwarf_poly_indeterminate_value (unsigned int, unsigned int *, int *)
1920 {
1921 gcc_unreachable ();
1922 }
1923
1924 /* Determine the correct mode for a Dwarf frame register that represents
1925 register REGNO. */
1926
1927 machine_mode
1928 default_dwarf_frame_reg_mode (int regno)
1929 {
1930 machine_mode save_mode = reg_raw_mode[regno];
1931
1932 if (targetm.hard_regno_call_part_clobbered (eh_edge_abi.id (),
1933 regno, save_mode))
1934 save_mode = choose_hard_reg_mode (regno, 1, &eh_edge_abi);
1935 return save_mode;
1936 }
1937
1938 /* To be used by targets where reg_raw_mode doesn't return the right
1939 mode for registers used in apply_builtin_return and apply_builtin_arg. */
1940
1941 fixed_size_mode
1942 default_get_reg_raw_mode (int regno)
1943 {
1944 /* Targets must override this hook if the underlying register is
1945 variable-sized. */
1946 return as_a <fixed_size_mode> (reg_raw_mode[regno]);
1947 }
1948
1949 /* Return true if a leaf function should stay leaf even with profiling
1950 enabled. */
1951
1952 bool
1953 default_keep_leaf_when_profiled ()
1954 {
1955 return false;
1956 }
1957
1958 /* Return true if the state of option OPTION should be stored in PCH files
1959 and checked by default_pch_valid_p. Store the option's current state
1960 in STATE if so. */
1961
1962 static inline bool
1963 option_affects_pch_p (int option, struct cl_option_state *state)
1964 {
1965 if ((cl_options[option].flags & CL_TARGET) == 0)
1966 return false;
1967 if ((cl_options[option].flags & CL_PCH_IGNORE) != 0)
1968 return false;
1969 if (option_flag_var (option, &global_options) == &target_flags)
1970 if (targetm.check_pch_target_flags)
1971 return false;
1972 return get_option_state (&global_options, option, state);
1973 }
1974
1975 /* Default version of get_pch_validity.
1976 By default, every flag difference is fatal; that will be mostly right for
1977 most targets, but completely right for very few. */
1978
1979 void *
1980 default_get_pch_validity (size_t *sz)
1981 {
1982 struct cl_option_state state;
1983 size_t i;
1984 char *result, *r;
1985
1986 *sz = 2;
1987 if (targetm.check_pch_target_flags)
1988 *sz += sizeof (target_flags);
1989 for (i = 0; i < cl_options_count; i++)
1990 if (option_affects_pch_p (i, &state))
1991 *sz += state.size;
1992
1993 result = r = XNEWVEC (char, *sz);
1994 r[0] = flag_pic;
1995 r[1] = flag_pie;
1996 r += 2;
1997 if (targetm.check_pch_target_flags)
1998 {
1999 memcpy (r, &target_flags, sizeof (target_flags));
2000 r += sizeof (target_flags);
2001 }
2002
2003 for (i = 0; i < cl_options_count; i++)
2004 if (option_affects_pch_p (i, &state))
2005 {
2006 memcpy (r, state.data, state.size);
2007 r += state.size;
2008 }
2009
2010 return result;
2011 }
2012
2013 /* Return a message which says that a PCH file was created with a different
2014 setting of OPTION. */
2015
2016 static const char *
2017 pch_option_mismatch (const char *option)
2018 {
2019 return xasprintf (_("created and used with differing settings of '%s'"),
2020 option);
2021 }
2022
2023 /* Default version of pch_valid_p. */
2024
2025 const char *
2026 default_pch_valid_p (const void *data_p, size_t len)
2027 {
2028 struct cl_option_state state;
2029 const char *data = (const char *)data_p;
2030 size_t i;
2031
2032 /* -fpic and -fpie also usually make a PCH invalid. */
2033 if (data[0] != flag_pic)
2034 return _("created and used with different settings of %<-fpic%>");
2035 if (data[1] != flag_pie)
2036 return _("created and used with different settings of %<-fpie%>");
2037 data += 2;
2038
2039 /* Check target_flags. */
2040 if (targetm.check_pch_target_flags)
2041 {
2042 int tf;
2043 const char *r;
2044
2045 memcpy (&tf, data, sizeof (target_flags));
2046 data += sizeof (target_flags);
2047 len -= sizeof (target_flags);
2048 r = targetm.check_pch_target_flags (tf);
2049 if (r != NULL)
2050 return r;
2051 }
2052
2053 for (i = 0; i < cl_options_count; i++)
2054 if (option_affects_pch_p (i, &state))
2055 {
2056 if (memcmp (data, state.data, state.size) != 0)
2057 return pch_option_mismatch (cl_options[i].opt_text);
2058 data += state.size;
2059 len -= state.size;
2060 }
2061
2062 return NULL;
2063 }
2064
2065 /* Default version of cstore_mode. */
2066
2067 scalar_int_mode
2068 default_cstore_mode (enum insn_code icode)
2069 {
2070 return as_a <scalar_int_mode> (insn_data[(int) icode].operand[0].mode);
2071 }
2072
2073 /* Default version of member_type_forces_blk. */
2074
2075 bool
2076 default_member_type_forces_blk (const_tree, machine_mode)
2077 {
2078 return false;
2079 }
2080
2081 rtx
2082 default_load_bounds_for_arg (rtx addr ATTRIBUTE_UNUSED,
2083 rtx ptr ATTRIBUTE_UNUSED,
2084 rtx bnd ATTRIBUTE_UNUSED)
2085 {
2086 gcc_unreachable ();
2087 }
2088
2089 void
2090 default_store_bounds_for_arg (rtx val ATTRIBUTE_UNUSED,
2091 rtx addr ATTRIBUTE_UNUSED,
2092 rtx bounds ATTRIBUTE_UNUSED,
2093 rtx to ATTRIBUTE_UNUSED)
2094 {
2095 gcc_unreachable ();
2096 }
2097
2098 rtx
2099 default_load_returned_bounds (rtx slot ATTRIBUTE_UNUSED)
2100 {
2101 gcc_unreachable ();
2102 }
2103
2104 void
2105 default_store_returned_bounds (rtx slot ATTRIBUTE_UNUSED,
2106 rtx bounds ATTRIBUTE_UNUSED)
2107 {
2108 gcc_unreachable ();
2109 }
2110
2111 /* Default version of canonicalize_comparison. */
2112
2113 void
2114 default_canonicalize_comparison (int *, rtx *, rtx *, bool)
2115 {
2116 }
2117
2118 /* Default implementation of TARGET_ATOMIC_ASSIGN_EXPAND_FENV. */
2119
2120 void
2121 default_atomic_assign_expand_fenv (tree *, tree *, tree *)
2122 {
2123 }
2124
2125 #ifndef PAD_VARARGS_DOWN
2126 #define PAD_VARARGS_DOWN BYTES_BIG_ENDIAN
2127 #endif
2128
2129 /* Build an indirect-ref expression over the given TREE, which represents a
2130 piece of a va_arg() expansion. */
2131 tree
2132 build_va_arg_indirect_ref (tree addr)
2133 {
2134 addr = build_simple_mem_ref_loc (EXPR_LOCATION (addr), addr);
2135 return addr;
2136 }
2137
2138 /* The "standard" implementation of va_arg: read the value from the
2139 current (padded) address and increment by the (padded) size. */
2140
2141 tree
2142 std_gimplify_va_arg_expr (tree valist, tree type, gimple_seq *pre_p,
2143 gimple_seq *post_p)
2144 {
2145 tree addr, t, type_size, rounded_size, valist_tmp;
2146 unsigned HOST_WIDE_INT align, boundary;
2147 bool indirect;
2148
2149 /* All of the alignment and movement below is for args-grow-up machines.
2150 As of 2004, there are only 3 ARGS_GROW_DOWNWARD targets, and they all
2151 implement their own specialized gimplify_va_arg_expr routines. */
2152 if (ARGS_GROW_DOWNWARD)
2153 gcc_unreachable ();
2154
2155 indirect = pass_va_arg_by_reference (type);
2156 if (indirect)
2157 type = build_pointer_type (type);
2158
2159 if (targetm.calls.split_complex_arg
2160 && TREE_CODE (type) == COMPLEX_TYPE
2161 && targetm.calls.split_complex_arg (type))
2162 {
2163 tree real_part, imag_part;
2164
2165 real_part = std_gimplify_va_arg_expr (valist,
2166 TREE_TYPE (type), pre_p, NULL);
2167 real_part = get_initialized_tmp_var (real_part, pre_p, NULL);
2168
2169 imag_part = std_gimplify_va_arg_expr (unshare_expr (valist),
2170 TREE_TYPE (type), pre_p, NULL);
2171 imag_part = get_initialized_tmp_var (imag_part, pre_p, NULL);
2172
2173 return build2 (COMPLEX_EXPR, type, real_part, imag_part);
2174 }
2175
2176 align = PARM_BOUNDARY / BITS_PER_UNIT;
2177 boundary = targetm.calls.function_arg_boundary (TYPE_MODE (type), type);
2178
2179 /* When we align parameter on stack for caller, if the parameter
2180 alignment is beyond MAX_SUPPORTED_STACK_ALIGNMENT, it will be
2181 aligned at MAX_SUPPORTED_STACK_ALIGNMENT. We will match callee
2182 here with caller. */
2183 if (boundary > MAX_SUPPORTED_STACK_ALIGNMENT)
2184 boundary = MAX_SUPPORTED_STACK_ALIGNMENT;
2185
2186 boundary /= BITS_PER_UNIT;
2187
2188 /* Hoist the valist value into a temporary for the moment. */
2189 valist_tmp = get_initialized_tmp_var (valist, pre_p, NULL);
2190
2191 /* va_list pointer is aligned to PARM_BOUNDARY. If argument actually
2192 requires greater alignment, we must perform dynamic alignment. */
2193 if (boundary > align
2194 && !TYPE_EMPTY_P (type)
2195 && !integer_zerop (TYPE_SIZE (type)))
2196 {
2197 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist_tmp,
2198 fold_build_pointer_plus_hwi (valist_tmp, boundary - 1));
2199 gimplify_and_add (t, pre_p);
2200
2201 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist_tmp,
2202 fold_build2 (BIT_AND_EXPR, TREE_TYPE (valist),
2203 valist_tmp,
2204 build_int_cst (TREE_TYPE (valist), -boundary)));
2205 gimplify_and_add (t, pre_p);
2206 }
2207 else
2208 boundary = align;
2209
2210 /* If the actual alignment is less than the alignment of the type,
2211 adjust the type accordingly so that we don't assume strict alignment
2212 when dereferencing the pointer. */
2213 boundary *= BITS_PER_UNIT;
2214 if (boundary < TYPE_ALIGN (type))
2215 {
2216 type = build_variant_type_copy (type);
2217 SET_TYPE_ALIGN (type, boundary);
2218 }
2219
2220 /* Compute the rounded size of the type. */
2221 type_size = arg_size_in_bytes (type);
2222 rounded_size = round_up (type_size, align);
2223
2224 /* Reduce rounded_size so it's sharable with the postqueue. */
2225 gimplify_expr (&rounded_size, pre_p, post_p, is_gimple_val, fb_rvalue);
2226
2227 /* Get AP. */
2228 addr = valist_tmp;
2229 if (PAD_VARARGS_DOWN && !integer_zerop (rounded_size))
2230 {
2231 /* Small args are padded downward. */
2232 t = fold_build2_loc (input_location, GT_EXPR, sizetype,
2233 rounded_size, size_int (align));
2234 t = fold_build3 (COND_EXPR, sizetype, t, size_zero_node,
2235 size_binop (MINUS_EXPR, rounded_size, type_size));
2236 addr = fold_build_pointer_plus (addr, t);
2237 }
2238
2239 /* Compute new value for AP. */
2240 t = fold_build_pointer_plus (valist_tmp, rounded_size);
2241 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist, t);
2242 gimplify_and_add (t, pre_p);
2243
2244 addr = fold_convert (build_pointer_type (type), addr);
2245
2246 if (indirect)
2247 addr = build_va_arg_indirect_ref (addr);
2248
2249 return build_va_arg_indirect_ref (addr);
2250 }
2251
2252 /* An implementation of TARGET_CAN_USE_DOLOOP_P for targets that do
2253 not support nested low-overhead loops. */
2254
2255 bool
2256 can_use_doloop_if_innermost (const widest_int &, const widest_int &,
2257 unsigned int loop_depth, bool)
2258 {
2259 return loop_depth == 1;
2260 }
2261
2262 /* Default implementation of TARGET_OPTAB_SUPPORTED_P. */
2263
2264 bool
2265 default_optab_supported_p (int, machine_mode, machine_mode, optimization_type)
2266 {
2267 return true;
2268 }
2269
2270 /* Default implementation of TARGET_MAX_NOCE_IFCVT_SEQ_COST. */
2271
2272 unsigned int
2273 default_max_noce_ifcvt_seq_cost (edge e)
2274 {
2275 bool predictable_p = predictable_edge_p (e);
2276
2277 enum compiler_param param
2278 = (predictable_p
2279 ? PARAM_MAX_RTL_IF_CONVERSION_PREDICTABLE_COST
2280 : PARAM_MAX_RTL_IF_CONVERSION_UNPREDICTABLE_COST);
2281
2282 /* If we have a parameter set, use that, otherwise take a guess using
2283 BRANCH_COST. */
2284 if (global_options_set.x_param_values[param])
2285 return PARAM_VALUE (param);
2286 else
2287 return BRANCH_COST (true, predictable_p) * COSTS_N_INSNS (3);
2288 }
2289
2290 /* Default implementation of TARGET_MIN_ARITHMETIC_PRECISION. */
2291
2292 unsigned int
2293 default_min_arithmetic_precision (void)
2294 {
2295 return WORD_REGISTER_OPERATIONS ? BITS_PER_WORD : BITS_PER_UNIT;
2296 }
2297
2298 /* Default implementation of TARGET_C_EXCESS_PRECISION. */
2299
2300 enum flt_eval_method
2301 default_excess_precision (enum excess_precision_type ATTRIBUTE_UNUSED)
2302 {
2303 return FLT_EVAL_METHOD_PROMOTE_TO_FLOAT;
2304 }
2305
2306 /* Default implementation for
2307 TARGET_STACK_CLASH_PROTECTION_ALLOCA_PROBE_RANGE. */
2308 HOST_WIDE_INT
2309 default_stack_clash_protection_alloca_probe_range (void)
2310 {
2311 return 0;
2312 }
2313
2314 /* The default implementation of TARGET_EARLY_REMAT_MODES. */
2315
2316 void
2317 default_select_early_remat_modes (sbitmap)
2318 {
2319 }
2320
2321 /* The default implementation of TARGET_PREFERRED_ELSE_VALUE. */
2322
2323 tree
2324 default_preferred_else_value (unsigned, tree type, unsigned, tree *)
2325 {
2326 return build_zero_cst (type);
2327 }
2328
2329 /* Default implementation of TARGET_HAVE_SPECULATION_SAFE_VALUE. */
2330 bool
2331 default_have_speculation_safe_value (bool active ATTRIBUTE_UNUSED)
2332 {
2333 #ifdef HAVE_speculation_barrier
2334 return active ? HAVE_speculation_barrier : true;
2335 #else
2336 return false;
2337 #endif
2338 }
2339 /* Alternative implementation of TARGET_HAVE_SPECULATION_SAFE_VALUE
2340 that can be used on targets that never have speculative execution. */
2341 bool
2342 speculation_safe_value_not_needed (bool active)
2343 {
2344 return !active;
2345 }
2346
2347 /* Default implementation of the speculation-safe-load builtin. This
2348 implementation simply copies val to result and generates a
2349 speculation_barrier insn, if such a pattern is defined. */
2350 rtx
2351 default_speculation_safe_value (machine_mode mode ATTRIBUTE_UNUSED,
2352 rtx result, rtx val,
2353 rtx failval ATTRIBUTE_UNUSED)
2354 {
2355 emit_move_insn (result, val);
2356
2357 #ifdef HAVE_speculation_barrier
2358 /* Assume the target knows what it is doing: if it defines a
2359 speculation barrier, but it is not enabled, then assume that one
2360 isn't needed. */
2361 if (HAVE_speculation_barrier)
2362 emit_insn (gen_speculation_barrier ());
2363 #endif
2364
2365 return result;
2366 }
2367
2368 #include "gt-targhooks.h"