]> gcc.gnu.org Git - gcc.git/blob - gcc/rtl.h
(assertdir): Use $(tooldir)/include for this.
[gcc.git] / gcc / rtl.h
1 /* Register Transfer Language (RTL) definitions for GNU C-Compiler
2 Copyright (C) 1987, 1991, 1992 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21 #include "machmode.h"
22
23 #undef FFS /* Some systems predefine this symbol; don't let it interfere. */
24 #undef FLOAT /* Likewise. */
25 #undef ABS /* Likewise. */
26
27 /* Register Transfer Language EXPRESSIONS CODES */
28
29 #define RTX_CODE enum rtx_code
30 enum rtx_code {
31
32 #define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) ENUM ,
33 #include "rtl.def" /* rtl expressions are documented here */
34 #undef DEF_RTL_EXPR
35
36 LAST_AND_UNUSED_RTX_CODE}; /* A convenient way to get a value for
37 NUM_RTX_CODE.
38 Assumes default enum value assignment. */
39
40 #define NUM_RTX_CODE ((int)LAST_AND_UNUSED_RTX_CODE)
41 /* The cast here, saves many elsewhere. */
42
43 extern int rtx_length[];
44 #define GET_RTX_LENGTH(CODE) (rtx_length[(int)(CODE)])
45
46 extern char *rtx_name[];
47 #define GET_RTX_NAME(CODE) (rtx_name[(int)(CODE)])
48
49 extern char *rtx_format[];
50 #define GET_RTX_FORMAT(CODE) (rtx_format[(int)(CODE)])
51
52 extern char rtx_class[];
53 #define GET_RTX_CLASS(CODE) (rtx_class[(int)(CODE)])
54 \f
55 /* Common union for an element of an rtx. */
56
57 typedef union rtunion_def
58 {
59 HOST_WIDE_INT rtwint;
60 int rtint;
61 char *rtstr;
62 struct rtx_def *rtx;
63 struct rtvec_def *rtvec;
64 enum machine_mode rttype;
65 } rtunion;
66
67 /* RTL expression ("rtx"). */
68
69 typedef struct rtx_def
70 {
71 #ifdef ONLY_INT_FIELDS
72 #ifdef CODE_FIELD_BUG
73 unsigned int code : 16;
74 #else
75 unsigned short code;
76 #endif
77 #else
78 /* The kind of expression this is. */
79 enum rtx_code code : 16;
80 #endif
81 /* The kind of value the expression has. */
82 #ifdef ONLY_INT_FIELDS
83 int mode : 8;
84 #else
85 enum machine_mode mode : 8;
86 #endif
87 /* 1 in an INSN if it can alter flow of control
88 within this function. Not yet used! */
89 unsigned int jump : 1;
90 /* 1 in an INSN if it can call another function. Not yet used! */
91 unsigned int call : 1;
92 /* 1 in a MEM or REG if value of this expression will never change
93 during the current function, even though it is not
94 manifestly constant.
95 1 in a SUBREG if it is from a promoted variable that is unsigned.
96 1 in a SYMBOL_REF if it addresses something in the per-function
97 constants pool.
98 1 in a CALL_INSN if it is a const call.
99 1 in a JUMP_INSN if it is a branch that should be annulled. Valid from
100 reorg until end of compilation; cleared before used. */
101 unsigned int unchanging : 1;
102 /* 1 in a MEM expression if contents of memory are volatile.
103 1 in an INSN, CALL_INSN, JUMP_INSN, CODE_LABEL or BARRIER
104 if it is deleted.
105 1 in a REG expression if corresponds to a variable declared by the user.
106 0 for an internally generated temporary.
107 In a SYMBOL_REF, this flag is used for machine-specific purposes.
108 In a LABEL_REF or in a REG_LABEL note, this is LABEL_REF_NONLOCAL_P. */
109 unsigned int volatil : 1;
110 /* 1 in a MEM referring to a field of a structure (not a union!).
111 0 if the MEM was a variable or the result of a * operator in C;
112 1 if it was the result of a . or -> operator (on a struct) in C.
113 1 in a REG if the register is used only in exit code a loop.
114 1 in a SUBREG expression if was generated from a variable with a
115 promoted mode.
116 1 in a CODE_LABEL if the label is used for nonlocal gotos
117 and must not be deleted even if its count is zero.
118 1 in a LABEL_REF if this is a reference to a label outside the
119 current loop.
120 1 in an INSN, JUMP_INSN, or CALL_INSN if this insn must be scheduled
121 together with the preceding insn. Valid only within sched.
122 1 in an INSN, JUMP_INSN, or CALL_INSN if insn is in a delay slot and
123 from the target of a branch. Valid from reorg until end of compilation;
124 cleared before used. */
125 unsigned int in_struct : 1;
126 /* 1 if this rtx is used. This is used for copying shared structure.
127 See `unshare_all_rtl'.
128 In a REG, this is not needed for that purpose, and used instead
129 in `leaf_renumber_regs_insn'.
130 In a SYMBOL_REF, means that emit_library_call
131 has used it as the function. */
132 unsigned int used : 1;
133 /* Nonzero if this rtx came from procedure integration.
134 In a REG, nonzero means this reg refers to the return value
135 of the current function. */
136 unsigned integrated : 1;
137 /* The first element of the operands of this rtx.
138 The number of operands and their types are controlled
139 by the `code' field, according to rtl.def. */
140 rtunion fld[1];
141 } *rtx;
142
143 /* Add prototype support. */
144 #ifndef PROTO
145 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
146 #define PROTO(ARGS) ARGS
147 #else
148 #define PROTO(ARGS) ()
149 #endif
150 #endif
151
152 #define NULL_RTX (rtx) 0
153
154 /* Define a generic NULL if one hasn't already been defined. */
155
156 #ifndef NULL
157 #define NULL 0
158 #endif
159
160 #ifndef GENERIC_PTR
161 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
162 #define GENERIC_PTR void *
163 #else
164 #define GENERIC_PTR char *
165 #endif
166 #endif
167
168 #ifndef NULL_PTR
169 #define NULL_PTR ((GENERIC_PTR)0)
170 #endif
171
172 /* Define macros to access the `code' field of the rtx. */
173
174 #ifdef SHORT_ENUM_BUG
175 #define GET_CODE(RTX) ((enum rtx_code) ((RTX)->code))
176 #define PUT_CODE(RTX, CODE) ((RTX)->code = ((short) (CODE)))
177 #else
178 #define GET_CODE(RTX) ((RTX)->code)
179 #define PUT_CODE(RTX, CODE) ((RTX)->code = (CODE))
180 #endif
181
182 #define GET_MODE(RTX) ((RTX)->mode)
183 #define PUT_MODE(RTX, MODE) ((RTX)->mode = (MODE))
184
185 #define RTX_INTEGRATED_P(RTX) ((RTX)->integrated)
186 #define RTX_UNCHANGING_P(RTX) ((RTX)->unchanging)
187
188 /* RTL vector. These appear inside RTX's when there is a need
189 for a variable number of things. The principle use is inside
190 PARALLEL expressions. */
191
192 typedef struct rtvec_def{
193 unsigned num_elem; /* number of elements */
194 rtunion elem[1];
195 } *rtvec;
196
197 #define NULL_RTVEC (rtvec) 0
198
199 #define GET_NUM_ELEM(RTVEC) ((RTVEC)->num_elem)
200 #define PUT_NUM_ELEM(RTVEC, NUM) ((RTVEC)->num_elem = (unsigned) NUM)
201
202 #define RTVEC_ELT(RTVEC, I) ((RTVEC)->elem[(I)].rtx)
203
204 /* 1 if X is a REG. */
205
206 #define REG_P(X) (GET_CODE (X) == REG)
207
208 /* 1 if X is a constant value that is an integer. */
209
210 #define CONSTANT_P(X) \
211 (GET_CODE (X) == LABEL_REF || GET_CODE (X) == SYMBOL_REF \
212 || GET_CODE (X) == CONST_INT || GET_CODE (X) == CONST_DOUBLE \
213 || GET_CODE (X) == CONST || GET_CODE (X) == HIGH)
214
215 /* General accessor macros for accessing the fields of an rtx. */
216
217 #define XEXP(RTX, N) ((RTX)->fld[N].rtx)
218 #define XINT(RTX, N) ((RTX)->fld[N].rtint)
219 #define XWINT(RTX, N) ((RTX)->fld[N].rtwint)
220 #define XSTR(RTX, N) ((RTX)->fld[N].rtstr)
221 #define XVEC(RTX, N) ((RTX)->fld[N].rtvec)
222 #define XVECLEN(RTX, N) ((RTX)->fld[N].rtvec->num_elem)
223 #define XVECEXP(RTX,N,M)((RTX)->fld[N].rtvec->elem[M].rtx)
224 \f
225 /* ACCESS MACROS for particular fields of insns. */
226
227 /* Holds a unique number for each insn.
228 These are not necessarily sequentially increasing. */
229 #define INSN_UID(INSN) ((INSN)->fld[0].rtint)
230
231 /* Chain insns together in sequence. */
232 #define PREV_INSN(INSN) ((INSN)->fld[1].rtx)
233 #define NEXT_INSN(INSN) ((INSN)->fld[2].rtx)
234
235 /* The body of an insn. */
236 #define PATTERN(INSN) ((INSN)->fld[3].rtx)
237
238 /* Code number of instruction, from when it was recognized.
239 -1 means this instruction has not been recognized yet. */
240 #define INSN_CODE(INSN) ((INSN)->fld[4].rtint)
241
242 /* Set up in flow.c; empty before then.
243 Holds a chain of INSN_LIST rtx's whose first operands point at
244 previous insns with direct data-flow connections to this one.
245 That means that those insns set variables whose next use is in this insn.
246 They are always in the same basic block as this insn. */
247 #define LOG_LINKS(INSN) ((INSN)->fld[5].rtx)
248
249 /* 1 if insn has been deleted. */
250 #define INSN_DELETED_P(INSN) ((INSN)->volatil)
251
252 /* 1 if insn is a call to a const function. */
253 #define CONST_CALL_P(INSN) ((INSN)->unchanging)
254
255 /* 1 if insn is a branch that should not unconditionally execute its
256 delay slots, i.e., it is an annulled branch. */
257 #define INSN_ANNULLED_BRANCH_P(INSN) ((INSN)->unchanging)
258
259 /* 1 if insn is in a delay slot and is from the target of the branch. If
260 the branch insn has INSN_ANNULLED_BRANCH_P set, this insn should only be
261 executed if the branch is taken. For annulled branches with this bit
262 clear, the insn should be executed only if the branch is not taken. */
263 #define INSN_FROM_TARGET_P(INSN) ((INSN)->in_struct)
264
265 /* Holds a list of notes on what this insn does to various REGs.
266 It is a chain of EXPR_LIST rtx's, where the second operand
267 is the chain pointer and the first operand is the REG being described.
268 The mode field of the EXPR_LIST contains not a real machine mode
269 but a value that says what this note says about the REG:
270 REG_DEAD means that the value in REG dies in this insn (i.e., it is
271 not needed past this insn). If REG is set in this insn, the REG_DEAD
272 note may, but need not, be omitted.
273 REG_INC means that the REG is autoincremented or autodecremented.
274 REG_EQUIV describes the insn as a whole; it says that the
275 insn sets a register to a constant value or to be equivalent to
276 a memory address. If the
277 register is spilled to the stack then the constant value
278 should be substituted for it. The contents of the REG_EQUIV
279 is the constant value or memory address, which may be different
280 from the source of the SET although it has the same value.
281 REG_EQUAL is like REG_EQUIV except that the destination
282 is only momentarily equal to the specified rtx. Therefore, it
283 cannot be used for substitution; but it can be used for cse.
284 REG_RETVAL means that this insn copies the return-value of
285 a library call out of the hard reg for return values. This note
286 is actually an INSN_LIST and it points to the first insn involved
287 in setting up arguments for the call. flow.c uses this to delete
288 the entire library call when its result is dead.
289 REG_LIBCALL is the inverse of REG_RETVAL: it goes on the first insn
290 of the library call and points at the one that has the REG_RETVAL.
291 REG_WAS_0 says that the register set in this insn held 0 before the insn.
292 The contents of the note is the insn that stored the 0.
293 If that insn is deleted or patched to a NOTE, the REG_WAS_0 is inoperative.
294 The REG_WAS_0 note is actually an INSN_LIST, not an EXPR_LIST.
295 REG_NONNEG means that the register is always nonnegative during
296 the containing loop. This is used in branches so that decrement and
297 branch instructions terminating on zero can be matched. There must be
298 an insn pattern in the md file named `decrement_and_branch_until_zero'
299 or else this will never be added to any instructions.
300 REG_NO_CONFLICT means there is no conflict *after this insn*
301 between the register in the note and the destination of this insn.
302 REG_UNUSED identifies a register set in this insn and never used.
303 REG_CC_SETTER and REG_CC_USER link a pair of insns that set and use
304 CC0, respectively. Normally, these are required to be consecutive insns,
305 but we permit putting a cc0-setting insn in the delay slot of a branch
306 as long as only one copy of the insn exists. In that case, these notes
307 point from one to the other to allow code generation to determine what
308 any require information and to properly update CC_STATUS.
309 REG_LABEL points to a CODE_LABEL. Used by non-JUMP_INSNs to
310 say that the CODE_LABEL contained in the REG_LABEL note is used
311 by the insn.
312 REG_DEP_ANTI is used in LOG_LINKS which represent anti (write after read)
313 dependencies. REG_DEP_OUTPUT is used in LOG_LINKS which represent output
314 (write after write) dependencies. Data dependencies, which are the only
315 type of LOG_LINK created by flow, are represented by a 0 reg note kind. */
316
317 #define REG_NOTES(INSN) ((INSN)->fld[6].rtx)
318
319 /* Don't forget to change reg_note_name in rtl.c. */
320 enum reg_note { REG_DEAD = 1, REG_INC = 2, REG_EQUIV = 3, REG_WAS_0 = 4,
321 REG_EQUAL = 5, REG_RETVAL = 6, REG_LIBCALL = 7,
322 REG_NONNEG = 8, REG_NO_CONFLICT = 9, REG_UNUSED = 10,
323 REG_CC_SETTER = 11, REG_CC_USER = 12, REG_LABEL = 13,
324 REG_DEP_ANTI = 14, REG_DEP_OUTPUT = 15 };
325
326 /* Define macros to extract and insert the reg-note kind in an EXPR_LIST. */
327 #define REG_NOTE_KIND(LINK) ((enum reg_note) GET_MODE (LINK))
328 #define PUT_REG_NOTE_KIND(LINK,KIND) PUT_MODE(LINK, (enum machine_mode) (KIND))
329
330 /* Names for REG_NOTE's in EXPR_LIST insn's. */
331
332 extern char *reg_note_name[];
333 #define GET_REG_NOTE_NAME(MODE) (reg_note_name[(int)(MODE)])
334
335 /* The label-number of a code-label. The assembler label
336 is made from `L' and the label-number printed in decimal.
337 Label numbers are unique in a compilation. */
338 #define CODE_LABEL_NUMBER(INSN) ((INSN)->fld[3].rtint)
339
340 #define LINE_NUMBER NOTE
341
342 /* In a NOTE that is a line number, this is a string for the file name
343 that the line is in. We use the same field to record block numbers
344 temporarily in NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes.
345 (We avoid lots of casts between ints and pointers if we use a
346 different macro for the bock number.) */
347
348 #define NOTE_SOURCE_FILE(INSN) ((INSN)->fld[3].rtstr)
349 #define NOTE_BLOCK_NUMBER(INSN) ((INSN)->fld[3].rtint)
350
351 /* In a NOTE that is a line number, this is the line number.
352 Other kinds of NOTEs are identified by negative numbers here. */
353 #define NOTE_LINE_NUMBER(INSN) ((INSN)->fld[4].rtint)
354
355 /* Codes that appear in the NOTE_LINE_NUMBER field
356 for kinds of notes that are not line numbers.
357
358 Notice that we do not try to use zero here for any of
359 the special note codes because sometimes the source line
360 actually can be zero! This happens (for example) when we
361 are generating code for the per-translation-unit constructor
362 and destructor routines for some C++ translation unit.
363
364 If you should change any of the following values, or if you
365 should add a new value here, don't forget to change the
366 note_insn_name array in rtl.c. */
367
368 /* This note is used to get rid of an insn
369 when it isn't safe to patch the insn out of the chain. */
370 #define NOTE_INSN_DELETED -1
371 #define NOTE_INSN_BLOCK_BEG -2
372 #define NOTE_INSN_BLOCK_END -3
373 #define NOTE_INSN_LOOP_BEG -4
374 #define NOTE_INSN_LOOP_END -5
375 /* This kind of note is generated at the end of the function body,
376 just before the return insn or return label.
377 In an optimizing compilation it is deleted by the first jump optimization,
378 after enabling that optimizer to determine whether control can fall
379 off the end of the function body without a return statement. */
380 #define NOTE_INSN_FUNCTION_END -6
381 /* This kind of note is generated just after each call to `setjmp', et al. */
382 #define NOTE_INSN_SETJMP -7
383 /* Generated at the place in a loop that `continue' jumps to. */
384 #define NOTE_INSN_LOOP_CONT -8
385 /* Generated at the start of a duplicated exit test. */
386 #define NOTE_INSN_LOOP_VTOP -9
387 /* This marks the point immediately after the last prologue insn. */
388 #define NOTE_INSN_PROLOGUE_END -10
389 /* This marks the point immediately prior to the first epilogue insn. */
390 #define NOTE_INSN_EPILOGUE_BEG -11
391 /* Generated in place of user-declared labels when they are deleted. */
392 #define NOTE_INSN_DELETED_LABEL -12
393 /* This note indicates the start of the real body of the function,
394 i.e. the point just after all of the parms have been moved into
395 their homes, etc. */
396 #define NOTE_INSN_FUNCTION_BEG -13
397
398
399 #if 0 /* These are not used, and I don't know what they were for. --rms. */
400 #define NOTE_DECL_NAME(INSN) ((INSN)->fld[3].rtstr)
401 #define NOTE_DECL_CODE(INSN) ((INSN)->fld[4].rtint)
402 #define NOTE_DECL_RTL(INSN) ((INSN)->fld[5].rtx)
403 #define NOTE_DECL_IDENTIFIER(INSN) ((INSN)->fld[6].rtint)
404 #define NOTE_DECL_TYPE(INSN) ((INSN)->fld[7].rtint)
405 #endif /* 0 */
406
407 /* Names for NOTE insn's other than line numbers. */
408
409 extern char *note_insn_name[];
410 #define GET_NOTE_INSN_NAME(NOTE_CODE) (note_insn_name[-(NOTE_CODE)])
411
412 /* The name of a label, in case it corresponds to an explicit label
413 in the input source code. */
414 #define LABEL_NAME(LABEL) ((LABEL)->fld[4].rtstr)
415
416 /* In jump.c, each label contains a count of the number
417 of LABEL_REFs that point at it, so unused labels can be deleted. */
418 #define LABEL_NUSES(LABEL) ((LABEL)->fld[5].rtint)
419
420 /* In jump.c, each JUMP_INSN can point to a label that it can jump to,
421 so that if the JUMP_INSN is deleted, the label's LABEL_NUSES can
422 be decremented and possibly the label can be deleted. */
423 #define JUMP_LABEL(INSN) ((INSN)->fld[7].rtx)
424
425 /* Once basic blocks are found in flow.c,
426 each CODE_LABEL starts a chain that goes through
427 all the LABEL_REFs that jump to that label.
428 The chain eventually winds up at the CODE_LABEL; it is circular. */
429 #define LABEL_REFS(LABEL) ((LABEL)->fld[5].rtx)
430 \f
431 /* This is the field in the LABEL_REF through which the circular chain
432 of references to a particular label is linked.
433 This chain is set up in flow.c. */
434
435 #define LABEL_NEXTREF(REF) ((REF)->fld[1].rtx)
436
437 /* Once basic blocks are found in flow.c,
438 Each LABEL_REF points to its containing instruction with this field. */
439
440 #define CONTAINING_INSN(RTX) ((RTX)->fld[2].rtx)
441
442 /* For a REG rtx, REGNO extracts the register number. */
443
444 #define REGNO(RTX) ((RTX)->fld[0].rtint)
445
446 /* For a REG rtx, REG_FUNCTION_VALUE_P is nonzero if the reg
447 is the current function's return value. */
448
449 #define REG_FUNCTION_VALUE_P(RTX) ((RTX)->integrated)
450
451 /* 1 in a REG rtx if it corresponds to a variable declared by the user. */
452 #define REG_USERVAR_P(RTX) ((RTX)->volatil)
453
454 /* For a CONST_INT rtx, INTVAL extracts the integer. */
455
456 #define INTVAL(RTX) ((RTX)->fld[0].rtwint)
457
458 /* For a SUBREG rtx, SUBREG_REG extracts the value we want a subreg of.
459 SUBREG_WORD extracts the word-number. */
460
461 #define SUBREG_REG(RTX) ((RTX)->fld[0].rtx)
462 #define SUBREG_WORD(RTX) ((RTX)->fld[1].rtint)
463
464 /* 1 if the REG contained in SUBREG_REG is already known to be
465 sign- or zero-extended from the mode of the SUBREG to the mode of
466 the reg. SUBREG_PROMOTED_UNSIGNED_P gives the signedness of the
467 extension.
468
469 When used as a LHS, is means that this extension must be done
470 when assigning to SUBREG_REG. */
471
472 #define SUBREG_PROMOTED_VAR_P(RTX) ((RTX)->in_struct)
473 #define SUBREG_PROMOTED_UNSIGNED_P(RTX) ((RTX)->unchanging)
474
475 /* Access various components of an ASM_OPERANDS rtx. */
476
477 #define ASM_OPERANDS_TEMPLATE(RTX) XSTR ((RTX), 0)
478 #define ASM_OPERANDS_OUTPUT_CONSTRAINT(RTX) XSTR ((RTX), 1)
479 #define ASM_OPERANDS_OUTPUT_IDX(RTX) XINT ((RTX), 2)
480 #define ASM_OPERANDS_INPUT_VEC(RTX) XVEC ((RTX), 3)
481 #define ASM_OPERANDS_INPUT_CONSTRAINT_VEC(RTX) XVEC ((RTX), 4)
482 #define ASM_OPERANDS_INPUT(RTX, N) XVECEXP ((RTX), 3, (N))
483 #define ASM_OPERANDS_INPUT_LENGTH(RTX) XVECLEN ((RTX), 3)
484 #define ASM_OPERANDS_INPUT_CONSTRAINT(RTX, N) XSTR (XVECEXP ((RTX), 4, (N)), 0)
485 #define ASM_OPERANDS_INPUT_MODE(RTX, N) GET_MODE (XVECEXP ((RTX), 4, (N)))
486 #define ASM_OPERANDS_SOURCE_FILE(RTX) XSTR ((RTX), 5)
487 #define ASM_OPERANDS_SOURCE_LINE(RTX) XINT ((RTX), 6)
488
489 /* For a MEM rtx, 1 if it's a volatile reference.
490 Also in an ASM_OPERANDS rtx. */
491 #define MEM_VOLATILE_P(RTX) ((RTX)->volatil)
492
493 /* For a MEM rtx, 1 if it refers to a structure or union component. */
494 #define MEM_IN_STRUCT_P(RTX) ((RTX)->in_struct)
495
496 /* For a LABEL_REF, 1 means that this reference is to a label outside the
497 loop containing the reference. */
498 #define LABEL_OUTSIDE_LOOP_P(RTX) ((RTX)->in_struct)
499
500 /* For a LABEL_REF, 1 means it is for a nonlocal label. */
501 /* Likewise in an EXPR_LIST for a REG_LABEL note. */
502 #define LABEL_REF_NONLOCAL_P(RTX) ((RTX)->volatil)
503
504 /* For a CODE_LABEL, 1 means always consider this label to be needed. */
505 #define LABEL_PRESERVE_P(RTX) ((RTX)->in_struct)
506
507 /* For a REG, 1 means the register is used only in an exit test of a loop. */
508 #define REG_LOOP_TEST_P(RTX) ((RTX)->in_struct)
509
510 /* During sched, for an insn, 1 means that the insn must be scheduled together
511 with the preceding insn. */
512 #define SCHED_GROUP_P(INSN) ((INSN)->in_struct)
513
514 /* During sched, for the LOG_LINKS of an insn, these cache the adjusted
515 cost of the dependence link. The cost of executing an instruction
516 may vary based on how the results are used. LINK_COST_ZERO is 1 when
517 the cost through the link varies and is unchanged (i.e., the link has
518 zero additional cost). LINK_COST_FREE is 1 when the cost through the
519 link is zero (i.e., the link makes the cost free). In other cases,
520 the adjustment to the cost is recomputed each time it is needed. */
521 #define LINK_COST_ZERO(X) ((X)->jump)
522 #define LINK_COST_FREE(X) ((X)->call)
523
524 /* For a SET rtx, SET_DEST is the place that is set
525 and SET_SRC is the value it is set to. */
526 #define SET_DEST(RTX) ((RTX)->fld[0].rtx)
527 #define SET_SRC(RTX) ((RTX)->fld[1].rtx)
528
529 /* For a TRAP_IF rtx, TRAP_CONDITION is an expression. */
530 #define TRAP_CONDITION(RTX) ((RTX)->fld[0].rtx)
531
532 /* 1 in a SYMBOL_REF if it addresses this function's constants pool. */
533 #define CONSTANT_POOL_ADDRESS_P(RTX) ((RTX)->unchanging)
534
535 /* Flag in a SYMBOL_REF for machine-specific purposes. */
536 #define SYMBOL_REF_FLAG(RTX) ((RTX)->volatil)
537
538 /* 1 means a SYMBOL_REF has been the library function in emit_library_call. */
539 #define SYMBOL_REF_USED(RTX) ((RTX)->used)
540
541 /* For an INLINE_HEADER rtx, FIRST_FUNCTION_INSN is the first insn
542 of the function that is not involved in copying parameters to
543 pseudo-registers. FIRST_PARM_INSN is the very first insn of
544 the function, including the parameter copying.
545 We keep this around in case we must splice
546 this function into the assembly code at the end of the file.
547 FIRST_LABELNO is the first label number used by the function (inclusive).
548 LAST_LABELNO is the last label used by the function (exclusive).
549 MAX_REGNUM is the largest pseudo-register used by that function.
550 FUNCTION_ARGS_SIZE is the size of the argument block in the stack.
551 POPS_ARGS is the number of bytes of input arguments popped by the function
552 STACK_SLOT_LIST is the list of stack slots.
553 FUNCTION_FLAGS are where single-bit flags are saved.
554 OUTGOING_ARGS_SIZE is the size of the largest outgoing stack parameter list.
555 ORIGINAL_ARG_VECTOR is a vector of the original DECL_RTX values
556 for the function arguments.
557 ORIGINAL_DECL_INITIAL is a pointer to the original DECL_INITIAL for the
558 function.
559
560 We want this to lay down like an INSN. The PREV_INSN field
561 is always NULL. The NEXT_INSN field always points to the
562 first function insn of the function being squirreled away. */
563
564 #define FIRST_FUNCTION_INSN(RTX) ((RTX)->fld[2].rtx)
565 #define FIRST_PARM_INSN(RTX) ((RTX)->fld[3].rtx)
566 #define FIRST_LABELNO(RTX) ((RTX)->fld[4].rtint)
567 #define LAST_LABELNO(RTX) ((RTX)->fld[5].rtint)
568 #define MAX_PARMREG(RTX) ((RTX)->fld[6].rtint)
569 #define MAX_REGNUM(RTX) ((RTX)->fld[7].rtint)
570 #define FUNCTION_ARGS_SIZE(RTX) ((RTX)->fld[8].rtint)
571 #define POPS_ARGS(RTX) ((RTX)->fld[9].rtint)
572 #define STACK_SLOT_LIST(RTX) ((RTX)->fld[10].rtx)
573 #define FUNCTION_FLAGS(RTX) ((RTX)->fld[11].rtint)
574 #define OUTGOING_ARGS_SIZE(RTX) ((RTX)->fld[12].rtint)
575 #define ORIGINAL_ARG_VECTOR(RTX) ((RTX)->fld[13].rtvec)
576 #define ORIGINAL_DECL_INITIAL(RTX) ((RTX)->fld[14].rtx)
577
578 /* In FUNCTION_FLAGS we save some variables computed when emitting the code
579 for the function and which must be `or'ed into the current flag values when
580 insns from that function are being inlined. */
581
582 /* These ought to be an enum, but non-ANSI compilers don't like that. */
583 #define FUNCTION_FLAGS_CALLS_ALLOCA 01
584 #define FUNCTION_FLAGS_CALLS_SETJMP 02
585 #define FUNCTION_FLAGS_RETURNS_STRUCT 04
586 #define FUNCTION_FLAGS_RETURNS_PCC_STRUCT 010
587 #define FUNCTION_FLAGS_NEEDS_CONTEXT 020
588 #define FUNCTION_FLAGS_HAS_NONLOCAL_LABEL 040
589 #define FUNCTION_FLAGS_RETURNS_POINTER 0100
590 #define FUNCTION_FLAGS_USES_CONST_POOL 0200
591 #define FUNCTION_FLAGS_CALLS_LONGJMP 0400
592 #define FUNCTION_FLAGS_USES_PIC_OFFSET_TABLE 01000
593
594 /* Define a macro to look for REG_INC notes,
595 but save time on machines where they never exist. */
596
597 /* Don't continue this line--convex cc version 4.1 would lose. */
598 #if (defined (HAVE_PRE_INCREMENT) || defined (HAVE_PRE_DECREMENT) || defined (HAVE_POST_INCREMENT) || defined (HAVE_POST_DECREMENT))
599 #define FIND_REG_INC_NOTE(insn, reg) (find_reg_note ((insn), REG_INC, (reg)))
600 #else
601 #define FIND_REG_INC_NOTE(insn, reg) 0
602 #endif
603
604 /* Indicate whether the machine has any sort of auto increment addressing.
605 If not, we can avoid checking for REG_INC notes. */
606
607 /* Don't continue this line--convex cc version 4.1 would lose. */
608 #if (defined (HAVE_PRE_INCREMENT) || defined (HAVE_PRE_DECREMENT) || defined (HAVE_POST_INCREMENT) || defined (HAVE_POST_DECREMENT))
609 #define AUTO_INC_DEC
610 #endif
611 \f
612 /* Generally useful functions. */
613
614 /* The following functions accept a wide integer argument. Rather than
615 having to cast on every function call, we use a macro instead, that is
616 defined here and in tree.h. */
617
618 #ifndef exact_log2
619 #define exact_log2(N) exact_log2_wide ((HOST_WIDE_INT) (N))
620 #define floor_log2(N) floor_log2_wide ((HOST_WIDE_INT) (N))
621 #endif
622
623 #define plus_constant(X,C) plus_constant_wide (X, (HOST_WIDE_INT) (C))
624
625 #define plus_constant_for_output(X,C) \
626 plus_constant_for_output_wide (X, (HOST_WIDE_INT) (C))
627
628 extern rtx plus_constant_wide PROTO((rtx, HOST_WIDE_INT));
629 extern rtx plus_constant_for_output_wide PROTO((rtx, HOST_WIDE_INT));
630
631 #define GEN_INT(N) gen_rtx (CONST_INT, VOIDmode, (N))
632
633 #if 0
634 /* We cannot define prototypes for the variable argument functions,
635 since they have not been ANSI-fied, and an ANSI compiler would
636 complain when compiling the definition of these functions. */
637
638 extern rtx gen_rtx PROTO((enum rtx_code, enum machine_mode, ...));
639 extern rtvec gen_rtvec PROTO((int, ...));
640
641 #else
642 extern rtx gen_rtx ();
643 extern rtvec gen_rtvec ();
644 #endif
645
646 #ifdef BUFSIZ /* stdio.h has been included */
647 extern rtx read_rtx PROTO((FILE *));
648 #else
649 extern rtx read_rtx ();
650 #endif
651
652 #if 0
653 /* At present, don't prototype xrealloc, since all of the callers don't
654 cast their pointers to char *, and all of the xrealloc's don't use
655 void * yet. */
656 extern char *xmalloc PROTO((size_t));
657 extern char *xrealloc PROTO((void *, size_t));
658 #else
659 extern char *xmalloc ();
660 extern char *xrealloc ();
661 #endif
662
663 extern char *oballoc PROTO((int));
664 extern char *permalloc PROTO((int));
665 extern void free PROTO((void *));
666 extern rtx rtx_alloc PROTO((RTX_CODE));
667 extern rtvec rtvec_alloc PROTO((int));
668 extern rtx find_reg_note PROTO((rtx, enum reg_note, rtx));
669 extern rtx find_regno_note PROTO((rtx, enum reg_note, int));
670 extern HOST_WIDE_INT get_integer_term PROTO((rtx));
671 extern rtx get_related_value PROTO((rtx));
672 extern rtx single_set PROTO((rtx));
673 extern rtx find_last_value PROTO((rtx, rtx *, rtx));
674 extern rtx copy_rtx PROTO((rtx));
675 extern rtx copy_rtx_if_shared PROTO((rtx));
676 extern rtx copy_most_rtx PROTO((rtx, rtx));
677 extern rtx replace_rtx PROTO((rtx, rtx, rtx));
678 extern rtvec gen_rtvec_v PROTO((int, rtx *));
679 extern rtx gen_reg_rtx PROTO((enum machine_mode));
680 extern rtx gen_label_rtx PROTO((void));
681 extern rtx gen_inline_header_rtx PROTO((rtx, rtx, int, int, int, int, int, int, rtx, int, int, rtvec, rtx));
682 extern rtx gen_lowpart_common PROTO((enum machine_mode, rtx));
683 extern rtx gen_lowpart PROTO((enum machine_mode, rtx));
684 extern rtx gen_lowpart_if_possible PROTO((enum machine_mode, rtx));
685 extern rtx gen_highpart PROTO((enum machine_mode, rtx));
686 extern rtx gen_realpart PROTO((enum machine_mode, rtx));
687 extern rtx gen_imagpart PROTO((enum machine_mode, rtx));
688 extern rtx operand_subword PROTO((rtx, int, int, enum machine_mode));
689 extern rtx operand_subword_force PROTO((rtx, int, enum machine_mode));
690 extern int subreg_lowpart_p PROTO((rtx));
691 extern rtx make_safe_from PROTO((rtx, rtx));
692 extern rtx memory_address PROTO((enum machine_mode, rtx));
693 extern rtx get_insns PROTO((void));
694 extern rtx get_last_insn PROTO((void));
695 extern rtx get_last_insn_anywhere PROTO((void));
696 extern void start_sequence PROTO((void));
697 extern void push_to_sequence PROTO((rtx));
698 extern void end_sequence PROTO((void));
699 extern rtx gen_sequence PROTO((void));
700 extern rtx immed_double_const PROTO((HOST_WIDE_INT, HOST_WIDE_INT, enum machine_mode));
701 extern rtx force_const_mem PROTO((enum machine_mode, rtx));
702 extern rtx force_reg PROTO((enum machine_mode, rtx));
703 extern rtx get_pool_constant PROTO((rtx));
704 extern enum machine_mode get_pool_mode PROTO((rtx));
705 extern int get_pool_offset PROTO((rtx));
706 extern rtx simplify_subtraction PROTO((rtx));
707 extern rtx assign_stack_local PROTO((enum machine_mode, int, int));
708 extern rtx assign_stack_temp PROTO((enum machine_mode, int, int));
709 extern rtx protect_from_queue PROTO((rtx, int));
710 extern void emit_queue PROTO((void));
711 extern rtx emit_move_insn PROTO((rtx, rtx));
712 extern rtx emit_insn_before PROTO((rtx, rtx));
713 extern rtx emit_jump_insn_before PROTO((rtx, rtx));
714 extern rtx emit_call_insn_before PROTO((rtx, rtx));
715 extern rtx emit_barrier_before PROTO((rtx));
716 extern rtx emit_note_before PROTO((int, rtx));
717 extern rtx emit_insn_after PROTO((rtx, rtx));
718 extern rtx emit_jump_insn_after PROTO((rtx, rtx));
719 extern rtx emit_barrier_after PROTO((rtx));
720 extern rtx emit_label_after PROTO((rtx, rtx));
721 extern rtx emit_note_after PROTO((int, rtx));
722 extern rtx emit_line_note_after PROTO((char *, int, rtx));
723 extern rtx emit_insn PROTO((rtx));
724 extern rtx emit_insns PROTO((rtx));
725 extern rtx emit_insns_before PROTO((rtx, rtx));
726 extern rtx emit_jump_insn PROTO((rtx));
727 extern rtx emit_call_insn PROTO((rtx));
728 extern rtx emit_label PROTO((rtx));
729 extern rtx emit_barrier PROTO((void));
730 extern rtx emit_line_note PROTO((char *, int));
731 extern rtx emit_note PROTO((char *, int));
732 extern rtx emit_line_note_force PROTO((char *, int));
733 extern rtx make_insn_raw PROTO((rtx));
734 extern rtx previous_insn PROTO((rtx));
735 extern rtx next_insn PROTO((rtx));
736 extern rtx prev_nonnote_insn PROTO((rtx));
737 extern rtx next_nonnote_insn PROTO((rtx));
738 extern rtx prev_real_insn PROTO((rtx));
739 extern rtx next_real_insn PROTO((rtx));
740 extern rtx prev_active_insn PROTO((rtx));
741 extern rtx next_active_insn PROTO((rtx));
742 extern rtx prev_label PROTO((rtx));
743 extern rtx next_label PROTO((rtx));
744 extern rtx next_cc0_user PROTO((rtx));
745 extern rtx prev_cc0_setter PROTO((rtx));
746 extern rtx reg_set_last PROTO((rtx, rtx));
747 extern rtx next_nondeleted_insn PROTO((rtx));
748 extern enum rtx_code reverse_condition PROTO((enum rtx_code));
749 extern enum rtx_code swap_condition PROTO((enum rtx_code));
750 extern enum rtx_code unsigned_condition PROTO((enum rtx_code));
751 extern enum rtx_code signed_condition PROTO((enum rtx_code));
752 extern rtx find_equiv_reg PROTO((rtx, rtx, enum reg_class, int, short *, int, enum machine_mode));
753 extern rtx squeeze_notes PROTO((rtx, rtx));
754 extern rtx delete_insn PROTO((rtx));
755 extern void delete_jump PROTO((rtx));
756 extern rtx get_label_before PROTO((rtx));
757 extern rtx get_label_after PROTO((rtx));
758 extern rtx follow_jumps PROTO((rtx));
759 extern rtx adj_offsettable_operand PROTO((rtx, int));
760 extern rtx try_split PROTO((rtx, rtx, int));
761 extern rtx split_insns PROTO((rtx, rtx));
762 extern rtx simplify_unary_operation PROTO((enum rtx_code, enum machine_mode, rtx, enum machine_mode));
763 extern rtx simplify_binary_operation PROTO((enum rtx_code, enum machine_mode, rtx, rtx));
764 extern rtx simplify_ternary_operation PROTO((enum rtx_code, enum machine_mode, enum machine_mode, rtx, rtx, rtx));
765 extern rtx simplify_relational_operation PROTO((enum rtx_code, enum machine_mode, rtx, rtx));
766 extern rtx nonlocal_label_rtx_list PROTO((void));
767 extern rtx gen_move_insn PROTO((rtx, rtx));
768 extern rtx gen_jump PROTO((rtx));
769 extern rtx gen_beq PROTO((rtx));
770 extern rtx gen_bge PROTO((rtx));
771 extern rtx gen_ble PROTO((rtx));
772 extern rtx eliminate_constant_term PROTO((rtx, rtx *));
773 extern rtx expand_complex_abs PROTO((enum machine_mode, rtx, rtx, int));
774
775 /* Maximum number of parallel sets and clobbers in any insn in this fn.
776 Always at least 3, since the combiner could put that many togetherm
777 and we want this to remain correct for all the remaining passes. */
778
779 extern int max_parallel;
780
781 extern int asm_noperands PROTO((rtx));
782 extern char *decode_asm_operands PROTO((rtx, rtx *, rtx **, char **, enum machine_mode *));
783
784 extern enum reg_class reg_preferred_class PROTO((int));
785 extern enum reg_class reg_alternate_class PROTO((int));
786
787 extern rtx get_first_nonparm_insn PROTO((void));
788
789 /* Standard pieces of rtx, to be substituted directly into things. */
790 extern rtx pc_rtx;
791 extern rtx cc0_rtx;
792 extern rtx const0_rtx;
793 extern rtx const1_rtx;
794 extern rtx const2_rtx;
795 extern rtx constm1_rtx;
796 extern rtx const_true_rtx;
797
798 extern rtx const_tiny_rtx[3][(int) MAX_MACHINE_MODE];
799
800 /* Returns a constant 0 rtx in mode MODE. Integer modes are treated the
801 same as VOIDmode. */
802
803 #define CONST0_RTX(MODE) (const_tiny_rtx[0][(int) (MODE)])
804
805 /* Likewise, for the constants 1 and 2. */
806
807 #define CONST1_RTX(MODE) (const_tiny_rtx[1][(int) (MODE)])
808 #define CONST2_RTX(MODE) (const_tiny_rtx[2][(int) (MODE)])
809
810 /* All references to certain hard regs, except those created
811 by allocating pseudo regs into them (when that's possible),
812 go through these unique rtx objects. */
813 extern rtx stack_pointer_rtx;
814 extern rtx frame_pointer_rtx;
815 extern rtx arg_pointer_rtx;
816 extern rtx pic_offset_table_rtx;
817 extern rtx struct_value_rtx;
818 extern rtx struct_value_incoming_rtx;
819 extern rtx static_chain_rtx;
820 extern rtx static_chain_incoming_rtx;
821
822 /* Virtual registers are used during RTL generation to refer to locations into
823 the stack frame when the actual location isn't known until RTL generation
824 is complete. The routine instantiate_virtual_regs replaces these with
825 the proper value, which is normally {frame,arg,stack}_pointer_rtx plus
826 a constant. */
827
828 #define FIRST_VIRTUAL_REGISTER (FIRST_PSEUDO_REGISTER)
829
830 /* This points to the first word of the incoming arguments passed on the stack,
831 either by the caller or by the callee when pretending it was passed by the
832 caller. */
833
834 extern rtx virtual_incoming_args_rtx;
835
836 #define VIRTUAL_INCOMING_ARGS_REGNUM (FIRST_VIRTUAL_REGISTER)
837
838 /* If FRAME_GROWS_DOWNWARDS, this points to immediately above the first
839 variable on the stack. Otherwise, it points to the first variable on
840 the stack. */
841
842 extern rtx virtual_stack_vars_rtx;
843
844 #define VIRTUAL_STACK_VARS_REGNUM ((FIRST_VIRTUAL_REGISTER) + 1)
845
846 /* This points to the location of dynamically-allocated memory on the stack
847 immediately after the stack pointer has been adjusted by the amount
848 desired. */
849
850 extern rtx virtual_stack_dynamic_rtx;
851
852 #define VIRTUAL_STACK_DYNAMIC_REGNUM ((FIRST_VIRTUAL_REGISTER) + 2)
853
854 /* This points to the location in the stack at which outgoing arguments should
855 be written when the stack is pre-pushed (arguments pushed using push
856 insns always use sp). */
857
858 extern rtx virtual_outgoing_args_rtx;
859
860 #define VIRTUAL_OUTGOING_ARGS_REGNUM ((FIRST_VIRTUAL_REGISTER) + 3)
861
862 #define LAST_VIRTUAL_REGISTER ((FIRST_VIRTUAL_REGISTER) + 3)
863
864 extern rtx find_next_ref PROTO((rtx, rtx));
865 extern rtx *find_single_use PROTO((rtx, rtx, rtx *));
866
867 /* It is hard to write the prototype for expand_expr, since it needs
868 expr.h to be included for the enumeration. */
869
870 extern rtx expand_expr ();
871 extern rtx immed_real_const_1();
872
873 #ifdef TREE_CODE
874 /* rtl.h and tree.h were included. */
875 extern rtx output_constant_def PROTO((tree));
876 extern rtx immed_real_const PROTO((tree));
877 extern rtx immed_real_const_1 PROTO((REAL_VALUE_TYPE, enum machine_mode));
878 extern tree make_tree PROTO((tree, rtx));
879
880 #else
881 extern rtx output_constant_def ();
882 extern rtx immed_real_const ();
883 extern rtx immed_real_const_1 ();
884 #endif
885
886 /* Define a default value for STORE_FLAG_VALUE. */
887
888 #ifndef STORE_FLAG_VALUE
889 #define STORE_FLAG_VALUE 1
890 #endif
891
892 /* Nonzero after end of reload pass.
893 Set to 1 or 0 by toplev.c. */
894
895 extern int reload_completed;
896
897 /* Set to 1 while reload_as_needed is operating.
898 Required by some machines to handle any generated moves differently. */
899
900 extern int reload_in_progress;
901
902 /* If this is nonzero, we do not bother generating VOLATILE
903 around volatile memory references, and we are willing to
904 output indirect addresses. If cse is to follow, we reject
905 indirect addresses so a useful potential cse is generated;
906 if it is used only once, instruction combination will produce
907 the same indirect address eventually. */
908 extern int cse_not_expected;
909
910 /* Indexed by pseudo register number, gives the rtx for that pseudo.
911 Allocated in parallel with regno_pointer_flag. */
912 extern rtx *regno_reg_rtx;
913
914 /* Translates rtx code to tree code, for those codes needed by
915 REAL_ARITHMETIC. */
916 extern int rtx_to_tree_code ();
This page took 0.082813 seconds and 5 git commands to generate.