OSDN Git Service

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