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