sh.md (negc): Delete expander.
[gcc.git] / gcc / target.def
1 /* Target hook definitions.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
3 2011, 2012
4 Free Software Foundation, Inc.
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 3, or (at your option) any
9 later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>.
19
20 In other words, you are welcome to use, share and improve this program.
21 You are forbidden to forbid anyone else to use, share and improve
22 what you give them. Help stamp out software-hoarding! */
23
24 /* See target-hooks-macros.h for details of macros that should be
25 provided by the including file, and how to use them here. */
26 #include "target-hooks-macros.h"
27
28 #undef HOOK_TYPE
29 #define HOOK_TYPE "Target Hook"
30
31 HOOK_VECTOR (TARGET_INITIALIZER, gcc_target)
32
33 /* Functions that output assembler for the target. */
34 #define HOOK_PREFIX "TARGET_ASM_"
35 HOOK_VECTOR (TARGET_ASM_OUT, asm_out)
36
37 /* Opening and closing parentheses for asm expression grouping. */
38 DEFHOOKPOD
39 (open_paren,
40 "",
41 const char *, "(")
42 DEFHOOKPODX (close_paren, const char *, ")")
43
44 /* Assembler instructions for creating various kinds of integer object. */
45 DEFHOOKPOD
46 (byte_op,
47 "",
48 const char *, "\t.byte\t")
49 DEFHOOKPOD (aligned_op, "*", struct asm_int_op, TARGET_ASM_ALIGNED_INT_OP)
50 DEFHOOKPOD (unaligned_op, "*", struct asm_int_op, TARGET_ASM_UNALIGNED_INT_OP)
51
52 /* The maximum number of bytes to skip when applying
53 LABEL_ALIGN_AFTER_BARRIER. */
54 DEFHOOK
55 (label_align_after_barrier_max_skip,
56 "",
57 int, (rtx label),
58 default_label_align_after_barrier_max_skip)
59
60 /* The maximum number of bytes to skip when applying
61 LOOP_ALIGN. */
62 DEFHOOK
63 (loop_align_max_skip,
64 "",
65 int, (rtx label),
66 default_loop_align_max_skip)
67
68 /* The maximum number of bytes to skip when applying
69 LABEL_ALIGN. */
70 DEFHOOK
71 (label_align_max_skip,
72 "",
73 int, (rtx label),
74 default_label_align_max_skip)
75
76 /* The maximum number of bytes to skip when applying
77 JUMP_ALIGN. */
78 DEFHOOK
79 (jump_align_max_skip,
80 "",
81 int, (rtx label),
82 default_jump_align_max_skip)
83
84 /* Try to output the assembler code for an integer object whose
85 value is given by X. SIZE is the size of the object in bytes and
86 ALIGNED_P indicates whether it is aligned. Return true if
87 successful. Only handles cases for which BYTE_OP, ALIGNED_OP
88 and UNALIGNED_OP are NULL. */
89 DEFHOOK
90 (integer,
91 "",
92 /* Only handles cases for which BYTE_OP, ALIGNED_OP and UNALIGNED_OP are
93 NULL. */
94 bool, (rtx x, unsigned int size, int aligned_p),
95 default_assemble_integer)
96
97 /* Output code that will globalize a label. */
98 DEFHOOK
99 (globalize_label,
100 "",
101 void, (FILE *stream, const char *name),
102 default_globalize_label)
103
104 /* Output code that will globalize a declaration. */
105 DEFHOOK
106 (globalize_decl_name,
107 "",
108 void, (FILE *stream, tree decl), default_globalize_decl_name)
109
110 /* Output code that will emit a label for unwind info, if this
111 target requires such labels. Second argument is the decl the
112 unwind info is associated with, third is a boolean: true if
113 this is for exception handling, fourth is a boolean: true if
114 this is only a placeholder for an omitted FDE. */
115 DEFHOOK
116 (emit_unwind_label,
117 "",
118 void, (FILE *stream, tree decl, int for_eh, int empty),
119 default_emit_unwind_label)
120
121 /* Output code that will emit a label to divide up the exception table. */
122 DEFHOOK
123 (emit_except_table_label,
124 "",
125 void, (FILE *stream),
126 default_emit_except_table_label)
127
128 /* Emit a directive for setting the personality for the function. */
129 DEFHOOK
130 (emit_except_personality,
131 "If the target implements @code{TARGET_ASM_UNWIND_EMIT}, this hook may be\
132 used to emit a directive to install a personality hook into the unwind\
133 info. This hook should not be used if dwarf2 unwind info is used.",
134 void, (rtx personality),
135 NULL)
136
137 /* Emit any directives required to unwind this instruction. */
138 DEFHOOK
139 (unwind_emit,
140 "",
141 void, (FILE *stream, rtx insn),
142 NULL)
143
144 DEFHOOKPOD
145 (unwind_emit_before_insn,
146 "True if the @code{TARGET_ASM_UNWIND_EMIT} hook should be called before\
147 the assembly for @var{insn} has been emitted, false if the hook should\
148 be called afterward.",
149 bool, true)
150
151 /* Generate an internal label.
152 For now this is just a wrapper for ASM_GENERATE_INTERNAL_LABEL. */
153 DEFHOOK_UNDOC
154 (generate_internal_label,
155 "",
156 void, (char *buf, const char *prefix, unsigned long labelno),
157 default_generate_internal_label)
158
159 /* Output an internal label. */
160 DEFHOOK
161 (internal_label,
162 "",
163 void, (FILE *stream, const char *prefix, unsigned long labelno),
164 default_internal_label)
165
166 /* Output label for the constant. */
167 DEFHOOK
168 (declare_constant_name,
169 "",
170 void, (FILE *file, const char *name, const_tree expr, HOST_WIDE_INT size),
171 default_asm_declare_constant_name)
172
173 /* Emit a ttype table reference to a typeinfo object. */
174 DEFHOOK
175 (ttype,
176 "",
177 bool, (rtx sym),
178 hook_bool_rtx_false)
179
180 /* Emit an assembler directive to set visibility for the symbol
181 associated with the tree decl. */
182 DEFHOOK
183 (assemble_visibility,
184 "",
185 void, (tree decl, int visibility),
186 default_assemble_visibility)
187
188 /* Output the assembler code for entry to a function. */
189 DEFHOOK
190 (function_prologue,
191 "",
192 void, (FILE *file, HOST_WIDE_INT size),
193 default_function_pro_epilogue)
194
195 /* Output the assembler code for end of prologue. */
196 DEFHOOK
197 (function_end_prologue,
198 "",
199 void, (FILE *file),
200 no_asm_to_stream)
201
202 /* Output the assembler code for start of epilogue. */
203 DEFHOOK
204 (function_begin_epilogue,
205 "",
206 void, (FILE *file),
207 no_asm_to_stream)
208
209 /* Output the assembler code for function exit. */
210 DEFHOOK
211 (function_epilogue,
212 "",
213 void, (FILE *file, HOST_WIDE_INT size),
214 default_function_pro_epilogue)
215
216 /* Initialize target-specific sections. */
217 DEFHOOK
218 (init_sections,
219 "",
220 void, (void),
221 hook_void_void)
222
223 /* Tell assembler to change to section NAME with attributes FLAGS.
224 If DECL is non-NULL, it is the VAR_DECL or FUNCTION_DECL with
225 which this section is associated. */
226 DEFHOOK
227 (named_section,
228 "",
229 void, (const char *name, unsigned int flags, tree decl),
230 default_no_named_section)
231
232 /* Return preferred text (sub)section for function DECL.
233 Main purpose of this function is to separate cold, normal and hot
234 functions. STARTUP is true when function is known to be used only
235 at startup (from static constructors or it is main()).
236 EXIT is true when function is known to be used only at exit
237 (from static destructors).
238 Return NULL if function should go to default text section. */
239 DEFHOOK
240 (function_section,
241 "",
242 section *, (tree decl, enum node_frequency freq, bool startup, bool exit),
243 default_function_section)
244
245 /* Output the assembler code for function exit. */
246 DEFHOOK
247 (function_switched_text_sections,
248 "Used by the target to emit any assembler directives or additional\
249 labels needed when a function is partitioned between different\
250 sections. Output should be written to @var{file}. The function\
251 decl is available as @var{decl} and the new section is `cold' if\
252 @var{new_is_cold} is @code{true}.",
253 void, (FILE *file, tree decl, bool new_is_cold),
254 default_function_switched_text_sections)
255
256 /* Return a mask describing how relocations should be treated when
257 selecting sections. Bit 1 should be set if global relocations
258 should be placed in a read-write section; bit 0 should be set if
259 local relocations should be placed in a read-write section. */
260 DEFHOOK
261 (reloc_rw_mask,
262 "",
263 int, (void),
264 default_reloc_rw_mask)
265
266 /* Return a section for EXP. It may be a DECL or a constant. RELOC
267 is nonzero if runtime relocations must be applied; bit 1 will be
268 set if the runtime relocations require non-local name resolution.
269 ALIGN is the required alignment of the data. */
270 DEFHOOK
271 (select_section,
272 "",
273 section *, (tree exp, int reloc, unsigned HOST_WIDE_INT align),
274 default_select_section)
275
276 /* Return a section for X. MODE is X's mode and ALIGN is its
277 alignment in bits. */
278 DEFHOOK
279 (select_rtx_section,
280 "",
281 section *, (enum machine_mode mode, rtx x, unsigned HOST_WIDE_INT align),
282 default_select_rtx_section)
283
284 /* Select a unique section name for DECL. RELOC is the same as
285 for SELECT_SECTION. */
286 DEFHOOK
287 (unique_section,
288 "",
289 void, (tree decl, int reloc),
290 default_unique_section)
291
292 /* Return the readonly data section associated with function DECL. */
293 DEFHOOK
294 (function_rodata_section,
295 "",
296 section *, (tree decl),
297 default_function_rodata_section)
298
299 /* Nonnull if the target wants to override the default ".rodata" prefix
300 for mergeable data sections. */
301 DEFHOOKPOD
302 (mergeable_rodata_prefix,
303 "Usually, the compiler uses the prefix @code{\".rodata\"} to construct\n\
304 section names for mergeable constant data. Define this macro to override\n\
305 the string if a different section name should be used.",
306 const char *, ".rodata")
307
308 /* Return the section to be used for transactional memory clone tables. */
309 DEFHOOK
310 (tm_clone_table_section,
311 "Return the section that should be used for transactional memory clone\
312 tables.",
313 section *, (void), default_clone_table_section)
314
315 /* Output a constructor for a symbol with a given priority. */
316 DEFHOOK
317 (constructor,
318 "",
319 void, (rtx symbol, int priority), NULL)
320
321 /* Output a destructor for a symbol with a given priority. */
322 DEFHOOK
323 (destructor,
324 "",
325 void, (rtx symbol, int priority), NULL)
326
327 /* Output the assembler code for a thunk function. THUNK_DECL is the
328 declaration for the thunk function itself, FUNCTION is the decl for
329 the target function. DELTA is an immediate constant offset to be
330 added to THIS. If VCALL_OFFSET is nonzero, the word at
331 *(*this + vcall_offset) should be added to THIS. */
332 DEFHOOK
333 (output_mi_thunk,
334 "",
335 void, (FILE *file, tree thunk_fndecl, HOST_WIDE_INT delta,
336 HOST_WIDE_INT vcall_offset, tree function),
337 NULL)
338
339 /* Determine whether output_mi_thunk would succeed. */
340 /* ??? Ideally, this hook would not exist, and success or failure
341 would be returned from output_mi_thunk directly. But there's
342 too much undo-able setup involved in invoking output_mi_thunk.
343 Could be fixed by making output_mi_thunk emit rtl instead of
344 text to the output file. */
345 DEFHOOK
346 (can_output_mi_thunk,
347 "",
348 bool, (const_tree thunk_fndecl, HOST_WIDE_INT delta,
349 HOST_WIDE_INT vcall_offset, const_tree function),
350 hook_bool_const_tree_hwi_hwi_const_tree_false)
351
352 /* Output any boilerplate text needed at the beginning of a
353 translation unit. */
354 DEFHOOK
355 (file_start,
356 "",
357 void, (void),
358 default_file_start)
359
360 /* Output any boilerplate text needed at the end of a translation unit. */
361 DEFHOOK
362 (file_end,
363 "",
364 void, (void),
365 hook_void_void)
366
367 /* Output any boilerplate text needed at the beginning of an
368 LTO output stream. */
369 DEFHOOK
370 (lto_start,
371 "",
372 void, (void),
373 hook_void_void)
374
375 /* Output any boilerplate text needed at the end of an
376 LTO output stream. */
377 DEFHOOK
378 (lto_end,
379 "",
380 void, (void),
381 hook_void_void)
382
383 /* Output any boilerplace text needed at the end of a
384 translation unit before debug and unwind info is emitted. */
385 DEFHOOK
386 (code_end,
387 "",
388 void, (void),
389 hook_void_void)
390
391 /* Output an assembler pseudo-op to declare a library function name
392 external. */
393 DEFHOOK
394 (external_libcall,
395 "",
396 void, (rtx symref),
397 default_external_libcall)
398
399 /* Output an assembler directive to mark decl live. This instructs
400 linker to not dead code strip this symbol. */
401 DEFHOOK
402 (mark_decl_preserved,
403 "",
404 void, (const char *symbol),
405 hook_void_constcharptr)
406
407 /* Output a record of the command line switches that have been passed. */
408 DEFHOOK
409 (record_gcc_switches,
410 "",
411 int, (print_switch_type type, const char *text),
412 NULL)
413
414 /* The name of the section that the example ELF implementation of
415 record_gcc_switches will use to store the information. Target
416 specific versions of record_gcc_switches may or may not use
417 this information. */
418 DEFHOOKPOD
419 (record_gcc_switches_section,
420 "",
421 const char *, ".GCC.command.line")
422
423 /* Output the definition of a section anchor. */
424 DEFHOOK
425 (output_anchor,
426 "",
427 void, (rtx x),
428 default_asm_output_anchor)
429
430 DEFHOOK
431 (output_ident,
432 "Output a string based on @var{name}, suitable for the @samp{#ident} \
433 directive, or the equivalent directive or pragma in non-C-family languages. \
434 If this hook is not defined, nothing is output for the @samp{#ident} \
435 directive.",
436 void, (const char *name),
437 hook_void_constcharptr)
438
439 /* Output a DTP-relative reference to a TLS symbol. */
440 DEFHOOK
441 (output_dwarf_dtprel,
442 "",
443 void, (FILE *file, int size, rtx x),
444 NULL)
445
446 /* Some target machines need to postscan each insn after it is output. */
447 DEFHOOK
448 (final_postscan_insn,
449 "",
450 void, (FILE *file, rtx insn, rtx *opvec, int noperands),
451 NULL)
452
453 /* Emit the trampoline template. This hook may be NULL. */
454 DEFHOOK
455 (trampoline_template,
456 "",
457 void, (FILE *f),
458 NULL)
459
460 DEFHOOK
461 (output_source_filename,
462 "Output COFF information or DWARF debugging information which indicates\
463 that filename @var{name} is the current source file to the stdio\
464 stream @var{file}.\n\
465 \n\
466 This target hook need not be defined if the standard form of output\
467 for the file format in use is appropriate.",
468 void ,(FILE *file, const char *name),
469 default_asm_output_source_filename)
470
471 DEFHOOK
472 (output_addr_const_extra,
473 "",
474 bool, (FILE *file, rtx x),
475 hook_bool_FILEptr_rtx_false)
476
477 /* ??? The TARGET_PRINT_OPERAND* hooks are part of the asm_out struct,
478 even though that is not reflected in the macro name to override their
479 initializers. */
480 #undef HOOK_PREFIX
481 #define HOOK_PREFIX "TARGET_"
482
483 /* Emit a machine-specific insn operand. */
484 /* ??? tm.texi only documents the old macro PRINT_OPERAND,
485 not this hook, and uses a different name for the argument FILE. */
486 DEFHOOK_UNDOC
487 (print_operand,
488 "",
489 void, (FILE *file, rtx x, int code),
490 default_print_operand)
491
492 /* Emit a machine-specific memory address. */
493 /* ??? tm.texi only documents the old macro PRINT_OPERAND_ADDRESS,
494 not this hook, and uses different argument names. */
495 DEFHOOK_UNDOC
496 (print_operand_address,
497 "",
498 void, (FILE *file, rtx addr),
499 default_print_operand_address)
500
501 /* Determine whether CODE is a valid punctuation character for the
502 `print_operand' hook. */
503 /* ??? tm.texi only documents the old macro PRINT_OPERAND_PUNCT_VALID_P,
504 not this hook. */
505 DEFHOOK_UNDOC
506 (print_operand_punct_valid_p,
507 "",
508 bool ,(unsigned char code),
509 default_print_operand_punct_valid_p)
510
511 /* Given a symbol name, perform same mangling as assemble_name and
512 ASM_OUTPUT_LABELREF, returning result as an IDENTIFIER_NODE. */
513 DEFHOOK
514 (mangle_assembler_name,
515 "Given a symbol @var{name}, perform same mangling as @code{varasm.c}'s\
516 @code{assemble_name}, but in memory rather than to a file stream, returning\
517 result as an @code{IDENTIFIER_NODE}. Required for correct LTO symtabs. The\
518 default implementation calls the @code{TARGET_STRIP_NAME_ENCODING} hook and\
519 then prepends the @code{USER_LABEL_PREFIX}, if any.",
520 tree, (const char *name),
521 default_mangle_assembler_name)
522
523 HOOK_VECTOR_END (asm_out)
524
525 /* Functions relating to instruction scheduling. All of these
526 default to null pointers, which haifa-sched.c looks for and handles. */
527 #undef HOOK_PREFIX
528 #define HOOK_PREFIX "TARGET_SCHED_"
529 HOOK_VECTOR (TARGET_SCHED, sched)
530
531 /* Given the current cost, COST, of an insn, INSN, calculate and
532 return a new cost based on its relationship to DEP_INSN through
533 the dependence LINK. The default is to make no adjustment. */
534 DEFHOOK
535 (adjust_cost,
536 "",
537 int, (rtx insn, rtx link, rtx dep_insn, int cost), NULL)
538
539 /* Adjust the priority of an insn as you see fit. Returns the new priority. */
540 DEFHOOK
541 (adjust_priority,
542 "",
543 int, (rtx insn, int priority), NULL)
544
545 /* Function which returns the maximum number of insns that can be
546 scheduled in the same machine cycle. This must be constant
547 over an entire compilation. The default is 1. */
548 DEFHOOK
549 (issue_rate,
550 "",
551 int, (void), NULL)
552
553 /* Calculate how much this insn affects how many more insns we
554 can emit this cycle. Default is they all cost the same. */
555 DEFHOOK
556 (variable_issue,
557 "",
558 int, (FILE *file, int verbose, rtx insn, int more), NULL)
559
560 /* Initialize machine-dependent scheduling code. */
561 DEFHOOK
562 (init,
563 "",
564 void, (FILE *file, int verbose, int max_ready), NULL)
565
566 /* Finalize machine-dependent scheduling code. */
567 DEFHOOK
568 (finish,
569 "",
570 void, (FILE *file, int verbose), NULL)
571
572 /* Initialize machine-dependent function wide scheduling code. */
573 DEFHOOK
574 (init_global,
575 "",
576 void, (FILE *file, int verbose, int old_max_uid), NULL)
577
578 /* Finalize machine-dependent function wide scheduling code. */
579 DEFHOOK
580 (finish_global,
581 "",
582 void, (FILE *file, int verbose), NULL)
583
584 /* Reorder insns in a machine-dependent fashion, in two different
585 places. Default does nothing. */
586 DEFHOOK
587 (reorder,
588 "",
589 int, (FILE *file, int verbose, rtx *ready, int *n_readyp, int clock), NULL)
590
591 DEFHOOK
592 (reorder2,
593 "",
594 int, (FILE *file, int verbose, rtx *ready, int *n_readyp, int clock), NULL)
595
596 /* The following member value is a pointer to a function called
597 after evaluation forward dependencies of insns in chain given
598 by two parameter values (head and tail correspondingly). */
599 DEFHOOK
600 (dependencies_evaluation_hook,
601 "",
602 void, (rtx head, rtx tail), NULL)
603
604 /* The values of the following four members are pointers to functions
605 used to simplify the automaton descriptions. dfa_pre_cycle_insn and
606 dfa_post_cycle_insn give functions returning insns which are used to
607 change the pipeline hazard recognizer state when the new simulated
608 processor cycle correspondingly starts and finishes. The function
609 defined by init_dfa_pre_cycle_insn and init_dfa_post_cycle_insn are
610 used to initialize the corresponding insns. The default values of
611 the members result in not changing the automaton state when the
612 new simulated processor cycle correspondingly starts and finishes. */
613
614 DEFHOOK
615 (init_dfa_pre_cycle_insn,
616 "",
617 void, (void), NULL)
618
619 DEFHOOK
620 (dfa_pre_cycle_insn,
621 "",
622 rtx, (void), NULL)
623
624 DEFHOOK
625 (init_dfa_post_cycle_insn,
626 "",
627 void, (void), NULL)
628
629 DEFHOOK
630 (dfa_post_cycle_insn,
631 "",
632 rtx, (void), NULL)
633
634 /* The values of the following two members are pointers to
635 functions used to simplify the automaton descriptions.
636 dfa_pre_advance_cycle and dfa_post_advance_cycle are getting called
637 immediately before and after cycle is advanced. */
638
639 DEFHOOK
640 (dfa_pre_advance_cycle,
641 "",
642 void, (void), NULL)
643
644 DEFHOOK
645 (dfa_post_advance_cycle,
646 "",
647 void, (void), NULL)
648
649 /* The following member value is a pointer to a function returning value
650 which defines how many insns in queue `ready' will we try for
651 multi-pass scheduling. If the member value is nonzero and the
652 function returns positive value, the DFA based scheduler will make
653 multi-pass scheduling for the first cycle. In other words, we will
654 try to choose ready insn which permits to start maximum number of
655 insns on the same cycle. */
656 DEFHOOK
657 (first_cycle_multipass_dfa_lookahead,
658 "",
659 int, (void), NULL)
660
661 /* The following member value is pointer to a function controlling
662 what insns from the ready insn queue will be considered for the
663 multipass insn scheduling. If the hook returns zero for insn
664 passed as the parameter, the insn will be not chosen to be issued. */
665 DEFHOOK
666 (first_cycle_multipass_dfa_lookahead_guard,
667 "",
668 int, (rtx insn), NULL)
669
670 /* This hook prepares the target for a new round of multipass
671 scheduling.
672 DATA is a pointer to target-specific data used for multipass scheduling.
673 READY_TRY and N_READY represent the current state of search in the
674 optimization space. The target can filter out instructions that
675 should not be tried during current round by setting corresponding
676 elements in READY_TRY to non-zero.
677 FIRST_CYCLE_INSN_P is true if this is the first round of multipass
678 scheduling on current cycle. */
679 DEFHOOK
680 (first_cycle_multipass_begin,
681 "",
682 void, (void *data, char *ready_try, int n_ready, bool first_cycle_insn_p),
683 NULL)
684
685 /* This hook is called when multipass scheduling evaluates instruction INSN.
686 DATA is a pointer to target-specific data that can be used to record effects
687 of INSN on CPU that are not described in DFA.
688 READY_TRY and N_READY represent the current state of search in the
689 optimization space. The target can filter out instructions that
690 should not be tried after issuing INSN by setting corresponding
691 elements in READY_TRY to non-zero.
692 INSN is the instruction being evaluated.
693 PREV_DATA is a pointer to target-specific data corresponding
694 to a state before issuing INSN. */
695 DEFHOOK
696 (first_cycle_multipass_issue,
697 "",
698 void, (void *data, char *ready_try, int n_ready, rtx insn,
699 const void *prev_data), NULL)
700
701 /* This hook is called when multipass scheduling backtracks from evaluation of
702 instruction corresponding to DATA.
703 DATA is a pointer to target-specific data that stores the effects
704 of instruction from which the algorithm backtracks on CPU that are not
705 described in DFA.
706 READY_TRY and N_READY represent the current state of search in the
707 optimization space. The target can filter out instructions that
708 should not be tried after issuing INSN by setting corresponding
709 elements in READY_TRY to non-zero. */
710 DEFHOOK
711 (first_cycle_multipass_backtrack,
712 "",
713 void, (const void *data, char *ready_try, int n_ready), NULL)
714
715 /* This hook notifies the target about the result of the concluded current
716 round of multipass scheduling.
717 DATA is a pointer.
718 If DATA is non-NULL it points to target-specific data used for multipass
719 scheduling which corresponds to instruction at the start of the chain of
720 the winning solution. DATA is NULL when multipass scheduling cannot find
721 a good enough solution on current cycle and decides to retry later,
722 usually after advancing the cycle count. */
723 DEFHOOK
724 (first_cycle_multipass_end,
725 "",
726 void, (const void *data), NULL)
727
728 /* This hook is called to initialize target-specific data for multipass
729 scheduling after it has been allocated.
730 DATA is a pointer to target-specific data that stores the effects
731 of instruction from which the algorithm backtracks on CPU that are not
732 described in DFA. */
733 DEFHOOK
734 (first_cycle_multipass_init,
735 "",
736 void, (void *data), NULL)
737
738 /* This hook is called to finalize target-specific data for multipass
739 scheduling before it is deallocated.
740 DATA is a pointer to target-specific data that stores the effects
741 of instruction from which the algorithm backtracks on CPU that are not
742 described in DFA. */
743 DEFHOOK
744 (first_cycle_multipass_fini,
745 "",
746 void, (void *data), NULL)
747
748 /* The following member value is pointer to a function called by
749 the insn scheduler before issuing insn passed as the third
750 parameter on given cycle. If the hook returns nonzero, the
751 insn is not issued on given processors cycle. Instead of that,
752 the processor cycle is advanced. If the value passed through
753 the last parameter is zero, the insn ready queue is not sorted
754 on the new cycle start as usually. The first parameter passes
755 file for debugging output. The second one passes the scheduler
756 verbose level of the debugging output. The forth and the fifth
757 parameter values are correspondingly processor cycle on which
758 the previous insn has been issued and the current processor cycle. */
759 DEFHOOK
760 (dfa_new_cycle,
761 "",
762 int, (FILE *dump, int verbose, rtx insn, int last_clock,
763 int clock, int *sort_p),
764 NULL)
765
766 /* The following member value is a pointer to a function called by the
767 insn scheduler. It should return true if there exists a dependence
768 which is considered costly by the target, between the insn
769 DEP_PRO (&_DEP), and the insn DEP_CON (&_DEP). The first parameter is
770 the dep that represents the dependence between the two insns. The
771 second argument is the cost of the dependence as estimated by
772 the scheduler. The last argument is the distance in cycles
773 between the already scheduled insn (first parameter) and the
774 second insn (second parameter). */
775 DEFHOOK
776 (is_costly_dependence,
777 "",
778 bool, (struct _dep *_dep, int cost, int distance), NULL)
779
780 DEFHOOK_UNDOC
781 (adjust_cost_2,
782 "Given the current cost, @var{cost}, of an insn, @var{insn}, calculate and\
783 return a new cost based on its relationship to @var{dep_insn} through the\
784 dependence of weakness @var{dw}. The default is to make no adjustment.",
785 int, (rtx insn, int dep_type1, rtx dep_insn, int cost, int dw), NULL)
786
787 /* The following member value is a pointer to a function called
788 by the insn scheduler. This hook is called to notify the backend
789 that new instructions were emitted. */
790 DEFHOOK
791 (h_i_d_extended,
792 "",
793 void, (void), NULL)
794
795 /* Next 5 functions are for multi-point scheduling. */
796
797 /* Allocate memory for scheduler context. */
798 DEFHOOK
799 (alloc_sched_context,
800 "",
801 void *, (void), NULL)
802
803 /* Fills the context from the local machine scheduler context. */
804 DEFHOOK
805 (init_sched_context,
806 "",
807 void, (void *tc, bool clean_p), NULL)
808
809 /* Sets local machine scheduler context to a saved value. */
810 DEFHOOK
811 (set_sched_context,
812 "",
813 void, (void *tc), NULL)
814
815 /* Clears a scheduler context so it becomes like after init. */
816 DEFHOOK
817 (clear_sched_context,
818 "",
819 void, (void *tc), NULL)
820
821 /* Frees the scheduler context. */
822 DEFHOOK
823 (free_sched_context,
824 "",
825 void, (void *tc), NULL)
826
827 /* The following member value is a pointer to a function called
828 by the insn scheduler.
829 The first parameter is an instruction, the second parameter is the type
830 of the requested speculation, and the third parameter is a pointer to the
831 speculative pattern of the corresponding type (set if return value == 1).
832 It should return
833 -1, if there is no pattern, that will satisfy the requested speculation type,
834 0, if current pattern satisfies the requested speculation type,
835 1, if pattern of the instruction should be changed to the newly
836 generated one. */
837 DEFHOOK
838 (speculate_insn,
839 "",
840 int, (rtx insn, int request, rtx *new_pat), NULL)
841
842 /* The following member value is a pointer to a function called
843 by the insn scheduler. It should return true if the check instruction
844 passed as the parameter needs a recovery block. */
845 DEFHOOK
846 (needs_block_p,
847 "",
848 bool, (int dep_status), NULL)
849
850 /* The following member value is a pointer to a function called
851 by the insn scheduler. It should return a pattern for the check
852 instruction.
853 The first parameter is a speculative instruction, the second parameter
854 is the label of the corresponding recovery block (or null, if it is a
855 simple check). If the mutation of the check is requested (e.g. from
856 ld.c to chk.a), the third parameter is true - in this case the first
857 parameter is the previous check. */
858 DEFHOOK
859 (gen_spec_check,
860 "",
861 rtx, (rtx insn, rtx label, int mutate_p), NULL)
862
863 /* The following member value is a pointer to a function controlling
864 what insns from the ready insn queue will be considered for the
865 multipass insn scheduling. If the hook returns zero for the insn
866 passed as the parameter, the insn will not be chosen to be
867 issued. This hook is used to discard speculative instructions,
868 that stand at the first position of the ready list. */
869 DEFHOOK
870 (first_cycle_multipass_dfa_lookahead_guard_spec,
871 "",
872 bool, (const_rtx insn), NULL)
873
874 /* The following member value is a pointer to a function that provides
875 information about the speculation capabilities of the target.
876 The parameter is a pointer to spec_info variable. */
877 DEFHOOK
878 (set_sched_flags,
879 "",
880 void, (struct spec_info_def *spec_info), NULL)
881
882 DEFHOOK_UNDOC
883 (get_insn_spec_ds,
884 "Return speculation types of instruction @var{insn}.",
885 int, (rtx insn), NULL)
886
887 DEFHOOK_UNDOC
888 (get_insn_checked_ds,
889 "Return speculation types that are checked for instruction @var{insn}",
890 int, (rtx insn), NULL)
891
892 DEFHOOK_UNDOC
893 (skip_rtx_p,
894 "Return bool if rtx scanning should just skip current layer and\
895 advance to the inner rtxes.",
896 bool, (const_rtx x), NULL)
897
898 /* The following member value is a pointer to a function that provides
899 information about the target resource-based lower bound which is
900 used by the swing modulo scheduler. The parameter is a pointer
901 to ddg variable. */
902 DEFHOOK
903 (sms_res_mii,
904 "",
905 int, (struct ddg *g), NULL)
906
907 /* The following member value is a function that initializes dispatch
908 schedling and adds instructions to dispatch window according to its
909 parameters. */
910 DEFHOOK
911 (dispatch_do,
912 "",
913 void, (rtx insn, int x),
914 hook_void_rtx_int)
915
916 /* The following member value is a a function that returns true is
917 dispatch schedling is supported in hardware and condition passed
918 as the second parameter is true. */
919 DEFHOOK
920 (dispatch,
921 "",
922 bool, (rtx insn, int x),
923 hook_bool_rtx_int_false)
924
925 DEFHOOKPOD
926 (exposed_pipeline,
927 "True if the processor has an exposed pipeline, which means that not just\n\
928 the order of instructions is important for correctness when scheduling, but\n\
929 also the latencies of operations.",
930 bool, false)
931
932 /* The following member value is a function that returns number
933 of operations reassociator should try to put in parallel for
934 statements of the given type. By default 1 is used. */
935 DEFHOOK
936 (reassociation_width,
937 "This hook is called by tree reassociator to determine a level of\n\
938 parallelism required in output calculations chain.",
939 int, (unsigned int opc, enum machine_mode mode),
940 hook_int_uint_mode_1)
941
942 HOOK_VECTOR_END (sched)
943
944 /* Functions relating to vectorization. */
945 #undef HOOK_PREFIX
946 #define HOOK_PREFIX "TARGET_VECTORIZE_"
947 HOOK_VECTOR (TARGET_VECTORIZE, vectorize)
948
949 /* The following member value is a pointer to a function called
950 by the vectorizer, and return the decl of the target builtin
951 function. */
952 DEFHOOK
953 (builtin_mask_for_load,
954 "",
955 tree, (void), NULL)
956
957 /* Returns a code for builtin that realizes vectorized version of
958 function, or NULL_TREE if not available. */
959 DEFHOOK
960 (builtin_vectorized_function,
961 "",
962 tree, (tree fndecl, tree vec_type_out, tree vec_type_in),
963 default_builtin_vectorized_function)
964
965 /* Returns a function declaration for a builtin that realizes the
966 vector conversion, or NULL_TREE if not available. */
967 DEFHOOK
968 (builtin_conversion,
969 "",
970 tree, (unsigned code, tree dest_type, tree src_type),
971 default_builtin_vectorized_conversion)
972
973 /* Cost of different vector/scalar statements in vectorization cost
974 model. In case of misaligned vector loads and stores the cost depends
975 on the data type and misalignment value. */
976 DEFHOOK
977 (builtin_vectorization_cost,
978 "",
979 int, (enum vect_cost_for_stmt type_of_cost, tree vectype, int misalign),
980 default_builtin_vectorization_cost)
981
982 /* Return true if vector alignment is reachable (by peeling N
983 iterations) for the given type. */
984 DEFHOOK
985 (vector_alignment_reachable,
986 "",
987 bool, (const_tree type, bool is_packed),
988 default_builtin_vector_alignment_reachable)
989
990 /* Return true if a vector created for vec_perm_const is valid.
991 A NULL indicates that all constants are valid permutations. */
992 DEFHOOK
993 (vec_perm_const_ok,
994 "",
995 bool, (enum machine_mode, const unsigned char *sel),
996 NULL)
997
998 /* Return true if the target supports misaligned store/load of a
999 specific factor denoted in the third parameter. The last parameter
1000 is true if the access is defined in a packed struct. */
1001 DEFHOOK
1002 (support_vector_misalignment,
1003 "",
1004 bool,
1005 (enum machine_mode mode, const_tree type, int misalignment, bool is_packed),
1006 default_builtin_support_vector_misalignment)
1007
1008 /* Return the builtin decl needed to load a vector of TYPE. */
1009 DEFHOOK
1010 (builtin_tm_load,
1011 "This hook should return the built-in decl needed to load a vector of the "
1012 "given type within a transaction.",
1013 tree,
1014 (tree),
1015 default_builtin_tm_load_store)
1016
1017 /* Return the builtin decl needed to store a vector of TYPE. */
1018 DEFHOOK
1019 (builtin_tm_store,
1020 "This hook should return the built-in decl needed to store a vector of the "
1021 "given type within a transaction.",
1022 tree,
1023 (tree),
1024 default_builtin_tm_load_store)
1025
1026 /* Returns the preferred mode for SIMD operations for the specified
1027 scalar mode. */
1028 DEFHOOK
1029 (preferred_simd_mode,
1030 "",
1031 enum machine_mode,
1032 (enum machine_mode mode),
1033 default_preferred_simd_mode)
1034
1035 /* Returns a mask of vector sizes to iterate over when auto-vectorizing
1036 after processing the preferred one derived from preferred_simd_mode. */
1037 DEFHOOK
1038 (autovectorize_vector_sizes,
1039 "",
1040 unsigned int,
1041 (void),
1042 default_autovectorize_vector_sizes)
1043
1044 /* Target builtin that implements vector gather operation. */
1045 DEFHOOK
1046 (builtin_gather,
1047 "",
1048 tree,
1049 (const_tree mem_vectype, const_tree index_type, int scale),
1050 NULL)
1051
1052 /* Target function to initialize the cost model for a loop or block. */
1053 DEFHOOK
1054 (init_cost,
1055 "This hook should initialize target-specific data structures in preparation "
1056 "for modeling the costs of vectorizing a loop or basic block. The default "
1057 "allocates an unsigned integer for accumulating a single cost. "
1058 "If @var{loop_info} is non-NULL, it identifies the loop being vectorized; "
1059 "otherwise a single block is being vectorized.",
1060 void *,
1061 (struct loop *loop_info),
1062 default_init_cost)
1063
1064 /* Target function to record N statements of the given kind using the
1065 given vector type within the cost model data for the current loop
1066 or block. */
1067 DEFHOOK
1068 (add_stmt_cost,
1069 "This hook should update the target-specific @var{data} in response to "
1070 "adding @var{count} copies of the given @var{kind} of statement to the "
1071 "body of a loop or basic block. The default adds the builtin vectorizer "
1072 "cost for the copies of the statement to the accumulator, and returns "
1073 "the amount added. The return value should be viewed as a tentative "
1074 "cost that may later be overridden.",
1075 unsigned,
1076 (void *data, int count, enum vect_cost_for_stmt kind,
1077 struct _stmt_vec_info *stmt_info, int misalign),
1078 default_add_stmt_cost)
1079
1080 /* Target function to calculate the total cost of the current vectorized
1081 loop or block. */
1082 DEFHOOK
1083 (finish_cost,
1084 "This hook should complete calculations of the cost of vectorizing a loop "
1085 "or basic block based on @var{data}, and return that cost as an unsigned "
1086 "integer. The default returns the value of the accumulator.",
1087 unsigned,
1088 (void *data),
1089 default_finish_cost)
1090
1091 /* Function to delete target-specific cost modeling data. */
1092 DEFHOOK
1093 (destroy_cost_data,
1094 "This hook should release @var{data} and any related data structures "
1095 "allocated by TARGET_VECTORIZE_INIT_COST. The default releases the "
1096 "accumulator.",
1097 void,
1098 (void *data),
1099 default_destroy_cost_data)
1100
1101 HOOK_VECTOR_END (vectorize)
1102
1103 #undef HOOK_PREFIX
1104 #define HOOK_PREFIX "TARGET_"
1105
1106 /* Allow target specific overriding of option settings after options have
1107 been changed by an attribute or pragma or when it is reset at the
1108 end of the code affected by an attribute or pragma. */
1109 DEFHOOK
1110 (override_options_after_change,
1111 "",
1112 void, (void),
1113 hook_void_void)
1114
1115 DEFHOOK_UNDOC
1116 (eh_return_filter_mode,
1117 "Return machine mode for filter value.",
1118 enum machine_mode, (void),
1119 default_eh_return_filter_mode)
1120
1121 /* Return machine mode for libgcc expanded cmp instructions. */
1122 DEFHOOK
1123 (libgcc_cmp_return_mode,
1124 "",
1125 enum machine_mode, (void),
1126 default_libgcc_cmp_return_mode)
1127
1128 /* Return machine mode for libgcc expanded shift instructions. */
1129 DEFHOOK
1130 (libgcc_shift_count_mode,
1131 "",
1132 enum machine_mode, (void),
1133 default_libgcc_shift_count_mode)
1134
1135 /* Return machine mode to be used for _Unwind_Word type. */
1136 DEFHOOK
1137 (unwind_word_mode,
1138 "",
1139 enum machine_mode, (void),
1140 default_unwind_word_mode)
1141
1142 /* Given two decls, merge their attributes and return the result. */
1143 DEFHOOK
1144 (merge_decl_attributes,
1145 "",
1146 tree, (tree olddecl, tree newdecl),
1147 merge_decl_attributes)
1148
1149 /* Given two types, merge their attributes and return the result. */
1150 DEFHOOK
1151 (merge_type_attributes,
1152 "",
1153 tree, (tree type1, tree type2),
1154 merge_type_attributes)
1155
1156 /* Table of machine attributes and functions to handle them.
1157 Ignored if NULL. */
1158 DEFHOOKPOD
1159 (attribute_table,
1160 "",
1161 const struct attribute_spec *, NULL)
1162
1163 /* Return true iff attribute NAME expects a plain identifier as its first
1164 argument. */
1165 DEFHOOK
1166 (attribute_takes_identifier_p,
1167 "",
1168 bool, (const_tree name),
1169 hook_bool_const_tree_false)
1170
1171 /* Return zero if the attributes on TYPE1 and TYPE2 are incompatible,
1172 one if they are compatible and two if they are nearly compatible
1173 (which causes a warning to be generated). */
1174 DEFHOOK
1175 (comp_type_attributes,
1176 "",
1177 int, (const_tree type1, const_tree type2),
1178 hook_int_const_tree_const_tree_1)
1179
1180 /* Assign default attributes to the newly defined TYPE. */
1181 DEFHOOK
1182 (set_default_type_attributes,
1183 "",
1184 void, (tree type),
1185 hook_void_tree)
1186
1187 /* Insert attributes on the newly created DECL. */
1188 DEFHOOK
1189 (insert_attributes,
1190 "",
1191 void, (tree node, tree *attr_ptr),
1192 hook_void_tree_treeptr)
1193
1194 /* Return true if FNDECL (which has at least one machine attribute)
1195 can be inlined despite its machine attributes, false otherwise. */
1196 DEFHOOK
1197 (function_attribute_inlinable_p,
1198 "",
1199 bool, (const_tree fndecl),
1200 hook_bool_const_tree_false)
1201
1202 /* Return true if bitfields in RECORD_TYPE should follow the
1203 Microsoft Visual C++ bitfield layout rules. */
1204 DEFHOOK
1205 (ms_bitfield_layout_p,
1206 "",
1207 bool, (const_tree record_type),
1208 hook_bool_const_tree_false)
1209
1210 /* For now this is only an interface to WORDS_BIG_ENDIAN for
1211 target-independent code like the front ends, need performance testing
1212 before switching completely to the target hook. */
1213 DEFHOOK_UNDOC
1214 (words_big_endian,
1215 "",
1216 bool, (void),
1217 targhook_words_big_endian)
1218
1219 /* Likewise for FLOAT_WORDS_BIG_ENDIAN. */
1220 DEFHOOK_UNDOC
1221 (float_words_big_endian,
1222 "",
1223 bool, (void),
1224 targhook_float_words_big_endian)
1225
1226 /* True if the target supports decimal floating point. */
1227 DEFHOOK
1228 (decimal_float_supported_p,
1229 "",
1230 bool, (void),
1231 default_decimal_float_supported_p)
1232
1233 /* True if the target supports fixed-point. */
1234 DEFHOOK
1235 (fixed_point_supported_p,
1236 "",
1237 bool, (void),
1238 default_fixed_point_supported_p)
1239
1240 /* Return true if anonymous bitfields affect structure alignment. */
1241 DEFHOOK
1242 (align_anon_bitfield,
1243 "",
1244 bool, (void),
1245 hook_bool_void_false)
1246
1247 /* Return true if volatile bitfields should use the narrowest type possible.
1248 Return false if they should use the container type. */
1249 DEFHOOK
1250 (narrow_volatile_bitfield,
1251 "",
1252 bool, (void),
1253 hook_bool_void_false)
1254
1255 /* Set up target-specific built-in functions. */
1256 DEFHOOK
1257 (init_builtins,
1258 "",
1259 void, (void),
1260 hook_void_void)
1261
1262 /* Initialize (if INITIALIZE_P is true) and return the target-specific
1263 built-in function decl for CODE.
1264 Return NULL if that is not possible. Return error_mark_node if CODE
1265 is outside of the range of valid target builtin function codes. */
1266 DEFHOOK
1267 (builtin_decl,
1268 "",
1269 tree, (unsigned code, bool initialize_p), NULL)
1270
1271 /* Expand a target-specific builtin. */
1272 DEFHOOK
1273 (expand_builtin,
1274 "",
1275 rtx,
1276 (tree exp, rtx target, rtx subtarget, enum machine_mode mode, int ignore),
1277 default_expand_builtin)
1278
1279 /* Select a replacement for a target-specific builtin. This is done
1280 *before* regular type checking, and so allows the target to
1281 implement a crude form of function overloading. The result is a
1282 complete expression that implements the operation. PARAMS really
1283 has type VEC(tree,gc)*, but we don't want to include tree.h here. */
1284 DEFHOOK
1285 (resolve_overloaded_builtin,
1286 "",
1287 tree, (unsigned int /*location_t*/ loc, tree fndecl, void *arglist), NULL)
1288
1289 /* Fold a target-specific builtin. */
1290 DEFHOOK
1291 (fold_builtin,
1292 "",
1293 tree, (tree fndecl, int n_args, tree *argp, bool ignore),
1294 hook_tree_tree_int_treep_bool_null)
1295
1296 /* Returns a code for a target-specific builtin that implements
1297 reciprocal of the function, or NULL_TREE if not available. */
1298 DEFHOOK
1299 (builtin_reciprocal,
1300 "",
1301 tree, (unsigned fn, bool md_fn, bool sqrt),
1302 default_builtin_reciprocal)
1303
1304 /* For a vendor-specific TYPE, return a pointer to a statically-allocated
1305 string containing the C++ mangling for TYPE. In all other cases, return
1306 NULL. */
1307 DEFHOOK
1308 (mangle_type,
1309 "",
1310 const char *, (const_tree type),
1311 hook_constcharptr_const_tree_null)
1312
1313 /* Make any adjustments to libfunc names needed for this target. */
1314 DEFHOOK
1315 (init_libfuncs,
1316 "",
1317 void, (void),
1318 hook_void_void)
1319
1320 /* Add a __gnu_ prefix to library functions rather than just __. */
1321 DEFHOOKPOD
1322 (libfunc_gnu_prefix,
1323 "If false (the default), internal library routines start with two\n\
1324 underscores. If set to true, these routines start with @code{__gnu_}\n\
1325 instead. E.g., @code{__muldi3} changes to @code{__gnu_muldi3}. This\n\
1326 currently only affects functions defined in @file{libgcc2.c}. If this\n\
1327 is set to true, the @file{tm.h} file must also\n\
1328 @code{#define LIBGCC2_GNU_PREFIX}.",
1329 bool, false)
1330
1331 /* Given a decl, a section name, and whether the decl initializer
1332 has relocs, choose attributes for the section. */
1333 /* ??? Should be merged with SELECT_SECTION and UNIQUE_SECTION. */
1334 DEFHOOK
1335 (section_type_flags,
1336 "",
1337 unsigned int, (tree decl, const char *name, int reloc),
1338 default_section_type_flags)
1339
1340 /* True if new jumps cannot be created, to replace existing ones or
1341 not, at the current point in the compilation. */
1342 DEFHOOK
1343 (cannot_modify_jumps_p,
1344 "",
1345 bool, (void),
1346 hook_bool_void_false)
1347
1348 /* Return a register class for which branch target register
1349 optimizations should be applied. */
1350 DEFHOOK
1351 (branch_target_register_class,
1352 "",
1353 reg_class_t, (void),
1354 default_branch_target_register_class)
1355
1356 /* Return true if branch target register optimizations should include
1357 callee-saved registers that are not already live during the current
1358 function. AFTER_PE_GEN is true if prologues and epilogues have
1359 already been generated. */
1360 DEFHOOK
1361 (branch_target_register_callee_saved,
1362 "",
1363 bool, (bool after_prologue_epilogue_gen),
1364 hook_bool_bool_false)
1365
1366 /* Return true if the target supports conditional execution. */
1367 DEFHOOK
1368 (have_conditional_execution,
1369 "",
1370 bool, (void),
1371 default_have_conditional_execution)
1372
1373 /* Return a new value for loop unroll size. */
1374 DEFHOOK
1375 (loop_unroll_adjust,
1376 "",
1377 unsigned, (unsigned nunroll, struct loop *loop),
1378 NULL)
1379
1380 /* True if X is a legitimate MODE-mode immediate operand. */
1381 DEFHOOK
1382 (legitimate_constant_p,
1383 "",
1384 bool, (enum machine_mode mode, rtx x),
1385 hook_bool_mode_rtx_true)
1386
1387 /* True if the constant X cannot be placed in the constant pool. */
1388 DEFHOOK
1389 (cannot_force_const_mem,
1390 "",
1391 bool, (enum machine_mode mode, rtx x),
1392 hook_bool_mode_rtx_false)
1393
1394 DEFHOOK_UNDOC
1395 (cannot_copy_insn_p,
1396 "True if the insn @var{x} cannot be duplicated.",
1397 bool, (rtx), NULL)
1398
1399 /* True if X is considered to be commutative. */
1400 DEFHOOK
1401 (commutative_p,
1402 "",
1403 bool, (const_rtx x, int outer_code),
1404 hook_bool_const_rtx_commutative_p)
1405
1406 /* True if ADDR is an address-expression whose effect depends
1407 on the mode of the memory reference it is used in. */
1408 DEFHOOK
1409 (mode_dependent_address_p,
1410 "",
1411 bool, (const_rtx addr),
1412 default_mode_dependent_address_p)
1413
1414 /* Given an invalid address X for a given machine mode, try machine-specific
1415 ways to make it legitimate. Return X or an invalid address on failure. */
1416 DEFHOOK
1417 (legitimize_address,
1418 "",
1419 rtx, (rtx x, rtx oldx, enum machine_mode mode),
1420 default_legitimize_address)
1421
1422 /* Given an address RTX, undo the effects of LEGITIMIZE_ADDRESS. */
1423 DEFHOOK
1424 (delegitimize_address,
1425 "",
1426 rtx, (rtx x),
1427 delegitimize_mem_from_attrs)
1428
1429 /* Given an RTX, return true if it is not ok to emit it into debug info
1430 section. */
1431 DEFHOOK
1432 (const_not_ok_for_debug_p,
1433 "",
1434 bool, (rtx x),
1435 hook_bool_rtx_false)
1436
1437 /* Given an address RTX, say whether it is valid. */
1438 DEFHOOK
1439 (legitimate_address_p,
1440 "",
1441 bool, (enum machine_mode mode, rtx x, bool strict),
1442 default_legitimate_address_p)
1443
1444 /* True if the given constant can be put into an object_block. */
1445 DEFHOOK
1446 (use_blocks_for_constant_p,
1447 "",
1448 bool, (enum machine_mode mode, const_rtx x),
1449 hook_bool_mode_const_rtx_false)
1450
1451 /* The minimum and maximum byte offsets for anchored addresses. */
1452 DEFHOOKPOD
1453 (min_anchor_offset,
1454 "",
1455 HOST_WIDE_INT, 0)
1456
1457 DEFHOOKPOD
1458 (max_anchor_offset,
1459 "",
1460 HOST_WIDE_INT, 0)
1461
1462 /* True if section anchors can be used to access the given symbol. */
1463 DEFHOOK
1464 (use_anchors_for_symbol_p,
1465 "",
1466 bool, (const_rtx x),
1467 default_use_anchors_for_symbol_p)
1468
1469 /* True if it is OK to do sibling call optimization for the specified
1470 call expression EXP. DECL will be the called function, or NULL if
1471 this is an indirect call. */
1472 DEFHOOK
1473 (function_ok_for_sibcall,
1474 "",
1475 bool, (tree decl, tree exp),
1476 hook_bool_tree_tree_false)
1477
1478 /* Establish appropriate back-end context for processing the function
1479 FNDECL. The argument might be NULL to indicate processing at top
1480 level, outside of any function scope. */
1481 DEFHOOK
1482 (set_current_function,
1483 "",
1484 void, (tree decl), hook_void_tree)
1485
1486 /* True if EXP should be placed in a "small data" section. */
1487 DEFHOOK
1488 (in_small_data_p,
1489 "",
1490 bool, (const_tree exp),
1491 hook_bool_const_tree_false)
1492
1493 /* True if EXP names an object for which name resolution must resolve
1494 to the current executable or shared library. */
1495 DEFHOOK
1496 (binds_local_p,
1497 "",
1498 bool, (const_tree exp),
1499 default_binds_local_p)
1500
1501 /* Check if profiling code is before or after prologue. */
1502 DEFHOOK
1503 (profile_before_prologue,
1504 "It returns true if target wants profile code emitted before prologue.\n\n\
1505 The default version of this hook use the target macro\n\
1506 @code{PROFILE_BEFORE_PROLOGUE}.",
1507 bool, (void),
1508 default_profile_before_prologue)
1509
1510 /* Modify and return the identifier of a DECL's external name,
1511 originally identified by ID, as required by the target,
1512 (eg, append @nn to windows32 stdcall function names).
1513 The default is to return ID without modification. */
1514 DEFHOOK
1515 (mangle_decl_assembler_name,
1516 "",
1517 tree, (tree decl, tree id),
1518 default_mangle_decl_assembler_name)
1519
1520 /* Do something target-specific to record properties of the DECL into
1521 the associated SYMBOL_REF. */
1522 DEFHOOK
1523 (encode_section_info,
1524 "",
1525 void, (tree decl, rtx rtl, int new_decl_p),
1526 default_encode_section_info)
1527
1528 /* Undo the effects of encode_section_info on the symbol string. */
1529 DEFHOOK
1530 (strip_name_encoding,
1531 "",
1532 const char *, (const char *name),
1533 default_strip_name_encoding)
1534
1535 /* If shift optabs for MODE are known to always truncate the shift count,
1536 return the mask that they apply. Return 0 otherwise. */
1537 DEFHOOK
1538 (shift_truncation_mask,
1539 "",
1540 unsigned HOST_WIDE_INT, (enum machine_mode mode),
1541 default_shift_truncation_mask)
1542
1543 /* Return the number of divisions in the given MODE that should be present,
1544 so that it is profitable to turn the division into a multiplication by
1545 the reciprocal. */
1546 DEFHOOK
1547 (min_divisions_for_recip_mul,
1548 "",
1549 unsigned int, (enum machine_mode mode),
1550 default_min_divisions_for_recip_mul)
1551
1552 /* If the representation of integral MODE is such that values are
1553 always sign-extended to a wider mode MODE_REP then return
1554 SIGN_EXTEND. Return UNKNOWN otherwise. */
1555 /* Note that the return type ought to be RTX_CODE, but that's not
1556 necessarily defined at this point. */
1557 DEFHOOK
1558 (mode_rep_extended,
1559 "",
1560 int, (enum machine_mode mode, enum machine_mode rep_mode),
1561 default_mode_rep_extended)
1562
1563 /* True if MODE is valid for a pointer in __attribute__((mode("MODE"))). */
1564 DEFHOOK
1565 (valid_pointer_mode,
1566 "",
1567 bool, (enum machine_mode mode),
1568 default_valid_pointer_mode)
1569
1570 /* Disambiguate with errno. */
1571 DEFHOOK
1572 (ref_may_alias_errno,
1573 "Define this to return nonzero if the memory reference @var{ref}\
1574 may alias with the system C library errno location. The default\
1575 version of this hook assumes the system C library errno location\
1576 is either a declaration of type int or accessed by dereferencing\
1577 a pointer to int.",
1578 bool, (struct ao_ref_s *ref),
1579 default_ref_may_alias_errno)
1580
1581 /* Support for named address spaces. */
1582 #undef HOOK_PREFIX
1583 #define HOOK_PREFIX "TARGET_ADDR_SPACE_"
1584 HOOK_VECTOR (TARGET_ADDR_SPACE_HOOKS, addr_space)
1585
1586 /* MODE to use for a pointer into another address space. */
1587 DEFHOOK
1588 (pointer_mode,
1589 "",
1590 enum machine_mode, (addr_space_t address_space),
1591 default_addr_space_pointer_mode)
1592
1593 /* MODE to use for an address in another address space. */
1594 DEFHOOK
1595 (address_mode,
1596 "",
1597 enum machine_mode, (addr_space_t address_space),
1598 default_addr_space_address_mode)
1599
1600 /* True if MODE is valid for a pointer in __attribute__((mode("MODE")))
1601 in another address space. */
1602 DEFHOOK
1603 (valid_pointer_mode,
1604 "",
1605 bool, (enum machine_mode mode, addr_space_t as),
1606 default_addr_space_valid_pointer_mode)
1607
1608 /* True if an address is a valid memory address to a given named address
1609 space for a given mode. */
1610 DEFHOOK
1611 (legitimate_address_p,
1612 "",
1613 bool, (enum machine_mode mode, rtx exp, bool strict, addr_space_t as),
1614 default_addr_space_legitimate_address_p)
1615
1616 /* Return an updated address to convert an invalid pointer to a named
1617 address space to a valid one. If NULL_RTX is returned use machine
1618 independent methods to make the address valid. */
1619 DEFHOOK
1620 (legitimize_address,
1621 "",
1622 rtx, (rtx x, rtx oldx, enum machine_mode mode, addr_space_t as),
1623 default_addr_space_legitimize_address)
1624
1625 /* True if one named address space is a subset of another named address. */
1626 DEFHOOK
1627 (subset_p,
1628 "",
1629 bool, (addr_space_t subset, addr_space_t superset),
1630 default_addr_space_subset_p)
1631
1632 /* Function to convert an rtl expression from one address space to another. */
1633 DEFHOOK
1634 (convert,
1635 "",
1636 rtx, (rtx op, tree from_type, tree to_type),
1637 default_addr_space_convert)
1638
1639 HOOK_VECTOR_END (addr_space)
1640
1641 #undef HOOK_PREFIX
1642 #define HOOK_PREFIX "TARGET_"
1643
1644 /* True if MODE is valid for the target. By "valid", we mean able to
1645 be manipulated in non-trivial ways. In particular, this means all
1646 the arithmetic is supported. */
1647 DEFHOOK
1648 (scalar_mode_supported_p,
1649 "",
1650 bool, (enum machine_mode mode),
1651 default_scalar_mode_supported_p)
1652
1653 /* Similarly for vector modes. "Supported" here is less strict. At
1654 least some operations are supported; need to check optabs or builtins
1655 for further details. */
1656 DEFHOOK
1657 (vector_mode_supported_p,
1658 "",
1659 bool, (enum machine_mode mode),
1660 hook_bool_mode_false)
1661
1662 /* True if we should try to use a scalar mode to represent an array,
1663 overriding the usual MAX_FIXED_MODE limit. */
1664 DEFHOOK
1665 (array_mode_supported_p,
1666 "Return true if GCC should try to use a scalar mode to store an array\n\
1667 of @var{nelems} elements, given that each element has mode @var{mode}.\n\
1668 Returning true here overrides the usual @code{MAX_FIXED_MODE} limit\n\
1669 and allows GCC to use any defined integer mode.\n\
1670 \n\
1671 One use of this hook is to support vector load and store operations\n\
1672 that operate on several homogeneous vectors. For example, ARM NEON\n\
1673 has operations like:\n\
1674 \n\
1675 @smallexample\n\
1676 int8x8x3_t vld3_s8 (const int8_t *)\n\
1677 @end smallexample\n\
1678 \n\
1679 where the return type is defined as:\n\
1680 \n\
1681 @smallexample\n\
1682 typedef struct int8x8x3_t\n\
1683 @{\n\
1684 int8x8_t val[3];\n\
1685 @} int8x8x3_t;\n\
1686 @end smallexample\n\
1687 \n\
1688 If this hook allows @code{val} to have a scalar mode, then\n\
1689 @code{int8x8x3_t} can have the same mode. GCC can then store\n\
1690 @code{int8x8x3_t}s in registers rather than forcing them onto the stack.",
1691 bool, (enum machine_mode mode, unsigned HOST_WIDE_INT nelems),
1692 hook_bool_mode_uhwi_false)
1693
1694 /* Compute cost of moving data from a register of class FROM to one of
1695 TO, using MODE. */
1696 DEFHOOK
1697 (register_move_cost,
1698 "",
1699 int, (enum machine_mode mode, reg_class_t from, reg_class_t to),
1700 default_register_move_cost)
1701
1702 /* Compute cost of moving registers to/from memory. */
1703 /* ??? Documenting the argument types for this hook requires a GFDL
1704 license grant. Also, the documentation uses a different name for RCLASS. */
1705 DEFHOOK
1706 (memory_move_cost,
1707 "",
1708 int, (enum machine_mode mode, reg_class_t rclass, bool in),
1709 default_memory_move_cost)
1710
1711 /* True for MODE if the target expects that registers in this mode will
1712 be allocated to registers in a small register class. The compiler is
1713 allowed to use registers explicitly used in the rtl as spill registers
1714 but it should prevent extending the lifetime of these registers. */
1715 DEFHOOK
1716 (small_register_classes_for_mode_p,
1717 "",
1718 bool, (enum machine_mode mode),
1719 hook_bool_mode_false)
1720
1721 /* Register number for a flags register. Only needs to be defined if the
1722 target is constrainted to use post-reload comparison elimination. */
1723 DEFHOOKPOD
1724 (flags_regnum,
1725 "If the target has a dedicated flags register, and it needs to use the\
1726 post-reload comparison elimination pass, then this value should be set\
1727 appropriately.",
1728 unsigned int, INVALID_REGNUM)
1729
1730 /* Compute a (partial) cost for rtx X. Return true if the complete
1731 cost has been computed, and false if subexpressions should be
1732 scanned. In either case, *TOTAL contains the cost result. */
1733 /* Note that CODE and OUTER_CODE ought to be RTX_CODE, but that's
1734 not necessarily defined at this point. */
1735 DEFHOOK
1736 (rtx_costs,
1737 "",
1738 bool, (rtx x, int code, int outer_code, int opno, int *total, bool speed),
1739 hook_bool_rtx_int_int_int_intp_bool_false)
1740
1741 /* Compute the cost of X, used as an address. Never called with
1742 invalid addresses. */
1743 DEFHOOK
1744 (address_cost,
1745 "",
1746 int, (rtx address, bool speed),
1747 default_address_cost)
1748
1749 /* Return where to allocate pseudo for a given hard register initial value. */
1750 DEFHOOK
1751 (allocate_initial_value,
1752 "",
1753 rtx, (rtx hard_reg), NULL)
1754
1755 /* Return nonzero if evaluating UNSPEC[_VOLATILE] X might cause a trap.
1756 FLAGS has the same meaning as in rtlanal.c: may_trap_p_1. */
1757 DEFHOOK
1758 (unspec_may_trap_p,
1759 "",
1760 int, (const_rtx x, unsigned flags),
1761 default_unspec_may_trap_p)
1762
1763 /* Given a register, this hook should return a parallel of registers
1764 to represent where to find the register pieces. Define this hook
1765 if the register and its mode are represented in Dwarf in
1766 non-contiguous locations, or if the register should be
1767 represented in more than one register in Dwarf. Otherwise, this
1768 hook should return NULL_RTX. */
1769 DEFHOOK
1770 (dwarf_register_span,
1771 "",
1772 rtx, (rtx reg),
1773 hook_rtx_rtx_null)
1774
1775 /* If expand_builtin_init_dwarf_reg_sizes needs to fill in table
1776 entries not corresponding directly to registers below
1777 FIRST_PSEUDO_REGISTER, this hook should generate the necessary
1778 code, given the address of the table. */
1779 DEFHOOK
1780 (init_dwarf_reg_sizes_extra,
1781 "",
1782 void, (tree address),
1783 hook_void_tree)
1784
1785 /* Fetch the fixed register(s) which hold condition codes, for
1786 targets where it makes sense to look for duplicate assignments to
1787 the condition codes. This should return true if there is such a
1788 register, false otherwise. The arguments should be set to the
1789 fixed register numbers. Up to two condition code registers are
1790 supported. If there is only one for this target, the int pointed
1791 at by the second argument should be set to -1. */
1792 DEFHOOK
1793 (fixed_condition_code_regs,
1794 "",
1795 bool, (unsigned int *p1, unsigned int *p2),
1796 hook_bool_uintp_uintp_false)
1797
1798 /* If two condition code modes are compatible, return a condition
1799 code mode which is compatible with both, such that a comparison
1800 done in the returned mode will work for both of the original
1801 modes. If the condition code modes are not compatible, return
1802 VOIDmode. */
1803 DEFHOOK
1804 (cc_modes_compatible,
1805 "",
1806 enum machine_mode, (enum machine_mode m1, enum machine_mode m2),
1807 default_cc_modes_compatible)
1808
1809 /* Do machine-dependent code transformations. Called just before
1810 delayed-branch scheduling. */
1811 DEFHOOK
1812 (machine_dependent_reorg,
1813 "",
1814 void, (void), NULL)
1815
1816 /* Create the __builtin_va_list type. */
1817 DEFHOOK
1818 (build_builtin_va_list,
1819 "",
1820 tree, (void),
1821 std_build_builtin_va_list)
1822
1823 /* Enumerate the va list variants. */
1824 DEFHOOK
1825 (enum_va_list_p,
1826 "",
1827 int, (int idx, const char **pname, tree *ptree),
1828 NULL)
1829
1830 /* Get the cfun/fndecl calling abi __builtin_va_list type. */
1831 DEFHOOK
1832 (fn_abi_va_list,
1833 "",
1834 tree, (tree fndecl),
1835 std_fn_abi_va_list)
1836
1837 /* Get the __builtin_va_list type dependent on input type. */
1838 DEFHOOK
1839 (canonical_va_list_type,
1840 "",
1841 tree, (tree type),
1842 std_canonical_va_list_type)
1843
1844 /* ??? Documenting this hook requires a GFDL license grant. */
1845 DEFHOOK_UNDOC
1846 (expand_builtin_va_start,
1847 "Expand the @code{__builtin_va_start} builtin.",
1848 void, (tree valist, rtx nextarg), NULL)
1849
1850 /* Gimplifies a VA_ARG_EXPR. */
1851 DEFHOOK
1852 (gimplify_va_arg_expr,
1853 "",
1854 tree, (tree valist, tree type, gimple_seq *pre_p, gimple_seq *post_p),
1855 std_gimplify_va_arg_expr)
1856
1857 /* Validity-checking routines for PCH files, target-specific.
1858 get_pch_validity returns a pointer to the data to be stored,
1859 and stores the size in its argument. pch_valid_p gets the same
1860 information back and returns NULL if the PCH is valid,
1861 or an error message if not. */
1862 DEFHOOK
1863 (get_pch_validity,
1864 "",
1865 void *, (size_t *sz),
1866 default_get_pch_validity)
1867
1868 DEFHOOK
1869 (pch_valid_p,
1870 "",
1871 const char *, (const void *data, size_t sz),
1872 default_pch_valid_p)
1873
1874 DEFHOOK
1875 (prepare_pch_save,
1876 "Called before writing out a PCH file. If the target has some\n\
1877 garbage-collected data that needs to be in a particular state on PCH loads,\n\
1878 it can use this hook to enforce that state. Very few targets need\n\
1879 to do anything here.",
1880 void, (void),
1881 hook_void_void)
1882
1883 /* If nonnull, this function checks whether a PCH file with the
1884 given set of target flags can be used. It returns NULL if so,
1885 otherwise it returns an error message. */
1886 DEFHOOK
1887 (check_pch_target_flags,
1888 "",
1889 const char *, (int pch_flags), NULL)
1890
1891 /* True if the compiler should give an enum type only as many
1892 bytes as it takes to represent the range of possible values of
1893 that type. */
1894 DEFHOOK
1895 (default_short_enums,
1896 "",
1897 bool, (void),
1898 hook_bool_void_false)
1899
1900 /* This target hook returns an rtx that is used to store the address
1901 of the current frame into the built-in setjmp buffer. */
1902 DEFHOOK
1903 (builtin_setjmp_frame_value,
1904 "",
1905 rtx, (void),
1906 default_builtin_setjmp_frame_value)
1907
1908 /* This target hook should add STRING_CST trees for any hard regs
1909 the port wishes to automatically clobber for an asm. */
1910 DEFHOOK
1911 (md_asm_clobbers,
1912 "",
1913 tree, (tree outputs, tree inputs, tree clobbers),
1914 hook_tree_tree_tree_tree_3rd_identity)
1915
1916 /* This target hook allows the backend to specify a calling convention
1917 in the debug information. This function actually returns an
1918 enum dwarf_calling_convention, but because of forward declarations
1919 and not wanting to include dwarf2.h everywhere target.h is included
1920 the function is being declared as an int. */
1921 DEFHOOK
1922 (dwarf_calling_convention,
1923 "",
1924 int, (const_tree function),
1925 hook_int_const_tree_0)
1926
1927 /* This target hook allows the backend to emit frame-related insns that
1928 contain UNSPECs or UNSPEC_VOLATILEs. The call frame debugging info
1929 engine will invoke it on insns of the form
1930 (set (reg) (unspec [...] UNSPEC_INDEX))
1931 and
1932 (set (reg) (unspec_volatile [...] UNSPECV_INDEX))
1933 to let the backend emit the call frame instructions. */
1934 DEFHOOK
1935 (dwarf_handle_frame_unspec,
1936 "",
1937 void, (const char *label, rtx pattern, int index), NULL)
1938
1939 /* ??? Documenting this hook requires a GFDL license grant. */
1940 DEFHOOK_UNDOC
1941 (stdarg_optimize_hook,
1942 "Perform architecture specific checking of statements gimplified\
1943 from @code{VA_ARG_EXPR}. @var{stmt} is the statement. Returns true if\
1944 the statement doesn't need to be checked for @code{va_list} references.",
1945 bool, (struct stdarg_info *ai, const_gimple stmt), NULL)
1946
1947 /* This target hook allows the operating system to override the DECL
1948 that represents the external variable that contains the stack
1949 protection guard variable. The type of this DECL is ptr_type_node. */
1950 DEFHOOK
1951 (stack_protect_guard,
1952 "",
1953 tree, (void),
1954 default_stack_protect_guard)
1955
1956 /* This target hook allows the operating system to override the CALL_EXPR
1957 that is invoked when a check vs the guard variable fails. */
1958 DEFHOOK
1959 (stack_protect_fail,
1960 "",
1961 tree, (void),
1962 default_external_stack_protect_fail)
1963
1964 /* Returns NULL if target supports the insn within a doloop block,
1965 otherwise it returns an error message. */
1966 DEFHOOK
1967 (invalid_within_doloop,
1968 "",
1969 const char *, (const_rtx insn),
1970 default_invalid_within_doloop)
1971
1972 DEFHOOK
1973 (valid_dllimport_attribute_p,
1974 "@var{decl} is a variable or function with @code{__attribute__((dllimport))}\
1975 specified. Use this hook if the target needs to add extra validation\
1976 checks to @code{handle_dll_attribute}.",
1977 bool, (const_tree decl),
1978 hook_bool_const_tree_true)
1979
1980 /* If non-zero, align constant anchors in CSE to a multiple of this
1981 value. */
1982 DEFHOOKPOD
1983 (const_anchor,
1984 "",
1985 unsigned HOST_WIDE_INT, 0)
1986
1987 /* Defines, which target-dependent bits (upper 16) are used by port */
1988 DEFHOOK
1989 (memmodel_check,
1990 "",
1991 unsigned HOST_WIDE_INT, (unsigned HOST_WIDE_INT val), NULL)
1992
1993 /* Functions relating to calls - argument passing, returns, etc. */
1994 /* Members of struct call have no special macro prefix. */
1995 HOOK_VECTOR (TARGET_CALLS, calls)
1996
1997 DEFHOOK
1998 (promote_function_mode,
1999 "",
2000 enum machine_mode, (const_tree type, enum machine_mode mode, int *punsignedp,
2001 const_tree funtype, int for_return),
2002 default_promote_function_mode)
2003
2004 DEFHOOK
2005 (promote_prototypes,
2006 "",
2007 bool, (const_tree fntype),
2008 hook_bool_const_tree_false)
2009
2010 DEFHOOK
2011 (struct_value_rtx,
2012 "",
2013 rtx, (tree fndecl, int incoming),
2014 hook_rtx_tree_int_null)
2015 DEFHOOK
2016 (return_in_memory,
2017 "",
2018 bool, (const_tree type, const_tree fntype),
2019 default_return_in_memory)
2020
2021 DEFHOOK
2022 (return_in_msb,
2023 "",
2024 bool, (const_tree type),
2025 hook_bool_const_tree_false)
2026
2027 /* Return true if a parameter must be passed by reference. TYPE may
2028 be null if this is a libcall. CA may be null if this query is
2029 from __builtin_va_arg. */
2030 DEFHOOK
2031 (pass_by_reference,
2032 "",
2033 bool,
2034 (cumulative_args_t cum, enum machine_mode mode, const_tree type, bool named),
2035 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false)
2036
2037 DEFHOOK
2038 (expand_builtin_saveregs,
2039 "",
2040 rtx, (void),
2041 default_expand_builtin_saveregs)
2042
2043 /* Returns pretend_argument_size. */
2044 DEFHOOK
2045 (setup_incoming_varargs,
2046 "",
2047 void, (cumulative_args_t args_so_far, enum machine_mode mode, tree type,
2048 int *pretend_args_size, int second_time),
2049 default_setup_incoming_varargs)
2050
2051 DEFHOOK
2052 (strict_argument_naming,
2053 "",
2054 bool, (cumulative_args_t ca),
2055 hook_bool_CUMULATIVE_ARGS_false)
2056
2057 /* Returns true if we should use
2058 targetm.calls.setup_incoming_varargs() and/or
2059 targetm.calls.strict_argument_naming(). */
2060 DEFHOOK
2061 (pretend_outgoing_varargs_named,
2062 "",
2063 bool, (cumulative_args_t ca),
2064 default_pretend_outgoing_varargs_named)
2065
2066 /* Given a complex type T, return true if a parameter of type T
2067 should be passed as two scalars. */
2068 DEFHOOK
2069 (split_complex_arg,
2070 "",
2071 bool, (const_tree type), NULL)
2072
2073 /* Return true if type T, mode MODE, may not be passed in registers,
2074 but must be passed on the stack. */
2075 /* ??? This predicate should be applied strictly after pass-by-reference.
2076 Need audit to verify that this is the case. */
2077 DEFHOOK
2078 (must_pass_in_stack,
2079 "",
2080 bool, (enum machine_mode mode, const_tree type),
2081 must_pass_in_stack_var_size_or_pad)
2082
2083 /* Return true if type TYPE, mode MODE, which is passed by reference,
2084 should have the object copy generated by the callee rather than
2085 the caller. It is never called for TYPE requiring constructors. */
2086 DEFHOOK
2087 (callee_copies,
2088 "",
2089 bool,
2090 (cumulative_args_t cum, enum machine_mode mode, const_tree type, bool named),
2091 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false)
2092
2093 /* Return zero for arguments passed entirely on the stack or entirely
2094 in registers. If passed in both, return the number of bytes passed
2095 in registers; the balance is therefore passed on the stack. */
2096 DEFHOOK
2097 (arg_partial_bytes,
2098 "",
2099 int, (cumulative_args_t cum, enum machine_mode mode, tree type, bool named),
2100 hook_int_CUMULATIVE_ARGS_mode_tree_bool_0)
2101
2102 /* Update the state in CA to advance past an argument in the
2103 argument list. The values MODE, TYPE, and NAMED describe that
2104 argument. */
2105 DEFHOOK
2106 (function_arg_advance,
2107 "",
2108 void,
2109 (cumulative_args_t ca, enum machine_mode mode, const_tree type, bool named),
2110 default_function_arg_advance)
2111
2112 /* Return zero if the argument described by the state of CA should
2113 be placed on a stack, or a hard register in which to store the
2114 argument. The values MODE, TYPE, and NAMED describe that
2115 argument. */
2116 DEFHOOK
2117 (function_arg,
2118 "",
2119 rtx, (cumulative_args_t ca, enum machine_mode mode, const_tree type,
2120 bool named),
2121 default_function_arg)
2122
2123 /* Likewise, but for machines with register windows. Return the
2124 location where the argument will appear to the callee. */
2125 DEFHOOK
2126 (function_incoming_arg,
2127 "",
2128 rtx, (cumulative_args_t ca, enum machine_mode mode, const_tree type,
2129 bool named),
2130 default_function_incoming_arg)
2131
2132 DEFHOOK
2133 (function_arg_boundary,
2134 "",
2135 unsigned int, (enum machine_mode mode, const_tree type),
2136 default_function_arg_boundary)
2137
2138 DEFHOOK
2139 (function_arg_round_boundary,
2140 "Normally, the size of an argument is rounded up to @code{PARM_BOUNDARY},\n\
2141 which is the default value for this hook. You can define this hook to\n\
2142 return a different value if an argument size must be rounded to a larger\n\
2143 value.",
2144 unsigned int, (enum machine_mode mode, const_tree type),
2145 default_function_arg_round_boundary)
2146
2147 /* Return the diagnostic message string if function without a prototype
2148 is not allowed for this 'val' argument; NULL otherwise. */
2149 DEFHOOK
2150 (invalid_arg_for_unprototyped_fn,
2151 "",
2152 const char *, (const_tree typelist, const_tree funcdecl, const_tree val),
2153 hook_invalid_arg_for_unprototyped_fn)
2154
2155 /* Return an rtx for the return value location of the function
2156 specified by FN_DECL_OR_TYPE with a return type of RET_TYPE. */
2157 DEFHOOK
2158 (function_value,
2159 "",
2160 rtx, (const_tree ret_type, const_tree fn_decl_or_type, bool outgoing),
2161 default_function_value)
2162
2163 /* Return the rtx for the result of a libcall of mode MODE,
2164 calling the function FN_NAME. */
2165 DEFHOOK
2166 (libcall_value,
2167 "",
2168 rtx, (enum machine_mode mode, const_rtx fun),
2169 default_libcall_value)
2170
2171 /* Return true if REGNO is a possible register number for
2172 a function value as seen by the caller. */
2173 DEFHOOK
2174 (function_value_regno_p,
2175 "",
2176 bool, (const unsigned int regno),
2177 default_function_value_regno_p)
2178
2179 /* ??? Documenting this hook requires a GFDL license grant. */
2180 DEFHOOK_UNDOC
2181 (internal_arg_pointer,
2182 "Return an rtx for the argument pointer incoming to the\
2183 current function.",
2184 rtx, (void),
2185 default_internal_arg_pointer)
2186
2187 /* Update the current function stack boundary if needed. */
2188 DEFHOOK
2189 (update_stack_boundary,
2190 "",
2191 void, (void), NULL)
2192
2193 /* Handle stack alignment and return an rtx for Dynamic Realign
2194 Argument Pointer if necessary. */
2195 DEFHOOK
2196 (get_drap_rtx,
2197 "",
2198 rtx, (void), NULL)
2199
2200 /* Return true if all function parameters should be spilled to the
2201 stack. */
2202 DEFHOOK
2203 (allocate_stack_slots_for_args,
2204 "",
2205 bool, (void),
2206 hook_bool_void_true)
2207
2208 /* Return an rtx for the static chain for FNDECL. If INCOMING_P is true,
2209 then it should be for the callee; otherwise for the caller. */
2210 DEFHOOK
2211 (static_chain,
2212 "",
2213 rtx, (const_tree fndecl, bool incoming_p),
2214 default_static_chain)
2215
2216 /* Fill in the trampoline at MEM with a call to FNDECL and a
2217 static chain value of CHAIN. */
2218 DEFHOOK
2219 (trampoline_init,
2220 "",
2221 void, (rtx m_tramp, tree fndecl, rtx static_chain),
2222 default_trampoline_init)
2223
2224 /* Adjust the address of the trampoline in a target-specific way. */
2225 DEFHOOK
2226 (trampoline_adjust_address,
2227 "",
2228 rtx, (rtx addr), NULL)
2229
2230 /* Return the number of bytes of its own arguments that a function
2231 pops on returning, or 0 if the function pops no arguments and the
2232 caller must therefore pop them all after the function returns. */
2233 /* ??? tm.texi has no types for the parameters. */
2234 DEFHOOK
2235 (return_pops_args,
2236 "",
2237 int, (tree fundecl, tree funtype, int size),
2238 default_return_pops_args)
2239
2240 /* Return a mode wide enough to copy any function value that might be
2241 returned. */
2242 DEFHOOK
2243 (get_raw_result_mode,
2244 "This target hook returns the mode to be used when accessing raw return\
2245 registers in @code{__builtin_return}. Define this macro if the value\
2246 in @var{reg_raw_mode} is not correct.",
2247 enum machine_mode, (int regno),
2248 default_get_reg_raw_mode)
2249
2250 /* Return a mode wide enough to copy any argument value that might be
2251 passed. */
2252 DEFHOOK
2253 (get_raw_arg_mode,
2254 "This target hook returns the mode to be used when accessing raw argument\
2255 registers in @code{__builtin_apply_args}. Define this macro if the value\
2256 in @var{reg_raw_mode} is not correct.",
2257 enum machine_mode, (int regno),
2258 default_get_reg_raw_mode)
2259
2260 HOOK_VECTOR_END (calls)
2261
2262 /* Return the diagnostic message string if conversion from FROMTYPE
2263 to TOTYPE is not allowed, NULL otherwise. */
2264 DEFHOOK
2265 (invalid_conversion,
2266 "",
2267 const char *, (const_tree fromtype, const_tree totype),
2268 hook_constcharptr_const_tree_const_tree_null)
2269
2270 /* Return the diagnostic message string if the unary operation OP is
2271 not permitted on TYPE, NULL otherwise. */
2272 DEFHOOK
2273 (invalid_unary_op,
2274 "",
2275 const char *, (int op, const_tree type),
2276 hook_constcharptr_int_const_tree_null)
2277
2278 /* Return the diagnostic message string if the binary operation OP
2279 is not permitted on TYPE1 and TYPE2, NULL otherwise. */
2280 DEFHOOK
2281 (invalid_binary_op,
2282 "",
2283 const char *, (int op, const_tree type1, const_tree type2),
2284 hook_constcharptr_int_const_tree_const_tree_null)
2285
2286 /* Return the diagnostic message string if TYPE is not valid as a
2287 function parameter type, NULL otherwise. */
2288 DEFHOOK
2289 (invalid_parameter_type,
2290 "",
2291 const char *, (const_tree type),
2292 hook_constcharptr_const_tree_null)
2293
2294 /* Return the diagnostic message string if TYPE is not valid as a
2295 function return type, NULL otherwise. */
2296 DEFHOOK
2297 (invalid_return_type,
2298 "",
2299 const char *, (const_tree type),
2300 hook_constcharptr_const_tree_null)
2301
2302 /* If values of TYPE are promoted to some other type when used in
2303 expressions (analogous to the integer promotions), return that type,
2304 or NULL_TREE otherwise. */
2305 DEFHOOK
2306 (promoted_type,
2307 "",
2308 tree, (const_tree type),
2309 hook_tree_const_tree_null)
2310
2311 /* Convert EXPR to TYPE, if target-specific types with special conversion
2312 rules are involved. Return the converted expression, or NULL to apply
2313 the standard conversion rules. */
2314 DEFHOOK
2315 (convert_to_type,
2316 "",
2317 tree, (tree type, tree expr),
2318 hook_tree_tree_tree_null)
2319
2320 /* Return the class for a secondary reload, and fill in extra information. */
2321 DEFHOOK
2322 (secondary_reload,
2323 "",
2324 reg_class_t,
2325 (bool in_p, rtx x, reg_class_t reload_class, enum machine_mode reload_mode,
2326 secondary_reload_info *sri),
2327 default_secondary_reload)
2328
2329 /* Given an rtx X being reloaded into a reg required to be in class CLASS,
2330 return the class of reg to actually use. */
2331 DEFHOOK
2332 (preferred_reload_class,
2333 "",
2334 reg_class_t,
2335 (rtx x, reg_class_t rclass),
2336 default_preferred_reload_class)
2337
2338 /* Like TARGET_PREFERRED_RELOAD_CLASS, but for output reloads instead of
2339 input reloads. */
2340 DEFHOOK
2341 (preferred_output_reload_class,
2342 "",
2343 reg_class_t,
2344 (rtx x, reg_class_t rclass),
2345 default_preferred_output_reload_class)
2346
2347 DEFHOOK
2348 (class_likely_spilled_p,
2349 "",
2350 bool, (reg_class_t rclass),
2351 default_class_likely_spilled_p)
2352
2353 /* Return the maximum number of consecutive registers
2354 needed to represent mode MODE in a register of class RCLASS. */
2355 DEFHOOK
2356 (class_max_nregs,
2357 "",
2358 unsigned char, (reg_class_t rclass, enum machine_mode mode),
2359 default_class_max_nregs)
2360
2361 DEFHOOK
2362 (preferred_rename_class,
2363 "A target hook that places additional preference on the register\
2364 class to use when it is necessary to rename a register in class\
2365 @var{rclass} to another class, or perhaps @var{NO_REGS}, if no\
2366 preferred register class is found or hook @code{preferred_rename_class}\
2367 is not implemented.\
2368 Sometimes returning a more restrictive class makes better code. For\
2369 example, on ARM, thumb-2 instructions using @code{LO_REGS} may be\
2370 smaller than instructions using @code{GENERIC_REGS}. By returning\
2371 @code{LO_REGS} from @code{preferred_rename_class}, code size can\
2372 be reduced.",
2373 reg_class_t, (reg_class_t rclass),
2374 default_preferred_rename_class)
2375
2376 /* This target hook allows the backend to perform additional
2377 processing while initializing for variable expansion. */
2378 DEFHOOK
2379 (expand_to_rtl_hook,
2380 "",
2381 void, (void),
2382 hook_void_void)
2383
2384 /* This target hook allows the backend to perform additional
2385 instantiations on rtx that are not actually in insns yet,
2386 but will be later. */
2387 DEFHOOK
2388 (instantiate_decls,
2389 "",
2390 void, (void),
2391 hook_void_void)
2392
2393 /* Return true if is OK to use a hard register REGNO as scratch register
2394 in peephole2. */
2395 DEFHOOK
2396 (hard_regno_scratch_ok,
2397 "",
2398 bool, (unsigned int regno),
2399 default_hard_regno_scratch_ok)
2400
2401 /* Return the smallest number of different values for which it is best to
2402 use a jump-table instead of a tree of conditional branches. */
2403 DEFHOOK
2404 (case_values_threshold,
2405 "",
2406 unsigned int, (void),
2407 default_case_values_threshold)
2408
2409 /* Retutn true if a function must have and use a frame pointer. */
2410 DEFHOOK
2411 (frame_pointer_required,
2412 "",
2413 bool, (void),
2414 hook_bool_void_false)
2415
2416 /* Returns true if the compiler is allowed to try to replace register number
2417 from-reg with register number to-reg. */
2418 DEFHOOK
2419 (can_eliminate,
2420 "",
2421 bool, (const int from_reg, const int to_reg),
2422 hook_bool_const_int_const_int_true)
2423
2424 /* Modify any or all of fixed_regs, call_used_regs, global_regs,
2425 reg_names, and reg_class_contents to account of the vagaries of the
2426 target. */
2427 DEFHOOK
2428 (conditional_register_usage,
2429 "",
2430 void, (void),
2431 hook_void_void)
2432
2433 /* Functions specific to the C family of frontends. */
2434 #undef HOOK_PREFIX
2435 #define HOOK_PREFIX "TARGET_C_"
2436 HOOK_VECTOR (TARGET_C, c)
2437
2438 /* ??? Documenting this hook requires a GFDL license grant. */
2439 DEFHOOK_UNDOC
2440 (mode_for_suffix,
2441 "Return machine mode for non-standard constant literal suffix @var{c},\
2442 or VOIDmode if non-standard suffixes are unsupported.",
2443 enum machine_mode, (char c),
2444 default_mode_for_suffix)
2445
2446 HOOK_VECTOR_END (c)
2447
2448 /* Functions specific to the C++ frontend. */
2449 #undef HOOK_PREFIX
2450 #define HOOK_PREFIX "TARGET_CXX_"
2451 HOOK_VECTOR (TARGET_CXX, cxx)
2452
2453 /* Return the integer type used for guard variables. */
2454 DEFHOOK
2455 (guard_type,
2456 "",
2457 tree, (void),
2458 default_cxx_guard_type)
2459
2460 /* Return true if only the low bit of the guard should be tested. */
2461 DEFHOOK
2462 (guard_mask_bit,
2463 "",
2464 bool, (void),
2465 hook_bool_void_false)
2466
2467 /* Returns the size of the array cookie for an array of type. */
2468 DEFHOOK
2469 (get_cookie_size,
2470 "",
2471 tree, (tree type),
2472 default_cxx_get_cookie_size)
2473
2474 /* Returns true if the element size should be stored in the array cookie. */
2475 DEFHOOK
2476 (cookie_has_size,
2477 "",
2478 bool, (void),
2479 hook_bool_void_false)
2480
2481 /* Allows backends to perform additional processing when
2482 deciding if a class should be exported or imported. */
2483 DEFHOOK
2484 (import_export_class,
2485 "",
2486 int, (tree type, int import_export), NULL)
2487
2488 /* Returns true if constructors and destructors return "this". */
2489 DEFHOOK
2490 (cdtor_returns_this,
2491 "",
2492 bool, (void),
2493 hook_bool_void_false)
2494
2495 /* Returns true if the key method for a class can be an inline
2496 function, so long as it is not declared inline in the class
2497 itself. Returning true is the behavior required by the Itanium C++ ABI. */
2498 DEFHOOK
2499 (key_method_may_be_inline,
2500 "",
2501 bool, (void),
2502 hook_bool_void_true)
2503
2504 DEFHOOK
2505 (determine_class_data_visibility,
2506 "@var{decl} is a virtual table, virtual table table, typeinfo object,\
2507 or other similar implicit class data object that will be emitted with\
2508 external linkage in this translation unit. No ELF visibility has been\
2509 explicitly specified. If the target needs to specify a visibility\
2510 other than that of the containing class, use this hook to set\
2511 @code{DECL_VISIBILITY} and @code{DECL_VISIBILITY_SPECIFIED}.",
2512 void, (tree decl),
2513 hook_void_tree)
2514
2515 /* Returns true (the default) if virtual tables and other
2516 similar implicit class data objects are always COMDAT if they
2517 have external linkage. If this hook returns false, then
2518 class data for classes whose virtual table will be emitted in
2519 only one translation unit will not be COMDAT. */
2520 DEFHOOK
2521 (class_data_always_comdat,
2522 "",
2523 bool, (void),
2524 hook_bool_void_true)
2525
2526 /* Returns true (the default) if the RTTI for the basic types,
2527 which is always defined in the C++ runtime, should be COMDAT;
2528 false if it should not be COMDAT. */
2529 DEFHOOK
2530 (library_rtti_comdat,
2531 "",
2532 bool, (void),
2533 hook_bool_void_true)
2534
2535 /* Returns true if __aeabi_atexit should be used to register static
2536 destructors. */
2537 DEFHOOK
2538 (use_aeabi_atexit,
2539 "",
2540 bool, (void),
2541 hook_bool_void_false)
2542
2543 /* Returns true if target may use atexit in the same manner as
2544 __cxa_atexit to register static destructors. */
2545 DEFHOOK
2546 (use_atexit_for_cxa_atexit,
2547 "",
2548 bool, (void),
2549 hook_bool_void_false)
2550
2551 DEFHOOK
2552 (adjust_class_at_definition,
2553 "@var{type} is a C++ class (i.e., RECORD_TYPE or UNION_TYPE) that has just\
2554 been defined. Use this hook to make adjustments to the class (eg, tweak\
2555 visibility or perform any other required target modifications).",
2556 void, (tree type),
2557 hook_void_tree)
2558
2559 DEFHOOK
2560 (decl_mangling_context,
2561 "Return target-specific mangling context of @var{decl} or @code{NULL_TREE}.",
2562 tree, (const_tree decl),
2563 hook_tree_const_tree_null)
2564
2565 HOOK_VECTOR_END (cxx)
2566
2567 /* Functions and data for emulated TLS support. */
2568 #undef HOOK_PREFIX
2569 #define HOOK_PREFIX "TARGET_EMUTLS_"
2570 HOOK_VECTOR (TARGET_EMUTLS, emutls)
2571
2572 /* Name of the address and common functions. */
2573 DEFHOOKPOD
2574 (get_address,
2575 "",
2576 const char *, "__builtin___emutls_get_address")
2577
2578 DEFHOOKPOD
2579 (register_common,
2580 "",
2581 const char *, "__builtin___emutls_register_common")
2582
2583 /* Prefixes for proxy variable and template. */
2584 DEFHOOKPOD
2585 (var_section,
2586 "",
2587 const char *, NULL)
2588
2589 DEFHOOKPOD
2590 (tmpl_section,
2591 "",
2592 const char *, NULL)
2593
2594 /* Prefixes for proxy variable and template. */
2595 DEFHOOKPOD
2596 (var_prefix,
2597 "",
2598 const char *, NULL)
2599
2600 DEFHOOKPOD
2601 (tmpl_prefix,
2602 "",
2603 const char *, NULL)
2604
2605 /* Function to generate field definitions of the proxy variable. */
2606 DEFHOOK
2607 (var_fields,
2608 "",
2609 tree, (tree type, tree *name),
2610 default_emutls_var_fields)
2611
2612 /* Function to initialize a proxy variable. */
2613 DEFHOOK
2614 (var_init,
2615 "",
2616 tree, (tree var, tree decl, tree tmpl_addr),
2617 default_emutls_var_init)
2618
2619 /* Whether we are allowed to alter the usual alignment of the
2620 proxy variable. */
2621 DEFHOOKPOD
2622 (var_align_fixed,
2623 "",
2624 bool, false)
2625
2626 /* Whether we can emit debug information for TLS vars. */
2627 DEFHOOKPOD
2628 (debug_form_tls_address,
2629 "",
2630 bool, false)
2631
2632 HOOK_VECTOR_END (emutls)
2633
2634 #undef HOOK_PREFIX
2635 #define HOOK_PREFIX "TARGET_OPTION_"
2636 HOOK_VECTOR (TARGET_OPTION_HOOKS, target_option_hooks)
2637
2638 /* Function to validate the attribute((option(...))) strings or NULL. If
2639 the option is validated, it is assumed that DECL_FUNCTION_SPECIFIC will
2640 be filled in in the function decl node. */
2641 DEFHOOK
2642 (valid_attribute_p,
2643 "",
2644 bool, (tree fndecl, tree name, tree args, int flags),
2645 default_target_option_valid_attribute_p)
2646
2647 /* Function to save any extra target state in the target options structure. */
2648 DEFHOOK
2649 (save,
2650 "",
2651 void, (struct cl_target_option *ptr), NULL)
2652
2653 /* Function to restore any extra target state from the target options
2654 structure. */
2655 DEFHOOK
2656 (restore,
2657 "",
2658 void, (struct cl_target_option *ptr), NULL)
2659
2660 /* Function to print any extra target state from the target options
2661 structure. */
2662 DEFHOOK
2663 (print,
2664 "",
2665 void, (FILE *file, int indent, struct cl_target_option *ptr), NULL)
2666
2667 /* Function to parse arguments to be validated for #pragma option, and to
2668 change the state if the options are valid. If the first argument is
2669 NULL, the second argument specifies the default options to use. Return
2670 true if the options are valid, and set the current state. */
2671 /* ??? The documentation in tm.texi is incomplete. */
2672 DEFHOOK
2673 (pragma_parse,
2674 "",
2675 bool, (tree args, tree pop_target),
2676 default_target_option_pragma_parse)
2677
2678 /* Do option overrides for the target. */
2679 DEFHOOK
2680 (override,
2681 "",
2682 void, (void),
2683 hook_void_void)
2684
2685 /* Function to determine if one function can inline another function. */
2686 #undef HOOK_PREFIX
2687 #define HOOK_PREFIX "TARGET_"
2688 DEFHOOK
2689 (can_inline_p,
2690 "",
2691 bool, (tree caller, tree callee),
2692 default_target_can_inline_p)
2693
2694 HOOK_VECTOR_END (target_option)
2695
2696 /* For targets that need to mark extra registers as live on entry to
2697 the function, they should define this target hook and set their
2698 bits in the bitmap passed in. */
2699 DEFHOOK
2700 (extra_live_on_entry,
2701 "",
2702 void, (bitmap regs),
2703 hook_void_bitmap)
2704
2705 /* Fill in additional registers set up by prologue into a regset. */
2706 DEFHOOK
2707 (set_up_by_prologue,
2708 "This hook should add additional registers that are computed by the prologue\
2709 to the hard regset for shrink-wrapping optimization purposes.",
2710 void, (struct hard_reg_set_container *),
2711 NULL)
2712
2713 /* Determine the type of unwind info to emit for debugging. */
2714 DEFHOOK
2715 (debug_unwind_info,
2716 "",
2717 enum unwind_info_type, (void),
2718 default_debug_unwind_info)
2719
2720 DEFHOOKPOD
2721 (atomic_test_and_set_trueval,
2722 "This value should be set if the result written by\
2723 @code{atomic_test_and_set} is not exactly 1, i.e. the\
2724 @code{bool} @code{true}.",
2725 unsigned char, 1)
2726
2727 /* Leave the boolean fields at the end. */
2728
2729 /* True if we can create zeroed data by switching to a BSS section
2730 and then using ASM_OUTPUT_SKIP to allocate the space. */
2731 DEFHOOKPOD
2732 (have_switchable_bss_sections,
2733 "",
2734 bool, false)
2735
2736 /* True if "native" constructors and destructors are supported,
2737 false if we're using collect2 for the job. */
2738 DEFHOOKPOD
2739 (have_ctors_dtors,
2740 "",
2741 bool, false)
2742
2743 /* True if thread-local storage is supported. */
2744 DEFHOOKPOD
2745 (have_tls,
2746 "",
2747 bool, false)
2748
2749 /* True if a small readonly data section is supported. */
2750 DEFHOOKPOD
2751 (have_srodata_section,
2752 "",
2753 bool, false)
2754
2755 /* True if EH frame info sections should be zero-terminated. */
2756 DEFHOOKPOD
2757 (terminate_dw2_eh_frame_info,
2758 "",
2759 bool, true)
2760
2761 /* True if #NO_APP should be emitted at the beginning of assembly output. */
2762 DEFHOOKPOD
2763 (asm_file_start_app_off,
2764 "",
2765 bool, false)
2766
2767 /* True if output_file_directive should be called for main_input_filename
2768 at the beginning of assembly output. */
2769 DEFHOOKPOD
2770 (asm_file_start_file_directive,
2771 "",
2772 bool, false)
2773
2774 /* True if the target is allowed to reorder memory accesses unless
2775 synchronization is explicitly requested. */
2776 DEFHOOKPOD
2777 (relaxed_ordering,
2778 "",
2779 bool, false)
2780
2781 /* Returns true if we should generate exception tables for use with the
2782 ARM EABI. The effects the encoding of function exception specifications. */
2783 DEFHOOKPOD
2784 (arm_eabi_unwinder,
2785 "",
2786 bool, false)
2787
2788 DEFHOOKPOD
2789 (want_debug_pub_sections,
2790 "True if the @code{.debug_pubtypes} and @code{.debug_pubnames} sections\
2791 should be emitted. These sections are not used on most platforms, and\
2792 in particular GDB does not use them.",
2793 bool, false)
2794
2795 DEFHOOKPOD
2796 (force_at_comp_dir,
2797 "True if the @code{DW_AT_comp_dir} attribute should be emitted for each \
2798 compilation unit. This attribute is required for the darwin linker \
2799 to emit debug information.",
2800 bool, false)
2801
2802 DEFHOOKPOD
2803 (delay_sched2, "True if sched2 is not to be run at its normal place. \
2804 This usually means it will be run as part of machine-specific reorg.",
2805 bool, false)
2806
2807 DEFHOOKPOD
2808 (delay_vartrack, "True if vartrack is not to be run at its normal place. \
2809 This usually means it will be run as part of machine-specific reorg.",
2810 bool, false)
2811
2812 /* Leave the boolean fields at the end. */
2813
2814 /* Close the 'struct gcc_target' definition. */
2815 HOOK_VECTOR_END (C90_EMPTY_HACK)