]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/target.def
2012-07-13 Richard Guenther <rguenther@suse.de>
[thirdparty/gcc.git] / gcc / target.def
CommitLineData
202d6e5f 1/* Target hook definitions.
fba5dd52 2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
2e851bb8 3 2011, 2012
202d6e5f 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
c94b1d0e 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"
202d6e5f 27
c94b1d0e 28#undef HOOK_TYPE
29#define HOOK_TYPE "Target Hook"
202d6e5f 30
c94b1d0e 31HOOK_VECTOR (TARGET_INITIALIZER, gcc_target)
202d6e5f 32
33/* Functions that output assembler for the target. */
34#define HOOK_PREFIX "TARGET_ASM_"
35HOOK_VECTOR (TARGET_ASM_OUT, asm_out)
36
37/* Opening and closing parentheses for asm expression grouping. */
38DEFHOOKPOD
39(open_paren,
40 "",
41 const char *, "(")
42DEFHOOKPODX (close_paren, const char *, ")")
43
44/* Assembler instructions for creating various kinds of integer object. */
45DEFHOOKPOD
46(byte_op,
47 "",
48 const char *, "\t.byte\t")
49DEFHOOKPOD (aligned_op, "*", struct asm_int_op, TARGET_ASM_ALIGNED_INT_OP)
50DEFHOOKPOD (unaligned_op, "*", struct asm_int_op, TARGET_ASM_UNALIGNED_INT_OP)
51
ae2b9f1f 52/* The maximum number of bytes to skip when applying
53 LABEL_ALIGN_AFTER_BARRIER. */
54DEFHOOK
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. */
62DEFHOOK
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. */
70DEFHOOK
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. */
78DEFHOOK
79(jump_align_max_skip,
80 "",
81 int, (rtx label),
82 default_jump_align_max_skip)
83
202d6e5f 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. */
89DEFHOOK
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. */
98DEFHOOK
99(globalize_label,
100 "",
101 void, (FILE *stream, const char *name),
102 default_globalize_label)
103
104/* Output code that will globalize a declaration. */
105DEFHOOK
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. */
115DEFHOOK
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. */
122DEFHOOK
123(emit_except_table_label,
124 "",
125 void, (FILE *stream),
126 default_emit_except_table_label)
127
37966699 128/* Emit a directive for setting the personality for the function. */
129DEFHOOK
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
202d6e5f 137/* Emit any directives required to unwind this instruction. */
138DEFHOOK
139(unwind_emit,
140 "",
141 void, (FILE *stream, rtx insn),
53b72e99 142 NULL)
202d6e5f 143
f3e8e368 144DEFHOOKPOD
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
cb274b8f 151/* Generate an internal label.
152 For now this is just a wrapper for ASM_GENERATE_INTERNAL_LABEL. */
153DEFHOOK_UNDOC
154(generate_internal_label,
155 "",
156 void, (char *buf, const char *prefix, unsigned long labelno),
157 default_generate_internal_label)
158
202d6e5f 159/* Output an internal label. */
160DEFHOOK
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. */
8c38d114 167DEFHOOK
202d6e5f 168(declare_constant_name,
169 "",
8c38d114 170 void, (FILE *file, const char *name, const_tree expr, HOST_WIDE_INT size),
202d6e5f 171 default_asm_declare_constant_name)
172
173/* Emit a ttype table reference to a typeinfo object. */
174DEFHOOK
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. */
182DEFHOOK
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. */
189DEFHOOK
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. */
196DEFHOOK
197(function_end_prologue,
198 "",
199 void, (FILE *file),
200 no_asm_to_stream)
201
202/* Output the assembler code for start of epilogue. */
203DEFHOOK
204(function_begin_epilogue,
205 "",
206 void, (FILE *file),
207 no_asm_to_stream)
208
209/* Output the assembler code for function exit. */
210DEFHOOK
211(function_epilogue,
212 "",
213 void, (FILE *file, HOST_WIDE_INT size),
214 default_function_pro_epilogue)
215
216/* Initialize target-specific sections. */
217DEFHOOK
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. */
226DEFHOOK
227(named_section,
228 "",
229 void, (const char *name, unsigned int flags, tree decl),
230 default_no_named_section)
231
3b73548b 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. */
239DEFHOOK
240(function_section,
241 "",
242 section *, (tree decl, enum node_frequency freq, bool startup, bool exit),
243 default_function_section)
244
3b3edcd4 245/* Output the assembler code for function exit. */
246DEFHOOK
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
202d6e5f 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. */
260DEFHOOK
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. */
270DEFHOOK
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. */
278DEFHOOK
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. */
286DEFHOOK
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. */
293DEFHOOK
294(function_rodata_section,
295 "",
296 section *, (tree decl),
297 default_function_rodata_section)
298
6e71bd21 299/* Nonnull if the target wants to override the default ".rodata" prefix
300 for mergeable data sections. */
301DEFHOOKPOD
302(mergeable_rodata_prefix,
303 "Usually, the compiler uses the prefix @code{\".rodata\"} to construct\n\
304section names for mergeable constant data. Define this macro to override\n\
305the string if a different section name should be used.",
306 const char *, ".rodata")
307
e3ef604c 308/* Return the section to be used for transactional memory clone tables. */
309DEFHOOK
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
202d6e5f 315/* Output a constructor for a symbol with a given priority. */
316DEFHOOK
317(constructor,
318 "",
319 void, (rtx symbol, int priority), NULL)
320
321/* Output a destructor for a symbol with a given priority. */
322DEFHOOK
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. */
332DEFHOOK
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. */
345DEFHOOK
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. */
354DEFHOOK
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. */
361DEFHOOK
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. */
369DEFHOOK
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. */
377DEFHOOK
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. */
385DEFHOOK
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. */
393DEFHOOK
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. */
401DEFHOOK
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. */
408DEFHOOK
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. */
418DEFHOOKPOD
419(record_gcc_switches_section,
420 "",
421 const char *, ".GCC.command.line")
422
423/* Output the definition of a section anchor. */
424DEFHOOK
425(output_anchor,
426 "",
427 void, (rtx x),
428 default_asm_output_anchor)
429
367b1459 430DEFHOOK
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
202d6e5f 439/* Output a DTP-relative reference to a TLS symbol. */
440DEFHOOK
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. */
447DEFHOOK
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. */
454DEFHOOK
455(trampoline_template,
456 "",
457 void, (FILE *f),
458 NULL)
459
e2823fde 460DEFHOOK
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
1282f299 471DEFHOOK
472(output_addr_const_extra,
473 "",
474 bool, (FILE *file, rtx x),
3608e5ba 475 hook_bool_FILEptr_rtx_false)
1282f299 476
202d6e5f 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. */
21cc3986 484/* ??? tm.texi only documents the old macro PRINT_OPERAND,
485 not this hook, and uses a different name for the argument FILE. */
202d6e5f 486DEFHOOK_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. */
21cc3986 493/* ??? tm.texi only documents the old macro PRINT_OPERAND_ADDRESS,
494 not this hook, and uses different argument names. */
202d6e5f 495DEFHOOK_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. */
21cc3986 503/* ??? tm.texi only documents the old macro PRINT_OPERAND_PUNCT_VALID_P,
504 not this hook. */
202d6e5f 505DEFHOOK_UNDOC
506(print_operand_punct_valid_p,
507 "",
508 bool ,(unsigned char code),
509 default_print_operand_punct_valid_p)
510
d86d364d 511/* Given a symbol name, perform same mangling as assemble_name and
512 ASM_OUTPUT_LABELREF, returning result as an IDENTIFIER_NODE. */
513DEFHOOK
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
202d6e5f 523HOOK_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_"
529HOOK_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. */
534DEFHOOK
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. */
540DEFHOOK
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. */
548DEFHOOK
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. */
555DEFHOOK
556(variable_issue,
557 "",
558 int, (FILE *file, int verbose, rtx insn, int more), NULL)
559
560/* Initialize machine-dependent scheduling code. */
561DEFHOOK
562(init,
563 "",
564 void, (FILE *file, int verbose, int max_ready), NULL)
565
566/* Finalize machine-dependent scheduling code. */
567DEFHOOK
568(finish,
569 "",
570 void, (FILE *file, int verbose), NULL)
571
572 /* Initialize machine-dependent function wide scheduling code. */
573DEFHOOK
574(init_global,
575 "",
576 void, (FILE *file, int verbose, int old_max_uid), NULL)
577
578/* Finalize machine-dependent function wide scheduling code. */
579DEFHOOK
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. */
586DEFHOOK
587(reorder,
588 "",
589 int, (FILE *file, int verbose, rtx *ready, int *n_readyp, int clock), NULL)
590
591DEFHOOK
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). */
599DEFHOOK
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
614DEFHOOK
615(init_dfa_pre_cycle_insn,
616 "",
617 void, (void), NULL)
618
619DEFHOOK
620(dfa_pre_cycle_insn,
621 "",
622 rtx, (void), NULL)
623
624DEFHOOK
625(init_dfa_post_cycle_insn,
626 "",
627 void, (void), NULL)
628
629DEFHOOK
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
639DEFHOOK
640(dfa_pre_advance_cycle,
641 "",
642 void, (void), NULL)
643
644DEFHOOK
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. */
656DEFHOOK
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. */
665DEFHOOK
666(first_cycle_multipass_dfa_lookahead_guard,
667 "",
668 int, (rtx insn), NULL)
669
44ad1e56 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. */
679DEFHOOK
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
9d75589a 690 should not be tried after issuing INSN by setting corresponding
44ad1e56 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
9d75589a 694 to a state before issuing INSN. */
44ad1e56 695DEFHOOK
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
9d75589a 708 should not be tried after issuing INSN by setting corresponding
44ad1e56 709 elements in READY_TRY to non-zero. */
710DEFHOOK
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. */
723DEFHOOK
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. */
733DEFHOOK
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. */
743DEFHOOK
744(first_cycle_multipass_fini,
745 "",
746 void, (void *data), NULL)
747
202d6e5f 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. */
ec1842d2 759DEFHOOK
202d6e5f 760(dfa_new_cycle,
761 "",
ec1842d2 762 int, (FILE *dump, int verbose, rtx insn, int last_clock,
763 int clock, int *sort_p),
202d6e5f 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). */
775DEFHOOK
776(is_costly_dependence,
777 "",
778 bool, (struct _dep *_dep, int cost, int distance), NULL)
779
780DEFHOOK_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. */
790DEFHOOK
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. */
798DEFHOOK
799(alloc_sched_context,
800 "",
801 void *, (void), NULL)
802
803/* Fills the context from the local machine scheduler context. */
804DEFHOOK
805(init_sched_context,
806 "",
807 void, (void *tc, bool clean_p), NULL)
808
809/* Sets local machine scheduler context to a saved value. */
810DEFHOOK
811(set_sched_context,
812 "",
813 void, (void *tc), NULL)
814
815/* Clears a scheduler context so it becomes like after init. */
816DEFHOOK
817(clear_sched_context,
818 "",
819 void, (void *tc), NULL)
820
821/* Frees the scheduler context. */
822DEFHOOK
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. */
837DEFHOOK
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. */
845DEFHOOK
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. */
858DEFHOOK
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. */
869DEFHOOK
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. */
877DEFHOOK
878(set_sched_flags,
879 "",
880 void, (struct spec_info_def *spec_info), NULL)
881
882DEFHOOK_UNDOC
883(get_insn_spec_ds,
884 "Return speculation types of instruction @var{insn}.",
885 int, (rtx insn), NULL)
886
887DEFHOOK_UNDOC
888(get_insn_checked_ds,
889 "Return speculation types that are checked for instruction @var{insn}",
890 int, (rtx insn), NULL)
891
892DEFHOOK_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. */
902DEFHOOK
903(sms_res_mii,
904 "",
905 int, (struct ddg *g), NULL)
906
0ac9454e 907/* The following member value is a function that initializes dispatch
908 schedling and adds instructions to dispatch window according to its
909 parameters. */
910DEFHOOK
911(dispatch_do,
912"",
913void, (rtx insn, int x),
914hook_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. */
919DEFHOOK
920(dispatch,
921"",
922bool, (rtx insn, int x),
923hook_bool_rtx_int_false)
924
6c2d9e41 925DEFHOOKPOD
926(exposed_pipeline,
927"True if the processor has an exposed pipeline, which means that not just\n\
928the order of instructions is important for correctness when scheduling, but\n\
929also the latencies of operations.",
930bool, false)
931
5b1c765d 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. */
935DEFHOOK
936(reassociation_width,
937"This hook is called by tree reassociator to determine a level of\n\
938parallelism required in output calculations chain.",
939int, (unsigned int opc, enum machine_mode mode),
940hook_int_uint_mode_1)
941
202d6e5f 942HOOK_VECTOR_END (sched)
943
944/* Functions relating to vectorization. */
945#undef HOOK_PREFIX
946#define HOOK_PREFIX "TARGET_VECTORIZE_"
947HOOK_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. */
952DEFHOOK
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. */
959DEFHOOK
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. */
967DEFHOOK
968(builtin_conversion,
969 "",
970 tree, (unsigned code, tree dest_type, tree src_type),
971 default_builtin_vectorized_conversion)
972
0822b158 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. */
202d6e5f 976DEFHOOK
977(builtin_vectorization_cost,
978 "",
0822b158 979 int, (enum vect_cost_for_stmt type_of_cost, tree vectype, int misalign),
202d6e5f 980 default_builtin_vectorization_cost)
981
982/* Return true if vector alignment is reachable (by peeling N
983 iterations) for the given type. */
984DEFHOOK
985(vector_alignment_reachable,
986 "",
987 bool, (const_tree type, bool is_packed),
988 default_builtin_vector_alignment_reachable)
989
e21c468f 990/* Return true if a vector created for vec_perm_const is valid.
991 A NULL indicates that all constants are valid permutations. */
202d6e5f 992DEFHOOK
428d5ecf 993(vec_perm_const_ok,
202d6e5f 994 "",
e21c468f 995 bool, (enum machine_mode, const unsigned char *sel),
996 NULL)
202d6e5f 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. */
1001DEFHOOK
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
4c0315d0 1008/* Return the builtin decl needed to load a vector of TYPE. */
1009DEFHOOK
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. */
1018DEFHOOK
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
b24d851f 1026/* Returns the preferred mode for SIMD operations for the specified
1027 scalar mode. */
2101edf2 1028DEFHOOK
b24d851f 1029(preferred_simd_mode,
2101edf2 1030 "",
b24d851f 1031 enum machine_mode,
2101edf2 1032 (enum machine_mode mode),
b24d851f 1033 default_preferred_simd_mode)
2101edf2 1034
421b11b1 1035/* Returns a mask of vector sizes to iterate over when auto-vectorizing
1036 after processing the preferred one derived from preferred_simd_mode. */
1037DEFHOOK
1038(autovectorize_vector_sizes,
1039 "",
1040 unsigned int,
1041 (void),
1042 default_autovectorize_vector_sizes)
1043
16dfb112 1044/* Target builtin that implements vector gather operation. */
1045DEFHOOK
1046(builtin_gather,
1047 "",
1048 tree,
1049 (const_tree mem_vectype, const_tree index_type, int scale),
1050 NULL)
1051
202d6e5f 1052HOOK_VECTOR_END (vectorize)
1053
1054#undef HOOK_PREFIX
1055#define HOOK_PREFIX "TARGET_"
1056
202d6e5f 1057/* Allow target specific overriding of option settings after options have
1058 been changed by an attribute or pragma or when it is reset at the
1059 end of the code affected by an attribute or pragma. */
1060DEFHOOK
1061(override_options_after_change,
1062 "",
1063 void, (void),
1064 hook_void_void)
1065
202d6e5f 1066DEFHOOK_UNDOC
1067(eh_return_filter_mode,
1068 "Return machine mode for filter value.",
1069 enum machine_mode, (void),
1070 default_eh_return_filter_mode)
1071
1072/* Return machine mode for libgcc expanded cmp instructions. */
1073DEFHOOK
1074(libgcc_cmp_return_mode,
1075 "",
1076 enum machine_mode, (void),
1077 default_libgcc_cmp_return_mode)
1078
1079/* Return machine mode for libgcc expanded shift instructions. */
1080DEFHOOK
1081(libgcc_shift_count_mode,
1082 "",
1083 enum machine_mode, (void),
1084 default_libgcc_shift_count_mode)
1085
1086/* Return machine mode to be used for _Unwind_Word type. */
1087DEFHOOK
1088(unwind_word_mode,
1089 "",
1090 enum machine_mode, (void),
1091 default_unwind_word_mode)
1092
1093/* Given two decls, merge their attributes and return the result. */
1094DEFHOOK
1095(merge_decl_attributes,
1096 "",
1097 tree, (tree olddecl, tree newdecl),
1098 merge_decl_attributes)
1099
1100/* Given two types, merge their attributes and return the result. */
1101DEFHOOK
1102(merge_type_attributes,
1103 "",
1104 tree, (tree type1, tree type2),
1105 merge_type_attributes)
1106
1107/* Table of machine attributes and functions to handle them.
1108 Ignored if NULL. */
1109DEFHOOKPOD
1110(attribute_table,
1111 "",
1112 const struct attribute_spec *, NULL)
1113
1114/* Return true iff attribute NAME expects a plain identifier as its first
1115 argument. */
1116DEFHOOK
1117(attribute_takes_identifier_p,
1118 "",
1119 bool, (const_tree name),
1120 hook_bool_const_tree_false)
1121
1122/* Return zero if the attributes on TYPE1 and TYPE2 are incompatible,
1123 one if they are compatible and two if they are nearly compatible
1124 (which causes a warning to be generated). */
1125DEFHOOK
1126(comp_type_attributes,
1127 "",
1128 int, (const_tree type1, const_tree type2),
1129 hook_int_const_tree_const_tree_1)
1130
1131/* Assign default attributes to the newly defined TYPE. */
1132DEFHOOK
1133(set_default_type_attributes,
1134 "",
1135 void, (tree type),
1136 hook_void_tree)
1137
1138/* Insert attributes on the newly created DECL. */
1139DEFHOOK
1140(insert_attributes,
1141 "",
1142 void, (tree node, tree *attr_ptr),
1143 hook_void_tree_treeptr)
1144
1145/* Return true if FNDECL (which has at least one machine attribute)
1146 can be inlined despite its machine attributes, false otherwise. */
1147DEFHOOK
1148(function_attribute_inlinable_p,
1149 "",
1150 bool, (const_tree fndecl),
1151 hook_bool_const_tree_false)
1152
1153/* Return true if bitfields in RECORD_TYPE should follow the
1154 Microsoft Visual C++ bitfield layout rules. */
1155DEFHOOK
1156(ms_bitfield_layout_p,
1157 "",
1158 bool, (const_tree record_type),
1159 hook_bool_const_tree_false)
1160
183dc110 1161/* For now this is only an interface to WORDS_BIG_ENDIAN for
1162 target-independent code like the front ends, need performance testing
1163 before switching completely to the target hook. */
1164DEFHOOK_UNDOC
1165(words_big_endian,
1166 "",
1167 bool, (void),
1168 targhook_words_big_endian)
1169
1170/* Likewise for FLOAT_WORDS_BIG_ENDIAN. */
1171DEFHOOK_UNDOC
1172(float_words_big_endian,
1173 "",
1174 bool, (void),
1175 targhook_float_words_big_endian)
1176
202d6e5f 1177/* True if the target supports decimal floating point. */
1178DEFHOOK
1179(decimal_float_supported_p,
1180 "",
1181 bool, (void),
1182 default_decimal_float_supported_p)
1183
1184/* True if the target supports fixed-point. */
1185DEFHOOK
1186(fixed_point_supported_p,
1187 "",
1188 bool, (void),
1189 default_fixed_point_supported_p)
1190
1191/* Return true if anonymous bitfields affect structure alignment. */
1192DEFHOOK
1193(align_anon_bitfield,
1194 "",
1195 bool, (void),
1196 hook_bool_void_false)
1197
1198/* Return true if volatile bitfields should use the narrowest type possible.
1199 Return false if they should use the container type. */
1200DEFHOOK
1201(narrow_volatile_bitfield,
1202 "",
1203 bool, (void),
1204 hook_bool_void_false)
1205
1206/* Set up target-specific built-in functions. */
1207DEFHOOK
1208(init_builtins,
1209 "",
1210 void, (void),
1211 hook_void_void)
1212
1213/* Initialize (if INITIALIZE_P is true) and return the target-specific
1214 built-in function decl for CODE.
1215 Return NULL if that is not possible. Return error_mark_node if CODE
1216 is outside of the range of valid target builtin function codes. */
1217DEFHOOK
1218(builtin_decl,
1219 "",
1220 tree, (unsigned code, bool initialize_p), NULL)
1221
1222/* Expand a target-specific builtin. */
1223DEFHOOK
1224(expand_builtin,
1225 "",
1226 rtx,
1227 (tree exp, rtx target, rtx subtarget, enum machine_mode mode, int ignore),
1228 default_expand_builtin)
1229
1230/* Select a replacement for a target-specific builtin. This is done
1231 *before* regular type checking, and so allows the target to
1232 implement a crude form of function overloading. The result is a
1233 complete expression that implements the operation. PARAMS really
1234 has type VEC(tree,gc)*, but we don't want to include tree.h here. */
00a1fec8 1235DEFHOOK
202d6e5f 1236(resolve_overloaded_builtin,
1237 "",
00a1fec8 1238 tree, (unsigned int /*location_t*/ loc, tree fndecl, void *arglist), NULL)
202d6e5f 1239
1240/* Fold a target-specific builtin. */
bf084459 1241DEFHOOK
202d6e5f 1242(fold_builtin,
1243 "",
bf084459 1244 tree, (tree fndecl, int n_args, tree *argp, bool ignore),
202d6e5f 1245 hook_tree_tree_int_treep_bool_null)
1246
1247/* Returns a code for a target-specific builtin that implements
1248 reciprocal of the function, or NULL_TREE if not available. */
707e3139 1249DEFHOOK
202d6e5f 1250(builtin_reciprocal,
1251 "",
707e3139 1252 tree, (unsigned fn, bool md_fn, bool sqrt),
202d6e5f 1253 default_builtin_reciprocal)
1254
1255/* For a vendor-specific TYPE, return a pointer to a statically-allocated
1256 string containing the C++ mangling for TYPE. In all other cases, return
1257 NULL. */
1258DEFHOOK
1259(mangle_type,
1260 "",
1261 const char *, (const_tree type),
1262 hook_constcharptr_const_tree_null)
1263
1264/* Make any adjustments to libfunc names needed for this target. */
1265DEFHOOK
1266(init_libfuncs,
1267 "",
1268 void, (void),
1269 hook_void_void)
1270
f308a9b2 1271 /* Add a __gnu_ prefix to library functions rather than just __. */
1272DEFHOOKPOD
1273(libfunc_gnu_prefix,
1274 "If false (the default), internal library routines start with two\n\
1275underscores. If set to true, these routines start with @code{__gnu_}\n\
1276instead. E.g., @code{__muldi3} changes to @code{__gnu_muldi3}. This\n\
1277currently only affects functions defined in @file{libgcc2.c}. If this\n\
1278is set to true, the @file{tm.h} file must also\n\
1279@code{#define LIBGCC2_GNU_PREFIX}.",
1280 bool, false)
1281
202d6e5f 1282/* Given a decl, a section name, and whether the decl initializer
1283 has relocs, choose attributes for the section. */
1284/* ??? Should be merged with SELECT_SECTION and UNIQUE_SECTION. */
1285DEFHOOK
1286(section_type_flags,
1287 "",
1288 unsigned int, (tree decl, const char *name, int reloc),
1289 default_section_type_flags)
1290
1291/* True if new jumps cannot be created, to replace existing ones or
1292 not, at the current point in the compilation. */
1293DEFHOOK
1294(cannot_modify_jumps_p,
1295 "",
1296 bool, (void),
1297 hook_bool_void_false)
1298
1299/* Return a register class for which branch target register
1300 optimizations should be applied. */
1301DEFHOOK
1302(branch_target_register_class,
1303 "",
964229b7 1304 reg_class_t, (void),
202d6e5f 1305 default_branch_target_register_class)
1306
1307/* Return true if branch target register optimizations should include
1308 callee-saved registers that are not already live during the current
1309 function. AFTER_PE_GEN is true if prologues and epilogues have
1310 already been generated. */
1311DEFHOOK
1312(branch_target_register_callee_saved,
1313 "",
1314 bool, (bool after_prologue_epilogue_gen),
1315 hook_bool_bool_false)
1316
1317/* Return true if the target supports conditional execution. */
1318DEFHOOK
1319(have_conditional_execution,
1320 "",
1321 bool, (void),
1322 default_have_conditional_execution)
1323
1324/* Return a new value for loop unroll size. */
1325DEFHOOK
1326(loop_unroll_adjust,
1327 "",
1328 unsigned, (unsigned nunroll, struct loop *loop),
1329 NULL)
1330
ca316360 1331/* True if X is a legitimate MODE-mode immediate operand. */
1332DEFHOOK
1333(legitimate_constant_p,
1334 "",
1335 bool, (enum machine_mode mode, rtx x),
1336 hook_bool_mode_rtx_true)
1337
202d6e5f 1338/* True if the constant X cannot be placed in the constant pool. */
1339DEFHOOK
1340(cannot_force_const_mem,
1341 "",
7d7d7bd2 1342 bool, (enum machine_mode mode, rtx x),
1343 hook_bool_mode_rtx_false)
202d6e5f 1344
1345DEFHOOK_UNDOC
1346(cannot_copy_insn_p,
1347 "True if the insn @var{x} cannot be duplicated.",
1348 bool, (rtx), NULL)
1349
1350/* True if X is considered to be commutative. */
1351DEFHOOK
1352(commutative_p,
1353 "",
1354 bool, (const_rtx x, int outer_code),
1355 hook_bool_const_rtx_commutative_p)
1356
1357/* True if ADDR is an address-expression whose effect depends
1358 on the mode of the memory reference it is used in. */
1359DEFHOOK
1360(mode_dependent_address_p,
1361 "",
1362 bool, (const_rtx addr),
1363 default_mode_dependent_address_p)
1364
1365/* Given an invalid address X for a given machine mode, try machine-specific
1366 ways to make it legitimate. Return X or an invalid address on failure. */
1367DEFHOOK
1368(legitimize_address,
1369 "",
1370 rtx, (rtx x, rtx oldx, enum machine_mode mode),
1371 default_legitimize_address)
1372
1373/* Given an address RTX, undo the effects of LEGITIMIZE_ADDRESS. */
1374DEFHOOK
1375(delegitimize_address,
1376 "",
1377 rtx, (rtx x),
1378 delegitimize_mem_from_attrs)
1379
202e7097 1380/* Given an RTX, return true if it is not ok to emit it into debug info
1381 section. */
1382DEFHOOK
1383(const_not_ok_for_debug_p,
1384 "",
1385 bool, (rtx x),
1386 hook_bool_rtx_false)
1387
202d6e5f 1388/* Given an address RTX, say whether it is valid. */
1389DEFHOOK
1390(legitimate_address_p,
1391 "",
1392 bool, (enum machine_mode mode, rtx x, bool strict),
1393 default_legitimate_address_p)
1394
1395/* True if the given constant can be put into an object_block. */
1396DEFHOOK
1397(use_blocks_for_constant_p,
1398 "",
1399 bool, (enum machine_mode mode, const_rtx x),
1400 hook_bool_mode_const_rtx_false)
1401
1402/* The minimum and maximum byte offsets for anchored addresses. */
1403DEFHOOKPOD
1404(min_anchor_offset,
1405 "",
1406 HOST_WIDE_INT, 0)
1407
1408DEFHOOKPOD
1409(max_anchor_offset,
1410 "",
1411 HOST_WIDE_INT, 0)
1412
1413/* True if section anchors can be used to access the given symbol. */
1414DEFHOOK
1415(use_anchors_for_symbol_p,
1416 "",
1417 bool, (const_rtx x),
1418 default_use_anchors_for_symbol_p)
1419
1420/* True if it is OK to do sibling call optimization for the specified
1421 call expression EXP. DECL will be the called function, or NULL if
1422 this is an indirect call. */
1423DEFHOOK
1424(function_ok_for_sibcall,
1425 "",
1426 bool, (tree decl, tree exp),
1427 hook_bool_tree_tree_false)
1428
1429/* Establish appropriate back-end context for processing the function
1430 FNDECL. The argument might be NULL to indicate processing at top
1431 level, outside of any function scope. */
1432DEFHOOK
1433(set_current_function,
1434 "",
1435 void, (tree decl), hook_void_tree)
1436
1437/* True if EXP should be placed in a "small data" section. */
1438DEFHOOK
1439(in_small_data_p,
1440 "",
1441 bool, (const_tree exp),
1442 hook_bool_const_tree_false)
1443
1444/* True if EXP names an object for which name resolution must resolve
1445 to the current executable or shared library. */
1446DEFHOOK
1447(binds_local_p,
1448 "",
1449 bool, (const_tree exp),
1450 default_binds_local_p)
1451
8637d6a2 1452/* Check if profiling code is before or after prologue. */
1453DEFHOOK
1454(profile_before_prologue,
1455 "It returns true if target wants profile code emitted before prologue.\n\n\
1456The default version of this hook use the target macro\n\
1457@code{PROFILE_BEFORE_PROLOGUE}.",
1458 bool, (void),
1459 default_profile_before_prologue)
1460
202d6e5f 1461/* Modify and return the identifier of a DECL's external name,
1462 originally identified by ID, as required by the target,
1463 (eg, append @nn to windows32 stdcall function names).
1464 The default is to return ID without modification. */
1465DEFHOOK
1466(mangle_decl_assembler_name,
1467 "",
1468 tree, (tree decl, tree id),
1469 default_mangle_decl_assembler_name)
1470
1471/* Do something target-specific to record properties of the DECL into
1472 the associated SYMBOL_REF. */
1473DEFHOOK
1474(encode_section_info,
1475 "",
1476 void, (tree decl, rtx rtl, int new_decl_p),
1477 default_encode_section_info)
1478
1479/* Undo the effects of encode_section_info on the symbol string. */
1480DEFHOOK
1481(strip_name_encoding,
1482 "",
1483 const char *, (const char *name),
1484 default_strip_name_encoding)
1485
1486/* If shift optabs for MODE are known to always truncate the shift count,
1487 return the mask that they apply. Return 0 otherwise. */
1488DEFHOOK
1489(shift_truncation_mask,
1490 "",
1491 unsigned HOST_WIDE_INT, (enum machine_mode mode),
1492 default_shift_truncation_mask)
1493
1494/* Return the number of divisions in the given MODE that should be present,
1495 so that it is profitable to turn the division into a multiplication by
1496 the reciprocal. */
1497DEFHOOK
1498(min_divisions_for_recip_mul,
1499 "",
1500 unsigned int, (enum machine_mode mode),
1501 default_min_divisions_for_recip_mul)
1502
1503/* If the representation of integral MODE is such that values are
1504 always sign-extended to a wider mode MODE_REP then return
1505 SIGN_EXTEND. Return UNKNOWN otherwise. */
1506/* Note that the return type ought to be RTX_CODE, but that's not
1507 necessarily defined at this point. */
1508DEFHOOK
1509(mode_rep_extended,
1510 "",
1511 int, (enum machine_mode mode, enum machine_mode rep_mode),
1512 default_mode_rep_extended)
1513
1514/* True if MODE is valid for a pointer in __attribute__((mode("MODE"))). */
1515DEFHOOK
1516(valid_pointer_mode,
1517 "",
1518 bool, (enum machine_mode mode),
1519 default_valid_pointer_mode)
1520
be97d4b6 1521/* Disambiguate with errno. */
1522DEFHOOK
1523(ref_may_alias_errno,
1524 "Define this to return nonzero if the memory reference @var{ref}\
1525 may alias with the system C library errno location. The default\
1526 version of this hook assumes the system C library errno location\
1527 is either a declaration of type int or accessed by dereferencing\
1528 a pointer to int.",
1529 bool, (struct ao_ref_s *ref),
1530 default_ref_may_alias_errno)
1531
202d6e5f 1532/* Support for named address spaces. */
1533#undef HOOK_PREFIX
1534#define HOOK_PREFIX "TARGET_ADDR_SPACE_"
1535HOOK_VECTOR (TARGET_ADDR_SPACE_HOOKS, addr_space)
1536
1537/* MODE to use for a pointer into another address space. */
1538DEFHOOK
1539(pointer_mode,
1540 "",
1541 enum machine_mode, (addr_space_t address_space),
1542 default_addr_space_pointer_mode)
1543
1544/* MODE to use for an address in another address space. */
1545DEFHOOK
1546(address_mode,
1547 "",
1548 enum machine_mode, (addr_space_t address_space),
1549 default_addr_space_address_mode)
1550
1551/* True if MODE is valid for a pointer in __attribute__((mode("MODE")))
1552 in another address space. */
1553DEFHOOK
1554(valid_pointer_mode,
1555 "",
1556 bool, (enum machine_mode mode, addr_space_t as),
1557 default_addr_space_valid_pointer_mode)
1558
1559/* True if an address is a valid memory address to a given named address
1560 space for a given mode. */
1561DEFHOOK
1562(legitimate_address_p,
1563 "",
1564 bool, (enum machine_mode mode, rtx exp, bool strict, addr_space_t as),
1565 default_addr_space_legitimate_address_p)
1566
1567/* Return an updated address to convert an invalid pointer to a named
1568 address space to a valid one. If NULL_RTX is returned use machine
1569 independent methods to make the address valid. */
1570DEFHOOK
1571(legitimize_address,
1572 "",
1573 rtx, (rtx x, rtx oldx, enum machine_mode mode, addr_space_t as),
1574 default_addr_space_legitimize_address)
1575
1576/* True if one named address space is a subset of another named address. */
1577DEFHOOK
1578(subset_p,
1579 "",
d384d9d9 1580 bool, (addr_space_t subset, addr_space_t superset),
202d6e5f 1581 default_addr_space_subset_p)
1582
1583/* Function to convert an rtl expression from one address space to another. */
1584DEFHOOK
1585(convert,
1586 "",
1587 rtx, (rtx op, tree from_type, tree to_type),
1588 default_addr_space_convert)
1589
1590HOOK_VECTOR_END (addr_space)
1591
1592#undef HOOK_PREFIX
1593#define HOOK_PREFIX "TARGET_"
1594
1595/* True if MODE is valid for the target. By "valid", we mean able to
1596 be manipulated in non-trivial ways. In particular, this means all
1597 the arithmetic is supported. */
1598DEFHOOK
1599(scalar_mode_supported_p,
1600 "",
1601 bool, (enum machine_mode mode),
1602 default_scalar_mode_supported_p)
1603
1604/* Similarly for vector modes. "Supported" here is less strict. At
1605 least some operations are supported; need to check optabs or builtins
1606 for further details. */
1607DEFHOOK
1608(vector_mode_supported_p,
1609 "",
1610 bool, (enum machine_mode mode),
1611 hook_bool_mode_false)
1612
13d3ceb9 1613/* True if we should try to use a scalar mode to represent an array,
1614 overriding the usual MAX_FIXED_MODE limit. */
1615DEFHOOK
1616(array_mode_supported_p,
1617 "Return true if GCC should try to use a scalar mode to store an array\n\
1618of @var{nelems} elements, given that each element has mode @var{mode}.\n\
1619Returning true here overrides the usual @code{MAX_FIXED_MODE} limit\n\
1620and allows GCC to use any defined integer mode.\n\
1621\n\
1622One use of this hook is to support vector load and store operations\n\
1623that operate on several homogeneous vectors. For example, ARM NEON\n\
1624has operations like:\n\
1625\n\
1626@smallexample\n\
1627int8x8x3_t vld3_s8 (const int8_t *)\n\
1628@end smallexample\n\
1629\n\
1630where the return type is defined as:\n\
1631\n\
1632@smallexample\n\
1633typedef struct int8x8x3_t\n\
1634@{\n\
1635 int8x8_t val[3];\n\
1636@} int8x8x3_t;\n\
1637@end smallexample\n\
1638\n\
1639If this hook allows @code{val} to have a scalar mode, then\n\
1640@code{int8x8x3_t} can have the same mode. GCC can then store\n\
1641@code{int8x8x3_t}s in registers rather than forcing them onto the stack.",
1642 bool, (enum machine_mode mode, unsigned HOST_WIDE_INT nelems),
1643 hook_bool_mode_uhwi_false)
1644
202d6e5f 1645/* Compute cost of moving data from a register of class FROM to one of
1646 TO, using MODE. */
1647DEFHOOK
1648(register_move_cost,
1649 "",
964229b7 1650 int, (enum machine_mode mode, reg_class_t from, reg_class_t to),
202d6e5f 1651 default_register_move_cost)
1652
1653/* Compute cost of moving registers to/from memory. */
1654/* ??? Documenting the argument types for this hook requires a GFDL
1655 license grant. Also, the documentation uses a different name for RCLASS. */
9de204fa 1656DEFHOOK
202d6e5f 1657(memory_move_cost,
1658 "",
964229b7 1659 int, (enum machine_mode mode, reg_class_t rclass, bool in),
202d6e5f 1660 default_memory_move_cost)
1661
1662/* True for MODE if the target expects that registers in this mode will
1663 be allocated to registers in a small register class. The compiler is
1664 allowed to use registers explicitly used in the rtl as spill registers
1665 but it should prevent extending the lifetime of these registers. */
1666DEFHOOK
1667(small_register_classes_for_mode_p,
1668 "",
1669 bool, (enum machine_mode mode),
1670 hook_bool_mode_false)
1671
a50372fe 1672/* Register number for a flags register. Only needs to be defined if the
1673 target is constrainted to use post-reload comparison elimination. */
1674DEFHOOKPOD
1675(flags_regnum,
1676 "If the target has a dedicated flags register, and it needs to use the\
1677 post-reload comparison elimination pass, then this value should be set\
1678 appropriately.",
1679 unsigned int, INVALID_REGNUM)
1680
202d6e5f 1681/* Compute a (partial) cost for rtx X. Return true if the complete
1682 cost has been computed, and false if subexpressions should be
1683 scanned. In either case, *TOTAL contains the cost result. */
1684/* Note that CODE and OUTER_CODE ought to be RTX_CODE, but that's
1685 not necessarily defined at this point. */
1686DEFHOOK
1687(rtx_costs,
1688 "",
20d892d1 1689 bool, (rtx x, int code, int outer_code, int opno, int *total, bool speed),
1690 hook_bool_rtx_int_int_int_intp_bool_false)
202d6e5f 1691
1692/* Compute the cost of X, used as an address. Never called with
1693 invalid addresses. */
1694DEFHOOK
1695(address_cost,
1696 "",
1697 int, (rtx address, bool speed),
1698 default_address_cost)
1699
1700/* Return where to allocate pseudo for a given hard register initial value. */
1701DEFHOOK
1702(allocate_initial_value,
1703 "",
1704 rtx, (rtx hard_reg), NULL)
1705
1706/* Return nonzero if evaluating UNSPEC[_VOLATILE] X might cause a trap.
1707 FLAGS has the same meaning as in rtlanal.c: may_trap_p_1. */
1708DEFHOOK
1709(unspec_may_trap_p,
1710 "",
1711 int, (const_rtx x, unsigned flags),
1712 default_unspec_may_trap_p)
1713
1714/* Given a register, this hook should return a parallel of registers
1715 to represent where to find the register pieces. Define this hook
1716 if the register and its mode are represented in Dwarf in
1717 non-contiguous locations, or if the register should be
1718 represented in more than one register in Dwarf. Otherwise, this
1719 hook should return NULL_RTX. */
1720DEFHOOK
1721(dwarf_register_span,
1722 "",
1723 rtx, (rtx reg),
1724 hook_rtx_rtx_null)
1725
1726/* If expand_builtin_init_dwarf_reg_sizes needs to fill in table
1727 entries not corresponding directly to registers below
1728 FIRST_PSEUDO_REGISTER, this hook should generate the necessary
1729 code, given the address of the table. */
1730DEFHOOK
1731(init_dwarf_reg_sizes_extra,
1732 "",
1733 void, (tree address),
1734 hook_void_tree)
1735
1736/* Fetch the fixed register(s) which hold condition codes, for
1737 targets where it makes sense to look for duplicate assignments to
1738 the condition codes. This should return true if there is such a
1739 register, false otherwise. The arguments should be set to the
1740 fixed register numbers. Up to two condition code registers are
1741 supported. If there is only one for this target, the int pointed
1742 at by the second argument should be set to -1. */
1743DEFHOOK
1744(fixed_condition_code_regs,
1745 "",
1746 bool, (unsigned int *p1, unsigned int *p2),
1747 hook_bool_uintp_uintp_false)
1748
1749/* If two condition code modes are compatible, return a condition
1750 code mode which is compatible with both, such that a comparison
1751 done in the returned mode will work for both of the original
1752 modes. If the condition code modes are not compatible, return
1753 VOIDmode. */
1754DEFHOOK
1755(cc_modes_compatible,
1756 "",
1757 enum machine_mode, (enum machine_mode m1, enum machine_mode m2),
1758 default_cc_modes_compatible)
1759
1760/* Do machine-dependent code transformations. Called just before
1761 delayed-branch scheduling. */
1762DEFHOOK
1763(machine_dependent_reorg,
1764 "",
1765 void, (void), NULL)
1766
1767/* Create the __builtin_va_list type. */
1768DEFHOOK
1769(build_builtin_va_list,
1770 "",
1771 tree, (void),
1772 std_build_builtin_va_list)
1773
1774/* Enumerate the va list variants. */
303ece6c 1775DEFHOOK
202d6e5f 1776(enum_va_list_p,
1777 "",
1778 int, (int idx, const char **pname, tree *ptree),
1779 NULL)
1780
1781/* Get the cfun/fndecl calling abi __builtin_va_list type. */
1782DEFHOOK
1783(fn_abi_va_list,
1784 "",
1785 tree, (tree fndecl),
1786 std_fn_abi_va_list)
1787
1788/* Get the __builtin_va_list type dependent on input type. */
1789DEFHOOK
1790(canonical_va_list_type,
1791 "",
1792 tree, (tree type),
1793 std_canonical_va_list_type)
1794
1795/* ??? Documenting this hook requires a GFDL license grant. */
1796DEFHOOK_UNDOC
1797(expand_builtin_va_start,
1798"Expand the @code{__builtin_va_start} builtin.",
1799 void, (tree valist, rtx nextarg), NULL)
1800
1801/* Gimplifies a VA_ARG_EXPR. */
1802DEFHOOK
1803(gimplify_va_arg_expr,
1804 "",
1805 tree, (tree valist, tree type, gimple_seq *pre_p, gimple_seq *post_p),
1806 std_gimplify_va_arg_expr)
1807
1808/* Validity-checking routines for PCH files, target-specific.
1809 get_pch_validity returns a pointer to the data to be stored,
1810 and stores the size in its argument. pch_valid_p gets the same
1811 information back and returns NULL if the PCH is valid,
1812 or an error message if not. */
1813DEFHOOK
1814(get_pch_validity,
1815 "",
1816 void *, (size_t *sz),
1817 default_get_pch_validity)
1818
1819DEFHOOK
1820(pch_valid_p,
1821 "",
1822 const char *, (const void *data, size_t sz),
1823 default_pch_valid_p)
1824
e5d92c9b 1825DEFHOOK
1826(prepare_pch_save,
1827 "Called before writing out a PCH file. If the target has some\n\
1828garbage-collected data that needs to be in a particular state on PCH loads,\n\
1829it can use this hook to enforce that state. Very few targets need\n\
1830to do anything here.",
1831 void, (void),
1832 hook_void_void)
1833
202d6e5f 1834/* If nonnull, this function checks whether a PCH file with the
1835 given set of target flags can be used. It returns NULL if so,
1836 otherwise it returns an error message. */
1837DEFHOOK
1838(check_pch_target_flags,
1839 "",
1840 const char *, (int pch_flags), NULL)
1841
1842/* True if the compiler should give an enum type only as many
1843 bytes as it takes to represent the range of possible values of
1844 that type. */
1845DEFHOOK
1846(default_short_enums,
1847 "",
1848 bool, (void),
1849 hook_bool_void_false)
1850
1851/* This target hook returns an rtx that is used to store the address
1852 of the current frame into the built-in setjmp buffer. */
1853DEFHOOK
1854(builtin_setjmp_frame_value,
1855 "",
1856 rtx, (void),
1857 default_builtin_setjmp_frame_value)
1858
1859/* This target hook should add STRING_CST trees for any hard regs
1860 the port wishes to automatically clobber for an asm. */
1861DEFHOOK
1862(md_asm_clobbers,
1863 "",
1864 tree, (tree outputs, tree inputs, tree clobbers),
1865 hook_tree_tree_tree_tree_3rd_identity)
1866
1867/* This target hook allows the backend to specify a calling convention
1868 in the debug information. This function actually returns an
1869 enum dwarf_calling_convention, but because of forward declarations
1870 and not wanting to include dwarf2.h everywhere target.h is included
1871 the function is being declared as an int. */
1872DEFHOOK
1873(dwarf_calling_convention,
1874 "",
1875 int, (const_tree function),
1876 hook_int_const_tree_0)
1877
1878/* This target hook allows the backend to emit frame-related insns that
1879 contain UNSPECs or UNSPEC_VOLATILEs. The call frame debugging info
1880 engine will invoke it on insns of the form
1881 (set (reg) (unspec [...] UNSPEC_INDEX))
1882 and
1883 (set (reg) (unspec_volatile [...] UNSPECV_INDEX))
1884 to let the backend emit the call frame instructions. */
1885DEFHOOK
1886(dwarf_handle_frame_unspec,
1887 "",
1888 void, (const char *label, rtx pattern, int index), NULL)
1889
1890/* ??? Documenting this hook requires a GFDL license grant. */
1891DEFHOOK_UNDOC
1892(stdarg_optimize_hook,
1893"Perform architecture specific checking of statements gimplified\
1894 from @code{VA_ARG_EXPR}. @var{stmt} is the statement. Returns true if\
1895 the statement doesn't need to be checked for @code{va_list} references.",
1896 bool, (struct stdarg_info *ai, const_gimple stmt), NULL)
1897
1898/* This target hook allows the operating system to override the DECL
1899 that represents the external variable that contains the stack
1900 protection guard variable. The type of this DECL is ptr_type_node. */
1901DEFHOOK
1902(stack_protect_guard,
1903 "",
1904 tree, (void),
1905 default_stack_protect_guard)
1906
1907/* This target hook allows the operating system to override the CALL_EXPR
1908 that is invoked when a check vs the guard variable fails. */
1909DEFHOOK
1910(stack_protect_fail,
1911 "",
1912 tree, (void),
1913 default_external_stack_protect_fail)
1914
1915/* Returns NULL if target supports the insn within a doloop block,
1916 otherwise it returns an error message. */
1917DEFHOOK
1918(invalid_within_doloop,
1919 "",
1920 const char *, (const_rtx insn),
1921 default_invalid_within_doloop)
1922
1923DEFHOOK
1924(valid_dllimport_attribute_p,
1925"@var{decl} is a variable or function with @code{__attribute__((dllimport))}\
1926 specified. Use this hook if the target needs to add extra validation\
1927 checks to @code{handle_dll_attribute}.",
1928 bool, (const_tree decl),
1929 hook_bool_const_tree_true)
1930
1931/* If non-zero, align constant anchors in CSE to a multiple of this
1932 value. */
1933DEFHOOKPOD
1934(const_anchor,
1935 "",
1936 unsigned HOST_WIDE_INT, 0)
1937
7f738025 1938/* Defines, which target-dependent bits (upper 16) are used by port */
1939DEFHOOK
1940(memmodel_check,
1941 "",
1942 unsigned HOST_WIDE_INT, (unsigned HOST_WIDE_INT val), NULL)
1943
202d6e5f 1944/* Functions relating to calls - argument passing, returns, etc. */
1945/* Members of struct call have no special macro prefix. */
1946HOOK_VECTOR (TARGET_CALLS, calls)
1947
1948DEFHOOK
1949(promote_function_mode,
1950 "",
1951 enum machine_mode, (const_tree type, enum machine_mode mode, int *punsignedp,
1952 const_tree funtype, int for_return),
1953 default_promote_function_mode)
1954
1955DEFHOOK
1956(promote_prototypes,
1957 "",
1958 bool, (const_tree fntype),
1959 hook_bool_const_tree_false)
1960
1961DEFHOOK
1962(struct_value_rtx,
1963 "",
1964 rtx, (tree fndecl, int incoming),
1965 hook_rtx_tree_int_null)
1966DEFHOOK
1967(return_in_memory,
1968 "",
1969 bool, (const_tree type, const_tree fntype),
1970 default_return_in_memory)
1971
1972DEFHOOK
1973(return_in_msb,
1974 "",
1975 bool, (const_tree type),
1976 hook_bool_const_tree_false)
1977
1978/* Return true if a parameter must be passed by reference. TYPE may
1979 be null if this is a libcall. CA may be null if this query is
1980 from __builtin_va_arg. */
b4c24d67 1981DEFHOOK
202d6e5f 1982(pass_by_reference,
1983 "",
1984 bool,
39cba157 1985 (cumulative_args_t cum, enum machine_mode mode, const_tree type, bool named),
202d6e5f 1986 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false)
1987
1988DEFHOOK
1989(expand_builtin_saveregs,
1990 "",
1991 rtx, (void),
1992 default_expand_builtin_saveregs)
1993
1994/* Returns pretend_argument_size. */
1995DEFHOOK
1996(setup_incoming_varargs,
1997 "",
39cba157 1998 void, (cumulative_args_t args_so_far, enum machine_mode mode, tree type,
202d6e5f 1999 int *pretend_args_size, int second_time),
2000 default_setup_incoming_varargs)
2001
2002DEFHOOK
2003(strict_argument_naming,
2004 "",
39cba157 2005 bool, (cumulative_args_t ca),
202d6e5f 2006 hook_bool_CUMULATIVE_ARGS_false)
2007
2008/* Returns true if we should use
2009 targetm.calls.setup_incoming_varargs() and/or
2010 targetm.calls.strict_argument_naming(). */
2011DEFHOOK
2012(pretend_outgoing_varargs_named,
2013 "",
39cba157 2014 bool, (cumulative_args_t ca),
202d6e5f 2015 default_pretend_outgoing_varargs_named)
2016
2017/* Given a complex type T, return true if a parameter of type T
2018 should be passed as two scalars. */
2019DEFHOOK
2020(split_complex_arg,
2021 "",
2022 bool, (const_tree type), NULL)
2023
2024/* Return true if type T, mode MODE, may not be passed in registers,
2025 but must be passed on the stack. */
2026/* ??? This predicate should be applied strictly after pass-by-reference.
2027 Need audit to verify that this is the case. */
2028DEFHOOK
2029(must_pass_in_stack,
2030 "",
2031 bool, (enum machine_mode mode, const_tree type),
2032 must_pass_in_stack_var_size_or_pad)
2033
2034/* Return true if type TYPE, mode MODE, which is passed by reference,
2035 should have the object copy generated by the callee rather than
2036 the caller. It is never called for TYPE requiring constructors. */
2037DEFHOOK
2038(callee_copies,
2039 "",
2040 bool,
39cba157 2041 (cumulative_args_t cum, enum machine_mode mode, const_tree type, bool named),
202d6e5f 2042 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false)
2043
2044/* Return zero for arguments passed entirely on the stack or entirely
2045 in registers. If passed in both, return the number of bytes passed
2046 in registers; the balance is therefore passed on the stack. */
2047DEFHOOK
2048(arg_partial_bytes,
2049 "",
39cba157 2050 int, (cumulative_args_t cum, enum machine_mode mode, tree type, bool named),
202d6e5f 2051 hook_int_CUMULATIVE_ARGS_mode_tree_bool_0)
2052
2053/* Update the state in CA to advance past an argument in the
2054 argument list. The values MODE, TYPE, and NAMED describe that
2055 argument. */
81bcd36c 2056DEFHOOK
202d6e5f 2057(function_arg_advance,
2058 "",
2059 void,
39cba157 2060 (cumulative_args_t ca, enum machine_mode mode, const_tree type, bool named),
202d6e5f 2061 default_function_arg_advance)
2062
2063/* Return zero if the argument described by the state of CA should
2064 be placed on a stack, or a hard register in which to store the
2065 argument. The values MODE, TYPE, and NAMED describe that
2066 argument. */
81bcd36c 2067DEFHOOK
202d6e5f 2068(function_arg,
2069 "",
39cba157 2070 rtx, (cumulative_args_t ca, enum machine_mode mode, const_tree type,
202d6e5f 2071 bool named),
2072 default_function_arg)
2073
2074/* Likewise, but for machines with register windows. Return the
2075 location where the argument will appear to the callee. */
81bcd36c 2076DEFHOOK
202d6e5f 2077(function_incoming_arg,
2078 "",
39cba157 2079 rtx, (cumulative_args_t ca, enum machine_mode mode, const_tree type,
202d6e5f 2080 bool named),
2081 default_function_incoming_arg)
2082
bd99ba64 2083DEFHOOK
2084(function_arg_boundary,
2085 "",
2086 unsigned int, (enum machine_mode mode, const_tree type),
2087 default_function_arg_boundary)
2088
17bfc2bc 2089DEFHOOK
2090(function_arg_round_boundary,
2091 "Normally, the size of an argument is rounded up to @code{PARM_BOUNDARY},\n\
2092which is the default value for this hook. You can define this hook to\n\
2093return a different value if an argument size must be rounded to a larger\n\
2094value.",
2095 unsigned int, (enum machine_mode mode, const_tree type),
2096 default_function_arg_round_boundary)
2097
202d6e5f 2098/* Return the diagnostic message string if function without a prototype
2099 is not allowed for this 'val' argument; NULL otherwise. */
2100DEFHOOK
2101(invalid_arg_for_unprototyped_fn,
2102 "",
2103 const char *, (const_tree typelist, const_tree funcdecl, const_tree val),
2104 hook_invalid_arg_for_unprototyped_fn)
2105
2106/* Return an rtx for the return value location of the function
2107 specified by FN_DECL_OR_TYPE with a return type of RET_TYPE. */
2108DEFHOOK
2109(function_value,
2110 "",
2111 rtx, (const_tree ret_type, const_tree fn_decl_or_type, bool outgoing),
2112 default_function_value)
2113
2114/* Return the rtx for the result of a libcall of mode MODE,
2115 calling the function FN_NAME. */
2116DEFHOOK
2117(libcall_value,
2118 "",
2119 rtx, (enum machine_mode mode, const_rtx fun),
2120 default_libcall_value)
2121
2122/* Return true if REGNO is a possible register number for
2123 a function value as seen by the caller. */
2124DEFHOOK
2125(function_value_regno_p,
2126 "",
2127 bool, (const unsigned int regno),
2128 default_function_value_regno_p)
2129
2130/* ??? Documenting this hook requires a GFDL license grant. */
2131DEFHOOK_UNDOC
2132(internal_arg_pointer,
2133"Return an rtx for the argument pointer incoming to the\
2134 current function.",
2135 rtx, (void),
2136 default_internal_arg_pointer)
2137
2138/* Update the current function stack boundary if needed. */
2139DEFHOOK
2140(update_stack_boundary,
2141 "",
2142 void, (void), NULL)
2143
2144/* Handle stack alignment and return an rtx for Dynamic Realign
2145 Argument Pointer if necessary. */
2146DEFHOOK
2147(get_drap_rtx,
2148 "",
2149 rtx, (void), NULL)
2150
2151/* Return true if all function parameters should be spilled to the
2152 stack. */
2153DEFHOOK
2154(allocate_stack_slots_for_args,
2155 "",
2156 bool, (void),
2157 hook_bool_void_true)
2158
2159/* Return an rtx for the static chain for FNDECL. If INCOMING_P is true,
2160 then it should be for the callee; otherwise for the caller. */
2161DEFHOOK
2162(static_chain,
2163 "",
2164 rtx, (const_tree fndecl, bool incoming_p),
2165 default_static_chain)
2166
2167/* Fill in the trampoline at MEM with a call to FNDECL and a
2168 static chain value of CHAIN. */
2169DEFHOOK
2170(trampoline_init,
2171 "",
2172 void, (rtx m_tramp, tree fndecl, rtx static_chain),
2173 default_trampoline_init)
2174
2175/* Adjust the address of the trampoline in a target-specific way. */
2176DEFHOOK
2177(trampoline_adjust_address,
2178 "",
2179 rtx, (rtx addr), NULL)
2180
2181/* Return the number of bytes of its own arguments that a function
2182 pops on returning, or 0 if the function pops no arguments and the
2183 caller must therefore pop them all after the function returns. */
2184/* ??? tm.texi has no types for the parameters. */
fe0b4016 2185DEFHOOK
202d6e5f 2186(return_pops_args,
2187 "",
2188 int, (tree fundecl, tree funtype, int size),
2189 default_return_pops_args)
2190
4bac51c9 2191/* Return a mode wide enough to copy any function value that might be
2192 returned. */
2193DEFHOOK
2194(get_raw_result_mode,
2195 "This target hook returns the mode to be used when accessing raw return\
2196 registers in @code{__builtin_return}. Define this macro if the value\
2197 in @var{reg_raw_mode} is not correct.",
2198 enum machine_mode, (int regno),
2199 default_get_reg_raw_mode)
2200
2201/* Return a mode wide enough to copy any argument value that might be
2202 passed. */
2203DEFHOOK
2204(get_raw_arg_mode,
2205 "This target hook returns the mode to be used when accessing raw argument\
2206 registers in @code{__builtin_apply_args}. Define this macro if the value\
2207 in @var{reg_raw_mode} is not correct.",
2208 enum machine_mode, (int regno),
2209 default_get_reg_raw_mode)
2210
202d6e5f 2211HOOK_VECTOR_END (calls)
2212
2213/* Return the diagnostic message string if conversion from FROMTYPE
2214 to TOTYPE is not allowed, NULL otherwise. */
2215DEFHOOK
2216(invalid_conversion,
2217 "",
2218 const char *, (const_tree fromtype, const_tree totype),
2219 hook_constcharptr_const_tree_const_tree_null)
2220
2221/* Return the diagnostic message string if the unary operation OP is
2222 not permitted on TYPE, NULL otherwise. */
2223DEFHOOK
2224(invalid_unary_op,
2225 "",
2226 const char *, (int op, const_tree type),
2227 hook_constcharptr_int_const_tree_null)
2228
2229/* Return the diagnostic message string if the binary operation OP
2230 is not permitted on TYPE1 and TYPE2, NULL otherwise. */
2231DEFHOOK
2232(invalid_binary_op,
2233 "",
2234 const char *, (int op, const_tree type1, const_tree type2),
2235 hook_constcharptr_int_const_tree_const_tree_null)
2236
2237/* Return the diagnostic message string if TYPE is not valid as a
2238 function parameter type, NULL otherwise. */
2239DEFHOOK
2240(invalid_parameter_type,
2241 "",
2242 const char *, (const_tree type),
2243 hook_constcharptr_const_tree_null)
2244
2245/* Return the diagnostic message string if TYPE is not valid as a
2246 function return type, NULL otherwise. */
2247DEFHOOK
2248(invalid_return_type,
2249 "",
2250 const char *, (const_tree type),
2251 hook_constcharptr_const_tree_null)
2252
2253/* If values of TYPE are promoted to some other type when used in
2254 expressions (analogous to the integer promotions), return that type,
2255 or NULL_TREE otherwise. */
2256DEFHOOK
2257(promoted_type,
2258 "",
2259 tree, (const_tree type),
2260 hook_tree_const_tree_null)
2261
2262/* Convert EXPR to TYPE, if target-specific types with special conversion
2263 rules are involved. Return the converted expression, or NULL to apply
2264 the standard conversion rules. */
2265DEFHOOK
2266(convert_to_type,
2267 "",
2268 tree, (tree type, tree expr),
2269 hook_tree_tree_tree_null)
2270
202d6e5f 2271/* Return the class for a secondary reload, and fill in extra information. */
2272DEFHOOK
2273(secondary_reload,
2274 "",
964229b7 2275 reg_class_t,
2276 (bool in_p, rtx x, reg_class_t reload_class, enum machine_mode reload_mode,
202d6e5f 2277 secondary_reload_info *sri),
2278 default_secondary_reload)
2279
09a17585 2280/* Given an rtx X being reloaded into a reg required to be in class CLASS,
2281 return the class of reg to actually use. */
2282DEFHOOK
2283(preferred_reload_class,
2284 "",
2285 reg_class_t,
2286 (rtx x, reg_class_t rclass),
2287 default_preferred_reload_class)
2288
71db0d8b 2289/* Like TARGET_PREFERRED_RELOAD_CLASS, but for output reloads instead of
2290 input reloads. */
2291DEFHOOK
2292(preferred_output_reload_class,
2293 "",
2294 reg_class_t,
2295 (rtx x, reg_class_t rclass),
2296 default_preferred_output_reload_class)
2297
24dd0668 2298DEFHOOK
2299(class_likely_spilled_p,
2300 "",
2301 bool, (reg_class_t rclass),
2302 default_class_likely_spilled_p)
2303
d3ba22dc 2304/* Return the maximum number of consecutive registers
2305 needed to represent mode MODE in a register of class RCLASS. */
2306DEFHOOK
2307(class_max_nregs,
2308 "",
2309 unsigned char, (reg_class_t rclass, enum machine_mode mode),
2310 default_class_max_nregs)
2311
d78118a3 2312DEFHOOK
2313(preferred_rename_class,
2314 "A target hook that places additional preference on the register\
2315 class to use when it is necessary to rename a register in class\
00036f1c 2316 @var{rclass} to another class, or perhaps @var{NO_REGS}, if no\
2317 preferred register class is found or hook @code{preferred_rename_class}\
d78118a3 2318 is not implemented.\
2319 Sometimes returning a more restrictive class makes better code. For\
2320 example, on ARM, thumb-2 instructions using @code{LO_REGS} may be\
2321 smaller than instructions using @code{GENERIC_REGS}. By returning\
2322 @code{LO_REGS} from @code{preferred_rename_class}, code size can\
2323 be reduced.",
2324 reg_class_t, (reg_class_t rclass),
2325 default_preferred_rename_class)
2326
202d6e5f 2327/* This target hook allows the backend to perform additional
2328 processing while initializing for variable expansion. */
2329DEFHOOK
2330(expand_to_rtl_hook,
2331 "",
2332 void, (void),
2333 hook_void_void)
2334
2335/* This target hook allows the backend to perform additional
2336 instantiations on rtx that are not actually in insns yet,
2337 but will be later. */
2338DEFHOOK
2339(instantiate_decls,
2340 "",
2341 void, (void),
2342 hook_void_void)
2343
2344/* Return true if is OK to use a hard register REGNO as scratch register
2345 in peephole2. */
2346DEFHOOK
2347(hard_regno_scratch_ok,
2348 "",
2349 bool, (unsigned int regno),
2350 default_hard_regno_scratch_ok)
2351
2352/* Return the smallest number of different values for which it is best to
2353 use a jump-table instead of a tree of conditional branches. */
2354DEFHOOK
2355(case_values_threshold,
2356 "",
2357 unsigned int, (void),
2358 default_case_values_threshold)
2359
2360/* Retutn true if a function must have and use a frame pointer. */
2361DEFHOOK
2362(frame_pointer_required,
2363 "",
2364 bool, (void),
2365 hook_bool_void_false)
2366
2367/* Returns true if the compiler is allowed to try to replace register number
2368 from-reg with register number to-reg. */
2369DEFHOOK
2370(can_eliminate,
2371 "",
2372 bool, (const int from_reg, const int to_reg),
2373 hook_bool_const_int_const_int_true)
2374
b2d7ede1 2375/* Modify any or all of fixed_regs, call_used_regs, global_regs,
2376 reg_names, and reg_class_contents to account of the vagaries of the
2377 target. */
2378DEFHOOK
2379(conditional_register_usage,
2380 "",
2381 void, (void),
2382 hook_void_void)
2383
202d6e5f 2384/* Functions specific to the C family of frontends. */
2385#undef HOOK_PREFIX
2386#define HOOK_PREFIX "TARGET_C_"
2387HOOK_VECTOR (TARGET_C, c)
2388
2389/* ??? Documenting this hook requires a GFDL license grant. */
2390DEFHOOK_UNDOC
2391(mode_for_suffix,
2392"Return machine mode for non-standard constant literal suffix @var{c},\
2393 or VOIDmode if non-standard suffixes are unsupported.",
2394 enum machine_mode, (char c),
2395 default_mode_for_suffix)
2396
2397HOOK_VECTOR_END (c)
2398
2399/* Functions specific to the C++ frontend. */
2400#undef HOOK_PREFIX
2401#define HOOK_PREFIX "TARGET_CXX_"
2402HOOK_VECTOR (TARGET_CXX, cxx)
2403
2404/* Return the integer type used for guard variables. */
2405DEFHOOK
2406(guard_type,
2407 "",
2408 tree, (void),
2409 default_cxx_guard_type)
2410
2411/* Return true if only the low bit of the guard should be tested. */
2412DEFHOOK
2413(guard_mask_bit,
2414 "",
2415 bool, (void),
2416 hook_bool_void_false)
2417
2418/* Returns the size of the array cookie for an array of type. */
2419DEFHOOK
2420(get_cookie_size,
2421 "",
2422 tree, (tree type),
2423 default_cxx_get_cookie_size)
2424
2425/* Returns true if the element size should be stored in the array cookie. */
2426DEFHOOK
2427(cookie_has_size,
2428 "",
2429 bool, (void),
2430 hook_bool_void_false)
2431
2432/* Allows backends to perform additional processing when
2433 deciding if a class should be exported or imported. */
2434DEFHOOK
2435(import_export_class,
2436 "",
2437 int, (tree type, int import_export), NULL)
2438
2439/* Returns true if constructors and destructors return "this". */
2440DEFHOOK
2441(cdtor_returns_this,
2442 "",
2443 bool, (void),
2444 hook_bool_void_false)
2445
2446/* Returns true if the key method for a class can be an inline
2447 function, so long as it is not declared inline in the class
2448 itself. Returning true is the behavior required by the Itanium C++ ABI. */
2449DEFHOOK
2450(key_method_may_be_inline,
2451 "",
2452 bool, (void),
2453 hook_bool_void_true)
2454
2455DEFHOOK
2456(determine_class_data_visibility,
2457"@var{decl} is a virtual table, virtual table table, typeinfo object,\
2458 or other similar implicit class data object that will be emitted with\
2459 external linkage in this translation unit. No ELF visibility has been\
2460 explicitly specified. If the target needs to specify a visibility\
2461 other than that of the containing class, use this hook to set\
2462 @code{DECL_VISIBILITY} and @code{DECL_VISIBILITY_SPECIFIED}.",
2463 void, (tree decl),
2464 hook_void_tree)
2465
2466/* Returns true (the default) if virtual tables and other
2467 similar implicit class data objects are always COMDAT if they
2468 have external linkage. If this hook returns false, then
2469 class data for classes whose virtual table will be emitted in
2470 only one translation unit will not be COMDAT. */
2471DEFHOOK
2472(class_data_always_comdat,
2473 "",
2474 bool, (void),
2475 hook_bool_void_true)
2476
2477/* Returns true (the default) if the RTTI for the basic types,
2478 which is always defined in the C++ runtime, should be COMDAT;
2479 false if it should not be COMDAT. */
2480DEFHOOK
2481(library_rtti_comdat,
2482 "",
2483 bool, (void),
2484 hook_bool_void_true)
2485
2486/* Returns true if __aeabi_atexit should be used to register static
2487 destructors. */
2488DEFHOOK
2489(use_aeabi_atexit,
2490 "",
2491 bool, (void),
2492 hook_bool_void_false)
2493
2494/* Returns true if target may use atexit in the same manner as
2495 __cxa_atexit to register static destructors. */
2496DEFHOOK
2497(use_atexit_for_cxa_atexit,
2498 "",
2499 bool, (void),
2500 hook_bool_void_false)
2501
2502DEFHOOK
2503(adjust_class_at_definition,
2504"@var{type} is a C++ class (i.e., RECORD_TYPE or UNION_TYPE) that has just\
2505 been defined. Use this hook to make adjustments to the class (eg, tweak\
2506 visibility or perform any other required target modifications).",
2507 void, (tree type),
2508 hook_void_tree)
2509
16a1895e 2510DEFHOOK
2511(decl_mangling_context,
2512 "Return target-specific mangling context of @var{decl} or @code{NULL_TREE}.",
2513 tree, (const_tree decl),
2514 hook_tree_const_tree_null)
2515
202d6e5f 2516HOOK_VECTOR_END (cxx)
2517
2518/* Functions and data for emulated TLS support. */
2519#undef HOOK_PREFIX
2520#define HOOK_PREFIX "TARGET_EMUTLS_"
2521HOOK_VECTOR (TARGET_EMUTLS, emutls)
2522
2523/* Name of the address and common functions. */
2524DEFHOOKPOD
2525(get_address,
2526 "",
2527 const char *, "__builtin___emutls_get_address")
2528
2529DEFHOOKPOD
2530(register_common,
2531 "",
2532 const char *, "__builtin___emutls_register_common")
2533
2534/* Prefixes for proxy variable and template. */
2535DEFHOOKPOD
2536(var_section,
2537 "",
2538 const char *, NULL)
2539
2540DEFHOOKPOD
2541(tmpl_section,
2542 "",
2543 const char *, NULL)
2544
2545/* Prefixes for proxy variable and template. */
2546DEFHOOKPOD
2547(var_prefix,
2548 "",
2549 const char *, NULL)
2550
2551DEFHOOKPOD
2552(tmpl_prefix,
2553 "",
2554 const char *, NULL)
2555
2556/* Function to generate field definitions of the proxy variable. */
2557DEFHOOK
2558(var_fields,
2559 "",
2560 tree, (tree type, tree *name),
2561 default_emutls_var_fields)
2562
2563/* Function to initialize a proxy variable. */
2564DEFHOOK
2565(var_init,
2566 "",
2567 tree, (tree var, tree decl, tree tmpl_addr),
2568 default_emutls_var_init)
2569
2570/* Whether we are allowed to alter the usual alignment of the
2571 proxy variable. */
2572DEFHOOKPOD
2573(var_align_fixed,
2574 "",
2575 bool, false)
2576
2577/* Whether we can emit debug information for TLS vars. */
2578DEFHOOKPOD
2579(debug_form_tls_address,
2580 "",
2581 bool, false)
2582
2583HOOK_VECTOR_END (emutls)
2584
2585#undef HOOK_PREFIX
2586#define HOOK_PREFIX "TARGET_OPTION_"
2587HOOK_VECTOR (TARGET_OPTION_HOOKS, target_option_hooks)
2588
2589/* Function to validate the attribute((option(...))) strings or NULL. If
2590 the option is validated, it is assumed that DECL_FUNCTION_SPECIFIC will
2591 be filled in in the function decl node. */
2592DEFHOOK
2593(valid_attribute_p,
2594 "",
2595 bool, (tree fndecl, tree name, tree args, int flags),
2596 default_target_option_valid_attribute_p)
2597
2598/* Function to save any extra target state in the target options structure. */
2599DEFHOOK
2600(save,
2601 "",
2602 void, (struct cl_target_option *ptr), NULL)
2603
2604/* Function to restore any extra target state from the target options
2605 structure. */
2606DEFHOOK
2607(restore,
2608 "",
2609 void, (struct cl_target_option *ptr), NULL)
2610
2611/* Function to print any extra target state from the target options
2612 structure. */
2613DEFHOOK
2614(print,
2615 "",
2616 void, (FILE *file, int indent, struct cl_target_option *ptr), NULL)
2617
2618/* Function to parse arguments to be validated for #pragma option, and to
2619 change the state if the options are valid. If the first argument is
2620 NULL, the second argument specifies the default options to use. Return
2621 true if the options are valid, and set the current state. */
04f989af 2622/* ??? The documentation in tm.texi is incomplete. */
2623DEFHOOK
202d6e5f 2624(pragma_parse,
2625 "",
2626 bool, (tree args, tree pop_target),
2627 default_target_option_pragma_parse)
2628
2629/* Do option overrides for the target. */
2630DEFHOOK
2631(override,
2632 "",
2633 void, (void),
4c834714 2634 hook_void_void)
202d6e5f 2635
2636/* Function to determine if one function can inline another function. */
2637#undef HOOK_PREFIX
2638#define HOOK_PREFIX "TARGET_"
2639DEFHOOK
2640(can_inline_p,
2641 "",
2642 bool, (tree caller, tree callee),
2643 default_target_can_inline_p)
2644
2645HOOK_VECTOR_END (target_option)
2646
2647/* For targets that need to mark extra registers as live on entry to
2648 the function, they should define this target hook and set their
2649 bits in the bitmap passed in. */
2650DEFHOOK
2651(extra_live_on_entry,
2652 "",
2653 void, (bitmap regs),
2654 hook_void_bitmap)
2655
2e851bb8 2656/* Fill in additional registers set up by prologue into a regset. */
2657DEFHOOK
2658(set_up_by_prologue,
2659 "This hook should add additional registers that are computed by the prologue\
2660 to the hard regset for shrink-wrapping optimization purposes.",
2661 void, (struct hard_reg_set_container *),
2662 NULL)
2663
cc7d6aed 2664/* Determine the type of unwind info to emit for debugging. */
2665DEFHOOK
2666(debug_unwind_info,
2667 "",
2668 enum unwind_info_type, (void),
2669 default_debug_unwind_info)
2670
df1680c8 2671DEFHOOKPOD
2672(atomic_test_and_set_trueval,
2673 "This value should be set if the result written by\
2674 @code{atomic_test_and_set} is not exactly 1, i.e. the\
2675 @code{bool} @code{true}.",
2676 unsigned char, 1)
2677
202d6e5f 2678/* Leave the boolean fields at the end. */
2679
202d6e5f 2680/* True if we can create zeroed data by switching to a BSS section
2681 and then using ASM_OUTPUT_SKIP to allocate the space. */
2682DEFHOOKPOD
2683(have_switchable_bss_sections,
2684 "",
2685 bool, false)
2686
2687/* True if "native" constructors and destructors are supported,
2688 false if we're using collect2 for the job. */
2689DEFHOOKPOD
2690(have_ctors_dtors,
2691 "",
2692 bool, false)
2693
2694/* True if thread-local storage is supported. */
2695DEFHOOKPOD
2696(have_tls,
2697 "",
2698 bool, false)
2699
2700/* True if a small readonly data section is supported. */
2701DEFHOOKPOD
2702(have_srodata_section,
2703 "",
2704 bool, false)
2705
2706/* True if EH frame info sections should be zero-terminated. */
2707DEFHOOKPOD
2708(terminate_dw2_eh_frame_info,
2709 "",
2710 bool, true)
2711
2712/* True if #NO_APP should be emitted at the beginning of assembly output. */
2713DEFHOOKPOD
2714(asm_file_start_app_off,
2715 "",
2716 bool, false)
2717
2718/* True if output_file_directive should be called for main_input_filename
2719 at the beginning of assembly output. */
2720DEFHOOKPOD
2721(asm_file_start_file_directive,
2722 "",
2723 bool, false)
2724
202d6e5f 2725/* True if the target is allowed to reorder memory accesses unless
2726 synchronization is explicitly requested. */
2727DEFHOOKPOD
2728(relaxed_ordering,
2729 "",
2730 bool, false)
2731
2732/* Returns true if we should generate exception tables for use with the
2733 ARM EABI. The effects the encoding of function exception specifications. */
2734DEFHOOKPOD
2735(arm_eabi_unwinder,
2736 "",
2737 bool, false)
2738
1651aa77 2739DEFHOOKPOD
2740(want_debug_pub_sections,
2741 "True if the @code{.debug_pubtypes} and @code{.debug_pubnames} sections\
2742 should be emitted. These sections are not used on most platforms, and\
2743 in particular GDB does not use them.",
2744 bool, false)
2745
effa044f 2746DEFHOOKPOD
2747(force_at_comp_dir,
2748 "True if the @code{DW_AT_comp_dir} attribute should be emitted for each \
2749 compilation unit. This attribute is required for the darwin linker \
2750 to emit debug information.",
2751 bool, false)
2752
8a42230a 2753DEFHOOKPOD
2754(delay_sched2, "True if sched2 is not to be run at its normal place. \
2755This usually means it will be run as part of machine-specific reorg.",
2756bool, false)
2757
2758DEFHOOKPOD
2759(delay_vartrack, "True if vartrack is not to be run at its normal place. \
2760This usually means it will be run as part of machine-specific reorg.",
2761bool, false)
2762
202d6e5f 2763/* Leave the boolean fields at the end. */
2764
202d6e5f 2765/* Close the 'struct gcc_target' definition. */
2766HOOK_VECTOR_END (C90_EMPTY_HACK)