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
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
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/>. */
24 #include "statistics.h"
29 #include "fixed-value.h"
36 /* Value used by some passes to "recognize" noop moves as valid
38 #define NOOP_MOVE_INSN_CODE INT_MAX
40 /* Register Transfer Language EXPRESSIONS CODES */
42 #define RTX_CODE enum rtx_code
45 #define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) ENUM ,
46 #include "rtl.def" /* rtl expressions are documented here */
49 LAST_AND_UNUSED_RTX_CODE
}; /* A convenient way to get a value for
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... */
58 # define NON_GENERATOR_NUM_RTX_CODE ((int) MATCH_OPERAND)
61 /* Register Transfer Language EXPRESSIONS CODE CLASSES */
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. */
73 /* Must follow the four preceding values. */
80 /* Bit 0 = 1 if constant. */
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;
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
134 unsigned max_after_base
: 1; /* maximum address target label is
136 /* Set by the actual branch shortening process - ONLY WHEN OPTIMIZING - : */
137 unsigned offset_unsigned
: 1; /* offsets have to be treated as unsigned. */
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.) */
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
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. */
168 /* The address space that the memory reference uses. */
169 unsigned char addrspace
;
171 /* True if OFFSET is known. */
174 /* True if SIZE is known. */
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. */
195 unsigned int rt_uint
;
199 enum machine_mode rt_type
;
200 addr_diff_vec_flags rt_addr_diff_vec_flags
;
201 struct cselib_val
*rt_cselib
;
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. */
231 /* The alignment of the first object, measured in bits. */
232 unsigned int alignment
;
234 /* The total size of the objects, measured in bytes. */
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
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:
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
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
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
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
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;
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;
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
375 /* The ORIGINAL_REGNO of a REG. */
376 unsigned int original_regno
;
378 /* The INSN_UID of an RTX_INSN-class code. */
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
;
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. */
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 /* A node for constructing singly-linked lists of rtx. */
407 class GTY(()) rtx_expr_list
: public rtx_def
409 /* No extra fields, but adds invariant: (GET_CODE (X) == EXPR_LIST). */
412 /* Get next in list. */
413 rtx_expr_list
*next () const;
415 /* Get at the underlying rtx. */
416 rtx
element () const;
422 is_a_helper
<rtx_expr_list
*>::test (rtx rt
)
424 return rt
->code
== EXPR_LIST
;
427 class GTY(()) rtx_insn_list
: public rtx_def
429 /* No extra fields, but adds invariant: (GET_CODE (X) == INSN_LIST).
431 This is an instance of:
433 DEF_RTL_EXPR(INSN_LIST, "insn_list", "ue", RTX_EXTRA)
435 i.e. a node for constructing singly-linked lists of rtx_insn *, where
436 the list is "external" to the insn (as opposed to the doubly-linked
437 list embedded within rtx_insn itself). */
440 /* Get next in list. */
441 rtx_insn_list
*next () const;
443 /* Get at the underlying instruction. */
444 rtx_insn
*insn () const;
451 is_a_helper
<rtx_insn_list
*>::test (rtx rt
)
453 return rt
->code
== INSN_LIST
;
456 /* A node with invariant GET_CODE (X) == SEQUENCE i.e. a vector of rtx,
457 typically (but not always) of rtx_insn *, used in the late passes. */
459 class GTY(()) rtx_sequence
: public rtx_def
461 /* No extra fields, but adds invariant: (GET_CODE (X) == SEQUENCE). */
464 /* Get number of elements in sequence. */
467 /* Get i-th element of the sequence. */
468 rtx
element (int index
) const;
470 /* Get i-th element of the sequence, with a checked cast to
472 rtx_insn
*insn (int index
) const;
478 is_a_helper
<rtx_sequence
*>::test (rtx rt
)
480 return rt
->code
== SEQUENCE
;
486 is_a_helper
<const rtx_sequence
*>::test (const_rtx rt
)
488 return rt
->code
== SEQUENCE
;
491 class GTY(()) rtx_insn
: public rtx_def
493 /* No extra fields, but adds the invariant:
497 || JUMP_TABLE_DATA_P (X)
501 i.e. that we must be able to use the following:
505 i.e. we have an rtx that has an INSN_UID field and can be part of
506 a linked list of insns.
510 /* Subclasses of rtx_insn. */
512 class GTY(()) rtx_debug_insn
: public rtx_insn
514 /* No extra fields, but adds the invariant:
515 DEBUG_INSN_P (X) aka (GET_CODE (X) == DEBUG_INSN)
516 i.e. an annotation for tracking variable assignments.
518 This is an instance of:
519 DEF_RTL_EXPR(DEBUG_INSN, "debug_insn", "uuBeiie", RTX_INSN)
523 class GTY(()) rtx_nonjump_insn
: public rtx_insn
525 /* No extra fields, but adds the invariant:
526 NONJUMP_INSN_P (X) aka (GET_CODE (X) == INSN)
527 i.e an instruction that cannot jump.
529 This is an instance of:
530 DEF_RTL_EXPR(INSN, "insn", "uuBeiie", RTX_INSN)
534 class GTY(()) rtx_jump_insn
: public rtx_insn
536 /* No extra fields, but adds the invariant:
537 JUMP_P (X) aka (GET_CODE (X) == JUMP_INSN)
538 i.e. an instruction that can possibly jump.
540 This is an instance of:
541 DEF_RTL_EXPR(JUMP_INSN, "jump_insn", "uuBeiie0", RTX_INSN)
545 class GTY(()) rtx_call_insn
: public rtx_insn
547 /* No extra fields, but adds the invariant:
548 CALL_P (X) aka (GET_CODE (X) == CALL_INSN)
549 i.e. an instruction that can possibly call a subroutine
550 but which will not change which instruction comes next
551 in the current function.
553 This is an instance of:
554 DEF_RTL_EXPR(CALL_INSN, "call_insn", "uuBeiiee", RTX_INSN)
558 class GTY(()) rtx_jump_table_data
: public rtx_insn
560 /* No extra fields, but adds the invariant:
561 JUMP_TABLE_DATA_P (X) aka (GET_CODE (INSN) == JUMP_TABLE_DATA)
562 i.e. a data for a jump table, considered an instruction for
565 This is an instance of:
566 DEF_RTL_EXPR(JUMP_TABLE_DATA, "jump_table_data", "uuBe0000", RTX_INSN)
571 /* This can be either:
573 (a) a table of absolute jumps, in which case PATTERN (this) is an
574 ADDR_VEC with arg 0 a vector of labels, or
576 (b) a table of relative jumps (e.g. for -fPIC), in which case
577 PATTERN (this) is an ADDR_DIFF_VEC, with arg 0 a LABEL_REF and
578 arg 1 the vector of labels.
580 This method gets the underlying vec. */
582 inline rtvec
get_labels () const;
585 class GTY(()) rtx_barrier
: public rtx_insn
587 /* No extra fields, but adds the invariant:
588 BARRIER_P (X) aka (GET_CODE (X) == BARRIER)
589 i.e. a marker that indicates that control will not flow through.
591 This is an instance of:
592 DEF_RTL_EXPR(BARRIER, "barrier", "uu00000", RTX_EXTRA)
596 class GTY(()) rtx_code_label
: public rtx_insn
598 /* No extra fields, but adds the invariant:
599 LABEL_P (X) aka (GET_CODE (X) == CODE_LABEL)
600 i.e. a label in the assembler.
602 This is an instance of:
603 DEF_RTL_EXPR(CODE_LABEL, "code_label", "uuB00is", RTX_EXTRA)
607 class GTY(()) rtx_note
: public rtx_insn
609 /* No extra fields, but adds the invariant:
610 NOTE_P(X) aka (GET_CODE (X) == NOTE)
611 i.e. a note about the corresponding source code.
613 This is an instance of:
614 DEF_RTL_EXPR(NOTE, "note", "uuB0ni", RTX_EXTRA)
618 /* The size in bytes of an rtx header (code, mode and flags). */
619 #define RTX_HDR_SIZE offsetof (struct rtx_def, u)
621 /* The size in bytes of an rtx with code CODE. */
622 #define RTX_CODE_SIZE(CODE) rtx_code_size[CODE]
624 #define NULL_RTX (rtx) 0
626 /* The "next" and "previous" RTX, relative to this one. */
628 #define RTX_NEXT(X) (rtx_next[GET_CODE (X)] == 0 ? NULL \
629 : *(rtx *)(((char *)X) + rtx_next[GET_CODE (X)]))
631 /* FIXME: the "NEXT_INSN (PREV_INSN (X)) == X" condition shouldn't be needed.
633 #define RTX_PREV(X) ((INSN_P (X) \
635 || JUMP_TABLE_DATA_P (X) \
638 && PREV_INSN (X) != NULL \
639 && NEXT_INSN (PREV_INSN (X)) == X \
640 ? PREV_INSN (X) : NULL)
642 /* Define macros to access the `code' field of the rtx. */
644 #define GET_CODE(RTX) ((enum rtx_code) (RTX)->code)
645 #define PUT_CODE(RTX, CODE) ((RTX)->code = (CODE))
647 #define GET_MODE(RTX) ((enum machine_mode) (RTX)->mode)
648 #define PUT_MODE(RTX, MODE) ((RTX)->mode = (MODE))
650 /* RTL vector. These appear inside RTX's when there is a need
651 for a variable number of things. The principle use is inside
652 PARALLEL expressions. */
654 struct GTY(()) rtvec_def
{
655 int num_elem
; /* number of elements */
656 rtx
GTY ((length ("%h.num_elem"))) elem
[1];
659 #define NULL_RTVEC (rtvec) 0
661 #define GET_NUM_ELEM(RTVEC) ((RTVEC)->num_elem)
662 #define PUT_NUM_ELEM(RTVEC, NUM) ((RTVEC)->num_elem = (NUM))
664 /* Predicate yielding nonzero iff X is an rtx for a register. */
665 #define REG_P(X) (GET_CODE (X) == REG)
667 /* Predicate yielding nonzero iff X is an rtx for a memory location. */
668 #define MEM_P(X) (GET_CODE (X) == MEM)
670 #if TARGET_SUPPORTS_WIDE_INT
672 /* Match CONST_*s that can represent compile-time constant integers. */
673 #define CASE_CONST_SCALAR_INT \
677 /* Match CONST_*s for which pointer equality corresponds to value
679 #define CASE_CONST_UNIQUE \
681 case CONST_WIDE_INT: \
685 /* Match all CONST_* rtxes. */
686 #define CASE_CONST_ANY \
688 case CONST_WIDE_INT: \
695 /* Match CONST_*s that can represent compile-time constant integers. */
696 #define CASE_CONST_SCALAR_INT \
700 /* Match CONST_*s for which pointer equality corresponds to value
702 #define CASE_CONST_UNIQUE \
707 /* Match all CONST_* rtxes. */
708 #define CASE_CONST_ANY \
715 /* Predicate yielding nonzero iff X is an rtx for a constant integer. */
716 #define CONST_INT_P(X) (GET_CODE (X) == CONST_INT)
718 /* Predicate yielding nonzero iff X is an rtx for a constant integer. */
719 #define CONST_WIDE_INT_P(X) (GET_CODE (X) == CONST_WIDE_INT)
721 /* Predicate yielding nonzero iff X is an rtx for a constant fixed-point. */
722 #define CONST_FIXED_P(X) (GET_CODE (X) == CONST_FIXED)
724 /* Predicate yielding true iff X is an rtx for a double-int
725 or floating point constant. */
726 #define CONST_DOUBLE_P(X) (GET_CODE (X) == CONST_DOUBLE)
728 /* Predicate yielding true iff X is an rtx for a double-int. */
729 #define CONST_DOUBLE_AS_INT_P(X) \
730 (GET_CODE (X) == CONST_DOUBLE && GET_MODE (X) == VOIDmode)
732 /* Predicate yielding true iff X is an rtx for a integer const. */
733 #if TARGET_SUPPORTS_WIDE_INT
734 #define CONST_SCALAR_INT_P(X) \
735 (CONST_INT_P (X) || CONST_WIDE_INT_P (X))
737 #define CONST_SCALAR_INT_P(X) \
738 (CONST_INT_P (X) || CONST_DOUBLE_AS_INT_P (X))
741 /* Predicate yielding true iff X is an rtx for a double-int. */
742 #define CONST_DOUBLE_AS_FLOAT_P(X) \
743 (GET_CODE (X) == CONST_DOUBLE && GET_MODE (X) != VOIDmode)
745 /* Predicate yielding nonzero iff X is a label insn. */
746 #define LABEL_P(X) (GET_CODE (X) == CODE_LABEL)
748 /* Predicate yielding nonzero iff X is a jump insn. */
749 #define JUMP_P(X) (GET_CODE (X) == JUMP_INSN)
751 /* Predicate yielding nonzero iff X is a call insn. */
752 #define CALL_P(X) (GET_CODE (X) == CALL_INSN)
754 /* Predicate yielding nonzero iff X is an insn that cannot jump. */
755 #define NONJUMP_INSN_P(X) (GET_CODE (X) == INSN)
757 /* Predicate yielding nonzero iff X is a debug note/insn. */
758 #define DEBUG_INSN_P(X) (GET_CODE (X) == DEBUG_INSN)
760 /* Predicate yielding nonzero iff X is an insn that is not a debug insn. */
761 #define NONDEBUG_INSN_P(X) (INSN_P (X) && !DEBUG_INSN_P (X))
763 /* Nonzero if DEBUG_INSN_P may possibly hold. */
764 #define MAY_HAVE_DEBUG_INSNS (flag_var_tracking_assignments)
766 /* Predicate yielding nonzero iff X is a real insn. */
768 (NONJUMP_INSN_P (X) || DEBUG_INSN_P (X) || JUMP_P (X) || CALL_P (X))
770 /* Predicate yielding nonzero iff X is a note insn. */
771 #define NOTE_P(X) (GET_CODE (X) == NOTE)
773 /* Predicate yielding nonzero iff X is a barrier insn. */
774 #define BARRIER_P(X) (GET_CODE (X) == BARRIER)
776 /* Predicate yielding nonzero iff X is a data for a jump table. */
777 #define JUMP_TABLE_DATA_P(INSN) (GET_CODE (INSN) == JUMP_TABLE_DATA)
782 is_a_helper
<rtx_insn
*>::test (rtx rt
)
786 || JUMP_TABLE_DATA_P (rt
)
794 is_a_helper
<const rtx_insn
*>::test (const_rtx rt
)
798 || JUMP_TABLE_DATA_P (rt
)
806 is_a_helper
<rtx_debug_insn
*>::test (rtx rt
)
808 return DEBUG_INSN_P (rt
);
814 is_a_helper
<rtx_nonjump_insn
*>::test (rtx rt
)
816 return NONJUMP_INSN_P (rt
);
822 is_a_helper
<rtx_jump_insn
*>::test (rtx rt
)
830 is_a_helper
<rtx_call_insn
*>::test (rtx rt
)
838 is_a_helper
<rtx_call_insn
*>::test (rtx_insn
*insn
)
840 return CALL_P (insn
);
846 is_a_helper
<rtx_jump_table_data
*>::test (rtx rt
)
848 return JUMP_TABLE_DATA_P (rt
);
854 is_a_helper
<rtx_jump_table_data
*>::test (rtx_insn
*insn
)
856 return JUMP_TABLE_DATA_P (insn
);
862 is_a_helper
<rtx_barrier
*>::test (rtx rt
)
864 return BARRIER_P (rt
);
870 is_a_helper
<rtx_code_label
*>::test (rtx rt
)
878 is_a_helper
<rtx_code_label
*>::test (rtx_insn
*insn
)
880 return LABEL_P (insn
);
886 is_a_helper
<rtx_note
*>::test (rtx rt
)
894 is_a_helper
<rtx_note
*>::test (rtx_insn
*insn
)
896 return NOTE_P (insn
);
899 /* Predicate yielding nonzero iff X is a return or simple_return. */
900 #define ANY_RETURN_P(X) \
901 (GET_CODE (X) == RETURN || GET_CODE (X) == SIMPLE_RETURN)
903 /* 1 if X is a unary operator. */
906 (GET_RTX_CLASS (GET_CODE (X)) == RTX_UNARY)
908 /* 1 if X is a binary operator. */
910 #define BINARY_P(X) \
911 ((GET_RTX_CLASS (GET_CODE (X)) & RTX_BINARY_MASK) == RTX_BINARY_RESULT)
913 /* 1 if X is an arithmetic operator. */
915 #define ARITHMETIC_P(X) \
916 ((GET_RTX_CLASS (GET_CODE (X)) & RTX_ARITHMETIC_MASK) \
917 == RTX_ARITHMETIC_RESULT)
919 /* 1 if X is an arithmetic operator. */
921 #define COMMUTATIVE_ARITH_P(X) \
922 (GET_RTX_CLASS (GET_CODE (X)) == RTX_COMM_ARITH)
924 /* 1 if X is a commutative arithmetic operator or a comparison operator.
925 These two are sometimes selected together because it is possible to
926 swap the two operands. */
928 #define SWAPPABLE_OPERANDS_P(X) \
929 ((1 << GET_RTX_CLASS (GET_CODE (X))) \
930 & ((1 << RTX_COMM_ARITH) | (1 << RTX_COMM_COMPARE) \
931 | (1 << RTX_COMPARE)))
933 /* 1 if X is a non-commutative operator. */
935 #define NON_COMMUTATIVE_P(X) \
936 ((GET_RTX_CLASS (GET_CODE (X)) & RTX_COMMUTATIVE_MASK) \
937 == RTX_NON_COMMUTATIVE_RESULT)
939 /* 1 if X is a commutative operator on integers. */
941 #define COMMUTATIVE_P(X) \
942 ((GET_RTX_CLASS (GET_CODE (X)) & RTX_COMMUTATIVE_MASK) \
943 == RTX_COMMUTATIVE_RESULT)
945 /* 1 if X is a relational operator. */
947 #define COMPARISON_P(X) \
948 ((GET_RTX_CLASS (GET_CODE (X)) & RTX_COMPARE_MASK) == RTX_COMPARE_RESULT)
950 /* 1 if X is a constant value that is an integer. */
952 #define CONSTANT_P(X) \
953 (GET_RTX_CLASS (GET_CODE (X)) == RTX_CONST_OBJ)
955 /* 1 if X can be used to represent an object. */
956 #define OBJECT_P(X) \
957 ((GET_RTX_CLASS (GET_CODE (X)) & RTX_OBJ_MASK) == RTX_OBJ_RESULT)
959 /* General accessor macros for accessing the fields of an rtx. */
961 #if defined ENABLE_RTL_CHECKING && (GCC_VERSION >= 2007)
962 /* The bit with a star outside the statement expr and an & inside is
963 so that N can be evaluated only once. */
964 #define RTL_CHECK1(RTX, N, C1) __extension__ \
965 (*({ __typeof (RTX) const _rtx = (RTX); const int _n = (N); \
966 const enum rtx_code _code = GET_CODE (_rtx); \
967 if (_n < 0 || _n >= GET_RTX_LENGTH (_code)) \
968 rtl_check_failed_bounds (_rtx, _n, __FILE__, __LINE__, \
970 if (GET_RTX_FORMAT (_code)[_n] != C1) \
971 rtl_check_failed_type1 (_rtx, _n, C1, __FILE__, __LINE__, \
973 &_rtx->u.fld[_n]; }))
975 #define RTL_CHECK2(RTX, N, C1, C2) __extension__ \
976 (*({ __typeof (RTX) const _rtx = (RTX); const int _n = (N); \
977 const enum rtx_code _code = GET_CODE (_rtx); \
978 if (_n < 0 || _n >= GET_RTX_LENGTH (_code)) \
979 rtl_check_failed_bounds (_rtx, _n, __FILE__, __LINE__, \
981 if (GET_RTX_FORMAT (_code)[_n] != C1 \
982 && GET_RTX_FORMAT (_code)[_n] != C2) \
983 rtl_check_failed_type2 (_rtx, _n, C1, C2, __FILE__, __LINE__, \
985 &_rtx->u.fld[_n]; }))
987 #define RTL_CHECKC1(RTX, N, C) __extension__ \
988 (*({ __typeof (RTX) const _rtx = (RTX); const int _n = (N); \
989 if (GET_CODE (_rtx) != (C)) \
990 rtl_check_failed_code1 (_rtx, (C), __FILE__, __LINE__, \
992 &_rtx->u.fld[_n]; }))
994 #define RTL_CHECKC2(RTX, N, C1, C2) __extension__ \
995 (*({ __typeof (RTX) const _rtx = (RTX); const int _n = (N); \
996 const enum rtx_code _code = GET_CODE (_rtx); \
997 if (_code != (C1) && _code != (C2)) \
998 rtl_check_failed_code2 (_rtx, (C1), (C2), __FILE__, __LINE__, \
1000 &_rtx->u.fld[_n]; }))
1002 #define RTVEC_ELT(RTVEC, I) __extension__ \
1003 (*({ __typeof (RTVEC) const _rtvec = (RTVEC); const int _i = (I); \
1004 if (_i < 0 || _i >= GET_NUM_ELEM (_rtvec)) \
1005 rtvec_check_failed_bounds (_rtvec, _i, __FILE__, __LINE__, \
1007 &_rtvec->elem[_i]; }))
1009 #define XWINT(RTX, N) __extension__ \
1010 (*({ __typeof (RTX) const _rtx = (RTX); const int _n = (N); \
1011 const enum rtx_code _code = GET_CODE (_rtx); \
1012 if (_n < 0 || _n >= GET_RTX_LENGTH (_code)) \
1013 rtl_check_failed_bounds (_rtx, _n, __FILE__, __LINE__, \
1015 if (GET_RTX_FORMAT (_code)[_n] != 'w') \
1016 rtl_check_failed_type1 (_rtx, _n, 'w', __FILE__, __LINE__, \
1018 &_rtx->u.hwint[_n]; }))
1020 #define CWI_ELT(RTX, I) __extension__ \
1021 (*({ __typeof (RTX) const _cwi = (RTX); \
1022 int _max = CWI_GET_NUM_ELEM (_cwi); \
1023 const int _i = (I); \
1024 if (_i < 0 || _i >= _max) \
1025 cwi_check_failed_bounds (_cwi, _i, __FILE__, __LINE__, \
1027 &_cwi->u.hwiv.elem[_i]; }))
1029 #define XCWINT(RTX, N, C) __extension__ \
1030 (*({ __typeof (RTX) const _rtx = (RTX); \
1031 if (GET_CODE (_rtx) != (C)) \
1032 rtl_check_failed_code1 (_rtx, (C), __FILE__, __LINE__, \
1034 &_rtx->u.hwint[N]; }))
1036 #define XCMWINT(RTX, N, C, M) __extension__ \
1037 (*({ __typeof (RTX) const _rtx = (RTX); \
1038 if (GET_CODE (_rtx) != (C) || GET_MODE (_rtx) != (M)) \
1039 rtl_check_failed_code_mode (_rtx, (C), (M), false, __FILE__, \
1040 __LINE__, __FUNCTION__); \
1041 &_rtx->u.hwint[N]; }))
1043 #define XCNMPRV(RTX, C, M) __extension__ \
1044 ({ __typeof (RTX) const _rtx = (RTX); \
1045 if (GET_CODE (_rtx) != (C) || GET_MODE (_rtx) == (M)) \
1046 rtl_check_failed_code_mode (_rtx, (C), (M), true, __FILE__, \
1047 __LINE__, __FUNCTION__); \
1050 #define XCNMPFV(RTX, C, M) __extension__ \
1051 ({ __typeof (RTX) const _rtx = (RTX); \
1052 if (GET_CODE (_rtx) != (C) || GET_MODE (_rtx) == (M)) \
1053 rtl_check_failed_code_mode (_rtx, (C), (M), true, __FILE__, \
1054 __LINE__, __FUNCTION__); \
1057 #define BLOCK_SYMBOL_CHECK(RTX) __extension__ \
1058 ({ __typeof (RTX) const _symbol = (RTX); \
1059 const unsigned int flags = SYMBOL_REF_FLAGS (_symbol); \
1060 if ((flags & SYMBOL_FLAG_HAS_BLOCK_INFO) == 0) \
1061 rtl_check_failed_block_symbol (__FILE__, __LINE__, \
1063 &_symbol->u.block_sym; })
1065 #define HWIVEC_CHECK(RTX,C) __extension__ \
1066 ({ __typeof (RTX) const _symbol = (RTX); \
1067 RTL_CHECKC1 (_symbol, 0, C); \
1068 &_symbol->u.hwiv; })
1070 extern void rtl_check_failed_bounds (const_rtx
, int, const char *, int,
1073 extern void rtl_check_failed_type1 (const_rtx
, int, int, const char *, int,
1076 extern void rtl_check_failed_type2 (const_rtx
, int, int, int, const char *,
1079 extern void rtl_check_failed_code1 (const_rtx
, enum rtx_code
, const char *,
1082 extern void rtl_check_failed_code2 (const_rtx
, enum rtx_code
, enum rtx_code
,
1083 const char *, int, const char *)
1085 extern void rtl_check_failed_code_mode (const_rtx
, enum rtx_code
, enum machine_mode
,
1086 bool, const char *, int, const char *)
1088 extern void rtl_check_failed_block_symbol (const char *, int, const char *)
1090 extern void cwi_check_failed_bounds (const_rtx
, int, const char *, int,
1093 extern void rtvec_check_failed_bounds (const_rtvec
, int, const char *, int,
1097 #else /* not ENABLE_RTL_CHECKING */
1099 #define RTL_CHECK1(RTX, N, C1) ((RTX)->u.fld[N])
1100 #define RTL_CHECK2(RTX, N, C1, C2) ((RTX)->u.fld[N])
1101 #define RTL_CHECKC1(RTX, N, C) ((RTX)->u.fld[N])
1102 #define RTL_CHECKC2(RTX, N, C1, C2) ((RTX)->u.fld[N])
1103 #define RTVEC_ELT(RTVEC, I) ((RTVEC)->elem[I])
1104 #define XWINT(RTX, N) ((RTX)->u.hwint[N])
1105 #define CWI_ELT(RTX, I) ((RTX)->u.hwiv.elem[I])
1106 #define XCWINT(RTX, N, C) ((RTX)->u.hwint[N])
1107 #define XCMWINT(RTX, N, C, M) ((RTX)->u.hwint[N])
1108 #define XCNMWINT(RTX, N, C, M) ((RTX)->u.hwint[N])
1109 #define XCNMPRV(RTX, C, M) (&(RTX)->u.rv)
1110 #define XCNMPFV(RTX, C, M) (&(RTX)->u.fv)
1111 #define BLOCK_SYMBOL_CHECK(RTX) (&(RTX)->u.block_sym)
1112 #define HWIVEC_CHECK(RTX,C) (&(RTX)->u.hwiv)
1116 /* General accessor macros for accessing the flags of an rtx. */
1118 /* Access an individual rtx flag, with no checking of any kind. */
1119 #define RTX_FLAG(RTX, FLAG) ((RTX)->FLAG)
1121 #if defined ENABLE_RTL_FLAG_CHECKING && (GCC_VERSION >= 2007)
1122 #define RTL_FLAG_CHECK1(NAME, RTX, C1) __extension__ \
1123 ({ __typeof (RTX) const _rtx = (RTX); \
1124 if (GET_CODE (_rtx) != C1) \
1125 rtl_check_failed_flag (NAME, _rtx, __FILE__, __LINE__, \
1129 #define RTL_FLAG_CHECK2(NAME, RTX, C1, C2) __extension__ \
1130 ({ __typeof (RTX) const _rtx = (RTX); \
1131 if (GET_CODE (_rtx) != C1 && GET_CODE(_rtx) != C2) \
1132 rtl_check_failed_flag (NAME,_rtx, __FILE__, __LINE__, \
1136 #define RTL_FLAG_CHECK3(NAME, RTX, C1, C2, C3) __extension__ \
1137 ({ __typeof (RTX) const _rtx = (RTX); \
1138 if (GET_CODE (_rtx) != C1 && GET_CODE(_rtx) != C2 \
1139 && GET_CODE (_rtx) != C3) \
1140 rtl_check_failed_flag (NAME, _rtx, __FILE__, __LINE__, \
1144 #define RTL_FLAG_CHECK4(NAME, RTX, C1, C2, C3, C4) __extension__ \
1145 ({ __typeof (RTX) const _rtx = (RTX); \
1146 if (GET_CODE (_rtx) != C1 && GET_CODE(_rtx) != C2 \
1147 && GET_CODE (_rtx) != C3 && GET_CODE(_rtx) != C4) \
1148 rtl_check_failed_flag (NAME, _rtx, __FILE__, __LINE__, \
1152 #define RTL_FLAG_CHECK5(NAME, RTX, C1, C2, C3, C4, C5) __extension__ \
1153 ({ __typeof (RTX) const _rtx = (RTX); \
1154 if (GET_CODE (_rtx) != C1 && GET_CODE (_rtx) != C2 \
1155 && GET_CODE (_rtx) != C3 && GET_CODE (_rtx) != C4 \
1156 && GET_CODE (_rtx) != C5) \
1157 rtl_check_failed_flag (NAME, _rtx, __FILE__, __LINE__, \
1161 #define RTL_FLAG_CHECK6(NAME, RTX, C1, C2, C3, C4, C5, C6) \
1163 ({ __typeof (RTX) const _rtx = (RTX); \
1164 if (GET_CODE (_rtx) != C1 && GET_CODE (_rtx) != C2 \
1165 && GET_CODE (_rtx) != C3 && GET_CODE (_rtx) != C4 \
1166 && GET_CODE (_rtx) != C5 && GET_CODE (_rtx) != C6) \
1167 rtl_check_failed_flag (NAME,_rtx, __FILE__, __LINE__, \
1171 #define RTL_FLAG_CHECK7(NAME, RTX, C1, C2, C3, C4, C5, C6, C7) \
1173 ({ __typeof (RTX) const _rtx = (RTX); \
1174 if (GET_CODE (_rtx) != C1 && GET_CODE (_rtx) != C2 \
1175 && GET_CODE (_rtx) != C3 && GET_CODE (_rtx) != C4 \
1176 && GET_CODE (_rtx) != C5 && GET_CODE (_rtx) != C6 \
1177 && GET_CODE (_rtx) != C7) \
1178 rtl_check_failed_flag (NAME, _rtx, __FILE__, __LINE__, \
1182 #define RTL_INSN_CHAIN_FLAG_CHECK(NAME, RTX) \
1184 ({ __typeof (RTX) const _rtx = (RTX); \
1185 if (!INSN_CHAIN_CODE_P (GET_CODE (_rtx))) \
1186 rtl_check_failed_flag (NAME, _rtx, __FILE__, __LINE__, \
1190 extern void rtl_check_failed_flag (const char *, const_rtx
, const char *,
1195 #else /* not ENABLE_RTL_FLAG_CHECKING */
1197 #define RTL_FLAG_CHECK1(NAME, RTX, C1) (RTX)
1198 #define RTL_FLAG_CHECK2(NAME, RTX, C1, C2) (RTX)
1199 #define RTL_FLAG_CHECK3(NAME, RTX, C1, C2, C3) (RTX)
1200 #define RTL_FLAG_CHECK4(NAME, RTX, C1, C2, C3, C4) (RTX)
1201 #define RTL_FLAG_CHECK5(NAME, RTX, C1, C2, C3, C4, C5) (RTX)
1202 #define RTL_FLAG_CHECK6(NAME, RTX, C1, C2, C3, C4, C5, C6) (RTX)
1203 #define RTL_FLAG_CHECK7(NAME, RTX, C1, C2, C3, C4, C5, C6, C7) (RTX)
1204 #define RTL_INSN_CHAIN_FLAG_CHECK(NAME, RTX) (RTX)
1207 #define XINT(RTX, N) (RTL_CHECK2 (RTX, N, 'i', 'n').rt_int)
1208 #define XUINT(RTX, N) (RTL_CHECK2 (RTX, N, 'i', 'n').rt_uint)
1209 #define XSTR(RTX, N) (RTL_CHECK2 (RTX, N, 's', 'S').rt_str)
1210 #define XEXP(RTX, N) (RTL_CHECK2 (RTX, N, 'e', 'u').rt_rtx)
1211 #define XVEC(RTX, N) (RTL_CHECK2 (RTX, N, 'E', 'V').rt_rtvec)
1212 #define XMODE(RTX, N) (RTL_CHECK1 (RTX, N, 'M').rt_type)
1213 #define XTREE(RTX, N) (RTL_CHECK1 (RTX, N, 't').rt_tree)
1214 #define XBBDEF(RTX, N) (RTL_CHECK1 (RTX, N, 'B').rt_bb)
1215 #define XTMPL(RTX, N) (RTL_CHECK1 (RTX, N, 'T').rt_str)
1216 #define XCFI(RTX, N) (RTL_CHECK1 (RTX, N, 'C').rt_cfi)
1218 #define XVECEXP(RTX, N, M) RTVEC_ELT (XVEC (RTX, N), M)
1219 #define XVECLEN(RTX, N) GET_NUM_ELEM (XVEC (RTX, N))
1221 /* These are like XINT, etc. except that they expect a '0' field instead
1222 of the normal type code. */
1224 #define X0INT(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_int)
1225 #define X0UINT(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_uint)
1226 #define X0STR(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_str)
1227 #define X0EXP(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_rtx)
1228 #define X0VEC(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_rtvec)
1229 #define X0MODE(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_type)
1230 #define X0TREE(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_tree)
1231 #define X0BBDEF(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_bb)
1232 #define X0ADVFLAGS(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_addr_diff_vec_flags)
1233 #define X0CSELIB(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_cselib)
1234 #define X0MEMATTR(RTX, N) (RTL_CHECKC1 (RTX, N, MEM).rt_mem)
1235 #define X0REGATTR(RTX, N) (RTL_CHECKC1 (RTX, N, REG).rt_reg)
1236 #define X0CONSTANT(RTX, N) (RTL_CHECK1 (RTX, N, '0').rt_constant)
1238 /* Access a '0' field with any type. */
1239 #define X0ANY(RTX, N) RTL_CHECK1 (RTX, N, '0')
1241 #define XCINT(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_int)
1242 #define XCUINT(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_uint)
1243 #define XCSTR(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_str)
1244 #define XCEXP(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_rtx)
1245 #define XCVEC(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_rtvec)
1246 #define XCMODE(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_type)
1247 #define XCTREE(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_tree)
1248 #define XCBBDEF(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_bb)
1249 #define XCCFI(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_cfi)
1250 #define XCCSELIB(RTX, N, C) (RTL_CHECKC1 (RTX, N, C).rt_cselib)
1252 #define XCVECEXP(RTX, N, M, C) RTVEC_ELT (XCVEC (RTX, N, C), M)
1253 #define XCVECLEN(RTX, N, C) GET_NUM_ELEM (XCVEC (RTX, N, C))
1255 #define XC2EXP(RTX, N, C1, C2) (RTL_CHECKC2 (RTX, N, C1, C2).rt_rtx)
1258 /* Methods of rtx_expr_list. */
1260 inline rtx_expr_list
*rtx_expr_list::next () const
1262 rtx tmp
= XEXP (this, 1);
1263 return safe_as_a
<rtx_expr_list
*> (tmp
);
1266 inline rtx
rtx_expr_list::element () const
1268 return XEXP (this, 0);
1271 /* Methods of rtx_insn_list. */
1273 inline rtx_insn_list
*rtx_insn_list::next () const
1275 rtx tmp
= XEXP (this, 1);
1276 return safe_as_a
<rtx_insn_list
*> (tmp
);
1279 inline rtx_insn
*rtx_insn_list::insn () const
1281 rtx tmp
= XEXP (this, 0);
1282 return safe_as_a
<rtx_insn
*> (tmp
);
1285 /* Methods of rtx_sequence. */
1287 inline int rtx_sequence::len () const
1289 return XVECLEN (this, 0);
1292 inline rtx
rtx_sequence::element (int index
) const
1294 return XVECEXP (this, 0, index
);
1297 inline rtx_insn
*rtx_sequence::insn (int index
) const
1299 return as_a
<rtx_insn
*> (XVECEXP (this, 0, index
));
1302 /* ACCESS MACROS for particular fields of insns. */
1304 /* Holds a unique number for each insn.
1305 These are not necessarily sequentially increasing. */
1306 inline int INSN_UID (const_rtx insn
)
1308 return RTL_INSN_CHAIN_FLAG_CHECK ("INSN_UID",
1309 (insn
))->u2
.insn_uid
;
1311 inline int& INSN_UID (rtx insn
)
1313 return RTL_INSN_CHAIN_FLAG_CHECK ("INSN_UID",
1314 (insn
))->u2
.insn_uid
;
1317 /* Chain insns together in sequence. */
1319 /* For now these are split in two: an rvalue form:
1322 SET_NEXT_INSN/SET_PREV_INSN. */
1324 inline rtx_insn
*PREV_INSN (const_rtx insn
)
1326 rtx prev
= XEXP (insn
, 0);
1327 return safe_as_a
<rtx_insn
*> (prev
);
1330 inline rtx
& SET_PREV_INSN (rtx insn
)
1332 return XEXP (insn
, 0);
1335 inline rtx_insn
*NEXT_INSN (const_rtx insn
)
1337 rtx next
= XEXP (insn
, 1);
1338 return safe_as_a
<rtx_insn
*> (next
);
1341 inline rtx
& SET_NEXT_INSN (rtx insn
)
1343 return XEXP (insn
, 1);
1346 inline basic_block
BLOCK_FOR_INSN (const_rtx insn
)
1348 return XBBDEF (insn
, 2);
1351 inline basic_block
& BLOCK_FOR_INSN (rtx insn
)
1353 return XBBDEF (insn
, 2);
1356 /* The body of an insn. */
1357 inline rtx
PATTERN (const_rtx insn
)
1359 return XEXP (insn
, 3);
1362 inline rtx
& PATTERN (rtx insn
)
1364 return XEXP (insn
, 3);
1367 inline unsigned int INSN_LOCATION (const_rtx insn
)
1369 return XUINT (insn
, 4);
1372 inline unsigned int& INSN_LOCATION (rtx insn
)
1374 return XUINT (insn
, 4);
1377 inline bool INSN_HAS_LOCATION (const_rtx insn
)
1379 return LOCATION_LOCUS (INSN_LOCATION (insn
)) != UNKNOWN_LOCATION
;
1382 /* LOCATION of an RTX if relevant. */
1383 #define RTL_LOCATION(X) (INSN_P (X) ? \
1384 INSN_LOCATION (X) : UNKNOWN_LOCATION)
1386 /* Code number of instruction, from when it was recognized.
1387 -1 means this instruction has not been recognized yet. */
1388 #define INSN_CODE(INSN) XINT (INSN, 5)
1390 inline rtvec
rtx_jump_table_data::get_labels () const
1392 rtx pat
= PATTERN (this);
1393 if (GET_CODE (pat
) == ADDR_VEC
)
1394 return XVEC (pat
, 0);
1396 return XVEC (pat
, 1); /* presumably an ADDR_DIFF_VEC */
1399 #define RTX_FRAME_RELATED_P(RTX) \
1400 (RTL_FLAG_CHECK6 ("RTX_FRAME_RELATED_P", (RTX), DEBUG_INSN, INSN, \
1401 CALL_INSN, JUMP_INSN, BARRIER, SET)->frame_related)
1403 /* 1 if RTX is an insn that has been deleted. */
1404 #define INSN_DELETED_P(RTX) \
1405 (RTL_INSN_CHAIN_FLAG_CHECK ("INSN_DELETED_P", (RTX))->volatil)
1407 /* 1 if JUMP RTX is a crossing jump. */
1408 #define CROSSING_JUMP_P(RTX) \
1409 (RTL_FLAG_CHECK1 ("CROSSING_JUMP_P", (RTX), JUMP_INSN)->jump)
1411 /* 1 if RTX is a call to a const function. Built from ECF_CONST and
1413 #define RTL_CONST_CALL_P(RTX) \
1414 (RTL_FLAG_CHECK1 ("RTL_CONST_CALL_P", (RTX), CALL_INSN)->unchanging)
1416 /* 1 if RTX is a call to a pure function. Built from ECF_PURE and
1418 #define RTL_PURE_CALL_P(RTX) \
1419 (RTL_FLAG_CHECK1 ("RTL_PURE_CALL_P", (RTX), CALL_INSN)->return_val)
1421 /* 1 if RTX is a call to a const or pure function. */
1422 #define RTL_CONST_OR_PURE_CALL_P(RTX) \
1423 (RTL_CONST_CALL_P (RTX) || RTL_PURE_CALL_P (RTX))
1425 /* 1 if RTX is a call to a looping const or pure function. Built from
1426 ECF_LOOPING_CONST_OR_PURE and DECL_LOOPING_CONST_OR_PURE_P. */
1427 #define RTL_LOOPING_CONST_OR_PURE_CALL_P(RTX) \
1428 (RTL_FLAG_CHECK1 ("CONST_OR_PURE_CALL_P", (RTX), CALL_INSN)->call)
1430 /* 1 if RTX is a call_insn for a sibling call. */
1431 #define SIBLING_CALL_P(RTX) \
1432 (RTL_FLAG_CHECK1 ("SIBLING_CALL_P", (RTX), CALL_INSN)->jump)
1434 /* 1 if RTX is a jump_insn, call_insn, or insn that is an annulling branch. */
1435 #define INSN_ANNULLED_BRANCH_P(RTX) \
1436 (RTL_FLAG_CHECK1 ("INSN_ANNULLED_BRANCH_P", (RTX), JUMP_INSN)->unchanging)
1438 /* 1 if RTX is an insn in a delay slot and is from the target of the branch.
1439 If the branch insn has INSN_ANNULLED_BRANCH_P set, this insn should only be
1440 executed if the branch is taken. For annulled branches with this bit
1441 clear, the insn should be executed only if the branch is not taken. */
1442 #define INSN_FROM_TARGET_P(RTX) \
1443 (RTL_FLAG_CHECK3 ("INSN_FROM_TARGET_P", (RTX), INSN, JUMP_INSN, \
1444 CALL_INSN)->in_struct)
1446 /* In an ADDR_DIFF_VEC, the flags for RTX for use by branch shortening.
1447 See the comments for ADDR_DIFF_VEC in rtl.def. */
1448 #define ADDR_DIFF_VEC_FLAGS(RTX) X0ADVFLAGS (RTX, 4)
1450 /* In a VALUE, the value cselib has assigned to RTX.
1451 This is a "struct cselib_val", see cselib.h. */
1452 #define CSELIB_VAL_PTR(RTX) X0CSELIB (RTX, 0)
1454 /* Holds a list of notes on what this insn does to various REGs.
1455 It is a chain of EXPR_LIST rtx's, where the second operand is the
1456 chain pointer and the first operand is the REG being described.
1457 The mode field of the EXPR_LIST contains not a real machine mode
1458 but a value from enum reg_note. */
1459 #define REG_NOTES(INSN) XEXP(INSN, 6)
1461 /* In an ENTRY_VALUE this is the DECL_INCOMING_RTL of the argument in
1463 #define ENTRY_VALUE_EXP(RTX) (RTL_CHECKC1 (RTX, 0, ENTRY_VALUE).rt_rtx)
1467 #define DEF_REG_NOTE(NAME) NAME,
1468 #include "reg-notes.def"
1473 /* Define macros to extract and insert the reg-note kind in an EXPR_LIST. */
1474 #define REG_NOTE_KIND(LINK) ((enum reg_note) GET_MODE (LINK))
1475 #define PUT_REG_NOTE_KIND(LINK, KIND) \
1476 PUT_MODE (LINK, (enum machine_mode) (KIND))
1478 /* Names for REG_NOTE's in EXPR_LIST insn's. */
1480 extern const char * const reg_note_name
[];
1481 #define GET_REG_NOTE_NAME(MODE) (reg_note_name[(int) (MODE)])
1483 /* This field is only present on CALL_INSNs. It holds a chain of EXPR_LIST of
1484 USE and CLOBBER expressions.
1485 USE expressions list the registers filled with arguments that
1486 are passed to the function.
1487 CLOBBER expressions document the registers explicitly clobbered
1489 Pseudo registers can not be mentioned in this list. */
1490 #define CALL_INSN_FUNCTION_USAGE(INSN) XEXP(INSN, 7)
1492 /* The label-number of a code-label. The assembler label
1493 is made from `L' and the label-number printed in decimal.
1494 Label numbers are unique in a compilation. */
1495 #define CODE_LABEL_NUMBER(INSN) XINT (INSN, 5)
1497 /* In a NOTE that is a line number, this is a string for the file name that the
1498 line is in. We use the same field to record block numbers temporarily in
1499 NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes. (We avoid lots of casts
1500 between ints and pointers if we use a different macro for the block number.)
1504 #define NOTE_DATA(INSN) RTL_CHECKC1 (INSN, 3, NOTE)
1505 #define NOTE_DELETED_LABEL_NAME(INSN) XCSTR (INSN, 3, NOTE)
1506 #define SET_INSN_DELETED(INSN) set_insn_deleted (INSN);
1507 #define NOTE_BLOCK(INSN) XCTREE (INSN, 3, NOTE)
1508 #define NOTE_EH_HANDLER(INSN) XCINT (INSN, 3, NOTE)
1509 #define NOTE_BASIC_BLOCK(INSN) XCBBDEF (INSN, 3, NOTE)
1510 #define NOTE_VAR_LOCATION(INSN) XCEXP (INSN, 3, NOTE)
1511 #define NOTE_CFI(INSN) XCCFI (INSN, 3, NOTE)
1512 #define NOTE_LABEL_NUMBER(INSN) XCINT (INSN, 3, NOTE)
1514 /* In a NOTE that is a line number, this is the line number.
1515 Other kinds of NOTEs are identified by negative numbers here. */
1516 #define NOTE_KIND(INSN) XCINT (INSN, 4, NOTE)
1518 /* Nonzero if INSN is a note marking the beginning of a basic block. */
1519 #define NOTE_INSN_BASIC_BLOCK_P(INSN) \
1520 (NOTE_P (INSN) && NOTE_KIND (INSN) == NOTE_INSN_BASIC_BLOCK)
1522 /* Variable declaration and the location of a variable. */
1523 #define PAT_VAR_LOCATION_DECL(PAT) (XCTREE ((PAT), 0, VAR_LOCATION))
1524 #define PAT_VAR_LOCATION_LOC(PAT) (XCEXP ((PAT), 1, VAR_LOCATION))
1526 /* Initialization status of the variable in the location. Status
1527 can be unknown, uninitialized or initialized. See enumeration
1529 #define PAT_VAR_LOCATION_STATUS(PAT) \
1530 (RTL_FLAG_CHECK1 ("PAT_VAR_LOCATION_STATUS", PAT, VAR_LOCATION) \
1531 ->u2.var_location_status)
1533 /* Accessors for a NOTE_INSN_VAR_LOCATION. */
1534 #define NOTE_VAR_LOCATION_DECL(NOTE) \
1535 PAT_VAR_LOCATION_DECL (NOTE_VAR_LOCATION (NOTE))
1536 #define NOTE_VAR_LOCATION_LOC(NOTE) \
1537 PAT_VAR_LOCATION_LOC (NOTE_VAR_LOCATION (NOTE))
1538 #define NOTE_VAR_LOCATION_STATUS(NOTE) \
1539 PAT_VAR_LOCATION_STATUS (NOTE_VAR_LOCATION (NOTE))
1541 /* The VAR_LOCATION rtx in a DEBUG_INSN. */
1542 #define INSN_VAR_LOCATION(INSN) PATTERN (INSN)
1544 /* Accessors for a tree-expanded var location debug insn. */
1545 #define INSN_VAR_LOCATION_DECL(INSN) \
1546 PAT_VAR_LOCATION_DECL (INSN_VAR_LOCATION (INSN))
1547 #define INSN_VAR_LOCATION_LOC(INSN) \
1548 PAT_VAR_LOCATION_LOC (INSN_VAR_LOCATION (INSN))
1549 #define INSN_VAR_LOCATION_STATUS(INSN) \
1550 PAT_VAR_LOCATION_STATUS (INSN_VAR_LOCATION (INSN))
1552 /* Expand to the RTL that denotes an unknown variable location in a
1554 #define gen_rtx_UNKNOWN_VAR_LOC() (gen_rtx_CLOBBER (VOIDmode, const0_rtx))
1556 /* Determine whether X is such an unknown location. */
1557 #define VAR_LOC_UNKNOWN_P(X) \
1558 (GET_CODE (X) == CLOBBER && XEXP ((X), 0) == const0_rtx)
1560 /* 1 if RTX is emitted after a call, but it should take effect before
1561 the call returns. */
1562 #define NOTE_DURING_CALL_P(RTX) \
1563 (RTL_FLAG_CHECK1 ("NOTE_VAR_LOCATION_DURING_CALL_P", (RTX), NOTE)->call)
1565 /* DEBUG_EXPR_DECL corresponding to a DEBUG_EXPR RTX. */
1566 #define DEBUG_EXPR_TREE_DECL(RTX) XCTREE (RTX, 0, DEBUG_EXPR)
1568 /* VAR_DECL/PARM_DECL DEBUG_IMPLICIT_PTR takes address of. */
1569 #define DEBUG_IMPLICIT_PTR_DECL(RTX) XCTREE (RTX, 0, DEBUG_IMPLICIT_PTR)
1571 /* PARM_DECL DEBUG_PARAMETER_REF references. */
1572 #define DEBUG_PARAMETER_REF_DECL(RTX) XCTREE (RTX, 0, DEBUG_PARAMETER_REF)
1574 /* Codes that appear in the NOTE_KIND field for kinds of notes
1575 that are not line numbers. These codes are all negative.
1577 Notice that we do not try to use zero here for any of
1578 the special note codes because sometimes the source line
1579 actually can be zero! This happens (for example) when we
1580 are generating code for the per-translation-unit constructor
1581 and destructor routines for some C++ translation unit. */
1585 #define DEF_INSN_NOTE(NAME) NAME,
1586 #include "insn-notes.def"
1587 #undef DEF_INSN_NOTE
1592 /* Names for NOTE insn's other than line numbers. */
1594 extern const char * const note_insn_name
[NOTE_INSN_MAX
];
1595 #define GET_NOTE_INSN_NAME(NOTE_CODE) \
1596 (note_insn_name[(NOTE_CODE)])
1598 /* The name of a label, in case it corresponds to an explicit label
1599 in the input source code. */
1600 #define LABEL_NAME(RTX) XCSTR (RTX, 6, CODE_LABEL)
1602 /* In jump.c, each label contains a count of the number
1603 of LABEL_REFs that point at it, so unused labels can be deleted. */
1604 #define LABEL_NUSES(RTX) XCINT (RTX, 4, CODE_LABEL)
1606 /* Labels carry a two-bit field composed of the ->jump and ->call
1607 bits. This field indicates whether the label is an alternate
1608 entry point, and if so, what kind. */
1611 LABEL_NORMAL
= 0, /* ordinary label */
1612 LABEL_STATIC_ENTRY
, /* alternate entry point, not exported */
1613 LABEL_GLOBAL_ENTRY
, /* alternate entry point, exported */
1614 LABEL_WEAK_ENTRY
/* alternate entry point, exported as weak symbol */
1617 #if defined ENABLE_RTL_FLAG_CHECKING && (GCC_VERSION > 2007)
1619 /* Retrieve the kind of LABEL. */
1620 #define LABEL_KIND(LABEL) __extension__ \
1621 ({ __typeof (LABEL) const _label = (LABEL); \
1622 if (! LABEL_P (_label)) \
1623 rtl_check_failed_flag ("LABEL_KIND", _label, __FILE__, __LINE__, \
1625 (enum label_kind) ((_label->jump << 1) | _label->call); })
1627 /* Set the kind of LABEL. */
1628 #define SET_LABEL_KIND(LABEL, KIND) do { \
1629 __typeof (LABEL) const _label = (LABEL); \
1630 const unsigned int _kind = (KIND); \
1631 if (! LABEL_P (_label)) \
1632 rtl_check_failed_flag ("SET_LABEL_KIND", _label, __FILE__, __LINE__, \
1634 _label->jump = ((_kind >> 1) & 1); \
1635 _label->call = (_kind & 1); \
1640 /* Retrieve the kind of LABEL. */
1641 #define LABEL_KIND(LABEL) \
1642 ((enum label_kind) (((LABEL)->jump << 1) | (LABEL)->call))
1644 /* Set the kind of LABEL. */
1645 #define SET_LABEL_KIND(LABEL, KIND) do { \
1646 rtx const _label = (LABEL); \
1647 const unsigned int _kind = (KIND); \
1648 _label->jump = ((_kind >> 1) & 1); \
1649 _label->call = (_kind & 1); \
1652 #endif /* rtl flag checking */
1654 #define LABEL_ALT_ENTRY_P(LABEL) (LABEL_KIND (LABEL) != LABEL_NORMAL)
1656 /* In jump.c, each JUMP_INSN can point to a label that it can jump to,
1657 so that if the JUMP_INSN is deleted, the label's LABEL_NUSES can
1658 be decremented and possibly the label can be deleted. */
1659 #define JUMP_LABEL(INSN) XCEXP (INSN, 7, JUMP_INSN)
1661 inline rtx_insn
*JUMP_LABEL_AS_INSN (rtx_insn
*insn
)
1663 return safe_as_a
<rtx_insn
*> (JUMP_LABEL (insn
));
1666 /* Once basic blocks are found, each CODE_LABEL starts a chain that
1667 goes through all the LABEL_REFs that jump to that label. The chain
1668 eventually winds up at the CODE_LABEL: it is circular. */
1669 #define LABEL_REFS(LABEL) XCEXP (LABEL, 3, CODE_LABEL)
1671 /* For a REG rtx, REGNO extracts the register number. REGNO can only
1672 be used on RHS. Use SET_REGNO to change the value. */
1673 #define REGNO(RTX) (rhs_regno(RTX))
1674 #define SET_REGNO(RTX,N) \
1675 (df_ref_change_reg_with_loc (REGNO (RTX), N, RTX), XCUINT (RTX, 0, REG) = N)
1676 #define SET_REGNO_RAW(RTX,N) (XCUINT (RTX, 0, REG) = N)
1678 /* ORIGINAL_REGNO holds the number the register originally had; for a
1679 pseudo register turned into a hard reg this will hold the old pseudo
1681 #define ORIGINAL_REGNO(RTX) \
1682 (RTL_FLAG_CHECK1 ("ORIGINAL_REGNO", (RTX), REG)->u2.original_regno)
1684 /* Force the REGNO macro to only be used on the lhs. */
1685 static inline unsigned int
1686 rhs_regno (const_rtx x
)
1688 return XCUINT (x
, 0, REG
);
1692 /* 1 if RTX is a reg or parallel that is the current function's return
1694 #define REG_FUNCTION_VALUE_P(RTX) \
1695 (RTL_FLAG_CHECK2 ("REG_FUNCTION_VALUE_P", (RTX), REG, PARALLEL)->return_val)
1697 /* 1 if RTX is a reg that corresponds to a variable declared by the user. */
1698 #define REG_USERVAR_P(RTX) \
1699 (RTL_FLAG_CHECK1 ("REG_USERVAR_P", (RTX), REG)->volatil)
1701 /* 1 if RTX is a reg that holds a pointer value. */
1702 #define REG_POINTER(RTX) \
1703 (RTL_FLAG_CHECK1 ("REG_POINTER", (RTX), REG)->frame_related)
1705 /* 1 if RTX is a mem that holds a pointer value. */
1706 #define MEM_POINTER(RTX) \
1707 (RTL_FLAG_CHECK1 ("MEM_POINTER", (RTX), MEM)->frame_related)
1709 /* 1 if the given register REG corresponds to a hard register. */
1710 #define HARD_REGISTER_P(REG) (HARD_REGISTER_NUM_P (REGNO (REG)))
1712 /* 1 if the given register number REG_NO corresponds to a hard register. */
1713 #define HARD_REGISTER_NUM_P(REG_NO) ((REG_NO) < FIRST_PSEUDO_REGISTER)
1715 /* For a CONST_INT rtx, INTVAL extracts the integer. */
1716 #define INTVAL(RTX) XCWINT (RTX, 0, CONST_INT)
1717 #define UINTVAL(RTX) ((unsigned HOST_WIDE_INT) INTVAL (RTX))
1719 /* For a CONST_WIDE_INT, CONST_WIDE_INT_NUNITS is the number of
1720 elements actually needed to represent the constant.
1721 CONST_WIDE_INT_ELT gets one of the elements. 0 is the least
1722 significant HOST_WIDE_INT. */
1723 #define CONST_WIDE_INT_VEC(RTX) HWIVEC_CHECK (RTX, CONST_WIDE_INT)
1724 #define CONST_WIDE_INT_NUNITS(RTX) CWI_GET_NUM_ELEM (RTX)
1725 #define CONST_WIDE_INT_ELT(RTX, N) CWI_ELT (RTX, N)
1727 /* For a CONST_DOUBLE:
1728 #if TARGET_SUPPORTS_WIDE_INT == 0
1729 For a VOIDmode, there are two integers CONST_DOUBLE_LOW is the
1730 low-order word and ..._HIGH the high-order.
1732 For a float, there is a REAL_VALUE_TYPE structure, and
1733 CONST_DOUBLE_REAL_VALUE(r) is a pointer to it. */
1734 #define CONST_DOUBLE_LOW(r) XCMWINT (r, 0, CONST_DOUBLE, VOIDmode)
1735 #define CONST_DOUBLE_HIGH(r) XCMWINT (r, 1, CONST_DOUBLE, VOIDmode)
1736 #define CONST_DOUBLE_REAL_VALUE(r) \
1737 ((const struct real_value *) XCNMPRV (r, CONST_DOUBLE, VOIDmode))
1739 #define CONST_FIXED_VALUE(r) \
1740 ((const struct fixed_value *) XCNMPFV (r, CONST_FIXED, VOIDmode))
1741 #define CONST_FIXED_VALUE_HIGH(r) \
1742 ((HOST_WIDE_INT) (CONST_FIXED_VALUE (r)->data.high))
1743 #define CONST_FIXED_VALUE_LOW(r) \
1744 ((HOST_WIDE_INT) (CONST_FIXED_VALUE (r)->data.low))
1746 /* For a CONST_VECTOR, return element #n. */
1747 #define CONST_VECTOR_ELT(RTX, N) XCVECEXP (RTX, 0, N, CONST_VECTOR)
1749 /* For a CONST_VECTOR, return the number of elements in a vector. */
1750 #define CONST_VECTOR_NUNITS(RTX) XCVECLEN (RTX, 0, CONST_VECTOR)
1752 /* For a SUBREG rtx, SUBREG_REG extracts the value we want a subreg of.
1753 SUBREG_BYTE extracts the byte-number. */
1755 #define SUBREG_REG(RTX) XCEXP (RTX, 0, SUBREG)
1756 #define SUBREG_BYTE(RTX) XCUINT (RTX, 1, SUBREG)
1759 /* Return the right cost to give to an operation
1760 to make the cost of the corresponding register-to-register instruction
1761 N times that of a fast register-to-register instruction. */
1762 #define COSTS_N_INSNS(N) ((N) * 4)
1764 /* Maximum cost of an rtl expression. This value has the special meaning
1765 not to use an rtx with this cost under any circumstances. */
1766 #define MAX_COST INT_MAX
1768 /* A structure to hold all available cost information about an rtl
1770 struct full_rtx_costs
1776 /* Initialize a full_rtx_costs structure C to the maximum cost. */
1778 init_costs_to_max (struct full_rtx_costs
*c
)
1780 c
->speed
= MAX_COST
;
1784 /* Initialize a full_rtx_costs structure C to zero cost. */
1786 init_costs_to_zero (struct full_rtx_costs
*c
)
1792 /* Compare two full_rtx_costs structures A and B, returning true
1793 if A < B when optimizing for speed. */
1795 costs_lt_p (struct full_rtx_costs
*a
, struct full_rtx_costs
*b
,
1799 return (a
->speed
< b
->speed
1800 || (a
->speed
== b
->speed
&& a
->size
< b
->size
));
1802 return (a
->size
< b
->size
1803 || (a
->size
== b
->size
&& a
->speed
< b
->speed
));
1806 /* Increase both members of the full_rtx_costs structure C by the
1809 costs_add_n_insns (struct full_rtx_costs
*c
, int n
)
1811 c
->speed
+= COSTS_N_INSNS (n
);
1812 c
->size
+= COSTS_N_INSNS (n
);
1815 /* Information about an address. This structure is supposed to be able
1816 to represent all supported target addresses. Please extend it if it
1817 is not yet general enough. */
1818 struct address_info
{
1819 /* The mode of the value being addressed, or VOIDmode if this is
1820 a load-address operation with no known address mode. */
1821 enum machine_mode mode
;
1823 /* The address space. */
1826 /* A pointer to the top-level address. */
1829 /* A pointer to the inner address, after all address mutations
1830 have been stripped from the top-level address. It can be one
1833 - A {PRE,POST}_{INC,DEC} of *BASE. SEGMENT, INDEX and DISP are null.
1835 - A {PRE,POST}_MODIFY of *BASE. In this case either INDEX or DISP
1836 points to the step value, depending on whether the step is variable
1837 or constant respectively. SEGMENT is null.
1839 - A plain sum of the form SEGMENT + BASE + INDEX + DISP,
1840 with null fields evaluating to 0. */
1843 /* Components that make up *INNER. Each one may be null or nonnull.
1844 When nonnull, their meanings are as follows:
1846 - *SEGMENT is the "segment" of memory to which the address refers.
1847 This value is entirely target-specific and is only called a "segment"
1848 because that's its most typical use. It contains exactly one UNSPEC,
1849 pointed to by SEGMENT_TERM. The contents of *SEGMENT do not need
1852 - *BASE is a variable expression representing a base address.
1853 It contains exactly one REG, SUBREG or MEM, pointed to by BASE_TERM.
1855 - *INDEX is a variable expression representing an index value.
1856 It may be a scaled expression, such as a MULT. It has exactly
1857 one REG, SUBREG or MEM, pointed to by INDEX_TERM.
1859 - *DISP is a constant, possibly mutated. DISP_TERM points to the
1860 unmutated RTX_CONST_OBJ. */
1871 /* In a {PRE,POST}_MODIFY address, this points to a second copy
1872 of BASE_TERM, otherwise it is null. */
1875 /* ADDRESS if this structure describes an address operand, MEM if
1876 it describes a MEM address. */
1877 enum rtx_code addr_outer_code
;
1879 /* If BASE is nonnull, this is the code of the rtx that contains it. */
1880 enum rtx_code base_outer_code
;
1882 /* True if this is an RTX_AUTOINC address. */
1886 /* This is used to bundle an rtx and a mode together so that the pair
1887 can be used with the wi:: routines. If we ever put modes into rtx
1888 integer constants, this should go away and then just pass an rtx in. */
1889 typedef std::pair
<rtx
, enum machine_mode
> rtx_mode_t
;
1894 struct int_traits
<rtx_mode_t
>
1896 static const enum precision_type precision_type
= VAR_PRECISION
;
1897 static const bool host_dependent_precision
= false;
1898 /* This ought to be true, except for the special case that BImode
1899 is canonicalized to STORE_FLAG_VALUE, which might be 1. */
1900 static const bool is_sign_extended
= false;
1901 static unsigned int get_precision (const rtx_mode_t
&);
1902 static wi::storage_ref
decompose (HOST_WIDE_INT
*, unsigned int,
1903 const rtx_mode_t
&);
1908 wi::int_traits
<rtx_mode_t
>::get_precision (const rtx_mode_t
&x
)
1910 return GET_MODE_PRECISION (x
.second
);
1913 inline wi::storage_ref
1914 wi::int_traits
<rtx_mode_t
>::decompose (HOST_WIDE_INT
*,
1915 unsigned int precision
,
1916 const rtx_mode_t
&x
)
1918 gcc_checking_assert (precision
== get_precision (x
));
1919 switch (GET_CODE (x
.first
))
1922 if (precision
< HOST_BITS_PER_WIDE_INT
)
1923 /* Nonzero BImodes are stored as STORE_FLAG_VALUE, which on many
1924 targets is 1 rather than -1. */
1925 gcc_checking_assert (INTVAL (x
.first
)
1926 == sext_hwi (INTVAL (x
.first
), precision
)
1927 || (x
.second
== BImode
&& INTVAL (x
.first
) == 1));
1929 return wi::storage_ref (&INTVAL (x
.first
), 1, precision
);
1931 case CONST_WIDE_INT
:
1932 return wi::storage_ref (&CONST_WIDE_INT_ELT (x
.first
, 0),
1933 CONST_WIDE_INT_NUNITS (x
.first
), precision
);
1935 #if TARGET_SUPPORTS_WIDE_INT == 0
1937 return wi::storage_ref (&CONST_DOUBLE_LOW (x
.first
), 2, precision
);
1947 hwi_with_prec
shwi (HOST_WIDE_INT
, enum machine_mode mode
);
1948 wide_int
min_value (enum machine_mode
, signop
);
1949 wide_int
max_value (enum machine_mode
, signop
);
1952 inline wi::hwi_with_prec
1953 wi::shwi (HOST_WIDE_INT val
, enum machine_mode mode
)
1955 return shwi (val
, GET_MODE_PRECISION (mode
));
1958 /* Produce the smallest number that is represented in MODE. The precision
1959 is taken from MODE and the sign from SGN. */
1961 wi::min_value (enum machine_mode mode
, signop sgn
)
1963 return min_value (GET_MODE_PRECISION (mode
), sgn
);
1966 /* Produce the largest number that is represented in MODE. The precision
1967 is taken from MODE and the sign from SGN. */
1969 wi::max_value (enum machine_mode mode
, signop sgn
)
1971 return max_value (GET_MODE_PRECISION (mode
), sgn
);
1974 extern void init_rtlanal (void);
1975 extern int rtx_cost (rtx
, enum rtx_code
, int, bool);
1976 extern int address_cost (rtx
, enum machine_mode
, addr_space_t
, bool);
1977 extern void get_full_rtx_cost (rtx
, enum rtx_code
, int,
1978 struct full_rtx_costs
*);
1979 extern unsigned int subreg_lsb (const_rtx
);
1980 extern unsigned int subreg_lsb_1 (enum machine_mode
, enum machine_mode
,
1982 extern unsigned int subreg_regno_offset (unsigned int, enum machine_mode
,
1983 unsigned int, enum machine_mode
);
1984 extern bool subreg_offset_representable_p (unsigned int, enum machine_mode
,
1985 unsigned int, enum machine_mode
);
1986 extern unsigned int subreg_regno (const_rtx
);
1987 extern int simplify_subreg_regno (unsigned int, enum machine_mode
,
1988 unsigned int, enum machine_mode
);
1989 extern unsigned int subreg_nregs (const_rtx
);
1990 extern unsigned int subreg_nregs_with_regno (unsigned int, const_rtx
);
1991 extern unsigned HOST_WIDE_INT
nonzero_bits (const_rtx
, enum machine_mode
);
1992 extern unsigned int num_sign_bit_copies (const_rtx
, enum machine_mode
);
1993 extern bool constant_pool_constant_p (rtx
);
1994 extern bool truncated_to_mode (enum machine_mode
, const_rtx
);
1995 extern int low_bitmask_len (enum machine_mode
, unsigned HOST_WIDE_INT
);
1996 extern void split_double (rtx
, rtx
*, rtx
*);
1997 extern rtx
*strip_address_mutations (rtx
*, enum rtx_code
* = 0);
1998 extern void decompose_address (struct address_info
*, rtx
*,
1999 enum machine_mode
, addr_space_t
, enum rtx_code
);
2000 extern void decompose_lea_address (struct address_info
*, rtx
*);
2001 extern void decompose_mem_address (struct address_info
*, rtx
);
2002 extern void update_address (struct address_info
*);
2003 extern HOST_WIDE_INT
get_index_scale (const struct address_info
*);
2004 extern enum rtx_code
get_index_code (const struct address_info
*);
2006 #ifndef GENERATOR_FILE
2007 /* Return the cost of SET X. SPEED_P is true if optimizing for speed
2008 rather than size. */
2011 set_rtx_cost (rtx x
, bool speed_p
)
2013 return rtx_cost (x
, INSN
, 4, speed_p
);
2016 /* Like set_rtx_cost, but return both the speed and size costs in C. */
2019 get_full_set_rtx_cost (rtx x
, struct full_rtx_costs
*c
)
2021 get_full_rtx_cost (x
, INSN
, 4, c
);
2024 /* Return the cost of moving X into a register, relative to the cost
2025 of a register move. SPEED_P is true if optimizing for speed rather
2029 set_src_cost (rtx x
, bool speed_p
)
2031 return rtx_cost (x
, SET
, 1, speed_p
);
2034 /* Like set_src_cost, but return both the speed and size costs in C. */
2037 get_full_set_src_cost (rtx x
, struct full_rtx_costs
*c
)
2039 get_full_rtx_cost (x
, SET
, 1, c
);
2043 /* 1 if RTX is a subreg containing a reg that is already known to be
2044 sign- or zero-extended from the mode of the subreg to the mode of
2045 the reg. SUBREG_PROMOTED_UNSIGNED_P gives the signedness of the
2048 When used as a LHS, is means that this extension must be done
2049 when assigning to SUBREG_REG. */
2051 #define SUBREG_PROMOTED_VAR_P(RTX) \
2052 (RTL_FLAG_CHECK1 ("SUBREG_PROMOTED", (RTX), SUBREG)->in_struct)
2054 /* Valid for subregs which are SUBREG_PROMOTED_VAR_P(). In that case
2055 this gives the necessary extensions:
2056 0 - signed (SPR_SIGNED)
2057 1 - normal unsigned (SPR_UNSIGNED)
2058 2 - value is both sign and unsign extended for mode
2059 (SPR_SIGNED_AND_UNSIGNED).
2060 -1 - pointer unsigned, which most often can be handled like unsigned
2061 extension, except for generating instructions where we need to
2062 emit special code (ptr_extend insns) on some architectures
2065 const int SRP_POINTER
= -1;
2066 const int SRP_SIGNED
= 0;
2067 const int SRP_UNSIGNED
= 1;
2068 const int SRP_SIGNED_AND_UNSIGNED
= 2;
2070 /* Sets promoted mode for SUBREG_PROMOTED_VAR_P(). */
2071 #define SUBREG_PROMOTED_SET(RTX, VAL) \
2073 rtx const _rtx = RTL_FLAG_CHECK1 ("SUBREG_PROMOTED_SET", \
2078 _rtx->volatil = 0; \
2079 _rtx->unchanging = 0; \
2082 _rtx->volatil = 0; \
2083 _rtx->unchanging = 1; \
2085 case SRP_UNSIGNED: \
2086 _rtx->volatil = 1; \
2087 _rtx->unchanging = 0; \
2089 case SRP_SIGNED_AND_UNSIGNED: \
2090 _rtx->volatil = 1; \
2091 _rtx->unchanging = 1; \
2096 /* Gets the value stored in promoted mode for SUBREG_PROMOTED_VAR_P(),
2097 including SRP_SIGNED_AND_UNSIGNED if promoted for
2098 both signed and unsigned. */
2099 #define SUBREG_PROMOTED_GET(RTX) \
2100 (2 * (RTL_FLAG_CHECK1 ("SUBREG_PROMOTED_GET", (RTX), SUBREG)->volatil)\
2101 + (RTX)->unchanging - 1)
2103 /* Returns sign of promoted mode for SUBREG_PROMOTED_VAR_P(). */
2104 #define SUBREG_PROMOTED_SIGN(RTX) \
2105 ((RTL_FLAG_CHECK1 ("SUBREG_PROMOTED_SIGN", (RTX), SUBREG)->volatil) ? 1\
2106 : (RTX)->unchanging - 1)
2108 /* Predicate to check if RTX of SUBREG_PROMOTED_VAR_P() is promoted
2110 #define SUBREG_PROMOTED_SIGNED_P(RTX) \
2111 (RTL_FLAG_CHECK1 ("SUBREG_PROMOTED_SIGNED_P", (RTX), SUBREG)->unchanging)
2113 /* Predicate to check if RTX of SUBREG_PROMOTED_VAR_P() is promoted
2114 for UNSIGNED type. */
2115 #define SUBREG_PROMOTED_UNSIGNED_P(RTX) \
2116 (RTL_FLAG_CHECK1 ("SUBREG_PROMOTED_UNSIGNED_P", (RTX), SUBREG)->volatil)
2118 /* Checks if RTX of SUBREG_PROMOTED_VAR_P() is promoted for given SIGN. */
2119 #define SUBREG_CHECK_PROMOTED_SIGN(RTX, SIGN) \
2120 ((SIGN) == SRP_POINTER ? SUBREG_PROMOTED_GET (RTX) == SRP_POINTER \
2121 : (SIGN) == SRP_SIGNED ? SUBREG_PROMOTED_SIGNED_P (RTX) \
2122 : SUBREG_PROMOTED_UNSIGNED_P (RTX))
2124 /* True if the subreg was generated by LRA for reload insns. Such
2125 subregs are valid only during LRA. */
2126 #define LRA_SUBREG_P(RTX) \
2127 (RTL_FLAG_CHECK1 ("LRA_SUBREG_P", (RTX), SUBREG)->jump)
2129 /* Access various components of an ASM_OPERANDS rtx. */
2131 #define ASM_OPERANDS_TEMPLATE(RTX) XCSTR (RTX, 0, ASM_OPERANDS)
2132 #define ASM_OPERANDS_OUTPUT_CONSTRAINT(RTX) XCSTR (RTX, 1, ASM_OPERANDS)
2133 #define ASM_OPERANDS_OUTPUT_IDX(RTX) XCINT (RTX, 2, ASM_OPERANDS)
2134 #define ASM_OPERANDS_INPUT_VEC(RTX) XCVEC (RTX, 3, ASM_OPERANDS)
2135 #define ASM_OPERANDS_INPUT_CONSTRAINT_VEC(RTX) XCVEC (RTX, 4, ASM_OPERANDS)
2136 #define ASM_OPERANDS_INPUT(RTX, N) XCVECEXP (RTX, 3, N, ASM_OPERANDS)
2137 #define ASM_OPERANDS_INPUT_LENGTH(RTX) XCVECLEN (RTX, 3, ASM_OPERANDS)
2138 #define ASM_OPERANDS_INPUT_CONSTRAINT_EXP(RTX, N) \
2139 XCVECEXP (RTX, 4, N, ASM_OPERANDS)
2140 #define ASM_OPERANDS_INPUT_CONSTRAINT(RTX, N) \
2141 XSTR (XCVECEXP (RTX, 4, N, ASM_OPERANDS), 0)
2142 #define ASM_OPERANDS_INPUT_MODE(RTX, N) \
2143 GET_MODE (XCVECEXP (RTX, 4, N, ASM_OPERANDS))
2144 #define ASM_OPERANDS_LABEL_VEC(RTX) XCVEC (RTX, 5, ASM_OPERANDS)
2145 #define ASM_OPERANDS_LABEL_LENGTH(RTX) XCVECLEN (RTX, 5, ASM_OPERANDS)
2146 #define ASM_OPERANDS_LABEL(RTX, N) XCVECEXP (RTX, 5, N, ASM_OPERANDS)
2147 #define ASM_OPERANDS_SOURCE_LOCATION(RTX) XCUINT (RTX, 6, ASM_OPERANDS)
2148 #define ASM_INPUT_SOURCE_LOCATION(RTX) XCUINT (RTX, 1, ASM_INPUT)
2150 /* 1 if RTX is a mem that is statically allocated in read-only memory. */
2151 #define MEM_READONLY_P(RTX) \
2152 (RTL_FLAG_CHECK1 ("MEM_READONLY_P", (RTX), MEM)->unchanging)
2154 /* 1 if RTX is a mem and we should keep the alias set for this mem
2155 unchanged when we access a component. Set to 1, or example, when we
2156 are already in a non-addressable component of an aggregate. */
2157 #define MEM_KEEP_ALIAS_SET_P(RTX) \
2158 (RTL_FLAG_CHECK1 ("MEM_KEEP_ALIAS_SET_P", (RTX), MEM)->jump)
2160 /* 1 if RTX is a mem or asm_operand for a volatile reference. */
2161 #define MEM_VOLATILE_P(RTX) \
2162 (RTL_FLAG_CHECK3 ("MEM_VOLATILE_P", (RTX), MEM, ASM_OPERANDS, \
2163 ASM_INPUT)->volatil)
2165 /* 1 if RTX is a mem that cannot trap. */
2166 #define MEM_NOTRAP_P(RTX) \
2167 (RTL_FLAG_CHECK1 ("MEM_NOTRAP_P", (RTX), MEM)->call)
2169 /* The memory attribute block. We provide access macros for each value
2170 in the block and provide defaults if none specified. */
2171 #define MEM_ATTRS(RTX) X0MEMATTR (RTX, 1)
2173 /* The register attribute block. We provide access macros for each value
2174 in the block and provide defaults if none specified. */
2175 #define REG_ATTRS(RTX) X0REGATTR (RTX, 1)
2177 #ifndef GENERATOR_FILE
2178 /* For a MEM rtx, the alias set. If 0, this MEM is not in any alias
2179 set, and may alias anything. Otherwise, the MEM can only alias
2180 MEMs in a conflicting alias set. This value is set in a
2181 language-dependent manner in the front-end, and should not be
2182 altered in the back-end. These set numbers are tested with
2183 alias_sets_conflict_p. */
2184 #define MEM_ALIAS_SET(RTX) (get_mem_attrs (RTX)->alias)
2186 /* For a MEM rtx, the decl it is known to refer to, if it is known to
2187 refer to part of a DECL. It may also be a COMPONENT_REF. */
2188 #define MEM_EXPR(RTX) (get_mem_attrs (RTX)->expr)
2190 /* For a MEM rtx, true if its MEM_OFFSET is known. */
2191 #define MEM_OFFSET_KNOWN_P(RTX) (get_mem_attrs (RTX)->offset_known_p)
2193 /* For a MEM rtx, the offset from the start of MEM_EXPR. */
2194 #define MEM_OFFSET(RTX) (get_mem_attrs (RTX)->offset)
2196 /* For a MEM rtx, the address space. */
2197 #define MEM_ADDR_SPACE(RTX) (get_mem_attrs (RTX)->addrspace)
2199 /* For a MEM rtx, true if its MEM_SIZE is known. */
2200 #define MEM_SIZE_KNOWN_P(RTX) (get_mem_attrs (RTX)->size_known_p)
2202 /* For a MEM rtx, the size in bytes of the MEM. */
2203 #define MEM_SIZE(RTX) (get_mem_attrs (RTX)->size)
2205 /* For a MEM rtx, the alignment in bits. We can use the alignment of the
2206 mode as a default when STRICT_ALIGNMENT, but not if not. */
2207 #define MEM_ALIGN(RTX) (get_mem_attrs (RTX)->align)
2209 #define MEM_ADDR_SPACE(RTX) ADDR_SPACE_GENERIC
2212 /* For a REG rtx, the decl it is known to refer to, if it is known to
2213 refer to part of a DECL. */
2214 #define REG_EXPR(RTX) (REG_ATTRS (RTX) == 0 ? 0 : REG_ATTRS (RTX)->decl)
2216 /* For a REG rtx, the offset from the start of REG_EXPR, if known, as an
2218 #define REG_OFFSET(RTX) (REG_ATTRS (RTX) == 0 ? 0 : REG_ATTRS (RTX)->offset)
2220 /* Copy the attributes that apply to memory locations from RHS to LHS. */
2221 #define MEM_COPY_ATTRIBUTES(LHS, RHS) \
2222 (MEM_VOLATILE_P (LHS) = MEM_VOLATILE_P (RHS), \
2223 MEM_NOTRAP_P (LHS) = MEM_NOTRAP_P (RHS), \
2224 MEM_READONLY_P (LHS) = MEM_READONLY_P (RHS), \
2225 MEM_KEEP_ALIAS_SET_P (LHS) = MEM_KEEP_ALIAS_SET_P (RHS), \
2226 MEM_POINTER (LHS) = MEM_POINTER (RHS), \
2227 MEM_ATTRS (LHS) = MEM_ATTRS (RHS))
2229 /* 1 if RTX is a label_ref for a nonlocal label. */
2230 /* Likewise in an expr_list for a REG_LABEL_OPERAND or
2231 REG_LABEL_TARGET note. */
2232 #define LABEL_REF_NONLOCAL_P(RTX) \
2233 (RTL_FLAG_CHECK1 ("LABEL_REF_NONLOCAL_P", (RTX), LABEL_REF)->volatil)
2235 /* 1 if RTX is a code_label that should always be considered to be needed. */
2236 #define LABEL_PRESERVE_P(RTX) \
2237 (RTL_FLAG_CHECK2 ("LABEL_PRESERVE_P", (RTX), CODE_LABEL, NOTE)->in_struct)
2239 /* During sched, 1 if RTX is an insn that must be scheduled together
2240 with the preceding insn. */
2241 #define SCHED_GROUP_P(RTX) \
2242 (RTL_FLAG_CHECK4 ("SCHED_GROUP_P", (RTX), DEBUG_INSN, INSN, \
2243 JUMP_INSN, CALL_INSN)->in_struct)
2245 /* For a SET rtx, SET_DEST is the place that is set
2246 and SET_SRC is the value it is set to. */
2247 #define SET_DEST(RTX) XC2EXP (RTX, 0, SET, CLOBBER)
2248 #define SET_SRC(RTX) XCEXP (RTX, 1, SET)
2249 #define SET_IS_RETURN_P(RTX) \
2250 (RTL_FLAG_CHECK1 ("SET_IS_RETURN_P", (RTX), SET)->jump)
2252 /* For a TRAP_IF rtx, TRAP_CONDITION is an expression. */
2253 #define TRAP_CONDITION(RTX) XCEXP (RTX, 0, TRAP_IF)
2254 #define TRAP_CODE(RTX) XCEXP (RTX, 1, TRAP_IF)
2256 /* For a COND_EXEC rtx, COND_EXEC_TEST is the condition to base
2257 conditionally executing the code on, COND_EXEC_CODE is the code
2258 to execute if the condition is true. */
2259 #define COND_EXEC_TEST(RTX) XCEXP (RTX, 0, COND_EXEC)
2260 #define COND_EXEC_CODE(RTX) XCEXP (RTX, 1, COND_EXEC)
2262 /* 1 if RTX is a symbol_ref that addresses this function's rtl
2264 #define CONSTANT_POOL_ADDRESS_P(RTX) \
2265 (RTL_FLAG_CHECK1 ("CONSTANT_POOL_ADDRESS_P", (RTX), SYMBOL_REF)->unchanging)
2267 /* 1 if RTX is a symbol_ref that addresses a value in the file's
2268 tree constant pool. This information is private to varasm.c. */
2269 #define TREE_CONSTANT_POOL_ADDRESS_P(RTX) \
2270 (RTL_FLAG_CHECK1 ("TREE_CONSTANT_POOL_ADDRESS_P", \
2271 (RTX), SYMBOL_REF)->frame_related)
2273 /* Used if RTX is a symbol_ref, for machine-specific purposes. */
2274 #define SYMBOL_REF_FLAG(RTX) \
2275 (RTL_FLAG_CHECK1 ("SYMBOL_REF_FLAG", (RTX), SYMBOL_REF)->volatil)
2277 /* 1 if RTX is a symbol_ref that has been the library function in
2278 emit_library_call. */
2279 #define SYMBOL_REF_USED(RTX) \
2280 (RTL_FLAG_CHECK1 ("SYMBOL_REF_USED", (RTX), SYMBOL_REF)->used)
2282 /* 1 if RTX is a symbol_ref for a weak symbol. */
2283 #define SYMBOL_REF_WEAK(RTX) \
2284 (RTL_FLAG_CHECK1 ("SYMBOL_REF_WEAK", (RTX), SYMBOL_REF)->return_val)
2286 /* A pointer attached to the SYMBOL_REF; either SYMBOL_REF_DECL or
2287 SYMBOL_REF_CONSTANT. */
2288 #define SYMBOL_REF_DATA(RTX) X0ANY ((RTX), 1)
2290 /* Set RTX's SYMBOL_REF_DECL to DECL. RTX must not be a constant
2292 #define SET_SYMBOL_REF_DECL(RTX, DECL) \
2293 (gcc_assert (!CONSTANT_POOL_ADDRESS_P (RTX)), X0TREE ((RTX), 1) = (DECL))
2295 /* The tree (decl or constant) associated with the symbol, or null. */
2296 #define SYMBOL_REF_DECL(RTX) \
2297 (CONSTANT_POOL_ADDRESS_P (RTX) ? NULL : X0TREE ((RTX), 1))
2299 /* Set RTX's SYMBOL_REF_CONSTANT to C. RTX must be a constant pool symbol. */
2300 #define SET_SYMBOL_REF_CONSTANT(RTX, C) \
2301 (gcc_assert (CONSTANT_POOL_ADDRESS_P (RTX)), X0CONSTANT ((RTX), 1) = (C))
2303 /* The rtx constant pool entry for a symbol, or null. */
2304 #define SYMBOL_REF_CONSTANT(RTX) \
2305 (CONSTANT_POOL_ADDRESS_P (RTX) ? X0CONSTANT ((RTX), 1) : NULL)
2307 /* A set of flags on a symbol_ref that are, in some respects, redundant with
2308 information derivable from the tree decl associated with this symbol.
2309 Except that we build a *lot* of SYMBOL_REFs that aren't associated with a
2310 decl. In some cases this is a bug. But beyond that, it's nice to cache
2311 this information to avoid recomputing it. Finally, this allows space for
2312 the target to store more than one bit of information, as with
2314 #define SYMBOL_REF_FLAGS(RTX) \
2315 (RTL_FLAG_CHECK1 ("SYMBOL_REF_FLAGS", (RTX), SYMBOL_REF) \
2316 ->u2.symbol_ref_flags)
2318 /* These flags are common enough to be defined for all targets. They
2319 are computed by the default version of targetm.encode_section_info. */
2321 /* Set if this symbol is a function. */
2322 #define SYMBOL_FLAG_FUNCTION (1 << 0)
2323 #define SYMBOL_REF_FUNCTION_P(RTX) \
2324 ((SYMBOL_REF_FLAGS (RTX) & SYMBOL_FLAG_FUNCTION) != 0)
2325 /* Set if targetm.binds_local_p is true. */
2326 #define SYMBOL_FLAG_LOCAL (1 << 1)
2327 #define SYMBOL_REF_LOCAL_P(RTX) \
2328 ((SYMBOL_REF_FLAGS (RTX) & SYMBOL_FLAG_LOCAL) != 0)
2329 /* Set if targetm.in_small_data_p is true. */
2330 #define SYMBOL_FLAG_SMALL (1 << 2)
2331 #define SYMBOL_REF_SMALL_P(RTX) \
2332 ((SYMBOL_REF_FLAGS (RTX) & SYMBOL_FLAG_SMALL) != 0)
2333 /* The three-bit field at [5:3] is true for TLS variables; use
2334 SYMBOL_REF_TLS_MODEL to extract the field as an enum tls_model. */
2335 #define SYMBOL_FLAG_TLS_SHIFT 3
2336 #define SYMBOL_REF_TLS_MODEL(RTX) \
2337 ((enum tls_model) ((SYMBOL_REF_FLAGS (RTX) >> SYMBOL_FLAG_TLS_SHIFT) & 7))
2338 /* Set if this symbol is not defined in this translation unit. */
2339 #define SYMBOL_FLAG_EXTERNAL (1 << 6)
2340 #define SYMBOL_REF_EXTERNAL_P(RTX) \
2341 ((SYMBOL_REF_FLAGS (RTX) & SYMBOL_FLAG_EXTERNAL) != 0)
2342 /* Set if this symbol has a block_symbol structure associated with it. */
2343 #define SYMBOL_FLAG_HAS_BLOCK_INFO (1 << 7)
2344 #define SYMBOL_REF_HAS_BLOCK_INFO_P(RTX) \
2345 ((SYMBOL_REF_FLAGS (RTX) & SYMBOL_FLAG_HAS_BLOCK_INFO) != 0)
2346 /* Set if this symbol is a section anchor. SYMBOL_REF_ANCHOR_P implies
2347 SYMBOL_REF_HAS_BLOCK_INFO_P. */
2348 #define SYMBOL_FLAG_ANCHOR (1 << 8)
2349 #define SYMBOL_REF_ANCHOR_P(RTX) \
2350 ((SYMBOL_REF_FLAGS (RTX) & SYMBOL_FLAG_ANCHOR) != 0)
2352 /* Subsequent bits are available for the target to use. */
2353 #define SYMBOL_FLAG_MACH_DEP_SHIFT 9
2354 #define SYMBOL_FLAG_MACH_DEP (1 << SYMBOL_FLAG_MACH_DEP_SHIFT)
2356 /* If SYMBOL_REF_HAS_BLOCK_INFO_P (RTX), this is the object_block
2357 structure to which the symbol belongs, or NULL if it has not been
2358 assigned a block. */
2359 #define SYMBOL_REF_BLOCK(RTX) (BLOCK_SYMBOL_CHECK (RTX)->block)
2361 /* If SYMBOL_REF_HAS_BLOCK_INFO_P (RTX), this is the offset of RTX from
2362 the first object in SYMBOL_REF_BLOCK (RTX). The value is negative if
2363 RTX has not yet been assigned to a block, or it has not been given an
2364 offset within that block. */
2365 #define SYMBOL_REF_BLOCK_OFFSET(RTX) (BLOCK_SYMBOL_CHECK (RTX)->offset)
2367 /* True if RTX is flagged to be a scheduling barrier. */
2368 #define PREFETCH_SCHEDULE_BARRIER_P(RTX) \
2369 (RTL_FLAG_CHECK1 ("PREFETCH_SCHEDULE_BARRIER_P", (RTX), PREFETCH)->volatil)
2371 /* Indicate whether the machine has any sort of auto increment addressing.
2372 If not, we can avoid checking for REG_INC notes. */
2374 #if (defined (HAVE_PRE_INCREMENT) || defined (HAVE_PRE_DECREMENT) \
2375 || defined (HAVE_POST_INCREMENT) || defined (HAVE_POST_DECREMENT) \
2376 || defined (HAVE_PRE_MODIFY_DISP) || defined (HAVE_POST_MODIFY_DISP) \
2377 || defined (HAVE_PRE_MODIFY_REG) || defined (HAVE_POST_MODIFY_REG))
2378 #define AUTO_INC_DEC
2381 /* Define a macro to look for REG_INC notes,
2382 but save time on machines where they never exist. */
2385 #define FIND_REG_INC_NOTE(INSN, REG) \
2386 ((REG) != NULL_RTX && REG_P ((REG)) \
2387 ? find_regno_note ((INSN), REG_INC, REGNO (REG)) \
2388 : find_reg_note ((INSN), REG_INC, (REG)))
2390 #define FIND_REG_INC_NOTE(INSN, REG) 0
2393 #ifndef HAVE_PRE_INCREMENT
2394 #define HAVE_PRE_INCREMENT 0
2397 #ifndef HAVE_PRE_DECREMENT
2398 #define HAVE_PRE_DECREMENT 0
2401 #ifndef HAVE_POST_INCREMENT
2402 #define HAVE_POST_INCREMENT 0
2405 #ifndef HAVE_POST_DECREMENT
2406 #define HAVE_POST_DECREMENT 0
2409 #ifndef HAVE_POST_MODIFY_DISP
2410 #define HAVE_POST_MODIFY_DISP 0
2413 #ifndef HAVE_POST_MODIFY_REG
2414 #define HAVE_POST_MODIFY_REG 0
2417 #ifndef HAVE_PRE_MODIFY_DISP
2418 #define HAVE_PRE_MODIFY_DISP 0
2421 #ifndef HAVE_PRE_MODIFY_REG
2422 #define HAVE_PRE_MODIFY_REG 0
2426 /* Some architectures do not have complete pre/post increment/decrement
2427 instruction sets, or only move some modes efficiently. These macros
2428 allow us to tune autoincrement generation. */
2430 #ifndef USE_LOAD_POST_INCREMENT
2431 #define USE_LOAD_POST_INCREMENT(MODE) HAVE_POST_INCREMENT
2434 #ifndef USE_LOAD_POST_DECREMENT
2435 #define USE_LOAD_POST_DECREMENT(MODE) HAVE_POST_DECREMENT
2438 #ifndef USE_LOAD_PRE_INCREMENT
2439 #define USE_LOAD_PRE_INCREMENT(MODE) HAVE_PRE_INCREMENT
2442 #ifndef USE_LOAD_PRE_DECREMENT
2443 #define USE_LOAD_PRE_DECREMENT(MODE) HAVE_PRE_DECREMENT
2446 #ifndef USE_STORE_POST_INCREMENT
2447 #define USE_STORE_POST_INCREMENT(MODE) HAVE_POST_INCREMENT
2450 #ifndef USE_STORE_POST_DECREMENT
2451 #define USE_STORE_POST_DECREMENT(MODE) HAVE_POST_DECREMENT
2454 #ifndef USE_STORE_PRE_INCREMENT
2455 #define USE_STORE_PRE_INCREMENT(MODE) HAVE_PRE_INCREMENT
2458 #ifndef USE_STORE_PRE_DECREMENT
2459 #define USE_STORE_PRE_DECREMENT(MODE) HAVE_PRE_DECREMENT
2462 /* Nonzero when we are generating CONCATs. */
2463 extern int generating_concat_p
;
2465 /* Nonzero when we are expanding trees to RTL. */
2466 extern int currently_expanding_to_rtl
;
2468 /* Generally useful functions. */
2471 extern HOST_WIDE_INT
trunc_int_for_mode (HOST_WIDE_INT
, enum machine_mode
);
2472 extern rtx
plus_constant (enum machine_mode
, rtx
, HOST_WIDE_INT
, bool = false);
2475 extern rtx
rtx_alloc_stat (RTX_CODE MEM_STAT_DECL
);
2476 #define rtx_alloc(c) rtx_alloc_stat (c MEM_STAT_INFO)
2477 extern rtx
rtx_alloc_stat_v (RTX_CODE MEM_STAT_DECL
, int);
2478 #define rtx_alloc_v(c, SZ) rtx_alloc_stat_v (c MEM_STAT_INFO, SZ)
2479 #define const_wide_int_alloc(NWORDS) \
2480 rtx_alloc_v (CONST_WIDE_INT, \
2481 (sizeof (struct hwivec_def) \
2482 + ((NWORDS)-1) * sizeof (HOST_WIDE_INT))) \
2484 extern rtvec rtvec_alloc (int);
2485 extern rtvec
shallow_copy_rtvec (rtvec
);
2486 extern bool shared_const_p (const_rtx
);
2487 extern rtx
copy_rtx (rtx
);
2488 extern void dump_rtx_statistics (void);
2491 extern rtx
copy_rtx_if_shared (rtx
);
2494 extern unsigned int rtx_size (const_rtx
);
2495 extern rtx
shallow_copy_rtx_stat (const_rtx MEM_STAT_DECL
);
2496 #define shallow_copy_rtx(a) shallow_copy_rtx_stat (a MEM_STAT_INFO)
2497 extern int rtx_equal_p (const_rtx
, const_rtx
);
2500 extern rtvec
gen_rtvec_v (int, rtx
*);
2501 extern rtx
gen_reg_rtx (enum machine_mode
);
2502 extern rtx
gen_rtx_REG_offset (rtx
, enum machine_mode
, unsigned int, int);
2503 extern rtx
gen_reg_rtx_offset (rtx
, enum machine_mode
, int);
2504 extern rtx
gen_reg_rtx_and_attrs (rtx
);
2505 extern rtx_code_label
*gen_label_rtx (void);
2506 extern rtx
gen_lowpart_common (enum machine_mode
, rtx
);
2509 extern rtx
gen_lowpart_if_possible (enum machine_mode
, rtx
);
2512 extern rtx
gen_highpart (enum machine_mode
, rtx
);
2513 extern rtx
gen_highpart_mode (enum machine_mode
, enum machine_mode
, rtx
);
2514 extern rtx
operand_subword (rtx
, unsigned int, int, enum machine_mode
);
2517 extern rtx
operand_subword_force (rtx
, unsigned int, enum machine_mode
);
2518 extern bool paradoxical_subreg_p (const_rtx
);
2519 extern int subreg_lowpart_p (const_rtx
);
2520 extern unsigned int subreg_lowpart_offset (enum machine_mode
,
2522 extern unsigned int subreg_highpart_offset (enum machine_mode
,
2524 extern int byte_lowpart_offset (enum machine_mode
, enum machine_mode
);
2525 extern rtx
make_safe_from (rtx
, rtx
);
2526 extern rtx
convert_memory_address_addr_space (enum machine_mode
, rtx
,
2528 #define convert_memory_address(to_mode,x) \
2529 convert_memory_address_addr_space ((to_mode), (x), ADDR_SPACE_GENERIC)
2530 extern const char *get_insn_name (int);
2531 extern rtx_insn
*get_last_insn_anywhere (void);
2532 extern rtx
get_first_nonnote_insn (void);
2533 extern rtx
get_last_nonnote_insn (void);
2534 extern void start_sequence (void);
2535 extern void push_to_sequence (rtx_insn
*);
2536 extern void push_to_sequence2 (rtx_insn
*, rtx_insn
*);
2537 extern void end_sequence (void);
2538 #if TARGET_SUPPORTS_WIDE_INT == 0
2539 extern double_int
rtx_to_double_int (const_rtx
);
2541 extern void cwi_output_hex (FILE *, const_rtx
);
2542 #ifndef GENERATOR_FILE
2543 extern rtx
immed_wide_int_const (const wide_int_ref
&, enum machine_mode
);
2545 #if TARGET_SUPPORTS_WIDE_INT == 0
2546 extern rtx
immed_double_const (HOST_WIDE_INT
, HOST_WIDE_INT
,
2552 extern rtx
lowpart_subreg (enum machine_mode
, rtx
, enum machine_mode
);
2555 extern rtx
force_const_mem (enum machine_mode
, rtx
);
2560 extern rtx
get_pool_constant (rtx
);
2561 extern rtx
get_pool_constant_mark (rtx
, bool *);
2562 extern enum machine_mode
get_pool_mode (const_rtx
);
2563 extern rtx
simplify_subtraction (rtx
);
2564 extern void decide_function_section (tree
);
2567 extern rtx
assign_stack_local (enum machine_mode
, HOST_WIDE_INT
, int);
2568 #define ASLK_REDUCE_ALIGN 1
2569 #define ASLK_RECORD_PAD 2
2570 extern rtx
assign_stack_local_1 (enum machine_mode
, HOST_WIDE_INT
, int, int);
2571 extern rtx
assign_stack_temp (enum machine_mode
, HOST_WIDE_INT
);
2572 extern rtx
assign_stack_temp_for_type (enum machine_mode
, HOST_WIDE_INT
, tree
);
2573 extern rtx
assign_temp (tree
, int, int);
2576 extern rtx_insn
*emit_insn_before (rtx
, rtx
);
2577 extern rtx_insn
*emit_insn_before_noloc (rtx
, rtx
, basic_block
);
2578 extern rtx_insn
*emit_insn_before_setloc (rtx
, rtx
, int);
2579 extern rtx_insn
*emit_jump_insn_before (rtx
, rtx
);
2580 extern rtx_insn
*emit_jump_insn_before_noloc (rtx
, rtx
);
2581 extern rtx_insn
*emit_jump_insn_before_setloc (rtx
, rtx
, int);
2582 extern rtx_insn
*emit_call_insn_before (rtx
, rtx
);
2583 extern rtx_insn
*emit_call_insn_before_noloc (rtx
, rtx
);
2584 extern rtx_insn
*emit_call_insn_before_setloc (rtx
, rtx
, int);
2585 extern rtx_insn
*emit_debug_insn_before (rtx
, rtx
);
2586 extern rtx_insn
*emit_debug_insn_before_noloc (rtx
, rtx
);
2587 extern rtx_insn
*emit_debug_insn_before_setloc (rtx
, rtx
, int);
2588 extern rtx_barrier
*emit_barrier_before (rtx
);
2589 extern rtx_insn
*emit_label_before (rtx
, rtx
);
2590 extern rtx_note
*emit_note_before (enum insn_note
, rtx
);
2591 extern rtx_insn
*emit_insn_after (rtx
, rtx
);
2592 extern rtx_insn
*emit_insn_after_noloc (rtx
, rtx
, basic_block
);
2593 extern rtx_insn
*emit_insn_after_setloc (rtx
, rtx
, int);
2594 extern rtx_insn
*emit_jump_insn_after (rtx
, rtx
);
2595 extern rtx_insn
*emit_jump_insn_after_noloc (rtx
, rtx
);
2596 extern rtx_insn
*emit_jump_insn_after_setloc (rtx
, rtx
, int);
2597 extern rtx_insn
*emit_call_insn_after (rtx
, rtx
);
2598 extern rtx_insn
*emit_call_insn_after_noloc (rtx
, rtx
);
2599 extern rtx_insn
*emit_call_insn_after_setloc (rtx
, rtx
, int);
2600 extern rtx_insn
*emit_debug_insn_after (rtx
, rtx
);
2601 extern rtx_insn
*emit_debug_insn_after_noloc (rtx
, rtx
);
2602 extern rtx_insn
*emit_debug_insn_after_setloc (rtx
, rtx
, int);
2603 extern rtx_barrier
*emit_barrier_after (rtx
);
2604 extern rtx_insn
*emit_label_after (rtx
, rtx
);
2605 extern rtx_note
*emit_note_after (enum insn_note
, rtx
);
2606 extern rtx_insn
*emit_insn (rtx
);
2607 extern rtx_insn
*emit_debug_insn (rtx
);
2608 extern rtx_insn
*emit_jump_insn (rtx
);
2609 extern rtx_insn
*emit_call_insn (rtx
);
2610 extern rtx_insn
*emit_label (rtx
);
2611 extern rtx_jump_table_data
*emit_jump_table_data (rtx
);
2612 extern rtx_barrier
*emit_barrier (void);
2613 extern rtx_note
*emit_note (enum insn_note
);
2614 extern rtx_note
*emit_note_copy (rtx_note
*);
2615 extern rtx_insn
*gen_clobber (rtx
);
2616 extern rtx_insn
*emit_clobber (rtx
);
2617 extern rtx_insn
*gen_use (rtx
);
2618 extern rtx_insn
*emit_use (rtx
);
2619 extern rtx_insn
*make_insn_raw (rtx
);
2620 extern void add_function_usage_to (rtx
, rtx
);
2621 extern rtx_call_insn
*last_call_insn (void);
2622 extern rtx_insn
*previous_insn (rtx
);
2623 extern rtx_insn
*next_insn (rtx
);
2624 extern rtx_insn
*prev_nonnote_insn (rtx
);
2625 extern rtx_insn
*prev_nonnote_insn_bb (rtx
);
2626 extern rtx_insn
*next_nonnote_insn (rtx
);
2627 extern rtx_insn
*next_nonnote_insn_bb (rtx
);
2628 extern rtx_insn
*prev_nondebug_insn (rtx
);
2629 extern rtx_insn
*next_nondebug_insn (rtx
);
2630 extern rtx_insn
*prev_nonnote_nondebug_insn (rtx
);
2631 extern rtx_insn
*next_nonnote_nondebug_insn (rtx
);
2632 extern rtx_insn
*prev_real_insn (rtx
);
2633 extern rtx_insn
*next_real_insn (rtx
);
2634 extern rtx_insn
*prev_active_insn (rtx
);
2635 extern rtx_insn
*next_active_insn (rtx
);
2636 extern int active_insn_p (const_rtx
);
2637 extern rtx_insn
*next_cc0_user (rtx
);
2638 extern rtx_insn
*prev_cc0_setter (rtx
);
2641 extern int insn_line (const_rtx
);
2642 extern const char * insn_file (const_rtx
);
2643 extern tree
insn_scope (const_rtx
);
2644 extern expanded_location
insn_location (const_rtx
);
2645 extern location_t prologue_location
, epilogue_location
;
2648 extern enum rtx_code
reverse_condition (enum rtx_code
);
2649 extern enum rtx_code
reverse_condition_maybe_unordered (enum rtx_code
);
2650 extern enum rtx_code
swap_condition (enum rtx_code
);
2651 extern enum rtx_code
unsigned_condition (enum rtx_code
);
2652 extern enum rtx_code
signed_condition (enum rtx_code
);
2653 extern void mark_jump_label (rtx
, rtx
, int);
2656 extern rtx_insn
*delete_related_insns (rtx
);
2659 extern rtx
*find_constant_term_loc (rtx
*);
2662 extern rtx_insn
*try_split (rtx
, rtx
, int);
2663 extern int split_branch_probability
;
2665 /* In unknown file */
2666 extern rtx
split_insns (rtx
, rtx
);
2668 /* In simplify-rtx.c */
2669 extern rtx
simplify_const_unary_operation (enum rtx_code
, enum machine_mode
,
2670 rtx
, enum machine_mode
);
2671 extern rtx
simplify_unary_operation (enum rtx_code
, enum machine_mode
, rtx
,
2673 extern rtx
simplify_const_binary_operation (enum rtx_code
, enum machine_mode
,
2675 extern rtx
simplify_binary_operation (enum rtx_code
, enum machine_mode
, rtx
,
2677 extern rtx
simplify_ternary_operation (enum rtx_code
, enum machine_mode
,
2678 enum machine_mode
, rtx
, rtx
, rtx
);
2679 extern rtx
simplify_const_relational_operation (enum rtx_code
,
2680 enum machine_mode
, rtx
, rtx
);
2681 extern rtx
simplify_relational_operation (enum rtx_code
, enum machine_mode
,
2682 enum machine_mode
, rtx
, rtx
);
2683 extern rtx
simplify_gen_binary (enum rtx_code
, enum machine_mode
, rtx
, rtx
);
2684 extern rtx
simplify_gen_unary (enum rtx_code
, enum machine_mode
, rtx
,
2686 extern rtx
simplify_gen_ternary (enum rtx_code
, enum machine_mode
,
2687 enum machine_mode
, rtx
, rtx
, rtx
);
2688 extern rtx
simplify_gen_relational (enum rtx_code
, enum machine_mode
,
2689 enum machine_mode
, rtx
, rtx
);
2690 extern rtx
simplify_subreg (enum machine_mode
, rtx
, enum machine_mode
,
2692 extern rtx
simplify_gen_subreg (enum machine_mode
, rtx
, enum machine_mode
,
2694 extern rtx
simplify_replace_fn_rtx (rtx
, const_rtx
,
2695 rtx (*fn
) (rtx
, const_rtx
, void *), void *);
2696 extern rtx
simplify_replace_rtx (rtx
, const_rtx
, rtx
);
2697 extern rtx
simplify_rtx (const_rtx
);
2698 extern rtx
avoid_constant_pool_reference (rtx
);
2699 extern rtx
delegitimize_mem_from_attrs (rtx
);
2700 extern bool mode_signbit_p (enum machine_mode
, const_rtx
);
2701 extern bool val_signbit_p (enum machine_mode
, unsigned HOST_WIDE_INT
);
2702 extern bool val_signbit_known_set_p (enum machine_mode
,
2703 unsigned HOST_WIDE_INT
);
2704 extern bool val_signbit_known_clear_p (enum machine_mode
,
2705 unsigned HOST_WIDE_INT
);
2708 extern enum machine_mode
choose_hard_reg_mode (unsigned int, unsigned int,
2712 extern rtx
set_for_reg_notes (rtx
);
2713 extern rtx
set_unique_reg_note (rtx
, enum reg_note
, rtx
);
2714 extern rtx
set_dst_reg_note (rtx
, enum reg_note
, rtx
, rtx
);
2715 extern void set_insn_deleted (rtx
);
2717 /* Functions in rtlanal.c */
2719 /* Single set is implemented as macro for performance reasons. */
2720 #define single_set(I) (INSN_P (I) \
2721 ? (GET_CODE (PATTERN (I)) == SET \
2722 ? PATTERN (I) : single_set_1 (I)) \
2724 #define single_set_1(I) single_set_2 (I, PATTERN (I))
2726 /* Structure used for passing data to REPLACE_LABEL. */
2727 struct replace_label_data
2731 bool update_label_nuses
;
2734 extern enum machine_mode
get_address_mode (rtx mem
);
2735 extern int rtx_addr_can_trap_p (const_rtx
);
2736 extern bool nonzero_address_p (const_rtx
);
2737 extern int rtx_unstable_p (const_rtx
);
2738 extern bool rtx_varies_p (const_rtx
, bool);
2739 extern bool rtx_addr_varies_p (const_rtx
, bool);
2740 extern rtx
get_call_rtx_from (rtx
);
2741 extern HOST_WIDE_INT
get_integer_term (const_rtx
);
2742 extern rtx
get_related_value (const_rtx
);
2743 extern bool offset_within_block_p (const_rtx
, HOST_WIDE_INT
);
2744 extern void split_const (rtx
, rtx
*, rtx
*);
2745 extern bool unsigned_reg_p (rtx
);
2746 extern int reg_mentioned_p (const_rtx
, const_rtx
);
2747 extern int count_occurrences (const_rtx
, const_rtx
, int);
2748 extern int reg_referenced_p (const_rtx
, const_rtx
);
2749 extern int reg_used_between_p (const_rtx
, const_rtx
, const_rtx
);
2750 extern int reg_set_between_p (const_rtx
, const_rtx
, const_rtx
);
2751 extern int commutative_operand_precedence (rtx
);
2752 extern bool swap_commutative_operands_p (rtx
, rtx
);
2753 extern int modified_between_p (const_rtx
, const_rtx
, const_rtx
);
2754 extern int no_labels_between_p (const_rtx
, const_rtx
);
2755 extern int modified_in_p (const_rtx
, const_rtx
);
2756 extern int reg_set_p (const_rtx
, const_rtx
);
2757 extern rtx
single_set_2 (const_rtx
, const_rtx
);
2758 extern int multiple_sets (const_rtx
);
2759 extern int set_noop_p (const_rtx
);
2760 extern int noop_move_p (const_rtx
);
2761 extern rtx
find_last_value (rtx
, rtx
*, rtx
, int);
2762 extern int refers_to_regno_p (unsigned int, unsigned int, const_rtx
, rtx
*);
2763 extern int reg_overlap_mentioned_p (const_rtx
, const_rtx
);
2764 extern const_rtx
set_of (const_rtx
, const_rtx
);
2765 extern void record_hard_reg_sets (rtx
, const_rtx
, void *);
2766 extern void record_hard_reg_uses (rtx
*, void *);
2768 extern void find_all_hard_reg_sets (const_rtx
, HARD_REG_SET
*, bool);
2770 extern void note_stores (const_rtx
, void (*) (rtx
, const_rtx
, void *), void *);
2771 extern void note_uses (rtx
*, void (*) (rtx
*, void *), void *);
2772 extern int dead_or_set_p (const_rtx
, const_rtx
);
2773 extern int dead_or_set_regno_p (const_rtx
, unsigned int);
2774 extern rtx
find_reg_note (const_rtx
, enum reg_note
, const_rtx
);
2775 extern rtx
find_regno_note (const_rtx
, enum reg_note
, unsigned int);
2776 extern rtx
find_reg_equal_equiv_note (const_rtx
);
2777 extern rtx
find_constant_src (const_rtx
);
2778 extern int find_reg_fusage (const_rtx
, enum rtx_code
, const_rtx
);
2779 extern int find_regno_fusage (const_rtx
, enum rtx_code
, unsigned int);
2780 extern rtx
alloc_reg_note (enum reg_note
, rtx
, rtx
);
2781 extern void add_reg_note (rtx
, enum reg_note
, rtx
);
2782 extern void add_int_reg_note (rtx
, enum reg_note
, int);
2783 extern void add_shallow_copy_of_reg_note (rtx
, rtx
);
2784 extern void remove_note (rtx
, const_rtx
);
2785 extern void remove_reg_equal_equiv_notes (rtx
);
2786 extern void remove_reg_equal_equiv_notes_for_regno (unsigned int);
2787 extern int side_effects_p (const_rtx
);
2788 extern int volatile_refs_p (const_rtx
);
2789 extern int volatile_insn_p (const_rtx
);
2790 extern int may_trap_p_1 (const_rtx
, unsigned);
2791 extern int may_trap_p (const_rtx
);
2792 extern int may_trap_or_fault_p (const_rtx
);
2793 extern bool can_throw_internal (const_rtx
);
2794 extern bool can_throw_external (const_rtx
);
2795 extern bool insn_could_throw_p (const_rtx
);
2796 extern bool insn_nothrow_p (const_rtx
);
2797 extern bool can_nonlocal_goto (const_rtx
);
2798 extern void copy_reg_eh_region_note_forward (rtx
, rtx
, rtx
);
2799 extern void copy_reg_eh_region_note_backward (rtx
, rtx
, rtx
);
2800 extern int inequality_comparisons_p (const_rtx
);
2801 extern rtx
replace_rtx (rtx
, rtx
, rtx
);
2802 extern int replace_label (rtx
*, void *);
2803 extern int rtx_referenced_p (rtx
, rtx
);
2804 extern bool tablejump_p (const_rtx
, rtx
*, rtx_jump_table_data
**);
2805 extern int computed_jump_p (const_rtx
);
2806 extern bool tls_referenced_p (rtx
);
2808 typedef int (*rtx_function
) (rtx
*, void *);
2809 extern int for_each_rtx (rtx
*, rtx_function
, void *);
2810 extern int for_each_rtx_in_insn (rtx_insn
**, rtx_function
, void *);
2812 /* Callback for for_each_inc_dec, to process the autoinc operation OP
2813 within MEM that sets DEST to SRC + SRCOFF, or SRC if SRCOFF is
2814 NULL. The callback is passed the same opaque ARG passed to
2815 for_each_inc_dec. Return zero to continue looking for other
2816 autoinc operations, -1 to skip OP's operands, and any other value
2817 to interrupt the traversal and return that value to the caller of
2818 for_each_inc_dec. */
2819 typedef int (*for_each_inc_dec_fn
) (rtx mem
, rtx op
, rtx dest
, rtx src
,
2820 rtx srcoff
, void *arg
);
2821 extern int for_each_inc_dec (rtx_insn
**, for_each_inc_dec_fn
, void *arg
);
2823 typedef int (*rtx_equal_p_callback_function
) (const_rtx
*, const_rtx
*,
2825 extern int rtx_equal_p_cb (const_rtx
, const_rtx
,
2826 rtx_equal_p_callback_function
);
2828 typedef int (*hash_rtx_callback_function
) (const_rtx
, enum machine_mode
, rtx
*,
2829 enum machine_mode
*);
2830 extern unsigned hash_rtx_cb (const_rtx
, enum machine_mode
, int *, int *,
2831 bool, hash_rtx_callback_function
);
2833 extern rtx
regno_use_in (unsigned int, rtx
);
2834 extern int auto_inc_p (const_rtx
);
2835 extern int in_expr_list_p (const_rtx
, const_rtx
);
2836 extern void remove_node_from_expr_list (const_rtx
, rtx_expr_list
**);
2837 extern int loc_mentioned_in_p (rtx
*, const_rtx
);
2838 extern rtx_insn
*find_first_parameter_load (rtx
, rtx
);
2839 extern bool keep_with_call_p (const_rtx
);
2840 extern bool label_is_jump_target_p (const_rtx
, const_rtx
);
2841 extern int insn_rtx_cost (rtx
, bool);
2843 /* Given an insn and condition, return a canonical description of
2844 the test being made. */
2845 extern rtx
canonicalize_condition (rtx_insn
*, rtx
, int, rtx_insn
**, rtx
,
2848 /* Given a JUMP_INSN, return a canonical description of the test
2850 extern rtx
get_condition (rtx_insn
*, rtx_insn
**, int, int);
2852 /* Information about a subreg of a hard register. */
2855 /* Offset of first hard register involved in the subreg. */
2857 /* Number of hard registers involved in the subreg. */
2859 /* Whether this subreg can be represented as a hard reg with the new
2861 bool representable_p
;
2864 extern void subreg_get_info (unsigned int, enum machine_mode
,
2865 unsigned int, enum machine_mode
,
2866 struct subreg_info
*);
2870 extern void free_EXPR_LIST_list (rtx_expr_list
**);
2871 extern void free_INSN_LIST_list (rtx_insn_list
**);
2872 extern void free_EXPR_LIST_node (rtx
);
2873 extern void free_INSN_LIST_node (rtx
);
2874 extern rtx_insn_list
*alloc_INSN_LIST (rtx
, rtx
);
2875 extern rtx_insn_list
*copy_INSN_LIST (rtx_insn_list
*);
2876 extern rtx_insn_list
*concat_INSN_LIST (rtx_insn_list
*, rtx_insn_list
*);
2877 extern rtx_expr_list
*alloc_EXPR_LIST (int, rtx
, rtx
);
2878 extern void remove_free_INSN_LIST_elem (rtx_insn
*, rtx_insn_list
**);
2879 extern rtx
remove_list_elem (rtx
, rtx
*);
2880 extern rtx_insn
*remove_free_INSN_LIST_node (rtx_insn_list
**);
2881 extern rtx
remove_free_EXPR_LIST_node (rtx_expr_list
**);
2886 /* Resize reg info. */
2887 extern bool resize_reg_info (void);
2888 /* Free up register info memory. */
2889 extern void free_reg_info (void);
2890 extern void init_subregs_of_mode (void);
2891 extern void finish_subregs_of_mode (void);
2894 extern rtx
extract_asm_operands (rtx
);
2895 extern int asm_noperands (const_rtx
);
2896 extern const char *decode_asm_operands (rtx
, rtx
*, rtx
**, const char **,
2897 enum machine_mode
*, location_t
*);
2898 extern void get_referenced_operands (const char *, bool *, unsigned int);
2900 extern enum reg_class
reg_preferred_class (int);
2901 extern enum reg_class
reg_alternate_class (int);
2902 extern enum reg_class
reg_allocno_class (int);
2903 extern void setup_reg_classes (int, enum reg_class
, enum reg_class
,
2906 extern void split_all_insns (void);
2907 extern unsigned int split_all_insns_noflow (void);
2909 #define MAX_SAVED_CONST_INT 64
2910 extern GTY(()) rtx const_int_rtx
[MAX_SAVED_CONST_INT
* 2 + 1];
2912 #define const0_rtx (const_int_rtx[MAX_SAVED_CONST_INT])
2913 #define const1_rtx (const_int_rtx[MAX_SAVED_CONST_INT+1])
2914 #define const2_rtx (const_int_rtx[MAX_SAVED_CONST_INT+2])
2915 #define constm1_rtx (const_int_rtx[MAX_SAVED_CONST_INT-1])
2916 extern GTY(()) rtx const_true_rtx
;
2918 extern GTY(()) rtx const_tiny_rtx
[4][(int) MAX_MACHINE_MODE
];
2920 /* Returns a constant 0 rtx in mode MODE. Integer modes are treated the
2921 same as VOIDmode. */
2923 #define CONST0_RTX(MODE) (const_tiny_rtx[0][(int) (MODE)])
2925 /* Likewise, for the constants 1 and 2 and -1. */
2927 #define CONST1_RTX(MODE) (const_tiny_rtx[1][(int) (MODE)])
2928 #define CONST2_RTX(MODE) (const_tiny_rtx[2][(int) (MODE)])
2929 #define CONSTM1_RTX(MODE) (const_tiny_rtx[3][(int) (MODE)])
2931 extern GTY(()) rtx pc_rtx
;
2932 extern GTY(()) rtx cc0_rtx
;
2933 extern GTY(()) rtx ret_rtx
;
2934 extern GTY(()) rtx simple_return_rtx
;
2936 /* If HARD_FRAME_POINTER_REGNUM is defined, then a special dummy reg
2937 is used to represent the frame pointer. This is because the
2938 hard frame pointer and the automatic variables are separated by an amount
2939 that cannot be determined until after register allocation. We can assume
2940 that in this case ELIMINABLE_REGS will be defined, one action of which
2941 will be to eliminate FRAME_POINTER_REGNUM into HARD_FRAME_POINTER_REGNUM. */
2942 #ifndef HARD_FRAME_POINTER_REGNUM
2943 #define HARD_FRAME_POINTER_REGNUM FRAME_POINTER_REGNUM
2946 #ifndef HARD_FRAME_POINTER_IS_FRAME_POINTER
2947 #define HARD_FRAME_POINTER_IS_FRAME_POINTER \
2948 (HARD_FRAME_POINTER_REGNUM == FRAME_POINTER_REGNUM)
2951 #ifndef HARD_FRAME_POINTER_IS_ARG_POINTER
2952 #define HARD_FRAME_POINTER_IS_ARG_POINTER \
2953 (HARD_FRAME_POINTER_REGNUM == ARG_POINTER_REGNUM)
2956 /* Index labels for global_rtl. */
2957 enum global_rtl_index
2961 /* For register elimination to work properly these hard_frame_pointer_rtx,
2962 frame_pointer_rtx, and arg_pointer_rtx must be the same if they refer to
2963 the same register. */
2964 #if FRAME_POINTER_REGNUM == ARG_POINTER_REGNUM
2965 GR_ARG_POINTER
= GR_FRAME_POINTER
,
2967 #if HARD_FRAME_POINTER_IS_FRAME_POINTER
2968 GR_HARD_FRAME_POINTER
= GR_FRAME_POINTER
,
2970 GR_HARD_FRAME_POINTER
,
2972 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
2973 #if HARD_FRAME_POINTER_IS_ARG_POINTER
2974 GR_ARG_POINTER
= GR_HARD_FRAME_POINTER
,
2979 GR_VIRTUAL_INCOMING_ARGS
,
2980 GR_VIRTUAL_STACK_ARGS
,
2981 GR_VIRTUAL_STACK_DYNAMIC
,
2982 GR_VIRTUAL_OUTGOING_ARGS
,
2984 GR_VIRTUAL_PREFERRED_STACK_BOUNDARY
,
2989 /* Target-dependent globals. */
2990 struct GTY(()) target_rtl
{
2991 /* All references to the hard registers in global_rtl_index go through
2992 these unique rtl objects. On machines where the frame-pointer and
2993 arg-pointer are the same register, they use the same unique object.
2995 After register allocation, other rtl objects which used to be pseudo-regs
2996 may be clobbered to refer to the frame-pointer register.
2997 But references that were originally to the frame-pointer can be
2998 distinguished from the others because they contain frame_pointer_rtx.
3000 When to use frame_pointer_rtx and hard_frame_pointer_rtx is a little
3001 tricky: until register elimination has taken place hard_frame_pointer_rtx
3002 should be used if it is being set, and frame_pointer_rtx otherwise. After
3003 register elimination hard_frame_pointer_rtx should always be used.
3004 On machines where the two registers are same (most) then these are the
3006 rtx x_global_rtl
[GR_MAX
];
3008 /* A unique representation of (REG:Pmode PIC_OFFSET_TABLE_REGNUM). */
3009 rtx x_pic_offset_table_rtx
;
3011 /* A unique representation of (REG:Pmode RETURN_ADDRESS_POINTER_REGNUM).
3012 This is used to implement __builtin_return_address for some machines;
3013 see for instance the MIPS port. */
3014 rtx x_return_address_pointer_rtx
;
3016 /* Commonly used RTL for hard registers. These objects are not
3017 necessarily unique, so we allocate them separately from global_rtl.
3018 They are initialized once per compilation unit, then copied into
3019 regno_reg_rtx at the beginning of each function. */
3020 rtx x_initial_regno_reg_rtx
[FIRST_PSEUDO_REGISTER
];
3022 /* A sample (mem:M stack_pointer_rtx) rtx for each mode M. */
3023 rtx x_top_of_stack
[MAX_MACHINE_MODE
];
3025 /* Static hunks of RTL used by the aliasing code; these are treated
3026 as persistent to avoid unnecessary RTL allocations. */
3027 rtx x_static_reg_base_value
[FIRST_PSEUDO_REGISTER
];
3029 /* The default memory attributes for each mode. */
3030 struct mem_attrs
*x_mode_mem_attrs
[(int) MAX_MACHINE_MODE
];
3032 /* Track if RTL has been initialized. */
3033 bool target_specific_initialized
;
3036 extern GTY(()) struct target_rtl default_target_rtl
;
3037 #if SWITCHABLE_TARGET
3038 extern struct target_rtl
*this_target_rtl
;
3040 #define this_target_rtl (&default_target_rtl)
3043 #define global_rtl \
3044 (this_target_rtl->x_global_rtl)
3045 #define pic_offset_table_rtx \
3046 (this_target_rtl->x_pic_offset_table_rtx)
3047 #define return_address_pointer_rtx \
3048 (this_target_rtl->x_return_address_pointer_rtx)
3049 #define top_of_stack \
3050 (this_target_rtl->x_top_of_stack)
3051 #define mode_mem_attrs \
3052 (this_target_rtl->x_mode_mem_attrs)
3054 /* All references to certain hard regs, except those created
3055 by allocating pseudo regs into them (when that's possible),
3056 go through these unique rtx objects. */
3057 #define stack_pointer_rtx (global_rtl[GR_STACK_POINTER])
3058 #define frame_pointer_rtx (global_rtl[GR_FRAME_POINTER])
3059 #define hard_frame_pointer_rtx (global_rtl[GR_HARD_FRAME_POINTER])
3060 #define arg_pointer_rtx (global_rtl[GR_ARG_POINTER])
3062 #ifndef GENERATOR_FILE
3063 /* Return the attributes of a MEM rtx. */
3064 static inline struct mem_attrs
*
3065 get_mem_attrs (const_rtx x
)
3067 struct mem_attrs
*attrs
;
3069 attrs
= MEM_ATTRS (x
);
3071 attrs
= mode_mem_attrs
[(int) GET_MODE (x
)];
3076 /* Include the RTL generation functions. */
3078 #ifndef GENERATOR_FILE
3080 #undef gen_rtx_ASM_INPUT
3081 #define gen_rtx_ASM_INPUT(MODE, ARG0) \
3082 gen_rtx_fmt_si (ASM_INPUT, (MODE), (ARG0), 0)
3083 #define gen_rtx_ASM_INPUT_loc(MODE, ARG0, LOC) \
3084 gen_rtx_fmt_si (ASM_INPUT, (MODE), (ARG0), (LOC))
3087 /* There are some RTL codes that require special attention; the
3088 generation functions included above do the raw handling. If you
3089 add to this list, modify special_rtx in gengenrtl.c as well. */
3091 extern rtx_expr_list
*gen_rtx_EXPR_LIST (enum machine_mode
, rtx
, rtx
);
3092 extern rtx_insn_list
*gen_rtx_INSN_LIST (enum machine_mode
, rtx
, rtx
);
3093 extern rtx
gen_rtx_CONST_INT (enum machine_mode
, HOST_WIDE_INT
);
3094 extern rtx
gen_rtx_CONST_VECTOR (enum machine_mode
, rtvec
);
3095 extern rtx
gen_raw_REG (enum machine_mode
, int);
3096 extern rtx
gen_rtx_REG (enum machine_mode
, unsigned);
3097 extern rtx
gen_rtx_SUBREG (enum machine_mode
, rtx
, int);
3098 extern rtx
gen_rtx_MEM (enum machine_mode
, rtx
);
3099 extern rtx
gen_rtx_VAR_LOCATION (enum machine_mode
, tree
, rtx
,
3100 enum var_init_status
);
3102 #define GEN_INT(N) gen_rtx_CONST_INT (VOIDmode, (N))
3104 /* Virtual registers are used during RTL generation to refer to locations into
3105 the stack frame when the actual location isn't known until RTL generation
3106 is complete. The routine instantiate_virtual_regs replaces these with
3107 the proper value, which is normally {frame,arg,stack}_pointer_rtx plus
3110 #define FIRST_VIRTUAL_REGISTER (FIRST_PSEUDO_REGISTER)
3112 /* This points to the first word of the incoming arguments passed on the stack,
3113 either by the caller or by the callee when pretending it was passed by the
3116 #define virtual_incoming_args_rtx (global_rtl[GR_VIRTUAL_INCOMING_ARGS])
3118 #define VIRTUAL_INCOMING_ARGS_REGNUM (FIRST_VIRTUAL_REGISTER)
3120 /* If FRAME_GROWS_DOWNWARD, this points to immediately above the first
3121 variable on the stack. Otherwise, it points to the first variable on
3124 #define virtual_stack_vars_rtx (global_rtl[GR_VIRTUAL_STACK_ARGS])
3126 #define VIRTUAL_STACK_VARS_REGNUM ((FIRST_VIRTUAL_REGISTER) + 1)
3128 /* This points to the location of dynamically-allocated memory on the stack
3129 immediately after the stack pointer has been adjusted by the amount
3132 #define virtual_stack_dynamic_rtx (global_rtl[GR_VIRTUAL_STACK_DYNAMIC])
3134 #define VIRTUAL_STACK_DYNAMIC_REGNUM ((FIRST_VIRTUAL_REGISTER) + 2)
3136 /* This points to the location in the stack at which outgoing arguments should
3137 be written when the stack is pre-pushed (arguments pushed using push
3138 insns always use sp). */
3140 #define virtual_outgoing_args_rtx (global_rtl[GR_VIRTUAL_OUTGOING_ARGS])
3142 #define VIRTUAL_OUTGOING_ARGS_REGNUM ((FIRST_VIRTUAL_REGISTER) + 3)
3144 /* This points to the Canonical Frame Address of the function. This
3145 should correspond to the CFA produced by INCOMING_FRAME_SP_OFFSET,
3146 but is calculated relative to the arg pointer for simplicity; the
3147 frame pointer nor stack pointer are necessarily fixed relative to
3148 the CFA until after reload. */
3150 #define virtual_cfa_rtx (global_rtl[GR_VIRTUAL_CFA])
3152 #define VIRTUAL_CFA_REGNUM ((FIRST_VIRTUAL_REGISTER) + 4)
3154 #define LAST_VIRTUAL_POINTER_REGISTER ((FIRST_VIRTUAL_REGISTER) + 4)
3156 /* This is replaced by crtl->preferred_stack_boundary / BITS_PER_UNIT
3159 #define virtual_preferred_stack_boundary_rtx \
3160 (global_rtl[GR_VIRTUAL_PREFERRED_STACK_BOUNDARY])
3162 #define VIRTUAL_PREFERRED_STACK_BOUNDARY_REGNUM \
3163 ((FIRST_VIRTUAL_REGISTER) + 5)
3165 #define LAST_VIRTUAL_REGISTER ((FIRST_VIRTUAL_REGISTER) + 5)
3167 /* Nonzero if REGNUM is a pointer into the stack frame. */
3168 #define REGNO_PTR_FRAME_P(REGNUM) \
3169 ((REGNUM) == STACK_POINTER_REGNUM \
3170 || (REGNUM) == FRAME_POINTER_REGNUM \
3171 || (REGNUM) == HARD_FRAME_POINTER_REGNUM \
3172 || (REGNUM) == ARG_POINTER_REGNUM \
3173 || ((REGNUM) >= FIRST_VIRTUAL_REGISTER \
3174 && (REGNUM) <= LAST_VIRTUAL_POINTER_REGISTER))
3176 /* REGNUM never really appearing in the INSN stream. */
3177 #define INVALID_REGNUM (~(unsigned int) 0)
3179 /* REGNUM for which no debug information can be generated. */
3180 #define IGNORED_DWARF_REGNUM (INVALID_REGNUM - 1)
3182 extern rtx
output_constant_def (tree
, int);
3183 extern rtx
lookup_constant_def (tree
);
3185 /* Nonzero after end of reload pass.
3186 Set to 1 or 0 by reload1.c. */
3188 extern int reload_completed
;
3190 /* Nonzero after thread_prologue_and_epilogue_insns has run. */
3191 extern int epilogue_completed
;
3193 /* Set to 1 while reload_as_needed is operating.
3194 Required by some machines to handle any generated moves differently. */
3196 extern int reload_in_progress
;
3198 /* Set to 1 while in lra. */
3199 extern int lra_in_progress
;
3201 /* This macro indicates whether you may create a new
3204 #define can_create_pseudo_p() (!reload_in_progress && !reload_completed)
3207 /* Nonzero after end of regstack pass.
3208 Set to 1 or 0 by reg-stack.c. */
3209 extern int regstack_completed
;
3212 /* If this is nonzero, we do not bother generating VOLATILE
3213 around volatile memory references, and we are willing to
3214 output indirect addresses. If cse is to follow, we reject
3215 indirect addresses so a useful potential cse is generated;
3216 if it is used only once, instruction combination will produce
3217 the same indirect address eventually. */
3218 extern int cse_not_expected
;
3220 /* Translates rtx code to tree code, for those codes needed by
3221 REAL_ARITHMETIC. The function returns an int because the caller may not
3222 know what `enum tree_code' means. */
3224 extern int rtx_to_tree_code (enum rtx_code
);
3227 extern int delete_trivially_dead_insns (rtx_insn
*, int);
3228 extern int exp_equiv_p (const_rtx
, const_rtx
, int, bool);
3229 extern unsigned hash_rtx (const_rtx x
, enum machine_mode
, int *, int *, bool);
3232 extern bool check_for_inc_dec (rtx_insn
*insn
);
3235 extern int comparison_dominates_p (enum rtx_code
, enum rtx_code
);
3236 extern bool jump_to_label_p (rtx
);
3237 extern int condjump_p (const_rtx
);
3238 extern int any_condjump_p (const_rtx
);
3239 extern int any_uncondjump_p (const_rtx
);
3240 extern rtx
pc_set (const_rtx
);
3241 extern rtx
condjump_label (const_rtx
);
3242 extern int simplejump_p (const_rtx
);
3243 extern int returnjump_p (rtx
);
3244 extern int eh_returnjump_p (rtx
);
3245 extern int onlyjump_p (const_rtx
);
3246 extern int only_sets_cc0_p (const_rtx
);
3247 extern int sets_cc0_p (const_rtx
);
3248 extern int invert_jump_1 (rtx
, rtx
);
3249 extern int invert_jump (rtx
, rtx
, int);
3250 extern int rtx_renumbered_equal_p (const_rtx
, const_rtx
);
3251 extern int true_regnum (const_rtx
);
3252 extern unsigned int reg_or_subregno (const_rtx
);
3253 extern int redirect_jump_1 (rtx
, rtx
);
3254 extern void redirect_jump_2 (rtx
, rtx
, rtx
, int, int);
3255 extern int redirect_jump (rtx
, rtx
, int);
3256 extern void rebuild_jump_labels (rtx_insn
*);
3257 extern void rebuild_jump_labels_chain (rtx_insn
*);
3258 extern rtx
reversed_comparison (const_rtx
, enum machine_mode
);
3259 extern enum rtx_code
reversed_comparison_code (const_rtx
, const_rtx
);
3260 extern enum rtx_code
reversed_comparison_code_parts (enum rtx_code
, const_rtx
,
3261 const_rtx
, const_rtx
);
3262 extern void delete_for_peephole (rtx_insn
*, rtx_insn
*);
3263 extern int condjump_in_parallel_p (const_rtx
);
3265 /* In emit-rtl.c. */
3266 extern int max_reg_num (void);
3267 extern int max_label_num (void);
3268 extern int get_first_label_num (void);
3269 extern void maybe_set_first_label_num (rtx
);
3270 extern void delete_insns_since (rtx_insn
*);
3271 extern void mark_reg_pointer (rtx
, int);
3272 extern void mark_user_reg (rtx
);
3273 extern void reset_used_flags (rtx
);
3274 extern void set_used_flags (rtx
);
3275 extern void reorder_insns (rtx_insn
*, rtx_insn
*, rtx_insn
*);
3276 extern void reorder_insns_nobb (rtx_insn
*, rtx_insn
*, rtx_insn
*);
3277 extern int get_max_insn_count (void);
3278 extern int in_sequence_p (void);
3279 extern void init_emit (void);
3280 extern void init_emit_regs (void);
3281 extern void init_derived_machine_modes (void);
3282 extern void init_emit_once (void);
3283 extern void push_topmost_sequence (void);
3284 extern void pop_topmost_sequence (void);
3285 extern void set_new_first_and_last_insn (rtx_insn
*, rtx_insn
*);
3286 extern unsigned int unshare_all_rtl (void);
3287 extern void unshare_all_rtl_again (rtx_insn
*);
3288 extern void unshare_all_rtl_in_chain (rtx
);
3289 extern void verify_rtl_sharing (void);
3290 extern void add_insn (rtx_insn
*);
3291 extern void add_insn_before (rtx
, rtx
, basic_block
);
3292 extern void add_insn_after (rtx
, rtx
, basic_block
);
3293 extern void remove_insn (rtx
);
3294 extern rtx_insn
*emit (rtx
);
3295 extern void delete_insn (rtx
);
3296 extern rtx_insn
*entry_of_function (void);
3297 extern void emit_insn_at_entry (rtx
);
3298 extern void delete_insn_chain (rtx
, rtx
, bool);
3299 extern rtx_insn
*unlink_insn_chain (rtx_insn
*, rtx_insn
*);
3300 extern void delete_insn_and_edges (rtx_insn
*);
3301 extern rtx
gen_lowpart_SUBREG (enum machine_mode
, rtx
);
3302 extern rtx
gen_const_mem (enum machine_mode
, rtx
);
3303 extern rtx
gen_frame_mem (enum machine_mode
, rtx
);
3304 extern rtx
gen_tmp_stack_mem (enum machine_mode
, rtx
);
3305 extern bool validate_subreg (enum machine_mode
, enum machine_mode
,
3306 const_rtx
, unsigned int);
3309 extern unsigned int extended_count (const_rtx
, enum machine_mode
, int);
3310 extern rtx
remove_death (unsigned int, rtx_insn
*);
3311 extern void dump_combine_stats (FILE *);
3312 extern void dump_combine_total_stats (FILE *);
3313 extern rtx
make_compound_operation (rtx
, enum rtx_code
);
3315 /* In cfgcleanup.c */
3316 extern void delete_dead_jumptables (void);
3318 /* In sched-rgn.c. */
3319 extern void schedule_insns (void);
3321 /* In sched-ebb.c. */
3322 extern void schedule_ebbs (void);
3324 /* In sel-sched-dump.c. */
3325 extern void sel_sched_fix_param (const char *param
, const char *val
);
3327 /* In print-rtl.c */
3328 extern const char *print_rtx_head
;
3329 extern void debug (const rtx_def
&ref
);
3330 extern void debug (const rtx_def
*ptr
);
3331 extern void debug_rtx (const_rtx
);
3332 extern void debug_rtx_list (const rtx_insn
*, int);
3333 extern void debug_rtx_range (const rtx_insn
*, const rtx_insn
*);
3334 extern const_rtx
debug_rtx_find (const rtx_insn
*, int);
3335 extern void print_mem_expr (FILE *, const_tree
);
3336 extern void print_rtl (FILE *, const_rtx
);
3337 extern void print_simple_rtl (FILE *, const_rtx
);
3338 extern int print_rtl_single (FILE *, const_rtx
);
3339 extern int print_rtl_single_with_indent (FILE *, const_rtx
, int);
3340 extern void print_inline_rtx (FILE *, const_rtx
, int);
3342 /* Functions in sched-vis.c. FIXME: Ideally these functions would
3343 not be in sched-vis.c but in rtl.c, because they are not only used
3344 by the scheduler anymore but for all "slim" RTL dumping. */
3345 extern void dump_value_slim (FILE *, const_rtx
, int);
3346 extern void dump_insn_slim (FILE *, const_rtx
);
3347 extern void dump_rtl_slim (FILE *, const_rtx
, const_rtx
, int, int);
3348 extern void print_value (pretty_printer
*, const_rtx
, int);
3349 extern void print_pattern (pretty_printer
*, const_rtx
, int);
3350 extern void print_insn (pretty_printer
*, const_rtx
, int);
3351 extern void rtl_dump_bb_for_graph (pretty_printer
*, basic_block
);
3352 extern const char *str_pattern_slim (const_rtx
);
3355 extern void reposition_prologue_and_epilogue_notes (void);
3356 extern int prologue_epilogue_contains (const_rtx
);
3357 extern int sibcall_epilogue_contains (const_rtx
);
3358 extern void update_temp_slot_address (rtx
, rtx
);
3359 extern void maybe_copy_prologue_epilogue_insn (rtx
, rtx
);
3360 extern void set_return_jump_label (rtx
);
3363 extern void expand_null_return (void);
3364 extern void expand_naked_return (void);
3365 extern void emit_jump (rtx
);
3368 extern rtx
move_by_pieces (rtx
, rtx
, unsigned HOST_WIDE_INT
,
3370 extern HOST_WIDE_INT
find_args_size_adjust (rtx
);
3371 extern int fixup_args_size_notes (rtx
, rtx
, int);
3374 extern void print_rtl_with_bb (FILE *, const rtx_insn
*, int);
3375 extern rtx_insn
*duplicate_insn_chain (rtx_insn
*, rtx_insn
*);
3378 extern void init_expmed (void);
3379 extern void expand_inc (rtx
, rtx
);
3380 extern void expand_dec (rtx
, rtx
);
3382 /* In lower-subreg.c */
3383 extern void init_lower_subreg (void);
3386 extern bool can_copy_p (enum machine_mode
);
3387 extern bool can_assign_to_reg_without_clobbers_p (rtx
);
3388 extern rtx
fis_get_condition (rtx_insn
*);
3392 extern HARD_REG_SET eliminable_regset
;
3394 extern void mark_elimination (int, int);
3397 extern int reg_classes_intersect_p (reg_class_t
, reg_class_t
);
3398 extern int reg_class_subset_p (reg_class_t
, reg_class_t
);
3399 extern void globalize_reg (tree
, int);
3400 extern void init_reg_modes_target (void);
3401 extern void init_regs (void);
3402 extern void reinit_regs (void);
3403 extern void init_fake_stack_mems (void);
3404 extern void save_register_info (void);
3405 extern void init_reg_sets (void);
3406 extern void regclass (rtx
, int);
3407 extern void reg_scan (rtx_insn
*, unsigned int);
3408 extern void fix_register (const char *, int, int);
3409 extern bool invalid_mode_change_p (unsigned int, enum reg_class
);
3412 extern int function_invariant_p (const_rtx
);
3422 LCT_RETURNS_TWICE
= 5
3425 extern void emit_library_call (rtx
, enum libcall_type
, enum machine_mode
, int,
3427 extern rtx
emit_library_call_value (rtx
, rtx
, enum libcall_type
,
3428 enum machine_mode
, int, ...);
3431 extern void init_varasm_once (void);
3433 extern rtx
make_debug_expr_from_rtl (const_rtx
);
3436 extern bool read_rtx (const char *, rtx
*);
3439 extern rtx
canon_rtx (rtx
);
3440 extern int true_dependence (const_rtx
, enum machine_mode
, const_rtx
);
3441 extern rtx
get_addr (rtx
);
3442 extern int canon_true_dependence (const_rtx
, enum machine_mode
, rtx
,
3444 extern int read_dependence (const_rtx
, const_rtx
);
3445 extern int anti_dependence (const_rtx
, const_rtx
);
3446 extern int canon_anti_dependence (const_rtx
, bool,
3447 const_rtx
, enum machine_mode
, rtx
);
3448 extern int output_dependence (const_rtx
, const_rtx
);
3449 extern int may_alias_p (const_rtx
, const_rtx
);
3450 extern void init_alias_target (void);
3451 extern void init_alias_analysis (void);
3452 extern void end_alias_analysis (void);
3453 extern void vt_equate_reg_base_value (const_rtx
, const_rtx
);
3454 extern bool memory_modified_in_insn_p (const_rtx
, const_rtx
);
3455 extern bool memory_must_be_modified_in_insn_p (const_rtx
, const_rtx
);
3456 extern bool may_be_sp_based_p (rtx
);
3457 extern rtx
gen_hard_reg_clobber (enum machine_mode
, unsigned int);
3458 extern rtx
get_reg_known_value (unsigned int);
3459 extern bool get_reg_known_equiv_p (unsigned int);
3460 extern rtx
get_reg_base_value (unsigned int);
3463 extern int stack_regs_mentioned (const_rtx insn
);
3467 extern GTY(()) rtx stack_limit_rtx
;
3470 extern void invert_br_probabilities (rtx
);
3471 extern bool expensive_function_p (int);
3473 /* In var-tracking.c */
3474 extern unsigned int variable_tracking_main (void);
3476 /* In stor-layout.c. */
3477 extern void get_mode_bounds (enum machine_mode
, int, enum machine_mode
,
3481 extern rtx
canon_condition (rtx
);
3482 extern void simplify_using_condition (rtx
, rtx
*, bitmap
);
3485 extern unsigned int compute_alignments (void);
3486 extern void update_alignments (vec
<rtx
> &);
3487 extern int asm_str_count (const char *templ
);
3491 rtx (*gen_lowpart
) (enum machine_mode
, rtx
);
3492 rtx (*gen_lowpart_no_emit
) (enum machine_mode
, rtx
);
3493 rtx (*reg_nonzero_bits
) (const_rtx
, enum machine_mode
, const_rtx
, enum machine_mode
,
3494 unsigned HOST_WIDE_INT
, unsigned HOST_WIDE_INT
*);
3495 rtx (*reg_num_sign_bit_copies
) (const_rtx
, enum machine_mode
, const_rtx
, enum machine_mode
,
3496 unsigned int, unsigned int *);
3497 bool (*reg_truncated_to_mode
) (enum machine_mode
, const_rtx
);
3499 /* Whenever you add entries here, make sure you adjust rtlhooks-def.h. */
3502 /* Each pass can provide its own. */
3503 extern struct rtl_hooks rtl_hooks
;
3505 /* ... but then it has to restore these. */
3506 extern const struct rtl_hooks general_rtl_hooks
;
3508 /* Keep this for the nonce. */
3509 #define gen_lowpart rtl_hooks.gen_lowpart
3511 extern void insn_locations_init (void);
3512 extern void insn_locations_finalize (void);
3513 extern void set_curr_insn_location (location_t
);
3514 extern location_t
curr_insn_location (void);
3515 extern bool optimize_insn_for_size_p (void);
3516 extern bool optimize_insn_for_speed_p (void);
3519 extern void _fatal_insn_not_found (const_rtx
, const char *, int, const char *)
3521 extern void _fatal_insn (const char *, const_rtx
, const char *, int, const char *)
3524 #define fatal_insn(msgid, insn) \
3525 _fatal_insn (msgid, insn, __FILE__, __LINE__, __FUNCTION__)
3526 #define fatal_insn_not_found(insn) \
3527 _fatal_insn_not_found (insn, __FILE__, __LINE__, __FUNCTION__)
3530 extern tree
GTY(()) global_regs_decl
[FIRST_PSEUDO_REGISTER
];
3533 #endif /* ! GCC_RTL_H */