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