]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/output.h
configure.in: Check whether assembler supports section merging.
[thirdparty/gcc.git] / gcc / output.h
CommitLineData
0c2768fc
RS
1/* Declarations for insn-output.c. These functions are defined in recog.c,
2 final.c, and varasm.c.
af841dbd 3 Copyright (C) 1987, 1991, 1994, 1997, 1998,
a4f31c00 4 1999, 2000, 2001 Free Software Foundation, Inc.
0c2768fc 5
1322177d 6This file is part of GCC.
0c2768fc 7
1322177d
LB
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
10Software Foundation; either version 2, or (at your option) any later
11version.
0c2768fc 12
1322177d
LB
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
0c2768fc
RS
17
18You should have received a copy of the GNU General Public License
1322177d
LB
19along with GCC; see the file COPYING. If not, write to the Free
20Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2102111-1307, USA. */
0c2768fc 22
247a370b
JH
23/* Compute branch alignments based on frequency information in the CFG. */
24extern void compute_alignments PARAMS ((void));
25
9b1d8cd6 26/* Initialize data in final at the beginning of a compilation. */
13536812 27extern void init_final PARAMS ((const char *));
9b1d8cd6
RK
28
29/* Called at end of source file,
30 to output the block-profiling table for this entire compilation. */
13536812 31extern void end_final PARAMS ((const char *));
9b1d8cd6
RK
32
33/* Enable APP processing of subsequent output.
34 Used before the output from an `asm' statement. */
13536812 35extern void app_enable PARAMS ((void));
9b1d8cd6
RK
36
37/* Disable APP processing of subsequent output.
38 Called from varasm.c before most kinds of output. */
13536812 39extern void app_disable PARAMS ((void));
9b1d8cd6 40
a4f31c00 41/* Return the number of slots filled in the current
9b1d8cd6
RK
42 delayed branch sequence (we don't count the insn needing the
43 delay slot). Zero if not in a delayed branch sequence. */
13536812 44extern int dbr_sequence_length PARAMS ((void));
9b1d8cd6
RK
45
46/* Indicate that branch shortening hasn't yet been done. */
13536812 47extern void init_insn_lengths PARAMS ((void));
9b1d8cd6 48
ed068cf5 49#ifdef RTX_CODE
9b1d8cd6
RK
50/* Obtain the current length of an insn. If branch shortening has been done,
51 get its actual length. Otherwise, get its maximum length. */
13536812 52extern int get_attr_length PARAMS ((rtx));
9b1d8cd6
RK
53
54/* Make a pass over all insns and compute their actual lengths by shortening
55 any branches of variable length if possible. */
13536812 56extern void shorten_branches PARAMS ((rtx));
9b1d8cd6
RK
57
58/* Output assembler code for the start of a function,
59 and initialize some of the variables in this file
60 for the new function. The label for the function and associated
61 assembler pseudo-ops have already been output in
62 `assemble_start_function'. */
13536812 63extern void final_start_function PARAMS ((rtx, FILE *, int));
9b1d8cd6
RK
64
65/* Output assembler code for the end of a function.
66 For clarity, args are same as those of `final_start_function'
67 even though not all of them are needed. */
e2a12aca 68extern void final_end_function PARAMS ((void));
9b1d8cd6
RK
69
70/* Output assembler code for some insns: all or part of a function. */
13536812 71extern void final PARAMS ((rtx, FILE *, int, int));
9b1d8cd6
RK
72
73/* The final scan for one insn, INSN. Args are same as in `final', except
74 that INSN is the insn being scanned. Value returned is the next insn to
75 be scanned. */
13536812 76extern rtx final_scan_insn PARAMS ((rtx, FILE *, int, int, int));
9b1d8cd6
RK
77
78/* Replace a SUBREG with a REG or a MEM, based on the thing it is a
79 subreg of. */
13536812 80extern rtx alter_subreg PARAMS ((rtx));
9b1d8cd6
RK
81
82/* Report inconsistency between the assembler template and the operands.
83 In an `asm', it's the user's fault; otherwise, the compiler's fault. */
13536812 84extern void output_operand_lossage PARAMS ((const char *));
cf1c49cb 85
0c2768fc
RS
86/* Output a string of assembler code, substituting insn operands.
87 Defined in final.c. */
13536812 88extern void output_asm_insn PARAMS ((const char *, rtx *));
0c2768fc 89
487a6e06
KG
90/* Compute a worst-case reference address of a branch so that it
91 can be safely used in the presence of aligned labels.
92 Defined in final.c. */
13536812 93extern int insn_current_reference_address PARAMS ((rtx));
487a6e06 94
3873d24b
RH
95/* Find the alignment associated with a CODE_LABEL.
96 Defined in final.c. */
13536812 97extern int label_to_alignment PARAMS ((rtx));
3873d24b 98
9b1d8cd6 99/* Output a LABEL_REF, or a bare CODE_LABEL, as an assembler symbol. */
13536812 100extern void output_asm_label PARAMS ((rtx));
9b1d8cd6
RK
101
102/* Print a memory reference operand for address X
103 using machine-dependent assembler syntax. */
13536812 104extern void output_address PARAMS ((rtx));
1428a6b3 105
aaff8ce0
CH
106/* Print an integer constant expression in assembler syntax.
107 Addition and subtraction are the only arithmetic
108 that may appear in these expressions. */
13536812 109extern void output_addr_const PARAMS ((FILE *, rtx));
aaff8ce0 110
9b1d8cd6
RK
111/* Output a string of assembler code, substituting numbers, strings
112 and fixed syntactic prefixes. */
13536812 113extern void asm_fprintf PARAMS ((FILE *file, const char *p, ...));
9b1d8cd6
RK
114
115/* Split up a CONST_DOUBLE or integer constant rtx into two rtx's for single
116 words. */
13536812 117extern void split_double PARAMS ((rtx, rtx *, rtx *));
9b1d8cd6
RK
118
119/* Return nonzero if this function has no function calls. */
13536812 120extern int leaf_function_p PARAMS ((void));
9b1d8cd6 121
a4f31c00
AJ
122/* Return 1 if branch is an forward branch.
123 Uses insn_shuid array, so it works only in the final pass. May be used by
124 output templates to add branch prediction hints, for example. */
125extern int final_forward_branch_p PARAMS ((rtx));
126
9b1d8cd6
RK
127/* Return 1 if this function uses only the registers that can be
128 safely renumbered. */
13536812 129extern int only_leaf_regs_used PARAMS ((void));
9b1d8cd6
RK
130
131/* Scan IN_RTX and its subexpressions, and renumber all regs into those
132 available in leaf functions. */
13536812 133extern void leaf_renumber_regs_insn PARAMS ((rtx));
a1493f9f 134
4bbf910e 135/* Locate the proper template for the given insn-code. */
13536812 136extern const char *get_insn_template PARAMS ((int, rtx));
4bbf910e 137
46f9491e
EC
138/* Add function NAME to the weak symbols list. VALUE is a weak alias
139 associated with NAME. */
140extern int add_weak PARAMS ((const char *, const char *));
141
a1493f9f 142/* Functions in flow.c */
13536812
KG
143extern void allocate_for_life_analysis PARAMS ((void));
144extern int regno_uninitialized PARAMS ((int));
145extern int regno_clobbered_at_setjmp PARAMS ((int));
19d3c25c 146extern void find_basic_blocks PARAMS ((rtx, int, FILE *));
402209ff 147extern bool cleanup_cfg PARAMS ((int));
b313a0fe 148extern void check_function_return_warnings PARAMS ((void));
ed068cf5
RK
149#endif
150
151/* Functions in varasm.c. */
152
153/* Tell assembler to switch to text section. */
13536812 154extern void text_section PARAMS ((void));
ed068cf5
RK
155
156/* Tell assembler to switch to data section. */
13536812 157extern void data_section PARAMS ((void));
ed068cf5 158
3167de5b 159/* Tell assembler to make sure its in the data section. */
13536812 160extern void force_data_section PARAMS ((void));
3167de5b 161
ed068cf5
RK
162/* Tell assembler to switch to read-only data section. This is normally
163 the text section. */
13536812 164extern void readonly_data_section PARAMS ((void));
ed068cf5
RK
165
166/* Determine if we're in the text section. */
13536812 167extern int in_text_section PARAMS ((void));
ed068cf5 168
7751947b
KG
169#ifdef CTORS_SECTION_ASM_OP
170extern void ctors_section PARAMS ((void));
171#endif
172
173#ifdef DTORS_SECTION_ASM_OP
174extern void dtors_section PARAMS ((void));
175#endif
176
177#ifdef BSS_SECTION_ASM_OP
178extern void bss_section PARAMS ((void));
179#endif
180
4dc94be7
KG
181#ifdef CONST_SECTION_ASM_OP
182extern void const_section PARAMS ((void));
183#endif
184
185#ifdef INIT_SECTION_ASM_OP
186extern void init_section PARAMS ((void));
187#endif
188
189#ifdef FINI_SECTION_ASM_OP
190extern void fini_section PARAMS ((void));
191#endif
7751947b 192
d0af450d
KG
193#ifdef TDESC_SECTION_ASM_OP
194extern void tdesc_section PARAMS ((void));
195#endif
196
ed068cf5
RK
197#ifdef TREE_CODE
198/* Tell assembler to change to section NAME for DECL.
199 If DECL is NULL, just switch to section NAME.
ad4ff310
JM
200 If NAME is NULL, get the name from DECL.
201 If RELOC is 1, the initializer for DECL contains relocs. */
13536812 202extern void named_section PARAMS ((tree, const char *, int));
ed068cf5 203
4d1065ed 204/* Tell assembler to switch to the section for function DECL. */
13536812 205extern void function_section PARAMS ((tree));
4d1065ed 206
6adb4e3a 207/* Tell assembler to switch to the section for the exception table. */
13536812 208extern void exception_section PARAMS ((void));
6adb4e3a 209
201556f0
JJ
210/* Tell assembler to switch to the section for string merging. */
211extern void mergeable_string_section PARAMS ((tree, unsigned HOST_WIDE_INT,
212 unsigned int));
213
214/* Tell assembler to switch to the section for constant merging. */
215extern void mergeable_constant_section PARAMS ((enum machine_mode,
216 unsigned HOST_WIDE_INT,
217 unsigned int));
218
d6f4ec51 219/* Declare DECL to be a weak symbol. */
13536812 220extern void declare_weak PARAMS ((tree));
d6f4ec51
KG
221#endif /* TREE_CODE */
222
50b2596f 223/* Emit any pending weak declarations. */
13536812 224extern void weak_finish PARAMS ((void));
50b2596f 225
ed068cf5
RK
226/* Decode an `asm' spec for a declaration as a register name.
227 Return the register number, or -1 if nothing specified,
228 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
229 or -3 if ASMSPEC is `cc' and is not recognized,
230 or -4 if ASMSPEC is `memory' and is not recognized.
231 Accept an exact spelling or a decimal number.
232 Prefixes such as % are optional. */
13536812 233extern int decode_reg_name PARAMS ((const char *));
ed068cf5 234
d6f4ec51 235#ifdef TREE_CODE
ed068cf5
RK
236/* Make the rtl for variable VAR be volatile.
237 Use this only for static variables. */
13536812 238extern void make_var_volatile PARAMS ((tree));
ed068cf5
RK
239
240/* Output alignment directive to align for constant expression EXP. */
13536812 241extern void assemble_constant_align PARAMS ((tree));
ed068cf5 242
13536812 243extern void assemble_alias PARAMS ((tree, tree));
d6f4ec51 244
ed068cf5
RK
245/* Output a string of literal assembler code
246 for an `asm' keyword used between functions. */
13536812 247extern void assemble_asm PARAMS ((tree));
ed068cf5 248
ed068cf5
RK
249/* Output assembler code for the constant pool of a function and associated
250 with defining the name of the function. DECL describes the function.
251 NAME is the function's name. For the constant pool, we use the current
252 constant pool data. */
3cce094d 253extern void assemble_start_function PARAMS ((tree, const char *));
ed068cf5
RK
254
255/* Output assembler code associated with defining the size of the
256 function. DECL describes the function. NAME is the function's name. */
13536812 257extern void assemble_end_function PARAMS ((tree, const char *));
ed068cf5 258
ed068cf5
RK
259/* Assemble everything that is needed for a variable or function declaration.
260 Not used for automatic variables, and not used for function definitions.
261 Should not be called for variables of incomplete structure type.
262
263 TOP_LEVEL is nonzero if this variable has file scope.
264 AT_END is nonzero if this is the special handling, at end of compilation,
265 to define things that have had only tentative definitions.
266 DONT_OUTPUT_DATA if nonzero means don't actually output the
267 initial value (that will be done by the caller). */
13536812 268extern void assemble_variable PARAMS ((tree, int, int, int));
ed068cf5 269
ed068cf5
RK
270/* Output something to declare an external symbol to the assembler.
271 (Most assemblers don't need this, so we normally output nothing.)
272 Do nothing if DECL is not external. */
13536812 273extern void assemble_external PARAMS ((tree));
d6f4ec51 274#endif /* TREE_CODE */
ed068cf5 275
d8d79d15 276/* Assemble code to leave SIZE bytes of zeros. */
13536812 277extern void assemble_zeros PARAMS ((int));
d8d79d15
RE
278
279/* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
13536812 280extern void assemble_align PARAMS ((int));
ce152ef8 281extern void assemble_eh_align PARAMS ((int));
d8d79d15
RE
282
283/* Assemble a string constant with the specified C string as contents. */
13536812 284extern void assemble_string PARAMS ((const char *, int));
d8d79d15 285
ed068cf5
RK
286#ifdef RTX_CODE
287/* Similar, for calling a library function FUN. */
13536812 288extern void assemble_external_libcall PARAMS ((rtx));
ed068cf5 289#endif
9b1d8cd6 290
ed068cf5 291/* Declare the label NAME global. */
13536812 292extern void assemble_global PARAMS ((const char *));
ed068cf5
RK
293
294/* Assemble a label named NAME. */
13536812 295extern void assemble_label PARAMS ((const char *));
ce152ef8 296extern void assemble_eh_label PARAMS ((const char *));
ed068cf5
RK
297
298/* Output to FILE a reference to the assembler name of a C-level name NAME.
299 If NAME starts with a *, the rest of NAME is output verbatim.
300 Otherwise NAME is transformed in an implementation-defined way
301 (usually by the addition of an underscore).
302 Many macros in the tm file are defined to call this function. */
13536812 303extern void assemble_name PARAMS ((FILE *, const char *));
ed068cf5
RK
304
305#ifdef RTX_CODE
c8af3574
RH
306/* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
307 the alignment of the integer in bits. Return 1 if we were able to output
308 the constant, otherwise 0. If FORCE is non-zero, abort if we can't output
309 the constant. */
310extern int assemble_integer PARAMS ((rtx, unsigned, unsigned, int));
ed068cf5 311
68896bf9 312#ifdef REAL_VALUE_TYPE
ed068cf5 313/* Assemble the floating-point constant D into an object of size MODE. */
13536812 314extern void assemble_real PARAMS ((REAL_VALUE_TYPE,
c8af3574
RH
315 enum machine_mode,
316 unsigned));
ed068cf5
RK
317#endif
318#endif
319
320/* At the end of a function, forget the memory-constants
321 previously made for CONST_DOUBLEs. Mark them as not on real_constant_chain.
322 Also clear out real_constant_chain and clear out all the chain-pointers. */
13536812 323extern void clear_const_double_mem PARAMS ((void));
ed068cf5
RK
324
325/* Start deferring output of subconstants. */
13536812 326extern void defer_addressed_constants PARAMS ((void));
ed068cf5
RK
327
328/* Stop deferring output of subconstants,
329 and output now all those that have been deferred. */
13536812 330extern void output_deferred_addressed_constants PARAMS ((void));
ed068cf5 331
ed068cf5 332/* Return the size of the constant pool. */
13536812 333extern int get_pool_size PARAMS ((void));
ed068cf5 334
36f0e0a6 335#ifdef HAVE_peephole
13536812 336extern rtx peephole PARAMS ((rtx));
36f0e0a6
KG
337#endif
338
ed068cf5
RK
339#ifdef TREE_CODE
340/* Write all the constants in the constant pool. */
13536812 341extern void output_constant_pool PARAMS ((const char *, tree));
ed068cf5 342
14a774a9
RK
343/* Return nonzero if VALUE is a valid constant-valued expression
344 for use in initializing a static variable; one that can be an
345 element of a "constant" initializer.
346
347 Return null_pointer_node if the value is absolute;
348 if it is relocatable, return the variable that determines the relocation.
349 We assume that VALUE has been folded as much as possible;
350 therefore, we do not need to check for such things as
351 arithmetic-combinations of integers. */
13536812 352extern tree initializer_constant_valid_p PARAMS ((tree, tree));
14a774a9 353
ed068cf5
RK
354/* Output assembler code for constant EXP to FILE, with no label.
355 This includes the pseudo-op such as ".int" or ".byte", and a newline.
356 Assumes output_addressed_constants has been done on EXP already.
357
358 Generate exactly SIZE bytes of assembler data, padding at the end
c8af3574
RH
359 with zeros if necessary. SIZE must always be specified.
360
361 ALIGN is the alignment in bits that may be assumed for the data. */
362extern void output_constant PARAMS ((tree, int, unsigned));
ed068cf5 363#endif
aaff8ce0 364
ed068cf5 365#ifdef RTX_CODE
0c2768fc
RS
366/* When outputting delayed branch sequences, this rtx holds the
367 sequence being output. It is null when no delayed branch
368 sequence is being output, so it can be used as a test in the
369 insn output code.
370
371 This variable is defined in final.c. */
372extern rtx final_sequence;
ed068cf5 373#endif
0c2768fc 374
f4dc8d96
NB
375/* The line number of the beginning of the current function. Various
376 md code needs this so that it can output relative linenumbers. */
377
378#ifdef SDB_DEBUGGING_INFO /* Avoid undef sym in certain broken linkers. */
379extern int sdb_begin_function_line;
380#endif
381
49ad7cfa 382/* File in which assembler code is being written. */
0c2768fc 383
49ad7cfa
BS
384#ifdef BUFSIZ
385extern FILE *asm_out_file;
386#endif
3b304f5b
ZW
387
388/* The first global object in the file. */
389extern const char *first_global_object_name;
390
391/* The first weak object in the file. */
392extern const char *weak_global_object_name;
393
54ff41b7
JW
394/* Nonzero if function being compiled doesn't contain any calls
395 (ignoring the prologue and epilogue). This is set prior to
396 local register allocation and is valid for the remaining
397 compiler passes. */
398
399extern int current_function_is_leaf;
400
fb13d4d0
JM
401/* Nonzero if function being compiled doesn't contain any instructions
402 that can throw an exception. This is set prior to final. */
403
404extern int current_function_nothrow;
405
fdb8a883
JW
406/* Nonzero if function being compiled doesn't modify the stack pointer
407 (ignoring the prologue and epilogue). This is only valid after
408 life_analysis has run. */
409
410extern int current_function_sp_is_unchanging;
411
54ff41b7
JW
412/* Nonzero if the function being compiled is a leaf function which only
413 uses leaf registers. This is valid after reload (specifically after
414 sched2) and is useful only if the port defines LEAF_REGISTERS. */
415
416extern int current_function_uses_only_leaf_regs;
417
a86d864c
RH
418/* Default file in which to dump debug output. */
419
420#ifdef BUFSIZ
421extern FILE *rtl_dump_file;
422#endif
423
afe48e06 424/* Nonnull if the insn currently being emitted was a COND_EXEC pattern. */
afe48e06
RH
425extern struct rtx_def *current_insn_predicate;
426
b1a9f6a0
RH
427/* Last insn processed by final_scan_insn. */
428extern struct rtx_def *current_output_insn;
429
ad4ff310
JM
430/* Decide whether DECL needs to be in a writable section. RELOC is the same
431 as for SELECT_SECTION. */
432
433#define DECL_READONLY_SECTION(DECL,RELOC) \
434 (TREE_READONLY (DECL) \
435 && ! TREE_THIS_VOLATILE (DECL) \
436 && DECL_INITIAL (DECL) \
437 && (DECL_INITIAL (DECL) == error_mark_node \
438 || TREE_CONSTANT (DECL_INITIAL (DECL))) \
439 && ! (RELOC && (flag_pic || DECL_ONE_ONLY (DECL))))
19283265
RH
440
441/* User label prefix in effect for this compilation. */
87e11268 442extern const char *user_label_prefix;
98577d03 443
dd559f4e
JL
444/* This macro gets just the user-specified name
445 out of the string in a SYMBOL_REF. On most machines,
446 we discard the * if any and that's all. */
98577d03 447#ifndef STRIP_NAME_ENCODING
dd559f4e
JL
448#define STRIP_NAME_ENCODING(VAR,SYMBOL_NAME) \
449 (VAR) = ((SYMBOL_NAME) + ((SYMBOL_NAME)[0] == '*'))
98577d03 450#endif
411707f4
CC
451/* Assign unique numbers to labels generated for profiling. */
452
8480e480 453extern int profile_label_no;
08c148a8
NB
454
455/* Default target function prologue and epilogue assembler output. */
456extern void default_function_pro_epilogue PARAMS ((FILE *, HOST_WIDE_INT));
b4c25db2
NB
457
458/* Default target hook that outputs nothing to a stream. */
459extern void no_asm_to_stream PARAMS ((FILE *));
7c262518
RH
460
461/* Flags controling properties of a section. */
201556f0
JJ
462#define SECTION_ENTSIZE 0x000ff /* entity size in section */
463#define SECTION_CODE 0x00100 /* contains code */
464#define SECTION_WRITE 0x00200 /* data is writable */
465#define SECTION_DEBUG 0x00400 /* contains debug data */
466#define SECTION_LINKONCE 0x00800 /* is linkonce */
467#define SECTION_SMALL 0x01000 /* contains "small data" */
468#define SECTION_BSS 0x02000 /* contains zeros only */
469#define SECTION_FORGET 0x04000 /* forget that we've entered the section */
470#define SECTION_MERGE 0x08000 /* contains mergeable data */
471#define SECTION_STRINGS 0x10000 /* contains zero terminated strings without
472 embedded zeros */
473#define SECTION_MACH_DEP 0x20000 /* subsequent bits reserved for target */
7c262518 474
715bdd29
RH
475extern unsigned int get_named_section_flags PARAMS ((const char *));
476extern bool set_named_section_flags PARAMS ((const char *, unsigned int));
477extern void named_section_flags PARAMS ((const char *, unsigned int));
7c262518
RH
478
479union tree_node;
480extern unsigned int default_section_type_flags PARAMS ((union tree_node *,
481 const char *, int));
482
715bdd29
RH
483extern void default_no_named_section PARAMS ((const char *, unsigned int));
484extern void default_elf_asm_named_section PARAMS ((const char *, unsigned int));
485extern void default_coff_asm_named_section PARAMS ((const char *,
486 unsigned int));
487extern void default_pe_asm_named_section PARAMS ((const char *, unsigned int));
7c262518 488
2cc07db4
RH
489extern void default_stabs_asm_out_destructor PARAMS ((struct rtx_def *, int));
490extern void default_named_section_asm_out_destructor PARAMS ((struct rtx_def *,
491 int));
492extern void default_dtor_section_asm_out_destructor PARAMS ((struct rtx_def *,
493 int));
494extern void default_stabs_asm_out_constructor PARAMS ((struct rtx_def *, int));
495extern void default_named_section_asm_out_constructor PARAMS ((struct rtx_def *,
496 int));
497extern void default_ctor_section_asm_out_constructor PARAMS ((struct rtx_def *,
498 int));