]> gcc.gnu.org Git - gcc.git/blame - gcc/rtl.h
Missed commit from last.
[gcc.git] / gcc / rtl.h
CommitLineData
6f29feb1 1/* Register Transfer Language (RTL) definitions for GNU C-Compiler
87e11268 2 Copyright (C) 1987, 91-98, 1999 Free Software Foundation, Inc.
6f29feb1
JW
3
4This file is part of GNU CC.
5
6GNU CC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU CC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU CC; see the file COPYING. If not, write to
e99215a3
RK
18the Free Software Foundation, 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
6f29feb1 20
ac957f13
JL
21#ifndef _RTL_H
22#define _RTL_H
6f29feb1
JW
23
24#include "machmode.h"
25
26#undef FFS /* Some systems predefine this symbol; don't let it interfere. */
1cfc3092 27#undef FLOAT /* Likewise. */
ac889e46 28#undef ABS /* Likewise. */
71ae9cc6 29#undef PC /* Likewise. */
6f29feb1 30
88efc60a
RK
31#ifndef TREE_CODE
32union tree_node;
33#endif
34
6f29feb1
JW
35/* Register Transfer Language EXPRESSIONS CODES */
36
37#define RTX_CODE enum rtx_code
38enum rtx_code {
39
40#define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) ENUM ,
41#include "rtl.def" /* rtl expressions are documented here */
42#undef DEF_RTL_EXPR
43
6dc42e49 44 LAST_AND_UNUSED_RTX_CODE}; /* A convenient way to get a value for
6f29feb1 45 NUM_RTX_CODE.
6dc42e49 46 Assumes default enum value assignment. */
6f29feb1
JW
47
48#define NUM_RTX_CODE ((int)LAST_AND_UNUSED_RTX_CODE)
49 /* The cast here, saves many elsewhere. */
50
51extern int rtx_length[];
0f41302f 52#define GET_RTX_LENGTH(CODE) (rtx_length[(int) (CODE)])
6f29feb1
JW
53
54extern char *rtx_name[];
0f41302f 55#define GET_RTX_NAME(CODE) (rtx_name[(int) (CODE)])
6f29feb1
JW
56
57extern char *rtx_format[];
0f41302f 58#define GET_RTX_FORMAT(CODE) (rtx_format[(int) (CODE)])
6f29feb1
JW
59
60extern char rtx_class[];
0f41302f 61#define GET_RTX_CLASS(CODE) (rtx_class[(int) (CODE)])
6f29feb1 62\f
33f7f353
JR
63/* The flags and bitfields of an ADDR_DIFF_VEC. BASE is the base label
64 relative to which the offsets are calculated, as explained in rtl.def. */
65typedef struct
66{
67 /* Set at the start of shorten_branches - ONLY WHEN OPTIMIZING - : */
68 unsigned min_align: 8;
69 /* Flags: */
70 unsigned base_after_vec: 1; /* BASE is after the ADDR_DIFF_VEC. */
71 unsigned min_after_vec: 1; /* minimum address target label is after the ADDR_DIFF_VEC. */
72 unsigned max_after_vec: 1; /* maximum address target label is after the ADDR_DIFF_VEC. */
73 unsigned min_after_base: 1; /* minimum address target label is after BASE. */
74 unsigned max_after_base: 1; /* maximum address target label is after BASE. */
75 /* Set by the actual branch shortening process - ONLY WHEN OPTIMIZING - : */
76 unsigned offset_unsigned: 1; /* offsets have to be treated as unsigned. */
77 unsigned : 2;
78 unsigned scale : 8;
79} addr_diff_vec_flags;
80
6f29feb1
JW
81/* Common union for an element of an rtx. */
82
83typedef union rtunion_def
84{
5f4f0e22 85 HOST_WIDE_INT rtwint;
6f29feb1
JW
86 int rtint;
87 char *rtstr;
88 struct rtx_def *rtx;
89 struct rtvec_def *rtvec;
90 enum machine_mode rttype;
33f7f353 91 addr_diff_vec_flags rt_addr_diff_vec_flags;
0dfa1860
MM
92 struct bitmap_head_def *rtbit;
93 union tree_node *rttree;
6f29feb1
JW
94} rtunion;
95
96/* RTL expression ("rtx"). */
97
98typedef struct rtx_def
99{
100#ifdef ONLY_INT_FIELDS
10c344b4
RS
101#ifdef CODE_FIELD_BUG
102 unsigned int code : 16;
103#else
6f29feb1 104 unsigned short code;
10c344b4 105#endif
6f29feb1
JW
106#else
107 /* The kind of expression this is. */
108 enum rtx_code code : 16;
109#endif
110 /* The kind of value the expression has. */
111#ifdef ONLY_INT_FIELDS
112 int mode : 8;
113#else
114 enum machine_mode mode : 8;
115#endif
116 /* 1 in an INSN if it can alter flow of control
117 within this function. Not yet used! */
118 unsigned int jump : 1;
119 /* 1 in an INSN if it can call another function. Not yet used! */
120 unsigned int call : 1;
121 /* 1 in a MEM or REG if value of this expression will never change
122 during the current function, even though it is not
123 manifestly constant.
07be3989 124 1 in a SUBREG if it is from a promoted variable that is unsigned.
6f29feb1
JW
125 1 in a SYMBOL_REF if it addresses something in the per-function
126 constants pool.
127 1 in a CALL_INSN if it is a const call.
128 1 in a JUMP_INSN if it is a branch that should be annulled. Valid from
129 reorg until end of compilation; cleared before used. */
130 unsigned int unchanging : 1;
131 /* 1 in a MEM expression if contents of memory are volatile.
132 1 in an INSN, CALL_INSN, JUMP_INSN, CODE_LABEL or BARRIER
133 if it is deleted.
134 1 in a REG expression if corresponds to a variable declared by the user.
135 0 for an internally generated temporary.
2a406d2a
RS
136 In a SYMBOL_REF, this flag is used for machine-specific purposes.
137 In a LABEL_REF or in a REG_LABEL note, this is LABEL_REF_NONLOCAL_P. */
6f29feb1 138 unsigned int volatil : 1;
8358a974 139 /* 1 in a MEM referring to a field of an aggregate.
6f29feb1
JW
140 0 if the MEM was a variable or the result of a * operator in C;
141 1 if it was the result of a . or -> operator (on a struct) in C.
142 1 in a REG if the register is used only in exit code a loop.
07be3989
RK
143 1 in a SUBREG expression if was generated from a variable with a
144 promoted mode.
6f29feb1
JW
145 1 in a CODE_LABEL if the label is used for nonlocal gotos
146 and must not be deleted even if its count is zero.
147 1 in a LABEL_REF if this is a reference to a label outside the
148 current loop.
149 1 in an INSN, JUMP_INSN, or CALL_INSN if this insn must be scheduled
d45cf215 150 together with the preceding insn. Valid only within sched.
6f29feb1
JW
151 1 in an INSN, JUMP_INSN, or CALL_INSN if insn is in a delay slot and
152 from the target of a branch. Valid from reorg until end of compilation;
153 cleared before used. */
154 unsigned int in_struct : 1;
155 /* 1 if this rtx is used. This is used for copying shared structure.
156 See `unshare_all_rtl'.
157 In a REG, this is not needed for that purpose, and used instead
158 in `leaf_renumber_regs_insn'.
159 In a SYMBOL_REF, means that emit_library_call
160 has used it as the function. */
161 unsigned int used : 1;
162 /* Nonzero if this rtx came from procedure integration.
163 In a REG, nonzero means this reg refers to the return value
164 of the current function. */
165 unsigned integrated : 1;
c6df88cb
MM
166 /* 1 in an INSN if this rtx is related to the call frame,
167 either changing how we compute the frame address or saving and
168 restoring registers in the prologue and epilogue.
169 1 in a MEM if the MEM refers to a scalar, rather than a member of
170 an aggregate. */
469ac993 171 unsigned frame_related : 1;
6f29feb1
JW
172 /* The first element of the operands of this rtx.
173 The number of operands and their types are controlled
174 by the `code' field, according to rtl.def. */
175 rtunion fld[1];
176} *rtx;
177
178#define NULL_RTX (rtx) 0
179
180/* Define macros to access the `code' field of the rtx. */
181
182#ifdef SHORT_ENUM_BUG
183#define GET_CODE(RTX) ((enum rtx_code) ((RTX)->code))
184#define PUT_CODE(RTX, CODE) ((RTX)->code = ((short) (CODE)))
185#else
186#define GET_CODE(RTX) ((RTX)->code)
187#define PUT_CODE(RTX, CODE) ((RTX)->code = (CODE))
188#endif
189
190#define GET_MODE(RTX) ((RTX)->mode)
191#define PUT_MODE(RTX, MODE) ((RTX)->mode = (MODE))
192
193#define RTX_INTEGRATED_P(RTX) ((RTX)->integrated)
194#define RTX_UNCHANGING_P(RTX) ((RTX)->unchanging)
469ac993 195#define RTX_FRAME_RELATED_P(RTX) ((RTX)->frame_related)
6f29feb1
JW
196
197/* RTL vector. These appear inside RTX's when there is a need
198 for a variable number of things. The principle use is inside
199 PARALLEL expressions. */
200
201typedef struct rtvec_def{
e9a25f70 202 int num_elem; /* number of elements */
6f29feb1
JW
203 rtunion elem[1];
204} *rtvec;
205
206#define NULL_RTVEC (rtvec) 0
207
208#define GET_NUM_ELEM(RTVEC) ((RTVEC)->num_elem)
e9a25f70 209#define PUT_NUM_ELEM(RTVEC, NUM) ((RTVEC)->num_elem = (NUM))
6f29feb1
JW
210
211#define RTVEC_ELT(RTVEC, I) ((RTVEC)->elem[(I)].rtx)
212
213/* 1 if X is a REG. */
214
215#define REG_P(X) (GET_CODE (X) == REG)
216
217/* 1 if X is a constant value that is an integer. */
218
219#define CONSTANT_P(X) \
220 (GET_CODE (X) == LABEL_REF || GET_CODE (X) == SYMBOL_REF \
221 || GET_CODE (X) == CONST_INT || GET_CODE (X) == CONST_DOUBLE \
ee5332b8
RH
222 || GET_CODE (X) == CONST || GET_CODE (X) == HIGH \
223 || GET_CODE (X) == CONSTANT_P_RTX)
6f29feb1
JW
224
225/* General accessor macros for accessing the fields of an rtx. */
226
227#define XEXP(RTX, N) ((RTX)->fld[N].rtx)
228#define XINT(RTX, N) ((RTX)->fld[N].rtint)
5f4f0e22 229#define XWINT(RTX, N) ((RTX)->fld[N].rtwint)
6f29feb1
JW
230#define XSTR(RTX, N) ((RTX)->fld[N].rtstr)
231#define XVEC(RTX, N) ((RTX)->fld[N].rtvec)
232#define XVECLEN(RTX, N) ((RTX)->fld[N].rtvec->num_elem)
233#define XVECEXP(RTX,N,M)((RTX)->fld[N].rtvec->elem[M].rtx)
0dfa1860
MM
234#define XBITMAP(RTX, N) ((RTX)->fld[N].rtbit)
235#define XTREE(RTX, N) ((RTX)->fld[N].rttree)
236
6f29feb1
JW
237\f
238/* ACCESS MACROS for particular fields of insns. */
239
240/* Holds a unique number for each insn.
241 These are not necessarily sequentially increasing. */
242#define INSN_UID(INSN) ((INSN)->fld[0].rtint)
243
244/* Chain insns together in sequence. */
245#define PREV_INSN(INSN) ((INSN)->fld[1].rtx)
246#define NEXT_INSN(INSN) ((INSN)->fld[2].rtx)
247
248/* The body of an insn. */
249#define PATTERN(INSN) ((INSN)->fld[3].rtx)
250
251/* Code number of instruction, from when it was recognized.
252 -1 means this instruction has not been recognized yet. */
253#define INSN_CODE(INSN) ((INSN)->fld[4].rtint)
254
255/* Set up in flow.c; empty before then.
256 Holds a chain of INSN_LIST rtx's whose first operands point at
257 previous insns with direct data-flow connections to this one.
258 That means that those insns set variables whose next use is in this insn.
259 They are always in the same basic block as this insn. */
260#define LOG_LINKS(INSN) ((INSN)->fld[5].rtx)
261
262/* 1 if insn has been deleted. */
263#define INSN_DELETED_P(INSN) ((INSN)->volatil)
264
265/* 1 if insn is a call to a const function. */
266#define CONST_CALL_P(INSN) ((INSN)->unchanging)
267
268/* 1 if insn is a branch that should not unconditionally execute its
269 delay slots, i.e., it is an annulled branch. */
270#define INSN_ANNULLED_BRANCH_P(INSN) ((INSN)->unchanging)
271
272/* 1 if insn is in a delay slot and is from the target of the branch. If
6dc42e49 273 the branch insn has INSN_ANNULLED_BRANCH_P set, this insn should only be
6f29feb1
JW
274 executed if the branch is taken. For annulled branches with this bit
275 clear, the insn should be executed only if the branch is not taken. */
276#define INSN_FROM_TARGET_P(INSN) ((INSN)->in_struct)
277
278/* Holds a list of notes on what this insn does to various REGs.
279 It is a chain of EXPR_LIST rtx's, where the second operand
280 is the chain pointer and the first operand is the REG being described.
281 The mode field of the EXPR_LIST contains not a real machine mode
282 but a value that says what this note says about the REG:
283 REG_DEAD means that the value in REG dies in this insn (i.e., it is
284 not needed past this insn). If REG is set in this insn, the REG_DEAD
285 note may, but need not, be omitted.
286 REG_INC means that the REG is autoincremented or autodecremented.
f75487ff
ILT
287 REG_EQUIV describes the insn as a whole; it says that the insn
288 sets a register to a constant value or to be equivalent to a memory
289 address. If the register is spilled to the stack then the constant
290 value should be substituted for it. The contents of the REG_EQUIV
6f29feb1 291 is the constant value or memory address, which may be different
f75487ff
ILT
292 from the source of the SET although it has the same value. A
293 REG_EQUIV note may also appear on an insn which copies a register
294 parameter to a pseudo-register, if there is a memory address which
295 could be used to hold that pseudo-register throughout the function.
6f29feb1
JW
296 REG_EQUAL is like REG_EQUIV except that the destination
297 is only momentarily equal to the specified rtx. Therefore, it
298 cannot be used for substitution; but it can be used for cse.
299 REG_RETVAL means that this insn copies the return-value of
300 a library call out of the hard reg for return values. This note
301 is actually an INSN_LIST and it points to the first insn involved
302 in setting up arguments for the call. flow.c uses this to delete
303 the entire library call when its result is dead.
304 REG_LIBCALL is the inverse of REG_RETVAL: it goes on the first insn
305 of the library call and points at the one that has the REG_RETVAL.
306 REG_WAS_0 says that the register set in this insn held 0 before the insn.
307 The contents of the note is the insn that stored the 0.
308 If that insn is deleted or patched to a NOTE, the REG_WAS_0 is inoperative.
309 The REG_WAS_0 note is actually an INSN_LIST, not an EXPR_LIST.
310 REG_NONNEG means that the register is always nonnegative during
311 the containing loop. This is used in branches so that decrement and
312 branch instructions terminating on zero can be matched. There must be
313 an insn pattern in the md file named `decrement_and_branch_until_zero'
314 or else this will never be added to any instructions.
315 REG_NO_CONFLICT means there is no conflict *after this insn*
316 between the register in the note and the destination of this insn.
317 REG_UNUSED identifies a register set in this insn and never used.
318 REG_CC_SETTER and REG_CC_USER link a pair of insns that set and use
319 CC0, respectively. Normally, these are required to be consecutive insns,
320 but we permit putting a cc0-setting insn in the delay slot of a branch
321 as long as only one copy of the insn exists. In that case, these notes
322 point from one to the other to allow code generation to determine what
323 any require information and to properly update CC_STATUS.
324 REG_LABEL points to a CODE_LABEL. Used by non-JUMP_INSNs to
325 say that the CODE_LABEL contained in the REG_LABEL note is used
326 by the insn.
d45cf215 327 REG_DEP_ANTI is used in LOG_LINKS which represent anti (write after read)
6f29feb1
JW
328 dependencies. REG_DEP_OUTPUT is used in LOG_LINKS which represent output
329 (write after write) dependencies. Data dependencies, which are the only
330 type of LOG_LINK created by flow, are represented by a 0 reg note kind. */
7ae21caf
DE
331/* REG_BR_PROB is attached to JUMP_INSNs and CALL_INSNs when the flag
332 -fbranch-probabilities is given. It has an integer value. For jumps,
333 it is the probability that this is a taken branch. For calls, it is the
334 probability that this call won't return.
335 REG_EXEC_COUNT is attached to the first insn of each basic block, and
336 the first insn after each CALL_INSN. It indicates how many times this
c107334d
DM
337 block was executed.
338 REG_SAVE_AREA is used to optimize rtl generated by dynamic stack
339 allocations for targets where SETJMP_VIA_SAVE_AREA is true.
340 REG_BR_PRED is attached to JUMP_INSNs only, it holds the branch prediction
07ebc930
RH
341 flags computed by get_jump_flags() after dbr scheduling is complete.
342 REG_FRAME_RELATED_EXPR is attached to insns that are RTX_FRAME_RELATED_P,
343 but are too complex for DWARF to interpret what they imply. The attached
344 rtx is used instead of intuition. */
e6cfb550
AM
345/* REG_EH_REGION is used to indicate what exception region an INSN
346 belongs in. This can be used to indicate what region a call may throw
347 to. a REGION of 0 indicates that a call cannot throw at all.
348 REG_EH_RETHROW is used to indicate what that a call is actually a
349 call to rethrow, and specifies which region the rethrow is targetting.
350 This provides a way to generate the non standard flow edges required
351 for a rethrow. */
352
6f29feb1
JW
353
354#define REG_NOTES(INSN) ((INSN)->fld[6].rtx)
355
33f7f353
JR
356#define ADDR_DIFF_VEC_FLAGS(RTX) ((RTX)->fld[4].rt_addr_diff_vec_flags)
357
6f29feb1
JW
358/* Don't forget to change reg_note_name in rtl.c. */
359enum reg_note { REG_DEAD = 1, REG_INC = 2, REG_EQUIV = 3, REG_WAS_0 = 4,
360 REG_EQUAL = 5, REG_RETVAL = 6, REG_LIBCALL = 7,
361 REG_NONNEG = 8, REG_NO_CONFLICT = 9, REG_UNUSED = 10,
362 REG_CC_SETTER = 11, REG_CC_USER = 12, REG_LABEL = 13,
7ae21caf 363 REG_DEP_ANTI = 14, REG_DEP_OUTPUT = 15, REG_BR_PROB = 16,
c107334d 364 REG_EXEC_COUNT = 17, REG_NOALIAS = 18, REG_SAVE_AREA = 19,
07ebc930 365 REG_BR_PRED = 20, REG_EH_CONTEXT = 21,
e6cfb550
AM
366 REG_FRAME_RELATED_EXPR = 22, REG_EH_REGION = 23,
367 REG_EH_RETHROW = 24 };
7ae21caf
DE
368/* The base value for branch probability notes. */
369#define REG_BR_PROB_BASE 10000
6f29feb1
JW
370
371/* Define macros to extract and insert the reg-note kind in an EXPR_LIST. */
372#define REG_NOTE_KIND(LINK) ((enum reg_note) GET_MODE (LINK))
373#define PUT_REG_NOTE_KIND(LINK,KIND) PUT_MODE(LINK, (enum machine_mode) (KIND))
374
375/* Names for REG_NOTE's in EXPR_LIST insn's. */
376
377extern char *reg_note_name[];
0f41302f 378#define GET_REG_NOTE_NAME(MODE) (reg_note_name[(int) (MODE)])
6f29feb1 379
e51c6661
RK
380/* This field is only present on CALL_INSNs. It holds a chain of EXPR_LIST of
381 USE and CLOBBER expressions.
382 USE expressions list the registers filled with arguments that
383 are passed to the function.
384 CLOBBER expressions document the registers explicitly clobbered
385 by this CALL_INSN.
386 Pseudo registers can not be mentioned in this list. */
387#define CALL_INSN_FUNCTION_USAGE(INSN) ((INSN)->fld[7].rtx)
388
6f29feb1
JW
389/* The label-number of a code-label. The assembler label
390 is made from `L' and the label-number printed in decimal.
391 Label numbers are unique in a compilation. */
392#define CODE_LABEL_NUMBER(INSN) ((INSN)->fld[3].rtint)
393
394#define LINE_NUMBER NOTE
395
0dfa1860
MM
396/* In a NOTE that is a line number, this is a string for the file name that the
397 line is in. We use the same field to record block numbers temporarily in
398 NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes. (We avoid lots of casts
399 between ints and pointers if we use a different macro for the block number.)
400 The NOTE_INSN_RANGE_{START,END} and NOTE_INSN_LIVE notes record their
401 information as a rtx in the field. */
6f29feb1
JW
402
403#define NOTE_SOURCE_FILE(INSN) ((INSN)->fld[3].rtstr)
3da3fb2f 404#define NOTE_BLOCK_NUMBER(INSN) ((INSN)->fld[3].rtint)
0dfa1860
MM
405#define NOTE_RANGE_INFO(INSN) ((INSN)->fld[3].rtx)
406#define NOTE_LIVE_INFO(INSN) ((INSN)->fld[3].rtx)
407
408/* If the NOTE_BLOCK_NUMBER field gets a -1, it means create a new
409 block node for a live range block. */
410#define NOTE_BLOCK_LIVE_RANGE_BLOCK -1
6f29feb1
JW
411
412/* In a NOTE that is a line number, this is the line number.
413 Other kinds of NOTEs are identified by negative numbers here. */
414#define NOTE_LINE_NUMBER(INSN) ((INSN)->fld[4].rtint)
415
416/* Codes that appear in the NOTE_LINE_NUMBER field
a31efb86 417 for kinds of notes that are not line numbers.
6f29feb1 418
a31efb86
DE
419 Notice that we do not try to use zero here for any of
420 the special note codes because sometimes the source line
421 actually can be zero! This happens (for example) when we
422 are generating code for the per-translation-unit constructor
423 and destructor routines for some C++ translation unit.
424
425 If you should change any of the following values, or if you
426 should add a new value here, don't forget to change the
427 note_insn_name array in rtl.c. */
6f29feb1
JW
428
429/* This note is used to get rid of an insn
430 when it isn't safe to patch the insn out of the chain. */
431#define NOTE_INSN_DELETED -1
432#define NOTE_INSN_BLOCK_BEG -2
433#define NOTE_INSN_BLOCK_END -3
434#define NOTE_INSN_LOOP_BEG -4
435#define NOTE_INSN_LOOP_END -5
436/* This kind of note is generated at the end of the function body,
437 just before the return insn or return label.
438 In an optimizing compilation it is deleted by the first jump optimization,
439 after enabling that optimizer to determine whether control can fall
440 off the end of the function body without a return statement. */
441#define NOTE_INSN_FUNCTION_END -6
442/* This kind of note is generated just after each call to `setjmp', et al. */
443#define NOTE_INSN_SETJMP -7
444/* Generated at the place in a loop that `continue' jumps to. */
445#define NOTE_INSN_LOOP_CONT -8
446/* Generated at the start of a duplicated exit test. */
447#define NOTE_INSN_LOOP_VTOP -9
bdac5f58
TW
448/* This marks the point immediately after the last prologue insn. */
449#define NOTE_INSN_PROLOGUE_END -10
450/* This marks the point immediately prior to the first epilogue insn. */
451#define NOTE_INSN_EPILOGUE_BEG -11
196cedd0
RS
452/* Generated in place of user-declared labels when they are deleted. */
453#define NOTE_INSN_DELETED_LABEL -12
a31efb86
DE
454/* This note indicates the start of the real body of the function,
455 i.e. the point just after all of the parms have been moved into
456 their homes, etc. */
457#define NOTE_INSN_FUNCTION_BEG -13
3d195391
MS
458/* These note where exception handling regions begin and end. */
459#define NOTE_INSN_EH_REGION_BEG -14
460#define NOTE_INSN_EH_REGION_END -15
7ae21caf
DE
461/* Generated whenever a duplicate line number note is output. For example,
462 one is output after the end of an inline function, in order to prevent
463 the line containing the inline call from being counted twice in gcov. */
464#define NOTE_REPEATED_LINE_NUMBER -16
6f29feb1 465
0dfa1860
MM
466/* Start/end of a live range region, where pseudos allocated on the stack can
467 be allocated to temporary registers. */
468#define NOTE_INSN_RANGE_START -17
469#define NOTE_INSN_RANGE_END -18
470/* Record which registers are currently live. */
471#define NOTE_INSN_LIVE -19
10f07067
RS
472
473#if 0 /* These are not used, and I don't know what they were for. --rms. */
6f29feb1
JW
474#define NOTE_DECL_NAME(INSN) ((INSN)->fld[3].rtstr)
475#define NOTE_DECL_CODE(INSN) ((INSN)->fld[4].rtint)
476#define NOTE_DECL_RTL(INSN) ((INSN)->fld[5].rtx)
477#define NOTE_DECL_IDENTIFIER(INSN) ((INSN)->fld[6].rtint)
478#define NOTE_DECL_TYPE(INSN) ((INSN)->fld[7].rtint)
10f07067 479#endif /* 0 */
6f29feb1
JW
480
481/* Names for NOTE insn's other than line numbers. */
482
483extern char *note_insn_name[];
484#define GET_NOTE_INSN_NAME(NOTE_CODE) (note_insn_name[-(NOTE_CODE)])
485
486/* The name of a label, in case it corresponds to an explicit label
487 in the input source code. */
488#define LABEL_NAME(LABEL) ((LABEL)->fld[4].rtstr)
489
490/* In jump.c, each label contains a count of the number
491 of LABEL_REFs that point at it, so unused labels can be deleted. */
492#define LABEL_NUSES(LABEL) ((LABEL)->fld[5].rtint)
493
e9a25f70
JL
494/* The original regno this ADDRESSOF was built for. */
495#define ADDRESSOF_REGNO(RTX) ((RTX)->fld[1].rtint)
496
497/* The variable in the register we took the address of. */
498#define ADDRESSOF_DECL(X) ((tree) XEXP ((X), 2))
499#define SET_ADDRESSOF_DECL(X, T) (XEXP ((X), 2) = (rtx) (T))
500
6f29feb1
JW
501/* In jump.c, each JUMP_INSN can point to a label that it can jump to,
502 so that if the JUMP_INSN is deleted, the label's LABEL_NUSES can
503 be decremented and possibly the label can be deleted. */
504#define JUMP_LABEL(INSN) ((INSN)->fld[7].rtx)
505
506/* Once basic blocks are found in flow.c,
507 each CODE_LABEL starts a chain that goes through
508 all the LABEL_REFs that jump to that label.
509 The chain eventually winds up at the CODE_LABEL; it is circular. */
f754c4a1 510#define LABEL_REFS(LABEL) ((LABEL)->fld[6].rtx)
6f29feb1
JW
511\f
512/* This is the field in the LABEL_REF through which the circular chain
513 of references to a particular label is linked.
514 This chain is set up in flow.c. */
515
516#define LABEL_NEXTREF(REF) ((REF)->fld[1].rtx)
517
518/* Once basic blocks are found in flow.c,
519 Each LABEL_REF points to its containing instruction with this field. */
520
521#define CONTAINING_INSN(RTX) ((RTX)->fld[2].rtx)
522
523/* For a REG rtx, REGNO extracts the register number. */
524
525#define REGNO(RTX) ((RTX)->fld[0].rtint)
526
527/* For a REG rtx, REG_FUNCTION_VALUE_P is nonzero if the reg
528 is the current function's return value. */
529
530#define REG_FUNCTION_VALUE_P(RTX) ((RTX)->integrated)
531
532/* 1 in a REG rtx if it corresponds to a variable declared by the user. */
533#define REG_USERVAR_P(RTX) ((RTX)->volatil)
534
535/* For a CONST_INT rtx, INTVAL extracts the integer. */
536
5f4f0e22 537#define INTVAL(RTX) ((RTX)->fld[0].rtwint)
6f29feb1
JW
538
539/* For a SUBREG rtx, SUBREG_REG extracts the value we want a subreg of.
540 SUBREG_WORD extracts the word-number. */
541
542#define SUBREG_REG(RTX) ((RTX)->fld[0].rtx)
543#define SUBREG_WORD(RTX) ((RTX)->fld[1].rtint)
544
07be3989
RK
545/* 1 if the REG contained in SUBREG_REG is already known to be
546 sign- or zero-extended from the mode of the SUBREG to the mode of
547 the reg. SUBREG_PROMOTED_UNSIGNED_P gives the signedness of the
548 extension.
549
550 When used as a LHS, is means that this extension must be done
551 when assigning to SUBREG_REG. */
552
553#define SUBREG_PROMOTED_VAR_P(RTX) ((RTX)->in_struct)
554#define SUBREG_PROMOTED_UNSIGNED_P(RTX) ((RTX)->unchanging)
555
6f29feb1
JW
556/* Access various components of an ASM_OPERANDS rtx. */
557
558#define ASM_OPERANDS_TEMPLATE(RTX) XSTR ((RTX), 0)
559#define ASM_OPERANDS_OUTPUT_CONSTRAINT(RTX) XSTR ((RTX), 1)
560#define ASM_OPERANDS_OUTPUT_IDX(RTX) XINT ((RTX), 2)
561#define ASM_OPERANDS_INPUT_VEC(RTX) XVEC ((RTX), 3)
562#define ASM_OPERANDS_INPUT_CONSTRAINT_VEC(RTX) XVEC ((RTX), 4)
563#define ASM_OPERANDS_INPUT(RTX, N) XVECEXP ((RTX), 3, (N))
564#define ASM_OPERANDS_INPUT_LENGTH(RTX) XVECLEN ((RTX), 3)
565#define ASM_OPERANDS_INPUT_CONSTRAINT(RTX, N) XSTR (XVECEXP ((RTX), 4, (N)), 0)
566#define ASM_OPERANDS_INPUT_MODE(RTX, N) GET_MODE (XVECEXP ((RTX), 4, (N)))
567#define ASM_OPERANDS_SOURCE_FILE(RTX) XSTR ((RTX), 5)
568#define ASM_OPERANDS_SOURCE_LINE(RTX) XINT ((RTX), 6)
569
570/* For a MEM rtx, 1 if it's a volatile reference.
571 Also in an ASM_OPERANDS rtx. */
572#define MEM_VOLATILE_P(RTX) ((RTX)->volatil)
573
c6df88cb
MM
574/* For a MEM rtx, 1 if it refers to a field of an aggregate. If zero,
575 RTX may or may not refer to a field of an aggregate. */
6f29feb1
JW
576#define MEM_IN_STRUCT_P(RTX) ((RTX)->in_struct)
577
c6df88cb
MM
578/* For a MEM rtx, 1 if it refers to a scalar. If zero, RTX may or may
579 not refer to a scalar.*/
580#define MEM_SCALAR_P(RTX) ((RTX)->frame_related)
581
582/* Copy the MEM_VOLATILE_P, MEM_IN_STRUCT_P, and MEM_SCALAR_P
583 attributes from RHS to LHS. */
584#define MEM_COPY_ATTRIBUTES(LHS, RHS) \
585 (MEM_VOLATILE_P (LHS) = MEM_VOLATILE_P (RHS), \
586 MEM_IN_STRUCT_P (LHS) = MEM_IN_STRUCT_P (RHS), \
587 MEM_SCALAR_P (LHS) = MEM_SCALAR_P (RHS)) \
588
589/* If VAL is non-zero, set MEM_IN_STRUCT_P and clear MEM_SCALAR_P in
590 RTX. Otherwise, vice versa. Use this macro only when you are
591 *sure* that you know that the MEM is in a structure, or is a
592 scalar. VAL is evaluated only once. */
593#define MEM_SET_IN_STRUCT_P(RTX, VAL) \
594 ((VAL) ? (MEM_IN_STRUCT_P (RTX) = 1, MEM_SCALAR_P (RTX) = 0) \
595 : (MEM_IN_STRUCT_P (RTX) = 0, MEM_SCALAR_P (RTX) = 1))
596
41472af8
MM
597/* For a MEM rtx, the alias set. If 0, this MEM is not in any alias
598 set, and may alias anything. Otherwise, the MEM can only alias
599 MEMs in the same alias set. This value is set in a
600 language-dependent manner in the front-end, and should not be
601 altered in the back-end. These set numbers are tested for zero,
602 and compared for equality; they have no other significance. In
603 some front-ends, these numbers may correspond in some way to types,
604 or other language-level entities, but they need not, and the
605 back-end makes no such assumptions. */
606#define MEM_ALIAS_SET(RTX) (XINT (RTX, 1))
607
6f29feb1
JW
608/* For a LABEL_REF, 1 means that this reference is to a label outside the
609 loop containing the reference. */
610#define LABEL_OUTSIDE_LOOP_P(RTX) ((RTX)->in_struct)
611
adfaf10a 612/* For a LABEL_REF, 1 means it is for a nonlocal label. */
2a406d2a 613/* Likewise in an EXPR_LIST for a REG_LABEL note. */
adfaf10a
RS
614#define LABEL_REF_NONLOCAL_P(RTX) ((RTX)->volatil)
615
6f29feb1
JW
616/* For a CODE_LABEL, 1 means always consider this label to be needed. */
617#define LABEL_PRESERVE_P(RTX) ((RTX)->in_struct)
618
619/* For a REG, 1 means the register is used only in an exit test of a loop. */
620#define REG_LOOP_TEST_P(RTX) ((RTX)->in_struct)
621
622/* During sched, for an insn, 1 means that the insn must be scheduled together
d45cf215 623 with the preceding insn. */
6f29feb1
JW
624#define SCHED_GROUP_P(INSN) ((INSN)->in_struct)
625
c376c05b
TW
626/* During sched, for the LOG_LINKS of an insn, these cache the adjusted
627 cost of the dependence link. The cost of executing an instruction
628 may vary based on how the results are used. LINK_COST_ZERO is 1 when
629 the cost through the link varies and is unchanged (i.e., the link has
630 zero additional cost). LINK_COST_FREE is 1 when the cost through the
631 link is zero (i.e., the link makes the cost free). In other cases,
632 the adjustment to the cost is recomputed each time it is needed. */
633#define LINK_COST_ZERO(X) ((X)->jump)
634#define LINK_COST_FREE(X) ((X)->call)
635
6f29feb1
JW
636/* For a SET rtx, SET_DEST is the place that is set
637 and SET_SRC is the value it is set to. */
638#define SET_DEST(RTX) ((RTX)->fld[0].rtx)
639#define SET_SRC(RTX) ((RTX)->fld[1].rtx)
640
641/* For a TRAP_IF rtx, TRAP_CONDITION is an expression. */
642#define TRAP_CONDITION(RTX) ((RTX)->fld[0].rtx)
e0cd0770 643#define TRAP_CODE(RTX) (RTX)->fld[1].rtx
6f29feb1
JW
644
645/* 1 in a SYMBOL_REF if it addresses this function's constants pool. */
646#define CONSTANT_POOL_ADDRESS_P(RTX) ((RTX)->unchanging)
647
648/* Flag in a SYMBOL_REF for machine-specific purposes. */
649#define SYMBOL_REF_FLAG(RTX) ((RTX)->volatil)
650
e6cfb550
AM
651/* 1 in a SYMBOL_REF if it represents a symbol which might have to change
652 if its inlined or unrolled. */
653#define SYMBOL_REF_NEED_ADJUST(RTX) ((RTX)->in_struct)
654
6f29feb1
JW
655/* 1 means a SYMBOL_REF has been the library function in emit_library_call. */
656#define SYMBOL_REF_USED(RTX) ((RTX)->used)
657
658/* For an INLINE_HEADER rtx, FIRST_FUNCTION_INSN is the first insn
659 of the function that is not involved in copying parameters to
660 pseudo-registers. FIRST_PARM_INSN is the very first insn of
661 the function, including the parameter copying.
662 We keep this around in case we must splice
663 this function into the assembly code at the end of the file.
664 FIRST_LABELNO is the first label number used by the function (inclusive).
665 LAST_LABELNO is the last label used by the function (exclusive).
666 MAX_REGNUM is the largest pseudo-register used by that function.
667 FUNCTION_ARGS_SIZE is the size of the argument block in the stack.
668 POPS_ARGS is the number of bytes of input arguments popped by the function
669 STACK_SLOT_LIST is the list of stack slots.
2fbb1ada 670 FORCED_LABELS is the list of labels whose address was taken.
6f29feb1
JW
671 FUNCTION_FLAGS are where single-bit flags are saved.
672 OUTGOING_ARGS_SIZE is the size of the largest outgoing stack parameter list.
673 ORIGINAL_ARG_VECTOR is a vector of the original DECL_RTX values
674 for the function arguments.
675 ORIGINAL_DECL_INITIAL is a pointer to the original DECL_INITIAL for the
676 function.
ee5fb731
RK
677 INLINE_REGNO_REG_RTX, INLINE_REGNO_POINTER_FLAG, and
678 INLINE_REGNO_POINTER_ALIGN are pointers to the corresponding arrays.
6f29feb1
JW
679
680 We want this to lay down like an INSN. The PREV_INSN field
681 is always NULL. The NEXT_INSN field always points to the
682 first function insn of the function being squirreled away. */
683
684#define FIRST_FUNCTION_INSN(RTX) ((RTX)->fld[2].rtx)
685#define FIRST_PARM_INSN(RTX) ((RTX)->fld[3].rtx)
686#define FIRST_LABELNO(RTX) ((RTX)->fld[4].rtint)
687#define LAST_LABELNO(RTX) ((RTX)->fld[5].rtint)
688#define MAX_PARMREG(RTX) ((RTX)->fld[6].rtint)
689#define MAX_REGNUM(RTX) ((RTX)->fld[7].rtint)
690#define FUNCTION_ARGS_SIZE(RTX) ((RTX)->fld[8].rtint)
691#define POPS_ARGS(RTX) ((RTX)->fld[9].rtint)
692#define STACK_SLOT_LIST(RTX) ((RTX)->fld[10].rtx)
2fbb1ada
RK
693#define FORCED_LABELS(RTX) ((RTX)->fld[11].rtx)
694#define FUNCTION_FLAGS(RTX) ((RTX)->fld[12].rtint)
695#define OUTGOING_ARGS_SIZE(RTX) ((RTX)->fld[13].rtint)
696#define ORIGINAL_ARG_VECTOR(RTX) ((RTX)->fld[14].rtvec)
697#define ORIGINAL_DECL_INITIAL(RTX) ((RTX)->fld[15].rtx)
ee5fb731 698#define INLINE_REGNO_REG_RTX(RTX) ((RTX)->fld[16].rtvec)
67f21747
JW
699#define INLINE_REGNO_POINTER_FLAG(RTX) ((RTX)->fld[17].rtstr)
700#define INLINE_REGNO_POINTER_ALIGN(RTX) ((RTX)->fld[18].rtstr)
e9a25f70 701#define PARMREG_STACK_LOC(RTX) ((RTX)->fld[19].rtvec)
6f29feb1
JW
702
703/* In FUNCTION_FLAGS we save some variables computed when emitting the code
704 for the function and which must be `or'ed into the current flag values when
705 insns from that function are being inlined. */
706
707/* These ought to be an enum, but non-ANSI compilers don't like that. */
708#define FUNCTION_FLAGS_CALLS_ALLOCA 01
709#define FUNCTION_FLAGS_CALLS_SETJMP 02
710#define FUNCTION_FLAGS_RETURNS_STRUCT 04
711#define FUNCTION_FLAGS_RETURNS_PCC_STRUCT 010
712#define FUNCTION_FLAGS_NEEDS_CONTEXT 020
713#define FUNCTION_FLAGS_HAS_NONLOCAL_LABEL 040
714#define FUNCTION_FLAGS_RETURNS_POINTER 0100
715#define FUNCTION_FLAGS_USES_CONST_POOL 0200
716#define FUNCTION_FLAGS_CALLS_LONGJMP 0400
717#define FUNCTION_FLAGS_USES_PIC_OFFSET_TABLE 01000
ab87f8c8 718#define FUNCTION_FLAGS_ADDRESSES_LABELS 02000
6f29feb1
JW
719
720/* Define a macro to look for REG_INC notes,
721 but save time on machines where they never exist. */
722
58e54c44
RS
723/* Don't continue this line--convex cc version 4.1 would lose. */
724#if (defined (HAVE_PRE_INCREMENT) || defined (HAVE_PRE_DECREMENT) || defined (HAVE_POST_INCREMENT) || defined (HAVE_POST_DECREMENT))
6f29feb1
JW
725#define FIND_REG_INC_NOTE(insn, reg) (find_reg_note ((insn), REG_INC, (reg)))
726#else
727#define FIND_REG_INC_NOTE(insn, reg) 0
728#endif
729
730/* Indicate whether the machine has any sort of auto increment addressing.
731 If not, we can avoid checking for REG_INC notes. */
732
58e54c44
RS
733/* Don't continue this line--convex cc version 4.1 would lose. */
734#if (defined (HAVE_PRE_INCREMENT) || defined (HAVE_PRE_DECREMENT) || defined (HAVE_POST_INCREMENT) || defined (HAVE_POST_DECREMENT))
6f29feb1
JW
735#define AUTO_INC_DEC
736#endif
0dfa1860 737
940da324
JL
738#ifndef HAVE_PRE_INCREMENT
739#define HAVE_PRE_INCREMENT 0
740#endif
741
742#ifndef HAVE_PRE_DECREMENT
743#define HAVE_PRE_DECREMENT 0
744#endif
745
746#ifndef HAVE_POST_INCREMENT
747#define HAVE_POST_INCREMENT 0
748#endif
749
750#ifndef HAVE_POST_DECREMENT
751#define HAVE_POST_DECREMENT 0
752#endif
753
0dfa1860
MM
754/* Accessors for RANGE_INFO. */
755/* For RANGE_{START,END} notes return the RANGE_START note. */
756#define RANGE_INFO_NOTE_START(INSN) (XEXP (INSN, 0))
757
758/* For RANGE_{START,END} notes return the RANGE_START note. */
759#define RANGE_INFO_NOTE_END(INSN) (XEXP (INSN, 1))
760
761/* For RANGE_{START,END} notes, return the vector containing the registers used
762 in the range. */
763#define RANGE_INFO_REGS(INSN) (XVEC (INSN, 2))
764#define RANGE_INFO_REGS_REG(INSN, N) (XVECEXP (INSN, 2, N))
765#define RANGE_INFO_NUM_REGS(INSN) (XVECLEN (INSN, 2))
766
767/* For RANGE_{START,END} notes, the number of calls within the range. */
768#define RANGE_INFO_NCALLS(INSN) (XINT (INSN, 3))
769
770/* For RANGE_{START,END} notes, the number of insns within the range. */
771#define RANGE_INFO_NINSNS(INSN) (XINT (INSN, 4))
772
773/* For RANGE_{START,END} notes, a unique # to identify this range. */
774#define RANGE_INFO_UNIQUE(INSN) (XINT (INSN, 5))
775
776/* For RANGE_{START,END} notes, the basic block # the range starts with. */
777#define RANGE_INFO_BB_START(INSN) (XINT (INSN, 6))
778
779/* For RANGE_{START,END} notes, the basic block # the range ends with. */
780#define RANGE_INFO_BB_END(INSN) (XINT (INSN, 7))
781
782/* For RANGE_{START,END} notes, the loop depth the range is in. */
783#define RANGE_INFO_LOOP_DEPTH(INSN) (XINT (INSN, 8))
784
785/* For RANGE_{START,END} notes, the bitmap of live registers at the start
786 of the range. */
787#define RANGE_INFO_LIVE_START(INSN) (XBITMAP (INSN, 9))
788
789/* For RANGE_{START,END} notes, the bitmap of live registers at the end
790 of the range. */
791#define RANGE_INFO_LIVE_END(INSN) (XBITMAP (INSN, 10))
792
793/* For RANGE_START notes, the marker # of the start of the range. */
794#define RANGE_INFO_MARKER_START(INSN) (XINT (INSN, 11))
795
796/* For RANGE_START notes, the marker # of the end of the range. */
797#define RANGE_INFO_MARKER_END(INSN) (XINT (INSN, 12))
798
799/* Original pseudo register # for a live range note. */
800#define RANGE_REG_PSEUDO(INSN,N) (XINT (XVECEXP (INSN, 2, N), 0))
801
802/* Pseudo register # original register is copied into or -1. */
803#define RANGE_REG_COPY(INSN,N) (XINT (XVECEXP (INSN, 2, N), 1))
804
805/* How many times a register in a live range note was referenced. */
806#define RANGE_REG_REFS(INSN,N) (XINT (XVECEXP (INSN, 2, N), 2))
807
808/* How many times a register in a live range note was set. */
809#define RANGE_REG_SETS(INSN,N) (XINT (XVECEXP (INSN, 2, N), 3))
810
811/* How many times a register in a live range note died. */
812#define RANGE_REG_DEATHS(INSN,N) (XINT (XVECEXP (INSN, 2, N), 4))
813
814/* Whether the original value is needed to be copied into the range register at
815 the start of the range. */
816#define RANGE_REG_COPY_FLAGS(INSN,N) (XINT (XVECEXP (INSN, 2, N), 5))
817
818/* # of insns the register copy is live over. */
819#define RANGE_REG_LIVE_LENGTH(INSN,N) (XINT (XVECEXP (INSN, 2, N), 6))
820
821/* # of calls the register copy is live over. */
822#define RANGE_REG_N_CALLS(INSN,N) (XINT (XVECEXP (INSN, 2, N), 7))
823
824/* DECL_NODE pointer of the declaration if the register is a user defined
825 variable. */
826#define RANGE_REG_SYMBOL_NODE(INSN,N) (XTREE (XVECEXP (INSN, 2, N), 8))
827
828/* BLOCK_NODE pointer to the block the variable is declared in if the
829 register is a user defined variable. */
830#define RANGE_REG_BLOCK_NODE(INSN,N) (XTREE (XVECEXP (INSN, 2, N), 9))
831
832/* EXPR_LIST of the distinct ranges a variable is in. */
833#define RANGE_VAR_LIST(INSN) (XEXP (INSN, 0))
834
835/* Block a variable is declared in. */
836#define RANGE_VAR_BLOCK(INSN) (XTREE (INSN, 1))
837
838/* # of distinct ranges a variable is in. */
839#define RANGE_VAR_NUM(INSN) (XINT (INSN, 2))
840
841/* For a NOTE_INSN_LIVE note, the registers which are currently live. */
842#define RANGE_LIVE_BITMAP(INSN) (XBITMAP (INSN, 0))
843
844/* For a NOTE_INSN_LIVE note, the original basic block number. */
845#define RANGE_LIVE_ORIG_BLOCK(INSN) (XINT (INSN, 1))
6f29feb1
JW
846\f
847/* Generally useful functions. */
848
5f4f0e22
CH
849/* The following functions accept a wide integer argument. Rather than
850 having to cast on every function call, we use a macro instead, that is
851 defined here and in tree.h. */
852
853#ifndef exact_log2
ac957f13
JL
854#define exact_log2(N) exact_log2_wide ((unsigned HOST_WIDE_INT) (N))
855#define floor_log2(N) floor_log2_wide ((unsigned HOST_WIDE_INT) (N))
5f4f0e22 856#endif
ac957f13
JL
857extern int exact_log2_wide PROTO((unsigned HOST_WIDE_INT));
858extern int floor_log2_wide PROTO((unsigned HOST_WIDE_INT));
859
860/* In expmed.c */
861extern int ceil_log2 PROTO((unsigned HOST_WIDE_INT));
5f4f0e22
CH
862
863#define plus_constant(X,C) plus_constant_wide (X, (HOST_WIDE_INT) (C))
864
865#define plus_constant_for_output(X,C) \
866 plus_constant_for_output_wide (X, (HOST_WIDE_INT) (C))
867
50b2596f 868/* In explow.c */
f837a861
MM
869extern rtx plus_constant_wide PROTO((rtx, HOST_WIDE_INT));
870extern rtx plus_constant_for_output_wide PROTO((rtx, HOST_WIDE_INT));
50b2596f 871extern void optimize_save_area_alloca PROTO((rtx));
5f4f0e22 872
bdea67fa
RK
873extern rtx gen_rtx PVPROTO((enum rtx_code,
874 enum machine_mode, ...));
875extern rtvec gen_rtvec PVPROTO((int, ...));
f837a861 876
e9a25f70
JL
877#ifdef BUFSIZ
878extern rtx read_rtx PROTO((FILE *));
879#endif
f837a861 880
f837a861
MM
881extern char *oballoc PROTO((int));
882extern char *permalloc PROTO((int));
f837a861
MM
883extern rtx rtx_alloc PROTO((RTX_CODE));
884extern rtvec rtvec_alloc PROTO((int));
f837a861
MM
885extern rtx copy_rtx PROTO((rtx));
886extern rtx copy_rtx_if_shared PROTO((rtx));
887extern rtx copy_most_rtx PROTO((rtx, rtx));
f837a861 888extern rtvec gen_rtvec_v PROTO((int, rtx *));
da3a3ba6 889extern rtvec gen_rtvec_vv PROTO((int, rtunion *));
f837a861
MM
890extern rtx gen_reg_rtx PROTO((enum machine_mode));
891extern rtx gen_label_rtx PROTO((void));
2fbb1ada
RK
892extern rtx gen_inline_header_rtx PROTO((rtx, rtx, int, int, int, int,
893 int, int, rtx, rtx, int, int,
ee5fb731 894 rtvec, rtx,
e9a25f70 895 rtvec, char *, char *, rtvec));
f837a861
MM
896extern rtx gen_lowpart_common PROTO((enum machine_mode, rtx));
897extern rtx gen_lowpart PROTO((enum machine_mode, rtx));
898extern rtx gen_lowpart_if_possible PROTO((enum machine_mode, rtx));
24f8db99 899extern rtx gen_highpart PROTO((enum machine_mode, rtx));
1577a9b4
RS
900extern rtx gen_realpart PROTO((enum machine_mode, rtx));
901extern rtx gen_imagpart PROTO((enum machine_mode, rtx));
f837a861
MM
902extern rtx operand_subword PROTO((rtx, int, int, enum machine_mode));
903extern rtx operand_subword_force PROTO((rtx, int, enum machine_mode));
904extern int subreg_lowpart_p PROTO((rtx));
905extern rtx make_safe_from PROTO((rtx, rtx));
9c5f2956 906extern rtx convert_memory_address PROTO((enum machine_mode, rtx));
f837a861
MM
907extern rtx memory_address PROTO((enum machine_mode, rtx));
908extern rtx get_insns PROTO((void));
909extern rtx get_last_insn PROTO((void));
910extern rtx get_last_insn_anywhere PROTO((void));
911extern void start_sequence PROTO((void));
912extern void push_to_sequence PROTO((rtx));
913extern void end_sequence PROTO((void));
914extern rtx gen_sequence PROTO((void));
915extern rtx immed_double_const PROTO((HOST_WIDE_INT, HOST_WIDE_INT, enum machine_mode));
916extern rtx force_const_mem PROTO((enum machine_mode, rtx));
917extern rtx force_reg PROTO((enum machine_mode, rtx));
918extern rtx get_pool_constant PROTO((rtx));
919extern enum machine_mode get_pool_mode PROTO((rtx));
920extern int get_pool_offset PROTO((rtx));
9ee96709 921extern rtx simplify_subtraction PROTO((rtx));
e5e809f4
JL
922extern rtx assign_stack_local PROTO((enum machine_mode,
923 HOST_WIDE_INT, int));
924extern rtx assign_stack_temp PROTO((enum machine_mode,
925 HOST_WIDE_INT, int));
926extern rtx assign_temp PROTO((union tree_node *,
927 int, int, int));
f837a861
MM
928extern rtx protect_from_queue PROTO((rtx, int));
929extern void emit_queue PROTO((void));
930extern rtx emit_move_insn PROTO((rtx, rtx));
931extern rtx emit_insn_before PROTO((rtx, rtx));
932extern rtx emit_jump_insn_before PROTO((rtx, rtx));
933extern rtx emit_call_insn_before PROTO((rtx, rtx));
934extern rtx emit_barrier_before PROTO((rtx));
935extern rtx emit_note_before PROTO((int, rtx));
936extern rtx emit_insn_after PROTO((rtx, rtx));
937extern rtx emit_jump_insn_after PROTO((rtx, rtx));
938extern rtx emit_barrier_after PROTO((rtx));
939extern rtx emit_label_after PROTO((rtx, rtx));
940extern rtx emit_note_after PROTO((int, rtx));
941extern rtx emit_line_note_after PROTO((char *, int, rtx));
942extern rtx emit_insn PROTO((rtx));
943extern rtx emit_insns PROTO((rtx));
944extern rtx emit_insns_before PROTO((rtx, rtx));
81f59869 945extern rtx emit_insns_after PROTO((rtx, rtx));
f837a861
MM
946extern rtx emit_jump_insn PROTO((rtx));
947extern rtx emit_call_insn PROTO((rtx));
948extern rtx emit_label PROTO((rtx));
949extern rtx emit_barrier PROTO((void));
950extern rtx emit_line_note PROTO((char *, int));
951extern rtx emit_note PROTO((char *, int));
952extern rtx emit_line_note_force PROTO((char *, int));
953extern rtx make_insn_raw PROTO((rtx));
954extern rtx previous_insn PROTO((rtx));
955extern rtx next_insn PROTO((rtx));
956extern rtx prev_nonnote_insn PROTO((rtx));
957extern rtx next_nonnote_insn PROTO((rtx));
958extern rtx prev_real_insn PROTO((rtx));
959extern rtx next_real_insn PROTO((rtx));
960extern rtx prev_active_insn PROTO((rtx));
961extern rtx next_active_insn PROTO((rtx));
962extern rtx prev_label PROTO((rtx));
963extern rtx next_label PROTO((rtx));
964extern rtx next_cc0_user PROTO((rtx));
965extern rtx prev_cc0_setter PROTO((rtx));
f837a861
MM
966extern rtx next_nondeleted_insn PROTO((rtx));
967extern enum rtx_code reverse_condition PROTO((enum rtx_code));
968extern enum rtx_code swap_condition PROTO((enum rtx_code));
969extern enum rtx_code unsigned_condition PROTO((enum rtx_code));
970extern enum rtx_code signed_condition PROTO((enum rtx_code));
971extern rtx find_equiv_reg PROTO((rtx, rtx, enum reg_class, int, short *, int, enum machine_mode));
972extern rtx squeeze_notes PROTO((rtx, rtx));
973extern rtx delete_insn PROTO((rtx));
974extern void delete_jump PROTO((rtx));
975extern rtx get_label_before PROTO((rtx));
976extern rtx get_label_after PROTO((rtx));
977extern rtx follow_jumps PROTO((rtx));
978extern rtx adj_offsettable_operand PROTO((rtx, int));
979extern rtx try_split PROTO((rtx, rtx, int));
980extern rtx split_insns PROTO((rtx, rtx));
981extern rtx simplify_unary_operation PROTO((enum rtx_code, enum machine_mode, rtx, enum machine_mode));
982extern rtx simplify_binary_operation PROTO((enum rtx_code, enum machine_mode, rtx, rtx));
983extern rtx simplify_ternary_operation PROTO((enum rtx_code, enum machine_mode, enum machine_mode, rtx, rtx, rtx));
984extern rtx simplify_relational_operation PROTO((enum rtx_code, enum machine_mode, rtx, rtx));
985extern rtx nonlocal_label_rtx_list PROTO((void));
986extern rtx gen_move_insn PROTO((rtx, rtx));
987extern rtx gen_jump PROTO((rtx));
988extern rtx gen_beq PROTO((rtx));
989extern rtx gen_bge PROTO((rtx));
990extern rtx gen_ble PROTO((rtx));
e9a25f70 991extern rtx gen_mem_addressof PROTO((rtx, union tree_node *));
f837a861 992extern rtx eliminate_constant_term PROTO((rtx, rtx *));
d03cc004 993extern rtx expand_complex_abs PROTO((enum machine_mode, rtx, rtx, int));
a021f58a 994extern enum machine_mode choose_hard_reg_mode PROTO((int, int));
9ae8ffe7 995
e9a25f70
JL
996/* Functions in rtlanal.c */
997
998extern int rtx_unstable_p PROTO((rtx));
999extern int rtx_varies_p PROTO((rtx));
1000extern int rtx_addr_varies_p PROTO((rtx));
1001extern HOST_WIDE_INT get_integer_term PROTO((rtx));
1002extern rtx get_related_value PROTO((rtx));
1003extern int reg_mentioned_p PROTO((rtx, rtx));
1004extern int reg_referenced_p PROTO((rtx, rtx));
1005extern int reg_used_between_p PROTO((rtx, rtx, rtx));
1006extern int reg_referenced_between_p PROTO((rtx, rtx, rtx));
1007extern int reg_set_between_p PROTO((rtx, rtx, rtx));
a2e1a0bf 1008extern int regs_set_between_p PROTO((rtx, rtx, rtx));
e9a25f70
JL
1009extern int modified_between_p PROTO((rtx, rtx, rtx));
1010extern int no_labels_between_p PROTO((rtx, rtx));
3ec2b590 1011extern int no_jumps_between_p PROTO((rtx, rtx));
e9a25f70
JL
1012extern int modified_in_p PROTO((rtx, rtx));
1013extern int reg_set_p PROTO((rtx, rtx));
1014extern rtx single_set PROTO((rtx));
93e0dfe1 1015extern int multiple_sets PROTO((rtx));
e9a25f70
JL
1016extern rtx find_last_value PROTO((rtx, rtx *, rtx));
1017extern int refers_to_regno_p PROTO((int, int, rtx, rtx *));
1018extern int reg_overlap_mentioned_p PROTO((rtx, rtx));
9ec36da5 1019extern void note_stores PROTO((rtx, void (*)()));
e9a25f70
JL
1020extern rtx reg_set_last PROTO((rtx, rtx));
1021extern int rtx_equal_p PROTO((rtx, rtx));
1022extern int dead_or_set_p PROTO((rtx, rtx));
1023extern int dead_or_set_regno_p PROTO((rtx, int));
1024extern rtx find_reg_note PROTO((rtx, enum reg_note, rtx));
1025extern rtx find_regno_note PROTO((rtx, enum reg_note, int));
1026extern int find_reg_fusage PROTO((rtx, enum rtx_code, rtx));
1027extern int find_regno_fusage PROTO((rtx, enum rtx_code, int));
1028extern void remove_note PROTO((rtx, rtx));
1029extern int side_effects_p PROTO((rtx));
1030extern int volatile_refs_p PROTO((rtx));
1031extern int volatile_insn_p PROTO((rtx));
1032extern int may_trap_p PROTO((rtx));
ae0b51ef 1033extern int inequality_comparisons_p PROTO ((rtx));
e9a25f70
JL
1034extern rtx replace_rtx PROTO((rtx, rtx, rtx));
1035extern rtx replace_regs PROTO((rtx, rtx *, int, int));
ac957f13 1036extern int computed_jump_p PROTO((rtx));
41a972a9
MM
1037typedef int (*rtx_function) PROTO((rtx *, void *));
1038extern int for_each_rtx PROTO((rtx *, rtx_function, void *));
3ec2b590 1039extern int insn_first_p PROTO((rtx, rtx));
6f29feb1 1040
ae0b51ef
JL
1041/* flow.c */
1042
1043extern rtx find_use_as_address PROTO((rtx, rtx, HOST_WIDE_INT));
1044
1045/* regclass.c */
1046
6f29feb1
JW
1047/* Maximum number of parallel sets and clobbers in any insn in this fn.
1048 Always at least 3, since the combiner could put that many togetherm
1049 and we want this to remain correct for all the remaining passes. */
1050
1051extern int max_parallel;
1052
e0c6d139 1053/* Free up register info memory. */
ed396e68 1054extern void free_reg_info PROTO((void));
e0c6d139 1055
ae0b51ef 1056/* recog.c */
f837a861 1057extern int asm_noperands PROTO((rtx));
9b3142b3
KG
1058extern char *decode_asm_operands PROTO((rtx, rtx *, rtx **,
1059 const char **,
1060 enum machine_mode *));
6f29feb1 1061
f837a861
MM
1062extern enum reg_class reg_preferred_class PROTO((int));
1063extern enum reg_class reg_alternate_class PROTO((int));
6f29feb1 1064
f837a861 1065extern rtx get_first_nonparm_insn PROTO((void));
6f29feb1
JW
1066
1067/* Standard pieces of rtx, to be substituted directly into things. */
68d75312
JC
1068#define pc_rtx (&global_rtl.pc_val)
1069#define cc0_rtx (&global_rtl.cc0_val)
1070
1071#define MAX_SAVED_CONST_INT 64
1072extern struct rtx_def const_int_rtx[MAX_SAVED_CONST_INT * 2 + 1];
1073
1074#define const0_rtx (&const_int_rtx[MAX_SAVED_CONST_INT])
1075#define const1_rtx (&const_int_rtx[MAX_SAVED_CONST_INT+1])
1076#define const2_rtx (&const_int_rtx[MAX_SAVED_CONST_INT+2])
1077#define constm1_rtx (&const_int_rtx[MAX_SAVED_CONST_INT-1])
6f29feb1 1078extern rtx const_true_rtx;
a8efe40d
RK
1079
1080extern rtx const_tiny_rtx[3][(int) MAX_MACHINE_MODE];
1081
1082/* Returns a constant 0 rtx in mode MODE. Integer modes are treated the
1083 same as VOIDmode. */
1084
1085#define CONST0_RTX(MODE) (const_tiny_rtx[0][(int) (MODE)])
1086
1087/* Likewise, for the constants 1 and 2. */
1088
1089#define CONST1_RTX(MODE) (const_tiny_rtx[1][(int) (MODE)])
1090#define CONST2_RTX(MODE) (const_tiny_rtx[2][(int) (MODE)])
6f29feb1 1091
68d75312
JC
1092extern struct _global_rtl
1093{
1094 struct rtx_def pc_val, cc0_val;
1095 struct rtx_def stack_pointer_val, frame_pointer_val;
1096 struct rtx_def hard_frame_pointer_val;
1097 struct rtx_def arg_pointer_val;
1098 struct rtx_def virtual_incoming_args_val;
1099 struct rtx_def virtual_stack_vars_val;
1100 struct rtx_def virtual_stack_dynamic_val;
1101 struct rtx_def virtual_outgoing_args_val;
71038426 1102 struct rtx_def virtual_cfa_val;
68d75312
JC
1103} global_rtl;
1104
6f29feb1
JW
1105/* All references to certain hard regs, except those created
1106 by allocating pseudo regs into them (when that's possible),
1107 go through these unique rtx objects. */
68d75312
JC
1108#define stack_pointer_rtx (&global_rtl.stack_pointer_val)
1109#define frame_pointer_rtx (&global_rtl.frame_pointer_val)
1110
6f29feb1
JW
1111extern rtx pic_offset_table_rtx;
1112extern rtx struct_value_rtx;
1113extern rtx struct_value_incoming_rtx;
1114extern rtx static_chain_rtx;
1115extern rtx static_chain_incoming_rtx;
07ebc930 1116extern rtx return_address_pointer_rtx;
3b80f6ca
RH
1117
1118/* Include the RTL generation functions. */
1119
1120#ifndef NO_GENRTL_H
1121#include "genrtl.h"
1122#endif
1123
41472af8
MM
1124/* There are some RTL codes that require special attention; the
1125 generation functions included above do the raw handling. If you
b4213325
MM
1126 add to this list, modify special_rtx in gengenrtl.c as well. You
1127 should also modify gen_rtx to use the special function. */
3b80f6ca
RH
1128
1129extern rtx gen_rtx_CONST_INT PROTO((enum machine_mode, HOST_WIDE_INT));
1130extern rtx gen_rtx_REG PROTO((enum machine_mode, int));
41472af8 1131extern rtx gen_rtx_MEM PROTO((enum machine_mode, rtx));
3b80f6ca 1132
aefdd5ab
JL
1133/* We need the cast here to ensure that we get the same result both with
1134 and without prototypes. */
1135#define GEN_INT(N) gen_rtx_CONST_INT (VOIDmode, (HOST_WIDE_INT) (N))
3b80f6ca
RH
1136
1137
3ba71656
DE
1138/* If HARD_FRAME_POINTER_REGNUM is defined, then a special dummy reg
1139 is used to represent the frame pointer. This is because the
1140 hard frame pointer and the automatic variables are separated by an amount
1141 that cannot be determined until after register allocation. We can assume
1142 that in this case ELIMINABLE_REGS will be defined, one action of which
1143 will be to eliminate FRAME_POINTER_REGNUM into HARD_FRAME_POINTER_REGNUM. */
1144#ifndef HARD_FRAME_POINTER_REGNUM
1145#define HARD_FRAME_POINTER_REGNUM FRAME_POINTER_REGNUM
1146#endif
1147
68d75312
JC
1148/* For register elimination to work properly these hard_frame_pointer_rtx,
1149 frame_pointer_rtx, and arg_pointer_rtx must be the same if they refer to
1150 the same register. */
1151#if HARD_FRAME_POINTER_REGNUM == FRAME_POINTER_REGNUM
1152#define hard_frame_pointer_rtx (&global_rtl.frame_pointer_val)
1153#else
1154#define hard_frame_pointer_rtx (&global_rtl.hard_frame_pointer_val)
1155#endif
1156
1157#if FRAME_POINTER_REGNUM == ARG_POINTER_REGNUM
1158#define arg_pointer_rtx (&global_rtl.frame_pointer_val)
1159#else
ffc3503d 1160#if HARD_FRAME_POINTER_REGNUM == ARG_POINTER_REGNUM
68d75312
JC
1161#define arg_pointer_rtx (&global_rtl.hard_frame_pointer_val)
1162#else
1163#define arg_pointer_rtx (&global_rtl.arg_pointer_val)
1164#endif
1165#endif
1166
6f29feb1
JW
1167/* Virtual registers are used during RTL generation to refer to locations into
1168 the stack frame when the actual location isn't known until RTL generation
1169 is complete. The routine instantiate_virtual_regs replaces these with
1170 the proper value, which is normally {frame,arg,stack}_pointer_rtx plus
1171 a constant. */
1172
1173#define FIRST_VIRTUAL_REGISTER (FIRST_PSEUDO_REGISTER)
1174
1175/* This points to the first word of the incoming arguments passed on the stack,
1176 either by the caller or by the callee when pretending it was passed by the
1177 caller. */
1178
68d75312 1179#define virtual_incoming_args_rtx (&global_rtl.virtual_incoming_args_val)
6f29feb1
JW
1180
1181#define VIRTUAL_INCOMING_ARGS_REGNUM (FIRST_VIRTUAL_REGISTER)
1182
60343c3b 1183/* If FRAME_GROWS_DOWNWARD, this points to immediately above the first
6f29feb1
JW
1184 variable on the stack. Otherwise, it points to the first variable on
1185 the stack. */
1186
68d75312 1187#define virtual_stack_vars_rtx (&global_rtl.virtual_stack_vars_val)
6f29feb1
JW
1188
1189#define VIRTUAL_STACK_VARS_REGNUM ((FIRST_VIRTUAL_REGISTER) + 1)
1190
1191/* This points to the location of dynamically-allocated memory on the stack
1192 immediately after the stack pointer has been adjusted by the amount
1193 desired. */
1194
68d75312 1195#define virtual_stack_dynamic_rtx (&global_rtl.virtual_stack_dynamic_val)
6f29feb1
JW
1196
1197#define VIRTUAL_STACK_DYNAMIC_REGNUM ((FIRST_VIRTUAL_REGISTER) + 2)
1198
1199/* This points to the location in the stack at which outgoing arguments should
1200 be written when the stack is pre-pushed (arguments pushed using push
1201 insns always use sp). */
1202
68d75312 1203#define virtual_outgoing_args_rtx (&global_rtl.virtual_outgoing_args_val)
6f29feb1
JW
1204
1205#define VIRTUAL_OUTGOING_ARGS_REGNUM ((FIRST_VIRTUAL_REGISTER) + 3)
1206
71038426
RH
1207/* This points to the Canonical Frame Address of the function. This
1208 should corrospond to the CFA produced by INCOMING_FRAME_SP_OFFSET,
1209 but is calculated relative to the arg pointer for simplicity; the
1210 frame pointer nor stack pointer are necessarily fixed relative to
1211 the CFA until after reload. */
1212
1213#define virtual_cfa_rtx (&global_rtl.virtual_cfa_val)
1214
1215#define VIRTUAL_CFA_REGNUM ((FIRST_VIRTUAL_REGISTER) + 4)
1216
1217#define LAST_VIRTUAL_REGISTER ((FIRST_VIRTUAL_REGISTER) + 4)
6f29feb1 1218
f837a861
MM
1219extern rtx find_next_ref PROTO((rtx, rtx));
1220extern rtx *find_single_use PROTO((rtx, rtx, rtx *));
1221
88efc60a
RK
1222extern rtx output_constant_def PROTO((union tree_node *));
1223extern rtx immed_real_const PROTO((union tree_node *));
1224extern union tree_node *make_tree PROTO((union tree_node *, rtx));
6f29feb1
JW
1225
1226/* Define a default value for STORE_FLAG_VALUE. */
1227
1228#ifndef STORE_FLAG_VALUE
1229#define STORE_FLAG_VALUE 1
1230#endif
1231
0ea0e871
JL
1232/* Nonzero after the second flow pass has completed.
1233 Set to 1 or 0 by toplev.c */
1234extern int flow2_completed;
1235
6f29feb1 1236/* Nonzero after end of reload pass.
0ea0e871 1237 Set to 1 or 0 by reload1.c. */
6f29feb1
JW
1238
1239extern int reload_completed;
1240
1241/* Set to 1 while reload_as_needed is operating.
1242 Required by some machines to handle any generated moves differently. */
1243
1244extern int reload_in_progress;
1245
1246/* If this is nonzero, we do not bother generating VOLATILE
1247 around volatile memory references, and we are willing to
1248 output indirect addresses. If cse is to follow, we reject
1249 indirect addresses so a useful potential cse is generated;
1250 if it is used only once, instruction combination will produce
1251 the same indirect address eventually. */
1252extern int cse_not_expected;
1253
f1db3576
JL
1254/* Set to nonzero before life analysis to indicate that it is unsafe to
1255 generate any new pseudo registers. */
1256extern int no_new_pseudos;
1257
6f29feb1
JW
1258/* Indexed by pseudo register number, gives the rtx for that pseudo.
1259 Allocated in parallel with regno_pointer_flag. */
1260extern rtx *regno_reg_rtx;
f5118aa5 1261
68d75312
JC
1262/* Vector indexed by regno; contain the alignment in bytes and type
1263 pointed to for a register that contains a pointer, if known. */
aacd9b3f
RE
1264extern char *regno_pointer_align;
1265#define REGNO_POINTER_ALIGN(REGNO) regno_pointer_align[REGNO]
1266
f5118aa5 1267/* Translates rtx code to tree code, for those codes needed by
88efc60a
RK
1268 REAL_ARITHMETIC. The function returns an int because the caller may not
1269 know what `enum tree_code' means. */
1270
1271extern int rtx_to_tree_code PROTO((enum rtx_code));
9ae8ffe7 1272
ac957f13
JL
1273/* In tree.c */
1274extern void obfree PROTO ((char *));
1275struct obstack;
1276extern void gcc_obstack_init PROTO ((struct obstack *));
1277extern void pop_obstacks PROTO ((void));
1278extern void push_obstacks PROTO ((struct obstack *,
1279 struct obstack *));
1280#ifdef BUFSIZ
1281extern int read_skip_spaces PROTO ((FILE *));
1282#endif
1283
1284/* In cse.c */
1285struct cse_basic_block_data;
1286extern int rtx_cost PROTO ((rtx, enum rtx_code));
c6a26dc4 1287extern void delete_trivially_dead_insns PROTO ((rtx, int));
ac957f13
JL
1288#ifdef BUFSIZ
1289extern int cse_main PROTO ((rtx, int, int, FILE *));
1290#endif
1291extern void cse_end_of_basic_block PROTO ((rtx,
1292 struct cse_basic_block_data *,
1293 int, int, int));
1294
1295/* In jump.c */
1296extern int comparison_dominates_p PROTO ((enum rtx_code, enum rtx_code));
1297extern int condjump_p PROTO ((rtx));
d804ed43 1298extern rtx condjump_label PROTO ((rtx));
ac957f13 1299extern int simplejump_p PROTO ((rtx));
c2861502 1300extern int sets_cc0_p PROTO ((rtx));
ac957f13
JL
1301extern int invert_jump PROTO ((rtx, rtx));
1302extern int rtx_renumbered_equal_p PROTO ((rtx, rtx));
1303extern int true_regnum PROTO ((rtx));
1304extern int redirect_jump PROTO ((rtx, rtx));
1305extern void jump_optimize PROTO ((rtx, int, int, int));
1306extern void thread_jumps PROTO ((rtx, int, int));
1307extern int redirect_exp PROTO ((rtx *, rtx, rtx, rtx));
1308extern int rtx_equal_for_thread_p PROTO ((rtx, rtx, rtx));
1309extern int invert_exp PROTO ((rtx, rtx));
1310extern int can_reverse_comparison_p PROTO ((rtx, rtx));
1311extern void delete_for_peephole PROTO ((rtx, rtx));
1312extern int condjump_in_parallel_p PROTO ((rtx));
1313
14bf4a33
MM
1314/* Flags for jump_optimize() */
1315#define JUMP_CROSS_JUMP 1
1316#define JUMP_NOOP_MOVES 1
1317#define JUMP_AFTER_REGSCAN 1
1318
ac957f13
JL
1319/* In emit-rtl.c. */
1320extern int max_reg_num PROTO ((void));
1321extern int max_label_num PROTO ((void));
1322extern int get_first_label_num PROTO ((void));
1323extern void delete_insns_since PROTO ((rtx));
1324extern void mark_reg_pointer PROTO ((rtx, int));
1325extern void mark_user_reg PROTO ((rtx));
1326extern void reset_used_flags PROTO ((rtx));
1327extern void reorder_insns PROTO ((rtx, rtx, rtx));
1328extern int get_max_uid PROTO ((void));
1329extern int in_sequence_p PROTO ((void));
1330extern void force_next_line_note PROTO ((void));
1331extern void init_emit PROTO ((void));
1332extern void init_emit_once PROTO ((int));
1333extern void push_topmost_sequence PROTO ((void));
1334extern void pop_topmost_sequence PROTO ((void));
1335extern int subreg_realpart_p PROTO ((rtx));
1336extern void reverse_comparison PROTO ((rtx));
1337extern void set_new_first_and_last_insn PROTO ((rtx, rtx));
1338extern void set_new_first_and_last_label_num PROTO ((int, int));
1339extern void unshare_all_rtl PROTO ((rtx));
1340extern void set_last_insn PROTO ((rtx));
1341extern void link_cc0_insns PROTO ((rtx));
1342extern void add_insn PROTO ((rtx));
1343extern void add_insn_before PROTO ((rtx, rtx));
1344extern void add_insn_after PROTO ((rtx, rtx));
89e99eea 1345extern void remove_insn PROTO ((rtx));
ac957f13
JL
1346extern void reorder_insns_with_line_notes PROTO ((rtx, rtx, rtx));
1347extern void emit_insn_after_with_line_notes PROTO ((rtx, rtx, rtx));
1348extern enum rtx_code classify_insn PROTO ((rtx));
59ec66dc 1349extern void init_virtual_regs PROTO ((void));
ac957f13 1350extern rtx emit PROTO ((rtx));
a11759a3
JR
1351/* Query and clear/ restore no_line_numbers. This is used by the
1352 switch / case handling in stmt.c to give proper line numbers in
1353 warnings about unreachable code. */
1354int force_line_numbers PROTO((void));
1355void restore_line_number_status PROTO((int old_value));
ac957f13
JL
1356
1357/* In insn-emit.c */
1358extern void add_clobbers PROTO ((rtx, int));
1359
1360/* In combine.c */
1361extern void combine_instructions PROTO ((rtx, int));
1362extern int extended_count PROTO ((rtx, enum machine_mode, int));
1363extern rtx remove_death PROTO ((int, rtx));
1364#ifdef BUFSIZ
1365extern void dump_combine_stats PROTO ((FILE *));
1366extern void dump_combine_total_stats PROTO ((FILE *));
1367#endif
1368
1369/* In sched.c. */
1370#ifdef BUFSIZ
1371extern void schedule_insns PROTO ((FILE *));
1372#endif
50b2596f
KG
1373#ifdef HAIFA
1374extern void fix_sched_param PROTO ((char *, char *));
1375#endif
ac957f13
JL
1376
1377/* In print-rtl.c */
1378extern void debug_rtx PROTO ((rtx));
1379extern void debug_rtx_list PROTO ((rtx, int));
1380extern rtx debug_rtx_find PROTO ((rtx, int));
1381#ifdef BUFSIZ
1382extern void print_rtl PROTO ((FILE *, rtx));
b707b450 1383extern int print_rtl_single PROTO ((FILE *, rtx));
ac957f13
JL
1384extern void print_inline_rtx PROTO ((FILE *, rtx, int));
1385#endif
1386
1387/* In loop.c */
1388extern void init_loop PROTO ((void));
1389#ifdef BUFSIZ
5accd822 1390extern void loop_optimize PROTO ((rtx, FILE *, int, int));
ac957f13
JL
1391#endif
1392extern void record_excess_regs PROTO ((rtx, rtx, rtx *));
1393
1394/* In function.c */
1395extern void reposition_prologue_and_epilogue_notes PROTO ((rtx));
1396extern void thread_prologue_and_epilogue_insns PROTO ((rtx));
1397extern void use_variable PROTO ((rtx));
1398extern HOST_WIDE_INT get_frame_size PROTO ((void));
1399extern void preserve_rtl_expr_result PROTO ((rtx));
1400extern void mark_temp_addr_taken PROTO ((rtx));
1401extern void update_temp_slot_address PROTO ((rtx, rtx));
1402extern void use_variable_after PROTO ((rtx, rtx));
50b2596f 1403extern void purge_addressof PROTO ((rtx));
ac957f13
JL
1404
1405/* In reload.c */
1406extern int operands_match_p PROTO ((rtx, rtx));
1407extern int safe_from_earlyclobber PROTO ((rtx, rtx));
ac957f13
JL
1408
1409/* In stmt.c */
487a6e06 1410extern void expand_null_return PROTO((void));
ac957f13
JL
1411extern void emit_jump PROTO ((rtx));
1412extern int preserve_subexpressions_p PROTO ((void));
1413
1414/* In expr.c */
ac957f13 1415extern void init_expr_once PROTO ((void));
2e245dac
JL
1416extern void move_by_pieces PROTO ((rtx, rtx, int, int));
1417
ac957f13
JL
1418
1419/* In stupid.c */
1420#ifdef BUFSIZ
1421extern void stupid_life_analysis PROTO ((rtx, int, FILE *));
1422#endif
1423
1424/* In flow.c */
1425extern void allocate_for_life_analysis PROTO ((void));
213c4983 1426extern void recompute_reg_usage PROTO ((rtx, int));
ac957f13
JL
1427#ifdef BUFSIZ
1428extern void dump_flow_info PROTO ((FILE *));
1429#endif
421382ac 1430extern void free_bb_memory PROTO ((void));
ac957f13
JL
1431
1432/* In expmed.c */
1433extern void init_expmed PROTO ((void));
1434extern void expand_inc PROTO ((rtx, rtx));
1435extern void expand_dec PROTO ((rtx, rtx));
1436extern rtx expand_mult_highpart PROTO ((enum machine_mode, rtx,
1437 unsigned HOST_WIDE_INT, rtx,
1438 int, int));
1439
50b2596f
KG
1440/* In gcse.c */
1441#ifdef BUFSIZ
1442extern void gcse_main PROTO ((rtx, FILE *));
1443#endif
1444
ac957f13 1445/* In global.c */
487a6e06 1446extern void mark_elimination PROTO ((int, int));
ac957f13
JL
1447#ifdef BUFSIZ
1448extern int global_alloc PROTO ((FILE *));
1449extern void dump_global_regs PROTO ((FILE *));
1450#endif
cab634f2
KG
1451#ifdef HARD_CONST
1452extern void retry_global_alloc PROTO ((int, HARD_REG_SET));
1453#endif
ac957f13
JL
1454
1455/* In regclass.c */
487a6e06 1456extern int reg_classes_intersect_p PROTO ((enum reg_class, enum reg_class));
d6f4ec51 1457extern int reg_class_subset_p PROTO ((enum reg_class, enum reg_class));
ac957f13
JL
1458extern void globalize_reg PROTO ((int));
1459extern void init_regs PROTO ((void));
1460extern void init_reg_sets PROTO ((void));
1461extern void regset_release_memory PROTO ((void));
1462extern void regclass_init PROTO ((void));
1463extern void regclass PROTO ((rtx, int));
1464extern void reg_scan PROTO ((rtx, int, int));
f903b91f 1465extern void reg_scan_update PROTO ((rtx, rtx, int));
ac957f13
JL
1466extern void fix_register PROTO ((char *, int, int));
1467
50b2596f
KG
1468/* In regmove.c */
1469#ifdef BUFSIZ
1470extern void regmove_optimize PROTO ((rtx, int, FILE *));
1471#endif
1472
1473/* In reorg.c */
1474#ifdef BUFSIZ
1475extern void dbr_schedule PROTO ((rtx, FILE *));
1476#endif
1477
ac957f13
JL
1478/* In optabs.c */
1479extern void init_optabs PROTO ((void));
1480
1481/* In local-alloc.c */
1482#ifdef BUFSIZ
1483extern void dump_local_alloc PROTO ((FILE *));
1484#endif
1485extern void local_alloc PROTO ((void));
2b49ee39 1486extern int function_invariant_p PROTO ((rtx));
ac957f13
JL
1487
1488/* In reload1.c */
1489extern void reload_cse_regs PROTO ((rtx));
1490extern void init_reload PROTO ((void));
1491extern void mark_home_live PROTO ((int));
1492#ifdef BUFSIZ
1493extern int reload PROTO ((rtx, int, FILE *));
1494#endif
1495
1496/* In caller-save.c */
1497extern void init_caller_save PROTO ((void));
1498
1499/* In profile.c */
87e11268 1500extern void init_branch_prob PROTO ((const char *));
50b2596f
KG
1501#ifdef BUFSIZ
1502extern void branch_prob PROTO ((rtx, FILE *));
1503extern void end_branch_prob PROTO ((FILE *));
1504#endif
d6f4ec51 1505extern void output_func_start_profiler PROTO ((void));
ac957f13
JL
1506
1507/* In reg-stack.c */
1508#ifdef BUFSIZ
1509extern void reg_to_stack PROTO ((rtx, FILE *));
1510#endif
1511extern int stack_regs_mentioned_p PROTO ((rtx));
1512
1513/* In fold-const.c */
1514extern int add_double PROTO ((HOST_WIDE_INT, HOST_WIDE_INT,
1515 HOST_WIDE_INT, HOST_WIDE_INT,
1516 HOST_WIDE_INT *, HOST_WIDE_INT *));
1517extern int neg_double PROTO ((HOST_WIDE_INT, HOST_WIDE_INT,
1518 HOST_WIDE_INT *, HOST_WIDE_INT *));
1519extern int mul_double PROTO ((HOST_WIDE_INT, HOST_WIDE_INT,
1520 HOST_WIDE_INT, HOST_WIDE_INT,
1521 HOST_WIDE_INT *, HOST_WIDE_INT *));
1522extern void lshift_double PROTO ((HOST_WIDE_INT, HOST_WIDE_INT,
1523 HOST_WIDE_INT, int, HOST_WIDE_INT *,
1524 HOST_WIDE_INT *, int));
1525extern void rshift_double PROTO ((HOST_WIDE_INT, HOST_WIDE_INT,
1526 HOST_WIDE_INT, int,
1527 HOST_WIDE_INT *, HOST_WIDE_INT *, int));
1528extern void lrotate_double PROTO ((HOST_WIDE_INT, HOST_WIDE_INT,
1529 HOST_WIDE_INT, int, HOST_WIDE_INT *,
1530 HOST_WIDE_INT *));
1531extern void rrotate_double PROTO ((HOST_WIDE_INT, HOST_WIDE_INT,
1532 HOST_WIDE_INT, int, HOST_WIDE_INT *,
1533 HOST_WIDE_INT *));
1534
1535/* In calls.c */
1536/* Emit library call. */
1537extern void emit_library_call PVPROTO ((rtx, int, enum machine_mode,
1538 int, ...));
1539extern rtx emit_library_call_value PVPROTO((rtx, rtx, int,
1540 enum machine_mode,
1541 int, ...));
1542
1543/* In unroll.c */
1544extern int set_dominates_use PROTO ((int, int, int, rtx, rtx));
1545
1546/* In varasm.c */
1547extern void bss_section PROTO ((void));
1548extern int in_data_section PROTO ((void));
1549extern int supports_one_only PROTO ((void));
1550
1551/* In rtl.c */
1552extern void init_rtl PROTO ((void));
1553extern void rtx_free PROTO ((rtx));
1554
1555/* In alias.c */
1556extern int true_dependence PROTO ((rtx, enum machine_mode, rtx,
1557 int (*)(rtx)));
1558extern int read_dependence PROTO ((rtx, rtx));
1559extern int anti_dependence PROTO ((rtx, rtx));
1560extern int output_dependence PROTO ((rtx, rtx));
6e73e666 1561extern void init_alias_once PROTO ((void));
ac957f13
JL
1562extern void init_alias_analysis PROTO ((void));
1563extern void end_alias_analysis PROTO ((void));
1564
de12be17 1565extern void record_base_value PROTO ((int, rtx, int));
3932261a 1566extern void record_alias_subset PROTO ((int, int));
39cec1ac 1567extern rtx addr_side_effect_eval PROTO ((rtx, int, int));
4c649323 1568
ac957f13 1569#endif /* _RTL_H */
This page took 0.921862 seconds and 5 git commands to generate.