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