OSDN Git Service

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