OSDN Git Service

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