Convert PATTERN from a macro to a pair of inline functions
[official-gcc.git] / gcc / rtl.h
blobfdf184170320f2ed56049e8c11787578d2c9679f
1 /* Register Transfer Language (RTL) definitions for GCC
2 Copyright (C) 1987-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #ifndef GCC_RTL_H
21 #define GCC_RTL_H
23 #include <utility>
24 #include "statistics.h"
25 #include "machmode.h"
26 #include "input.h"
27 #include "real.h"
28 #include "vec.h"
29 #include "fixed-value.h"
30 #include "alias.h"
31 #include "hashtab.h"
32 #include "wide-int.h"
33 #include "flags.h"
34 #include "is-a.h"
36 /* Value used by some passes to "recognize" noop moves as valid
37 instructions. */
38 #define NOOP_MOVE_INSN_CODE INT_MAX
40 /* Register Transfer Language EXPRESSIONS CODES */
42 #define RTX_CODE enum rtx_code
43 enum rtx_code {
45 #define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) ENUM ,
46 #include "rtl.def" /* rtl expressions are documented here */
47 #undef DEF_RTL_EXPR
49 LAST_AND_UNUSED_RTX_CODE}; /* A convenient way to get a value for
50 NUM_RTX_CODE.
51 Assumes default enum value assignment. */
53 /* The cast here, saves many elsewhere. */
54 #define NUM_RTX_CODE ((int) LAST_AND_UNUSED_RTX_CODE)
56 /* Similar, but since generator files get more entries... */
57 #ifdef GENERATOR_FILE
58 # define NON_GENERATOR_NUM_RTX_CODE ((int) MATCH_OPERAND)
59 #endif
61 /* Register Transfer Language EXPRESSIONS CODE CLASSES */
63 enum rtx_class {
64 /* We check bit 0-1 of some rtx class codes in the predicates below. */
66 /* Bit 0 = comparison if 0, arithmetic is 1
67 Bit 1 = 1 if commutative. */
68 RTX_COMPARE, /* 0 */
69 RTX_COMM_COMPARE,
70 RTX_BIN_ARITH,
71 RTX_COMM_ARITH,
73 /* Must follow the four preceding values. */
74 RTX_UNARY, /* 4 */
76 RTX_EXTRA,
77 RTX_MATCH,
78 RTX_INSN,
80 /* Bit 0 = 1 if constant. */
81 RTX_OBJ, /* 8 */
82 RTX_CONST_OBJ,
84 RTX_TERNARY,
85 RTX_BITFIELD_OPS,
86 RTX_AUTOINC
89 #define RTX_OBJ_MASK (~1)
90 #define RTX_OBJ_RESULT (RTX_OBJ & RTX_OBJ_MASK)
91 #define RTX_COMPARE_MASK (~1)
92 #define RTX_COMPARE_RESULT (RTX_COMPARE & RTX_COMPARE_MASK)
93 #define RTX_ARITHMETIC_MASK (~1)
94 #define RTX_ARITHMETIC_RESULT (RTX_COMM_ARITH & RTX_ARITHMETIC_MASK)
95 #define RTX_BINARY_MASK (~3)
96 #define RTX_BINARY_RESULT (RTX_COMPARE & RTX_BINARY_MASK)
97 #define RTX_COMMUTATIVE_MASK (~2)
98 #define RTX_COMMUTATIVE_RESULT (RTX_COMM_COMPARE & RTX_COMMUTATIVE_MASK)
99 #define RTX_NON_COMMUTATIVE_RESULT (RTX_COMPARE & RTX_COMMUTATIVE_MASK)
101 extern const unsigned char rtx_length[NUM_RTX_CODE];
102 #define GET_RTX_LENGTH(CODE) (rtx_length[(int) (CODE)])
104 extern const char * const rtx_name[NUM_RTX_CODE];
105 #define GET_RTX_NAME(CODE) (rtx_name[(int) (CODE)])
107 extern const char * const rtx_format[NUM_RTX_CODE];
108 #define GET_RTX_FORMAT(CODE) (rtx_format[(int) (CODE)])
110 extern const enum rtx_class rtx_class[NUM_RTX_CODE];
111 #define GET_RTX_CLASS(CODE) (rtx_class[(int) (CODE)])
113 /* True if CODE is part of the insn chain (i.e. has INSN_UID, PREV_INSN
114 and NEXT_INSN fields). */
115 #define INSN_CHAIN_CODE_P(CODE) IN_RANGE (CODE, DEBUG_INSN, NOTE)
117 extern const unsigned char rtx_code_size[NUM_RTX_CODE];
118 extern const unsigned char rtx_next[NUM_RTX_CODE];
120 /* The flags and bitfields of an ADDR_DIFF_VEC. BASE is the base label
121 relative to which the offsets are calculated, as explained in rtl.def. */
122 struct addr_diff_vec_flags
124 /* Set at the start of shorten_branches - ONLY WHEN OPTIMIZING - : */
125 unsigned min_align: 8;
126 /* Flags: */
127 unsigned base_after_vec: 1; /* BASE is after the ADDR_DIFF_VEC. */
128 unsigned min_after_vec: 1; /* minimum address target label is
129 after the ADDR_DIFF_VEC. */
130 unsigned max_after_vec: 1; /* maximum address target label is
131 after the ADDR_DIFF_VEC. */
132 unsigned min_after_base: 1; /* minimum address target label is
133 after BASE. */
134 unsigned max_after_base: 1; /* maximum address target label is
135 after BASE. */
136 /* Set by the actual branch shortening process - ONLY WHEN OPTIMIZING - : */
137 unsigned offset_unsigned: 1; /* offsets have to be treated as unsigned. */
138 unsigned : 2;
139 unsigned scale : 8;
142 /* Structure used to describe the attributes of a MEM. These are hashed
143 so MEMs that the same attributes share a data structure. This means
144 they cannot be modified in place. */
145 struct GTY(()) mem_attrs
147 /* The expression that the MEM accesses, or null if not known.
148 This expression might be larger than the memory reference itself.
149 (In other words, the MEM might access only part of the object.) */
150 tree expr;
152 /* The offset of the memory reference from the start of EXPR.
153 Only valid if OFFSET_KNOWN_P. */
154 HOST_WIDE_INT offset;
156 /* The size of the memory reference in bytes. Only valid if
157 SIZE_KNOWN_P. */
158 HOST_WIDE_INT size;
160 /* The alias set of the memory reference. */
161 alias_set_type alias;
163 /* The alignment of the reference in bits. Always a multiple of
164 BITS_PER_UNIT. Note that EXPR may have a stricter alignment
165 than the memory reference itself. */
166 unsigned int align;
168 /* The address space that the memory reference uses. */
169 unsigned char addrspace;
171 /* True if OFFSET is known. */
172 bool offset_known_p;
174 /* True if SIZE is known. */
175 bool size_known_p;
178 /* Structure used to describe the attributes of a REG in similar way as
179 mem_attrs does for MEM above. Note that the OFFSET field is calculated
180 in the same way as for mem_attrs, rather than in the same way as a
181 SUBREG_BYTE. For example, if a big-endian target stores a byte
182 object in the low part of a 4-byte register, the OFFSET field
183 will be -3 rather than 0. */
185 struct GTY(()) reg_attrs {
186 tree decl; /* decl corresponding to REG. */
187 HOST_WIDE_INT offset; /* Offset from start of DECL. */
190 /* Common union for an element of an rtx. */
192 union rtunion
194 int rt_int;
195 unsigned int rt_uint;
196 const char *rt_str;
197 rtx rt_rtx;
198 rtvec rt_rtvec;
199 enum machine_mode rt_type;
200 addr_diff_vec_flags rt_addr_diff_vec_flags;
201 struct cselib_val *rt_cselib;
202 tree rt_tree;
203 basic_block rt_bb;
204 mem_attrs *rt_mem;
205 reg_attrs *rt_reg;
206 struct constant_descriptor_rtx *rt_constant;
207 struct dw_cfi_node *rt_cfi;
210 /* This structure remembers the position of a SYMBOL_REF within an
211 object_block structure. A SYMBOL_REF only provides this information
212 if SYMBOL_REF_HAS_BLOCK_INFO_P is true. */
213 struct GTY(()) block_symbol {
214 /* The usual SYMBOL_REF fields. */
215 rtunion GTY ((skip)) fld[2];
217 /* The block that contains this object. */
218 struct object_block *block;
220 /* The offset of this object from the start of its block. It is negative
221 if the symbol has not yet been assigned an offset. */
222 HOST_WIDE_INT offset;
225 /* Describes a group of objects that are to be placed together in such
226 a way that their relative positions are known. */
227 struct GTY(()) object_block {
228 /* The section in which these objects should be placed. */
229 section *sect;
231 /* The alignment of the first object, measured in bits. */
232 unsigned int alignment;
234 /* The total size of the objects, measured in bytes. */
235 HOST_WIDE_INT size;
237 /* The SYMBOL_REFs for each object. The vector is sorted in
238 order of increasing offset and the following conditions will
239 hold for each element X:
241 SYMBOL_REF_HAS_BLOCK_INFO_P (X)
242 !SYMBOL_REF_ANCHOR_P (X)
243 SYMBOL_REF_BLOCK (X) == [address of this structure]
244 SYMBOL_REF_BLOCK_OFFSET (X) >= 0. */
245 vec<rtx, va_gc> *objects;
247 /* All the anchor SYMBOL_REFs used to address these objects, sorted
248 in order of increasing offset, and then increasing TLS model.
249 The following conditions will hold for each element X in this vector:
251 SYMBOL_REF_HAS_BLOCK_INFO_P (X)
252 SYMBOL_REF_ANCHOR_P (X)
253 SYMBOL_REF_BLOCK (X) == [address of this structure]
254 SYMBOL_REF_BLOCK_OFFSET (X) >= 0. */
255 vec<rtx, va_gc> *anchors;
258 struct GTY((variable_size)) hwivec_def {
259 HOST_WIDE_INT elem[1];
262 /* Number of elements of the HWIVEC if RTX is a CONST_WIDE_INT. */
263 #define CWI_GET_NUM_ELEM(RTX) \
264 ((int)RTL_FLAG_CHECK1("CWI_GET_NUM_ELEM", (RTX), CONST_WIDE_INT)->u2.num_elem)
265 #define CWI_PUT_NUM_ELEM(RTX, NUM) \
266 (RTL_FLAG_CHECK1("CWI_PUT_NUM_ELEM", (RTX), CONST_WIDE_INT)->u2.num_elem = (NUM))
268 /* RTL expression ("rtx"). */
270 /* The GTY "desc" and "tag" options below are a kludge: we need a desc
271 field for for gengtype to recognize that inheritance is occurring,
272 so that all subclasses are redirected to the traversal hook for the
273 base class.
274 However, all of the fields are in the base class, and special-casing
275 is at work. Hence we use desc and tag of 0, generating a switch
276 statement of the form:
277 switch (0)
279 case 0: // all the work happens here
281 in order to work with the existing special-casing in gengtype. */
283 struct GTY((desc("0"), tag("0"),
284 chain_next ("RTX_NEXT (&%h)"),
285 chain_prev ("RTX_PREV (&%h)"))) rtx_def {
286 /* The kind of expression this is. */
287 ENUM_BITFIELD(rtx_code) code: 16;
289 /* The kind of value the expression has. */
290 ENUM_BITFIELD(machine_mode) mode : 8;
292 /* 1 in a MEM if we should keep the alias set for this mem unchanged
293 when we access a component.
294 1 in a JUMP_INSN if it is a crossing jump.
295 1 in a CALL_INSN if it is a sibling call.
296 1 in a SET that is for a return.
297 In a CODE_LABEL, part of the two-bit alternate entry field.
298 1 in a CONCAT is VAL_EXPR_IS_COPIED in var-tracking.c.
299 1 in a VALUE is SP_BASED_VALUE_P in cselib.c.
300 1 in a SUBREG generated by LRA for reload insns. */
301 unsigned int jump : 1;
302 /* In a CODE_LABEL, part of the two-bit alternate entry field.
303 1 in a MEM if it cannot trap.
304 1 in a CALL_INSN logically equivalent to
305 ECF_LOOPING_CONST_OR_PURE and DECL_LOOPING_CONST_OR_PURE_P. */
306 unsigned int call : 1;
307 /* 1 in a REG, MEM, or CONCAT if the value is set at most once, anywhere.
308 1 in a SUBREG used for SUBREG_PROMOTED_UNSIGNED_P.
309 1 in a SYMBOL_REF if it addresses something in the per-function
310 constants pool.
311 1 in a CALL_INSN logically equivalent to ECF_CONST and TREE_READONLY.
312 1 in a NOTE, or EXPR_LIST for a const call.
313 1 in a JUMP_INSN of an annulling branch.
314 1 in a CONCAT is VAL_EXPR_IS_CLOBBERED in var-tracking.c.
315 1 in a preserved VALUE is PRESERVED_VALUE_P in cselib.c.
316 1 in a clobber temporarily created for LRA. */
317 unsigned int unchanging : 1;
318 /* 1 in a MEM or ASM_OPERANDS expression if the memory reference is volatile.
319 1 in an INSN, CALL_INSN, JUMP_INSN, CODE_LABEL, BARRIER, or NOTE
320 if it has been deleted.
321 1 in a REG expression if corresponds to a variable declared by the user,
322 0 for an internally generated temporary.
323 1 in a SUBREG used for SUBREG_PROMOTED_UNSIGNED_P.
324 1 in a LABEL_REF, REG_LABEL_TARGET or REG_LABEL_OPERAND note for a
325 non-local label.
326 In a SYMBOL_REF, this flag is used for machine-specific purposes.
327 In a PREFETCH, this flag indicates that it should be considered a scheduling
328 barrier.
329 1 in a CONCAT is VAL_NEEDS_RESOLUTION in var-tracking.c. */
330 unsigned int volatil : 1;
331 /* 1 in a REG if the register is used only in exit code a loop.
332 1 in a SUBREG expression if was generated from a variable with a
333 promoted mode.
334 1 in a CODE_LABEL if the label is used for nonlocal gotos
335 and must not be deleted even if its count is zero.
336 1 in an INSN, JUMP_INSN or CALL_INSN if this insn must be scheduled
337 together with the preceding insn. Valid only within sched.
338 1 in an INSN, JUMP_INSN, or CALL_INSN if insn is in a delay slot and
339 from the target of a branch. Valid from reorg until end of compilation;
340 cleared before used.
342 The name of the field is historical. It used to be used in MEMs
343 to record whether the MEM accessed part of a structure. */
344 unsigned int in_struct : 1;
345 /* At the end of RTL generation, 1 if this rtx is used. This is used for
346 copying shared structure. See `unshare_all_rtl'.
347 In a REG, this is not needed for that purpose, and used instead
348 in `leaf_renumber_regs_insn'.
349 1 in a SYMBOL_REF, means that emit_library_call
350 has used it as the function.
351 1 in a CONCAT is VAL_HOLDS_TRACK_EXPR in var-tracking.c.
352 1 in a VALUE or DEBUG_EXPR is VALUE_RECURSED_INTO in var-tracking.c. */
353 unsigned int used : 1;
354 /* 1 in an INSN or a SET if this rtx is related to the call frame,
355 either changing how we compute the frame address or saving and
356 restoring registers in the prologue and epilogue.
357 1 in a REG or MEM if it is a pointer.
358 1 in a SYMBOL_REF if it addresses something in the per-function
359 constant string pool.
360 1 in a VALUE is VALUE_CHANGED in var-tracking.c. */
361 unsigned frame_related : 1;
362 /* 1 in a REG or PARALLEL that is the current function's return value.
363 1 in a SYMBOL_REF for a weak symbol.
364 1 in a CALL_INSN logically equivalent to ECF_PURE and DECL_PURE_P.
365 1 in a CONCAT is VAL_EXPR_HAS_REVERSE in var-tracking.c.
366 1 in a VALUE or DEBUG_EXPR is NO_LOC_P in var-tracking.c. */
367 unsigned return_val : 1;
369 union {
370 /* The final union field is aligned to 64 bits on LP64 hosts,
371 giving a 32-bit gap after the fields above. We optimize the
372 layout for that case and use the gap for extra code-specific
373 information. */
375 /* The ORIGINAL_REGNO of a REG. */
376 unsigned int original_regno;
378 /* The INSN_UID of an RTX_INSN-class code. */
379 int insn_uid;
381 /* The SYMBOL_REF_FLAGS of a SYMBOL_REF. */
382 unsigned int symbol_ref_flags;
384 /* The PAT_VAR_LOCATION_STATUS of a VAR_LOCATION. */
385 enum var_init_status var_location_status;
387 /* In a CONST_WIDE_INT (aka hwivec_def), this is the number of
388 HOST_WIDE_INTs in the hwivec_def. */
389 unsigned int num_elem;
390 } GTY ((skip)) u2;
392 /* The first element of the operands of this rtx.
393 The number of operands and their types are controlled
394 by the `code' field, according to rtl.def. */
395 union u {
396 rtunion fld[1];
397 HOST_WIDE_INT hwint[1];
398 struct block_symbol block_sym;
399 struct real_value rv;
400 struct fixed_value fv;
401 struct hwivec_def hwiv;
402 } GTY ((special ("rtx_def"), desc ("GET_CODE (&%0)"))) u;
405 class GTY(()) rtx_insn : public rtx_def
407 /* No extra fields, but adds the invariant:
409 (INSN_P (X)
410 || NOTE_P (X)
411 || JUMP_TABLE_DATA_P (X)
412 || BARRIER_P (X)
413 || LABEL_P (X))
415 i.e. that we must be able to use the following:
416 INSN_UID ()
417 NEXT_INSN ()
418 PREV_INSN ()
419 i.e. we have an rtx that has an INSN_UID field and can be part of
420 a linked list of insns.
424 /* Subclasses of rtx_insn. */
426 class GTY(()) rtx_debug_insn : public rtx_insn
428 /* No extra fields, but adds the invariant:
429 DEBUG_INSN_P (X) aka (GET_CODE (X) == DEBUG_INSN)
430 i.e. an annotation for tracking variable assignments.
432 This is an instance of:
433 DEF_RTL_EXPR(DEBUG_INSN, "debug_insn", "uuBeiie", RTX_INSN)
434 from rtl.def. */
437 class GTY(()) rtx_nonjump_insn : public rtx_insn
439 /* No extra fields, but adds the invariant:
440 NONJUMP_INSN_P (X) aka (GET_CODE (X) == INSN)
441 i.e an instruction that cannot jump.
443 This is an instance of:
444 DEF_RTL_EXPR(INSN, "insn", "uuBeiie", RTX_INSN)
445 from rtl.def. */
448 class GTY(()) rtx_jump_insn : public rtx_insn
450 /* No extra fields, but adds the invariant:
451 JUMP_P (X) aka (GET_CODE (X) == JUMP_INSN)
452 i.e. an instruction that can possibly jump.
454 This is an instance of:
455 DEF_RTL_EXPR(JUMP_INSN, "jump_insn", "uuBeiie0", RTX_INSN)
456 from rtl.def. */
459 class GTY(()) rtx_call_insn : public rtx_insn
461 /* No extra fields, but adds the invariant:
462 CALL_P (X) aka (GET_CODE (X) == CALL_INSN)
463 i.e. an instruction that can possibly call a subroutine
464 but which will not change which instruction comes next
465 in the current function.
467 This is an instance of:
468 DEF_RTL_EXPR(CALL_INSN, "call_insn", "uuBeiiee", RTX_INSN)
469 from rtl.def. */
472 class GTY(()) rtx_jump_table_data : public rtx_insn
474 /* No extra fields, but adds the invariant:
475 JUMP_TABLE_DATA_P (X) aka (GET_CODE (INSN) == JUMP_TABLE_DATA)
476 i.e. a data for a jump table, considered an instruction for
477 historical reasons.
479 This is an instance of:
480 DEF_RTL_EXPR(JUMP_TABLE_DATA, "jump_table_data", "uuBe0000", RTX_INSN)
481 from rtl.def. */
483 public:
485 /* This can be either:
487 (a) a table of absolute jumps, in which case PATTERN (this) is an
488 ADDR_VEC with arg 0 a vector of labels, or
490 (b) a table of relative jumps (e.g. for -fPIC), in which case
491 PATTERN (this) is an ADDR_DIFF_VEC, with arg 0 a LABEL_REF and
492 arg 1 the vector of labels.
494 This method gets the underlying vec. */
496 inline rtvec get_labels () const;
499 class GTY(()) rtx_barrier : public rtx_insn
501 /* No extra fields, but adds the invariant:
502 BARRIER_P (X) aka (GET_CODE (X) == BARRIER)
503 i.e. a marker that indicates that control will not flow through.
505 This is an instance of:
506 DEF_RTL_EXPR(BARRIER, "barrier", "uu00000", RTX_EXTRA)
507 from rtl.def. */
510 class GTY(()) rtx_code_label : public rtx_insn
512 /* No extra fields, but adds the invariant:
513 LABEL_P (X) aka (GET_CODE (X) == CODE_LABEL)
514 i.e. a label in the assembler.
516 This is an instance of:
517 DEF_RTL_EXPR(CODE_LABEL, "code_label", "uuB00is", RTX_EXTRA)
518 from rtl.def. */
521 class GTY(()) rtx_note : public rtx_insn
523 /* No extra fields, but adds the invariant:
524 NOTE_P(X) aka (GET_CODE (X) == NOTE)
525 i.e. a note about the corresponding source code.
527 This is an instance of:
528 DEF_RTL_EXPR(NOTE, "note", "uuB0ni", RTX_EXTRA)
529 from rtl.def. */
532 /* The size in bytes of an rtx header (code, mode and flags). */
533 #define RTX_HDR_SIZE offsetof (struct rtx_def, u)
535 /* The size in bytes of an rtx with code CODE. */
536 #define RTX_CODE_SIZE(CODE) rtx_code_size[CODE]
538 #define NULL_RTX (rtx) 0
540 /* The "next" and "previous" RTX, relative to this one. */
542 #define RTX_NEXT(X) (rtx_next[GET_CODE (X)] == 0 ? NULL \
543 : *(rtx *)(((char *)X) + rtx_next[GET_CODE (X)]))
545 /* FIXME: the "NEXT_INSN (PREV_INSN (X)) == X" condition shouldn't be needed.
547 #define RTX_PREV(X) ((INSN_P (X) \
548 || NOTE_P (X) \
549 || JUMP_TABLE_DATA_P (X) \
550 || BARRIER_P (X) \
551 || LABEL_P (X)) \
552 && PREV_INSN (X) != NULL \
553 && NEXT_INSN (PREV_INSN (X)) == X \
554 ? PREV_INSN (X) : NULL)
556 /* Define macros to access the `code' field of the rtx. */
558 #define GET_CODE(RTX) ((enum rtx_code) (RTX)->code)
559 #define PUT_CODE(RTX, CODE) ((RTX)->code = (CODE))
561 #define GET_MODE(RTX) ((enum machine_mode) (RTX)->mode)
562 #define PUT_MODE(RTX, MODE) ((RTX)->mode = (MODE))
564 /* RTL vector. These appear inside RTX's when there is a need
565 for a variable number of things. The principle use is inside
566 PARALLEL expressions. */
568 struct GTY(()) rtvec_def {
569 int num_elem; /* number of elements */
570 rtx GTY ((length ("%h.num_elem"))) elem[1];
573 #define NULL_RTVEC (rtvec) 0
575 #define GET_NUM_ELEM(RTVEC) ((RTVEC)->num_elem)
576 #define PUT_NUM_ELEM(RTVEC, NUM) ((RTVEC)->num_elem = (NUM))
578 /* Predicate yielding nonzero iff X is an rtx for a register. */
579 #define REG_P(X) (GET_CODE (X) == REG)
581 /* Predicate yielding nonzero iff X is an rtx for a memory location. */
582 #define MEM_P(X) (GET_CODE (X) == MEM)
584 #if TARGET_SUPPORTS_WIDE_INT
586 /* Match CONST_*s that can represent compile-time constant integers. */
587 #define CASE_CONST_SCALAR_INT \
588 case CONST_INT: \
589 case CONST_WIDE_INT
591 /* Match CONST_*s for which pointer equality corresponds to value
592 equality. */
593 #define CASE_CONST_UNIQUE \
594 case CONST_INT: \
595 case CONST_WIDE_INT: \
596 case CONST_DOUBLE: \
597 case CONST_FIXED
599 /* Match all CONST_* rtxes. */
600 #define CASE_CONST_ANY \
601 case CONST_INT: \
602 case CONST_WIDE_INT: \
603 case CONST_DOUBLE: \
604 case CONST_FIXED: \
605 case CONST_VECTOR
607 #else
609 /* Match CONST_*s that can represent compile-time constant integers. */
610 #define CASE_CONST_SCALAR_INT \
611 case CONST_INT: \
612 case CONST_DOUBLE
614 /* Match CONST_*s for which pointer equality corresponds to value
615 equality. */
616 #define CASE_CONST_UNIQUE \
617 case CONST_INT: \
618 case CONST_DOUBLE: \
619 case CONST_FIXED
621 /* Match all CONST_* rtxes. */
622 #define CASE_CONST_ANY \
623 case CONST_INT: \
624 case CONST_DOUBLE: \
625 case CONST_FIXED: \
626 case CONST_VECTOR
627 #endif
629 /* Predicate yielding nonzero iff X is an rtx for a constant integer. */
630 #define CONST_INT_P(X) (GET_CODE (X) == CONST_INT)
632 /* Predicate yielding nonzero iff X is an rtx for a constant integer. */
633 #define CONST_WIDE_INT_P(X) (GET_CODE (X) == CONST_WIDE_INT)
635 /* Predicate yielding nonzero iff X is an rtx for a constant fixed-point. */
636 #define CONST_FIXED_P(X) (GET_CODE (X) == CONST_FIXED)
638 /* Predicate yielding true iff X is an rtx for a double-int
639 or floating point constant. */
640 #define CONST_DOUBLE_P(X) (GET_CODE (X) == CONST_DOUBLE)
642 /* Predicate yielding true iff X is an rtx for a double-int. */
643 #define CONST_DOUBLE_AS_INT_P(X) \
644 (GET_CODE (X) == CONST_DOUBLE && GET_MODE (X) == VOIDmode)
646 /* Predicate yielding true iff X is an rtx for a integer const. */
647 #if TARGET_SUPPORTS_WIDE_INT
648 #define CONST_SCALAR_INT_P(X) \
649 (CONST_INT_P (X) || CONST_WIDE_INT_P (X))
650 #else
651 #define CONST_SCALAR_INT_P(X) \
652 (CONST_INT_P (X) || CONST_DOUBLE_AS_INT_P (X))
653 #endif
655 /* Predicate yielding true iff X is an rtx for a double-int. */
656 #define CONST_DOUBLE_AS_FLOAT_P(X) \
657 (GET_CODE (X) == CONST_DOUBLE && GET_MODE (X) != VOIDmode)
659 /* Predicate yielding nonzero iff X is a label insn. */
660 #define LABEL_P(X) (GET_CODE (X) == CODE_LABEL)
662 /* Predicate yielding nonzero iff X is a jump insn. */
663 #define JUMP_P(X) (GET_CODE (X) == JUMP_INSN)
665 /* Predicate yielding nonzero iff X is a call insn. */
666 #define CALL_P(X) (GET_CODE (X) == CALL_INSN)
668 /* Predicate yielding nonzero iff X is an insn that cannot jump. */
669 #define NONJUMP_INSN_P(X) (GET_CODE (X) == INSN)
671 /* Predicate yielding nonzero iff X is a debug note/insn. */
672 #define DEBUG_INSN_P(X) (GET_CODE (X) == DEBUG_INSN)
674 /* Predicate yielding nonzero iff X is an insn that is not a debug insn. */
675 #define NONDEBUG_INSN_P(X) (INSN_P (X) && !DEBUG_INSN_P (X))
677 /* Nonzero if DEBUG_INSN_P may possibly hold. */
678 #define MAY_HAVE_DEBUG_INSNS (flag_var_tracking_assignments)
680 /* Predicate yielding nonzero iff X is a real insn. */
681 #define INSN_P(X) \
682 (NONJUMP_INSN_P (X) || DEBUG_INSN_P (X) || JUMP_P (X) || CALL_P (X))
684 /* Predicate yielding nonzero iff X is a note insn. */
685 #define NOTE_P(X) (GET_CODE (X) == NOTE)
687 /* Predicate yielding nonzero iff X is a barrier insn. */
688 #define BARRIER_P(X) (GET_CODE (X) == BARRIER)
690 /* Predicate yielding nonzero iff X is a data for a jump table. */
691 #define JUMP_TABLE_DATA_P(INSN) (GET_CODE (INSN) == JUMP_TABLE_DATA)
693 template <>
694 template <>
695 inline bool
696 is_a_helper <rtx_insn *>::test (rtx rt)
698 return (INSN_P (rt)
699 || NOTE_P (rt)
700 || JUMP_TABLE_DATA_P (rt)
701 || BARRIER_P (rt)
702 || LABEL_P (rt));
705 template <>
706 template <>
707 inline bool
708 is_a_helper <const rtx_insn *>::test (const_rtx rt)
710 return (INSN_P (rt)
711 || NOTE_P (rt)
712 || JUMP_TABLE_DATA_P (rt)
713 || BARRIER_P (rt)
714 || LABEL_P (rt));
717 template <>
718 template <>
719 inline bool
720 is_a_helper <rtx_debug_insn *>::test (rtx rt)
722 return DEBUG_INSN_P (rt);
725 template <>
726 template <>
727 inline bool
728 is_a_helper <rtx_nonjump_insn *>::test (rtx rt)
730 return NONJUMP_INSN_P (rt);
733 template <>
734 template <>
735 inline bool
736 is_a_helper <rtx_jump_insn *>::test (rtx rt)
738 return JUMP_P (rt);
741 template <>
742 template <>
743 inline bool
744 is_a_helper <rtx_call_insn *>::test (rtx rt)
746 return CALL_P (rt);
749 template <>
750 template <>
751 inline bool
752 is_a_helper <rtx_call_insn *>::test (rtx_insn *insn)
754 return CALL_P (insn);
757 template <>
758 template <>
759 inline bool
760 is_a_helper <rtx_jump_table_data *>::test (rtx rt)
762 return JUMP_TABLE_DATA_P (rt);
765 template <>
766 template <>
767 inline bool
768 is_a_helper <rtx_jump_table_data *>::test (rtx_insn *insn)
770 return JUMP_TABLE_DATA_P (insn);
773 template <>
774 template <>
775 inline bool
776 is_a_helper <rtx_barrier *>::test (rtx rt)
778 return BARRIER_P (rt);
781 template <>
782 template <>
783 inline bool
784 is_a_helper <rtx_code_label *>::test (rtx rt)
786 return LABEL_P (rt);
789 template <>
790 template <>
791 inline bool
792 is_a_helper <rtx_code_label *>::test (rtx_insn *insn)
794 return LABEL_P (insn);
797 template <>
798 template <>
799 inline bool
800 is_a_helper <rtx_note *>::test (rtx rt)
802 return NOTE_P (rt);
805 template <>
806 template <>
807 inline bool
808 is_a_helper <rtx_note *>::test (rtx_insn *insn)
810 return NOTE_P (insn);
813 /* Predicate yielding nonzero iff X is a return or simple_return. */
814 #define ANY_RETURN_P(X) \
815 (GET_CODE (X) == RETURN || GET_CODE (X) == SIMPLE_RETURN)
817 /* 1 if X is a unary operator. */
819 #define UNARY_P(X) \
820 (GET_RTX_CLASS (GET_CODE (X)) == RTX_UNARY)
822 /* 1 if X is a binary operator. */
824 #define BINARY_P(X) \
825 ((GET_RTX_CLASS (GET_CODE (X)) & RTX_BINARY_MASK) == RTX_BINARY_RESULT)
827 /* 1 if X is an arithmetic operator. */
829 #define ARITHMETIC_P(X) \
830 ((GET_RTX_CLASS (GET_CODE (X)) & RTX_ARITHMETIC_MASK) \
831 == RTX_ARITHMETIC_RESULT)
833 /* 1 if X is an arithmetic operator. */
835 #define COMMUTATIVE_ARITH_P(X) \
836 (GET_RTX_CLASS (GET_CODE (X)) == RTX_COMM_ARITH)
838 /* 1 if X is a commutative arithmetic operator or a comparison operator.
839 These two are sometimes selected together because it is possible to
840 swap the two operands. */
842 #define SWAPPABLE_OPERANDS_P(X) \
843 ((1 << GET_RTX_CLASS (GET_CODE (X))) \
844 & ((1 << RTX_COMM_ARITH) | (1 << RTX_COMM_COMPARE) \
845 | (1 << RTX_COMPARE)))
847 /* 1 if X is a non-commutative operator. */
849 #define NON_COMMUTATIVE_P(X) \
850 ((GET_RTX_CLASS (GET_CODE (X)) & RTX_COMMUTATIVE_MASK) \
851 == RTX_NON_COMMUTATIVE_RESULT)
853 /* 1 if X is a commutative operator on integers. */
855 #define COMMUTATIVE_P(X) \
856 ((GET_RTX_CLASS (GET_CODE (X)) & RTX_COMMUTATIVE_MASK) \
857 == RTX_COMMUTATIVE_RESULT)
859 /* 1 if X is a relational operator. */
861 #define COMPARISON_P(X) \
862 ((GET_RTX_CLASS (GET_CODE (X)) & RTX_COMPARE_MASK) == RTX_COMPARE_RESULT)
864 /* 1 if X is a constant value that is an integer. */
866 #define CONSTANT_P(X) \
867 (GET_RTX_CLASS (GET_CODE (X)) == RTX_CONST_OBJ)
869 /* 1 if X can be used to represent an object. */
870 #define OBJECT_P(X) \
871 ((GET_RTX_CLASS (GET_CODE (X)) & RTX_OBJ_MASK) == RTX_OBJ_RESULT)
873 /* General accessor macros for accessing the fields of an rtx. */
875 #if defined ENABLE_RTL_CHECKING && (GCC_VERSION >= 2007)
876 /* The bit with a star outside the statement expr and an & inside is
877 so that N can be evaluated only once. */
878 #define RTL_CHECK1(RTX, N, C1) __extension__ \
879 (*({ __typeof (RTX) const _rtx = (RTX); const int _n = (N); \
880 const enum rtx_code _code = GET_CODE (_rtx); \
881 if (_n < 0 || _n >= GET_RTX_LENGTH (_code)) \
882 rtl_check_failed_bounds (_rtx, _n, __FILE__, __LINE__, \
883 __FUNCTION__); \
884 if (GET_RTX_FORMAT (_code)[_n] != C1) \
885 rtl_check_failed_type1 (_rtx, _n, C1, __FILE__, __LINE__, \
886 __FUNCTION__); \
887 &_rtx->u.fld[_n]; }))
889 #define RTL_CHECK2(RTX, N, C1, C2) __extension__ \
890 (*({ __typeof (RTX) const _rtx = (RTX); const int _n = (N); \
891 const enum rtx_code _code = GET_CODE (_rtx); \
892 if (_n < 0 || _n >= GET_RTX_LENGTH (_code)) \
893 rtl_check_failed_bounds (_rtx, _n, __FILE__, __LINE__, \
894 __FUNCTION__); \
895 if (GET_RTX_FORMAT (_code)[_n] != C1 \
896 && GET_RTX_FORMAT (_code)[_n] != C2) \
897 rtl_check_failed_type2 (_rtx, _n, C1, C2, __FILE__, __LINE__, \
898 __FUNCTION__); \
899 &_rtx->u.fld[_n]; }))
901 #define RTL_CHECKC1(RTX, N, C) __extension__ \
902 (*({ __typeof (RTX) const _rtx = (RTX); const int _n = (N); \
903 if (GET_CODE (_rtx) != (C)) \
904 rtl_check_failed_code1 (_rtx, (C), __FILE__, __LINE__, \
905 __FUNCTION__); \
906 &_rtx->u.fld[_n]; }))
908 #define RTL_CHECKC2(RTX, N, C1, C2) __extension__ \
909 (*({ __typeof (RTX) const _rtx = (RTX); const int _n = (N); \
910 const enum rtx_code _code = GET_CODE (_rtx); \
911 if (_code != (C1) && _code != (C2)) \
912 rtl_check_failed_code2 (_rtx, (C1), (C2), __FILE__, __LINE__, \
913 __FUNCTION__); \
914 &_rtx->u.fld[_n]; }))
916 #define RTVEC_ELT(RTVEC, I) __extension__ \
917 (*({ __typeof (RTVEC) const _rtvec = (RTVEC); const int _i = (I); \
918 if (_i < 0 || _i >= GET_NUM_ELEM (_rtvec)) \
919 rtvec_check_failed_bounds (_rtvec, _i, __FILE__, __LINE__, \
920 __FUNCTION__); \
921 &_rtvec->elem[_i]; }))
923 #define XWINT(RTX, N) __extension__ \
924 (*({ __typeof (RTX) const _rtx = (RTX); const int _n = (N); \
925 const enum rtx_code _code = GET_CODE (_rtx); \
926 if (_n < 0 || _n >= GET_RTX_LENGTH (_code)) \
927 rtl_check_failed_bounds (_rtx, _n, __FILE__, __LINE__, \
928 __FUNCTION__); \
929 if (GET_RTX_FORMAT (_code)[_n] != 'w') \
930 rtl_check_failed_type1 (_rtx, _n, 'w', __FILE__, __LINE__, \
931 __FUNCTION__); \
932 &_rtx->u.hwint[_n]; }))
934 #define CWI_ELT(RTX, I) __extension__ \
935 (*({ __typeof (RTX) const _cwi = (RTX); \
936 int _max = CWI_GET_NUM_ELEM (_cwi); \
937 const int _i = (I); \
938 if (_i < 0 || _i >= _max) \
939 cwi_check_failed_bounds (_cwi, _i, __FILE__, __LINE__, \
940 __FUNCTION__); \
941 &_cwi->u.hwiv.elem[_i]; }))
943 #define XCWINT(RTX, N, C) __extension__ \
944 (*({ __typeof (RTX) const _rtx = (RTX); \
945 if (GET_CODE (_rtx) != (C)) \
946 rtl_check_failed_code1 (_rtx, (C), __FILE__, __LINE__, \
947 __FUNCTION__); \
948 &_rtx->u.hwint[N]; }))
950 #define XCMWINT(RTX, N, C, M) __extension__ \
951 (*({ __typeof (RTX) const _rtx = (RTX); \
952 if (GET_CODE (_rtx) != (C) || GET_MODE (_rtx) != (M)) \
953 rtl_check_failed_code_mode (_rtx, (C), (M), false, __FILE__, \
954 __LINE__, __FUNCTION__); \
955 &_rtx->u.hwint[N]; }))
957 #define XCNMPRV(RTX, C, M) __extension__ \
958 ({ __typeof (RTX) const _rtx = (RTX); \
959 if (GET_CODE (_rtx) != (C) || GET_MODE (_rtx) == (M)) \
960 rtl_check_failed_code_mode (_rtx, (C), (M), true, __FILE__, \
961 __LINE__, __FUNCTION__); \
962 &_rtx->u.rv; })
964 #define XCNMPFV(RTX, C, M) __extension__ \
965 ({ __typeof (RTX) const _rtx = (RTX); \
966 if (GET_CODE (_rtx) != (C) || GET_MODE (_rtx) == (M)) \
967 rtl_check_failed_code_mode (_rtx, (C), (M), true, __FILE__, \
968 __LINE__, __FUNCTION__); \
969 &_rtx->u.fv; })
971 #define BLOCK_SYMBOL_CHECK(RTX) __extension__ \
972 ({ __typeof (RTX) const _symbol = (RTX); \
973 const unsigned int flags = SYMBOL_REF_FLAGS (_symbol); \
974 if ((flags & SYMBOL_FLAG_HAS_BLOCK_INFO) == 0) \
975 rtl_check_failed_block_symbol (__FILE__, __LINE__, \
976 __FUNCTION__); \
977 &_symbol->u.block_sym; })
979 #define HWIVEC_CHECK(RTX,C) __extension__ \
980 ({ __typeof (RTX) const _symbol = (RTX); \
981 RTL_CHECKC1 (_symbol, 0, C); \
982 &_symbol->u.hwiv; })
984 extern void rtl_check_failed_bounds (const_rtx, int, const char *, int,
985 const char *)
986 ATTRIBUTE_NORETURN;
987 extern void rtl_check_failed_type1 (const_rtx, int, int, const char *, int,
988 const char *)
989 ATTRIBUTE_NORETURN;
990 extern void rtl_check_failed_type2 (const_rtx, int, int, int, const char *,
991 int, const char *)
992 ATTRIBUTE_NORETURN;
993 extern void rtl_check_failed_code1 (const_rtx, enum rtx_code, const char *,
994 int, const char *)
995 ATTRIBUTE_NORETURN;
996 extern void rtl_check_failed_code2 (const_rtx, enum rtx_code, enum rtx_code,
997 const char *, int, const char *)
998 ATTRIBUTE_NORETURN;
999 extern void rtl_check_failed_code_mode (const_rtx, enum rtx_code, enum machine_mode,
1000 bool, const char *, int, const char *)
1001 ATTRIBUTE_NORETURN;
1002 extern void rtl_check_failed_block_symbol (const char *, int, const char *)
1003 ATTRIBUTE_NORETURN;
1004 extern void cwi_check_failed_bounds (const_rtx, int, const char *, int,
1005 const char *)
1006 ATTRIBUTE_NORETURN;
1007 extern void rtvec_check_failed_bounds (const_rtvec, int, const char *, int,
1008 const char *)
1009 ATTRIBUTE_NORETURN;
1011 #else /* not ENABLE_RTL_CHECKING */
1013 #define RTL_CHECK1(RTX, N, C1) ((RTX)->u.fld[N])
1014 #define RTL_CHECK2(RTX, N, C1, C2) ((RTX)->u.fld[N])
1015 #define RTL_CHECKC1(RTX, N, C) ((RTX)->u.fld[N])
1016 #define RTL_CHECKC2(RTX, N, C1, C2) ((RTX)->u.fld[N])
1017 #define RTVEC_ELT(RTVEC, I) ((RTVEC)->elem[I])
1018 #define XWINT(RTX, N) ((RTX)->u.hwint[N])
1019 #define CWI_ELT(RTX, I) ((RTX)->u.hwiv.elem[I])
1020 #define XCWINT(RTX, N, C) ((RTX)->u.hwint[N])
1021 #define XCMWINT(RTX, N, C, M) ((RTX)->u.hwint[N])
1022 #define XCNMWINT(RTX, N, C, M) ((RTX)->u.hwint[N])
1023 #define XCNMPRV(RTX, C, M) (&(RTX)->u.rv)
1024 #define XCNMPFV(RTX, C, M) (&(RTX)->u.fv)
1025 #define BLOCK_SYMBOL_CHECK(RTX) (&(RTX)->u.block_sym)
1026 #define HWIVEC_CHECK(RTX,C) (&(RTX)->u.hwiv)
1028 #endif
1030 /* General accessor macros for accessing the flags of an rtx. */
1032 /* Access an individual rtx flag, with no checking of any kind. */
1033 #define RTX_FLAG(RTX, FLAG) ((RTX)->FLAG)
1035 #if defined ENABLE_RTL_FLAG_CHECKING && (GCC_VERSION >= 2007)
1036 #define RTL_FLAG_CHECK1(NAME, RTX, C1) __extension__ \
1037 ({ __typeof (RTX) const _rtx = (RTX); \
1038 if (GET_CODE (_rtx) != C1) \
1039 rtl_check_failed_flag (NAME, _rtx, __FILE__, __LINE__, \
1040 __FUNCTION__); \
1041 _rtx; })
1043 #define RTL_FLAG_CHECK2(NAME, RTX, C1, C2) __extension__ \
1044 ({ __typeof (RTX) const _rtx = (RTX); \
1045 if (GET_CODE (_rtx) != C1 && GET_CODE(_rtx) != C2) \
1046 rtl_check_failed_flag (NAME,_rtx, __FILE__, __LINE__, \
1047 __FUNCTION__); \
1048 _rtx; })
1050 #define RTL_FLAG_CHECK3(NAME, RTX, C1, C2, C3) __extension__ \
1051 ({ __typeof (RTX) const _rtx = (RTX); \
1052 if (GET_CODE (_rtx) != C1 && GET_CODE(_rtx) != C2 \
1053 && GET_CODE (_rtx) != C3) \
1054 rtl_check_failed_flag (NAME, _rtx, __FILE__, __LINE__, \
1055 __FUNCTION__); \
1056 _rtx; })
1058 #define RTL_FLAG_CHECK4(NAME, RTX, C1, C2, C3, C4) __extension__ \
1059 ({ __typeof (RTX) const _rtx = (RTX); \
1060 if (GET_CODE (_rtx) != C1 && GET_CODE(_rtx) != C2 \
1061 && GET_CODE (_rtx) != C3 && GET_CODE(_rtx) != C4) \
1062 rtl_check_failed_flag (NAME, _rtx, __FILE__, __LINE__, \
1063 __FUNCTION__); \
1064 _rtx; })
1066 #define RTL_FLAG_CHECK5(NAME, RTX, C1, C2, C3, C4, C5) __extension__ \
1067 ({ __typeof (RTX) const _rtx = (RTX); \
1068 if (GET_CODE (_rtx) != C1 && GET_CODE (_rtx) != C2 \
1069 && GET_CODE (_rtx) != C3 && GET_CODE (_rtx) != C4 \
1070 && GET_CODE (_rtx) != C5) \
1071 rtl_check_failed_flag (NAME, _rtx, __FILE__, __LINE__, \
1072 __FUNCTION__); \
1073 _rtx; })
1075 #define RTL_FLAG_CHECK6(NAME, RTX, C1, C2, C3, C4, C5, C6) \
1076 __extension__ \
1077 ({ __typeof (RTX) const _rtx = (RTX); \
1078 if (GET_CODE (_rtx) != C1 && GET_CODE (_rtx) != C2 \
1079 && GET_CODE (_rtx) != C3 && GET_CODE (_rtx) != C4 \
1080 && GET_CODE (_rtx) != C5 && GET_CODE (_rtx) != C6) \
1081 rtl_check_failed_flag (NAME,_rtx, __FILE__, __LINE__, \
1082 __FUNCTION__); \
1083 _rtx; })
1085 #define RTL_FLAG_CHECK7(NAME, RTX, C1, C2, C3, C4, C5, C6, C7) \
1086 __extension__ \
1087 ({ __typeof (RTX) const _rtx = (RTX); \
1088 if (GET_CODE (_rtx) != C1 && GET_CODE (_rtx) != C2 \
1089 && GET_CODE (_rtx) != C3 && GET_CODE (_rtx) != C4 \
1090 && GET_CODE (_rtx) != C5 && GET_CODE (_rtx) != C6 \
1091 && GET_CODE (_rtx) != C7) \
1092 rtl_check_failed_flag (NAME, _rtx, __FILE__, __LINE__, \
1093 __FUNCTION__); \
1094 _rtx; })
1096 #define RTL_INSN_CHAIN_FLAG_CHECK(NAME, RTX) \
1097 __extension__ \
1098 ({ __typeof (RTX) const _rtx = (RTX); \
1099 if (!INSN_CHAIN_CODE_P (GET_CODE (_rtx))) \
1100 rtl_check_failed_flag (NAME, _rtx, __FILE__, __LINE__, \
1101 __FUNCTION__); \
1102 _rtx; })
1104 extern void rtl_check_failed_flag (const char *, const_rtx, const char *,
1105 int, const char *)
1106 ATTRIBUTE_NORETURN
1109 #else /* not ENABLE_RTL_FLAG_CHECKING */
1111 #define RTL_FLAG_CHECK1(NAME, RTX, C1) (RTX)
1112 #define RTL_FLAG_CHECK2(NAME, RTX, C1, C2) (RTX)
1113 #define RTL_FLAG_CHECK3(NAME, RTX, C1, C2, C3) (RTX)
1114 #define RTL_FLAG_CHECK4(NAME, RTX, C1, C2, C3, C4) (RTX)
1115 #define RTL_FLAG_CHECK5(NAME, RTX, C1, C2, C3, C4, C5) (RTX)
1116 #define RTL_FLAG_CHECK6(NAME, RTX, C1, C2, C3, C4, C5, C6) (RTX)
1117 #define RTL_FLAG_CHECK7(NAME, RTX, C1, C2, C3, C4, C5, C6, C7) (RTX)
1118 #define RTL_INSN_CHAIN_FLAG_CHECK(NAME, RTX) (RTX)
1119 #endif
1121 #define XINT(RTX, N) (RTL_CHECK2 (RTX, N, 'i', 'n').rt_int)
1122 #define XUINT(RTX, N) (RTL_CHECK2 (RTX, N, 'i', 'n').rt_uint)
1123 #define XSTR(RTX, N) (RTL_CHECK2 (RTX, N, 's', 'S').rt_str)
1124 #define XEXP(RTX, N) (RTL_CHECK2 (RTX, N, 'e', 'u').rt_rtx)
1125 #define XVEC(RTX, N) (RTL_CHECK2 (RTX, N, 'E', 'V').rt_rtvec)
1126 #define XMODE(RTX, N) (RTL_CHECK1 (RTX, N, 'M').rt_type)
1127 #define XTREE(RTX, N) (RTL_CHECK1 (RTX, N, 't').rt_tree)
1128 #define XBBDEF(RTX, N) (RTL_CHECK1 (RTX, N, 'B').rt_bb)
1129 #define XTMPL(RTX, N) (RTL_CHECK1 (RTX, N, 'T').rt_str)
1130 #define XCFI(RTX, N) (RTL_CHECK1 (RTX, N, 'C').rt_cfi)
1132 #define XVECEXP(RTX, N, M) RTVEC_ELT (XVEC (RTX, N), M)
1133 #define XVECLEN(RTX, N) GET_NUM_ELEM (XVEC (RTX, N))
1135 /* These are like XINT, etc. except that they expect a '0' field instead
1136 of the normal type code. */
1138 #define X0INT(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_int)
1139 #define X0UINT(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_uint)
1140 #define X0STR(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_str)
1141 #define X0EXP(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_rtx)
1142 #define X0VEC(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_rtvec)
1143 #define X0MODE(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_type)
1144 #define X0TREE(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_tree)
1145 #define X0BBDEF(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_bb)
1146 #define X0ADVFLAGS(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_addr_diff_vec_flags)
1147 #define X0CSELIB(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_cselib)
1148 #define X0MEMATTR(RTX, N) (RTL_CHECKC1 (RTX, N, MEM).rt_mem)
1149 #define X0REGATTR(RTX, N) (RTL_CHECKC1 (RTX, N, REG).rt_reg)
1150 #define X0CONSTANT(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_constant)
1152 /* Access a '0' field with any type. */
1153 #define X0ANY(RTX, N) RTL_CHECK1 (RTX, N, '0')
1155 #define XCINT(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_int)
1156 #define XCUINT(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_uint)
1157 #define XCSTR(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_str)
1158 #define XCEXP(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_rtx)
1159 #define XCVEC(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_rtvec)
1160 #define XCMODE(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_type)
1161 #define XCTREE(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_tree)
1162 #define XCBBDEF(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_bb)
1163 #define XCCFI(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_cfi)
1164 #define XCCSELIB(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_cselib)
1166 #define XCVECEXP(RTX, N, M, C) RTVEC_ELT (XCVEC (RTX, N, C), M)
1167 #define XCVECLEN(RTX, N, C) GET_NUM_ELEM (XCVEC (RTX, N, C))
1169 #define XC2EXP(RTX, N, C1, C2) (RTL_CHECKC2 (RTX, N, C1, C2).rt_rtx)
1171 /* ACCESS MACROS for particular fields of insns. */
1173 /* Holds a unique number for each insn.
1174 These are not necessarily sequentially increasing. */
1175 #define INSN_UID(INSN) \
1176 (RTL_INSN_CHAIN_FLAG_CHECK ("INSN_UID", (INSN))->u2.insn_uid)
1178 /* Chain insns together in sequence. */
1180 /* For now these are split in two: an rvalue form:
1181 PREV_INSN/NEXT_INSN
1182 and an lvalue form:
1183 SET_NEXT_INSN/SET_PREV_INSN. */
1185 inline rtx_insn *PREV_INSN (const_rtx insn)
1187 rtx prev = XEXP (insn, 0);
1188 return safe_as_a <rtx_insn *> (prev);
1191 inline rtx& SET_PREV_INSN (rtx insn)
1193 return XEXP (insn, 0);
1196 inline rtx_insn *NEXT_INSN (const_rtx insn)
1198 rtx next = XEXP (insn, 1);
1199 return safe_as_a <rtx_insn *> (next);
1202 inline rtx& SET_NEXT_INSN (rtx insn)
1204 return XEXP (insn, 1);
1207 #define BLOCK_FOR_INSN(INSN) XBBDEF (INSN, 2)
1209 /* The body of an insn. */
1210 inline rtx PATTERN (const_rtx insn)
1212 return XEXP (insn, 3);
1215 inline rtx& PATTERN (rtx insn)
1217 return XEXP (insn, 3);
1220 #define INSN_LOCATION(INSN) XUINT (INSN, 4)
1222 #define INSN_HAS_LOCATION(INSN) ((LOCATION_LOCUS (INSN_LOCATION (INSN)))\
1223 != UNKNOWN_LOCATION)
1225 /* LOCATION of an RTX if relevant. */
1226 #define RTL_LOCATION(X) (INSN_P (X) ? \
1227 INSN_LOCATION (X) : UNKNOWN_LOCATION)
1229 /* Code number of instruction, from when it was recognized.
1230 -1 means this instruction has not been recognized yet. */
1231 #define INSN_CODE(INSN) XINT (INSN, 5)
1233 inline rtvec rtx_jump_table_data::get_labels () const
1235 rtx pat = PATTERN (this);
1236 if (GET_CODE (pat) == ADDR_VEC)
1237 return XVEC (pat, 0);
1238 else
1239 return XVEC (pat, 1); /* presumably an ADDR_DIFF_VEC */
1242 #define RTX_FRAME_RELATED_P(RTX) \
1243 (RTL_FLAG_CHECK6 ("RTX_FRAME_RELATED_P", (RTX), DEBUG_INSN, INSN, \
1244 CALL_INSN, JUMP_INSN, BARRIER, SET)->frame_related)
1246 /* 1 if RTX is an insn that has been deleted. */
1247 #define INSN_DELETED_P(RTX) \
1248 (RTL_INSN_CHAIN_FLAG_CHECK ("INSN_DELETED_P", (RTX))->volatil)
1250 /* 1 if JUMP RTX is a crossing jump. */
1251 #define CROSSING_JUMP_P(RTX) \
1252 (RTL_FLAG_CHECK1 ("CROSSING_JUMP_P", (RTX), JUMP_INSN)->jump)
1254 /* 1 if RTX is a call to a const function. Built from ECF_CONST and
1255 TREE_READONLY. */
1256 #define RTL_CONST_CALL_P(RTX) \
1257 (RTL_FLAG_CHECK1 ("RTL_CONST_CALL_P", (RTX), CALL_INSN)->unchanging)
1259 /* 1 if RTX is a call to a pure function. Built from ECF_PURE and
1260 DECL_PURE_P. */
1261 #define RTL_PURE_CALL_P(RTX) \
1262 (RTL_FLAG_CHECK1 ("RTL_PURE_CALL_P", (RTX), CALL_INSN)->return_val)
1264 /* 1 if RTX is a call to a const or pure function. */
1265 #define RTL_CONST_OR_PURE_CALL_P(RTX) \
1266 (RTL_CONST_CALL_P (RTX) || RTL_PURE_CALL_P (RTX))
1268 /* 1 if RTX is a call to a looping const or pure function. Built from
1269 ECF_LOOPING_CONST_OR_PURE and DECL_LOOPING_CONST_OR_PURE_P. */
1270 #define RTL_LOOPING_CONST_OR_PURE_CALL_P(RTX) \
1271 (RTL_FLAG_CHECK1 ("CONST_OR_PURE_CALL_P", (RTX), CALL_INSN)->call)
1273 /* 1 if RTX is a call_insn for a sibling call. */
1274 #define SIBLING_CALL_P(RTX) \
1275 (RTL_FLAG_CHECK1 ("SIBLING_CALL_P", (RTX), CALL_INSN)->jump)
1277 /* 1 if RTX is a jump_insn, call_insn, or insn that is an annulling branch. */
1278 #define INSN_ANNULLED_BRANCH_P(RTX) \
1279 (RTL_FLAG_CHECK1 ("INSN_ANNULLED_BRANCH_P", (RTX), JUMP_INSN)->unchanging)
1281 /* 1 if RTX is an insn in a delay slot and is from the target of the branch.
1282 If the branch insn has INSN_ANNULLED_BRANCH_P set, this insn should only be
1283 executed if the branch is taken. For annulled branches with this bit
1284 clear, the insn should be executed only if the branch is not taken. */
1285 #define INSN_FROM_TARGET_P(RTX) \
1286 (RTL_FLAG_CHECK3 ("INSN_FROM_TARGET_P", (RTX), INSN, JUMP_INSN, \
1287 CALL_INSN)->in_struct)
1289 /* In an ADDR_DIFF_VEC, the flags for RTX for use by branch shortening.
1290 See the comments for ADDR_DIFF_VEC in rtl.def. */
1291 #define ADDR_DIFF_VEC_FLAGS(RTX) X0ADVFLAGS (RTX, 4)
1293 /* In a VALUE, the value cselib has assigned to RTX.
1294 This is a "struct cselib_val", see cselib.h. */
1295 #define CSELIB_VAL_PTR(RTX) X0CSELIB (RTX, 0)
1297 /* Holds a list of notes on what this insn does to various REGs.
1298 It is a chain of EXPR_LIST rtx's, where the second operand is the
1299 chain pointer and the first operand is the REG being described.
1300 The mode field of the EXPR_LIST contains not a real machine mode
1301 but a value from enum reg_note. */
1302 #define REG_NOTES(INSN) XEXP(INSN, 6)
1304 /* In an ENTRY_VALUE this is the DECL_INCOMING_RTL of the argument in
1305 question. */
1306 #define ENTRY_VALUE_EXP(RTX) (RTL_CHECKC1 (RTX, 0, ENTRY_VALUE).rt_rtx)
1308 enum reg_note
1310 #define DEF_REG_NOTE(NAME) NAME,
1311 #include "reg-notes.def"
1312 #undef DEF_REG_NOTE
1313 REG_NOTE_MAX
1316 /* Define macros to extract and insert the reg-note kind in an EXPR_LIST. */
1317 #define REG_NOTE_KIND(LINK) ((enum reg_note) GET_MODE (LINK))
1318 #define PUT_REG_NOTE_KIND(LINK, KIND) \
1319 PUT_MODE (LINK, (enum machine_mode) (KIND))
1321 /* Names for REG_NOTE's in EXPR_LIST insn's. */
1323 extern const char * const reg_note_name[];
1324 #define GET_REG_NOTE_NAME(MODE) (reg_note_name[(int) (MODE)])
1326 /* This field is only present on CALL_INSNs. It holds a chain of EXPR_LIST of
1327 USE and CLOBBER expressions.
1328 USE expressions list the registers filled with arguments that
1329 are passed to the function.
1330 CLOBBER expressions document the registers explicitly clobbered
1331 by this CALL_INSN.
1332 Pseudo registers can not be mentioned in this list. */
1333 #define CALL_INSN_FUNCTION_USAGE(INSN) XEXP(INSN, 7)
1335 /* The label-number of a code-label. The assembler label
1336 is made from `L' and the label-number printed in decimal.
1337 Label numbers are unique in a compilation. */
1338 #define CODE_LABEL_NUMBER(INSN) XINT (INSN, 5)
1340 /* In a NOTE that is a line number, this is a string for the file name that the
1341 line is in. We use the same field to record block numbers temporarily in
1342 NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes. (We avoid lots of casts
1343 between ints and pointers if we use a different macro for the block number.)
1346 /* Opaque data. */
1347 #define NOTE_DATA(INSN) RTL_CHECKC1 (INSN, 3, NOTE)
1348 #define NOTE_DELETED_LABEL_NAME(INSN) XCSTR (INSN, 3, NOTE)
1349 #define SET_INSN_DELETED(INSN) set_insn_deleted (INSN);
1350 #define NOTE_BLOCK(INSN) XCTREE (INSN, 3, NOTE)
1351 #define NOTE_EH_HANDLER(INSN) XCINT (INSN, 3, NOTE)
1352 #define NOTE_BASIC_BLOCK(INSN) XCBBDEF (INSN, 3, NOTE)
1353 #define NOTE_VAR_LOCATION(INSN) XCEXP (INSN, 3, NOTE)
1354 #define NOTE_CFI(INSN) XCCFI (INSN, 3, NOTE)
1355 #define NOTE_LABEL_NUMBER(INSN) XCINT (INSN, 3, NOTE)
1357 /* In a NOTE that is a line number, this is the line number.
1358 Other kinds of NOTEs are identified by negative numbers here. */
1359 #define NOTE_KIND(INSN) XCINT (INSN, 4, NOTE)
1361 /* Nonzero if INSN is a note marking the beginning of a basic block. */
1362 #define NOTE_INSN_BASIC_BLOCK_P(INSN) \
1363 (NOTE_P (INSN) && NOTE_KIND (INSN) == NOTE_INSN_BASIC_BLOCK)
1365 /* Variable declaration and the location of a variable. */
1366 #define PAT_VAR_LOCATION_DECL(PAT) (XCTREE ((PAT), 0, VAR_LOCATION))
1367 #define PAT_VAR_LOCATION_LOC(PAT) (XCEXP ((PAT), 1, VAR_LOCATION))
1369 /* Initialization status of the variable in the location. Status
1370 can be unknown, uninitialized or initialized. See enumeration
1371 type below. */
1372 #define PAT_VAR_LOCATION_STATUS(PAT) \
1373 (RTL_FLAG_CHECK1 ("PAT_VAR_LOCATION_STATUS", PAT, VAR_LOCATION) \
1374 ->u2.var_location_status)
1376 /* Accessors for a NOTE_INSN_VAR_LOCATION. */
1377 #define NOTE_VAR_LOCATION_DECL(NOTE) \
1378 PAT_VAR_LOCATION_DECL (NOTE_VAR_LOCATION (NOTE))
1379 #define NOTE_VAR_LOCATION_LOC(NOTE) \
1380 PAT_VAR_LOCATION_LOC (NOTE_VAR_LOCATION (NOTE))
1381 #define NOTE_VAR_LOCATION_STATUS(NOTE) \
1382 PAT_VAR_LOCATION_STATUS (NOTE_VAR_LOCATION (NOTE))
1384 /* The VAR_LOCATION rtx in a DEBUG_INSN. */
1385 #define INSN_VAR_LOCATION(INSN) PATTERN (INSN)
1387 /* Accessors for a tree-expanded var location debug insn. */
1388 #define INSN_VAR_LOCATION_DECL(INSN) \
1389 PAT_VAR_LOCATION_DECL (INSN_VAR_LOCATION (INSN))
1390 #define INSN_VAR_LOCATION_LOC(INSN) \
1391 PAT_VAR_LOCATION_LOC (INSN_VAR_LOCATION (INSN))
1392 #define INSN_VAR_LOCATION_STATUS(INSN) \
1393 PAT_VAR_LOCATION_STATUS (INSN_VAR_LOCATION (INSN))
1395 /* Expand to the RTL that denotes an unknown variable location in a
1396 DEBUG_INSN. */
1397 #define gen_rtx_UNKNOWN_VAR_LOC() (gen_rtx_CLOBBER (VOIDmode, const0_rtx))
1399 /* Determine whether X is such an unknown location. */
1400 #define VAR_LOC_UNKNOWN_P(X) \
1401 (GET_CODE (X) == CLOBBER && XEXP ((X), 0) == const0_rtx)
1403 /* 1 if RTX is emitted after a call, but it should take effect before
1404 the call returns. */
1405 #define NOTE_DURING_CALL_P(RTX) \
1406 (RTL_FLAG_CHECK1 ("NOTE_VAR_LOCATION_DURING_CALL_P", (RTX), NOTE)->call)
1408 /* DEBUG_EXPR_DECL corresponding to a DEBUG_EXPR RTX. */
1409 #define DEBUG_EXPR_TREE_DECL(RTX) XCTREE (RTX, 0, DEBUG_EXPR)
1411 /* VAR_DECL/PARM_DECL DEBUG_IMPLICIT_PTR takes address of. */
1412 #define DEBUG_IMPLICIT_PTR_DECL(RTX) XCTREE (RTX, 0, DEBUG_IMPLICIT_PTR)
1414 /* PARM_DECL DEBUG_PARAMETER_REF references. */
1415 #define DEBUG_PARAMETER_REF_DECL(RTX) XCTREE (RTX, 0, DEBUG_PARAMETER_REF)
1417 /* Codes that appear in the NOTE_KIND field for kinds of notes
1418 that are not line numbers. These codes are all negative.
1420 Notice that we do not try to use zero here for any of
1421 the special note codes because sometimes the source line
1422 actually can be zero! This happens (for example) when we
1423 are generating code for the per-translation-unit constructor
1424 and destructor routines for some C++ translation unit. */
1426 enum insn_note
1428 #define DEF_INSN_NOTE(NAME) NAME,
1429 #include "insn-notes.def"
1430 #undef DEF_INSN_NOTE
1432 NOTE_INSN_MAX
1435 /* Names for NOTE insn's other than line numbers. */
1437 extern const char * const note_insn_name[NOTE_INSN_MAX];
1438 #define GET_NOTE_INSN_NAME(NOTE_CODE) \
1439 (note_insn_name[(NOTE_CODE)])
1441 /* The name of a label, in case it corresponds to an explicit label
1442 in the input source code. */
1443 #define LABEL_NAME(RTX) XCSTR (RTX, 6, CODE_LABEL)
1445 /* In jump.c, each label contains a count of the number
1446 of LABEL_REFs that point at it, so unused labels can be deleted. */
1447 #define LABEL_NUSES(RTX) XCINT (RTX, 4, CODE_LABEL)
1449 /* Labels carry a two-bit field composed of the ->jump and ->call
1450 bits. This field indicates whether the label is an alternate
1451 entry point, and if so, what kind. */
1452 enum label_kind
1454 LABEL_NORMAL = 0, /* ordinary label */
1455 LABEL_STATIC_ENTRY, /* alternate entry point, not exported */
1456 LABEL_GLOBAL_ENTRY, /* alternate entry point, exported */
1457 LABEL_WEAK_ENTRY /* alternate entry point, exported as weak symbol */
1460 #if defined ENABLE_RTL_FLAG_CHECKING && (GCC_VERSION > 2007)
1462 /* Retrieve the kind of LABEL. */
1463 #define LABEL_KIND(LABEL) __extension__ \
1464 ({ __typeof (LABEL) const _label = (LABEL); \
1465 if (! LABEL_P (_label)) \
1466 rtl_check_failed_flag ("LABEL_KIND", _label, __FILE__, __LINE__, \
1467 __FUNCTION__); \
1468 (enum label_kind) ((_label->jump << 1) | _label->call); })
1470 /* Set the kind of LABEL. */
1471 #define SET_LABEL_KIND(LABEL, KIND) do { \
1472 __typeof (LABEL) const _label = (LABEL); \
1473 const unsigned int _kind = (KIND); \
1474 if (! LABEL_P (_label)) \
1475 rtl_check_failed_flag ("SET_LABEL_KIND", _label, __FILE__, __LINE__, \
1476 __FUNCTION__); \
1477 _label->jump = ((_kind >> 1) & 1); \
1478 _label->call = (_kind & 1); \
1479 } while (0)
1481 #else
1483 /* Retrieve the kind of LABEL. */
1484 #define LABEL_KIND(LABEL) \
1485 ((enum label_kind) (((LABEL)->jump << 1) | (LABEL)->call))
1487 /* Set the kind of LABEL. */
1488 #define SET_LABEL_KIND(LABEL, KIND) do { \
1489 rtx const _label = (LABEL); \
1490 const unsigned int _kind = (KIND); \
1491 _label->jump = ((_kind >> 1) & 1); \
1492 _label->call = (_kind & 1); \
1493 } while (0)
1495 #endif /* rtl flag checking */
1497 #define LABEL_ALT_ENTRY_P(LABEL) (LABEL_KIND (LABEL) != LABEL_NORMAL)
1499 /* In jump.c, each JUMP_INSN can point to a label that it can jump to,
1500 so that if the JUMP_INSN is deleted, the label's LABEL_NUSES can
1501 be decremented and possibly the label can be deleted. */
1502 #define JUMP_LABEL(INSN) XCEXP (INSN, 7, JUMP_INSN)
1504 /* Once basic blocks are found, each CODE_LABEL starts a chain that
1505 goes through all the LABEL_REFs that jump to that label. The chain
1506 eventually winds up at the CODE_LABEL: it is circular. */
1507 #define LABEL_REFS(LABEL) XCEXP (LABEL, 3, CODE_LABEL)
1509 /* For a REG rtx, REGNO extracts the register number. REGNO can only
1510 be used on RHS. Use SET_REGNO to change the value. */
1511 #define REGNO(RTX) (rhs_regno(RTX))
1512 #define SET_REGNO(RTX,N) \
1513 (df_ref_change_reg_with_loc (REGNO (RTX), N, RTX), XCUINT (RTX, 0, REG) = N)
1514 #define SET_REGNO_RAW(RTX,N) (XCUINT (RTX, 0, REG) = N)
1516 /* ORIGINAL_REGNO holds the number the register originally had; for a
1517 pseudo register turned into a hard reg this will hold the old pseudo
1518 register number. */
1519 #define ORIGINAL_REGNO(RTX) \
1520 (RTL_FLAG_CHECK1 ("ORIGINAL_REGNO", (RTX), REG)->u2.original_regno)
1522 /* Force the REGNO macro to only be used on the lhs. */
1523 static inline unsigned int
1524 rhs_regno (const_rtx x)
1526 return XCUINT (x, 0, REG);
1530 /* 1 if RTX is a reg or parallel that is the current function's return
1531 value. */
1532 #define REG_FUNCTION_VALUE_P(RTX) \
1533 (RTL_FLAG_CHECK2 ("REG_FUNCTION_VALUE_P", (RTX), REG, PARALLEL)->return_val)
1535 /* 1 if RTX is a reg that corresponds to a variable declared by the user. */
1536 #define REG_USERVAR_P(RTX) \
1537 (RTL_FLAG_CHECK1 ("REG_USERVAR_P", (RTX), REG)->volatil)
1539 /* 1 if RTX is a reg that holds a pointer value. */
1540 #define REG_POINTER(RTX) \
1541 (RTL_FLAG_CHECK1 ("REG_POINTER", (RTX), REG)->frame_related)
1543 /* 1 if RTX is a mem that holds a pointer value. */
1544 #define MEM_POINTER(RTX) \
1545 (RTL_FLAG_CHECK1 ("MEM_POINTER", (RTX), MEM)->frame_related)
1547 /* 1 if the given register REG corresponds to a hard register. */
1548 #define HARD_REGISTER_P(REG) (HARD_REGISTER_NUM_P (REGNO (REG)))
1550 /* 1 if the given register number REG_NO corresponds to a hard register. */
1551 #define HARD_REGISTER_NUM_P(REG_NO) ((REG_NO) < FIRST_PSEUDO_REGISTER)
1553 /* For a CONST_INT rtx, INTVAL extracts the integer. */
1554 #define INTVAL(RTX) XCWINT (RTX, 0, CONST_INT)
1555 #define UINTVAL(RTX) ((unsigned HOST_WIDE_INT) INTVAL (RTX))
1557 /* For a CONST_WIDE_INT, CONST_WIDE_INT_NUNITS is the number of
1558 elements actually needed to represent the constant.
1559 CONST_WIDE_INT_ELT gets one of the elements. 0 is the least
1560 significant HOST_WIDE_INT. */
1561 #define CONST_WIDE_INT_VEC(RTX) HWIVEC_CHECK (RTX, CONST_WIDE_INT)
1562 #define CONST_WIDE_INT_NUNITS(RTX) CWI_GET_NUM_ELEM (RTX)
1563 #define CONST_WIDE_INT_ELT(RTX, N) CWI_ELT (RTX, N)
1565 /* For a CONST_DOUBLE:
1566 #if TARGET_SUPPORTS_WIDE_INT == 0
1567 For a VOIDmode, there are two integers CONST_DOUBLE_LOW is the
1568 low-order word and ..._HIGH the high-order.
1569 #endif
1570 For a float, there is a REAL_VALUE_TYPE structure, and
1571 CONST_DOUBLE_REAL_VALUE(r) is a pointer to it. */
1572 #define CONST_DOUBLE_LOW(r) XCMWINT (r, 0, CONST_DOUBLE, VOIDmode)
1573 #define CONST_DOUBLE_HIGH(r) XCMWINT (r, 1, CONST_DOUBLE, VOIDmode)
1574 #define CONST_DOUBLE_REAL_VALUE(r) \
1575 ((const struct real_value *) XCNMPRV (r, CONST_DOUBLE, VOIDmode))
1577 #define CONST_FIXED_VALUE(r) \
1578 ((const struct fixed_value *) XCNMPFV (r, CONST_FIXED, VOIDmode))
1579 #define CONST_FIXED_VALUE_HIGH(r) \
1580 ((HOST_WIDE_INT) (CONST_FIXED_VALUE (r)->data.high))
1581 #define CONST_FIXED_VALUE_LOW(r) \
1582 ((HOST_WIDE_INT) (CONST_FIXED_VALUE (r)->data.low))
1584 /* For a CONST_VECTOR, return element #n. */
1585 #define CONST_VECTOR_ELT(RTX, N) XCVECEXP (RTX, 0, N, CONST_VECTOR)
1587 /* For a CONST_VECTOR, return the number of elements in a vector. */
1588 #define CONST_VECTOR_NUNITS(RTX) XCVECLEN (RTX, 0, CONST_VECTOR)
1590 /* For a SUBREG rtx, SUBREG_REG extracts the value we want a subreg of.
1591 SUBREG_BYTE extracts the byte-number. */
1593 #define SUBREG_REG(RTX) XCEXP (RTX, 0, SUBREG)
1594 #define SUBREG_BYTE(RTX) XCUINT (RTX, 1, SUBREG)
1596 /* in rtlanal.c */
1597 /* Return the right cost to give to an operation
1598 to make the cost of the corresponding register-to-register instruction
1599 N times that of a fast register-to-register instruction. */
1600 #define COSTS_N_INSNS(N) ((N) * 4)
1602 /* Maximum cost of an rtl expression. This value has the special meaning
1603 not to use an rtx with this cost under any circumstances. */
1604 #define MAX_COST INT_MAX
1606 /* A structure to hold all available cost information about an rtl
1607 expression. */
1608 struct full_rtx_costs
1610 int speed;
1611 int size;
1614 /* Initialize a full_rtx_costs structure C to the maximum cost. */
1615 static inline void
1616 init_costs_to_max (struct full_rtx_costs *c)
1618 c->speed = MAX_COST;
1619 c->size = MAX_COST;
1622 /* Initialize a full_rtx_costs structure C to zero cost. */
1623 static inline void
1624 init_costs_to_zero (struct full_rtx_costs *c)
1626 c->speed = 0;
1627 c->size = 0;
1630 /* Compare two full_rtx_costs structures A and B, returning true
1631 if A < B when optimizing for speed. */
1632 static inline bool
1633 costs_lt_p (struct full_rtx_costs *a, struct full_rtx_costs *b,
1634 bool speed)
1636 if (speed)
1637 return (a->speed < b->speed
1638 || (a->speed == b->speed && a->size < b->size));
1639 else
1640 return (a->size < b->size
1641 || (a->size == b->size && a->speed < b->speed));
1644 /* Increase both members of the full_rtx_costs structure C by the
1645 cost of N insns. */
1646 static inline void
1647 costs_add_n_insns (struct full_rtx_costs *c, int n)
1649 c->speed += COSTS_N_INSNS (n);
1650 c->size += COSTS_N_INSNS (n);
1653 /* Information about an address. This structure is supposed to be able
1654 to represent all supported target addresses. Please extend it if it
1655 is not yet general enough. */
1656 struct address_info {
1657 /* The mode of the value being addressed, or VOIDmode if this is
1658 a load-address operation with no known address mode. */
1659 enum machine_mode mode;
1661 /* The address space. */
1662 addr_space_t as;
1664 /* A pointer to the top-level address. */
1665 rtx *outer;
1667 /* A pointer to the inner address, after all address mutations
1668 have been stripped from the top-level address. It can be one
1669 of the following:
1671 - A {PRE,POST}_{INC,DEC} of *BASE. SEGMENT, INDEX and DISP are null.
1673 - A {PRE,POST}_MODIFY of *BASE. In this case either INDEX or DISP
1674 points to the step value, depending on whether the step is variable
1675 or constant respectively. SEGMENT is null.
1677 - A plain sum of the form SEGMENT + BASE + INDEX + DISP,
1678 with null fields evaluating to 0. */
1679 rtx *inner;
1681 /* Components that make up *INNER. Each one may be null or nonnull.
1682 When nonnull, their meanings are as follows:
1684 - *SEGMENT is the "segment" of memory to which the address refers.
1685 This value is entirely target-specific and is only called a "segment"
1686 because that's its most typical use. It contains exactly one UNSPEC,
1687 pointed to by SEGMENT_TERM. The contents of *SEGMENT do not need
1688 reloading.
1690 - *BASE is a variable expression representing a base address.
1691 It contains exactly one REG, SUBREG or MEM, pointed to by BASE_TERM.
1693 - *INDEX is a variable expression representing an index value.
1694 It may be a scaled expression, such as a MULT. It has exactly
1695 one REG, SUBREG or MEM, pointed to by INDEX_TERM.
1697 - *DISP is a constant, possibly mutated. DISP_TERM points to the
1698 unmutated RTX_CONST_OBJ. */
1699 rtx *segment;
1700 rtx *base;
1701 rtx *index;
1702 rtx *disp;
1704 rtx *segment_term;
1705 rtx *base_term;
1706 rtx *index_term;
1707 rtx *disp_term;
1709 /* In a {PRE,POST}_MODIFY address, this points to a second copy
1710 of BASE_TERM, otherwise it is null. */
1711 rtx *base_term2;
1713 /* ADDRESS if this structure describes an address operand, MEM if
1714 it describes a MEM address. */
1715 enum rtx_code addr_outer_code;
1717 /* If BASE is nonnull, this is the code of the rtx that contains it. */
1718 enum rtx_code base_outer_code;
1720 /* True if this is an RTX_AUTOINC address. */
1721 bool autoinc_p;
1724 /* This is used to bundle an rtx and a mode together so that the pair
1725 can be used with the wi:: routines. If we ever put modes into rtx
1726 integer constants, this should go away and then just pass an rtx in. */
1727 typedef std::pair <rtx, enum machine_mode> rtx_mode_t;
1729 namespace wi
1731 template <>
1732 struct int_traits <rtx_mode_t>
1734 static const enum precision_type precision_type = VAR_PRECISION;
1735 static const bool host_dependent_precision = false;
1736 /* This ought to be true, except for the special case that BImode
1737 is canonicalized to STORE_FLAG_VALUE, which might be 1. */
1738 static const bool is_sign_extended = false;
1739 static unsigned int get_precision (const rtx_mode_t &);
1740 static wi::storage_ref decompose (HOST_WIDE_INT *, unsigned int,
1741 const rtx_mode_t &);
1745 inline unsigned int
1746 wi::int_traits <rtx_mode_t>::get_precision (const rtx_mode_t &x)
1748 return GET_MODE_PRECISION (x.second);
1751 inline wi::storage_ref
1752 wi::int_traits <rtx_mode_t>::decompose (HOST_WIDE_INT *,
1753 unsigned int precision,
1754 const rtx_mode_t &x)
1756 gcc_checking_assert (precision == get_precision (x));
1757 switch (GET_CODE (x.first))
1759 case CONST_INT:
1760 if (precision < HOST_BITS_PER_WIDE_INT)
1761 /* Nonzero BImodes are stored as STORE_FLAG_VALUE, which on many
1762 targets is 1 rather than -1. */
1763 gcc_checking_assert (INTVAL (x.first)
1764 == sext_hwi (INTVAL (x.first), precision)
1765 || (x.second == BImode && INTVAL (x.first) == 1));
1767 return wi::storage_ref (&INTVAL (x.first), 1, precision);
1769 case CONST_WIDE_INT:
1770 return wi::storage_ref (&CONST_WIDE_INT_ELT (x.first, 0),
1771 CONST_WIDE_INT_NUNITS (x.first), precision);
1773 #if TARGET_SUPPORTS_WIDE_INT == 0
1774 case CONST_DOUBLE:
1775 return wi::storage_ref (&CONST_DOUBLE_LOW (x.first), 2, precision);
1776 #endif
1778 default:
1779 gcc_unreachable ();
1783 namespace wi
1785 hwi_with_prec shwi (HOST_WIDE_INT, enum machine_mode mode);
1786 wide_int min_value (enum machine_mode, signop);
1787 wide_int max_value (enum machine_mode, signop);
1790 inline wi::hwi_with_prec
1791 wi::shwi (HOST_WIDE_INT val, enum machine_mode mode)
1793 return shwi (val, GET_MODE_PRECISION (mode));
1796 /* Produce the smallest number that is represented in MODE. The precision
1797 is taken from MODE and the sign from SGN. */
1798 inline wide_int
1799 wi::min_value (enum machine_mode mode, signop sgn)
1801 return min_value (GET_MODE_PRECISION (mode), sgn);
1804 /* Produce the largest number that is represented in MODE. The precision
1805 is taken from MODE and the sign from SGN. */
1806 inline wide_int
1807 wi::max_value (enum machine_mode mode, signop sgn)
1809 return max_value (GET_MODE_PRECISION (mode), sgn);
1812 extern void init_rtlanal (void);
1813 extern int rtx_cost (rtx, enum rtx_code, int, bool);
1814 extern int address_cost (rtx, enum machine_mode, addr_space_t, bool);
1815 extern void get_full_rtx_cost (rtx, enum rtx_code, int,
1816 struct full_rtx_costs *);
1817 extern unsigned int subreg_lsb (const_rtx);
1818 extern unsigned int subreg_lsb_1 (enum machine_mode, enum machine_mode,
1819 unsigned int);
1820 extern unsigned int subreg_regno_offset (unsigned int, enum machine_mode,
1821 unsigned int, enum machine_mode);
1822 extern bool subreg_offset_representable_p (unsigned int, enum machine_mode,
1823 unsigned int, enum machine_mode);
1824 extern unsigned int subreg_regno (const_rtx);
1825 extern int simplify_subreg_regno (unsigned int, enum machine_mode,
1826 unsigned int, enum machine_mode);
1827 extern unsigned int subreg_nregs (const_rtx);
1828 extern unsigned int subreg_nregs_with_regno (unsigned int, const_rtx);
1829 extern unsigned HOST_WIDE_INT nonzero_bits (const_rtx, enum machine_mode);
1830 extern unsigned int num_sign_bit_copies (const_rtx, enum machine_mode);
1831 extern bool constant_pool_constant_p (rtx);
1832 extern bool truncated_to_mode (enum machine_mode, const_rtx);
1833 extern int low_bitmask_len (enum machine_mode, unsigned HOST_WIDE_INT);
1834 extern void split_double (rtx, rtx *, rtx *);
1835 extern rtx *strip_address_mutations (rtx *, enum rtx_code * = 0);
1836 extern void decompose_address (struct address_info *, rtx *,
1837 enum machine_mode, addr_space_t, enum rtx_code);
1838 extern void decompose_lea_address (struct address_info *, rtx *);
1839 extern void decompose_mem_address (struct address_info *, rtx);
1840 extern void update_address (struct address_info *);
1841 extern HOST_WIDE_INT get_index_scale (const struct address_info *);
1842 extern enum rtx_code get_index_code (const struct address_info *);
1844 #ifndef GENERATOR_FILE
1845 /* Return the cost of SET X. SPEED_P is true if optimizing for speed
1846 rather than size. */
1848 static inline int
1849 set_rtx_cost (rtx x, bool speed_p)
1851 return rtx_cost (x, INSN, 4, speed_p);
1854 /* Like set_rtx_cost, but return both the speed and size costs in C. */
1856 static inline void
1857 get_full_set_rtx_cost (rtx x, struct full_rtx_costs *c)
1859 get_full_rtx_cost (x, INSN, 4, c);
1862 /* Return the cost of moving X into a register, relative to the cost
1863 of a register move. SPEED_P is true if optimizing for speed rather
1864 than size. */
1866 static inline int
1867 set_src_cost (rtx x, bool speed_p)
1869 return rtx_cost (x, SET, 1, speed_p);
1872 /* Like set_src_cost, but return both the speed and size costs in C. */
1874 static inline void
1875 get_full_set_src_cost (rtx x, struct full_rtx_costs *c)
1877 get_full_rtx_cost (x, SET, 1, c);
1879 #endif
1881 /* 1 if RTX is a subreg containing a reg that is already known to be
1882 sign- or zero-extended from the mode of the subreg to the mode of
1883 the reg. SUBREG_PROMOTED_UNSIGNED_P gives the signedness of the
1884 extension.
1886 When used as a LHS, is means that this extension must be done
1887 when assigning to SUBREG_REG. */
1889 #define SUBREG_PROMOTED_VAR_P(RTX) \
1890 (RTL_FLAG_CHECK1 ("SUBREG_PROMOTED", (RTX), SUBREG)->in_struct)
1892 /* Valid for subregs which are SUBREG_PROMOTED_VAR_P(). In that case
1893 this gives the necessary extensions:
1894 0 - signed (SPR_SIGNED)
1895 1 - normal unsigned (SPR_UNSIGNED)
1896 2 - value is both sign and unsign extended for mode
1897 (SPR_SIGNED_AND_UNSIGNED).
1898 -1 - pointer unsigned, which most often can be handled like unsigned
1899 extension, except for generating instructions where we need to
1900 emit special code (ptr_extend insns) on some architectures
1901 (SPR_POINTER). */
1903 const int SRP_POINTER = -1;
1904 const int SRP_SIGNED = 0;
1905 const int SRP_UNSIGNED = 1;
1906 const int SRP_SIGNED_AND_UNSIGNED = 2;
1908 /* Sets promoted mode for SUBREG_PROMOTED_VAR_P(). */
1909 #define SUBREG_PROMOTED_SET(RTX, VAL) \
1910 do { \
1911 rtx const _rtx = RTL_FLAG_CHECK1 ("SUBREG_PROMOTED_SET", \
1912 (RTX), SUBREG); \
1913 switch (VAL) \
1915 case SRP_POINTER: \
1916 _rtx->volatil = 0; \
1917 _rtx->unchanging = 0; \
1918 break; \
1919 case SRP_SIGNED: \
1920 _rtx->volatil = 0; \
1921 _rtx->unchanging = 1; \
1922 break; \
1923 case SRP_UNSIGNED: \
1924 _rtx->volatil = 1; \
1925 _rtx->unchanging = 0; \
1926 break; \
1927 case SRP_SIGNED_AND_UNSIGNED: \
1928 _rtx->volatil = 1; \
1929 _rtx->unchanging = 1; \
1930 break; \
1932 } while (0)
1934 /* Gets the value stored in promoted mode for SUBREG_PROMOTED_VAR_P(),
1935 including SRP_SIGNED_AND_UNSIGNED if promoted for
1936 both signed and unsigned. */
1937 #define SUBREG_PROMOTED_GET(RTX) \
1938 (2 * (RTL_FLAG_CHECK1 ("SUBREG_PROMOTED_GET", (RTX), SUBREG)->volatil)\
1939 + (RTX)->unchanging - 1)
1941 /* Returns sign of promoted mode for SUBREG_PROMOTED_VAR_P(). */
1942 #define SUBREG_PROMOTED_SIGN(RTX) \
1943 ((RTL_FLAG_CHECK1 ("SUBREG_PROMOTED_SIGN", (RTX), SUBREG)->volatil) ? 1\
1944 : (RTX)->unchanging - 1)
1946 /* Predicate to check if RTX of SUBREG_PROMOTED_VAR_P() is promoted
1947 for SIGNED type. */
1948 #define SUBREG_PROMOTED_SIGNED_P(RTX) \
1949 (RTL_FLAG_CHECK1 ("SUBREG_PROMOTED_SIGNED_P", (RTX), SUBREG)->unchanging)
1951 /* Predicate to check if RTX of SUBREG_PROMOTED_VAR_P() is promoted
1952 for UNSIGNED type. */
1953 #define SUBREG_PROMOTED_UNSIGNED_P(RTX) \
1954 (RTL_FLAG_CHECK1 ("SUBREG_PROMOTED_UNSIGNED_P", (RTX), SUBREG)->volatil)
1956 /* Checks if RTX of SUBREG_PROMOTED_VAR_P() is promoted for given SIGN. */
1957 #define SUBREG_CHECK_PROMOTED_SIGN(RTX, SIGN) \
1958 ((SIGN) == SRP_POINTER ? SUBREG_PROMOTED_GET (RTX) == SRP_POINTER \
1959 : (SIGN) == SRP_SIGNED ? SUBREG_PROMOTED_SIGNED_P (RTX) \
1960 : SUBREG_PROMOTED_UNSIGNED_P (RTX))
1962 /* True if the subreg was generated by LRA for reload insns. Such
1963 subregs are valid only during LRA. */
1964 #define LRA_SUBREG_P(RTX) \
1965 (RTL_FLAG_CHECK1 ("LRA_SUBREG_P", (RTX), SUBREG)->jump)
1967 /* Access various components of an ASM_OPERANDS rtx. */
1969 #define ASM_OPERANDS_TEMPLATE(RTX) XCSTR (RTX, 0, ASM_OPERANDS)
1970 #define ASM_OPERANDS_OUTPUT_CONSTRAINT(RTX) XCSTR (RTX, 1, ASM_OPERANDS)
1971 #define ASM_OPERANDS_OUTPUT_IDX(RTX) XCINT (RTX, 2, ASM_OPERANDS)
1972 #define ASM_OPERANDS_INPUT_VEC(RTX) XCVEC (RTX, 3, ASM_OPERANDS)
1973 #define ASM_OPERANDS_INPUT_CONSTRAINT_VEC(RTX) XCVEC (RTX, 4, ASM_OPERANDS)
1974 #define ASM_OPERANDS_INPUT(RTX, N) XCVECEXP (RTX, 3, N, ASM_OPERANDS)
1975 #define ASM_OPERANDS_INPUT_LENGTH(RTX) XCVECLEN (RTX, 3, ASM_OPERANDS)
1976 #define ASM_OPERANDS_INPUT_CONSTRAINT_EXP(RTX, N) \
1977 XCVECEXP (RTX, 4, N, ASM_OPERANDS)
1978 #define ASM_OPERANDS_INPUT_CONSTRAINT(RTX, N) \
1979 XSTR (XCVECEXP (RTX, 4, N, ASM_OPERANDS), 0)
1980 #define ASM_OPERANDS_INPUT_MODE(RTX, N) \
1981 GET_MODE (XCVECEXP (RTX, 4, N, ASM_OPERANDS))
1982 #define ASM_OPERANDS_LABEL_VEC(RTX) XCVEC (RTX, 5, ASM_OPERANDS)
1983 #define ASM_OPERANDS_LABEL_LENGTH(RTX) XCVECLEN (RTX, 5, ASM_OPERANDS)
1984 #define ASM_OPERANDS_LABEL(RTX, N) XCVECEXP (RTX, 5, N, ASM_OPERANDS)
1985 #define ASM_OPERANDS_SOURCE_LOCATION(RTX) XCUINT (RTX, 6, ASM_OPERANDS)
1986 #define ASM_INPUT_SOURCE_LOCATION(RTX) XCUINT (RTX, 1, ASM_INPUT)
1988 /* 1 if RTX is a mem that is statically allocated in read-only memory. */
1989 #define MEM_READONLY_P(RTX) \
1990 (RTL_FLAG_CHECK1 ("MEM_READONLY_P", (RTX), MEM)->unchanging)
1992 /* 1 if RTX is a mem and we should keep the alias set for this mem
1993 unchanged when we access a component. Set to 1, or example, when we
1994 are already in a non-addressable component of an aggregate. */
1995 #define MEM_KEEP_ALIAS_SET_P(RTX) \
1996 (RTL_FLAG_CHECK1 ("MEM_KEEP_ALIAS_SET_P", (RTX), MEM)->jump)
1998 /* 1 if RTX is a mem or asm_operand for a volatile reference. */
1999 #define MEM_VOLATILE_P(RTX) \
2000 (RTL_FLAG_CHECK3 ("MEM_VOLATILE_P", (RTX), MEM, ASM_OPERANDS, \
2001 ASM_INPUT)->volatil)
2003 /* 1 if RTX is a mem that cannot trap. */
2004 #define MEM_NOTRAP_P(RTX) \
2005 (RTL_FLAG_CHECK1 ("MEM_NOTRAP_P", (RTX), MEM)->call)
2007 /* The memory attribute block. We provide access macros for each value
2008 in the block and provide defaults if none specified. */
2009 #define MEM_ATTRS(RTX) X0MEMATTR (RTX, 1)
2011 /* The register attribute block. We provide access macros for each value
2012 in the block and provide defaults if none specified. */
2013 #define REG_ATTRS(RTX) X0REGATTR (RTX, 1)
2015 #ifndef GENERATOR_FILE
2016 /* For a MEM rtx, the alias set. If 0, this MEM is not in any alias
2017 set, and may alias anything. Otherwise, the MEM can only alias
2018 MEMs in a conflicting alias set. This value is set in a
2019 language-dependent manner in the front-end, and should not be
2020 altered in the back-end. These set numbers are tested with
2021 alias_sets_conflict_p. */
2022 #define MEM_ALIAS_SET(RTX) (get_mem_attrs (RTX)->alias)
2024 /* For a MEM rtx, the decl it is known to refer to, if it is known to
2025 refer to part of a DECL. It may also be a COMPONENT_REF. */
2026 #define MEM_EXPR(RTX) (get_mem_attrs (RTX)->expr)
2028 /* For a MEM rtx, true if its MEM_OFFSET is known. */
2029 #define MEM_OFFSET_KNOWN_P(RTX) (get_mem_attrs (RTX)->offset_known_p)
2031 /* For a MEM rtx, the offset from the start of MEM_EXPR. */
2032 #define MEM_OFFSET(RTX) (get_mem_attrs (RTX)->offset)
2034 /* For a MEM rtx, the address space. */
2035 #define MEM_ADDR_SPACE(RTX) (get_mem_attrs (RTX)->addrspace)
2037 /* For a MEM rtx, true if its MEM_SIZE is known. */
2038 #define MEM_SIZE_KNOWN_P(RTX) (get_mem_attrs (RTX)->size_known_p)
2040 /* For a MEM rtx, the size in bytes of the MEM. */
2041 #define MEM_SIZE(RTX) (get_mem_attrs (RTX)->size)
2043 /* For a MEM rtx, the alignment in bits. We can use the alignment of the
2044 mode as a default when STRICT_ALIGNMENT, but not if not. */
2045 #define MEM_ALIGN(RTX) (get_mem_attrs (RTX)->align)
2046 #else
2047 #define MEM_ADDR_SPACE(RTX) ADDR_SPACE_GENERIC
2048 #endif
2050 /* For a REG rtx, the decl it is known to refer to, if it is known to
2051 refer to part of a DECL. */
2052 #define REG_EXPR(RTX) (REG_ATTRS (RTX) == 0 ? 0 : REG_ATTRS (RTX)->decl)
2054 /* For a REG rtx, the offset from the start of REG_EXPR, if known, as an
2055 HOST_WIDE_INT. */
2056 #define REG_OFFSET(RTX) (REG_ATTRS (RTX) == 0 ? 0 : REG_ATTRS (RTX)->offset)
2058 /* Copy the attributes that apply to memory locations from RHS to LHS. */
2059 #define MEM_COPY_ATTRIBUTES(LHS, RHS) \
2060 (MEM_VOLATILE_P (LHS) = MEM_VOLATILE_P (RHS), \
2061 MEM_NOTRAP_P (LHS) = MEM_NOTRAP_P (RHS), \
2062 MEM_READONLY_P (LHS) = MEM_READONLY_P (RHS), \
2063 MEM_KEEP_ALIAS_SET_P (LHS) = MEM_KEEP_ALIAS_SET_P (RHS), \
2064 MEM_POINTER (LHS) = MEM_POINTER (RHS), \
2065 MEM_ATTRS (LHS) = MEM_ATTRS (RHS))
2067 /* 1 if RTX is a label_ref for a nonlocal label. */
2068 /* Likewise in an expr_list for a REG_LABEL_OPERAND or
2069 REG_LABEL_TARGET note. */
2070 #define LABEL_REF_NONLOCAL_P(RTX) \
2071 (RTL_FLAG_CHECK1 ("LABEL_REF_NONLOCAL_P", (RTX), LABEL_REF)->volatil)
2073 /* 1 if RTX is a code_label that should always be considered to be needed. */
2074 #define LABEL_PRESERVE_P(RTX) \
2075 (RTL_FLAG_CHECK2 ("LABEL_PRESERVE_P", (RTX), CODE_LABEL, NOTE)->in_struct)
2077 /* During sched, 1 if RTX is an insn that must be scheduled together
2078 with the preceding insn. */
2079 #define SCHED_GROUP_P(RTX) \
2080 (RTL_FLAG_CHECK4 ("SCHED_GROUP_P", (RTX), DEBUG_INSN, INSN, \
2081 JUMP_INSN, CALL_INSN)->in_struct)
2083 /* For a SET rtx, SET_DEST is the place that is set
2084 and SET_SRC is the value it is set to. */
2085 #define SET_DEST(RTX) XC2EXP (RTX, 0, SET, CLOBBER)
2086 #define SET_SRC(RTX) XCEXP (RTX, 1, SET)
2087 #define SET_IS_RETURN_P(RTX) \
2088 (RTL_FLAG_CHECK1 ("SET_IS_RETURN_P", (RTX), SET)->jump)
2090 /* For a TRAP_IF rtx, TRAP_CONDITION is an expression. */
2091 #define TRAP_CONDITION(RTX) XCEXP (RTX, 0, TRAP_IF)
2092 #define TRAP_CODE(RTX) XCEXP (RTX, 1, TRAP_IF)
2094 /* For a COND_EXEC rtx, COND_EXEC_TEST is the condition to base
2095 conditionally executing the code on, COND_EXEC_CODE is the code
2096 to execute if the condition is true. */
2097 #define COND_EXEC_TEST(RTX) XCEXP (RTX, 0, COND_EXEC)
2098 #define COND_EXEC_CODE(RTX) XCEXP (RTX, 1, COND_EXEC)
2100 /* 1 if RTX is a symbol_ref that addresses this function's rtl
2101 constants pool. */
2102 #define CONSTANT_POOL_ADDRESS_P(RTX) \
2103 (RTL_FLAG_CHECK1 ("CONSTANT_POOL_ADDRESS_P", (RTX), SYMBOL_REF)->unchanging)
2105 /* 1 if RTX is a symbol_ref that addresses a value in the file's
2106 tree constant pool. This information is private to varasm.c. */
2107 #define TREE_CONSTANT_POOL_ADDRESS_P(RTX) \
2108 (RTL_FLAG_CHECK1 ("TREE_CONSTANT_POOL_ADDRESS_P", \
2109 (RTX), SYMBOL_REF)->frame_related)
2111 /* Used if RTX is a symbol_ref, for machine-specific purposes. */
2112 #define SYMBOL_REF_FLAG(RTX) \
2113 (RTL_FLAG_CHECK1 ("SYMBOL_REF_FLAG", (RTX), SYMBOL_REF)->volatil)
2115 /* 1 if RTX is a symbol_ref that has been the library function in
2116 emit_library_call. */
2117 #define SYMBOL_REF_USED(RTX) \
2118 (RTL_FLAG_CHECK1 ("SYMBOL_REF_USED", (RTX), SYMBOL_REF)->used)
2120 /* 1 if RTX is a symbol_ref for a weak symbol. */
2121 #define SYMBOL_REF_WEAK(RTX) \
2122 (RTL_FLAG_CHECK1 ("SYMBOL_REF_WEAK", (RTX), SYMBOL_REF)->return_val)
2124 /* A pointer attached to the SYMBOL_REF; either SYMBOL_REF_DECL or
2125 SYMBOL_REF_CONSTANT. */
2126 #define SYMBOL_REF_DATA(RTX) X0ANY ((RTX), 1)
2128 /* Set RTX's SYMBOL_REF_DECL to DECL. RTX must not be a constant
2129 pool symbol. */
2130 #define SET_SYMBOL_REF_DECL(RTX, DECL) \
2131 (gcc_assert (!CONSTANT_POOL_ADDRESS_P (RTX)), X0TREE ((RTX), 1) = (DECL))
2133 /* The tree (decl or constant) associated with the symbol, or null. */
2134 #define SYMBOL_REF_DECL(RTX) \
2135 (CONSTANT_POOL_ADDRESS_P (RTX) ? NULL : X0TREE ((RTX), 1))
2137 /* Set RTX's SYMBOL_REF_CONSTANT to C. RTX must be a constant pool symbol. */
2138 #define SET_SYMBOL_REF_CONSTANT(RTX, C) \
2139 (gcc_assert (CONSTANT_POOL_ADDRESS_P (RTX)), X0CONSTANT ((RTX), 1) = (C))
2141 /* The rtx constant pool entry for a symbol, or null. */
2142 #define SYMBOL_REF_CONSTANT(RTX) \
2143 (CONSTANT_POOL_ADDRESS_P (RTX) ? X0CONSTANT ((RTX), 1) : NULL)
2145 /* A set of flags on a symbol_ref that are, in some respects, redundant with
2146 information derivable from the tree decl associated with this symbol.
2147 Except that we build a *lot* of SYMBOL_REFs that aren't associated with a
2148 decl. In some cases this is a bug. But beyond that, it's nice to cache
2149 this information to avoid recomputing it. Finally, this allows space for
2150 the target to store more than one bit of information, as with
2151 SYMBOL_REF_FLAG. */
2152 #define SYMBOL_REF_FLAGS(RTX) \
2153 (RTL_FLAG_CHECK1 ("SYMBOL_REF_FLAGS", (RTX), SYMBOL_REF) \
2154 ->u2.symbol_ref_flags)
2156 /* These flags are common enough to be defined for all targets. They
2157 are computed by the default version of targetm.encode_section_info. */
2159 /* Set if this symbol is a function. */
2160 #define SYMBOL_FLAG_FUNCTION (1 << 0)
2161 #define SYMBOL_REF_FUNCTION_P(RTX) \
2162 ((SYMBOL_REF_FLAGS (RTX) & SYMBOL_FLAG_FUNCTION) != 0)
2163 /* Set if targetm.binds_local_p is true. */
2164 #define SYMBOL_FLAG_LOCAL (1 << 1)
2165 #define SYMBOL_REF_LOCAL_P(RTX) \
2166 ((SYMBOL_REF_FLAGS (RTX) & SYMBOL_FLAG_LOCAL) != 0)
2167 /* Set if targetm.in_small_data_p is true. */
2168 #define SYMBOL_FLAG_SMALL (1 << 2)
2169 #define SYMBOL_REF_SMALL_P(RTX) \
2170 ((SYMBOL_REF_FLAGS (RTX) & SYMBOL_FLAG_SMALL) != 0)
2171 /* The three-bit field at [5:3] is true for TLS variables; use
2172 SYMBOL_REF_TLS_MODEL to extract the field as an enum tls_model. */
2173 #define SYMBOL_FLAG_TLS_SHIFT 3
2174 #define SYMBOL_REF_TLS_MODEL(RTX) \
2175 ((enum tls_model) ((SYMBOL_REF_FLAGS (RTX) >> SYMBOL_FLAG_TLS_SHIFT) & 7))
2176 /* Set if this symbol is not defined in this translation unit. */
2177 #define SYMBOL_FLAG_EXTERNAL (1 << 6)
2178 #define SYMBOL_REF_EXTERNAL_P(RTX) \
2179 ((SYMBOL_REF_FLAGS (RTX) & SYMBOL_FLAG_EXTERNAL) != 0)
2180 /* Set if this symbol has a block_symbol structure associated with it. */
2181 #define SYMBOL_FLAG_HAS_BLOCK_INFO (1 << 7)
2182 #define SYMBOL_REF_HAS_BLOCK_INFO_P(RTX) \
2183 ((SYMBOL_REF_FLAGS (RTX) & SYMBOL_FLAG_HAS_BLOCK_INFO) != 0)
2184 /* Set if this symbol is a section anchor. SYMBOL_REF_ANCHOR_P implies
2185 SYMBOL_REF_HAS_BLOCK_INFO_P. */
2186 #define SYMBOL_FLAG_ANCHOR (1 << 8)
2187 #define SYMBOL_REF_ANCHOR_P(RTX) \
2188 ((SYMBOL_REF_FLAGS (RTX) & SYMBOL_FLAG_ANCHOR) != 0)
2190 /* Subsequent bits are available for the target to use. */
2191 #define SYMBOL_FLAG_MACH_DEP_SHIFT 9
2192 #define SYMBOL_FLAG_MACH_DEP (1 << SYMBOL_FLAG_MACH_DEP_SHIFT)
2194 /* If SYMBOL_REF_HAS_BLOCK_INFO_P (RTX), this is the object_block
2195 structure to which the symbol belongs, or NULL if it has not been
2196 assigned a block. */
2197 #define SYMBOL_REF_BLOCK(RTX) (BLOCK_SYMBOL_CHECK (RTX)->block)
2199 /* If SYMBOL_REF_HAS_BLOCK_INFO_P (RTX), this is the offset of RTX from
2200 the first object in SYMBOL_REF_BLOCK (RTX). The value is negative if
2201 RTX has not yet been assigned to a block, or it has not been given an
2202 offset within that block. */
2203 #define SYMBOL_REF_BLOCK_OFFSET(RTX) (BLOCK_SYMBOL_CHECK (RTX)->offset)
2205 /* True if RTX is flagged to be a scheduling barrier. */
2206 #define PREFETCH_SCHEDULE_BARRIER_P(RTX) \
2207 (RTL_FLAG_CHECK1 ("PREFETCH_SCHEDULE_BARRIER_P", (RTX), PREFETCH)->volatil)
2209 /* Indicate whether the machine has any sort of auto increment addressing.
2210 If not, we can avoid checking for REG_INC notes. */
2212 #if (defined (HAVE_PRE_INCREMENT) || defined (HAVE_PRE_DECREMENT) \
2213 || defined (HAVE_POST_INCREMENT) || defined (HAVE_POST_DECREMENT) \
2214 || defined (HAVE_PRE_MODIFY_DISP) || defined (HAVE_POST_MODIFY_DISP) \
2215 || defined (HAVE_PRE_MODIFY_REG) || defined (HAVE_POST_MODIFY_REG))
2216 #define AUTO_INC_DEC
2217 #endif
2219 /* Define a macro to look for REG_INC notes,
2220 but save time on machines where they never exist. */
2222 #ifdef AUTO_INC_DEC
2223 #define FIND_REG_INC_NOTE(INSN, REG) \
2224 ((REG) != NULL_RTX && REG_P ((REG)) \
2225 ? find_regno_note ((INSN), REG_INC, REGNO (REG)) \
2226 : find_reg_note ((INSN), REG_INC, (REG)))
2227 #else
2228 #define FIND_REG_INC_NOTE(INSN, REG) 0
2229 #endif
2231 #ifndef HAVE_PRE_INCREMENT
2232 #define HAVE_PRE_INCREMENT 0
2233 #endif
2235 #ifndef HAVE_PRE_DECREMENT
2236 #define HAVE_PRE_DECREMENT 0
2237 #endif
2239 #ifndef HAVE_POST_INCREMENT
2240 #define HAVE_POST_INCREMENT 0
2241 #endif
2243 #ifndef HAVE_POST_DECREMENT
2244 #define HAVE_POST_DECREMENT 0
2245 #endif
2247 #ifndef HAVE_POST_MODIFY_DISP
2248 #define HAVE_POST_MODIFY_DISP 0
2249 #endif
2251 #ifndef HAVE_POST_MODIFY_REG
2252 #define HAVE_POST_MODIFY_REG 0
2253 #endif
2255 #ifndef HAVE_PRE_MODIFY_DISP
2256 #define HAVE_PRE_MODIFY_DISP 0
2257 #endif
2259 #ifndef HAVE_PRE_MODIFY_REG
2260 #define HAVE_PRE_MODIFY_REG 0
2261 #endif
2264 /* Some architectures do not have complete pre/post increment/decrement
2265 instruction sets, or only move some modes efficiently. These macros
2266 allow us to tune autoincrement generation. */
2268 #ifndef USE_LOAD_POST_INCREMENT
2269 #define USE_LOAD_POST_INCREMENT(MODE) HAVE_POST_INCREMENT
2270 #endif
2272 #ifndef USE_LOAD_POST_DECREMENT
2273 #define USE_LOAD_POST_DECREMENT(MODE) HAVE_POST_DECREMENT
2274 #endif
2276 #ifndef USE_LOAD_PRE_INCREMENT
2277 #define USE_LOAD_PRE_INCREMENT(MODE) HAVE_PRE_INCREMENT
2278 #endif
2280 #ifndef USE_LOAD_PRE_DECREMENT
2281 #define USE_LOAD_PRE_DECREMENT(MODE) HAVE_PRE_DECREMENT
2282 #endif
2284 #ifndef USE_STORE_POST_INCREMENT
2285 #define USE_STORE_POST_INCREMENT(MODE) HAVE_POST_INCREMENT
2286 #endif
2288 #ifndef USE_STORE_POST_DECREMENT
2289 #define USE_STORE_POST_DECREMENT(MODE) HAVE_POST_DECREMENT
2290 #endif
2292 #ifndef USE_STORE_PRE_INCREMENT
2293 #define USE_STORE_PRE_INCREMENT(MODE) HAVE_PRE_INCREMENT
2294 #endif
2296 #ifndef USE_STORE_PRE_DECREMENT
2297 #define USE_STORE_PRE_DECREMENT(MODE) HAVE_PRE_DECREMENT
2298 #endif
2300 /* Nonzero when we are generating CONCATs. */
2301 extern int generating_concat_p;
2303 /* Nonzero when we are expanding trees to RTL. */
2304 extern int currently_expanding_to_rtl;
2306 /* Generally useful functions. */
2308 /* In explow.c */
2309 extern HOST_WIDE_INT trunc_int_for_mode (HOST_WIDE_INT, enum machine_mode);
2310 extern rtx plus_constant (enum machine_mode, rtx, HOST_WIDE_INT, bool = false);
2312 /* In rtl.c */
2313 extern rtx rtx_alloc_stat (RTX_CODE MEM_STAT_DECL);
2314 #define rtx_alloc(c) rtx_alloc_stat (c MEM_STAT_INFO)
2315 extern rtx rtx_alloc_stat_v (RTX_CODE MEM_STAT_DECL, int);
2316 #define rtx_alloc_v(c, SZ) rtx_alloc_stat_v (c MEM_STAT_INFO, SZ)
2317 #define const_wide_int_alloc(NWORDS) \
2318 rtx_alloc_v (CONST_WIDE_INT, \
2319 (sizeof (struct hwivec_def) \
2320 + ((NWORDS)-1) * sizeof (HOST_WIDE_INT))) \
2322 extern rtvec rtvec_alloc (int);
2323 extern rtvec shallow_copy_rtvec (rtvec);
2324 extern bool shared_const_p (const_rtx);
2325 extern rtx copy_rtx (rtx);
2326 extern void dump_rtx_statistics (void);
2328 /* In emit-rtl.c */
2329 extern rtx copy_rtx_if_shared (rtx);
2331 /* In rtl.c */
2332 extern unsigned int rtx_size (const_rtx);
2333 extern rtx shallow_copy_rtx_stat (const_rtx MEM_STAT_DECL);
2334 #define shallow_copy_rtx(a) shallow_copy_rtx_stat (a MEM_STAT_INFO)
2335 extern int rtx_equal_p (const_rtx, const_rtx);
2337 /* In emit-rtl.c */
2338 extern rtvec gen_rtvec_v (int, rtx *);
2339 extern rtx gen_reg_rtx (enum machine_mode);
2340 extern rtx gen_rtx_REG_offset (rtx, enum machine_mode, unsigned int, int);
2341 extern rtx gen_reg_rtx_offset (rtx, enum machine_mode, int);
2342 extern rtx gen_reg_rtx_and_attrs (rtx);
2343 extern rtx_code_label *gen_label_rtx (void);
2344 extern rtx gen_lowpart_common (enum machine_mode, rtx);
2346 /* In cse.c */
2347 extern rtx gen_lowpart_if_possible (enum machine_mode, rtx);
2349 /* In emit-rtl.c */
2350 extern rtx gen_highpart (enum machine_mode, rtx);
2351 extern rtx gen_highpart_mode (enum machine_mode, enum machine_mode, rtx);
2352 extern rtx operand_subword (rtx, unsigned int, int, enum machine_mode);
2354 /* In emit-rtl.c */
2355 extern rtx operand_subword_force (rtx, unsigned int, enum machine_mode);
2356 extern bool paradoxical_subreg_p (const_rtx);
2357 extern int subreg_lowpart_p (const_rtx);
2358 extern unsigned int subreg_lowpart_offset (enum machine_mode,
2359 enum machine_mode);
2360 extern unsigned int subreg_highpart_offset (enum machine_mode,
2361 enum machine_mode);
2362 extern int byte_lowpart_offset (enum machine_mode, enum machine_mode);
2363 extern rtx make_safe_from (rtx, rtx);
2364 extern rtx convert_memory_address_addr_space (enum machine_mode, rtx,
2365 addr_space_t);
2366 #define convert_memory_address(to_mode,x) \
2367 convert_memory_address_addr_space ((to_mode), (x), ADDR_SPACE_GENERIC)
2368 extern const char *get_insn_name (int);
2369 extern rtx_insn *get_last_insn_anywhere (void);
2370 extern rtx get_first_nonnote_insn (void);
2371 extern rtx get_last_nonnote_insn (void);
2372 extern void start_sequence (void);
2373 extern void push_to_sequence (rtx_insn *);
2374 extern void push_to_sequence2 (rtx_insn *, rtx_insn *);
2375 extern void end_sequence (void);
2376 #if TARGET_SUPPORTS_WIDE_INT == 0
2377 extern double_int rtx_to_double_int (const_rtx);
2378 #endif
2379 extern void cwi_output_hex (FILE *, const_rtx);
2380 #ifndef GENERATOR_FILE
2381 extern rtx immed_wide_int_const (const wide_int_ref &, enum machine_mode);
2382 #endif
2383 #if TARGET_SUPPORTS_WIDE_INT == 0
2384 extern rtx immed_double_const (HOST_WIDE_INT, HOST_WIDE_INT,
2385 enum machine_mode);
2386 #endif
2388 /* In loop-iv.c */
2390 extern rtx lowpart_subreg (enum machine_mode, rtx, enum machine_mode);
2392 /* In varasm.c */
2393 extern rtx force_const_mem (enum machine_mode, rtx);
2395 /* In varasm.c */
2397 struct function;
2398 extern rtx get_pool_constant (rtx);
2399 extern rtx get_pool_constant_mark (rtx, bool *);
2400 extern enum machine_mode get_pool_mode (const_rtx);
2401 extern rtx simplify_subtraction (rtx);
2402 extern void decide_function_section (tree);
2404 /* In function.c */
2405 extern rtx assign_stack_local (enum machine_mode, HOST_WIDE_INT, int);
2406 #define ASLK_REDUCE_ALIGN 1
2407 #define ASLK_RECORD_PAD 2
2408 extern rtx assign_stack_local_1 (enum machine_mode, HOST_WIDE_INT, int, int);
2409 extern rtx assign_stack_temp (enum machine_mode, HOST_WIDE_INT);
2410 extern rtx assign_stack_temp_for_type (enum machine_mode, HOST_WIDE_INT, tree);
2411 extern rtx assign_temp (tree, int, int);
2413 /* In emit-rtl.c */
2414 extern rtx_insn *emit_insn_before (rtx, rtx);
2415 extern rtx_insn *emit_insn_before_noloc (rtx, rtx, basic_block);
2416 extern rtx_insn *emit_insn_before_setloc (rtx, rtx, int);
2417 extern rtx_insn *emit_jump_insn_before (rtx, rtx);
2418 extern rtx_insn *emit_jump_insn_before_noloc (rtx, rtx);
2419 extern rtx_insn *emit_jump_insn_before_setloc (rtx, rtx, int);
2420 extern rtx_insn *emit_call_insn_before (rtx, rtx);
2421 extern rtx_insn *emit_call_insn_before_noloc (rtx, rtx);
2422 extern rtx_insn *emit_call_insn_before_setloc (rtx, rtx, int);
2423 extern rtx_insn *emit_debug_insn_before (rtx, rtx);
2424 extern rtx_insn *emit_debug_insn_before_noloc (rtx, rtx);
2425 extern rtx_insn *emit_debug_insn_before_setloc (rtx, rtx, int);
2426 extern rtx_barrier *emit_barrier_before (rtx);
2427 extern rtx_insn *emit_label_before (rtx, rtx);
2428 extern rtx_note *emit_note_before (enum insn_note, rtx);
2429 extern rtx_insn *emit_insn_after (rtx, rtx);
2430 extern rtx_insn *emit_insn_after_noloc (rtx, rtx, basic_block);
2431 extern rtx_insn *emit_insn_after_setloc (rtx, rtx, int);
2432 extern rtx_insn *emit_jump_insn_after (rtx, rtx);
2433 extern rtx_insn *emit_jump_insn_after_noloc (rtx, rtx);
2434 extern rtx_insn *emit_jump_insn_after_setloc (rtx, rtx, int);
2435 extern rtx_insn *emit_call_insn_after (rtx, rtx);
2436 extern rtx_insn *emit_call_insn_after_noloc (rtx, rtx);
2437 extern rtx_insn *emit_call_insn_after_setloc (rtx, rtx, int);
2438 extern rtx_insn *emit_debug_insn_after (rtx, rtx);
2439 extern rtx_insn *emit_debug_insn_after_noloc (rtx, rtx);
2440 extern rtx_insn *emit_debug_insn_after_setloc (rtx, rtx, int);
2441 extern rtx_barrier *emit_barrier_after (rtx);
2442 extern rtx_insn *emit_label_after (rtx, rtx);
2443 extern rtx_note *emit_note_after (enum insn_note, rtx);
2444 extern rtx_insn *emit_insn (rtx);
2445 extern rtx_insn *emit_debug_insn (rtx);
2446 extern rtx_insn *emit_jump_insn (rtx);
2447 extern rtx_insn *emit_call_insn (rtx);
2448 extern rtx_insn *emit_label (rtx);
2449 extern rtx_jump_table_data *emit_jump_table_data (rtx);
2450 extern rtx_barrier *emit_barrier (void);
2451 extern rtx_note *emit_note (enum insn_note);
2452 extern rtx_note *emit_note_copy (rtx_note *);
2453 extern rtx_insn *gen_clobber (rtx);
2454 extern rtx_insn *emit_clobber (rtx);
2455 extern rtx_insn *gen_use (rtx);
2456 extern rtx_insn *emit_use (rtx);
2457 extern rtx_insn *make_insn_raw (rtx);
2458 extern void add_function_usage_to (rtx, rtx);
2459 extern rtx_call_insn *last_call_insn (void);
2460 extern rtx_insn *previous_insn (rtx);
2461 extern rtx_insn *next_insn (rtx);
2462 extern rtx_insn *prev_nonnote_insn (rtx);
2463 extern rtx_insn *prev_nonnote_insn_bb (rtx);
2464 extern rtx_insn *next_nonnote_insn (rtx);
2465 extern rtx_insn *next_nonnote_insn_bb (rtx);
2466 extern rtx_insn *prev_nondebug_insn (rtx);
2467 extern rtx_insn *next_nondebug_insn (rtx);
2468 extern rtx_insn *prev_nonnote_nondebug_insn (rtx);
2469 extern rtx_insn *next_nonnote_nondebug_insn (rtx);
2470 extern rtx_insn *prev_real_insn (rtx);
2471 extern rtx_insn *next_real_insn (rtx);
2472 extern rtx_insn *prev_active_insn (rtx);
2473 extern rtx_insn *next_active_insn (rtx);
2474 extern int active_insn_p (const_rtx);
2475 extern rtx_insn *next_cc0_user (rtx);
2476 extern rtx_insn *prev_cc0_setter (rtx);
2478 /* In emit-rtl.c */
2479 extern int insn_line (const_rtx);
2480 extern const char * insn_file (const_rtx);
2481 extern tree insn_scope (const_rtx);
2482 extern expanded_location insn_location (const_rtx);
2483 extern location_t prologue_location, epilogue_location;
2485 /* In jump.c */
2486 extern enum rtx_code reverse_condition (enum rtx_code);
2487 extern enum rtx_code reverse_condition_maybe_unordered (enum rtx_code);
2488 extern enum rtx_code swap_condition (enum rtx_code);
2489 extern enum rtx_code unsigned_condition (enum rtx_code);
2490 extern enum rtx_code signed_condition (enum rtx_code);
2491 extern void mark_jump_label (rtx, rtx, int);
2493 /* In jump.c */
2494 extern rtx_insn *delete_related_insns (rtx);
2496 /* In recog.c */
2497 extern rtx *find_constant_term_loc (rtx *);
2499 /* In emit-rtl.c */
2500 extern rtx_insn *try_split (rtx, rtx, int);
2501 extern int split_branch_probability;
2503 /* In unknown file */
2504 extern rtx split_insns (rtx, rtx);
2506 /* In simplify-rtx.c */
2507 extern rtx simplify_const_unary_operation (enum rtx_code, enum machine_mode,
2508 rtx, enum machine_mode);
2509 extern rtx simplify_unary_operation (enum rtx_code, enum machine_mode, rtx,
2510 enum machine_mode);
2511 extern rtx simplify_const_binary_operation (enum rtx_code, enum machine_mode,
2512 rtx, rtx);
2513 extern rtx simplify_binary_operation (enum rtx_code, enum machine_mode, rtx,
2514 rtx);
2515 extern rtx simplify_ternary_operation (enum rtx_code, enum machine_mode,
2516 enum machine_mode, rtx, rtx, rtx);
2517 extern rtx simplify_const_relational_operation (enum rtx_code,
2518 enum machine_mode, rtx, rtx);
2519 extern rtx simplify_relational_operation (enum rtx_code, enum machine_mode,
2520 enum machine_mode, rtx, rtx);
2521 extern rtx simplify_gen_binary (enum rtx_code, enum machine_mode, rtx, rtx);
2522 extern rtx simplify_gen_unary (enum rtx_code, enum machine_mode, rtx,
2523 enum machine_mode);
2524 extern rtx simplify_gen_ternary (enum rtx_code, enum machine_mode,
2525 enum machine_mode, rtx, rtx, rtx);
2526 extern rtx simplify_gen_relational (enum rtx_code, enum machine_mode,
2527 enum machine_mode, rtx, rtx);
2528 extern rtx simplify_subreg (enum machine_mode, rtx, enum machine_mode,
2529 unsigned int);
2530 extern rtx simplify_gen_subreg (enum machine_mode, rtx, enum machine_mode,
2531 unsigned int);
2532 extern rtx simplify_replace_fn_rtx (rtx, const_rtx,
2533 rtx (*fn) (rtx, const_rtx, void *), void *);
2534 extern rtx simplify_replace_rtx (rtx, const_rtx, rtx);
2535 extern rtx simplify_rtx (const_rtx);
2536 extern rtx avoid_constant_pool_reference (rtx);
2537 extern rtx delegitimize_mem_from_attrs (rtx);
2538 extern bool mode_signbit_p (enum machine_mode, const_rtx);
2539 extern bool val_signbit_p (enum machine_mode, unsigned HOST_WIDE_INT);
2540 extern bool val_signbit_known_set_p (enum machine_mode,
2541 unsigned HOST_WIDE_INT);
2542 extern bool val_signbit_known_clear_p (enum machine_mode,
2543 unsigned HOST_WIDE_INT);
2545 /* In reginfo.c */
2546 extern enum machine_mode choose_hard_reg_mode (unsigned int, unsigned int,
2547 bool);
2549 /* In emit-rtl.c */
2550 extern rtx set_for_reg_notes (rtx);
2551 extern rtx set_unique_reg_note (rtx, enum reg_note, rtx);
2552 extern rtx set_dst_reg_note (rtx, enum reg_note, rtx, rtx);
2553 extern void set_insn_deleted (rtx);
2555 /* Functions in rtlanal.c */
2557 /* Single set is implemented as macro for performance reasons. */
2558 #define single_set(I) (INSN_P (I) \
2559 ? (GET_CODE (PATTERN (I)) == SET \
2560 ? PATTERN (I) : single_set_1 (I)) \
2561 : NULL_RTX)
2562 #define single_set_1(I) single_set_2 (I, PATTERN (I))
2564 /* Structure used for passing data to REPLACE_LABEL. */
2565 struct replace_label_data
2567 rtx r1;
2568 rtx r2;
2569 bool update_label_nuses;
2572 extern enum machine_mode get_address_mode (rtx mem);
2573 extern int rtx_addr_can_trap_p (const_rtx);
2574 extern bool nonzero_address_p (const_rtx);
2575 extern int rtx_unstable_p (const_rtx);
2576 extern bool rtx_varies_p (const_rtx, bool);
2577 extern bool rtx_addr_varies_p (const_rtx, bool);
2578 extern rtx get_call_rtx_from (rtx);
2579 extern HOST_WIDE_INT get_integer_term (const_rtx);
2580 extern rtx get_related_value (const_rtx);
2581 extern bool offset_within_block_p (const_rtx, HOST_WIDE_INT);
2582 extern void split_const (rtx, rtx *, rtx *);
2583 extern bool unsigned_reg_p (rtx);
2584 extern int reg_mentioned_p (const_rtx, const_rtx);
2585 extern int count_occurrences (const_rtx, const_rtx, int);
2586 extern int reg_referenced_p (const_rtx, const_rtx);
2587 extern int reg_used_between_p (const_rtx, const_rtx, const_rtx);
2588 extern int reg_set_between_p (const_rtx, const_rtx, const_rtx);
2589 extern int commutative_operand_precedence (rtx);
2590 extern bool swap_commutative_operands_p (rtx, rtx);
2591 extern int modified_between_p (const_rtx, const_rtx, const_rtx);
2592 extern int no_labels_between_p (const_rtx, const_rtx);
2593 extern int modified_in_p (const_rtx, const_rtx);
2594 extern int reg_set_p (const_rtx, const_rtx);
2595 extern rtx single_set_2 (const_rtx, const_rtx);
2596 extern int multiple_sets (const_rtx);
2597 extern int set_noop_p (const_rtx);
2598 extern int noop_move_p (const_rtx);
2599 extern rtx find_last_value (rtx, rtx *, rtx, int);
2600 extern int refers_to_regno_p (unsigned int, unsigned int, const_rtx, rtx *);
2601 extern int reg_overlap_mentioned_p (const_rtx, const_rtx);
2602 extern const_rtx set_of (const_rtx, const_rtx);
2603 extern void record_hard_reg_sets (rtx, const_rtx, void *);
2604 extern void record_hard_reg_uses (rtx *, void *);
2605 #ifdef HARD_CONST
2606 extern void find_all_hard_reg_sets (const_rtx, HARD_REG_SET *, bool);
2607 #endif
2608 extern void note_stores (const_rtx, void (*) (rtx, const_rtx, void *), void *);
2609 extern void note_uses (rtx *, void (*) (rtx *, void *), void *);
2610 extern int dead_or_set_p (const_rtx, const_rtx);
2611 extern int dead_or_set_regno_p (const_rtx, unsigned int);
2612 extern rtx find_reg_note (const_rtx, enum reg_note, const_rtx);
2613 extern rtx find_regno_note (const_rtx, enum reg_note, unsigned int);
2614 extern rtx find_reg_equal_equiv_note (const_rtx);
2615 extern rtx find_constant_src (const_rtx);
2616 extern int find_reg_fusage (const_rtx, enum rtx_code, const_rtx);
2617 extern int find_regno_fusage (const_rtx, enum rtx_code, unsigned int);
2618 extern rtx alloc_reg_note (enum reg_note, rtx, rtx);
2619 extern void add_reg_note (rtx, enum reg_note, rtx);
2620 extern void add_int_reg_note (rtx, enum reg_note, int);
2621 extern void add_shallow_copy_of_reg_note (rtx, rtx);
2622 extern void remove_note (rtx, const_rtx);
2623 extern void remove_reg_equal_equiv_notes (rtx);
2624 extern void remove_reg_equal_equiv_notes_for_regno (unsigned int);
2625 extern int side_effects_p (const_rtx);
2626 extern int volatile_refs_p (const_rtx);
2627 extern int volatile_insn_p (const_rtx);
2628 extern int may_trap_p_1 (const_rtx, unsigned);
2629 extern int may_trap_p (const_rtx);
2630 extern int may_trap_or_fault_p (const_rtx);
2631 extern bool can_throw_internal (const_rtx);
2632 extern bool can_throw_external (const_rtx);
2633 extern bool insn_could_throw_p (const_rtx);
2634 extern bool insn_nothrow_p (const_rtx);
2635 extern bool can_nonlocal_goto (const_rtx);
2636 extern void copy_reg_eh_region_note_forward (rtx, rtx, rtx);
2637 extern void copy_reg_eh_region_note_backward (rtx, rtx, rtx);
2638 extern int inequality_comparisons_p (const_rtx);
2639 extern rtx replace_rtx (rtx, rtx, rtx);
2640 extern int replace_label (rtx *, void *);
2641 extern int rtx_referenced_p (rtx, rtx);
2642 extern bool tablejump_p (const_rtx, rtx *, rtx_jump_table_data **);
2643 extern int computed_jump_p (const_rtx);
2644 extern bool tls_referenced_p (rtx);
2646 typedef int (*rtx_function) (rtx *, void *);
2647 extern int for_each_rtx (rtx *, rtx_function, void *);
2648 extern int for_each_rtx_in_insn (rtx_insn **, rtx_function, void *);
2650 /* Callback for for_each_inc_dec, to process the autoinc operation OP
2651 within MEM that sets DEST to SRC + SRCOFF, or SRC if SRCOFF is
2652 NULL. The callback is passed the same opaque ARG passed to
2653 for_each_inc_dec. Return zero to continue looking for other
2654 autoinc operations, -1 to skip OP's operands, and any other value
2655 to interrupt the traversal and return that value to the caller of
2656 for_each_inc_dec. */
2657 typedef int (*for_each_inc_dec_fn) (rtx mem, rtx op, rtx dest, rtx src,
2658 rtx srcoff, void *arg);
2659 extern int for_each_inc_dec (rtx_insn **, for_each_inc_dec_fn, void *arg);
2661 typedef int (*rtx_equal_p_callback_function) (const_rtx *, const_rtx *,
2662 rtx *, rtx *);
2663 extern int rtx_equal_p_cb (const_rtx, const_rtx,
2664 rtx_equal_p_callback_function);
2666 typedef int (*hash_rtx_callback_function) (const_rtx, enum machine_mode, rtx *,
2667 enum machine_mode *);
2668 extern unsigned hash_rtx_cb (const_rtx, enum machine_mode, int *, int *,
2669 bool, hash_rtx_callback_function);
2671 extern rtx regno_use_in (unsigned int, rtx);
2672 extern int auto_inc_p (const_rtx);
2673 extern int in_expr_list_p (const_rtx, const_rtx);
2674 extern void remove_node_from_expr_list (const_rtx, rtx *);
2675 extern int loc_mentioned_in_p (rtx *, const_rtx);
2676 extern rtx_insn *find_first_parameter_load (rtx, rtx);
2677 extern bool keep_with_call_p (const_rtx);
2678 extern bool label_is_jump_target_p (const_rtx, const_rtx);
2679 extern int insn_rtx_cost (rtx, bool);
2681 /* Given an insn and condition, return a canonical description of
2682 the test being made. */
2683 extern rtx canonicalize_condition (rtx_insn *, rtx, int, rtx_insn **, rtx,
2684 int, int);
2686 /* Given a JUMP_INSN, return a canonical description of the test
2687 being made. */
2688 extern rtx get_condition (rtx_insn *, rtx_insn **, int, int);
2690 /* Information about a subreg of a hard register. */
2691 struct subreg_info
2693 /* Offset of first hard register involved in the subreg. */
2694 int offset;
2695 /* Number of hard registers involved in the subreg. */
2696 int nregs;
2697 /* Whether this subreg can be represented as a hard reg with the new
2698 mode. */
2699 bool representable_p;
2702 extern void subreg_get_info (unsigned int, enum machine_mode,
2703 unsigned int, enum machine_mode,
2704 struct subreg_info *);
2706 /* lists.c */
2708 extern void free_EXPR_LIST_list (rtx *);
2709 extern void free_INSN_LIST_list (rtx *);
2710 extern void free_EXPR_LIST_node (rtx);
2711 extern void free_INSN_LIST_node (rtx);
2712 extern rtx alloc_INSN_LIST (rtx, rtx);
2713 extern rtx copy_INSN_LIST (rtx);
2714 extern rtx concat_INSN_LIST (rtx, rtx);
2715 extern rtx alloc_EXPR_LIST (int, rtx, rtx);
2716 extern void remove_free_INSN_LIST_elem (rtx, rtx *);
2717 extern rtx remove_list_elem (rtx, rtx *);
2718 extern rtx remove_free_INSN_LIST_node (rtx *);
2719 extern rtx remove_free_EXPR_LIST_node (rtx *);
2722 /* reginfo.c */
2724 /* Resize reg info. */
2725 extern bool resize_reg_info (void);
2726 /* Free up register info memory. */
2727 extern void free_reg_info (void);
2728 extern void init_subregs_of_mode (void);
2729 extern void finish_subregs_of_mode (void);
2731 /* recog.c */
2732 extern rtx extract_asm_operands (rtx);
2733 extern int asm_noperands (const_rtx);
2734 extern const char *decode_asm_operands (rtx, rtx *, rtx **, const char **,
2735 enum machine_mode *, location_t *);
2736 extern void get_referenced_operands (const char *, bool *, unsigned int);
2738 extern enum reg_class reg_preferred_class (int);
2739 extern enum reg_class reg_alternate_class (int);
2740 extern enum reg_class reg_allocno_class (int);
2741 extern void setup_reg_classes (int, enum reg_class, enum reg_class,
2742 enum reg_class);
2744 extern void split_all_insns (void);
2745 extern unsigned int split_all_insns_noflow (void);
2747 #define MAX_SAVED_CONST_INT 64
2748 extern GTY(()) rtx const_int_rtx[MAX_SAVED_CONST_INT * 2 + 1];
2750 #define const0_rtx (const_int_rtx[MAX_SAVED_CONST_INT])
2751 #define const1_rtx (const_int_rtx[MAX_SAVED_CONST_INT+1])
2752 #define const2_rtx (const_int_rtx[MAX_SAVED_CONST_INT+2])
2753 #define constm1_rtx (const_int_rtx[MAX_SAVED_CONST_INT-1])
2754 extern GTY(()) rtx const_true_rtx;
2756 extern GTY(()) rtx const_tiny_rtx[4][(int) MAX_MACHINE_MODE];
2758 /* Returns a constant 0 rtx in mode MODE. Integer modes are treated the
2759 same as VOIDmode. */
2761 #define CONST0_RTX(MODE) (const_tiny_rtx[0][(int) (MODE)])
2763 /* Likewise, for the constants 1 and 2 and -1. */
2765 #define CONST1_RTX(MODE) (const_tiny_rtx[1][(int) (MODE)])
2766 #define CONST2_RTX(MODE) (const_tiny_rtx[2][(int) (MODE)])
2767 #define CONSTM1_RTX(MODE) (const_tiny_rtx[3][(int) (MODE)])
2769 extern GTY(()) rtx pc_rtx;
2770 extern GTY(()) rtx cc0_rtx;
2771 extern GTY(()) rtx ret_rtx;
2772 extern GTY(()) rtx simple_return_rtx;
2774 /* If HARD_FRAME_POINTER_REGNUM is defined, then a special dummy reg
2775 is used to represent the frame pointer. This is because the
2776 hard frame pointer and the automatic variables are separated by an amount
2777 that cannot be determined until after register allocation. We can assume
2778 that in this case ELIMINABLE_REGS will be defined, one action of which
2779 will be to eliminate FRAME_POINTER_REGNUM into HARD_FRAME_POINTER_REGNUM. */
2780 #ifndef HARD_FRAME_POINTER_REGNUM
2781 #define HARD_FRAME_POINTER_REGNUM FRAME_POINTER_REGNUM
2782 #endif
2784 #ifndef HARD_FRAME_POINTER_IS_FRAME_POINTER
2785 #define HARD_FRAME_POINTER_IS_FRAME_POINTER \
2786 (HARD_FRAME_POINTER_REGNUM == FRAME_POINTER_REGNUM)
2787 #endif
2789 #ifndef HARD_FRAME_POINTER_IS_ARG_POINTER
2790 #define HARD_FRAME_POINTER_IS_ARG_POINTER \
2791 (HARD_FRAME_POINTER_REGNUM == ARG_POINTER_REGNUM)
2792 #endif
2794 /* Index labels for global_rtl. */
2795 enum global_rtl_index
2797 GR_STACK_POINTER,
2798 GR_FRAME_POINTER,
2799 /* For register elimination to work properly these hard_frame_pointer_rtx,
2800 frame_pointer_rtx, and arg_pointer_rtx must be the same if they refer to
2801 the same register. */
2802 #if FRAME_POINTER_REGNUM == ARG_POINTER_REGNUM
2803 GR_ARG_POINTER = GR_FRAME_POINTER,
2804 #endif
2805 #if HARD_FRAME_POINTER_IS_FRAME_POINTER
2806 GR_HARD_FRAME_POINTER = GR_FRAME_POINTER,
2807 #else
2808 GR_HARD_FRAME_POINTER,
2809 #endif
2810 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
2811 #if HARD_FRAME_POINTER_IS_ARG_POINTER
2812 GR_ARG_POINTER = GR_HARD_FRAME_POINTER,
2813 #else
2814 GR_ARG_POINTER,
2815 #endif
2816 #endif
2817 GR_VIRTUAL_INCOMING_ARGS,
2818 GR_VIRTUAL_STACK_ARGS,
2819 GR_VIRTUAL_STACK_DYNAMIC,
2820 GR_VIRTUAL_OUTGOING_ARGS,
2821 GR_VIRTUAL_CFA,
2822 GR_VIRTUAL_PREFERRED_STACK_BOUNDARY,
2824 GR_MAX
2827 /* Target-dependent globals. */
2828 struct GTY(()) target_rtl {
2829 /* All references to the hard registers in global_rtl_index go through
2830 these unique rtl objects. On machines where the frame-pointer and
2831 arg-pointer are the same register, they use the same unique object.
2833 After register allocation, other rtl objects which used to be pseudo-regs
2834 may be clobbered to refer to the frame-pointer register.
2835 But references that were originally to the frame-pointer can be
2836 distinguished from the others because they contain frame_pointer_rtx.
2838 When to use frame_pointer_rtx and hard_frame_pointer_rtx is a little
2839 tricky: until register elimination has taken place hard_frame_pointer_rtx
2840 should be used if it is being set, and frame_pointer_rtx otherwise. After
2841 register elimination hard_frame_pointer_rtx should always be used.
2842 On machines where the two registers are same (most) then these are the
2843 same. */
2844 rtx x_global_rtl[GR_MAX];
2846 /* A unique representation of (REG:Pmode PIC_OFFSET_TABLE_REGNUM). */
2847 rtx x_pic_offset_table_rtx;
2849 /* A unique representation of (REG:Pmode RETURN_ADDRESS_POINTER_REGNUM).
2850 This is used to implement __builtin_return_address for some machines;
2851 see for instance the MIPS port. */
2852 rtx x_return_address_pointer_rtx;
2854 /* Commonly used RTL for hard registers. These objects are not
2855 necessarily unique, so we allocate them separately from global_rtl.
2856 They are initialized once per compilation unit, then copied into
2857 regno_reg_rtx at the beginning of each function. */
2858 rtx x_initial_regno_reg_rtx[FIRST_PSEUDO_REGISTER];
2860 /* A sample (mem:M stack_pointer_rtx) rtx for each mode M. */
2861 rtx x_top_of_stack[MAX_MACHINE_MODE];
2863 /* Static hunks of RTL used by the aliasing code; these are treated
2864 as persistent to avoid unnecessary RTL allocations. */
2865 rtx x_static_reg_base_value[FIRST_PSEUDO_REGISTER];
2867 /* The default memory attributes for each mode. */
2868 struct mem_attrs *x_mode_mem_attrs[(int) MAX_MACHINE_MODE];
2870 /* Track if RTL has been initialized. */
2871 bool target_specific_initialized;
2874 extern GTY(()) struct target_rtl default_target_rtl;
2875 #if SWITCHABLE_TARGET
2876 extern struct target_rtl *this_target_rtl;
2877 #else
2878 #define this_target_rtl (&default_target_rtl)
2879 #endif
2881 #define global_rtl \
2882 (this_target_rtl->x_global_rtl)
2883 #define pic_offset_table_rtx \
2884 (this_target_rtl->x_pic_offset_table_rtx)
2885 #define return_address_pointer_rtx \
2886 (this_target_rtl->x_return_address_pointer_rtx)
2887 #define top_of_stack \
2888 (this_target_rtl->x_top_of_stack)
2889 #define mode_mem_attrs \
2890 (this_target_rtl->x_mode_mem_attrs)
2892 /* All references to certain hard regs, except those created
2893 by allocating pseudo regs into them (when that's possible),
2894 go through these unique rtx objects. */
2895 #define stack_pointer_rtx (global_rtl[GR_STACK_POINTER])
2896 #define frame_pointer_rtx (global_rtl[GR_FRAME_POINTER])
2897 #define hard_frame_pointer_rtx (global_rtl[GR_HARD_FRAME_POINTER])
2898 #define arg_pointer_rtx (global_rtl[GR_ARG_POINTER])
2900 #ifndef GENERATOR_FILE
2901 /* Return the attributes of a MEM rtx. */
2902 static inline struct mem_attrs *
2903 get_mem_attrs (const_rtx x)
2905 struct mem_attrs *attrs;
2907 attrs = MEM_ATTRS (x);
2908 if (!attrs)
2909 attrs = mode_mem_attrs[(int) GET_MODE (x)];
2910 return attrs;
2912 #endif
2914 /* Include the RTL generation functions. */
2916 #ifndef GENERATOR_FILE
2917 #include "genrtl.h"
2918 #undef gen_rtx_ASM_INPUT
2919 #define gen_rtx_ASM_INPUT(MODE, ARG0) \
2920 gen_rtx_fmt_si (ASM_INPUT, (MODE), (ARG0), 0)
2921 #define gen_rtx_ASM_INPUT_loc(MODE, ARG0, LOC) \
2922 gen_rtx_fmt_si (ASM_INPUT, (MODE), (ARG0), (LOC))
2923 #endif
2925 /* There are some RTL codes that require special attention; the
2926 generation functions included above do the raw handling. If you
2927 add to this list, modify special_rtx in gengenrtl.c as well. */
2929 extern rtx gen_rtx_CONST_INT (enum machine_mode, HOST_WIDE_INT);
2930 extern rtx gen_rtx_CONST_VECTOR (enum machine_mode, rtvec);
2931 extern rtx gen_raw_REG (enum machine_mode, int);
2932 extern rtx gen_rtx_REG (enum machine_mode, unsigned);
2933 extern rtx gen_rtx_SUBREG (enum machine_mode, rtx, int);
2934 extern rtx gen_rtx_MEM (enum machine_mode, rtx);
2935 extern rtx gen_rtx_VAR_LOCATION (enum machine_mode, tree, rtx,
2936 enum var_init_status);
2938 #define GEN_INT(N) gen_rtx_CONST_INT (VOIDmode, (N))
2940 /* Virtual registers are used during RTL generation to refer to locations into
2941 the stack frame when the actual location isn't known until RTL generation
2942 is complete. The routine instantiate_virtual_regs replaces these with
2943 the proper value, which is normally {frame,arg,stack}_pointer_rtx plus
2944 a constant. */
2946 #define FIRST_VIRTUAL_REGISTER (FIRST_PSEUDO_REGISTER)
2948 /* This points to the first word of the incoming arguments passed on the stack,
2949 either by the caller or by the callee when pretending it was passed by the
2950 caller. */
2952 #define virtual_incoming_args_rtx (global_rtl[GR_VIRTUAL_INCOMING_ARGS])
2954 #define VIRTUAL_INCOMING_ARGS_REGNUM (FIRST_VIRTUAL_REGISTER)
2956 /* If FRAME_GROWS_DOWNWARD, this points to immediately above the first
2957 variable on the stack. Otherwise, it points to the first variable on
2958 the stack. */
2960 #define virtual_stack_vars_rtx (global_rtl[GR_VIRTUAL_STACK_ARGS])
2962 #define VIRTUAL_STACK_VARS_REGNUM ((FIRST_VIRTUAL_REGISTER) + 1)
2964 /* This points to the location of dynamically-allocated memory on the stack
2965 immediately after the stack pointer has been adjusted by the amount
2966 desired. */
2968 #define virtual_stack_dynamic_rtx (global_rtl[GR_VIRTUAL_STACK_DYNAMIC])
2970 #define VIRTUAL_STACK_DYNAMIC_REGNUM ((FIRST_VIRTUAL_REGISTER) + 2)
2972 /* This points to the location in the stack at which outgoing arguments should
2973 be written when the stack is pre-pushed (arguments pushed using push
2974 insns always use sp). */
2976 #define virtual_outgoing_args_rtx (global_rtl[GR_VIRTUAL_OUTGOING_ARGS])
2978 #define VIRTUAL_OUTGOING_ARGS_REGNUM ((FIRST_VIRTUAL_REGISTER) + 3)
2980 /* This points to the Canonical Frame Address of the function. This
2981 should correspond to the CFA produced by INCOMING_FRAME_SP_OFFSET,
2982 but is calculated relative to the arg pointer for simplicity; the
2983 frame pointer nor stack pointer are necessarily fixed relative to
2984 the CFA until after reload. */
2986 #define virtual_cfa_rtx (global_rtl[GR_VIRTUAL_CFA])
2988 #define VIRTUAL_CFA_REGNUM ((FIRST_VIRTUAL_REGISTER) + 4)
2990 #define LAST_VIRTUAL_POINTER_REGISTER ((FIRST_VIRTUAL_REGISTER) + 4)
2992 /* This is replaced by crtl->preferred_stack_boundary / BITS_PER_UNIT
2993 when finalized. */
2995 #define virtual_preferred_stack_boundary_rtx \
2996 (global_rtl[GR_VIRTUAL_PREFERRED_STACK_BOUNDARY])
2998 #define VIRTUAL_PREFERRED_STACK_BOUNDARY_REGNUM \
2999 ((FIRST_VIRTUAL_REGISTER) + 5)
3001 #define LAST_VIRTUAL_REGISTER ((FIRST_VIRTUAL_REGISTER) + 5)
3003 /* Nonzero if REGNUM is a pointer into the stack frame. */
3004 #define REGNO_PTR_FRAME_P(REGNUM) \
3005 ((REGNUM) == STACK_POINTER_REGNUM \
3006 || (REGNUM) == FRAME_POINTER_REGNUM \
3007 || (REGNUM) == HARD_FRAME_POINTER_REGNUM \
3008 || (REGNUM) == ARG_POINTER_REGNUM \
3009 || ((REGNUM) >= FIRST_VIRTUAL_REGISTER \
3010 && (REGNUM) <= LAST_VIRTUAL_POINTER_REGISTER))
3012 /* REGNUM never really appearing in the INSN stream. */
3013 #define INVALID_REGNUM (~(unsigned int) 0)
3015 /* REGNUM for which no debug information can be generated. */
3016 #define IGNORED_DWARF_REGNUM (INVALID_REGNUM - 1)
3018 extern rtx output_constant_def (tree, int);
3019 extern rtx lookup_constant_def (tree);
3021 /* Nonzero after end of reload pass.
3022 Set to 1 or 0 by reload1.c. */
3024 extern int reload_completed;
3026 /* Nonzero after thread_prologue_and_epilogue_insns has run. */
3027 extern int epilogue_completed;
3029 /* Set to 1 while reload_as_needed is operating.
3030 Required by some machines to handle any generated moves differently. */
3032 extern int reload_in_progress;
3034 /* Set to 1 while in lra. */
3035 extern int lra_in_progress;
3037 /* This macro indicates whether you may create a new
3038 pseudo-register. */
3040 #define can_create_pseudo_p() (!reload_in_progress && !reload_completed)
3042 #ifdef STACK_REGS
3043 /* Nonzero after end of regstack pass.
3044 Set to 1 or 0 by reg-stack.c. */
3045 extern int regstack_completed;
3046 #endif
3048 /* If this is nonzero, we do not bother generating VOLATILE
3049 around volatile memory references, and we are willing to
3050 output indirect addresses. If cse is to follow, we reject
3051 indirect addresses so a useful potential cse is generated;
3052 if it is used only once, instruction combination will produce
3053 the same indirect address eventually. */
3054 extern int cse_not_expected;
3056 /* Translates rtx code to tree code, for those codes needed by
3057 REAL_ARITHMETIC. The function returns an int because the caller may not
3058 know what `enum tree_code' means. */
3060 extern int rtx_to_tree_code (enum rtx_code);
3062 /* In cse.c */
3063 extern int delete_trivially_dead_insns (rtx_insn *, int);
3064 extern int exp_equiv_p (const_rtx, const_rtx, int, bool);
3065 extern unsigned hash_rtx (const_rtx x, enum machine_mode, int *, int *, bool);
3067 /* In dse.c */
3068 extern bool check_for_inc_dec (rtx_insn *insn);
3070 /* In jump.c */
3071 extern int comparison_dominates_p (enum rtx_code, enum rtx_code);
3072 extern bool jump_to_label_p (rtx);
3073 extern int condjump_p (const_rtx);
3074 extern int any_condjump_p (const_rtx);
3075 extern int any_uncondjump_p (const_rtx);
3076 extern rtx pc_set (const_rtx);
3077 extern rtx condjump_label (const_rtx);
3078 extern int simplejump_p (const_rtx);
3079 extern int returnjump_p (rtx);
3080 extern int eh_returnjump_p (rtx);
3081 extern int onlyjump_p (const_rtx);
3082 extern int only_sets_cc0_p (const_rtx);
3083 extern int sets_cc0_p (const_rtx);
3084 extern int invert_jump_1 (rtx, rtx);
3085 extern int invert_jump (rtx, rtx, int);
3086 extern int rtx_renumbered_equal_p (const_rtx, const_rtx);
3087 extern int true_regnum (const_rtx);
3088 extern unsigned int reg_or_subregno (const_rtx);
3089 extern int redirect_jump_1 (rtx, rtx);
3090 extern void redirect_jump_2 (rtx, rtx, rtx, int, int);
3091 extern int redirect_jump (rtx, rtx, int);
3092 extern void rebuild_jump_labels (rtx_insn *);
3093 extern void rebuild_jump_labels_chain (rtx_insn *);
3094 extern rtx reversed_comparison (const_rtx, enum machine_mode);
3095 extern enum rtx_code reversed_comparison_code (const_rtx, const_rtx);
3096 extern enum rtx_code reversed_comparison_code_parts (enum rtx_code, const_rtx,
3097 const_rtx, const_rtx);
3098 extern void delete_for_peephole (rtx_insn *, rtx_insn *);
3099 extern int condjump_in_parallel_p (const_rtx);
3101 /* In emit-rtl.c. */
3102 extern int max_reg_num (void);
3103 extern int max_label_num (void);
3104 extern int get_first_label_num (void);
3105 extern void maybe_set_first_label_num (rtx);
3106 extern void delete_insns_since (rtx_insn *);
3107 extern void mark_reg_pointer (rtx, int);
3108 extern void mark_user_reg (rtx);
3109 extern void reset_used_flags (rtx);
3110 extern void set_used_flags (rtx);
3111 extern void reorder_insns (rtx_insn *, rtx_insn *, rtx_insn *);
3112 extern void reorder_insns_nobb (rtx_insn *, rtx_insn *, rtx_insn *);
3113 extern int get_max_insn_count (void);
3114 extern int in_sequence_p (void);
3115 extern void init_emit (void);
3116 extern void init_emit_regs (void);
3117 extern void init_derived_machine_modes (void);
3118 extern void init_emit_once (void);
3119 extern void push_topmost_sequence (void);
3120 extern void pop_topmost_sequence (void);
3121 extern void set_new_first_and_last_insn (rtx_insn *, rtx_insn *);
3122 extern unsigned int unshare_all_rtl (void);
3123 extern void unshare_all_rtl_again (rtx_insn *);
3124 extern void unshare_all_rtl_in_chain (rtx);
3125 extern void verify_rtl_sharing (void);
3126 extern void add_insn (rtx_insn *);
3127 extern void add_insn_before (rtx, rtx, basic_block);
3128 extern void add_insn_after (rtx, rtx, basic_block);
3129 extern void remove_insn (rtx);
3130 extern rtx_insn *emit (rtx);
3131 extern void delete_insn (rtx);
3132 extern rtx_insn *entry_of_function (void);
3133 extern void emit_insn_at_entry (rtx);
3134 extern void delete_insn_chain (rtx, rtx, bool);
3135 extern rtx_insn *unlink_insn_chain (rtx_insn *, rtx_insn *);
3136 extern void delete_insn_and_edges (rtx_insn *);
3137 extern rtx gen_lowpart_SUBREG (enum machine_mode, rtx);
3138 extern rtx gen_const_mem (enum machine_mode, rtx);
3139 extern rtx gen_frame_mem (enum machine_mode, rtx);
3140 extern rtx gen_tmp_stack_mem (enum machine_mode, rtx);
3141 extern bool validate_subreg (enum machine_mode, enum machine_mode,
3142 const_rtx, unsigned int);
3144 /* In combine.c */
3145 extern unsigned int extended_count (const_rtx, enum machine_mode, int);
3146 extern rtx remove_death (unsigned int, rtx_insn *);
3147 extern void dump_combine_stats (FILE *);
3148 extern void dump_combine_total_stats (FILE *);
3149 extern rtx make_compound_operation (rtx, enum rtx_code);
3151 /* In cfgcleanup.c */
3152 extern void delete_dead_jumptables (void);
3154 /* In sched-rgn.c. */
3155 extern void schedule_insns (void);
3157 /* In sched-ebb.c. */
3158 extern void schedule_ebbs (void);
3160 /* In sel-sched-dump.c. */
3161 extern void sel_sched_fix_param (const char *param, const char *val);
3163 /* In print-rtl.c */
3164 extern const char *print_rtx_head;
3165 extern void debug (const rtx_def &ref);
3166 extern void debug (const rtx_def *ptr);
3167 extern void debug_rtx (const_rtx);
3168 extern void debug_rtx_list (const rtx_insn *, int);
3169 extern void debug_rtx_range (const rtx_insn *, const rtx_insn *);
3170 extern const_rtx debug_rtx_find (const rtx_insn *, int);
3171 extern void print_mem_expr (FILE *, const_tree);
3172 extern void print_rtl (FILE *, const_rtx);
3173 extern void print_simple_rtl (FILE *, const_rtx);
3174 extern int print_rtl_single (FILE *, const_rtx);
3175 extern int print_rtl_single_with_indent (FILE *, const_rtx, int);
3176 extern void print_inline_rtx (FILE *, const_rtx, int);
3178 /* Functions in sched-vis.c. FIXME: Ideally these functions would
3179 not be in sched-vis.c but in rtl.c, because they are not only used
3180 by the scheduler anymore but for all "slim" RTL dumping. */
3181 extern void dump_value_slim (FILE *, const_rtx, int);
3182 extern void dump_insn_slim (FILE *, const_rtx);
3183 extern void dump_rtl_slim (FILE *, const_rtx, const_rtx, int, int);
3184 extern void print_value (pretty_printer *, const_rtx, int);
3185 extern void print_pattern (pretty_printer *, const_rtx, int);
3186 extern void print_insn (pretty_printer *, const_rtx, int);
3187 extern void rtl_dump_bb_for_graph (pretty_printer *, basic_block);
3188 extern const char *str_pattern_slim (const_rtx);
3190 /* In function.c */
3191 extern void reposition_prologue_and_epilogue_notes (void);
3192 extern int prologue_epilogue_contains (const_rtx);
3193 extern int sibcall_epilogue_contains (const_rtx);
3194 extern void update_temp_slot_address (rtx, rtx);
3195 extern void maybe_copy_prologue_epilogue_insn (rtx, rtx);
3196 extern void set_return_jump_label (rtx);
3198 /* In stmt.c */
3199 extern void expand_null_return (void);
3200 extern void expand_naked_return (void);
3201 extern void emit_jump (rtx);
3203 /* In expr.c */
3204 extern rtx move_by_pieces (rtx, rtx, unsigned HOST_WIDE_INT,
3205 unsigned int, int);
3206 extern HOST_WIDE_INT find_args_size_adjust (rtx);
3207 extern int fixup_args_size_notes (rtx, rtx, int);
3209 /* In cfgrtl.c */
3210 extern void print_rtl_with_bb (FILE *, const rtx_insn *, int);
3211 extern rtx_insn *duplicate_insn_chain (rtx_insn *, rtx_insn *);
3213 /* In expmed.c */
3214 extern void init_expmed (void);
3215 extern void expand_inc (rtx, rtx);
3216 extern void expand_dec (rtx, rtx);
3218 /* In lower-subreg.c */
3219 extern void init_lower_subreg (void);
3221 /* In gcse.c */
3222 extern bool can_copy_p (enum machine_mode);
3223 extern bool can_assign_to_reg_without_clobbers_p (rtx);
3224 extern rtx fis_get_condition (rtx_insn *);
3226 /* In ira.c */
3227 #ifdef HARD_CONST
3228 extern HARD_REG_SET eliminable_regset;
3229 #endif
3230 extern void mark_elimination (int, int);
3232 /* In reginfo.c */
3233 extern int reg_classes_intersect_p (reg_class_t, reg_class_t);
3234 extern int reg_class_subset_p (reg_class_t, reg_class_t);
3235 extern void globalize_reg (tree, int);
3236 extern void init_reg_modes_target (void);
3237 extern void init_regs (void);
3238 extern void reinit_regs (void);
3239 extern void init_fake_stack_mems (void);
3240 extern void save_register_info (void);
3241 extern void init_reg_sets (void);
3242 extern void regclass (rtx, int);
3243 extern void reg_scan (rtx_insn *, unsigned int);
3244 extern void fix_register (const char *, int, int);
3245 extern bool invalid_mode_change_p (unsigned int, enum reg_class);
3247 /* In reload1.c */
3248 extern int function_invariant_p (const_rtx);
3250 /* In calls.c */
3251 enum libcall_type
3253 LCT_NORMAL = 0,
3254 LCT_CONST = 1,
3255 LCT_PURE = 2,
3256 LCT_NORETURN = 3,
3257 LCT_THROW = 4,
3258 LCT_RETURNS_TWICE = 5
3261 extern void emit_library_call (rtx, enum libcall_type, enum machine_mode, int,
3262 ...);
3263 extern rtx emit_library_call_value (rtx, rtx, enum libcall_type,
3264 enum machine_mode, int, ...);
3266 /* In varasm.c */
3267 extern void init_varasm_once (void);
3269 extern rtx make_debug_expr_from_rtl (const_rtx);
3271 /* In read-rtl.c */
3272 extern bool read_rtx (const char *, rtx *);
3274 /* In alias.c */
3275 extern rtx canon_rtx (rtx);
3276 extern int true_dependence (const_rtx, enum machine_mode, const_rtx);
3277 extern rtx get_addr (rtx);
3278 extern int canon_true_dependence (const_rtx, enum machine_mode, rtx,
3279 const_rtx, rtx);
3280 extern int read_dependence (const_rtx, const_rtx);
3281 extern int anti_dependence (const_rtx, const_rtx);
3282 extern int canon_anti_dependence (const_rtx, bool,
3283 const_rtx, enum machine_mode, rtx);
3284 extern int output_dependence (const_rtx, const_rtx);
3285 extern int may_alias_p (const_rtx, const_rtx);
3286 extern void init_alias_target (void);
3287 extern void init_alias_analysis (void);
3288 extern void end_alias_analysis (void);
3289 extern void vt_equate_reg_base_value (const_rtx, const_rtx);
3290 extern bool memory_modified_in_insn_p (const_rtx, const_rtx);
3291 extern bool memory_must_be_modified_in_insn_p (const_rtx, const_rtx);
3292 extern bool may_be_sp_based_p (rtx);
3293 extern rtx gen_hard_reg_clobber (enum machine_mode, unsigned int);
3294 extern rtx get_reg_known_value (unsigned int);
3295 extern bool get_reg_known_equiv_p (unsigned int);
3296 extern rtx get_reg_base_value (unsigned int);
3298 #ifdef STACK_REGS
3299 extern int stack_regs_mentioned (const_rtx insn);
3300 #endif
3302 /* In toplev.c */
3303 extern GTY(()) rtx stack_limit_rtx;
3305 /* In predict.c */
3306 extern void invert_br_probabilities (rtx);
3307 extern bool expensive_function_p (int);
3309 /* In var-tracking.c */
3310 extern unsigned int variable_tracking_main (void);
3312 /* In stor-layout.c. */
3313 extern void get_mode_bounds (enum machine_mode, int, enum machine_mode,
3314 rtx *, rtx *);
3316 /* In loop-iv.c */
3317 extern rtx canon_condition (rtx);
3318 extern void simplify_using_condition (rtx, rtx *, bitmap);
3320 /* In final.c */
3321 extern unsigned int compute_alignments (void);
3322 extern void update_alignments (vec<rtx> &);
3323 extern int asm_str_count (const char *templ);
3325 struct rtl_hooks
3327 rtx (*gen_lowpart) (enum machine_mode, rtx);
3328 rtx (*gen_lowpart_no_emit) (enum machine_mode, rtx);
3329 rtx (*reg_nonzero_bits) (const_rtx, enum machine_mode, const_rtx, enum machine_mode,
3330 unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT *);
3331 rtx (*reg_num_sign_bit_copies) (const_rtx, enum machine_mode, const_rtx, enum machine_mode,
3332 unsigned int, unsigned int *);
3333 bool (*reg_truncated_to_mode) (enum machine_mode, const_rtx);
3335 /* Whenever you add entries here, make sure you adjust rtlhooks-def.h. */
3338 /* Each pass can provide its own. */
3339 extern struct rtl_hooks rtl_hooks;
3341 /* ... but then it has to restore these. */
3342 extern const struct rtl_hooks general_rtl_hooks;
3344 /* Keep this for the nonce. */
3345 #define gen_lowpart rtl_hooks.gen_lowpart
3347 extern void insn_locations_init (void);
3348 extern void insn_locations_finalize (void);
3349 extern void set_curr_insn_location (location_t);
3350 extern location_t curr_insn_location (void);
3351 extern bool optimize_insn_for_size_p (void);
3352 extern bool optimize_insn_for_speed_p (void);
3354 /* rtl-error.c */
3355 extern void _fatal_insn_not_found (const_rtx, const char *, int, const char *)
3356 ATTRIBUTE_NORETURN;
3357 extern void _fatal_insn (const char *, const_rtx, const char *, int, const char *)
3358 ATTRIBUTE_NORETURN;
3360 #define fatal_insn(msgid, insn) \
3361 _fatal_insn (msgid, insn, __FILE__, __LINE__, __FUNCTION__)
3362 #define fatal_insn_not_found(insn) \
3363 _fatal_insn_not_found (insn, __FILE__, __LINE__, __FUNCTION__)
3365 /* reginfo.c */
3366 extern tree GTY(()) global_regs_decl[FIRST_PSEUDO_REGISTER];
3369 #endif /* ! GCC_RTL_H */