1 /* Emit RTL for the GNU C-Compiler expander.
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
23 /* Middle-to-low level generation of rtx code and insns.
25 This file contains the functions `gen_rtx', `gen_reg_rtx'
26 and `gen_label_rtx' that are the usual ways of creating rtl
27 expressions for most purposes.
29 It also has the functions for creating insns and linking
30 them in the doubly-linked chain.
32 The patterns of the insns are created by machine-dependent
33 routines in insn-emit.c, which is generated automatically from
34 the machine description. These routines use `gen_rtx' to make
35 the individual rtx's of the pattern; what is machine dependent
36 is the kind of rtx's they make and what arguments they use. */
40 #include "coretypes.h"
50 #include "hard-reg-set.h"
52 #include "insn-config.h"
56 #include "basic-block.h"
59 #include "langhooks.h"
61 /* Commonly used modes. */
63 enum machine_mode byte_mode
; /* Mode whose width is BITS_PER_UNIT. */
64 enum machine_mode word_mode
; /* Mode whose width is BITS_PER_WORD. */
65 enum machine_mode double_mode
; /* Mode whose width is DOUBLE_TYPE_SIZE. */
66 enum machine_mode ptr_mode
; /* Mode whose width is POINTER_SIZE. */
69 /* This is *not* reset after each function. It gives each CODE_LABEL
70 in the entire compilation a unique label number. */
72 static GTY(()) int label_num
= 1;
74 /* Highest label number in current function.
75 Zero means use the value of label_num instead.
76 This is nonzero only when belatedly compiling an inline function. */
78 static int last_label_num
;
80 /* Value label_num had when set_new_first_and_last_label_number was called.
81 If label_num has not changed since then, last_label_num is valid. */
83 static int base_label_num
;
85 /* Nonzero means do not generate NOTEs for source line numbers. */
87 static int no_line_numbers
;
89 /* Commonly used rtx's, so that we only need space for one copy.
90 These are initialized once for the entire compilation.
91 All of these are unique; no other rtx-object will be equal to any
94 rtx global_rtl
[GR_MAX
];
96 /* Commonly used RTL for hard registers. These objects are not necessarily
97 unique, so we allocate them separately from global_rtl. They are
98 initialized once per compilation unit, then copied into regno_reg_rtx
99 at the beginning of each function. */
100 static GTY(()) rtx static_regno_reg_rtx
[FIRST_PSEUDO_REGISTER
];
102 /* We record floating-point CONST_DOUBLEs in each floating-point mode for
103 the values of 0, 1, and 2. For the integer entries and VOIDmode, we
104 record a copy of const[012]_rtx. */
106 rtx const_tiny_rtx
[3][(int) MAX_MACHINE_MODE
];
110 REAL_VALUE_TYPE dconst0
;
111 REAL_VALUE_TYPE dconst1
;
112 REAL_VALUE_TYPE dconst2
;
113 REAL_VALUE_TYPE dconstm1
;
114 REAL_VALUE_TYPE dconstm2
;
115 REAL_VALUE_TYPE dconsthalf
;
117 /* All references to the following fixed hard registers go through
118 these unique rtl objects. On machines where the frame-pointer and
119 arg-pointer are the same register, they use the same unique object.
121 After register allocation, other rtl objects which used to be pseudo-regs
122 may be clobbered to refer to the frame-pointer register.
123 But references that were originally to the frame-pointer can be
124 distinguished from the others because they contain frame_pointer_rtx.
126 When to use frame_pointer_rtx and hard_frame_pointer_rtx is a little
127 tricky: until register elimination has taken place hard_frame_pointer_rtx
128 should be used if it is being set, and frame_pointer_rtx otherwise. After
129 register elimination hard_frame_pointer_rtx should always be used.
130 On machines where the two registers are same (most) then these are the
133 In an inline procedure, the stack and frame pointer rtxs may not be
134 used for anything else. */
135 rtx struct_value_rtx
; /* (REG:Pmode STRUCT_VALUE_REGNUM) */
136 rtx struct_value_incoming_rtx
; /* (REG:Pmode STRUCT_VALUE_INCOMING_REGNUM) */
137 rtx static_chain_rtx
; /* (REG:Pmode STATIC_CHAIN_REGNUM) */
138 rtx static_chain_incoming_rtx
; /* (REG:Pmode STATIC_CHAIN_INCOMING_REGNUM) */
139 rtx pic_offset_table_rtx
; /* (REG:Pmode PIC_OFFSET_TABLE_REGNUM) */
141 /* This is used to implement __builtin_return_address for some machines.
142 See for instance the MIPS port. */
143 rtx return_address_pointer_rtx
; /* (REG:Pmode RETURN_ADDRESS_POINTER_REGNUM) */
145 /* We make one copy of (const_int C) where C is in
146 [- MAX_SAVED_CONST_INT, MAX_SAVED_CONST_INT]
147 to save space during the compilation and simplify comparisons of
150 rtx const_int_rtx
[MAX_SAVED_CONST_INT
* 2 + 1];
152 /* A hash table storing CONST_INTs whose absolute value is greater
153 than MAX_SAVED_CONST_INT. */
155 static GTY ((if_marked ("ggc_marked_p"), param_is (struct rtx_def
)))
156 htab_t const_int_htab
;
158 /* A hash table storing memory attribute structures. */
159 static GTY ((if_marked ("ggc_marked_p"), param_is (struct mem_attrs
)))
160 htab_t mem_attrs_htab
;
162 /* A hash table storing register attribute structures. */
163 static GTY ((if_marked ("ggc_marked_p"), param_is (struct reg_attrs
)))
164 htab_t reg_attrs_htab
;
166 /* A hash table storing all CONST_DOUBLEs. */
167 static GTY ((if_marked ("ggc_marked_p"), param_is (struct rtx_def
)))
168 htab_t const_double_htab
;
170 #define first_insn (cfun->emit->x_first_insn)
171 #define last_insn (cfun->emit->x_last_insn)
172 #define cur_insn_uid (cfun->emit->x_cur_insn_uid)
173 #define last_linenum (cfun->emit->x_last_linenum)
174 #define last_filename (cfun->emit->x_last_filename)
175 #define first_label_num (cfun->emit->x_first_label_num)
177 static rtx make_jump_insn_raw
PARAMS ((rtx
));
178 static rtx make_call_insn_raw
PARAMS ((rtx
));
179 static rtx find_line_note
PARAMS ((rtx
));
180 static rtx change_address_1
PARAMS ((rtx
, enum machine_mode
, rtx
,
182 static void unshare_all_rtl_1
PARAMS ((rtx
));
183 static void unshare_all_decls
PARAMS ((tree
));
184 static void reset_used_decls
PARAMS ((tree
));
185 static void mark_label_nuses
PARAMS ((rtx
));
186 static hashval_t const_int_htab_hash
PARAMS ((const void *));
187 static int const_int_htab_eq
PARAMS ((const void *,
189 static hashval_t const_double_htab_hash
PARAMS ((const void *));
190 static int const_double_htab_eq
PARAMS ((const void *,
192 static rtx lookup_const_double
PARAMS ((rtx
));
193 static hashval_t mem_attrs_htab_hash
PARAMS ((const void *));
194 static int mem_attrs_htab_eq
PARAMS ((const void *,
196 static mem_attrs
*get_mem_attrs
PARAMS ((HOST_WIDE_INT
, tree
, rtx
,
199 static hashval_t reg_attrs_htab_hash
PARAMS ((const void *));
200 static int reg_attrs_htab_eq
PARAMS ((const void *,
202 static reg_attrs
*get_reg_attrs
PARAMS ((tree
, int));
203 static tree component_ref_for_mem_expr
PARAMS ((tree
));
204 static rtx gen_const_vector_0
PARAMS ((enum machine_mode
));
206 /* Probability of the conditional branch currently proceeded by try_split.
207 Set to -1 otherwise. */
208 int split_branch_probability
= -1;
210 /* Returns a hash code for X (which is a really a CONST_INT). */
213 const_int_htab_hash (x
)
216 return (hashval_t
) INTVAL ((struct rtx_def
*) x
);
219 /* Returns nonzero if the value represented by X (which is really a
220 CONST_INT) is the same as that given by Y (which is really a
224 const_int_htab_eq (x
, y
)
228 return (INTVAL ((rtx
) x
) == *((const HOST_WIDE_INT
*) y
));
231 /* Returns a hash code for X (which is really a CONST_DOUBLE). */
233 const_double_htab_hash (x
)
239 if (GET_MODE (value
) == VOIDmode
)
240 h
= CONST_DOUBLE_LOW (value
) ^ CONST_DOUBLE_HIGH (value
);
243 h
= real_hash (CONST_DOUBLE_REAL_VALUE (value
));
244 /* MODE is used in the comparison, so it should be in the hash. */
245 h
^= GET_MODE (value
);
250 /* Returns nonzero if the value represented by X (really a ...)
251 is the same as that represented by Y (really a ...) */
253 const_double_htab_eq (x
, y
)
257 rtx a
= (rtx
)x
, b
= (rtx
)y
;
259 if (GET_MODE (a
) != GET_MODE (b
))
261 if (GET_MODE (a
) == VOIDmode
)
262 return (CONST_DOUBLE_LOW (a
) == CONST_DOUBLE_LOW (b
)
263 && CONST_DOUBLE_HIGH (a
) == CONST_DOUBLE_HIGH (b
));
265 return real_identical (CONST_DOUBLE_REAL_VALUE (a
),
266 CONST_DOUBLE_REAL_VALUE (b
));
269 /* Returns a hash code for X (which is a really a mem_attrs *). */
272 mem_attrs_htab_hash (x
)
275 mem_attrs
*p
= (mem_attrs
*) x
;
277 return (p
->alias
^ (p
->align
* 1000)
278 ^ ((p
->offset
? INTVAL (p
->offset
) : 0) * 50000)
279 ^ ((p
->size
? INTVAL (p
->size
) : 0) * 2500000)
283 /* Returns nonzero if the value represented by X (which is really a
284 mem_attrs *) is the same as that given by Y (which is also really a
288 mem_attrs_htab_eq (x
, y
)
292 mem_attrs
*p
= (mem_attrs
*) x
;
293 mem_attrs
*q
= (mem_attrs
*) y
;
295 return (p
->alias
== q
->alias
&& p
->expr
== q
->expr
&& p
->offset
== q
->offset
296 && p
->size
== q
->size
&& p
->align
== q
->align
);
299 /* Allocate a new mem_attrs structure and insert it into the hash table if
300 one identical to it is not already in the table. We are doing this for
304 get_mem_attrs (alias
, expr
, offset
, size
, align
, mode
)
310 enum machine_mode mode
;
315 /* If everything is the default, we can just return zero.
316 This must match what the corresponding MEM_* macros return when the
317 field is not present. */
318 if (alias
== 0 && expr
== 0 && offset
== 0
320 || (mode
!= BLKmode
&& GET_MODE_SIZE (mode
) == INTVAL (size
)))
321 && (STRICT_ALIGNMENT
&& mode
!= BLKmode
322 ? align
== GET_MODE_ALIGNMENT (mode
) : align
== BITS_PER_UNIT
))
327 attrs
.offset
= offset
;
331 slot
= htab_find_slot (mem_attrs_htab
, &attrs
, INSERT
);
334 *slot
= ggc_alloc (sizeof (mem_attrs
));
335 memcpy (*slot
, &attrs
, sizeof (mem_attrs
));
341 /* Returns a hash code for X (which is a really a reg_attrs *). */
344 reg_attrs_htab_hash (x
)
347 reg_attrs
*p
= (reg_attrs
*) x
;
349 return ((p
->offset
* 1000) ^ (long) p
->decl
);
352 /* Returns non-zero if the value represented by X (which is really a
353 reg_attrs *) is the same as that given by Y (which is also really a
357 reg_attrs_htab_eq (x
, y
)
361 reg_attrs
*p
= (reg_attrs
*) x
;
362 reg_attrs
*q
= (reg_attrs
*) y
;
364 return (p
->decl
== q
->decl
&& p
->offset
== q
->offset
);
366 /* Allocate a new reg_attrs structure and insert it into the hash table if
367 one identical to it is not already in the table. We are doing this for
371 get_reg_attrs (decl
, offset
)
378 /* If everything is the default, we can just return zero. */
379 if (decl
== 0 && offset
== 0)
383 attrs
.offset
= offset
;
385 slot
= htab_find_slot (reg_attrs_htab
, &attrs
, INSERT
);
388 *slot
= ggc_alloc (sizeof (reg_attrs
));
389 memcpy (*slot
, &attrs
, sizeof (reg_attrs
));
395 /* Generate a new REG rtx. Make sure ORIGINAL_REGNO is set properly, and
396 don't attempt to share with the various global pieces of rtl (such as
397 frame_pointer_rtx). */
400 gen_raw_REG (mode
, regno
)
401 enum machine_mode mode
;
404 rtx x
= gen_rtx_raw_REG (mode
, regno
);
405 ORIGINAL_REGNO (x
) = regno
;
409 /* There are some RTL codes that require special attention; the generation
410 functions do the raw handling. If you add to this list, modify
411 special_rtx in gengenrtl.c as well. */
414 gen_rtx_CONST_INT (mode
, arg
)
415 enum machine_mode mode ATTRIBUTE_UNUSED
;
420 if (arg
>= - MAX_SAVED_CONST_INT
&& arg
<= MAX_SAVED_CONST_INT
)
421 return const_int_rtx
[arg
+ MAX_SAVED_CONST_INT
];
423 #if STORE_FLAG_VALUE != 1 && STORE_FLAG_VALUE != -1
424 if (const_true_rtx
&& arg
== STORE_FLAG_VALUE
)
425 return const_true_rtx
;
428 /* Look up the CONST_INT in the hash table. */
429 slot
= htab_find_slot_with_hash (const_int_htab
, &arg
,
430 (hashval_t
) arg
, INSERT
);
432 *slot
= gen_rtx_raw_CONST_INT (VOIDmode
, arg
);
438 gen_int_mode (c
, mode
)
440 enum machine_mode mode
;
442 return GEN_INT (trunc_int_for_mode (c
, mode
));
445 /* CONST_DOUBLEs might be created from pairs of integers, or from
446 REAL_VALUE_TYPEs. Also, their length is known only at run time,
447 so we cannot use gen_rtx_raw_CONST_DOUBLE. */
449 /* Determine whether REAL, a CONST_DOUBLE, already exists in the
450 hash table. If so, return its counterpart; otherwise add it
451 to the hash table and return it. */
453 lookup_const_double (real
)
456 void **slot
= htab_find_slot (const_double_htab
, real
, INSERT
);
463 /* Return a CONST_DOUBLE rtx for a floating-point value specified by
464 VALUE in mode MODE. */
466 const_double_from_real_value (value
, mode
)
467 REAL_VALUE_TYPE value
;
468 enum machine_mode mode
;
470 rtx real
= rtx_alloc (CONST_DOUBLE
);
471 PUT_MODE (real
, mode
);
473 memcpy (&CONST_DOUBLE_LOW (real
), &value
, sizeof (REAL_VALUE_TYPE
));
475 return lookup_const_double (real
);
478 /* Return a CONST_DOUBLE or CONST_INT for a value specified as a pair
479 of ints: I0 is the low-order word and I1 is the high-order word.
480 Do not use this routine for non-integer modes; convert to
481 REAL_VALUE_TYPE and use CONST_DOUBLE_FROM_REAL_VALUE. */
484 immed_double_const (i0
, i1
, mode
)
485 HOST_WIDE_INT i0
, i1
;
486 enum machine_mode mode
;
491 if (mode
!= VOIDmode
)
494 if (GET_MODE_CLASS (mode
) != MODE_INT
495 && GET_MODE_CLASS (mode
) != MODE_PARTIAL_INT
496 /* We can get a 0 for an error mark. */
497 && GET_MODE_CLASS (mode
) != MODE_VECTOR_INT
498 && GET_MODE_CLASS (mode
) != MODE_VECTOR_FLOAT
)
501 /* We clear out all bits that don't belong in MODE, unless they and
502 our sign bit are all one. So we get either a reasonable negative
503 value or a reasonable unsigned value for this mode. */
504 width
= GET_MODE_BITSIZE (mode
);
505 if (width
< HOST_BITS_PER_WIDE_INT
506 && ((i0
& ((HOST_WIDE_INT
) (-1) << (width
- 1)))
507 != ((HOST_WIDE_INT
) (-1) << (width
- 1))))
508 i0
&= ((HOST_WIDE_INT
) 1 << width
) - 1, i1
= 0;
509 else if (width
== HOST_BITS_PER_WIDE_INT
510 && ! (i1
== ~0 && i0
< 0))
512 else if (width
> 2 * HOST_BITS_PER_WIDE_INT
)
513 /* We cannot represent this value as a constant. */
516 /* If this would be an entire word for the target, but is not for
517 the host, then sign-extend on the host so that the number will
518 look the same way on the host that it would on the target.
520 For example, when building a 64 bit alpha hosted 32 bit sparc
521 targeted compiler, then we want the 32 bit unsigned value -1 to be
522 represented as a 64 bit value -1, and not as 0x00000000ffffffff.
523 The latter confuses the sparc backend. */
525 if (width
< HOST_BITS_PER_WIDE_INT
526 && (i0
& ((HOST_WIDE_INT
) 1 << (width
- 1))))
527 i0
|= ((HOST_WIDE_INT
) (-1) << width
);
529 /* If MODE fits within HOST_BITS_PER_WIDE_INT, always use a
532 ??? Strictly speaking, this is wrong if we create a CONST_INT for
533 a large unsigned constant with the size of MODE being
534 HOST_BITS_PER_WIDE_INT and later try to interpret that constant
535 in a wider mode. In that case we will mis-interpret it as a
538 Unfortunately, the only alternative is to make a CONST_DOUBLE for
539 any constant in any mode if it is an unsigned constant larger
540 than the maximum signed integer in an int on the host. However,
541 doing this will break everyone that always expects to see a
542 CONST_INT for SImode and smaller.
544 We have always been making CONST_INTs in this case, so nothing
545 new is being broken. */
547 if (width
<= HOST_BITS_PER_WIDE_INT
)
548 i1
= (i0
< 0) ? ~(HOST_WIDE_INT
) 0 : 0;
551 /* If this integer fits in one word, return a CONST_INT. */
552 if ((i1
== 0 && i0
>= 0) || (i1
== ~0 && i0
< 0))
555 /* We use VOIDmode for integers. */
556 value
= rtx_alloc (CONST_DOUBLE
);
557 PUT_MODE (value
, VOIDmode
);
559 CONST_DOUBLE_LOW (value
) = i0
;
560 CONST_DOUBLE_HIGH (value
) = i1
;
562 for (i
= 2; i
< (sizeof CONST_DOUBLE_FORMAT
- 1); i
++)
563 XWINT (value
, i
) = 0;
565 return lookup_const_double (value
);
569 gen_rtx_REG (mode
, regno
)
570 enum machine_mode mode
;
573 /* In case the MD file explicitly references the frame pointer, have
574 all such references point to the same frame pointer. This is
575 used during frame pointer elimination to distinguish the explicit
576 references to these registers from pseudos that happened to be
579 If we have eliminated the frame pointer or arg pointer, we will
580 be using it as a normal register, for example as a spill
581 register. In such cases, we might be accessing it in a mode that
582 is not Pmode and therefore cannot use the pre-allocated rtx.
584 Also don't do this when we are making new REGs in reload, since
585 we don't want to get confused with the real pointers. */
587 if (mode
== Pmode
&& !reload_in_progress
)
589 if (regno
== FRAME_POINTER_REGNUM
590 && (!reload_completed
|| frame_pointer_needed
))
591 return frame_pointer_rtx
;
592 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
593 if (regno
== HARD_FRAME_POINTER_REGNUM
594 && (!reload_completed
|| frame_pointer_needed
))
595 return hard_frame_pointer_rtx
;
597 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM && HARD_FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
598 if (regno
== ARG_POINTER_REGNUM
)
599 return arg_pointer_rtx
;
601 #ifdef RETURN_ADDRESS_POINTER_REGNUM
602 if (regno
== RETURN_ADDRESS_POINTER_REGNUM
)
603 return return_address_pointer_rtx
;
605 if (regno
== (unsigned) PIC_OFFSET_TABLE_REGNUM
606 && fixed_regs
[PIC_OFFSET_TABLE_REGNUM
])
607 return pic_offset_table_rtx
;
608 if (regno
== STACK_POINTER_REGNUM
)
609 return stack_pointer_rtx
;
613 /* If the per-function register table has been set up, try to re-use
614 an existing entry in that table to avoid useless generation of RTL.
616 This code is disabled for now until we can fix the various backends
617 which depend on having non-shared hard registers in some cases. Long
618 term we want to re-enable this code as it can significantly cut down
619 on the amount of useless RTL that gets generated.
621 We'll also need to fix some code that runs after reload that wants to
622 set ORIGINAL_REGNO. */
627 && regno
< FIRST_PSEUDO_REGISTER
628 && reg_raw_mode
[regno
] == mode
)
629 return regno_reg_rtx
[regno
];
632 return gen_raw_REG (mode
, regno
);
636 gen_rtx_MEM (mode
, addr
)
637 enum machine_mode mode
;
640 rtx rt
= gen_rtx_raw_MEM (mode
, addr
);
642 /* This field is not cleared by the mere allocation of the rtx, so
650 gen_rtx_SUBREG (mode
, reg
, offset
)
651 enum machine_mode mode
;
655 /* This is the most common failure type.
656 Catch it early so we can see who does it. */
657 if ((offset
% GET_MODE_SIZE (mode
)) != 0)
660 /* This check isn't usable right now because combine will
661 throw arbitrary crap like a CALL into a SUBREG in
662 gen_lowpart_for_combine so we must just eat it. */
664 /* Check for this too. */
665 if (offset
>= GET_MODE_SIZE (GET_MODE (reg
)))
668 return gen_rtx_raw_SUBREG (mode
, reg
, offset
);
671 /* Generate a SUBREG representing the least-significant part of REG if MODE
672 is smaller than mode of REG, otherwise paradoxical SUBREG. */
675 gen_lowpart_SUBREG (mode
, reg
)
676 enum machine_mode mode
;
679 enum machine_mode inmode
;
681 inmode
= GET_MODE (reg
);
682 if (inmode
== VOIDmode
)
684 return gen_rtx_SUBREG (mode
, reg
,
685 subreg_lowpart_offset (mode
, inmode
));
688 /* rtx gen_rtx (code, mode, [element1, ..., elementn])
690 ** This routine generates an RTX of the size specified by
691 ** <code>, which is an RTX code. The RTX structure is initialized
692 ** from the arguments <element1> through <elementn>, which are
693 ** interpreted according to the specific RTX type's format. The
694 ** special machine mode associated with the rtx (if any) is specified
697 ** gen_rtx can be invoked in a way which resembles the lisp-like
698 ** rtx it will generate. For example, the following rtx structure:
700 ** (plus:QI (mem:QI (reg:SI 1))
701 ** (mem:QI (plusw:SI (reg:SI 2) (reg:SI 3))))
703 ** ...would be generated by the following C code:
705 ** gen_rtx (PLUS, QImode,
706 ** gen_rtx (MEM, QImode,
707 ** gen_rtx (REG, SImode, 1)),
708 ** gen_rtx (MEM, QImode,
709 ** gen_rtx (PLUS, SImode,
710 ** gen_rtx (REG, SImode, 2),
711 ** gen_rtx (REG, SImode, 3)))),
716 gen_rtx
VPARAMS ((enum rtx_code code
, enum machine_mode mode
, ...))
718 int i
; /* Array indices... */
719 const char *fmt
; /* Current rtx's format... */
720 rtx rt_val
; /* RTX to return to caller... */
723 VA_FIXEDARG (p
, enum rtx_code
, code
);
724 VA_FIXEDARG (p
, enum machine_mode
, mode
);
729 rt_val
= gen_rtx_CONST_INT (mode
, va_arg (p
, HOST_WIDE_INT
));
734 HOST_WIDE_INT arg0
= va_arg (p
, HOST_WIDE_INT
);
735 HOST_WIDE_INT arg1
= va_arg (p
, HOST_WIDE_INT
);
737 rt_val
= immed_double_const (arg0
, arg1
, mode
);
742 rt_val
= gen_rtx_REG (mode
, va_arg (p
, int));
746 rt_val
= gen_rtx_MEM (mode
, va_arg (p
, rtx
));
750 rt_val
= rtx_alloc (code
); /* Allocate the storage space. */
751 rt_val
->mode
= mode
; /* Store the machine mode... */
753 fmt
= GET_RTX_FORMAT (code
); /* Find the right format... */
754 for (i
= 0; i
< GET_RTX_LENGTH (code
); i
++)
758 case '0': /* Unused field. */
761 case 'i': /* An integer? */
762 XINT (rt_val
, i
) = va_arg (p
, int);
765 case 'w': /* A wide integer? */
766 XWINT (rt_val
, i
) = va_arg (p
, HOST_WIDE_INT
);
769 case 's': /* A string? */
770 XSTR (rt_val
, i
) = va_arg (p
, char *);
773 case 'e': /* An expression? */
774 case 'u': /* An insn? Same except when printing. */
775 XEXP (rt_val
, i
) = va_arg (p
, rtx
);
778 case 'E': /* An RTX vector? */
779 XVEC (rt_val
, i
) = va_arg (p
, rtvec
);
782 case 'b': /* A bitmap? */
783 XBITMAP (rt_val
, i
) = va_arg (p
, bitmap
);
786 case 't': /* A tree? */
787 XTREE (rt_val
, i
) = va_arg (p
, tree
);
801 /* gen_rtvec (n, [rt1, ..., rtn])
803 ** This routine creates an rtvec and stores within it the
804 ** pointers to rtx's which are its arguments.
809 gen_rtvec
VPARAMS ((int n
, ...))
815 VA_FIXEDARG (p
, int, n
);
818 return NULL_RTVEC
; /* Don't allocate an empty rtvec... */
820 vector
= (rtx
*) alloca (n
* sizeof (rtx
));
822 for (i
= 0; i
< n
; i
++)
823 vector
[i
] = va_arg (p
, rtx
);
825 /* The definition of VA_* in K&R C causes `n' to go out of scope. */
829 return gen_rtvec_v (save_n
, vector
);
833 gen_rtvec_v (n
, argp
)
841 return NULL_RTVEC
; /* Don't allocate an empty rtvec... */
843 rt_val
= rtvec_alloc (n
); /* Allocate an rtvec... */
845 for (i
= 0; i
< n
; i
++)
846 rt_val
->elem
[i
] = *argp
++;
851 /* Generate a REG rtx for a new pseudo register of mode MODE.
852 This pseudo is assigned the next sequential register number. */
856 enum machine_mode mode
;
858 struct function
*f
= cfun
;
861 /* Don't let anything called after initial flow analysis create new
866 if (generating_concat_p
867 && (GET_MODE_CLASS (mode
) == MODE_COMPLEX_FLOAT
868 || GET_MODE_CLASS (mode
) == MODE_COMPLEX_INT
))
870 /* For complex modes, don't make a single pseudo.
871 Instead, make a CONCAT of two pseudos.
872 This allows noncontiguous allocation of the real and imaginary parts,
873 which makes much better code. Besides, allocating DCmode
874 pseudos overstrains reload on some machines like the 386. */
875 rtx realpart
, imagpart
;
876 enum machine_mode partmode
= GET_MODE_INNER (mode
);
878 realpart
= gen_reg_rtx (partmode
);
879 imagpart
= gen_reg_rtx (partmode
);
880 return gen_rtx_CONCAT (mode
, realpart
, imagpart
);
883 /* Make sure regno_pointer_align, and regno_reg_rtx are large
884 enough to have an element for this pseudo reg number. */
886 if (reg_rtx_no
== f
->emit
->regno_pointer_align_length
)
888 int old_size
= f
->emit
->regno_pointer_align_length
;
892 new = ggc_realloc (f
->emit
->regno_pointer_align
, old_size
* 2);
893 memset (new + old_size
, 0, old_size
);
894 f
->emit
->regno_pointer_align
= (unsigned char *) new;
896 new1
= (rtx
*) ggc_realloc (f
->emit
->x_regno_reg_rtx
,
897 old_size
* 2 * sizeof (rtx
));
898 memset (new1
+ old_size
, 0, old_size
* sizeof (rtx
));
899 regno_reg_rtx
= new1
;
901 f
->emit
->regno_pointer_align_length
= old_size
* 2;
904 val
= gen_raw_REG (mode
, reg_rtx_no
);
905 regno_reg_rtx
[reg_rtx_no
++] = val
;
909 /* Generate an register with same attributes as REG,
910 but offsetted by OFFSET. */
913 gen_rtx_REG_offset (reg
, mode
, regno
, offset
)
914 enum machine_mode mode
;
919 rtx
new = gen_rtx_REG (mode
, regno
);
920 REG_ATTRS (new) = get_reg_attrs (REG_EXPR (reg
),
921 REG_OFFSET (reg
) + offset
);
925 /* Set the decl for MEM to DECL. */
928 set_reg_attrs_from_mem (reg
, mem
)
932 if (MEM_OFFSET (mem
) && GET_CODE (MEM_OFFSET (mem
)) == CONST_INT
)
934 = get_reg_attrs (MEM_EXPR (mem
), INTVAL (MEM_OFFSET (mem
)));
937 /* Set the register attributes for registers contained in PARM_RTX.
938 Use needed values from memory attributes of MEM. */
941 set_reg_attrs_for_parm (parm_rtx
, mem
)
945 if (GET_CODE (parm_rtx
) == REG
)
946 set_reg_attrs_from_mem (parm_rtx
, mem
);
947 else if (GET_CODE (parm_rtx
) == PARALLEL
)
949 /* Check for a NULL entry in the first slot, used to indicate that the
950 parameter goes both on the stack and in registers. */
951 int i
= XEXP (XVECEXP (parm_rtx
, 0, 0), 0) ? 0 : 1;
952 for (; i
< XVECLEN (parm_rtx
, 0); i
++)
954 rtx x
= XVECEXP (parm_rtx
, 0, i
);
955 if (GET_CODE (XEXP (x
, 0)) == REG
)
956 REG_ATTRS (XEXP (x
, 0))
957 = get_reg_attrs (MEM_EXPR (mem
),
958 INTVAL (XEXP (x
, 1)));
963 /* Assign the RTX X to declaration T. */
969 DECL_CHECK (t
)->decl
.rtl
= x
;
973 /* For register, we maitain the reverse information too. */
974 if (GET_CODE (x
) == REG
)
975 REG_ATTRS (x
) = get_reg_attrs (t
, 0);
976 else if (GET_CODE (x
) == SUBREG
)
977 REG_ATTRS (SUBREG_REG (x
))
978 = get_reg_attrs (t
, -SUBREG_BYTE (x
));
979 if (GET_CODE (x
) == CONCAT
)
981 if (REG_P (XEXP (x
, 0)))
982 REG_ATTRS (XEXP (x
, 0)) = get_reg_attrs (t
, 0);
983 if (REG_P (XEXP (x
, 1)))
984 REG_ATTRS (XEXP (x
, 1))
985 = get_reg_attrs (t
, GET_MODE_UNIT_SIZE (GET_MODE (XEXP (x
, 0))));
987 if (GET_CODE (x
) == PARALLEL
)
990 for (i
= 0; i
< XVECLEN (x
, 0); i
++)
992 rtx y
= XVECEXP (x
, 0, i
);
993 if (REG_P (XEXP (y
, 0)))
994 REG_ATTRS (XEXP (y
, 0)) = get_reg_attrs (t
, INTVAL (XEXP (y
, 1)));
999 /* Identify REG (which may be a CONCAT) as a user register. */
1005 if (GET_CODE (reg
) == CONCAT
)
1007 REG_USERVAR_P (XEXP (reg
, 0)) = 1;
1008 REG_USERVAR_P (XEXP (reg
, 1)) = 1;
1010 else if (GET_CODE (reg
) == REG
)
1011 REG_USERVAR_P (reg
) = 1;
1016 /* Identify REG as a probable pointer register and show its alignment
1017 as ALIGN, if nonzero. */
1020 mark_reg_pointer (reg
, align
)
1024 if (! REG_POINTER (reg
))
1026 REG_POINTER (reg
) = 1;
1029 REGNO_POINTER_ALIGN (REGNO (reg
)) = align
;
1031 else if (align
&& align
< REGNO_POINTER_ALIGN (REGNO (reg
)))
1032 /* We can no-longer be sure just how aligned this pointer is */
1033 REGNO_POINTER_ALIGN (REGNO (reg
)) = align
;
1036 /* Return 1 plus largest pseudo reg number used in the current function. */
1044 /* Return 1 + the largest label number used so far in the current function. */
1049 if (last_label_num
&& label_num
== base_label_num
)
1050 return last_label_num
;
1054 /* Return first label number used in this function (if any were used). */
1057 get_first_label_num ()
1059 return first_label_num
;
1062 /* Return the final regno of X, which is a SUBREG of a hard
1065 subreg_hard_regno (x
, check_mode
)
1069 enum machine_mode mode
= GET_MODE (x
);
1070 unsigned int byte_offset
, base_regno
, final_regno
;
1071 rtx reg
= SUBREG_REG (x
);
1073 /* This is where we attempt to catch illegal subregs
1074 created by the compiler. */
1075 if (GET_CODE (x
) != SUBREG
1076 || GET_CODE (reg
) != REG
)
1078 base_regno
= REGNO (reg
);
1079 if (base_regno
>= FIRST_PSEUDO_REGISTER
)
1081 if (check_mode
&& ! HARD_REGNO_MODE_OK (base_regno
, GET_MODE (reg
)))
1084 /* Catch non-congruent offsets too. */
1085 byte_offset
= SUBREG_BYTE (x
);
1086 if ((byte_offset
% GET_MODE_SIZE (mode
)) != 0)
1089 final_regno
= subreg_regno (x
);
1094 /* Return a value representing some low-order bits of X, where the number
1095 of low-order bits is given by MODE. Note that no conversion is done
1096 between floating-point and fixed-point values, rather, the bit
1097 representation is returned.
1099 This function handles the cases in common between gen_lowpart, below,
1100 and two variants in cse.c and combine.c. These are the cases that can
1101 be safely handled at all points in the compilation.
1103 If this is not a case we can handle, return 0. */
1106 gen_lowpart_common (mode
, x
)
1107 enum machine_mode mode
;
1110 int msize
= GET_MODE_SIZE (mode
);
1111 int xsize
= GET_MODE_SIZE (GET_MODE (x
));
1114 if (GET_MODE (x
) == mode
)
1117 /* MODE must occupy no more words than the mode of X. */
1118 if (GET_MODE (x
) != VOIDmode
1119 && ((msize
+ (UNITS_PER_WORD
- 1)) / UNITS_PER_WORD
1120 > ((xsize
+ (UNITS_PER_WORD
- 1)) / UNITS_PER_WORD
)))
1123 /* Don't allow generating paradoxical FLOAT_MODE subregs. */
1124 if (GET_MODE_CLASS (mode
) == MODE_FLOAT
1125 && GET_MODE (x
) != VOIDmode
&& msize
> xsize
)
1128 offset
= subreg_lowpart_offset (mode
, GET_MODE (x
));
1130 if ((GET_CODE (x
) == ZERO_EXTEND
|| GET_CODE (x
) == SIGN_EXTEND
)
1131 && (GET_MODE_CLASS (mode
) == MODE_INT
1132 || GET_MODE_CLASS (mode
) == MODE_PARTIAL_INT
))
1134 /* If we are getting the low-order part of something that has been
1135 sign- or zero-extended, we can either just use the object being
1136 extended or make a narrower extension. If we want an even smaller
1137 piece than the size of the object being extended, call ourselves
1140 This case is used mostly by combine and cse. */
1142 if (GET_MODE (XEXP (x
, 0)) == mode
)
1144 else if (GET_MODE_SIZE (mode
) < GET_MODE_SIZE (GET_MODE (XEXP (x
, 0))))
1145 return gen_lowpart_common (mode
, XEXP (x
, 0));
1146 else if (GET_MODE_SIZE (mode
) < GET_MODE_SIZE (GET_MODE (x
)))
1147 return gen_rtx_fmt_e (GET_CODE (x
), mode
, XEXP (x
, 0));
1149 else if (GET_CODE (x
) == SUBREG
|| GET_CODE (x
) == REG
1150 || GET_CODE (x
) == CONCAT
|| GET_CODE (x
) == CONST_VECTOR
)
1151 return simplify_gen_subreg (mode
, x
, GET_MODE (x
), offset
);
1152 else if ((GET_MODE_CLASS (mode
) == MODE_VECTOR_INT
1153 || GET_MODE_CLASS (mode
) == MODE_VECTOR_FLOAT
)
1154 && GET_MODE (x
) == VOIDmode
)
1155 return simplify_gen_subreg (mode
, x
, int_mode_for_mode (mode
), offset
);
1156 /* If X is a CONST_INT or a CONST_DOUBLE, extract the appropriate bits
1157 from the low-order part of the constant. */
1158 else if ((GET_MODE_CLASS (mode
) == MODE_INT
1159 || GET_MODE_CLASS (mode
) == MODE_PARTIAL_INT
)
1160 && GET_MODE (x
) == VOIDmode
1161 && (GET_CODE (x
) == CONST_INT
|| GET_CODE (x
) == CONST_DOUBLE
))
1163 /* If MODE is twice the host word size, X is already the desired
1164 representation. Otherwise, if MODE is wider than a word, we can't
1165 do this. If MODE is exactly a word, return just one CONST_INT. */
1167 if (GET_MODE_BITSIZE (mode
) >= 2 * HOST_BITS_PER_WIDE_INT
)
1169 else if (GET_MODE_BITSIZE (mode
) > HOST_BITS_PER_WIDE_INT
)
1171 else if (GET_MODE_BITSIZE (mode
) == HOST_BITS_PER_WIDE_INT
)
1172 return (GET_CODE (x
) == CONST_INT
? x
1173 : GEN_INT (CONST_DOUBLE_LOW (x
)));
1176 /* MODE must be narrower than HOST_BITS_PER_WIDE_INT. */
1177 HOST_WIDE_INT val
= (GET_CODE (x
) == CONST_INT
? INTVAL (x
)
1178 : CONST_DOUBLE_LOW (x
));
1180 /* Sign extend to HOST_WIDE_INT. */
1181 val
= trunc_int_for_mode (val
, mode
);
1183 return (GET_CODE (x
) == CONST_INT
&& INTVAL (x
) == val
? x
1188 /* The floating-point emulator can handle all conversions between
1189 FP and integer operands. This simplifies reload because it
1190 doesn't have to deal with constructs like (subreg:DI
1191 (const_double:SF ...)) or (subreg:DF (const_int ...)). */
1192 /* Single-precision floats are always 32-bits and double-precision
1193 floats are always 64-bits. */
1195 else if (GET_MODE_CLASS (mode
) == MODE_FLOAT
1196 && GET_MODE_BITSIZE (mode
) == 32
1197 && GET_CODE (x
) == CONST_INT
)
1200 long i
= INTVAL (x
);
1202 real_from_target (&r
, &i
, mode
);
1203 return CONST_DOUBLE_FROM_REAL_VALUE (r
, mode
);
1205 else if (GET_MODE_CLASS (mode
) == MODE_FLOAT
1206 && GET_MODE_BITSIZE (mode
) == 64
1207 && (GET_CODE (x
) == CONST_INT
|| GET_CODE (x
) == CONST_DOUBLE
)
1208 && GET_MODE (x
) == VOIDmode
)
1211 HOST_WIDE_INT low
, high
;
1214 if (GET_CODE (x
) == CONST_INT
)
1217 high
= low
>> (HOST_BITS_PER_WIDE_INT
- 1);
1221 low
= CONST_DOUBLE_LOW (x
);
1222 high
= CONST_DOUBLE_HIGH (x
);
1225 if (HOST_BITS_PER_WIDE_INT
> 32)
1226 high
= low
>> 31 >> 1;
1228 /* REAL_VALUE_TARGET_DOUBLE takes the addressing order of the
1230 if (WORDS_BIG_ENDIAN
)
1231 i
[0] = high
, i
[1] = low
;
1233 i
[0] = low
, i
[1] = high
;
1235 real_from_target (&r
, i
, mode
);
1236 return CONST_DOUBLE_FROM_REAL_VALUE (r
, mode
);
1238 else if ((GET_MODE_CLASS (mode
) == MODE_INT
1239 || GET_MODE_CLASS (mode
) == MODE_PARTIAL_INT
)
1240 && GET_CODE (x
) == CONST_DOUBLE
1241 && GET_MODE_CLASS (GET_MODE (x
)) == MODE_FLOAT
)
1244 long i
[4]; /* Only the low 32 bits of each 'long' are used. */
1245 int endian
= WORDS_BIG_ENDIAN
? 1 : 0;
1247 /* Convert 'r' into an array of four 32-bit words in target word
1249 REAL_VALUE_FROM_CONST_DOUBLE (r
, x
);
1250 switch (GET_MODE_BITSIZE (GET_MODE (x
)))
1253 REAL_VALUE_TO_TARGET_SINGLE (r
, i
[3 * endian
]);
1256 i
[3 - 3 * endian
] = 0;
1259 REAL_VALUE_TO_TARGET_DOUBLE (r
, i
+ 2 * endian
);
1260 i
[2 - 2 * endian
] = 0;
1261 i
[3 - 2 * endian
] = 0;
1264 REAL_VALUE_TO_TARGET_LONG_DOUBLE (r
, i
+ endian
);
1265 i
[3 - 3 * endian
] = 0;
1268 REAL_VALUE_TO_TARGET_LONG_DOUBLE (r
, i
);
1273 /* Now, pack the 32-bit elements of the array into a CONST_DOUBLE
1275 #if HOST_BITS_PER_WIDE_INT == 32
1276 return immed_double_const (i
[3 * endian
], i
[1 + endian
], mode
);
1278 if (HOST_BITS_PER_WIDE_INT
!= 64)
1281 return immed_double_const ((((unsigned long) i
[3 * endian
])
1282 | ((HOST_WIDE_INT
) i
[1 + endian
] << 32)),
1283 (((unsigned long) i
[2 - endian
])
1284 | ((HOST_WIDE_INT
) i
[3 - 3 * endian
] << 32)),
1289 /* Otherwise, we can't do this. */
1293 /* Return the real part (which has mode MODE) of a complex value X.
1294 This always comes at the low address in memory. */
1297 gen_realpart (mode
, x
)
1298 enum machine_mode mode
;
1301 if (WORDS_BIG_ENDIAN
1302 && GET_MODE_BITSIZE (mode
) < BITS_PER_WORD
1304 && REGNO (x
) < FIRST_PSEUDO_REGISTER
)
1306 ("can't access real part of complex value in hard register");
1307 else if (WORDS_BIG_ENDIAN
)
1308 return gen_highpart (mode
, x
);
1310 return gen_lowpart (mode
, x
);
1313 /* Return the imaginary part (which has mode MODE) of a complex value X.
1314 This always comes at the high address in memory. */
1317 gen_imagpart (mode
, x
)
1318 enum machine_mode mode
;
1321 if (WORDS_BIG_ENDIAN
)
1322 return gen_lowpart (mode
, x
);
1323 else if (! WORDS_BIG_ENDIAN
1324 && GET_MODE_BITSIZE (mode
) < BITS_PER_WORD
1326 && REGNO (x
) < FIRST_PSEUDO_REGISTER
)
1328 ("can't access imaginary part of complex value in hard register");
1330 return gen_highpart (mode
, x
);
1333 /* Return 1 iff X, assumed to be a SUBREG,
1334 refers to the real part of the complex value in its containing reg.
1335 Complex values are always stored with the real part in the first word,
1336 regardless of WORDS_BIG_ENDIAN. */
1339 subreg_realpart_p (x
)
1342 if (GET_CODE (x
) != SUBREG
)
1345 return ((unsigned int) SUBREG_BYTE (x
)
1346 < GET_MODE_UNIT_SIZE (GET_MODE (SUBREG_REG (x
))));
1349 /* Assuming that X is an rtx (e.g., MEM, REG or SUBREG) for a value,
1350 return an rtx (MEM, SUBREG, or CONST_INT) that refers to the
1351 least-significant part of X.
1352 MODE specifies how big a part of X to return;
1353 it usually should not be larger than a word.
1354 If X is a MEM whose address is a QUEUED, the value may be so also. */
1357 gen_lowpart (mode
, x
)
1358 enum machine_mode mode
;
1361 rtx result
= gen_lowpart_common (mode
, x
);
1365 else if (GET_CODE (x
) == REG
)
1367 /* Must be a hard reg that's not valid in MODE. */
1368 result
= gen_lowpart_common (mode
, copy_to_reg (x
));
1373 else if (GET_CODE (x
) == MEM
)
1375 /* The only additional case we can do is MEM. */
1378 /* The following exposes the use of "x" to CSE. */
1379 if (GET_MODE_SIZE (GET_MODE (x
)) <= UNITS_PER_WORD
1380 && SCALAR_INT_MODE_P (GET_MODE (x
))
1381 && ! no_new_pseudos
)
1382 return gen_lowpart (mode
, force_reg (GET_MODE (x
), x
));
1384 if (WORDS_BIG_ENDIAN
)
1385 offset
= (MAX (GET_MODE_SIZE (GET_MODE (x
)), UNITS_PER_WORD
)
1386 - MAX (GET_MODE_SIZE (mode
), UNITS_PER_WORD
));
1388 if (BYTES_BIG_ENDIAN
)
1389 /* Adjust the address so that the address-after-the-data
1391 offset
-= (MIN (UNITS_PER_WORD
, GET_MODE_SIZE (mode
))
1392 - MIN (UNITS_PER_WORD
, GET_MODE_SIZE (GET_MODE (x
))));
1394 return adjust_address (x
, mode
, offset
);
1396 else if (GET_CODE (x
) == ADDRESSOF
)
1397 return gen_lowpart (mode
, force_reg (GET_MODE (x
), x
));
1402 /* Like `gen_lowpart', but refer to the most significant part.
1403 This is used to access the imaginary part of a complex number. */
1406 gen_highpart (mode
, x
)
1407 enum machine_mode mode
;
1410 unsigned int msize
= GET_MODE_SIZE (mode
);
1413 /* This case loses if X is a subreg. To catch bugs early,
1414 complain if an invalid MODE is used even in other cases. */
1415 if (msize
> UNITS_PER_WORD
1416 && msize
!= GET_MODE_UNIT_SIZE (GET_MODE (x
)))
1419 result
= simplify_gen_subreg (mode
, x
, GET_MODE (x
),
1420 subreg_highpart_offset (mode
, GET_MODE (x
)));
1422 /* simplify_gen_subreg is not guaranteed to return a valid operand for
1423 the target if we have a MEM. gen_highpart must return a valid operand,
1424 emitting code if necessary to do so. */
1425 if (result
!= NULL_RTX
&& GET_CODE (result
) == MEM
)
1426 result
= validize_mem (result
);
1433 /* Like gen_highpart, but accept mode of EXP operand in case EXP can
1434 be VOIDmode constant. */
1436 gen_highpart_mode (outermode
, innermode
, exp
)
1437 enum machine_mode outermode
, innermode
;
1440 if (GET_MODE (exp
) != VOIDmode
)
1442 if (GET_MODE (exp
) != innermode
)
1444 return gen_highpart (outermode
, exp
);
1446 return simplify_gen_subreg (outermode
, exp
, innermode
,
1447 subreg_highpart_offset (outermode
, innermode
));
1450 /* Return offset in bytes to get OUTERMODE low part
1451 of the value in mode INNERMODE stored in memory in target format. */
1454 subreg_lowpart_offset (outermode
, innermode
)
1455 enum machine_mode outermode
, innermode
;
1457 unsigned int offset
= 0;
1458 int difference
= (GET_MODE_SIZE (innermode
) - GET_MODE_SIZE (outermode
));
1462 if (WORDS_BIG_ENDIAN
)
1463 offset
+= (difference
/ UNITS_PER_WORD
) * UNITS_PER_WORD
;
1464 if (BYTES_BIG_ENDIAN
)
1465 offset
+= difference
% UNITS_PER_WORD
;
1471 /* Return offset in bytes to get OUTERMODE high part
1472 of the value in mode INNERMODE stored in memory in target format. */
1474 subreg_highpart_offset (outermode
, innermode
)
1475 enum machine_mode outermode
, innermode
;
1477 unsigned int offset
= 0;
1478 int difference
= (GET_MODE_SIZE (innermode
) - GET_MODE_SIZE (outermode
));
1480 if (GET_MODE_SIZE (innermode
) < GET_MODE_SIZE (outermode
))
1485 if (! WORDS_BIG_ENDIAN
)
1486 offset
+= (difference
/ UNITS_PER_WORD
) * UNITS_PER_WORD
;
1487 if (! BYTES_BIG_ENDIAN
)
1488 offset
+= difference
% UNITS_PER_WORD
;
1494 /* Return 1 iff X, assumed to be a SUBREG,
1495 refers to the least significant part of its containing reg.
1496 If X is not a SUBREG, always return 1 (it is its own low part!). */
1499 subreg_lowpart_p (x
)
1502 if (GET_CODE (x
) != SUBREG
)
1504 else if (GET_MODE (SUBREG_REG (x
)) == VOIDmode
)
1507 return (subreg_lowpart_offset (GET_MODE (x
), GET_MODE (SUBREG_REG (x
)))
1508 == SUBREG_BYTE (x
));
1512 /* Helper routine for all the constant cases of operand_subword.
1513 Some places invoke this directly. */
1516 constant_subword (op
, offset
, mode
)
1519 enum machine_mode mode
;
1521 int size_ratio
= HOST_BITS_PER_WIDE_INT
/ BITS_PER_WORD
;
1524 /* If OP is already an integer word, return it. */
1525 if (GET_MODE_CLASS (mode
) == MODE_INT
1526 && GET_MODE_SIZE (mode
) == UNITS_PER_WORD
)
1529 /* The output is some bits, the width of the target machine's word.
1530 A wider-word host can surely hold them in a CONST_INT. A narrower-word
1532 if (HOST_BITS_PER_WIDE_INT
>= BITS_PER_WORD
1533 && GET_MODE_CLASS (mode
) == MODE_FLOAT
1534 && GET_MODE_BITSIZE (mode
) == 64
1535 && GET_CODE (op
) == CONST_DOUBLE
)
1540 REAL_VALUE_FROM_CONST_DOUBLE (rv
, op
);
1541 REAL_VALUE_TO_TARGET_DOUBLE (rv
, k
);
1543 /* We handle 32-bit and >= 64-bit words here. Note that the order in
1544 which the words are written depends on the word endianness.
1545 ??? This is a potential portability problem and should
1546 be fixed at some point.
1548 We must exercise caution with the sign bit. By definition there
1549 are 32 significant bits in K; there may be more in a HOST_WIDE_INT.
1550 Consider a host with a 32-bit long and a 64-bit HOST_WIDE_INT.
1551 So we explicitly mask and sign-extend as necessary. */
1552 if (BITS_PER_WORD
== 32)
1555 val
= ((val
& 0xffffffff) ^ 0x80000000) - 0x80000000;
1556 return GEN_INT (val
);
1558 #if HOST_BITS_PER_WIDE_INT >= 64
1559 else if (BITS_PER_WORD
>= 64 && offset
== 0)
1561 val
= k
[! WORDS_BIG_ENDIAN
];
1562 val
= (((val
& 0xffffffff) ^ 0x80000000) - 0x80000000) << 32;
1563 val
|= (HOST_WIDE_INT
) k
[WORDS_BIG_ENDIAN
] & 0xffffffff;
1564 return GEN_INT (val
);
1567 else if (BITS_PER_WORD
== 16)
1569 val
= k
[offset
>> 1];
1570 if ((offset
& 1) == ! WORDS_BIG_ENDIAN
)
1572 val
= ((val
& 0xffff) ^ 0x8000) - 0x8000;
1573 return GEN_INT (val
);
1578 else if (HOST_BITS_PER_WIDE_INT
>= BITS_PER_WORD
1579 && GET_MODE_CLASS (mode
) == MODE_FLOAT
1580 && GET_MODE_BITSIZE (mode
) > 64
1581 && GET_CODE (op
) == CONST_DOUBLE
)
1586 REAL_VALUE_FROM_CONST_DOUBLE (rv
, op
);
1587 REAL_VALUE_TO_TARGET_LONG_DOUBLE (rv
, k
);
1589 if (BITS_PER_WORD
== 32)
1592 val
= ((val
& 0xffffffff) ^ 0x80000000) - 0x80000000;
1593 return GEN_INT (val
);
1595 #if HOST_BITS_PER_WIDE_INT >= 64
1596 else if (BITS_PER_WORD
>= 64 && offset
<= 1)
1598 val
= k
[offset
* 2 + ! WORDS_BIG_ENDIAN
];
1599 val
= (((val
& 0xffffffff) ^ 0x80000000) - 0x80000000) << 32;
1600 val
|= (HOST_WIDE_INT
) k
[offset
* 2 + WORDS_BIG_ENDIAN
] & 0xffffffff;
1601 return GEN_INT (val
);
1608 /* Single word float is a little harder, since single- and double-word
1609 values often do not have the same high-order bits. We have already
1610 verified that we want the only defined word of the single-word value. */
1611 if (GET_MODE_CLASS (mode
) == MODE_FLOAT
1612 && GET_MODE_BITSIZE (mode
) == 32
1613 && GET_CODE (op
) == CONST_DOUBLE
)
1618 REAL_VALUE_FROM_CONST_DOUBLE (rv
, op
);
1619 REAL_VALUE_TO_TARGET_SINGLE (rv
, l
);
1621 /* Sign extend from known 32-bit value to HOST_WIDE_INT. */
1623 val
= ((val
& 0xffffffff) ^ 0x80000000) - 0x80000000;
1625 if (BITS_PER_WORD
== 16)
1627 if ((offset
& 1) == ! WORDS_BIG_ENDIAN
)
1629 val
= ((val
& 0xffff) ^ 0x8000) - 0x8000;
1632 return GEN_INT (val
);
1635 /* The only remaining cases that we can handle are integers.
1636 Convert to proper endianness now since these cases need it.
1637 At this point, offset == 0 means the low-order word.
1639 We do not want to handle the case when BITS_PER_WORD <= HOST_BITS_PER_INT
1640 in general. However, if OP is (const_int 0), we can just return
1643 if (op
== const0_rtx
)
1646 if (GET_MODE_CLASS (mode
) != MODE_INT
1647 || (GET_CODE (op
) != CONST_INT
&& GET_CODE (op
) != CONST_DOUBLE
)
1648 || BITS_PER_WORD
> HOST_BITS_PER_WIDE_INT
)
1651 if (WORDS_BIG_ENDIAN
)
1652 offset
= GET_MODE_SIZE (mode
) / UNITS_PER_WORD
- 1 - offset
;
1654 /* Find out which word on the host machine this value is in and get
1655 it from the constant. */
1656 val
= (offset
/ size_ratio
== 0
1657 ? (GET_CODE (op
) == CONST_INT
? INTVAL (op
) : CONST_DOUBLE_LOW (op
))
1658 : (GET_CODE (op
) == CONST_INT
1659 ? (INTVAL (op
) < 0 ? ~0 : 0) : CONST_DOUBLE_HIGH (op
)));
1661 /* Get the value we want into the low bits of val. */
1662 if (BITS_PER_WORD
< HOST_BITS_PER_WIDE_INT
)
1663 val
= ((val
>> ((offset
% size_ratio
) * BITS_PER_WORD
)));
1665 val
= trunc_int_for_mode (val
, word_mode
);
1667 return GEN_INT (val
);
1670 /* Return subword OFFSET of operand OP.
1671 The word number, OFFSET, is interpreted as the word number starting
1672 at the low-order address. OFFSET 0 is the low-order word if not
1673 WORDS_BIG_ENDIAN, otherwise it is the high-order word.
1675 If we cannot extract the required word, we return zero. Otherwise,
1676 an rtx corresponding to the requested word will be returned.
1678 VALIDATE_ADDRESS is nonzero if the address should be validated. Before
1679 reload has completed, a valid address will always be returned. After
1680 reload, if a valid address cannot be returned, we return zero.
1682 If VALIDATE_ADDRESS is zero, we simply form the required address; validating
1683 it is the responsibility of the caller.
1685 MODE is the mode of OP in case it is a CONST_INT.
1687 ??? This is still rather broken for some cases. The problem for the
1688 moment is that all callers of this thing provide no 'goal mode' to
1689 tell us to work with. This exists because all callers were written
1690 in a word based SUBREG world.
1691 Now use of this function can be deprecated by simplify_subreg in most
1696 operand_subword (op
, offset
, validate_address
, mode
)
1698 unsigned int offset
;
1699 int validate_address
;
1700 enum machine_mode mode
;
1702 if (mode
== VOIDmode
)
1703 mode
= GET_MODE (op
);
1705 if (mode
== VOIDmode
)
1708 /* If OP is narrower than a word, fail. */
1710 && (GET_MODE_SIZE (mode
) < UNITS_PER_WORD
))
1713 /* If we want a word outside OP, return zero. */
1715 && (offset
+ 1) * UNITS_PER_WORD
> GET_MODE_SIZE (mode
))
1718 /* Form a new MEM at the requested address. */
1719 if (GET_CODE (op
) == MEM
)
1721 rtx
new = adjust_address_nv (op
, word_mode
, offset
* UNITS_PER_WORD
);
1723 if (! validate_address
)
1726 else if (reload_completed
)
1728 if (! strict_memory_address_p (word_mode
, XEXP (new, 0)))
1732 return replace_equiv_address (new, XEXP (new, 0));
1735 /* Rest can be handled by simplify_subreg. */
1736 return simplify_gen_subreg (word_mode
, op
, mode
, (offset
* UNITS_PER_WORD
));
1739 /* Similar to `operand_subword', but never return 0. If we can't extract
1740 the required subword, put OP into a register and try again. If that fails,
1741 abort. We always validate the address in this case.
1743 MODE is the mode of OP, in case it is CONST_INT. */
1746 operand_subword_force (op
, offset
, mode
)
1748 unsigned int offset
;
1749 enum machine_mode mode
;
1751 rtx result
= operand_subword (op
, offset
, 1, mode
);
1756 if (mode
!= BLKmode
&& mode
!= VOIDmode
)
1758 /* If this is a register which can not be accessed by words, copy it
1759 to a pseudo register. */
1760 if (GET_CODE (op
) == REG
)
1761 op
= copy_to_reg (op
);
1763 op
= force_reg (mode
, op
);
1766 result
= operand_subword (op
, offset
, 1, mode
);
1773 /* Given a compare instruction, swap the operands.
1774 A test instruction is changed into a compare of 0 against the operand. */
1777 reverse_comparison (insn
)
1780 rtx body
= PATTERN (insn
);
1783 if (GET_CODE (body
) == SET
)
1784 comp
= SET_SRC (body
);
1786 comp
= SET_SRC (XVECEXP (body
, 0, 0));
1788 if (GET_CODE (comp
) == COMPARE
)
1790 rtx op0
= XEXP (comp
, 0);
1791 rtx op1
= XEXP (comp
, 1);
1792 XEXP (comp
, 0) = op1
;
1793 XEXP (comp
, 1) = op0
;
1797 rtx
new = gen_rtx_COMPARE (VOIDmode
,
1798 CONST0_RTX (GET_MODE (comp
)), comp
);
1799 if (GET_CODE (body
) == SET
)
1800 SET_SRC (body
) = new;
1802 SET_SRC (XVECEXP (body
, 0, 0)) = new;
1806 /* Within a MEM_EXPR, we care about either (1) a component ref of a decl,
1807 or (2) a component ref of something variable. Represent the later with
1808 a NULL expression. */
1811 component_ref_for_mem_expr (ref
)
1814 tree inner
= TREE_OPERAND (ref
, 0);
1816 if (TREE_CODE (inner
) == COMPONENT_REF
)
1817 inner
= component_ref_for_mem_expr (inner
);
1820 tree placeholder_ptr
= 0;
1822 /* Now remove any conversions: they don't change what the underlying
1823 object is. Likewise for SAVE_EXPR. Also handle PLACEHOLDER_EXPR. */
1824 while (TREE_CODE (inner
) == NOP_EXPR
|| TREE_CODE (inner
) == CONVERT_EXPR
1825 || TREE_CODE (inner
) == NON_LVALUE_EXPR
1826 || TREE_CODE (inner
) == VIEW_CONVERT_EXPR
1827 || TREE_CODE (inner
) == SAVE_EXPR
1828 || TREE_CODE (inner
) == PLACEHOLDER_EXPR
)
1829 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
)
1830 inner
= find_placeholder (inner
, &placeholder_ptr
);
1832 inner
= TREE_OPERAND (inner
, 0);
1834 if (! DECL_P (inner
))
1838 if (inner
== TREE_OPERAND (ref
, 0))
1841 return build (COMPONENT_REF
, TREE_TYPE (ref
), inner
,
1842 TREE_OPERAND (ref
, 1));
1845 /* Given REF, a MEM, and T, either the type of X or the expression
1846 corresponding to REF, set the memory attributes. OBJECTP is nonzero
1847 if we are making a new object of this type. BITPOS is nonzero if
1848 there is an offset outstanding on T that will be applied later. */
1851 set_mem_attributes_minus_bitpos (ref
, t
, objectp
, bitpos
)
1855 HOST_WIDE_INT bitpos
;
1857 HOST_WIDE_INT alias
= MEM_ALIAS_SET (ref
);
1858 tree expr
= MEM_EXPR (ref
);
1859 rtx offset
= MEM_OFFSET (ref
);
1860 rtx size
= MEM_SIZE (ref
);
1861 unsigned int align
= MEM_ALIGN (ref
);
1862 HOST_WIDE_INT apply_bitpos
= 0;
1865 /* It can happen that type_for_mode was given a mode for which there
1866 is no language-level type. In which case it returns NULL, which
1871 type
= TYPE_P (t
) ? t
: TREE_TYPE (t
);
1873 /* If we have already set DECL_RTL = ref, get_alias_set will get the
1874 wrong answer, as it assumes that DECL_RTL already has the right alias
1875 info. Callers should not set DECL_RTL until after the call to
1876 set_mem_attributes. */
1877 if (DECL_P (t
) && ref
== DECL_RTL_IF_SET (t
))
1880 /* Get the alias set from the expression or type (perhaps using a
1881 front-end routine) and use it. */
1882 alias
= get_alias_set (t
);
1884 MEM_VOLATILE_P (ref
) = TYPE_VOLATILE (type
);
1885 MEM_IN_STRUCT_P (ref
) = AGGREGATE_TYPE_P (type
);
1886 RTX_UNCHANGING_P (ref
)
1887 |= ((lang_hooks
.honor_readonly
1888 && (TYPE_READONLY (type
) || TREE_READONLY (t
)))
1889 || (! TYPE_P (t
) && TREE_CONSTANT (t
)));
1891 /* If we are making an object of this type, or if this is a DECL, we know
1892 that it is a scalar if the type is not an aggregate. */
1893 if ((objectp
|| DECL_P (t
)) && ! AGGREGATE_TYPE_P (type
))
1894 MEM_SCALAR_P (ref
) = 1;
1896 /* We can set the alignment from the type if we are making an object,
1897 this is an INDIRECT_REF, or if TYPE_ALIGN_OK. */
1898 if (objectp
|| TREE_CODE (t
) == INDIRECT_REF
|| TYPE_ALIGN_OK (type
))
1899 align
= MAX (align
, TYPE_ALIGN (type
));
1901 /* If the size is known, we can set that. */
1902 if (TYPE_SIZE_UNIT (type
) && host_integerp (TYPE_SIZE_UNIT (type
), 1))
1903 size
= GEN_INT (tree_low_cst (TYPE_SIZE_UNIT (type
), 1));
1905 /* If T is not a type, we may be able to deduce some more information about
1909 maybe_set_unchanging (ref
, t
);
1910 if (TREE_THIS_VOLATILE (t
))
1911 MEM_VOLATILE_P (ref
) = 1;
1913 /* Now remove any conversions: they don't change what the underlying
1914 object is. Likewise for SAVE_EXPR. */
1915 while (TREE_CODE (t
) == NOP_EXPR
|| TREE_CODE (t
) == CONVERT_EXPR
1916 || TREE_CODE (t
) == NON_LVALUE_EXPR
1917 || TREE_CODE (t
) == VIEW_CONVERT_EXPR
1918 || TREE_CODE (t
) == SAVE_EXPR
)
1919 t
= TREE_OPERAND (t
, 0);
1921 /* If this expression can't be addressed (e.g., it contains a reference
1922 to a non-addressable field), show we don't change its alias set. */
1923 if (! can_address_p (t
))
1924 MEM_KEEP_ALIAS_SET_P (ref
) = 1;
1926 /* If this is a decl, set the attributes of the MEM from it. */
1930 offset
= const0_rtx
;
1931 apply_bitpos
= bitpos
;
1932 size
= (DECL_SIZE_UNIT (t
)
1933 && host_integerp (DECL_SIZE_UNIT (t
), 1)
1934 ? GEN_INT (tree_low_cst (DECL_SIZE_UNIT (t
), 1)) : 0);
1935 align
= DECL_ALIGN (t
);
1938 /* If this is a constant, we know the alignment. */
1939 else if (TREE_CODE_CLASS (TREE_CODE (t
)) == 'c')
1941 align
= TYPE_ALIGN (type
);
1942 #ifdef CONSTANT_ALIGNMENT
1943 align
= CONSTANT_ALIGNMENT (t
, align
);
1947 /* If this is a field reference and not a bit-field, record it. */
1948 /* ??? There is some information that can be gleened from bit-fields,
1949 such as the word offset in the structure that might be modified.
1950 But skip it for now. */
1951 else if (TREE_CODE (t
) == COMPONENT_REF
1952 && ! DECL_BIT_FIELD (TREE_OPERAND (t
, 1)))
1954 expr
= component_ref_for_mem_expr (t
);
1955 offset
= const0_rtx
;
1956 apply_bitpos
= bitpos
;
1957 /* ??? Any reason the field size would be different than
1958 the size we got from the type? */
1961 /* If this is an array reference, look for an outer field reference. */
1962 else if (TREE_CODE (t
) == ARRAY_REF
)
1964 tree off_tree
= size_zero_node
;
1968 tree index
= TREE_OPERAND (t
, 1);
1969 tree array
= TREE_OPERAND (t
, 0);
1970 tree domain
= TYPE_DOMAIN (TREE_TYPE (array
));
1971 tree low_bound
= (domain
? TYPE_MIN_VALUE (domain
) : 0);
1972 tree unit_size
= TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (array
)));
1974 /* We assume all arrays have sizes that are a multiple of a byte.
1975 First subtract the lower bound, if any, in the type of the
1976 index, then convert to sizetype and multiply by the size of the
1978 if (low_bound
!= 0 && ! integer_zerop (low_bound
))
1979 index
= fold (build (MINUS_EXPR
, TREE_TYPE (index
),
1982 /* If the index has a self-referential type, pass it to a
1983 WITH_RECORD_EXPR; if the component size is, pass our
1984 component to one. */
1985 if (! TREE_CONSTANT (index
)
1986 && contains_placeholder_p (index
))
1987 index
= build (WITH_RECORD_EXPR
, TREE_TYPE (index
), index
, t
);
1988 if (! TREE_CONSTANT (unit_size
)
1989 && contains_placeholder_p (unit_size
))
1990 unit_size
= build (WITH_RECORD_EXPR
, sizetype
,
1994 = fold (build (PLUS_EXPR
, sizetype
,
1995 fold (build (MULT_EXPR
, sizetype
,
1999 t
= TREE_OPERAND (t
, 0);
2001 while (TREE_CODE (t
) == ARRAY_REF
);
2007 if (host_integerp (off_tree
, 1))
2009 HOST_WIDE_INT ioff
= tree_low_cst (off_tree
, 1);
2010 HOST_WIDE_INT aoff
= (ioff
& -ioff
) * BITS_PER_UNIT
;
2011 align
= DECL_ALIGN (t
);
2012 if (aoff
&& (unsigned HOST_WIDE_INT
) aoff
< align
)
2014 offset
= GEN_INT (ioff
);
2015 apply_bitpos
= bitpos
;
2018 else if (TREE_CODE (t
) == COMPONENT_REF
)
2020 expr
= component_ref_for_mem_expr (t
);
2021 if (host_integerp (off_tree
, 1))
2023 offset
= GEN_INT (tree_low_cst (off_tree
, 1));
2024 apply_bitpos
= bitpos
;
2026 /* ??? Any reason the field size would be different than
2027 the size we got from the type? */
2029 else if (flag_argument_noalias
> 1
2030 && TREE_CODE (t
) == INDIRECT_REF
2031 && TREE_CODE (TREE_OPERAND (t
, 0)) == PARM_DECL
)
2038 /* If this is a Fortran indirect argument reference, record the
2040 else if (flag_argument_noalias
> 1
2041 && TREE_CODE (t
) == INDIRECT_REF
2042 && TREE_CODE (TREE_OPERAND (t
, 0)) == PARM_DECL
)
2049 /* If we modified OFFSET based on T, then subtract the outstanding
2050 bit position offset. Similarly, increase the size of the accessed
2051 object to contain the negative offset. */
2054 offset
= plus_constant (offset
, -(apply_bitpos
/ BITS_PER_UNIT
));
2056 size
= plus_constant (size
, apply_bitpos
/ BITS_PER_UNIT
);
2059 /* Now set the attributes we computed above. */
2061 = get_mem_attrs (alias
, expr
, offset
, size
, align
, GET_MODE (ref
));
2063 /* If this is already known to be a scalar or aggregate, we are done. */
2064 if (MEM_IN_STRUCT_P (ref
) || MEM_SCALAR_P (ref
))
2067 /* If it is a reference into an aggregate, this is part of an aggregate.
2068 Otherwise we don't know. */
2069 else if (TREE_CODE (t
) == COMPONENT_REF
|| TREE_CODE (t
) == ARRAY_REF
2070 || TREE_CODE (t
) == ARRAY_RANGE_REF
2071 || TREE_CODE (t
) == BIT_FIELD_REF
)
2072 MEM_IN_STRUCT_P (ref
) = 1;
2076 set_mem_attributes (ref
, t
, objectp
)
2081 set_mem_attributes_minus_bitpos (ref
, t
, objectp
, 0);
2084 /* Set the decl for MEM to DECL. */
2087 set_mem_attrs_from_reg (mem
, reg
)
2092 = get_mem_attrs (MEM_ALIAS_SET (mem
), REG_EXPR (reg
),
2093 GEN_INT (REG_OFFSET (reg
)),
2094 MEM_SIZE (mem
), MEM_ALIGN (mem
), GET_MODE (mem
));
2097 /* Set the alias set of MEM to SET. */
2100 set_mem_alias_set (mem
, set
)
2104 #ifdef ENABLE_CHECKING
2105 /* If the new and old alias sets don't conflict, something is wrong. */
2106 if (!alias_sets_conflict_p (set
, MEM_ALIAS_SET (mem
)))
2110 MEM_ATTRS (mem
) = get_mem_attrs (set
, MEM_EXPR (mem
), MEM_OFFSET (mem
),
2111 MEM_SIZE (mem
), MEM_ALIGN (mem
),
2115 /* Set the alignment of MEM to ALIGN bits. */
2118 set_mem_align (mem
, align
)
2122 MEM_ATTRS (mem
) = get_mem_attrs (MEM_ALIAS_SET (mem
), MEM_EXPR (mem
),
2123 MEM_OFFSET (mem
), MEM_SIZE (mem
), align
,
2127 /* Set the expr for MEM to EXPR. */
2130 set_mem_expr (mem
, expr
)
2135 = get_mem_attrs (MEM_ALIAS_SET (mem
), expr
, MEM_OFFSET (mem
),
2136 MEM_SIZE (mem
), MEM_ALIGN (mem
), GET_MODE (mem
));
2139 /* Set the offset of MEM to OFFSET. */
2142 set_mem_offset (mem
, offset
)
2145 MEM_ATTRS (mem
) = get_mem_attrs (MEM_ALIAS_SET (mem
), MEM_EXPR (mem
),
2146 offset
, MEM_SIZE (mem
), MEM_ALIGN (mem
),
2150 /* Set the size of MEM to SIZE. */
2153 set_mem_size (mem
, size
)
2156 MEM_ATTRS (mem
) = get_mem_attrs (MEM_ALIAS_SET (mem
), MEM_EXPR (mem
),
2157 MEM_OFFSET (mem
), size
, MEM_ALIGN (mem
),
2161 /* Return a memory reference like MEMREF, but with its mode changed to MODE
2162 and its address changed to ADDR. (VOIDmode means don't change the mode.
2163 NULL for ADDR means don't change the address.) VALIDATE is nonzero if the
2164 returned memory location is required to be valid. The memory
2165 attributes are not changed. */
2168 change_address_1 (memref
, mode
, addr
, validate
)
2170 enum machine_mode mode
;
2176 if (GET_CODE (memref
) != MEM
)
2178 if (mode
== VOIDmode
)
2179 mode
= GET_MODE (memref
);
2181 addr
= XEXP (memref
, 0);
2185 if (reload_in_progress
|| reload_completed
)
2187 if (! memory_address_p (mode
, addr
))
2191 addr
= memory_address (mode
, addr
);
2194 if (rtx_equal_p (addr
, XEXP (memref
, 0)) && mode
== GET_MODE (memref
))
2197 new = gen_rtx_MEM (mode
, addr
);
2198 MEM_COPY_ATTRIBUTES (new, memref
);
2202 /* Like change_address_1 with VALIDATE nonzero, but we are not saying in what
2203 way we are changing MEMREF, so we only preserve the alias set. */
2206 change_address (memref
, mode
, addr
)
2208 enum machine_mode mode
;
2211 rtx
new = change_address_1 (memref
, mode
, addr
, 1);
2212 enum machine_mode mmode
= GET_MODE (new);
2215 = get_mem_attrs (MEM_ALIAS_SET (memref
), 0, 0,
2216 mmode
== BLKmode
? 0 : GEN_INT (GET_MODE_SIZE (mmode
)),
2217 (mmode
== BLKmode
? BITS_PER_UNIT
2218 : GET_MODE_ALIGNMENT (mmode
)),
2224 /* Return a memory reference like MEMREF, but with its mode changed
2225 to MODE and its address offset by OFFSET bytes. If VALIDATE is
2226 nonzero, the memory address is forced to be valid.
2227 If ADJUST is zero, OFFSET is only used to update MEM_ATTRS
2228 and caller is responsible for adjusting MEMREF base register. */
2231 adjust_address_1 (memref
, mode
, offset
, validate
, adjust
)
2233 enum machine_mode mode
;
2234 HOST_WIDE_INT offset
;
2235 int validate
, adjust
;
2237 rtx addr
= XEXP (memref
, 0);
2239 rtx memoffset
= MEM_OFFSET (memref
);
2241 unsigned int memalign
= MEM_ALIGN (memref
);
2243 /* ??? Prefer to create garbage instead of creating shared rtl.
2244 This may happen even if offset is nonzero -- consider
2245 (plus (plus reg reg) const_int) -- so do this always. */
2246 addr
= copy_rtx (addr
);
2250 /* If MEMREF is a LO_SUM and the offset is within the alignment of the
2251 object, we can merge it into the LO_SUM. */
2252 if (GET_MODE (memref
) != BLKmode
&& GET_CODE (addr
) == LO_SUM
2254 && (unsigned HOST_WIDE_INT
) offset
2255 < GET_MODE_ALIGNMENT (GET_MODE (memref
)) / BITS_PER_UNIT
)
2256 addr
= gen_rtx_LO_SUM (Pmode
, XEXP (addr
, 0),
2257 plus_constant (XEXP (addr
, 1), offset
));
2259 addr
= plus_constant (addr
, offset
);
2262 new = change_address_1 (memref
, mode
, addr
, validate
);
2264 /* Compute the new values of the memory attributes due to this adjustment.
2265 We add the offsets and update the alignment. */
2267 memoffset
= GEN_INT (offset
+ INTVAL (memoffset
));
2269 /* Compute the new alignment by taking the MIN of the alignment and the
2270 lowest-order set bit in OFFSET, but don't change the alignment if OFFSET
2275 (unsigned HOST_WIDE_INT
) (offset
& -offset
) * BITS_PER_UNIT
);
2277 /* We can compute the size in a number of ways. */
2278 if (GET_MODE (new) != BLKmode
)
2279 size
= GEN_INT (GET_MODE_SIZE (GET_MODE (new)));
2280 else if (MEM_SIZE (memref
))
2281 size
= plus_constant (MEM_SIZE (memref
), -offset
);
2283 MEM_ATTRS (new) = get_mem_attrs (MEM_ALIAS_SET (memref
), MEM_EXPR (memref
),
2284 memoffset
, size
, memalign
, GET_MODE (new));
2286 /* At some point, we should validate that this offset is within the object,
2287 if all the appropriate values are known. */
2291 /* Return a memory reference like MEMREF, but with its mode changed
2292 to MODE and its address changed to ADDR, which is assumed to be
2293 MEMREF offseted by OFFSET bytes. If VALIDATE is
2294 nonzero, the memory address is forced to be valid. */
2297 adjust_automodify_address_1 (memref
, mode
, addr
, offset
, validate
)
2299 enum machine_mode mode
;
2301 HOST_WIDE_INT offset
;
2304 memref
= change_address_1 (memref
, VOIDmode
, addr
, validate
);
2305 return adjust_address_1 (memref
, mode
, offset
, validate
, 0);
2308 /* Return a memory reference like MEMREF, but whose address is changed by
2309 adding OFFSET, an RTX, to it. POW2 is the highest power of two factor
2310 known to be in OFFSET (possibly 1). */
2313 offset_address (memref
, offset
, pow2
)
2318 rtx
new, addr
= XEXP (memref
, 0);
2320 new = simplify_gen_binary (PLUS
, Pmode
, addr
, offset
);
2322 /* At this point we don't know _why_ the address is invalid. It
2323 could have secondary memory refereces, multiplies or anything.
2325 However, if we did go and rearrange things, we can wind up not
2326 being able to recognize the magic around pic_offset_table_rtx.
2327 This stuff is fragile, and is yet another example of why it is
2328 bad to expose PIC machinery too early. */
2329 if (! memory_address_p (GET_MODE (memref
), new)
2330 && GET_CODE (addr
) == PLUS
2331 && XEXP (addr
, 0) == pic_offset_table_rtx
)
2333 addr
= force_reg (GET_MODE (addr
), addr
);
2334 new = simplify_gen_binary (PLUS
, Pmode
, addr
, offset
);
2337 update_temp_slot_address (XEXP (memref
, 0), new);
2338 new = change_address_1 (memref
, VOIDmode
, new, 1);
2340 /* Update the alignment to reflect the offset. Reset the offset, which
2343 = get_mem_attrs (MEM_ALIAS_SET (memref
), MEM_EXPR (memref
), 0, 0,
2344 MIN (MEM_ALIGN (memref
),
2345 (unsigned HOST_WIDE_INT
) pow2
* BITS_PER_UNIT
),
2350 /* Return a memory reference like MEMREF, but with its address changed to
2351 ADDR. The caller is asserting that the actual piece of memory pointed
2352 to is the same, just the form of the address is being changed, such as
2353 by putting something into a register. */
2356 replace_equiv_address (memref
, addr
)
2360 /* change_address_1 copies the memory attribute structure without change
2361 and that's exactly what we want here. */
2362 update_temp_slot_address (XEXP (memref
, 0), addr
);
2363 return change_address_1 (memref
, VOIDmode
, addr
, 1);
2366 /* Likewise, but the reference is not required to be valid. */
2369 replace_equiv_address_nv (memref
, addr
)
2373 return change_address_1 (memref
, VOIDmode
, addr
, 0);
2376 /* Return a memory reference like MEMREF, but with its mode widened to
2377 MODE and offset by OFFSET. This would be used by targets that e.g.
2378 cannot issue QImode memory operations and have to use SImode memory
2379 operations plus masking logic. */
2382 widen_memory_access (memref
, mode
, offset
)
2384 enum machine_mode mode
;
2385 HOST_WIDE_INT offset
;
2387 rtx
new = adjust_address_1 (memref
, mode
, offset
, 1, 1);
2388 tree expr
= MEM_EXPR (new);
2389 rtx memoffset
= MEM_OFFSET (new);
2390 unsigned int size
= GET_MODE_SIZE (mode
);
2392 /* If we don't know what offset we were at within the expression, then
2393 we can't know if we've overstepped the bounds. */
2399 if (TREE_CODE (expr
) == COMPONENT_REF
)
2401 tree field
= TREE_OPERAND (expr
, 1);
2403 if (! DECL_SIZE_UNIT (field
))
2409 /* Is the field at least as large as the access? If so, ok,
2410 otherwise strip back to the containing structure. */
2411 if (TREE_CODE (DECL_SIZE_UNIT (field
)) == INTEGER_CST
2412 && compare_tree_int (DECL_SIZE_UNIT (field
), size
) >= 0
2413 && INTVAL (memoffset
) >= 0)
2416 if (! host_integerp (DECL_FIELD_OFFSET (field
), 1))
2422 expr
= TREE_OPERAND (expr
, 0);
2423 memoffset
= (GEN_INT (INTVAL (memoffset
)
2424 + tree_low_cst (DECL_FIELD_OFFSET (field
), 1)
2425 + (tree_low_cst (DECL_FIELD_BIT_OFFSET (field
), 1)
2428 /* Similarly for the decl. */
2429 else if (DECL_P (expr
)
2430 && DECL_SIZE_UNIT (expr
)
2431 && TREE_CODE (DECL_SIZE_UNIT (expr
)) == INTEGER_CST
2432 && compare_tree_int (DECL_SIZE_UNIT (expr
), size
) >= 0
2433 && (! memoffset
|| INTVAL (memoffset
) >= 0))
2437 /* The widened memory access overflows the expression, which means
2438 that it could alias another expression. Zap it. */
2445 memoffset
= NULL_RTX
;
2447 /* The widened memory may alias other stuff, so zap the alias set. */
2448 /* ??? Maybe use get_alias_set on any remaining expression. */
2450 MEM_ATTRS (new) = get_mem_attrs (0, expr
, memoffset
, GEN_INT (size
),
2451 MEM_ALIGN (new), mode
);
2456 /* Return a newly created CODE_LABEL rtx with a unique label number. */
2461 return gen_rtx_CODE_LABEL (VOIDmode
, 0, NULL_RTX
, NULL_RTX
,
2462 NULL
, label_num
++, NULL
);
2465 /* For procedure integration. */
2467 /* Install new pointers to the first and last insns in the chain.
2468 Also, set cur_insn_uid to one higher than the last in use.
2469 Used for an inline-procedure after copying the insn chain. */
2472 set_new_first_and_last_insn (first
, last
)
2481 for (insn
= first
; insn
; insn
= NEXT_INSN (insn
))
2482 cur_insn_uid
= MAX (cur_insn_uid
, INSN_UID (insn
));
2487 /* Set the range of label numbers found in the current function.
2488 This is used when belatedly compiling an inline function. */
2491 set_new_first_and_last_label_num (first
, last
)
2494 base_label_num
= label_num
;
2495 first_label_num
= first
;
2496 last_label_num
= last
;
2499 /* Set the last label number found in the current function.
2500 This is used when belatedly compiling an inline function. */
2503 set_new_last_label_num (last
)
2506 base_label_num
= label_num
;
2507 last_label_num
= last
;
2510 /* Restore all variables describing the current status from the structure *P.
2511 This is used after a nested function. */
2514 restore_emit_status (p
)
2515 struct function
*p ATTRIBUTE_UNUSED
;
2520 /* Go through all the RTL insn bodies and copy any invalid shared
2521 structure. This routine should only be called once. */
2524 unshare_all_rtl (fndecl
, insn
)
2530 /* Make sure that virtual parameters are not shared. */
2531 for (decl
= DECL_ARGUMENTS (fndecl
); decl
; decl
= TREE_CHAIN (decl
))
2532 SET_DECL_RTL (decl
, copy_rtx_if_shared (DECL_RTL (decl
)));
2534 /* Make sure that virtual stack slots are not shared. */
2535 unshare_all_decls (DECL_INITIAL (fndecl
));
2537 /* Unshare just about everything else. */
2538 unshare_all_rtl_1 (insn
);
2540 /* Make sure the addresses of stack slots found outside the insn chain
2541 (such as, in DECL_RTL of a variable) are not shared
2542 with the insn chain.
2544 This special care is necessary when the stack slot MEM does not
2545 actually appear in the insn chain. If it does appear, its address
2546 is unshared from all else at that point. */
2547 stack_slot_list
= copy_rtx_if_shared (stack_slot_list
);
2550 /* Go through all the RTL insn bodies and copy any invalid shared
2551 structure, again. This is a fairly expensive thing to do so it
2552 should be done sparingly. */
2555 unshare_all_rtl_again (insn
)
2561 for (p
= insn
; p
; p
= NEXT_INSN (p
))
2564 reset_used_flags (PATTERN (p
));
2565 reset_used_flags (REG_NOTES (p
));
2566 reset_used_flags (LOG_LINKS (p
));
2569 /* Make sure that virtual stack slots are not shared. */
2570 reset_used_decls (DECL_INITIAL (cfun
->decl
));
2572 /* Make sure that virtual parameters are not shared. */
2573 for (decl
= DECL_ARGUMENTS (cfun
->decl
); decl
; decl
= TREE_CHAIN (decl
))
2574 reset_used_flags (DECL_RTL (decl
));
2576 reset_used_flags (stack_slot_list
);
2578 unshare_all_rtl (cfun
->decl
, insn
);
2581 /* Go through all the RTL insn bodies and copy any invalid shared structure.
2582 Assumes the mark bits are cleared at entry. */
2585 unshare_all_rtl_1 (insn
)
2588 for (; insn
; insn
= NEXT_INSN (insn
))
2591 PATTERN (insn
) = copy_rtx_if_shared (PATTERN (insn
));
2592 REG_NOTES (insn
) = copy_rtx_if_shared (REG_NOTES (insn
));
2593 LOG_LINKS (insn
) = copy_rtx_if_shared (LOG_LINKS (insn
));
2597 /* Go through all virtual stack slots of a function and copy any
2598 shared structure. */
2600 unshare_all_decls (blk
)
2605 /* Copy shared decls. */
2606 for (t
= BLOCK_VARS (blk
); t
; t
= TREE_CHAIN (t
))
2607 if (DECL_RTL_SET_P (t
))
2608 SET_DECL_RTL (t
, copy_rtx_if_shared (DECL_RTL (t
)));
2610 /* Now process sub-blocks. */
2611 for (t
= BLOCK_SUBBLOCKS (blk
); t
; t
= TREE_CHAIN (t
))
2612 unshare_all_decls (t
);
2615 /* Go through all virtual stack slots of a function and mark them as
2618 reset_used_decls (blk
)
2624 for (t
= BLOCK_VARS (blk
); t
; t
= TREE_CHAIN (t
))
2625 if (DECL_RTL_SET_P (t
))
2626 reset_used_flags (DECL_RTL (t
));
2628 /* Now process sub-blocks. */
2629 for (t
= BLOCK_SUBBLOCKS (blk
); t
; t
= TREE_CHAIN (t
))
2630 reset_used_decls (t
);
2633 /* Similar to `copy_rtx' except that if MAY_SHARE is present, it is
2634 placed in the result directly, rather than being copied. MAY_SHARE is
2635 either a MEM of an EXPR_LIST of MEMs. */
2638 copy_most_rtx (orig
, may_share
)
2645 const char *format_ptr
;
2647 if (orig
== may_share
2648 || (GET_CODE (may_share
) == EXPR_LIST
2649 && in_expr_list_p (may_share
, orig
)))
2652 code
= GET_CODE (orig
);
2670 copy
= rtx_alloc (code
);
2671 PUT_MODE (copy
, GET_MODE (orig
));
2672 RTX_FLAG (copy
, in_struct
) = RTX_FLAG (orig
, in_struct
);
2673 RTX_FLAG (copy
, volatil
) = RTX_FLAG (orig
, volatil
);
2674 RTX_FLAG (copy
, unchanging
) = RTX_FLAG (orig
, unchanging
);
2675 RTX_FLAG (copy
, integrated
) = RTX_FLAG (orig
, integrated
);
2676 RTX_FLAG (copy
, frame_related
) = RTX_FLAG (orig
, frame_related
);
2678 format_ptr
= GET_RTX_FORMAT (GET_CODE (copy
));
2680 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (copy
)); i
++)
2682 switch (*format_ptr
++)
2685 XEXP (copy
, i
) = XEXP (orig
, i
);
2686 if (XEXP (orig
, i
) != NULL
&& XEXP (orig
, i
) != may_share
)
2687 XEXP (copy
, i
) = copy_most_rtx (XEXP (orig
, i
), may_share
);
2691 XEXP (copy
, i
) = XEXP (orig
, i
);
2696 XVEC (copy
, i
) = XVEC (orig
, i
);
2697 if (XVEC (orig
, i
) != NULL
)
2699 XVEC (copy
, i
) = rtvec_alloc (XVECLEN (orig
, i
));
2700 for (j
= 0; j
< XVECLEN (copy
, i
); j
++)
2701 XVECEXP (copy
, i
, j
)
2702 = copy_most_rtx (XVECEXP (orig
, i
, j
), may_share
);
2707 XWINT (copy
, i
) = XWINT (orig
, i
);
2712 XINT (copy
, i
) = XINT (orig
, i
);
2716 XTREE (copy
, i
) = XTREE (orig
, i
);
2721 XSTR (copy
, i
) = XSTR (orig
, i
);
2725 /* Copy this through the wide int field; that's safest. */
2726 X0WINT (copy
, i
) = X0WINT (orig
, i
);
2736 /* Mark ORIG as in use, and return a copy of it if it was already in use.
2737 Recursively does the same for subexpressions. */
2740 copy_rtx_if_shared (orig
)
2746 const char *format_ptr
;
2752 code
= GET_CODE (x
);
2754 /* These types may be freely shared. */
2768 /* SCRATCH must be shared because they represent distinct values. */
2772 /* CONST can be shared if it contains a SYMBOL_REF. If it contains
2773 a LABEL_REF, it isn't sharable. */
2774 if (GET_CODE (XEXP (x
, 0)) == PLUS
2775 && GET_CODE (XEXP (XEXP (x
, 0), 0)) == SYMBOL_REF
2776 && GET_CODE (XEXP (XEXP (x
, 0), 1)) == CONST_INT
)
2785 /* The chain of insns is not being copied. */
2789 /* A MEM is allowed to be shared if its address is constant.
2791 We used to allow sharing of MEMs which referenced
2792 virtual_stack_vars_rtx or virtual_incoming_args_rtx, but
2793 that can lose. instantiate_virtual_regs will not unshare
2794 the MEMs, and combine may change the structure of the address
2795 because it looks safe and profitable in one context, but
2796 in some other context it creates unrecognizable RTL. */
2797 if (CONSTANT_ADDRESS_P (XEXP (x
, 0)))
2806 /* This rtx may not be shared. If it has already been seen,
2807 replace it with a copy of itself. */
2809 if (RTX_FLAG (x
, used
))
2813 copy
= rtx_alloc (code
);
2815 (sizeof (*copy
) - sizeof (copy
->fld
)
2816 + sizeof (copy
->fld
[0]) * GET_RTX_LENGTH (code
)));
2820 RTX_FLAG (x
, used
) = 1;
2822 /* Now scan the subexpressions recursively.
2823 We can store any replaced subexpressions directly into X
2824 since we know X is not shared! Any vectors in X
2825 must be copied if X was copied. */
2827 format_ptr
= GET_RTX_FORMAT (code
);
2829 for (i
= 0; i
< GET_RTX_LENGTH (code
); i
++)
2831 switch (*format_ptr
++)
2834 XEXP (x
, i
) = copy_rtx_if_shared (XEXP (x
, i
));
2838 if (XVEC (x
, i
) != NULL
)
2841 int len
= XVECLEN (x
, i
);
2843 if (copied
&& len
> 0)
2844 XVEC (x
, i
) = gen_rtvec_v (len
, XVEC (x
, i
)->elem
);
2845 for (j
= 0; j
< len
; j
++)
2846 XVECEXP (x
, i
, j
) = copy_rtx_if_shared (XVECEXP (x
, i
, j
));
2854 /* Clear all the USED bits in X to allow copy_rtx_if_shared to be used
2855 to look for shared sub-parts. */
2858 reset_used_flags (x
)
2863 const char *format_ptr
;
2868 code
= GET_CODE (x
);
2870 /* These types may be freely shared so we needn't do any resetting
2892 /* The chain of insns is not being copied. */
2899 RTX_FLAG (x
, used
) = 0;
2901 format_ptr
= GET_RTX_FORMAT (code
);
2902 for (i
= 0; i
< GET_RTX_LENGTH (code
); i
++)
2904 switch (*format_ptr
++)
2907 reset_used_flags (XEXP (x
, i
));
2911 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
2912 reset_used_flags (XVECEXP (x
, i
, j
));
2918 /* Copy X if necessary so that it won't be altered by changes in OTHER.
2919 Return X or the rtx for the pseudo reg the value of X was copied into.
2920 OTHER must be valid as a SET_DEST. */
2923 make_safe_from (x
, other
)
2927 switch (GET_CODE (other
))
2930 other
= SUBREG_REG (other
);
2932 case STRICT_LOW_PART
:
2935 other
= XEXP (other
, 0);
2941 if ((GET_CODE (other
) == MEM
2943 && GET_CODE (x
) != REG
2944 && GET_CODE (x
) != SUBREG
)
2945 || (GET_CODE (other
) == REG
2946 && (REGNO (other
) < FIRST_PSEUDO_REGISTER
2947 || reg_mentioned_p (other
, x
))))
2949 rtx temp
= gen_reg_rtx (GET_MODE (x
));
2950 emit_move_insn (temp
, x
);
2956 /* Emission of insns (adding them to the doubly-linked list). */
2958 /* Return the first insn of the current sequence or current function. */
2966 /* Specify a new insn as the first in the chain. */
2969 set_first_insn (insn
)
2972 if (PREV_INSN (insn
) != 0)
2977 /* Return the last insn emitted in current sequence or current function. */
2985 /* Specify a new insn as the last in the chain. */
2988 set_last_insn (insn
)
2991 if (NEXT_INSN (insn
) != 0)
2996 /* Return the last insn emitted, even if it is in a sequence now pushed. */
2999 get_last_insn_anywhere ()
3001 struct sequence_stack
*stack
;
3004 for (stack
= seq_stack
; stack
; stack
= stack
->next
)
3005 if (stack
->last
!= 0)
3010 /* Return the first nonnote insn emitted in current sequence or current
3011 function. This routine looks inside SEQUENCEs. */
3014 get_first_nonnote_insn ()
3016 rtx insn
= first_insn
;
3020 insn
= next_insn (insn
);
3021 if (insn
== 0 || GET_CODE (insn
) != NOTE
)
3028 /* Return the last nonnote insn emitted in current sequence or current
3029 function. This routine looks inside SEQUENCEs. */
3032 get_last_nonnote_insn ()
3034 rtx insn
= last_insn
;
3038 insn
= previous_insn (insn
);
3039 if (insn
== 0 || GET_CODE (insn
) != NOTE
)
3046 /* Return a number larger than any instruction's uid in this function. */
3051 return cur_insn_uid
;
3054 /* Renumber instructions so that no instruction UIDs are wasted. */
3057 renumber_insns (stream
)
3062 /* If we're not supposed to renumber instructions, don't. */
3063 if (!flag_renumber_insns
)
3066 /* If there aren't that many instructions, then it's not really
3067 worth renumbering them. */
3068 if (flag_renumber_insns
== 1 && get_max_uid () < 25000)
3073 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
3076 fprintf (stream
, "Renumbering insn %d to %d\n",
3077 INSN_UID (insn
), cur_insn_uid
);
3078 INSN_UID (insn
) = cur_insn_uid
++;
3082 /* Return the next insn. If it is a SEQUENCE, return the first insn
3091 insn
= NEXT_INSN (insn
);
3092 if (insn
&& GET_CODE (insn
) == INSN
3093 && GET_CODE (PATTERN (insn
)) == SEQUENCE
)
3094 insn
= XVECEXP (PATTERN (insn
), 0, 0);
3100 /* Return the previous insn. If it is a SEQUENCE, return the last insn
3104 previous_insn (insn
)
3109 insn
= PREV_INSN (insn
);
3110 if (insn
&& GET_CODE (insn
) == INSN
3111 && GET_CODE (PATTERN (insn
)) == SEQUENCE
)
3112 insn
= XVECEXP (PATTERN (insn
), 0, XVECLEN (PATTERN (insn
), 0) - 1);
3118 /* Return the next insn after INSN that is not a NOTE. This routine does not
3119 look inside SEQUENCEs. */
3122 next_nonnote_insn (insn
)
3127 insn
= NEXT_INSN (insn
);
3128 if (insn
== 0 || GET_CODE (insn
) != NOTE
)
3135 /* Return the previous insn before INSN that is not a NOTE. This routine does
3136 not look inside SEQUENCEs. */
3139 prev_nonnote_insn (insn
)
3144 insn
= PREV_INSN (insn
);
3145 if (insn
== 0 || GET_CODE (insn
) != NOTE
)
3152 /* Return the next INSN, CALL_INSN or JUMP_INSN after INSN;
3153 or 0, if there is none. This routine does not look inside
3157 next_real_insn (insn
)
3162 insn
= NEXT_INSN (insn
);
3163 if (insn
== 0 || GET_CODE (insn
) == INSN
3164 || GET_CODE (insn
) == CALL_INSN
|| GET_CODE (insn
) == JUMP_INSN
)
3171 /* Return the last INSN, CALL_INSN or JUMP_INSN before INSN;
3172 or 0, if there is none. This routine does not look inside
3176 prev_real_insn (insn
)
3181 insn
= PREV_INSN (insn
);
3182 if (insn
== 0 || GET_CODE (insn
) == INSN
|| GET_CODE (insn
) == CALL_INSN
3183 || GET_CODE (insn
) == JUMP_INSN
)
3190 /* Find the next insn after INSN that really does something. This routine
3191 does not look inside SEQUENCEs. Until reload has completed, this is the
3192 same as next_real_insn. */
3195 active_insn_p (insn
)
3198 return (GET_CODE (insn
) == CALL_INSN
|| GET_CODE (insn
) == JUMP_INSN
3199 || (GET_CODE (insn
) == INSN
3200 && (! reload_completed
3201 || (GET_CODE (PATTERN (insn
)) != USE
3202 && GET_CODE (PATTERN (insn
)) != CLOBBER
))));
3206 next_active_insn (insn
)
3211 insn
= NEXT_INSN (insn
);
3212 if (insn
== 0 || active_insn_p (insn
))
3219 /* Find the last insn before INSN that really does something. This routine
3220 does not look inside SEQUENCEs. Until reload has completed, this is the
3221 same as prev_real_insn. */
3224 prev_active_insn (insn
)
3229 insn
= PREV_INSN (insn
);
3230 if (insn
== 0 || active_insn_p (insn
))
3237 /* Return the next CODE_LABEL after the insn INSN, or 0 if there is none. */
3245 insn
= NEXT_INSN (insn
);
3246 if (insn
== 0 || GET_CODE (insn
) == CODE_LABEL
)
3253 /* Return the last CODE_LABEL before the insn INSN, or 0 if there is none. */
3261 insn
= PREV_INSN (insn
);
3262 if (insn
== 0 || GET_CODE (insn
) == CODE_LABEL
)
3270 /* INSN uses CC0 and is being moved into a delay slot. Set up REG_CC_SETTER
3271 and REG_CC_USER notes so we can find it. */
3274 link_cc0_insns (insn
)
3277 rtx user
= next_nonnote_insn (insn
);
3279 if (GET_CODE (user
) == INSN
&& GET_CODE (PATTERN (user
)) == SEQUENCE
)
3280 user
= XVECEXP (PATTERN (user
), 0, 0);
3282 REG_NOTES (user
) = gen_rtx_INSN_LIST (REG_CC_SETTER
, insn
,
3284 REG_NOTES (insn
) = gen_rtx_INSN_LIST (REG_CC_USER
, user
, REG_NOTES (insn
));
3287 /* Return the next insn that uses CC0 after INSN, which is assumed to
3288 set it. This is the inverse of prev_cc0_setter (i.e., prev_cc0_setter
3289 applied to the result of this function should yield INSN).
3291 Normally, this is simply the next insn. However, if a REG_CC_USER note
3292 is present, it contains the insn that uses CC0.
3294 Return 0 if we can't find the insn. */
3297 next_cc0_user (insn
)
3300 rtx note
= find_reg_note (insn
, REG_CC_USER
, NULL_RTX
);
3303 return XEXP (note
, 0);
3305 insn
= next_nonnote_insn (insn
);
3306 if (insn
&& GET_CODE (insn
) == INSN
&& GET_CODE (PATTERN (insn
)) == SEQUENCE
)
3307 insn
= XVECEXP (PATTERN (insn
), 0, 0);
3309 if (insn
&& INSN_P (insn
) && reg_mentioned_p (cc0_rtx
, PATTERN (insn
)))
3315 /* Find the insn that set CC0 for INSN. Unless INSN has a REG_CC_SETTER
3316 note, it is the previous insn. */
3319 prev_cc0_setter (insn
)
3322 rtx note
= find_reg_note (insn
, REG_CC_SETTER
, NULL_RTX
);
3325 return XEXP (note
, 0);
3327 insn
= prev_nonnote_insn (insn
);
3328 if (! sets_cc0_p (PATTERN (insn
)))
3335 /* Increment the label uses for all labels present in rtx. */
3338 mark_label_nuses (x
)
3345 code
= GET_CODE (x
);
3346 if (code
== LABEL_REF
)
3347 LABEL_NUSES (XEXP (x
, 0))++;
3349 fmt
= GET_RTX_FORMAT (code
);
3350 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
3353 mark_label_nuses (XEXP (x
, i
));
3354 else if (fmt
[i
] == 'E')
3355 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
3356 mark_label_nuses (XVECEXP (x
, i
, j
));
3361 /* Try splitting insns that can be split for better scheduling.
3362 PAT is the pattern which might split.
3363 TRIAL is the insn providing PAT.
3364 LAST is nonzero if we should return the last insn of the sequence produced.
3366 If this routine succeeds in splitting, it returns the first or last
3367 replacement insn depending on the value of LAST. Otherwise, it
3368 returns TRIAL. If the insn to be returned can be split, it will be. */
3371 try_split (pat
, trial
, last
)
3375 rtx before
= PREV_INSN (trial
);
3376 rtx after
= NEXT_INSN (trial
);
3377 int has_barrier
= 0;
3381 rtx insn_last
, insn
;
3384 if (any_condjump_p (trial
)
3385 && (note
= find_reg_note (trial
, REG_BR_PROB
, 0)))
3386 split_branch_probability
= INTVAL (XEXP (note
, 0));
3387 probability
= split_branch_probability
;
3389 seq
= split_insns (pat
, trial
);
3391 split_branch_probability
= -1;
3393 /* If we are splitting a JUMP_INSN, it might be followed by a BARRIER.
3394 We may need to handle this specially. */
3395 if (after
&& GET_CODE (after
) == BARRIER
)
3398 after
= NEXT_INSN (after
);
3404 /* Avoid infinite loop if any insn of the result matches
3405 the original pattern. */
3409 if (INSN_P (insn_last
)
3410 && rtx_equal_p (PATTERN (insn_last
), pat
))
3412 if (!NEXT_INSN (insn_last
))
3414 insn_last
= NEXT_INSN (insn_last
);
3418 for (insn
= insn_last
; insn
; insn
= PREV_INSN (insn
))
3420 if (GET_CODE (insn
) == JUMP_INSN
)
3422 mark_jump_label (PATTERN (insn
), insn
, 0);
3424 if (probability
!= -1
3425 && any_condjump_p (insn
)
3426 && !find_reg_note (insn
, REG_BR_PROB
, 0))
3428 /* We can preserve the REG_BR_PROB notes only if exactly
3429 one jump is created, otherwise the machine description
3430 is responsible for this step using
3431 split_branch_probability variable. */
3435 = gen_rtx_EXPR_LIST (REG_BR_PROB
,
3436 GEN_INT (probability
),
3442 /* If we are splitting a CALL_INSN, look for the CALL_INSN
3443 in SEQ and copy our CALL_INSN_FUNCTION_USAGE to it. */
3444 if (GET_CODE (trial
) == CALL_INSN
)
3446 for (insn
= insn_last
; insn
; insn
= PREV_INSN (insn
))
3447 if (GET_CODE (insn
) == CALL_INSN
)
3449 CALL_INSN_FUNCTION_USAGE (insn
)
3450 = CALL_INSN_FUNCTION_USAGE (trial
);
3451 SIBLING_CALL_P (insn
) = SIBLING_CALL_P (trial
);
3455 /* Copy notes, particularly those related to the CFG. */
3456 for (note
= REG_NOTES (trial
); note
; note
= XEXP (note
, 1))
3458 switch (REG_NOTE_KIND (note
))
3462 while (insn
!= NULL_RTX
)
3464 if (GET_CODE (insn
) == CALL_INSN
3465 || (flag_non_call_exceptions
3466 && may_trap_p (PATTERN (insn
))))
3468 = gen_rtx_EXPR_LIST (REG_EH_REGION
,
3471 insn
= PREV_INSN (insn
);
3477 case REG_ALWAYS_RETURN
:
3479 while (insn
!= NULL_RTX
)
3481 if (GET_CODE (insn
) == CALL_INSN
)
3483 = gen_rtx_EXPR_LIST (REG_NOTE_KIND (note
),
3486 insn
= PREV_INSN (insn
);
3490 case REG_NON_LOCAL_GOTO
:
3492 while (insn
!= NULL_RTX
)
3494 if (GET_CODE (insn
) == JUMP_INSN
)
3496 = gen_rtx_EXPR_LIST (REG_NOTE_KIND (note
),
3499 insn
= PREV_INSN (insn
);
3508 /* If there are LABELS inside the split insns increment the
3509 usage count so we don't delete the label. */
3510 if (GET_CODE (trial
) == INSN
)
3513 while (insn
!= NULL_RTX
)
3515 if (GET_CODE (insn
) == INSN
)
3516 mark_label_nuses (PATTERN (insn
));
3518 insn
= PREV_INSN (insn
);
3522 tem
= emit_insn_after_scope (seq
, trial
, INSN_SCOPE (trial
));
3524 delete_insn (trial
);
3526 emit_barrier_after (tem
);
3528 /* Recursively call try_split for each new insn created; by the
3529 time control returns here that insn will be fully split, so
3530 set LAST and continue from the insn after the one returned.
3531 We can't use next_active_insn here since AFTER may be a note.
3532 Ignore deleted insns, which can be occur if not optimizing. */
3533 for (tem
= NEXT_INSN (before
); tem
!= after
; tem
= NEXT_INSN (tem
))
3534 if (! INSN_DELETED_P (tem
) && INSN_P (tem
))
3535 tem
= try_split (PATTERN (tem
), tem
, 1);
3537 /* Return either the first or the last insn, depending on which was
3540 ? (after
? PREV_INSN (after
) : last_insn
)
3541 : NEXT_INSN (before
);
3544 /* Make and return an INSN rtx, initializing all its slots.
3545 Store PATTERN in the pattern slots. */
3548 make_insn_raw (pattern
)
3553 insn
= rtx_alloc (INSN
);
3555 INSN_UID (insn
) = cur_insn_uid
++;
3556 PATTERN (insn
) = pattern
;
3557 INSN_CODE (insn
) = -1;
3558 LOG_LINKS (insn
) = NULL
;
3559 REG_NOTES (insn
) = NULL
;
3560 INSN_SCOPE (insn
) = NULL
;
3561 BLOCK_FOR_INSN (insn
) = NULL
;
3563 #ifdef ENABLE_RTL_CHECKING
3566 && (returnjump_p (insn
)
3567 || (GET_CODE (insn
) == SET
3568 && SET_DEST (insn
) == pc_rtx
)))
3570 warning ("ICE: emit_insn used where emit_jump_insn needed:\n");
3578 /* Like `make_insn_raw' but make a JUMP_INSN instead of an insn. */
3581 make_jump_insn_raw (pattern
)
3586 insn
= rtx_alloc (JUMP_INSN
);
3587 INSN_UID (insn
) = cur_insn_uid
++;
3589 PATTERN (insn
) = pattern
;
3590 INSN_CODE (insn
) = -1;
3591 LOG_LINKS (insn
) = NULL
;
3592 REG_NOTES (insn
) = NULL
;
3593 JUMP_LABEL (insn
) = NULL
;
3594 INSN_SCOPE (insn
) = NULL
;
3595 BLOCK_FOR_INSN (insn
) = NULL
;
3600 /* Like `make_insn_raw' but make a CALL_INSN instead of an insn. */
3603 make_call_insn_raw (pattern
)
3608 insn
= rtx_alloc (CALL_INSN
);
3609 INSN_UID (insn
) = cur_insn_uid
++;
3611 PATTERN (insn
) = pattern
;
3612 INSN_CODE (insn
) = -1;
3613 LOG_LINKS (insn
) = NULL
;
3614 REG_NOTES (insn
) = NULL
;
3615 CALL_INSN_FUNCTION_USAGE (insn
) = NULL
;
3616 INSN_SCOPE (insn
) = NULL
;
3617 BLOCK_FOR_INSN (insn
) = NULL
;
3622 /* Add INSN to the end of the doubly-linked list.
3623 INSN may be an INSN, JUMP_INSN, CALL_INSN, CODE_LABEL, BARRIER or NOTE. */
3629 PREV_INSN (insn
) = last_insn
;
3630 NEXT_INSN (insn
) = 0;
3632 if (NULL
!= last_insn
)
3633 NEXT_INSN (last_insn
) = insn
;
3635 if (NULL
== first_insn
)
3641 /* Add INSN into the doubly-linked list after insn AFTER. This and
3642 the next should be the only functions called to insert an insn once
3643 delay slots have been filled since only they know how to update a
3647 add_insn_after (insn
, after
)
3650 rtx next
= NEXT_INSN (after
);
3653 if (optimize
&& INSN_DELETED_P (after
))
3656 NEXT_INSN (insn
) = next
;
3657 PREV_INSN (insn
) = after
;
3661 PREV_INSN (next
) = insn
;
3662 if (GET_CODE (next
) == INSN
&& GET_CODE (PATTERN (next
)) == SEQUENCE
)
3663 PREV_INSN (XVECEXP (PATTERN (next
), 0, 0)) = insn
;
3665 else if (last_insn
== after
)
3669 struct sequence_stack
*stack
= seq_stack
;
3670 /* Scan all pending sequences too. */
3671 for (; stack
; stack
= stack
->next
)
3672 if (after
== stack
->last
)
3682 if (GET_CODE (after
) != BARRIER
3683 && GET_CODE (insn
) != BARRIER
3684 && (bb
= BLOCK_FOR_INSN (after
)))
3686 set_block_for_insn (insn
, bb
);
3688 bb
->flags
|= BB_DIRTY
;
3689 /* Should not happen as first in the BB is always
3690 either NOTE or LABEL. */
3691 if (bb
->end
== after
3692 /* Avoid clobbering of structure when creating new BB. */
3693 && GET_CODE (insn
) != BARRIER
3694 && (GET_CODE (insn
) != NOTE
3695 || NOTE_LINE_NUMBER (insn
) != NOTE_INSN_BASIC_BLOCK
))
3699 NEXT_INSN (after
) = insn
;
3700 if (GET_CODE (after
) == INSN
&& GET_CODE (PATTERN (after
)) == SEQUENCE
)
3702 rtx sequence
= PATTERN (after
);
3703 NEXT_INSN (XVECEXP (sequence
, 0, XVECLEN (sequence
, 0) - 1)) = insn
;
3707 /* Add INSN into the doubly-linked list before insn BEFORE. This and
3708 the previous should be the only functions called to insert an insn once
3709 delay slots have been filled since only they know how to update a
3713 add_insn_before (insn
, before
)
3716 rtx prev
= PREV_INSN (before
);
3719 if (optimize
&& INSN_DELETED_P (before
))
3722 PREV_INSN (insn
) = prev
;
3723 NEXT_INSN (insn
) = before
;
3727 NEXT_INSN (prev
) = insn
;
3728 if (GET_CODE (prev
) == INSN
&& GET_CODE (PATTERN (prev
)) == SEQUENCE
)
3730 rtx sequence
= PATTERN (prev
);
3731 NEXT_INSN (XVECEXP (sequence
, 0, XVECLEN (sequence
, 0) - 1)) = insn
;
3734 else if (first_insn
== before
)
3738 struct sequence_stack
*stack
= seq_stack
;
3739 /* Scan all pending sequences too. */
3740 for (; stack
; stack
= stack
->next
)
3741 if (before
== stack
->first
)
3743 stack
->first
= insn
;
3751 if (GET_CODE (before
) != BARRIER
3752 && GET_CODE (insn
) != BARRIER
3753 && (bb
= BLOCK_FOR_INSN (before
)))
3755 set_block_for_insn (insn
, bb
);
3757 bb
->flags
|= BB_DIRTY
;
3758 /* Should not happen as first in the BB is always
3759 either NOTE or LABEl. */
3760 if (bb
->head
== insn
3761 /* Avoid clobbering of structure when creating new BB. */
3762 && GET_CODE (insn
) != BARRIER
3763 && (GET_CODE (insn
) != NOTE
3764 || NOTE_LINE_NUMBER (insn
) != NOTE_INSN_BASIC_BLOCK
))
3768 PREV_INSN (before
) = insn
;
3769 if (GET_CODE (before
) == INSN
&& GET_CODE (PATTERN (before
)) == SEQUENCE
)
3770 PREV_INSN (XVECEXP (PATTERN (before
), 0, 0)) = insn
;
3773 /* Remove an insn from its doubly-linked list. This function knows how
3774 to handle sequences. */
3779 rtx next
= NEXT_INSN (insn
);
3780 rtx prev
= PREV_INSN (insn
);
3785 NEXT_INSN (prev
) = next
;
3786 if (GET_CODE (prev
) == INSN
&& GET_CODE (PATTERN (prev
)) == SEQUENCE
)
3788 rtx sequence
= PATTERN (prev
);
3789 NEXT_INSN (XVECEXP (sequence
, 0, XVECLEN (sequence
, 0) - 1)) = next
;
3792 else if (first_insn
== insn
)
3796 struct sequence_stack
*stack
= seq_stack
;
3797 /* Scan all pending sequences too. */
3798 for (; stack
; stack
= stack
->next
)
3799 if (insn
== stack
->first
)
3801 stack
->first
= next
;
3811 PREV_INSN (next
) = prev
;
3812 if (GET_CODE (next
) == INSN
&& GET_CODE (PATTERN (next
)) == SEQUENCE
)
3813 PREV_INSN (XVECEXP (PATTERN (next
), 0, 0)) = prev
;
3815 else if (last_insn
== insn
)
3819 struct sequence_stack
*stack
= seq_stack
;
3820 /* Scan all pending sequences too. */
3821 for (; stack
; stack
= stack
->next
)
3822 if (insn
== stack
->last
)
3831 if (GET_CODE (insn
) != BARRIER
3832 && (bb
= BLOCK_FOR_INSN (insn
)))
3835 bb
->flags
|= BB_DIRTY
;
3836 if (bb
->head
== insn
)
3838 /* Never ever delete the basic block note without deleting whole
3840 if (GET_CODE (insn
) == NOTE
)
3844 if (bb
->end
== insn
)
3849 /* Delete all insns made since FROM.
3850 FROM becomes the new last instruction. */
3853 delete_insns_since (from
)
3859 NEXT_INSN (from
) = 0;
3863 /* This function is deprecated, please use sequences instead.
3865 Move a consecutive bunch of insns to a different place in the chain.
3866 The insns to be moved are those between FROM and TO.
3867 They are moved to a new position after the insn AFTER.
3868 AFTER must not be FROM or TO or any insn in between.
3870 This function does not know about SEQUENCEs and hence should not be
3871 called after delay-slot filling has been done. */
3874 reorder_insns_nobb (from
, to
, after
)
3875 rtx from
, to
, after
;
3877 /* Splice this bunch out of where it is now. */
3878 if (PREV_INSN (from
))
3879 NEXT_INSN (PREV_INSN (from
)) = NEXT_INSN (to
);
3881 PREV_INSN (NEXT_INSN (to
)) = PREV_INSN (from
);
3882 if (last_insn
== to
)
3883 last_insn
= PREV_INSN (from
);
3884 if (first_insn
== from
)
3885 first_insn
= NEXT_INSN (to
);
3887 /* Make the new neighbors point to it and it to them. */
3888 if (NEXT_INSN (after
))
3889 PREV_INSN (NEXT_INSN (after
)) = to
;
3891 NEXT_INSN (to
) = NEXT_INSN (after
);
3892 PREV_INSN (from
) = after
;
3893 NEXT_INSN (after
) = from
;
3894 if (after
== last_insn
)
3898 /* Same as function above, but take care to update BB boundaries. */
3900 reorder_insns (from
, to
, after
)
3901 rtx from
, to
, after
;
3903 rtx prev
= PREV_INSN (from
);
3904 basic_block bb
, bb2
;
3906 reorder_insns_nobb (from
, to
, after
);
3908 if (GET_CODE (after
) != BARRIER
3909 && (bb
= BLOCK_FOR_INSN (after
)))
3912 bb
->flags
|= BB_DIRTY
;
3914 if (GET_CODE (from
) != BARRIER
3915 && (bb2
= BLOCK_FOR_INSN (from
)))
3919 bb2
->flags
|= BB_DIRTY
;
3922 if (bb
->end
== after
)
3925 for (x
= from
; x
!= NEXT_INSN (to
); x
= NEXT_INSN (x
))
3926 set_block_for_insn (x
, bb
);
3930 /* Return the line note insn preceding INSN. */
3933 find_line_note (insn
)
3936 if (no_line_numbers
)
3939 for (; insn
; insn
= PREV_INSN (insn
))
3940 if (GET_CODE (insn
) == NOTE
3941 && NOTE_LINE_NUMBER (insn
) >= 0)
3947 /* Like reorder_insns, but inserts line notes to preserve the line numbers
3948 of the moved insns when debugging. This may insert a note between AFTER
3949 and FROM, and another one after TO. */
3952 reorder_insns_with_line_notes (from
, to
, after
)
3953 rtx from
, to
, after
;
3955 rtx from_line
= find_line_note (from
);
3956 rtx after_line
= find_line_note (after
);
3958 reorder_insns (from
, to
, after
);
3960 if (from_line
== after_line
)
3964 emit_line_note_after (NOTE_SOURCE_FILE (from_line
),
3965 NOTE_LINE_NUMBER (from_line
),
3968 emit_line_note_after (NOTE_SOURCE_FILE (after_line
),
3969 NOTE_LINE_NUMBER (after_line
),
3973 /* Remove unnecessary notes from the instruction stream. */
3976 remove_unnecessary_notes ()
3978 rtx block_stack
= NULL_RTX
;
3979 rtx eh_stack
= NULL_RTX
;
3984 /* We must not remove the first instruction in the function because
3985 the compiler depends on the first instruction being a note. */
3986 for (insn
= NEXT_INSN (get_insns ()); insn
; insn
= next
)
3988 /* Remember what's next. */
3989 next
= NEXT_INSN (insn
);
3991 /* We're only interested in notes. */
3992 if (GET_CODE (insn
) != NOTE
)
3995 switch (NOTE_LINE_NUMBER (insn
))
3997 case NOTE_INSN_DELETED
:
3998 case NOTE_INSN_LOOP_END_TOP_COND
:
4002 case NOTE_INSN_EH_REGION_BEG
:
4003 eh_stack
= alloc_INSN_LIST (insn
, eh_stack
);
4006 case NOTE_INSN_EH_REGION_END
:
4007 /* Too many end notes. */
4008 if (eh_stack
== NULL_RTX
)
4010 /* Mismatched nesting. */
4011 if (NOTE_EH_HANDLER (XEXP (eh_stack
, 0)) != NOTE_EH_HANDLER (insn
))
4014 eh_stack
= XEXP (eh_stack
, 1);
4015 free_INSN_LIST_node (tmp
);
4018 case NOTE_INSN_BLOCK_BEG
:
4019 /* By now, all notes indicating lexical blocks should have
4020 NOTE_BLOCK filled in. */
4021 if (NOTE_BLOCK (insn
) == NULL_TREE
)
4023 block_stack
= alloc_INSN_LIST (insn
, block_stack
);
4026 case NOTE_INSN_BLOCK_END
:
4027 /* Too many end notes. */
4028 if (block_stack
== NULL_RTX
)
4030 /* Mismatched nesting. */
4031 if (NOTE_BLOCK (XEXP (block_stack
, 0)) != NOTE_BLOCK (insn
))
4034 block_stack
= XEXP (block_stack
, 1);
4035 free_INSN_LIST_node (tmp
);
4037 /* Scan back to see if there are any non-note instructions
4038 between INSN and the beginning of this block. If not,
4039 then there is no PC range in the generated code that will
4040 actually be in this block, so there's no point in
4041 remembering the existence of the block. */
4042 for (tmp
= PREV_INSN (insn
); tmp
; tmp
= PREV_INSN (tmp
))
4044 /* This block contains a real instruction. Note that we
4045 don't include labels; if the only thing in the block
4046 is a label, then there are still no PC values that
4047 lie within the block. */
4051 /* We're only interested in NOTEs. */
4052 if (GET_CODE (tmp
) != NOTE
)
4055 if (NOTE_LINE_NUMBER (tmp
) == NOTE_INSN_BLOCK_BEG
)
4057 /* We just verified that this BLOCK matches us with
4058 the block_stack check above. Never delete the
4059 BLOCK for the outermost scope of the function; we
4060 can refer to names from that scope even if the
4061 block notes are messed up. */
4062 if (! is_body_block (NOTE_BLOCK (insn
))
4063 && (*debug_hooks
->ignore_block
) (NOTE_BLOCK (insn
)))
4070 else if (NOTE_LINE_NUMBER (tmp
) == NOTE_INSN_BLOCK_END
)
4071 /* There's a nested block. We need to leave the
4072 current block in place since otherwise the debugger
4073 wouldn't be able to show symbols from our block in
4074 the nested block. */
4080 /* Too many begin notes. */
4081 if (block_stack
|| eh_stack
)
4086 /* Emit insn(s) of given code and pattern
4087 at a specified place within the doubly-linked list.
4089 All of the emit_foo global entry points accept an object
4090 X which is either an insn list or a PATTERN of a single
4093 There are thus a few canonical ways to generate code and
4094 emit it at a specific place in the instruction stream. For
4095 example, consider the instruction named SPOT and the fact that
4096 we would like to emit some instructions before SPOT. We might
4100 ... emit the new instructions ...
4101 insns_head = get_insns ();
4104 emit_insn_before (insns_head, SPOT);
4106 It used to be common to generate SEQUENCE rtl instead, but that
4107 is a relic of the past which no longer occurs. The reason is that
4108 SEQUENCE rtl results in much fragmented RTL memory since the SEQUENCE
4109 generated would almost certainly die right after it was created. */
4111 /* Make X be output before the instruction BEFORE. */
4114 emit_insn_before (x
, before
)
4120 #ifdef ENABLE_RTL_CHECKING
4121 if (before
== NULL_RTX
)
4128 switch (GET_CODE (x
))
4139 rtx next
= NEXT_INSN (insn
);
4140 add_insn_before (insn
, before
);
4146 #ifdef ENABLE_RTL_CHECKING
4153 last
= make_insn_raw (x
);
4154 add_insn_before (last
, before
);
4161 /* Make an instruction with body X and code JUMP_INSN
4162 and output it before the instruction BEFORE. */
4165 emit_jump_insn_before (x
, before
)
4168 rtx insn
, last
= NULL_RTX
;
4170 #ifdef ENABLE_RTL_CHECKING
4171 if (before
== NULL_RTX
)
4175 switch (GET_CODE (x
))
4186 rtx next
= NEXT_INSN (insn
);
4187 add_insn_before (insn
, before
);
4193 #ifdef ENABLE_RTL_CHECKING
4200 last
= make_jump_insn_raw (x
);
4201 add_insn_before (last
, before
);
4208 /* Make an instruction with body X and code CALL_INSN
4209 and output it before the instruction BEFORE. */
4212 emit_call_insn_before (x
, before
)
4215 rtx last
= NULL_RTX
, insn
;
4217 #ifdef ENABLE_RTL_CHECKING
4218 if (before
== NULL_RTX
)
4222 switch (GET_CODE (x
))
4233 rtx next
= NEXT_INSN (insn
);
4234 add_insn_before (insn
, before
);
4240 #ifdef ENABLE_RTL_CHECKING
4247 last
= make_call_insn_raw (x
);
4248 add_insn_before (last
, before
);
4255 /* Make an insn of code BARRIER
4256 and output it before the insn BEFORE. */
4259 emit_barrier_before (before
)
4262 rtx insn
= rtx_alloc (BARRIER
);
4264 INSN_UID (insn
) = cur_insn_uid
++;
4266 add_insn_before (insn
, before
);
4270 /* Emit the label LABEL before the insn BEFORE. */
4273 emit_label_before (label
, before
)
4276 /* This can be called twice for the same label as a result of the
4277 confusion that follows a syntax error! So make it harmless. */
4278 if (INSN_UID (label
) == 0)
4280 INSN_UID (label
) = cur_insn_uid
++;
4281 add_insn_before (label
, before
);
4287 /* Emit a note of subtype SUBTYPE before the insn BEFORE. */
4290 emit_note_before (subtype
, before
)
4294 rtx note
= rtx_alloc (NOTE
);
4295 INSN_UID (note
) = cur_insn_uid
++;
4296 NOTE_SOURCE_FILE (note
) = 0;
4297 NOTE_LINE_NUMBER (note
) = subtype
;
4298 BLOCK_FOR_INSN (note
) = NULL
;
4300 add_insn_before (note
, before
);
4304 /* Helper for emit_insn_after, handles lists of instructions
4307 static rtx emit_insn_after_1
PARAMS ((rtx
, rtx
));
4310 emit_insn_after_1 (first
, after
)
4317 if (GET_CODE (after
) != BARRIER
4318 && (bb
= BLOCK_FOR_INSN (after
)))
4320 bb
->flags
|= BB_DIRTY
;
4321 for (last
= first
; NEXT_INSN (last
); last
= NEXT_INSN (last
))
4322 if (GET_CODE (last
) != BARRIER
)
4323 set_block_for_insn (last
, bb
);
4324 if (GET_CODE (last
) != BARRIER
)
4325 set_block_for_insn (last
, bb
);
4326 if (bb
->end
== after
)
4330 for (last
= first
; NEXT_INSN (last
); last
= NEXT_INSN (last
))
4333 after_after
= NEXT_INSN (after
);
4335 NEXT_INSN (after
) = first
;
4336 PREV_INSN (first
) = after
;
4337 NEXT_INSN (last
) = after_after
;
4339 PREV_INSN (after_after
) = last
;
4341 if (after
== last_insn
)
4346 /* Make X be output after the insn AFTER. */
4349 emit_insn_after (x
, after
)
4354 #ifdef ENABLE_RTL_CHECKING
4355 if (after
== NULL_RTX
)
4362 switch (GET_CODE (x
))
4370 last
= emit_insn_after_1 (x
, after
);
4373 #ifdef ENABLE_RTL_CHECKING
4380 last
= make_insn_raw (x
);
4381 add_insn_after (last
, after
);
4388 /* Similar to emit_insn_after, except that line notes are to be inserted so
4389 as to act as if this insn were at FROM. */
4392 emit_insn_after_with_line_notes (x
, after
, from
)
4395 rtx from_line
= find_line_note (from
);
4396 rtx after_line
= find_line_note (after
);
4397 rtx insn
= emit_insn_after (x
, after
);
4400 emit_line_note_after (NOTE_SOURCE_FILE (from_line
),
4401 NOTE_LINE_NUMBER (from_line
),
4405 emit_line_note_after (NOTE_SOURCE_FILE (after_line
),
4406 NOTE_LINE_NUMBER (after_line
),
4410 /* Make an insn of code JUMP_INSN with body X
4411 and output it after the insn AFTER. */
4414 emit_jump_insn_after (x
, after
)
4419 #ifdef ENABLE_RTL_CHECKING
4420 if (after
== NULL_RTX
)
4424 switch (GET_CODE (x
))
4432 last
= emit_insn_after_1 (x
, after
);
4435 #ifdef ENABLE_RTL_CHECKING
4442 last
= make_jump_insn_raw (x
);
4443 add_insn_after (last
, after
);
4450 /* Make an instruction with body X and code CALL_INSN
4451 and output it after the instruction AFTER. */
4454 emit_call_insn_after (x
, after
)
4459 #ifdef ENABLE_RTL_CHECKING
4460 if (after
== NULL_RTX
)
4464 switch (GET_CODE (x
))
4472 last
= emit_insn_after_1 (x
, after
);
4475 #ifdef ENABLE_RTL_CHECKING
4482 last
= make_call_insn_raw (x
);
4483 add_insn_after (last
, after
);
4490 /* Make an insn of code BARRIER
4491 and output it after the insn AFTER. */
4494 emit_barrier_after (after
)
4497 rtx insn
= rtx_alloc (BARRIER
);
4499 INSN_UID (insn
) = cur_insn_uid
++;
4501 add_insn_after (insn
, after
);
4505 /* Emit the label LABEL after the insn AFTER. */
4508 emit_label_after (label
, after
)
4511 /* This can be called twice for the same label
4512 as a result of the confusion that follows a syntax error!
4513 So make it harmless. */
4514 if (INSN_UID (label
) == 0)
4516 INSN_UID (label
) = cur_insn_uid
++;
4517 add_insn_after (label
, after
);
4523 /* Emit a note of subtype SUBTYPE after the insn AFTER. */
4526 emit_note_after (subtype
, after
)
4530 rtx note
= rtx_alloc (NOTE
);
4531 INSN_UID (note
) = cur_insn_uid
++;
4532 NOTE_SOURCE_FILE (note
) = 0;
4533 NOTE_LINE_NUMBER (note
) = subtype
;
4534 BLOCK_FOR_INSN (note
) = NULL
;
4535 add_insn_after (note
, after
);
4539 /* Emit a line note for FILE and LINE after the insn AFTER. */
4542 emit_line_note_after (file
, line
, after
)
4549 if (no_line_numbers
&& line
> 0)
4555 note
= rtx_alloc (NOTE
);
4556 INSN_UID (note
) = cur_insn_uid
++;
4557 NOTE_SOURCE_FILE (note
) = file
;
4558 NOTE_LINE_NUMBER (note
) = line
;
4559 BLOCK_FOR_INSN (note
) = NULL
;
4560 add_insn_after (note
, after
);
4564 /* Like emit_insn_after, but set INSN_SCOPE according to SCOPE. */
4566 emit_insn_after_scope (pattern
, after
, scope
)
4570 rtx last
= emit_insn_after (pattern
, after
);
4572 after
= NEXT_INSN (after
);
4575 if (active_insn_p (after
))
4576 INSN_SCOPE (after
) = scope
;
4579 after
= NEXT_INSN (after
);
4584 /* Like emit_jump_insn_after, but set INSN_SCOPE according to SCOPE. */
4586 emit_jump_insn_after_scope (pattern
, after
, scope
)
4590 rtx last
= emit_jump_insn_after (pattern
, after
);
4592 after
= NEXT_INSN (after
);
4595 if (active_insn_p (after
))
4596 INSN_SCOPE (after
) = scope
;
4599 after
= NEXT_INSN (after
);
4604 /* Like emit_call_insn_after, but set INSN_SCOPE according to SCOPE. */
4606 emit_call_insn_after_scope (pattern
, after
, scope
)
4610 rtx last
= emit_call_insn_after (pattern
, after
);
4612 after
= NEXT_INSN (after
);
4615 if (active_insn_p (after
))
4616 INSN_SCOPE (after
) = scope
;
4619 after
= NEXT_INSN (after
);
4624 /* Like emit_insn_before, but set INSN_SCOPE according to SCOPE. */
4626 emit_insn_before_scope (pattern
, before
, scope
)
4627 rtx pattern
, before
;
4630 rtx first
= PREV_INSN (before
);
4631 rtx last
= emit_insn_before (pattern
, before
);
4633 first
= NEXT_INSN (first
);
4636 if (active_insn_p (first
))
4637 INSN_SCOPE (first
) = scope
;
4640 first
= NEXT_INSN (first
);
4645 /* Take X and emit it at the end of the doubly-linked
4648 Returns the last insn emitted. */
4654 rtx last
= last_insn
;
4660 switch (GET_CODE (x
))
4671 rtx next
= NEXT_INSN (insn
);
4678 #ifdef ENABLE_RTL_CHECKING
4685 last
= make_insn_raw (x
);
4693 /* Make an insn of code JUMP_INSN with pattern X
4694 and add it to the end of the doubly-linked list. */
4700 rtx last
= NULL_RTX
, insn
;
4702 switch (GET_CODE (x
))
4713 rtx next
= NEXT_INSN (insn
);
4720 #ifdef ENABLE_RTL_CHECKING
4727 last
= make_jump_insn_raw (x
);
4735 /* Make an insn of code CALL_INSN with pattern X
4736 and add it to the end of the doubly-linked list. */
4744 switch (GET_CODE (x
))
4752 insn
= emit_insn (x
);
4755 #ifdef ENABLE_RTL_CHECKING
4762 insn
= make_call_insn_raw (x
);
4770 /* Add the label LABEL to the end of the doubly-linked list. */
4776 /* This can be called twice for the same label
4777 as a result of the confusion that follows a syntax error!
4778 So make it harmless. */
4779 if (INSN_UID (label
) == 0)
4781 INSN_UID (label
) = cur_insn_uid
++;
4787 /* Make an insn of code BARRIER
4788 and add it to the end of the doubly-linked list. */
4793 rtx barrier
= rtx_alloc (BARRIER
);
4794 INSN_UID (barrier
) = cur_insn_uid
++;
4799 /* Make an insn of code NOTE
4800 with data-fields specified by FILE and LINE
4801 and add it to the end of the doubly-linked list,
4802 but only if line-numbers are desired for debugging info. */
4805 emit_line_note (file
, line
)
4809 set_file_and_line_for_stmt (file
, line
);
4812 if (no_line_numbers
)
4816 return emit_note (file
, line
);
4819 /* Make an insn of code NOTE
4820 with data-fields specified by FILE and LINE
4821 and add it to the end of the doubly-linked list.
4822 If it is a line-number NOTE, omit it if it matches the previous one. */
4825 emit_note (file
, line
)
4833 if (file
&& last_filename
&& !strcmp (file
, last_filename
)
4834 && line
== last_linenum
)
4836 last_filename
= file
;
4837 last_linenum
= line
;
4840 if (no_line_numbers
&& line
> 0)
4846 note
= rtx_alloc (NOTE
);
4847 INSN_UID (note
) = cur_insn_uid
++;
4848 NOTE_SOURCE_FILE (note
) = file
;
4849 NOTE_LINE_NUMBER (note
) = line
;
4850 BLOCK_FOR_INSN (note
) = NULL
;
4855 /* Emit a NOTE, and don't omit it even if LINE is the previous note. */
4858 emit_line_note_force (file
, line
)
4863 return emit_line_note (file
, line
);
4866 /* Cause next statement to emit a line note even if the line number
4867 has not changed. This is used at the beginning of a function. */
4870 force_next_line_note ()
4875 /* Place a note of KIND on insn INSN with DATUM as the datum. If a
4876 note of this type already exists, remove it first. */
4879 set_unique_reg_note (insn
, kind
, datum
)
4884 rtx note
= find_reg_note (insn
, kind
, NULL_RTX
);
4890 /* Don't add REG_EQUAL/REG_EQUIV notes if the insn
4891 has multiple sets (some callers assume single_set
4892 means the insn only has one set, when in fact it
4893 means the insn only has one * useful * set). */
4894 if (GET_CODE (PATTERN (insn
)) == PARALLEL
&& multiple_sets (insn
))
4901 /* Don't add ASM_OPERAND REG_EQUAL/REG_EQUIV notes.
4902 It serves no useful purpose and breaks eliminate_regs. */
4903 if (GET_CODE (datum
) == ASM_OPERANDS
)
4913 XEXP (note
, 0) = datum
;
4917 REG_NOTES (insn
) = gen_rtx_EXPR_LIST (kind
, datum
, REG_NOTES (insn
));
4918 return REG_NOTES (insn
);
4921 /* Return an indication of which type of insn should have X as a body.
4922 The value is CODE_LABEL, INSN, CALL_INSN or JUMP_INSN. */
4928 if (GET_CODE (x
) == CODE_LABEL
)
4930 if (GET_CODE (x
) == CALL
)
4932 if (GET_CODE (x
) == RETURN
)
4934 if (GET_CODE (x
) == SET
)
4936 if (SET_DEST (x
) == pc_rtx
)
4938 else if (GET_CODE (SET_SRC (x
)) == CALL
)
4943 if (GET_CODE (x
) == PARALLEL
)
4946 for (j
= XVECLEN (x
, 0) - 1; j
>= 0; j
--)
4947 if (GET_CODE (XVECEXP (x
, 0, j
)) == CALL
)
4949 else if (GET_CODE (XVECEXP (x
, 0, j
)) == SET
4950 && SET_DEST (XVECEXP (x
, 0, j
)) == pc_rtx
)
4952 else if (GET_CODE (XVECEXP (x
, 0, j
)) == SET
4953 && GET_CODE (SET_SRC (XVECEXP (x
, 0, j
))) == CALL
)
4959 /* Emit the rtl pattern X as an appropriate kind of insn.
4960 If X is a label, it is simply added into the insn chain. */
4966 enum rtx_code code
= classify_insn (x
);
4968 if (code
== CODE_LABEL
)
4969 return emit_label (x
);
4970 else if (code
== INSN
)
4971 return emit_insn (x
);
4972 else if (code
== JUMP_INSN
)
4974 rtx insn
= emit_jump_insn (x
);
4975 if (any_uncondjump_p (insn
) || GET_CODE (x
) == RETURN
)
4976 return emit_barrier ();
4979 else if (code
== CALL_INSN
)
4980 return emit_call_insn (x
);
4985 /* Space for free sequence stack entries. */
4986 static GTY ((deletable (""))) struct sequence_stack
*free_sequence_stack
;
4988 /* Begin emitting insns to a sequence which can be packaged in an
4989 RTL_EXPR. If this sequence will contain something that might cause
4990 the compiler to pop arguments to function calls (because those
4991 pops have previously been deferred; see INHIBIT_DEFER_POP for more
4992 details), use do_pending_stack_adjust before calling this function.
4993 That will ensure that the deferred pops are not accidentally
4994 emitted in the middle of this sequence. */
4999 struct sequence_stack
*tem
;
5001 if (free_sequence_stack
!= NULL
)
5003 tem
= free_sequence_stack
;
5004 free_sequence_stack
= tem
->next
;
5007 tem
= (struct sequence_stack
*) ggc_alloc (sizeof (struct sequence_stack
));
5009 tem
->next
= seq_stack
;
5010 tem
->first
= first_insn
;
5011 tem
->last
= last_insn
;
5012 tem
->sequence_rtl_expr
= seq_rtl_expr
;
5020 /* Similarly, but indicate that this sequence will be placed in T, an
5021 RTL_EXPR. See the documentation for start_sequence for more
5022 information about how to use this function. */
5025 start_sequence_for_rtl_expr (t
)
5033 /* Set up the insn chain starting with FIRST as the current sequence,
5034 saving the previously current one. See the documentation for
5035 start_sequence for more information about how to use this function. */
5038 push_to_sequence (first
)
5045 for (last
= first
; last
&& NEXT_INSN (last
); last
= NEXT_INSN (last
));
5051 /* Set up the insn chain from a chain stort in FIRST to LAST. */
5054 push_to_full_sequence (first
, last
)
5060 /* We really should have the end of the insn chain here. */
5061 if (last
&& NEXT_INSN (last
))
5065 /* Set up the outer-level insn chain
5066 as the current sequence, saving the previously current one. */
5069 push_topmost_sequence ()
5071 struct sequence_stack
*stack
, *top
= NULL
;
5075 for (stack
= seq_stack
; stack
; stack
= stack
->next
)
5078 first_insn
= top
->first
;
5079 last_insn
= top
->last
;
5080 seq_rtl_expr
= top
->sequence_rtl_expr
;
5083 /* After emitting to the outer-level insn chain, update the outer-level
5084 insn chain, and restore the previous saved state. */
5087 pop_topmost_sequence ()
5089 struct sequence_stack
*stack
, *top
= NULL
;
5091 for (stack
= seq_stack
; stack
; stack
= stack
->next
)
5094 top
->first
= first_insn
;
5095 top
->last
= last_insn
;
5096 /* ??? Why don't we save seq_rtl_expr here? */
5101 /* After emitting to a sequence, restore previous saved state.
5103 To get the contents of the sequence just made, you must call
5104 `get_insns' *before* calling here.
5106 If the compiler might have deferred popping arguments while
5107 generating this sequence, and this sequence will not be immediately
5108 inserted into the instruction stream, use do_pending_stack_adjust
5109 before calling get_insns. That will ensure that the deferred
5110 pops are inserted into this sequence, and not into some random
5111 location in the instruction stream. See INHIBIT_DEFER_POP for more
5112 information about deferred popping of arguments. */
5117 struct sequence_stack
*tem
= seq_stack
;
5119 first_insn
= tem
->first
;
5120 last_insn
= tem
->last
;
5121 seq_rtl_expr
= tem
->sequence_rtl_expr
;
5122 seq_stack
= tem
->next
;
5124 memset (tem
, 0, sizeof (*tem
));
5125 tem
->next
= free_sequence_stack
;
5126 free_sequence_stack
= tem
;
5129 /* This works like end_sequence, but records the old sequence in FIRST
5133 end_full_sequence (first
, last
)
5136 *first
= first_insn
;
5141 /* Return 1 if currently emitting into a sequence. */
5146 return seq_stack
!= 0;
5149 /* Put the various virtual registers into REGNO_REG_RTX. */
5152 init_virtual_regs (es
)
5153 struct emit_status
*es
;
5155 rtx
*ptr
= es
->x_regno_reg_rtx
;
5156 ptr
[VIRTUAL_INCOMING_ARGS_REGNUM
] = virtual_incoming_args_rtx
;
5157 ptr
[VIRTUAL_STACK_VARS_REGNUM
] = virtual_stack_vars_rtx
;
5158 ptr
[VIRTUAL_STACK_DYNAMIC_REGNUM
] = virtual_stack_dynamic_rtx
;
5159 ptr
[VIRTUAL_OUTGOING_ARGS_REGNUM
] = virtual_outgoing_args_rtx
;
5160 ptr
[VIRTUAL_CFA_REGNUM
] = virtual_cfa_rtx
;
5164 /* Used by copy_insn_1 to avoid copying SCRATCHes more than once. */
5165 static rtx copy_insn_scratch_in
[MAX_RECOG_OPERANDS
];
5166 static rtx copy_insn_scratch_out
[MAX_RECOG_OPERANDS
];
5167 static int copy_insn_n_scratches
;
5169 /* When an insn is being copied by copy_insn_1, this is nonzero if we have
5170 copied an ASM_OPERANDS.
5171 In that case, it is the original input-operand vector. */
5172 static rtvec orig_asm_operands_vector
;
5174 /* When an insn is being copied by copy_insn_1, this is nonzero if we have
5175 copied an ASM_OPERANDS.
5176 In that case, it is the copied input-operand vector. */
5177 static rtvec copy_asm_operands_vector
;
5179 /* Likewise for the constraints vector. */
5180 static rtvec orig_asm_constraints_vector
;
5181 static rtvec copy_asm_constraints_vector
;
5183 /* Recursively create a new copy of an rtx for copy_insn.
5184 This function differs from copy_rtx in that it handles SCRATCHes and
5185 ASM_OPERANDs properly.
5186 Normally, this function is not used directly; use copy_insn as front end.
5187 However, you could first copy an insn pattern with copy_insn and then use
5188 this function afterwards to properly copy any REG_NOTEs containing
5198 const char *format_ptr
;
5200 code
= GET_CODE (orig
);
5217 for (i
= 0; i
< copy_insn_n_scratches
; i
++)
5218 if (copy_insn_scratch_in
[i
] == orig
)
5219 return copy_insn_scratch_out
[i
];
5223 /* CONST can be shared if it contains a SYMBOL_REF. If it contains
5224 a LABEL_REF, it isn't sharable. */
5225 if (GET_CODE (XEXP (orig
, 0)) == PLUS
5226 && GET_CODE (XEXP (XEXP (orig
, 0), 0)) == SYMBOL_REF
5227 && GET_CODE (XEXP (XEXP (orig
, 0), 1)) == CONST_INT
)
5231 /* A MEM with a constant address is not sharable. The problem is that
5232 the constant address may need to be reloaded. If the mem is shared,
5233 then reloading one copy of this mem will cause all copies to appear
5234 to have been reloaded. */
5240 copy
= rtx_alloc (code
);
5242 /* Copy the various flags, and other information. We assume that
5243 all fields need copying, and then clear the fields that should
5244 not be copied. That is the sensible default behavior, and forces
5245 us to explicitly document why we are *not* copying a flag. */
5246 memcpy (copy
, orig
, sizeof (struct rtx_def
) - sizeof (rtunion
));
5248 /* We do not copy the USED flag, which is used as a mark bit during
5249 walks over the RTL. */
5250 RTX_FLAG (copy
, used
) = 0;
5252 /* We do not copy JUMP, CALL, or FRAME_RELATED for INSNs. */
5253 if (GET_RTX_CLASS (code
) == 'i')
5255 RTX_FLAG (copy
, jump
) = 0;
5256 RTX_FLAG (copy
, call
) = 0;
5257 RTX_FLAG (copy
, frame_related
) = 0;
5260 format_ptr
= GET_RTX_FORMAT (GET_CODE (copy
));
5262 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (copy
)); i
++)
5264 copy
->fld
[i
] = orig
->fld
[i
];
5265 switch (*format_ptr
++)
5268 if (XEXP (orig
, i
) != NULL
)
5269 XEXP (copy
, i
) = copy_insn_1 (XEXP (orig
, i
));
5274 if (XVEC (orig
, i
) == orig_asm_constraints_vector
)
5275 XVEC (copy
, i
) = copy_asm_constraints_vector
;
5276 else if (XVEC (orig
, i
) == orig_asm_operands_vector
)
5277 XVEC (copy
, i
) = copy_asm_operands_vector
;
5278 else if (XVEC (orig
, i
) != NULL
)
5280 XVEC (copy
, i
) = rtvec_alloc (XVECLEN (orig
, i
));
5281 for (j
= 0; j
< XVECLEN (copy
, i
); j
++)
5282 XVECEXP (copy
, i
, j
) = copy_insn_1 (XVECEXP (orig
, i
, j
));
5293 /* These are left unchanged. */
5301 if (code
== SCRATCH
)
5303 i
= copy_insn_n_scratches
++;
5304 if (i
>= MAX_RECOG_OPERANDS
)
5306 copy_insn_scratch_in
[i
] = orig
;
5307 copy_insn_scratch_out
[i
] = copy
;
5309 else if (code
== ASM_OPERANDS
)
5311 orig_asm_operands_vector
= ASM_OPERANDS_INPUT_VEC (orig
);
5312 copy_asm_operands_vector
= ASM_OPERANDS_INPUT_VEC (copy
);
5313 orig_asm_constraints_vector
= ASM_OPERANDS_INPUT_CONSTRAINT_VEC (orig
);
5314 copy_asm_constraints_vector
= ASM_OPERANDS_INPUT_CONSTRAINT_VEC (copy
);
5320 /* Create a new copy of an rtx.
5321 This function differs from copy_rtx in that it handles SCRATCHes and
5322 ASM_OPERANDs properly.
5323 INSN doesn't really have to be a full INSN; it could be just the
5329 copy_insn_n_scratches
= 0;
5330 orig_asm_operands_vector
= 0;
5331 orig_asm_constraints_vector
= 0;
5332 copy_asm_operands_vector
= 0;
5333 copy_asm_constraints_vector
= 0;
5334 return copy_insn_1 (insn
);
5337 /* Initialize data structures and variables in this file
5338 before generating rtl for each function. */
5343 struct function
*f
= cfun
;
5345 f
->emit
= (struct emit_status
*) ggc_alloc (sizeof (struct emit_status
));
5348 seq_rtl_expr
= NULL
;
5350 reg_rtx_no
= LAST_VIRTUAL_REGISTER
+ 1;
5353 first_label_num
= label_num
;
5357 /* Init the tables that describe all the pseudo regs. */
5359 f
->emit
->regno_pointer_align_length
= LAST_VIRTUAL_REGISTER
+ 101;
5361 f
->emit
->regno_pointer_align
5362 = (unsigned char *) ggc_alloc_cleared (f
->emit
->regno_pointer_align_length
5363 * sizeof (unsigned char));
5366 = (rtx
*) ggc_alloc (f
->emit
->regno_pointer_align_length
* sizeof (rtx
));
5368 /* Put copies of all the hard registers into regno_reg_rtx. */
5369 memcpy (regno_reg_rtx
,
5370 static_regno_reg_rtx
,
5371 FIRST_PSEUDO_REGISTER
* sizeof (rtx
));
5373 /* Put copies of all the virtual register rtx into regno_reg_rtx. */
5374 init_virtual_regs (f
->emit
);
5376 /* Indicate that the virtual registers and stack locations are
5378 REG_POINTER (stack_pointer_rtx
) = 1;
5379 REG_POINTER (frame_pointer_rtx
) = 1;
5380 REG_POINTER (hard_frame_pointer_rtx
) = 1;
5381 REG_POINTER (arg_pointer_rtx
) = 1;
5383 REG_POINTER (virtual_incoming_args_rtx
) = 1;
5384 REG_POINTER (virtual_stack_vars_rtx
) = 1;
5385 REG_POINTER (virtual_stack_dynamic_rtx
) = 1;
5386 REG_POINTER (virtual_outgoing_args_rtx
) = 1;
5387 REG_POINTER (virtual_cfa_rtx
) = 1;
5389 #ifdef STACK_BOUNDARY
5390 REGNO_POINTER_ALIGN (STACK_POINTER_REGNUM
) = STACK_BOUNDARY
;
5391 REGNO_POINTER_ALIGN (FRAME_POINTER_REGNUM
) = STACK_BOUNDARY
;
5392 REGNO_POINTER_ALIGN (HARD_FRAME_POINTER_REGNUM
) = STACK_BOUNDARY
;
5393 REGNO_POINTER_ALIGN (ARG_POINTER_REGNUM
) = STACK_BOUNDARY
;
5395 REGNO_POINTER_ALIGN (VIRTUAL_INCOMING_ARGS_REGNUM
) = STACK_BOUNDARY
;
5396 REGNO_POINTER_ALIGN (VIRTUAL_STACK_VARS_REGNUM
) = STACK_BOUNDARY
;
5397 REGNO_POINTER_ALIGN (VIRTUAL_STACK_DYNAMIC_REGNUM
) = STACK_BOUNDARY
;
5398 REGNO_POINTER_ALIGN (VIRTUAL_OUTGOING_ARGS_REGNUM
) = STACK_BOUNDARY
;
5399 REGNO_POINTER_ALIGN (VIRTUAL_CFA_REGNUM
) = BITS_PER_WORD
;
5402 #ifdef INIT_EXPANDERS
5407 /* Generate the constant 0. */
5410 gen_const_vector_0 (mode
)
5411 enum machine_mode mode
;
5416 enum machine_mode inner
;
5418 units
= GET_MODE_NUNITS (mode
);
5419 inner
= GET_MODE_INNER (mode
);
5421 v
= rtvec_alloc (units
);
5423 /* We need to call this function after we to set CONST0_RTX first. */
5424 if (!CONST0_RTX (inner
))
5427 for (i
= 0; i
< units
; ++i
)
5428 RTVEC_ELT (v
, i
) = CONST0_RTX (inner
);
5430 tem
= gen_rtx_raw_CONST_VECTOR (mode
, v
);
5434 /* Generate a vector like gen_rtx_raw_CONST_VEC, but use the zero vector when
5435 all elements are zero. */
5437 gen_rtx_CONST_VECTOR (mode
, v
)
5438 enum machine_mode mode
;
5441 rtx inner_zero
= CONST0_RTX (GET_MODE_INNER (mode
));
5444 for (i
= GET_MODE_NUNITS (mode
) - 1; i
>= 0; i
--)
5445 if (RTVEC_ELT (v
, i
) != inner_zero
)
5446 return gen_rtx_raw_CONST_VECTOR (mode
, v
);
5447 return CONST0_RTX (mode
);
5450 /* Create some permanent unique rtl objects shared between all functions.
5451 LINE_NUMBERS is nonzero if line numbers are to be generated. */
5454 init_emit_once (line_numbers
)
5458 enum machine_mode mode
;
5459 enum machine_mode double_mode
;
5461 /* Initialize the CONST_INT, CONST_DOUBLE, and memory attribute hash
5463 const_int_htab
= htab_create_ggc (37, const_int_htab_hash
,
5464 const_int_htab_eq
, NULL
);
5466 const_double_htab
= htab_create_ggc (37, const_double_htab_hash
,
5467 const_double_htab_eq
, NULL
);
5469 mem_attrs_htab
= htab_create_ggc (37, mem_attrs_htab_hash
,
5470 mem_attrs_htab_eq
, NULL
);
5471 reg_attrs_htab
= htab_create_ggc (37, reg_attrs_htab_hash
,
5472 reg_attrs_htab_eq
, NULL
);
5474 no_line_numbers
= ! line_numbers
;
5476 /* Compute the word and byte modes. */
5478 byte_mode
= VOIDmode
;
5479 word_mode
= VOIDmode
;
5480 double_mode
= VOIDmode
;
5482 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_INT
); mode
!= VOIDmode
;
5483 mode
= GET_MODE_WIDER_MODE (mode
))
5485 if (GET_MODE_BITSIZE (mode
) == BITS_PER_UNIT
5486 && byte_mode
== VOIDmode
)
5489 if (GET_MODE_BITSIZE (mode
) == BITS_PER_WORD
5490 && word_mode
== VOIDmode
)
5494 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_FLOAT
); mode
!= VOIDmode
;
5495 mode
= GET_MODE_WIDER_MODE (mode
))
5497 if (GET_MODE_BITSIZE (mode
) == DOUBLE_TYPE_SIZE
5498 && double_mode
== VOIDmode
)
5502 ptr_mode
= mode_for_size (POINTER_SIZE
, GET_MODE_CLASS (Pmode
), 0);
5504 /* Assign register numbers to the globally defined register rtx.
5505 This must be done at runtime because the register number field
5506 is in a union and some compilers can't initialize unions. */
5508 pc_rtx
= gen_rtx (PC
, VOIDmode
);
5509 cc0_rtx
= gen_rtx (CC0
, VOIDmode
);
5510 stack_pointer_rtx
= gen_raw_REG (Pmode
, STACK_POINTER_REGNUM
);
5511 frame_pointer_rtx
= gen_raw_REG (Pmode
, FRAME_POINTER_REGNUM
);
5512 if (hard_frame_pointer_rtx
== 0)
5513 hard_frame_pointer_rtx
= gen_raw_REG (Pmode
,
5514 HARD_FRAME_POINTER_REGNUM
);
5515 if (arg_pointer_rtx
== 0)
5516 arg_pointer_rtx
= gen_raw_REG (Pmode
, ARG_POINTER_REGNUM
);
5517 virtual_incoming_args_rtx
=
5518 gen_raw_REG (Pmode
, VIRTUAL_INCOMING_ARGS_REGNUM
);
5519 virtual_stack_vars_rtx
=
5520 gen_raw_REG (Pmode
, VIRTUAL_STACK_VARS_REGNUM
);
5521 virtual_stack_dynamic_rtx
=
5522 gen_raw_REG (Pmode
, VIRTUAL_STACK_DYNAMIC_REGNUM
);
5523 virtual_outgoing_args_rtx
=
5524 gen_raw_REG (Pmode
, VIRTUAL_OUTGOING_ARGS_REGNUM
);
5525 virtual_cfa_rtx
= gen_raw_REG (Pmode
, VIRTUAL_CFA_REGNUM
);
5527 /* Initialize RTL for commonly used hard registers. These are
5528 copied into regno_reg_rtx as we begin to compile each function. */
5529 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
5530 static_regno_reg_rtx
[i
] = gen_raw_REG (reg_raw_mode
[i
], i
);
5532 #ifdef INIT_EXPANDERS
5533 /* This is to initialize {init|mark|free}_machine_status before the first
5534 call to push_function_context_to. This is needed by the Chill front
5535 end which calls push_function_context_to before the first call to
5536 init_function_start. */
5540 /* Create the unique rtx's for certain rtx codes and operand values. */
5542 /* Don't use gen_rtx here since gen_rtx in this case
5543 tries to use these variables. */
5544 for (i
= - MAX_SAVED_CONST_INT
; i
<= MAX_SAVED_CONST_INT
; i
++)
5545 const_int_rtx
[i
+ MAX_SAVED_CONST_INT
] =
5546 gen_rtx_raw_CONST_INT (VOIDmode
, (HOST_WIDE_INT
) i
);
5548 if (STORE_FLAG_VALUE
>= - MAX_SAVED_CONST_INT
5549 && STORE_FLAG_VALUE
<= MAX_SAVED_CONST_INT
)
5550 const_true_rtx
= const_int_rtx
[STORE_FLAG_VALUE
+ MAX_SAVED_CONST_INT
];
5552 const_true_rtx
= gen_rtx_CONST_INT (VOIDmode
, STORE_FLAG_VALUE
);
5554 REAL_VALUE_FROM_INT (dconst0
, 0, 0, double_mode
);
5555 REAL_VALUE_FROM_INT (dconst1
, 1, 0, double_mode
);
5556 REAL_VALUE_FROM_INT (dconst2
, 2, 0, double_mode
);
5557 REAL_VALUE_FROM_INT (dconstm1
, -1, -1, double_mode
);
5558 REAL_VALUE_FROM_INT (dconstm2
, -2, -1, double_mode
);
5560 dconsthalf
= dconst1
;
5563 for (i
= 0; i
<= 2; i
++)
5565 REAL_VALUE_TYPE
*r
=
5566 (i
== 0 ? &dconst0
: i
== 1 ? &dconst1
: &dconst2
);
5568 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_FLOAT
); mode
!= VOIDmode
;
5569 mode
= GET_MODE_WIDER_MODE (mode
))
5570 const_tiny_rtx
[i
][(int) mode
] =
5571 CONST_DOUBLE_FROM_REAL_VALUE (*r
, mode
);
5573 const_tiny_rtx
[i
][(int) VOIDmode
] = GEN_INT (i
);
5575 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_INT
); mode
!= VOIDmode
;
5576 mode
= GET_MODE_WIDER_MODE (mode
))
5577 const_tiny_rtx
[i
][(int) mode
] = GEN_INT (i
);
5579 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_PARTIAL_INT
);
5581 mode
= GET_MODE_WIDER_MODE (mode
))
5582 const_tiny_rtx
[i
][(int) mode
] = GEN_INT (i
);
5585 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_VECTOR_INT
);
5587 mode
= GET_MODE_WIDER_MODE (mode
))
5588 const_tiny_rtx
[0][(int) mode
] = gen_const_vector_0 (mode
);
5590 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_VECTOR_FLOAT
);
5592 mode
= GET_MODE_WIDER_MODE (mode
))
5593 const_tiny_rtx
[0][(int) mode
] = gen_const_vector_0 (mode
);
5595 for (i
= (int) CCmode
; i
< (int) MAX_MACHINE_MODE
; ++i
)
5596 if (GET_MODE_CLASS ((enum machine_mode
) i
) == MODE_CC
)
5597 const_tiny_rtx
[0][i
] = const0_rtx
;
5599 const_tiny_rtx
[0][(int) BImode
] = const0_rtx
;
5600 if (STORE_FLAG_VALUE
== 1)
5601 const_tiny_rtx
[1][(int) BImode
] = const1_rtx
;
5603 #ifdef RETURN_ADDRESS_POINTER_REGNUM
5604 return_address_pointer_rtx
5605 = gen_raw_REG (Pmode
, RETURN_ADDRESS_POINTER_REGNUM
);
5609 struct_value_rtx
= STRUCT_VALUE
;
5611 struct_value_rtx
= gen_rtx_REG (Pmode
, STRUCT_VALUE_REGNUM
);
5614 #ifdef STRUCT_VALUE_INCOMING
5615 struct_value_incoming_rtx
= STRUCT_VALUE_INCOMING
;
5617 #ifdef STRUCT_VALUE_INCOMING_REGNUM
5618 struct_value_incoming_rtx
5619 = gen_rtx_REG (Pmode
, STRUCT_VALUE_INCOMING_REGNUM
);
5621 struct_value_incoming_rtx
= struct_value_rtx
;
5625 #ifdef STATIC_CHAIN_REGNUM
5626 static_chain_rtx
= gen_rtx_REG (Pmode
, STATIC_CHAIN_REGNUM
);
5628 #ifdef STATIC_CHAIN_INCOMING_REGNUM
5629 if (STATIC_CHAIN_INCOMING_REGNUM
!= STATIC_CHAIN_REGNUM
)
5630 static_chain_incoming_rtx
5631 = gen_rtx_REG (Pmode
, STATIC_CHAIN_INCOMING_REGNUM
);
5634 static_chain_incoming_rtx
= static_chain_rtx
;
5638 static_chain_rtx
= STATIC_CHAIN
;
5640 #ifdef STATIC_CHAIN_INCOMING
5641 static_chain_incoming_rtx
= STATIC_CHAIN_INCOMING
;
5643 static_chain_incoming_rtx
= static_chain_rtx
;
5647 if ((unsigned) PIC_OFFSET_TABLE_REGNUM
!= INVALID_REGNUM
)
5648 pic_offset_table_rtx
= gen_raw_REG (Pmode
, PIC_OFFSET_TABLE_REGNUM
);
5651 /* Query and clear/ restore no_line_numbers. This is used by the
5652 switch / case handling in stmt.c to give proper line numbers in
5653 warnings about unreachable code. */
5656 force_line_numbers ()
5658 int old
= no_line_numbers
;
5660 no_line_numbers
= 0;
5662 force_next_line_note ();
5667 restore_line_number_status (old_value
)
5670 no_line_numbers
= old_value
;
5673 /* Produce exact duplicate of insn INSN after AFTER.
5674 Care updating of libcall regions if present. */
5677 emit_copy_of_insn_after (insn
, after
)
5681 rtx note1
, note2
, link
;
5683 switch (GET_CODE (insn
))
5686 new = emit_insn_after (copy_insn (PATTERN (insn
)), after
);
5690 new = emit_jump_insn_after (copy_insn (PATTERN (insn
)), after
);
5694 new = emit_call_insn_after (copy_insn (PATTERN (insn
)), after
);
5695 if (CALL_INSN_FUNCTION_USAGE (insn
))
5696 CALL_INSN_FUNCTION_USAGE (new)
5697 = copy_insn (CALL_INSN_FUNCTION_USAGE (insn
));
5698 SIBLING_CALL_P (new) = SIBLING_CALL_P (insn
);
5699 CONST_OR_PURE_CALL_P (new) = CONST_OR_PURE_CALL_P (insn
);
5706 /* Update LABEL_NUSES. */
5707 mark_jump_label (PATTERN (new), new, 0);
5709 INSN_SCOPE (new) = INSN_SCOPE (insn
);
5711 /* Copy all REG_NOTES except REG_LABEL since mark_jump_label will
5713 for (link
= REG_NOTES (insn
); link
; link
= XEXP (link
, 1))
5714 if (REG_NOTE_KIND (link
) != REG_LABEL
)
5716 if (GET_CODE (link
) == EXPR_LIST
)
5718 = copy_insn_1 (gen_rtx_EXPR_LIST (REG_NOTE_KIND (link
),
5723 = copy_insn_1 (gen_rtx_INSN_LIST (REG_NOTE_KIND (link
),
5728 /* Fix the libcall sequences. */
5729 if ((note1
= find_reg_note (new, REG_RETVAL
, NULL_RTX
)) != NULL
)
5732 while ((note2
= find_reg_note (p
, REG_LIBCALL
, NULL_RTX
)) == NULL
)
5734 XEXP (note1
, 0) = p
;
5735 XEXP (note2
, 0) = new;
5737 INSN_CODE (new) = INSN_CODE (insn
);
5741 #include "gt-emit-rtl.h"