2001-08-28 Alexandre Petit-Bianco <apbianco@redhat.com>
[official-gcc.git] / gcc / emit-rtl.c
blobd04e3d23ba4d8b6f1ae41a79fa4f38e3419c6b50
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 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
10 version.
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
15 for more details.
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
20 02111-1307, USA. */
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. */
38 #include "config.h"
39 #include "system.h"
40 #include "toplev.h"
41 #include "rtl.h"
42 #include "tree.h"
43 #include "tm_p.h"
44 #include "flags.h"
45 #include "function.h"
46 #include "expr.h"
47 #include "regs.h"
48 #include "hard-reg-set.h"
49 #include "hashtab.h"
50 #include "insn-config.h"
51 #include "recog.h"
52 #include "real.h"
53 #include "obstack.h"
54 #include "bitmap.h"
55 #include "basic-block.h"
56 #include "ggc.h"
57 #include "debug.h"
59 /* Commonly used modes. */
61 enum machine_mode byte_mode; /* Mode whose width is BITS_PER_UNIT. */
62 enum machine_mode word_mode; /* Mode whose width is BITS_PER_WORD. */
63 enum machine_mode double_mode; /* Mode whose width is DOUBLE_TYPE_SIZE. */
64 enum machine_mode ptr_mode; /* Mode whose width is POINTER_SIZE. */
67 /* This is *not* reset after each function. It gives each CODE_LABEL
68 in the entire compilation a unique label number. */
70 static int label_num = 1;
72 /* Highest label number in current function.
73 Zero means use the value of label_num instead.
74 This is nonzero only when belatedly compiling an inline function. */
76 static int last_label_num;
78 /* Value label_num had when set_new_first_and_last_label_number was called.
79 If label_num has not changed since then, last_label_num is valid. */
81 static int base_label_num;
83 /* Nonzero means do not generate NOTEs for source line numbers. */
85 static int no_line_numbers;
87 /* Commonly used rtx's, so that we only need space for one copy.
88 These are initialized once for the entire compilation.
89 All of these except perhaps the floating-point CONST_DOUBLEs
90 are unique; no other rtx-object will be equal to any of these. */
92 rtx global_rtl[GR_MAX];
94 /* We record floating-point CONST_DOUBLEs in each floating-point mode for
95 the values of 0, 1, and 2. For the integer entries and VOIDmode, we
96 record a copy of const[012]_rtx. */
98 rtx const_tiny_rtx[3][(int) MAX_MACHINE_MODE];
100 rtx const_true_rtx;
102 REAL_VALUE_TYPE dconst0;
103 REAL_VALUE_TYPE dconst1;
104 REAL_VALUE_TYPE dconst2;
105 REAL_VALUE_TYPE dconstm1;
107 /* All references to the following fixed hard registers go through
108 these unique rtl objects. On machines where the frame-pointer and
109 arg-pointer are the same register, they use the same unique object.
111 After register allocation, other rtl objects which used to be pseudo-regs
112 may be clobbered to refer to the frame-pointer register.
113 But references that were originally to the frame-pointer can be
114 distinguished from the others because they contain frame_pointer_rtx.
116 When to use frame_pointer_rtx and hard_frame_pointer_rtx is a little
117 tricky: until register elimination has taken place hard_frame_pointer_rtx
118 should be used if it is being set, and frame_pointer_rtx otherwise. After
119 register elimination hard_frame_pointer_rtx should always be used.
120 On machines where the two registers are same (most) then these are the
121 same.
123 In an inline procedure, the stack and frame pointer rtxs may not be
124 used for anything else. */
125 rtx struct_value_rtx; /* (REG:Pmode STRUCT_VALUE_REGNUM) */
126 rtx struct_value_incoming_rtx; /* (REG:Pmode STRUCT_VALUE_INCOMING_REGNUM) */
127 rtx static_chain_rtx; /* (REG:Pmode STATIC_CHAIN_REGNUM) */
128 rtx static_chain_incoming_rtx; /* (REG:Pmode STATIC_CHAIN_INCOMING_REGNUM) */
129 rtx pic_offset_table_rtx; /* (REG:Pmode PIC_OFFSET_TABLE_REGNUM) */
131 /* This is used to implement __builtin_return_address for some machines.
132 See for instance the MIPS port. */
133 rtx return_address_pointer_rtx; /* (REG:Pmode RETURN_ADDRESS_POINTER_REGNUM) */
135 /* We make one copy of (const_int C) where C is in
136 [- MAX_SAVED_CONST_INT, MAX_SAVED_CONST_INT]
137 to save space during the compilation and simplify comparisons of
138 integers. */
140 rtx const_int_rtx[MAX_SAVED_CONST_INT * 2 + 1];
142 /* A hash table storing CONST_INTs whose absolute value is greater
143 than MAX_SAVED_CONST_INT. */
145 static htab_t const_int_htab;
147 /* start_sequence and gen_sequence can make a lot of rtx expressions which are
148 shortly thrown away. We use two mechanisms to prevent this waste:
150 For sizes up to 5 elements, we keep a SEQUENCE and its associated
151 rtvec for use by gen_sequence. One entry for each size is
152 sufficient because most cases are calls to gen_sequence followed by
153 immediately emitting the SEQUENCE. Reuse is safe since emitting a
154 sequence is destructive on the insn in it anyway and hence can't be
155 redone.
157 We do not bother to save this cached data over nested function calls.
158 Instead, we just reinitialize them. */
160 #define SEQUENCE_RESULT_SIZE 5
162 static rtx sequence_result[SEQUENCE_RESULT_SIZE];
164 /* During RTL generation, we also keep a list of free INSN rtl codes. */
165 static rtx free_insn;
167 #define first_insn (cfun->emit->x_first_insn)
168 #define last_insn (cfun->emit->x_last_insn)
169 #define cur_insn_uid (cfun->emit->x_cur_insn_uid)
170 #define last_linenum (cfun->emit->x_last_linenum)
171 #define last_filename (cfun->emit->x_last_filename)
172 #define first_label_num (cfun->emit->x_first_label_num)
174 static rtx make_jump_insn_raw PARAMS ((rtx));
175 static rtx make_call_insn_raw PARAMS ((rtx));
176 static rtx find_line_note PARAMS ((rtx));
177 static void mark_sequence_stack PARAMS ((struct sequence_stack *));
178 static void unshare_all_rtl_1 PARAMS ((rtx));
179 static void unshare_all_decls PARAMS ((tree));
180 static void reset_used_decls PARAMS ((tree));
181 static void mark_label_nuses PARAMS ((rtx));
182 static hashval_t const_int_htab_hash PARAMS ((const void *));
183 static int const_int_htab_eq PARAMS ((const void *,
184 const void *));
185 static int rtx_htab_mark_1 PARAMS ((void **, void *));
186 static void rtx_htab_mark PARAMS ((void *));
188 /* Probability of the conditional branch currently proceeded by try_split.
189 Set to -1 otherwise. */
190 int split_branch_probability = -1;
193 /* Returns a hash code for X (which is a really a CONST_INT). */
195 static hashval_t
196 const_int_htab_hash (x)
197 const void *x;
199 return (hashval_t) INTVAL ((const struct rtx_def *) x);
202 /* Returns non-zero if the value represented by X (which is really a
203 CONST_INT) is the same as that given by Y (which is really a
204 HOST_WIDE_INT *). */
206 static int
207 const_int_htab_eq (x, y)
208 const void *x;
209 const void *y;
211 return (INTVAL ((const struct rtx_def *) x) == *((const HOST_WIDE_INT *) y));
214 /* Mark the hash-table element X (which is really a pointer to an
215 rtx). */
217 static int
218 rtx_htab_mark_1 (x, data)
219 void **x;
220 void *data ATTRIBUTE_UNUSED;
222 ggc_mark_rtx (*x);
223 return 1;
226 /* Mark all the elements of HTAB (which is really an htab_t full of
227 rtxs). */
229 static void
230 rtx_htab_mark (htab)
231 void *htab;
233 htab_traverse (*((htab_t *) htab), rtx_htab_mark_1, NULL);
236 /* Generate a new REG rtx. Make sure ORIGINAL_REGNO is set properly, and
237 don't attempt to share with the various global pieces of rtl (such as
238 frame_pointer_rtx). */
241 gen_raw_REG (mode, regno)
242 enum machine_mode mode;
243 int regno;
245 rtx x = gen_rtx_raw_REG (mode, regno);
246 ORIGINAL_REGNO (x) = regno;
247 return x;
250 /* There are some RTL codes that require special attention; the generation
251 functions do the raw handling. If you add to this list, modify
252 special_rtx in gengenrtl.c as well. */
255 gen_rtx_CONST_INT (mode, arg)
256 enum machine_mode mode ATTRIBUTE_UNUSED;
257 HOST_WIDE_INT arg;
259 void **slot;
261 if (arg >= - MAX_SAVED_CONST_INT && arg <= MAX_SAVED_CONST_INT)
262 return const_int_rtx[arg + MAX_SAVED_CONST_INT];
264 #if STORE_FLAG_VALUE != 1 && STORE_FLAG_VALUE != -1
265 if (const_true_rtx && arg == STORE_FLAG_VALUE)
266 return const_true_rtx;
267 #endif
269 /* Look up the CONST_INT in the hash table. */
270 slot = htab_find_slot_with_hash (const_int_htab, &arg,
271 (hashval_t) arg, INSERT);
272 if (*slot == 0)
273 *slot = gen_rtx_raw_CONST_INT (VOIDmode, arg);
275 return (rtx) *slot;
278 /* CONST_DOUBLEs needs special handling because their length is known
279 only at run-time. */
282 gen_rtx_CONST_DOUBLE (mode, arg0, arg1, arg2)
283 enum machine_mode mode;
284 rtx arg0;
285 HOST_WIDE_INT arg1, arg2;
287 rtx r = rtx_alloc (CONST_DOUBLE);
288 int i;
290 PUT_MODE (r, mode);
291 XEXP (r, 0) = arg0;
292 X0EXP (r, 1) = NULL_RTX;
293 XWINT (r, 2) = arg1;
294 XWINT (r, 3) = arg2;
296 for (i = GET_RTX_LENGTH (CONST_DOUBLE) - 1; i > 3; --i)
297 XWINT (r, i) = 0;
299 return r;
303 gen_rtx_REG (mode, regno)
304 enum machine_mode mode;
305 int regno;
307 /* In case the MD file explicitly references the frame pointer, have
308 all such references point to the same frame pointer. This is
309 used during frame pointer elimination to distinguish the explicit
310 references to these registers from pseudos that happened to be
311 assigned to them.
313 If we have eliminated the frame pointer or arg pointer, we will
314 be using it as a normal register, for example as a spill
315 register. In such cases, we might be accessing it in a mode that
316 is not Pmode and therefore cannot use the pre-allocated rtx.
318 Also don't do this when we are making new REGs in reload, since
319 we don't want to get confused with the real pointers. */
321 if (mode == Pmode && !reload_in_progress)
323 if (regno == FRAME_POINTER_REGNUM)
324 return frame_pointer_rtx;
325 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
326 if (regno == HARD_FRAME_POINTER_REGNUM)
327 return hard_frame_pointer_rtx;
328 #endif
329 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM && HARD_FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
330 if (regno == ARG_POINTER_REGNUM)
331 return arg_pointer_rtx;
332 #endif
333 #ifdef RETURN_ADDRESS_POINTER_REGNUM
334 if (regno == RETURN_ADDRESS_POINTER_REGNUM)
335 return return_address_pointer_rtx;
336 #endif
337 if (regno == STACK_POINTER_REGNUM)
338 return stack_pointer_rtx;
341 return gen_raw_REG (mode, regno);
345 gen_rtx_MEM (mode, addr)
346 enum machine_mode mode;
347 rtx addr;
349 rtx rt = gen_rtx_raw_MEM (mode, addr);
351 /* This field is not cleared by the mere allocation of the rtx, so
352 we clear it here. */
353 MEM_ALIAS_SET (rt) = 0;
355 return rt;
359 gen_rtx_SUBREG (mode, reg, offset)
360 enum machine_mode mode;
361 rtx reg;
362 int offset;
364 /* This is the most common failure type.
365 Catch it early so we can see who does it. */
366 if ((offset % GET_MODE_SIZE (mode)) != 0)
367 abort ();
369 /* This check isn't usable right now because combine will
370 throw arbitrary crap like a CALL into a SUBREG in
371 gen_lowpart_for_combine so we must just eat it. */
372 #if 0
373 /* Check for this too. */
374 if (offset >= GET_MODE_SIZE (GET_MODE (reg)))
375 abort ();
376 #endif
377 return gen_rtx_fmt_ei (SUBREG, mode, reg, offset);
380 /* Generate a SUBREG representing the least-significant part
381 * of REG if MODE is smaller than mode of REG, otherwise
382 * paradoxical SUBREG. */
384 gen_lowpart_SUBREG (mode, reg)
385 enum machine_mode mode;
386 rtx reg;
388 enum machine_mode inmode;
390 inmode = GET_MODE (reg);
391 if (inmode == VOIDmode)
392 inmode = mode;
393 return gen_rtx_SUBREG (mode, reg,
394 subreg_lowpart_offset (mode, inmode));
397 /* rtx gen_rtx (code, mode, [element1, ..., elementn])
399 ** This routine generates an RTX of the size specified by
400 ** <code>, which is an RTX code. The RTX structure is initialized
401 ** from the arguments <element1> through <elementn>, which are
402 ** interpreted according to the specific RTX type's format. The
403 ** special machine mode associated with the rtx (if any) is specified
404 ** in <mode>.
406 ** gen_rtx can be invoked in a way which resembles the lisp-like
407 ** rtx it will generate. For example, the following rtx structure:
409 ** (plus:QI (mem:QI (reg:SI 1))
410 ** (mem:QI (plusw:SI (reg:SI 2) (reg:SI 3))))
412 ** ...would be generated by the following C code:
414 ** gen_rtx (PLUS, QImode,
415 ** gen_rtx (MEM, QImode,
416 ** gen_rtx (REG, SImode, 1)),
417 ** gen_rtx (MEM, QImode,
418 ** gen_rtx (PLUS, SImode,
419 ** gen_rtx (REG, SImode, 2),
420 ** gen_rtx (REG, SImode, 3)))),
423 /*VARARGS2*/
425 gen_rtx VPARAMS ((enum rtx_code code, enum machine_mode mode, ...))
427 register int i; /* Array indices... */
428 register const char *fmt; /* Current rtx's format... */
429 register rtx rt_val; /* RTX to return to caller... */
431 VA_OPEN (p, mode);
432 VA_FIXEDARG (p, enum rtx_code, code);
433 VA_FIXEDARG (p, enum machine_mode, mode);
435 switch (code)
437 case CONST_INT:
438 rt_val = gen_rtx_CONST_INT (mode, va_arg (p, HOST_WIDE_INT));
439 break;
441 case CONST_DOUBLE:
443 rtx arg0 = va_arg (p, rtx);
444 HOST_WIDE_INT arg1 = va_arg (p, HOST_WIDE_INT);
445 HOST_WIDE_INT arg2 = va_arg (p, HOST_WIDE_INT);
446 rt_val = gen_rtx_CONST_DOUBLE (mode, arg0, arg1, arg2);
448 break;
450 case REG:
451 rt_val = gen_rtx_REG (mode, va_arg (p, int));
452 break;
454 case MEM:
455 rt_val = gen_rtx_MEM (mode, va_arg (p, rtx));
456 break;
458 default:
459 rt_val = rtx_alloc (code); /* Allocate the storage space. */
460 rt_val->mode = mode; /* Store the machine mode... */
462 fmt = GET_RTX_FORMAT (code); /* Find the right format... */
463 for (i = 0; i < GET_RTX_LENGTH (code); i++)
465 switch (*fmt++)
467 case '0': /* Unused field. */
468 break;
470 case 'i': /* An integer? */
471 XINT (rt_val, i) = va_arg (p, int);
472 break;
474 case 'w': /* A wide integer? */
475 XWINT (rt_val, i) = va_arg (p, HOST_WIDE_INT);
476 break;
478 case 's': /* A string? */
479 XSTR (rt_val, i) = va_arg (p, char *);
480 break;
482 case 'e': /* An expression? */
483 case 'u': /* An insn? Same except when printing. */
484 XEXP (rt_val, i) = va_arg (p, rtx);
485 break;
487 case 'E': /* An RTX vector? */
488 XVEC (rt_val, i) = va_arg (p, rtvec);
489 break;
491 case 'b': /* A bitmap? */
492 XBITMAP (rt_val, i) = va_arg (p, bitmap);
493 break;
495 case 't': /* A tree? */
496 XTREE (rt_val, i) = va_arg (p, tree);
497 break;
499 default:
500 abort ();
503 break;
506 VA_CLOSE (p);
507 return rt_val;
510 /* gen_rtvec (n, [rt1, ..., rtn])
512 ** This routine creates an rtvec and stores within it the
513 ** pointers to rtx's which are its arguments.
516 /*VARARGS1*/
517 rtvec
518 gen_rtvec VPARAMS ((int n, ...))
520 int i, save_n;
521 rtx *vector;
523 VA_OPEN (p, n);
524 VA_FIXEDARG (p, int, n);
526 if (n == 0)
527 return NULL_RTVEC; /* Don't allocate an empty rtvec... */
529 vector = (rtx *) alloca (n * sizeof (rtx));
531 for (i = 0; i < n; i++)
532 vector[i] = va_arg (p, rtx);
534 /* The definition of VA_* in K&R C causes `n' to go out of scope. */
535 save_n = n;
536 VA_CLOSE (p);
538 return gen_rtvec_v (save_n, vector);
541 rtvec
542 gen_rtvec_v (n, argp)
543 int n;
544 rtx *argp;
546 register int i;
547 register rtvec rt_val;
549 if (n == 0)
550 return NULL_RTVEC; /* Don't allocate an empty rtvec... */
552 rt_val = rtvec_alloc (n); /* Allocate an rtvec... */
554 for (i = 0; i < n; i++)
555 rt_val->elem[i] = *argp++;
557 return rt_val;
561 /* Generate a REG rtx for a new pseudo register of mode MODE.
562 This pseudo is assigned the next sequential register number. */
565 gen_reg_rtx (mode)
566 enum machine_mode mode;
568 struct function *f = cfun;
569 register rtx val;
571 /* Don't let anything called after initial flow analysis create new
572 registers. */
573 if (no_new_pseudos)
574 abort ();
576 if (generating_concat_p
577 && (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
578 || GET_MODE_CLASS (mode) == MODE_COMPLEX_INT))
580 /* For complex modes, don't make a single pseudo.
581 Instead, make a CONCAT of two pseudos.
582 This allows noncontiguous allocation of the real and imaginary parts,
583 which makes much better code. Besides, allocating DCmode
584 pseudos overstrains reload on some machines like the 386. */
585 rtx realpart, imagpart;
586 int size = GET_MODE_UNIT_SIZE (mode);
587 enum machine_mode partmode
588 = mode_for_size (size * BITS_PER_UNIT,
589 (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
590 ? MODE_FLOAT : MODE_INT),
593 realpart = gen_reg_rtx (partmode);
594 imagpart = gen_reg_rtx (partmode);
595 return gen_rtx_CONCAT (mode, realpart, imagpart);
598 /* Make sure regno_pointer_align and regno_reg_rtx are large enough
599 to have an element for this pseudo reg number. */
601 if (reg_rtx_no == f->emit->regno_pointer_align_length)
603 int old_size = f->emit->regno_pointer_align_length;
604 rtx *new1;
605 char *new;
606 new = xrealloc (f->emit->regno_pointer_align, old_size * 2);
607 memset (new + old_size, 0, old_size);
608 f->emit->regno_pointer_align = (unsigned char *) new;
610 new1 = (rtx *) xrealloc (f->emit->x_regno_reg_rtx,
611 old_size * 2 * sizeof (rtx));
612 memset (new1 + old_size, 0, old_size * sizeof (rtx));
613 regno_reg_rtx = new1;
615 f->emit->regno_pointer_align_length = old_size * 2;
618 val = gen_raw_REG (mode, reg_rtx_no);
619 regno_reg_rtx[reg_rtx_no++] = val;
620 return val;
623 /* Identify REG (which may be a CONCAT) as a user register. */
625 void
626 mark_user_reg (reg)
627 rtx reg;
629 if (GET_CODE (reg) == CONCAT)
631 REG_USERVAR_P (XEXP (reg, 0)) = 1;
632 REG_USERVAR_P (XEXP (reg, 1)) = 1;
634 else if (GET_CODE (reg) == REG)
635 REG_USERVAR_P (reg) = 1;
636 else
637 abort ();
640 /* Identify REG as a probable pointer register and show its alignment
641 as ALIGN, if nonzero. */
643 void
644 mark_reg_pointer (reg, align)
645 rtx reg;
646 int align;
648 if (! REG_POINTER (reg))
650 REG_POINTER (reg) = 1;
652 if (align)
653 REGNO_POINTER_ALIGN (REGNO (reg)) = align;
655 else if (align && align < REGNO_POINTER_ALIGN (REGNO (reg)))
656 /* We can no-longer be sure just how aligned this pointer is */
657 REGNO_POINTER_ALIGN (REGNO (reg)) = align;
660 /* Return 1 plus largest pseudo reg number used in the current function. */
663 max_reg_num ()
665 return reg_rtx_no;
668 /* Return 1 + the largest label number used so far in the current function. */
671 max_label_num ()
673 if (last_label_num && label_num == base_label_num)
674 return last_label_num;
675 return label_num;
678 /* Return first label number used in this function (if any were used). */
681 get_first_label_num ()
683 return first_label_num;
686 /* Return the final regno of X, which is a SUBREG of a hard
687 register. */
689 subreg_hard_regno (x, check_mode)
690 register rtx x;
691 int check_mode;
693 enum machine_mode mode = GET_MODE (x);
694 unsigned int byte_offset, base_regno, final_regno;
695 rtx reg = SUBREG_REG (x);
697 /* This is where we attempt to catch illegal subregs
698 created by the compiler. */
699 if (GET_CODE (x) != SUBREG
700 || GET_CODE (reg) != REG)
701 abort ();
702 base_regno = REGNO (reg);
703 if (base_regno >= FIRST_PSEUDO_REGISTER)
704 abort ();
705 if (check_mode && ! HARD_REGNO_MODE_OK (base_regno, GET_MODE (reg)))
706 abort ();
708 /* Catch non-congruent offsets too. */
709 byte_offset = SUBREG_BYTE (x);
710 if ((byte_offset % GET_MODE_SIZE (mode)) != 0)
711 abort ();
713 final_regno = subreg_regno (x);
715 return final_regno;
718 /* Return a value representing some low-order bits of X, where the number
719 of low-order bits is given by MODE. Note that no conversion is done
720 between floating-point and fixed-point values, rather, the bit
721 representation is returned.
723 This function handles the cases in common between gen_lowpart, below,
724 and two variants in cse.c and combine.c. These are the cases that can
725 be safely handled at all points in the compilation.
727 If this is not a case we can handle, return 0. */
730 gen_lowpart_common (mode, x)
731 enum machine_mode mode;
732 register rtx x;
734 int msize = GET_MODE_SIZE (mode);
735 int xsize = GET_MODE_SIZE (GET_MODE (x));
736 int offset = 0;
738 if (GET_MODE (x) == mode)
739 return x;
741 /* MODE must occupy no more words than the mode of X. */
742 if (GET_MODE (x) != VOIDmode
743 && ((msize + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD
744 > ((xsize + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)))
745 return 0;
747 offset = subreg_lowpart_offset (mode, GET_MODE (x));
749 if ((GET_CODE (x) == ZERO_EXTEND || GET_CODE (x) == SIGN_EXTEND)
750 && (GET_MODE_CLASS (mode) == MODE_INT
751 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT))
753 /* If we are getting the low-order part of something that has been
754 sign- or zero-extended, we can either just use the object being
755 extended or make a narrower extension. If we want an even smaller
756 piece than the size of the object being extended, call ourselves
757 recursively.
759 This case is used mostly by combine and cse. */
761 if (GET_MODE (XEXP (x, 0)) == mode)
762 return XEXP (x, 0);
763 else if (GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (XEXP (x, 0))))
764 return gen_lowpart_common (mode, XEXP (x, 0));
765 else if (GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (x)))
766 return gen_rtx_fmt_e (GET_CODE (x), mode, XEXP (x, 0));
768 else if (GET_CODE (x) == SUBREG || GET_CODE (x) == REG
769 || GET_CODE (x) == CONCAT)
770 return simplify_gen_subreg (mode, x, GET_MODE (x), offset);
771 /* If X is a CONST_INT or a CONST_DOUBLE, extract the appropriate bits
772 from the low-order part of the constant. */
773 else if ((GET_MODE_CLASS (mode) == MODE_INT
774 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
775 && GET_MODE (x) == VOIDmode
776 && (GET_CODE (x) == CONST_INT || GET_CODE (x) == CONST_DOUBLE))
778 /* If MODE is twice the host word size, X is already the desired
779 representation. Otherwise, if MODE is wider than a word, we can't
780 do this. If MODE is exactly a word, return just one CONST_INT. */
782 if (GET_MODE_BITSIZE (mode) >= 2 * HOST_BITS_PER_WIDE_INT)
783 return x;
784 else if (GET_MODE_BITSIZE (mode) > HOST_BITS_PER_WIDE_INT)
785 return 0;
786 else if (GET_MODE_BITSIZE (mode) == HOST_BITS_PER_WIDE_INT)
787 return (GET_CODE (x) == CONST_INT ? x
788 : GEN_INT (CONST_DOUBLE_LOW (x)));
789 else
791 /* MODE must be narrower than HOST_BITS_PER_WIDE_INT. */
792 HOST_WIDE_INT val = (GET_CODE (x) == CONST_INT ? INTVAL (x)
793 : CONST_DOUBLE_LOW (x));
795 /* Sign extend to HOST_WIDE_INT. */
796 val = trunc_int_for_mode (val, mode);
798 return (GET_CODE (x) == CONST_INT && INTVAL (x) == val ? x
799 : GEN_INT (val));
803 #ifndef REAL_ARITHMETIC
804 /* If X is an integral constant but we want it in floating-point, it
805 must be the case that we have a union of an integer and a floating-point
806 value. If the machine-parameters allow it, simulate that union here
807 and return the result. The two-word and single-word cases are
808 different. */
810 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
811 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
812 || flag_pretend_float)
813 && GET_MODE_CLASS (mode) == MODE_FLOAT
814 && GET_MODE_SIZE (mode) == UNITS_PER_WORD
815 && GET_CODE (x) == CONST_INT
816 && sizeof (float) * HOST_BITS_PER_CHAR == HOST_BITS_PER_WIDE_INT)
818 union {HOST_WIDE_INT i; float d; } u;
820 u.i = INTVAL (x);
821 return CONST_DOUBLE_FROM_REAL_VALUE (u.d, mode);
823 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
824 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
825 || flag_pretend_float)
826 && GET_MODE_CLASS (mode) == MODE_FLOAT
827 && GET_MODE_SIZE (mode) == 2 * UNITS_PER_WORD
828 && (GET_CODE (x) == CONST_INT || GET_CODE (x) == CONST_DOUBLE)
829 && GET_MODE (x) == VOIDmode
830 && (sizeof (double) * HOST_BITS_PER_CHAR
831 == 2 * HOST_BITS_PER_WIDE_INT))
833 union {HOST_WIDE_INT i[2]; double d; } u;
834 HOST_WIDE_INT low, high;
836 if (GET_CODE (x) == CONST_INT)
837 low = INTVAL (x), high = low >> (HOST_BITS_PER_WIDE_INT -1);
838 else
839 low = CONST_DOUBLE_LOW (x), high = CONST_DOUBLE_HIGH (x);
841 #ifdef HOST_WORDS_BIG_ENDIAN
842 u.i[0] = high, u.i[1] = low;
843 #else
844 u.i[0] = low, u.i[1] = high;
845 #endif
847 return CONST_DOUBLE_FROM_REAL_VALUE (u.d, mode);
850 /* Similarly, if this is converting a floating-point value into a
851 single-word integer. Only do this is the host and target parameters are
852 compatible. */
854 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
855 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
856 || flag_pretend_float)
857 && (GET_MODE_CLASS (mode) == MODE_INT
858 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
859 && GET_CODE (x) == CONST_DOUBLE
860 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT
861 && GET_MODE_BITSIZE (mode) == BITS_PER_WORD)
862 return constant_subword (x, (offset / UNITS_PER_WORD), GET_MODE (x));
864 /* Similarly, if this is converting a floating-point value into a
865 two-word integer, we can do this one word at a time and make an
866 integer. Only do this is the host and target parameters are
867 compatible. */
869 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
870 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
871 || flag_pretend_float)
872 && (GET_MODE_CLASS (mode) == MODE_INT
873 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
874 && GET_CODE (x) == CONST_DOUBLE
875 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT
876 && GET_MODE_BITSIZE (mode) == 2 * BITS_PER_WORD)
878 rtx lowpart, highpart;
880 lowpart = constant_subword (x,
881 (offset / UNITS_PER_WORD) + WORDS_BIG_ENDIAN,
882 GET_MODE (x));
883 highpart = constant_subword (x,
884 (offset / UNITS_PER_WORD) + (! WORDS_BIG_ENDIAN),
885 GET_MODE (x));
886 if (lowpart && GET_CODE (lowpart) == CONST_INT
887 && highpart && GET_CODE (highpart) == CONST_INT)
888 return immed_double_const (INTVAL (lowpart), INTVAL (highpart), mode);
890 #else /* ifndef REAL_ARITHMETIC */
892 /* When we have a FP emulator, we can handle all conversions between
893 FP and integer operands. This simplifies reload because it
894 doesn't have to deal with constructs like (subreg:DI
895 (const_double:SF ...)) or (subreg:DF (const_int ...)). */
896 /* Single-precision floats are always 32-bits and double-precision
897 floats are always 64-bits. */
899 else if (GET_MODE_CLASS (mode) == MODE_FLOAT
900 && GET_MODE_BITSIZE (mode) == 32
901 && GET_CODE (x) == CONST_INT)
903 REAL_VALUE_TYPE r;
904 HOST_WIDE_INT i;
906 i = INTVAL (x);
907 r = REAL_VALUE_FROM_TARGET_SINGLE (i);
908 return CONST_DOUBLE_FROM_REAL_VALUE (r, mode);
910 else if (GET_MODE_CLASS (mode) == MODE_FLOAT
911 && GET_MODE_BITSIZE (mode) == 64
912 && (GET_CODE (x) == CONST_INT || GET_CODE (x) == CONST_DOUBLE)
913 && GET_MODE (x) == VOIDmode)
915 REAL_VALUE_TYPE r;
916 HOST_WIDE_INT i[2];
917 HOST_WIDE_INT low, high;
919 if (GET_CODE (x) == CONST_INT)
921 low = INTVAL (x);
922 high = low >> (HOST_BITS_PER_WIDE_INT - 1);
924 else
926 low = CONST_DOUBLE_LOW (x);
927 high = CONST_DOUBLE_HIGH (x);
930 /* REAL_VALUE_TARGET_DOUBLE takes the addressing order of the
931 target machine. */
932 if (WORDS_BIG_ENDIAN)
933 i[0] = high, i[1] = low;
934 else
935 i[0] = low, i[1] = high;
937 r = REAL_VALUE_FROM_TARGET_DOUBLE (i);
938 return CONST_DOUBLE_FROM_REAL_VALUE (r, mode);
940 else if ((GET_MODE_CLASS (mode) == MODE_INT
941 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
942 && GET_CODE (x) == CONST_DOUBLE
943 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
945 REAL_VALUE_TYPE r;
946 long i[4]; /* Only the low 32 bits of each 'long' are used. */
947 int endian = WORDS_BIG_ENDIAN ? 1 : 0;
949 REAL_VALUE_FROM_CONST_DOUBLE (r, x);
950 switch (GET_MODE_BITSIZE (GET_MODE (x)))
952 case 32:
953 REAL_VALUE_TO_TARGET_SINGLE (r, i[endian]);
954 i[1 - endian] = 0;
955 break;
956 case 64:
957 REAL_VALUE_TO_TARGET_DOUBLE (r, i);
958 break;
959 case 96:
960 REAL_VALUE_TO_TARGET_LONG_DOUBLE (r, i + endian);
961 i[3-3*endian] = 0;
962 break;
963 case 128:
964 REAL_VALUE_TO_TARGET_LONG_DOUBLE (r, i);
965 break;
966 default:
967 abort ();
970 /* Now, pack the 32-bit elements of the array into a CONST_DOUBLE
971 and return it. */
972 #if HOST_BITS_PER_WIDE_INT == 32
973 return immed_double_const (i[endian], i[1 - endian], mode);
974 #else
976 int c;
978 if (HOST_BITS_PER_WIDE_INT != 64)
979 abort ();
981 for (c = 0; c < 4; c++)
982 i[c] &= ~ (0L);
984 switch (GET_MODE_BITSIZE (GET_MODE (x)))
986 case 32:
987 case 64:
988 return immed_double_const (((unsigned long) i[endian]) |
989 (((HOST_WIDE_INT) i[1-endian]) << 32),
990 0, mode);
991 case 96:
992 case 128:
993 return immed_double_const (((unsigned long) i[endian*3]) |
994 (((HOST_WIDE_INT) i[1+endian]) << 32),
995 ((unsigned long) i[2-endian]) |
996 (((HOST_WIDE_INT) i[3-endian*3]) << 32),
997 mode);
998 default:
999 abort ();
1002 #endif
1004 #endif /* ifndef REAL_ARITHMETIC */
1006 /* Otherwise, we can't do this. */
1007 return 0;
1010 /* Return the real part (which has mode MODE) of a complex value X.
1011 This always comes at the low address in memory. */
1014 gen_realpart (mode, x)
1015 enum machine_mode mode;
1016 register rtx x;
1018 if (WORDS_BIG_ENDIAN
1019 && GET_MODE_BITSIZE (mode) < BITS_PER_WORD
1020 && REG_P (x)
1021 && REGNO (x) < FIRST_PSEUDO_REGISTER)
1022 internal_error
1023 ("Can't access real part of complex value in hard register");
1024 else if (WORDS_BIG_ENDIAN)
1025 return gen_highpart (mode, x);
1026 else
1027 return gen_lowpart (mode, x);
1030 /* Return the imaginary part (which has mode MODE) of a complex value X.
1031 This always comes at the high address in memory. */
1034 gen_imagpart (mode, x)
1035 enum machine_mode mode;
1036 register rtx x;
1038 if (WORDS_BIG_ENDIAN)
1039 return gen_lowpart (mode, x);
1040 else if (! WORDS_BIG_ENDIAN
1041 && GET_MODE_BITSIZE (mode) < BITS_PER_WORD
1042 && REG_P (x)
1043 && REGNO (x) < FIRST_PSEUDO_REGISTER)
1044 internal_error
1045 ("can't access imaginary part of complex value in hard register");
1046 else
1047 return gen_highpart (mode, x);
1050 /* Return 1 iff X, assumed to be a SUBREG,
1051 refers to the real part of the complex value in its containing reg.
1052 Complex values are always stored with the real part in the first word,
1053 regardless of WORDS_BIG_ENDIAN. */
1056 subreg_realpart_p (x)
1057 rtx x;
1059 if (GET_CODE (x) != SUBREG)
1060 abort ();
1062 return ((unsigned int) SUBREG_BYTE (x)
1063 < GET_MODE_UNIT_SIZE (GET_MODE (SUBREG_REG (x))));
1066 /* Assuming that X is an rtx (e.g., MEM, REG or SUBREG) for a value,
1067 return an rtx (MEM, SUBREG, or CONST_INT) that refers to the
1068 least-significant part of X.
1069 MODE specifies how big a part of X to return;
1070 it usually should not be larger than a word.
1071 If X is a MEM whose address is a QUEUED, the value may be so also. */
1074 gen_lowpart (mode, x)
1075 enum machine_mode mode;
1076 register rtx x;
1078 rtx result = gen_lowpart_common (mode, x);
1080 if (result)
1081 return result;
1082 else if (GET_CODE (x) == REG)
1084 /* Must be a hard reg that's not valid in MODE. */
1085 result = gen_lowpart_common (mode, copy_to_reg (x));
1086 if (result == 0)
1087 abort ();
1088 return result;
1090 else if (GET_CODE (x) == MEM)
1092 /* The only additional case we can do is MEM. */
1093 register int offset = 0;
1094 if (WORDS_BIG_ENDIAN)
1095 offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
1096 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
1098 if (BYTES_BIG_ENDIAN)
1099 /* Adjust the address so that the address-after-the-data
1100 is unchanged. */
1101 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
1102 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
1104 return adjust_address (x, mode, offset);
1106 else if (GET_CODE (x) == ADDRESSOF)
1107 return gen_lowpart (mode, force_reg (GET_MODE (x), x));
1108 else
1109 abort ();
1112 /* Like `gen_lowpart', but refer to the most significant part.
1113 This is used to access the imaginary part of a complex number. */
1116 gen_highpart (mode, x)
1117 enum machine_mode mode;
1118 register rtx x;
1120 unsigned int msize = GET_MODE_SIZE (mode);
1121 rtx result;
1123 /* This case loses if X is a subreg. To catch bugs early,
1124 complain if an invalid MODE is used even in other cases. */
1125 if (msize > UNITS_PER_WORD
1126 && msize != GET_MODE_UNIT_SIZE (GET_MODE (x)))
1127 abort ();
1129 result = simplify_gen_subreg (mode, x, GET_MODE (x),
1130 subreg_highpart_offset (mode, GET_MODE (x)));
1132 /* simplify_gen_subreg is not guaranteed to return a valid operand for
1133 the target if we have a MEM. gen_highpart must return a valid operand,
1134 emitting code if necessary to do so. */
1135 if (GET_CODE (result) == MEM)
1136 result = validize_mem (result);
1138 if (!result)
1139 abort ();
1140 return result;
1143 /* Like gen_highpart_mode, but accept mode of EXP operand in case EXP can
1144 be VOIDmode constant. */
1146 gen_highpart_mode (outermode, innermode, exp)
1147 enum machine_mode outermode, innermode;
1148 rtx exp;
1150 if (GET_MODE (exp) != VOIDmode)
1152 if (GET_MODE (exp) != innermode)
1153 abort ();
1154 return gen_highpart (outermode, exp);
1156 return simplify_gen_subreg (outermode, exp, innermode,
1157 subreg_highpart_offset (outermode, innermode));
1159 /* Return offset in bytes to get OUTERMODE low part
1160 of the value in mode INNERMODE stored in memory in target format. */
1162 unsigned int
1163 subreg_lowpart_offset (outermode, innermode)
1164 enum machine_mode outermode, innermode;
1166 unsigned int offset = 0;
1167 int difference = (GET_MODE_SIZE (innermode) - GET_MODE_SIZE (outermode));
1169 if (difference > 0)
1171 if (WORDS_BIG_ENDIAN)
1172 offset += (difference / UNITS_PER_WORD) * UNITS_PER_WORD;
1173 if (BYTES_BIG_ENDIAN)
1174 offset += difference % UNITS_PER_WORD;
1177 return offset;
1180 /* Return offset in bytes to get OUTERMODE high part
1181 of the value in mode INNERMODE stored in memory in target format. */
1182 unsigned int
1183 subreg_highpart_offset (outermode, innermode)
1184 enum machine_mode outermode, innermode;
1186 unsigned int offset = 0;
1187 int difference = (GET_MODE_SIZE (innermode) - GET_MODE_SIZE (outermode));
1189 if (GET_MODE_SIZE (innermode) < GET_MODE_SIZE (outermode))
1190 abort ();
1192 if (difference > 0)
1194 if (! WORDS_BIG_ENDIAN)
1195 offset += (difference / UNITS_PER_WORD) * UNITS_PER_WORD;
1196 if (! BYTES_BIG_ENDIAN)
1197 offset += difference % UNITS_PER_WORD;
1200 return offset;
1203 /* Return 1 iff X, assumed to be a SUBREG,
1204 refers to the least significant part of its containing reg.
1205 If X is not a SUBREG, always return 1 (it is its own low part!). */
1208 subreg_lowpart_p (x)
1209 rtx x;
1211 if (GET_CODE (x) != SUBREG)
1212 return 1;
1213 else if (GET_MODE (SUBREG_REG (x)) == VOIDmode)
1214 return 0;
1216 return (subreg_lowpart_offset (GET_MODE (x), GET_MODE (SUBREG_REG (x)))
1217 == SUBREG_BYTE (x));
1221 /* Helper routine for all the constant cases of operand_subword.
1222 Some places invoke this directly. */
1225 constant_subword (op, offset, mode)
1226 rtx op;
1227 int offset;
1228 enum machine_mode mode;
1230 int size_ratio = HOST_BITS_PER_WIDE_INT / BITS_PER_WORD;
1231 HOST_WIDE_INT val;
1233 /* If OP is already an integer word, return it. */
1234 if (GET_MODE_CLASS (mode) == MODE_INT
1235 && GET_MODE_SIZE (mode) == UNITS_PER_WORD)
1236 return op;
1238 #ifdef REAL_ARITHMETIC
1239 /* The output is some bits, the width of the target machine's word.
1240 A wider-word host can surely hold them in a CONST_INT. A narrower-word
1241 host can't. */
1242 if (HOST_BITS_PER_WIDE_INT >= BITS_PER_WORD
1243 && GET_MODE_CLASS (mode) == MODE_FLOAT
1244 && GET_MODE_BITSIZE (mode) == 64
1245 && GET_CODE (op) == CONST_DOUBLE)
1247 long k[2];
1248 REAL_VALUE_TYPE rv;
1250 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
1251 REAL_VALUE_TO_TARGET_DOUBLE (rv, k);
1253 /* We handle 32-bit and >= 64-bit words here. Note that the order in
1254 which the words are written depends on the word endianness.
1255 ??? This is a potential portability problem and should
1256 be fixed at some point.
1258 We must excercise caution with the sign bit. By definition there
1259 are 32 significant bits in K; there may be more in a HOST_WIDE_INT.
1260 Consider a host with a 32-bit long and a 64-bit HOST_WIDE_INT.
1261 So we explicitly mask and sign-extend as necessary. */
1262 if (BITS_PER_WORD == 32)
1264 val = k[offset];
1265 val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
1266 return GEN_INT (val);
1268 #if HOST_BITS_PER_WIDE_INT >= 64
1269 else if (BITS_PER_WORD >= 64 && offset == 0)
1271 val = k[! WORDS_BIG_ENDIAN];
1272 val = (((val & 0xffffffff) ^ 0x80000000) - 0x80000000) << 32;
1273 val |= (HOST_WIDE_INT) k[WORDS_BIG_ENDIAN] & 0xffffffff;
1274 return GEN_INT (val);
1276 #endif
1277 else if (BITS_PER_WORD == 16)
1279 val = k[offset >> 1];
1280 if ((offset & 1) == ! WORDS_BIG_ENDIAN)
1281 val >>= 16;
1282 val = ((val & 0xffff) ^ 0x8000) - 0x8000;
1283 return GEN_INT (val);
1285 else
1286 abort ();
1288 else if (HOST_BITS_PER_WIDE_INT >= BITS_PER_WORD
1289 && GET_MODE_CLASS (mode) == MODE_FLOAT
1290 && GET_MODE_BITSIZE (mode) > 64
1291 && GET_CODE (op) == CONST_DOUBLE)
1293 long k[4];
1294 REAL_VALUE_TYPE rv;
1296 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
1297 REAL_VALUE_TO_TARGET_LONG_DOUBLE (rv, k);
1299 if (BITS_PER_WORD == 32)
1301 val = k[offset];
1302 val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
1303 return GEN_INT (val);
1305 #if HOST_BITS_PER_WIDE_INT >= 64
1306 else if (BITS_PER_WORD >= 64 && offset <= 1)
1308 val = k[offset * 2 + ! WORDS_BIG_ENDIAN];
1309 val = (((val & 0xffffffff) ^ 0x80000000) - 0x80000000) << 32;
1310 val |= (HOST_WIDE_INT) k[offset * 2 + WORDS_BIG_ENDIAN] & 0xffffffff;
1311 return GEN_INT (val);
1313 #endif
1314 else
1315 abort ();
1317 #else /* no REAL_ARITHMETIC */
1318 if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
1319 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
1320 || flag_pretend_float)
1321 && GET_MODE_CLASS (mode) == MODE_FLOAT
1322 && GET_MODE_SIZE (mode) == 2 * UNITS_PER_WORD
1323 && GET_CODE (op) == CONST_DOUBLE)
1325 /* The constant is stored in the host's word-ordering,
1326 but we want to access it in the target's word-ordering. Some
1327 compilers don't like a conditional inside macro args, so we have two
1328 copies of the return. */
1329 #ifdef HOST_WORDS_BIG_ENDIAN
1330 return GEN_INT (offset == WORDS_BIG_ENDIAN
1331 ? CONST_DOUBLE_HIGH (op) : CONST_DOUBLE_LOW (op));
1332 #else
1333 return GEN_INT (offset != WORDS_BIG_ENDIAN
1334 ? CONST_DOUBLE_HIGH (op) : CONST_DOUBLE_LOW (op));
1335 #endif
1337 #endif /* no REAL_ARITHMETIC */
1339 /* Single word float is a little harder, since single- and double-word
1340 values often do not have the same high-order bits. We have already
1341 verified that we want the only defined word of the single-word value. */
1342 #ifdef REAL_ARITHMETIC
1343 if (GET_MODE_CLASS (mode) == MODE_FLOAT
1344 && GET_MODE_BITSIZE (mode) == 32
1345 && GET_CODE (op) == CONST_DOUBLE)
1347 long l;
1348 REAL_VALUE_TYPE rv;
1350 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
1351 REAL_VALUE_TO_TARGET_SINGLE (rv, l);
1353 /* Sign extend from known 32-bit value to HOST_WIDE_INT. */
1354 val = l;
1355 val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
1357 if (BITS_PER_WORD == 16)
1359 if ((offset & 1) == ! WORDS_BIG_ENDIAN)
1360 val >>= 16;
1361 val = ((val & 0xffff) ^ 0x8000) - 0x8000;
1364 return GEN_INT (val);
1366 #else
1367 if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
1368 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
1369 || flag_pretend_float)
1370 && sizeof (float) * 8 == HOST_BITS_PER_WIDE_INT
1371 && GET_MODE_CLASS (mode) == MODE_FLOAT
1372 && GET_MODE_SIZE (mode) == UNITS_PER_WORD
1373 && GET_CODE (op) == CONST_DOUBLE)
1375 double d;
1376 union {float f; HOST_WIDE_INT i; } u;
1378 REAL_VALUE_FROM_CONST_DOUBLE (d, op);
1380 u.f = d;
1381 return GEN_INT (u.i);
1383 if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
1384 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
1385 || flag_pretend_float)
1386 && sizeof (double) * 8 == HOST_BITS_PER_WIDE_INT
1387 && GET_MODE_CLASS (mode) == MODE_FLOAT
1388 && GET_MODE_SIZE (mode) == UNITS_PER_WORD
1389 && GET_CODE (op) == CONST_DOUBLE)
1391 double d;
1392 union {double d; HOST_WIDE_INT i; } u;
1394 REAL_VALUE_FROM_CONST_DOUBLE (d, op);
1396 u.d = d;
1397 return GEN_INT (u.i);
1399 #endif /* no REAL_ARITHMETIC */
1401 /* The only remaining cases that we can handle are integers.
1402 Convert to proper endianness now since these cases need it.
1403 At this point, offset == 0 means the low-order word.
1405 We do not want to handle the case when BITS_PER_WORD <= HOST_BITS_PER_INT
1406 in general. However, if OP is (const_int 0), we can just return
1407 it for any word. */
1409 if (op == const0_rtx)
1410 return op;
1412 if (GET_MODE_CLASS (mode) != MODE_INT
1413 || (GET_CODE (op) != CONST_INT && GET_CODE (op) != CONST_DOUBLE)
1414 || BITS_PER_WORD > HOST_BITS_PER_WIDE_INT)
1415 return 0;
1417 if (WORDS_BIG_ENDIAN)
1418 offset = GET_MODE_SIZE (mode) / UNITS_PER_WORD - 1 - offset;
1420 /* Find out which word on the host machine this value is in and get
1421 it from the constant. */
1422 val = (offset / size_ratio == 0
1423 ? (GET_CODE (op) == CONST_INT ? INTVAL (op) : CONST_DOUBLE_LOW (op))
1424 : (GET_CODE (op) == CONST_INT
1425 ? (INTVAL (op) < 0 ? ~0 : 0) : CONST_DOUBLE_HIGH (op)));
1427 /* Get the value we want into the low bits of val. */
1428 if (BITS_PER_WORD < HOST_BITS_PER_WIDE_INT)
1429 val = ((val >> ((offset % size_ratio) * BITS_PER_WORD)));
1431 val = trunc_int_for_mode (val, word_mode);
1433 return GEN_INT (val);
1436 /* Return subword OFFSET of operand OP.
1437 The word number, OFFSET, is interpreted as the word number starting
1438 at the low-order address. OFFSET 0 is the low-order word if not
1439 WORDS_BIG_ENDIAN, otherwise it is the high-order word.
1441 If we cannot extract the required word, we return zero. Otherwise,
1442 an rtx corresponding to the requested word will be returned.
1444 VALIDATE_ADDRESS is nonzero if the address should be validated. Before
1445 reload has completed, a valid address will always be returned. After
1446 reload, if a valid address cannot be returned, we return zero.
1448 If VALIDATE_ADDRESS is zero, we simply form the required address; validating
1449 it is the responsibility of the caller.
1451 MODE is the mode of OP in case it is a CONST_INT.
1453 ??? This is still rather broken for some cases. The problem for the
1454 moment is that all callers of this thing provide no 'goal mode' to
1455 tell us to work with. This exists because all callers were written
1456 in a word based SUBREG world.
1457 Now use of this function can be deprecated by simplify_subreg in most
1458 cases.
1462 operand_subword (op, offset, validate_address, mode)
1463 rtx op;
1464 unsigned int offset;
1465 int validate_address;
1466 enum machine_mode mode;
1468 if (mode == VOIDmode)
1469 mode = GET_MODE (op);
1471 if (mode == VOIDmode)
1472 abort ();
1474 /* If OP is narrower than a word, fail. */
1475 if (mode != BLKmode
1476 && (GET_MODE_SIZE (mode) < UNITS_PER_WORD))
1477 return 0;
1479 /* If we want a word outside OP, return zero. */
1480 if (mode != BLKmode
1481 && (offset + 1) * UNITS_PER_WORD > GET_MODE_SIZE (mode))
1482 return const0_rtx;
1484 /* Form a new MEM at the requested address. */
1485 if (GET_CODE (op) == MEM)
1487 rtx new = adjust_address_nv (op, word_mode, offset * UNITS_PER_WORD);
1489 if (! validate_address)
1490 return new;
1492 else if (reload_completed)
1494 if (! strict_memory_address_p (word_mode, XEXP (new, 0)))
1495 return 0;
1497 else
1498 return replace_equiv_address (new, XEXP (new, 0));
1501 /* Rest can be handled by simplify_subreg. */
1502 return simplify_gen_subreg (word_mode, op, mode, (offset * UNITS_PER_WORD));
1505 /* Similar to `operand_subword', but never return 0. If we can't extract
1506 the required subword, put OP into a register and try again. If that fails,
1507 abort. We always validate the address in this case.
1509 MODE is the mode of OP, in case it is CONST_INT. */
1512 operand_subword_force (op, offset, mode)
1513 rtx op;
1514 unsigned int offset;
1515 enum machine_mode mode;
1517 rtx result = operand_subword (op, offset, 1, mode);
1519 if (result)
1520 return result;
1522 if (mode != BLKmode && mode != VOIDmode)
1524 /* If this is a register which can not be accessed by words, copy it
1525 to a pseudo register. */
1526 if (GET_CODE (op) == REG)
1527 op = copy_to_reg (op);
1528 else
1529 op = force_reg (mode, op);
1532 result = operand_subword (op, offset, 1, mode);
1533 if (result == 0)
1534 abort ();
1536 return result;
1539 /* Given a compare instruction, swap the operands.
1540 A test instruction is changed into a compare of 0 against the operand. */
1542 void
1543 reverse_comparison (insn)
1544 rtx insn;
1546 rtx body = PATTERN (insn);
1547 rtx comp;
1549 if (GET_CODE (body) == SET)
1550 comp = SET_SRC (body);
1551 else
1552 comp = SET_SRC (XVECEXP (body, 0, 0));
1554 if (GET_CODE (comp) == COMPARE)
1556 rtx op0 = XEXP (comp, 0);
1557 rtx op1 = XEXP (comp, 1);
1558 XEXP (comp, 0) = op1;
1559 XEXP (comp, 1) = op0;
1561 else
1563 rtx new = gen_rtx_COMPARE (VOIDmode,
1564 CONST0_RTX (GET_MODE (comp)), comp);
1565 if (GET_CODE (body) == SET)
1566 SET_SRC (body) = new;
1567 else
1568 SET_SRC (XVECEXP (body, 0, 0)) = new;
1572 /* Return a memory reference like MEMREF, but with its mode changed
1573 to MODE and its address changed to ADDR.
1574 (VOIDmode means don't change the mode.
1575 NULL for ADDR means don't change the address.)
1576 VALIDATE is nonzero if the returned memory location is required to be
1577 valid. */
1580 change_address_1 (memref, mode, addr, validate)
1581 rtx memref;
1582 enum machine_mode mode;
1583 rtx addr;
1584 int validate;
1586 rtx new;
1588 if (GET_CODE (memref) != MEM)
1589 abort ();
1590 if (mode == VOIDmode)
1591 mode = GET_MODE (memref);
1592 if (addr == 0)
1593 addr = XEXP (memref, 0);
1595 if (validate)
1597 if (reload_in_progress || reload_completed)
1599 if (! memory_address_p (mode, addr))
1600 abort ();
1602 else
1603 addr = memory_address (mode, addr);
1606 if (rtx_equal_p (addr, XEXP (memref, 0)) && mode == GET_MODE (memref))
1607 return memref;
1609 new = gen_rtx_MEM (mode, addr);
1610 MEM_COPY_ATTRIBUTES (new, memref);
1611 return new;
1614 /* Return a memory reference like MEMREF, but with its mode changed
1615 to MODE and its address offset by OFFSET bytes. */
1618 adjust_address (memref, mode, offset)
1619 rtx memref;
1620 enum machine_mode mode;
1621 HOST_WIDE_INT offset;
1623 /* For now, this is just a wrapper for change_address, but eventually
1624 will do memref tracking. */
1625 rtx addr = XEXP (memref, 0);
1627 /* ??? Prefer to create garbage instead of creating shared rtl. */
1628 addr = copy_rtx (addr);
1630 /* If MEMREF is a LO_SUM and the offset is within the alignment of the
1631 object, we can merge it into the LO_SUM. */
1632 if (GET_MODE (memref) != BLKmode && GET_CODE (addr) == LO_SUM
1633 && offset >= 0
1634 && (unsigned HOST_WIDE_INT) offset
1635 < GET_MODE_ALIGNMENT (GET_MODE (memref)) / BITS_PER_UNIT)
1636 addr = gen_rtx_LO_SUM (mode, XEXP (addr, 0),
1637 plus_constant (XEXP (addr, 1), offset));
1638 else
1639 addr = plus_constant (addr, offset);
1641 return change_address (memref, mode, addr);
1644 /* Likewise, but the reference is not required to be valid. */
1647 adjust_address_nv (memref, mode, offset)
1648 rtx memref;
1649 enum machine_mode mode;
1650 HOST_WIDE_INT offset;
1652 /* For now, this is just a wrapper for change_address, but eventually
1653 will do memref tracking. */
1654 rtx addr = XEXP (memref, 0);
1656 /* If MEMREF is a LO_SUM and the offset is within the size of the
1657 object, we can merge it into the LO_SUM. */
1658 if (GET_MODE (memref) != BLKmode && GET_CODE (addr) == LO_SUM
1659 && offset >= 0
1660 && (unsigned HOST_WIDE_INT) offset
1661 < GET_MODE_ALIGNMENT (GET_MODE (memref)) / BITS_PER_UNIT)
1662 addr = gen_rtx_LO_SUM (mode, XEXP (addr, 0),
1663 plus_constant (XEXP (addr, 1), offset));
1664 else
1665 addr = plus_constant (addr, offset);
1667 return change_address_1 (memref, mode, addr, 0);
1670 /* Return a memory reference like MEMREF, but with its address changed to
1671 ADDR. The caller is asserting that the actual piece of memory pointed
1672 to is the same, just the form of the address is being changed, such as
1673 by putting something into a register. */
1676 replace_equiv_address (memref, addr)
1677 rtx memref;
1678 rtx addr;
1680 /* For now, this is just a wrapper for change_address, but eventually
1681 will do memref tracking. */
1682 return change_address (memref, VOIDmode, addr);
1684 /* Likewise, but the reference is not required to be valid. */
1687 replace_equiv_address_nv (memref, addr)
1688 rtx memref;
1689 rtx addr;
1691 /* For now, this is just a wrapper for change_address, but eventually
1692 will do memref tracking. */
1693 return change_address_1 (memref, VOIDmode, addr, 0);
1696 /* Return a newly created CODE_LABEL rtx with a unique label number. */
1699 gen_label_rtx ()
1701 register rtx label;
1703 label = gen_rtx_CODE_LABEL (VOIDmode, 0, NULL_RTX,
1704 NULL_RTX, label_num++, NULL, NULL);
1706 LABEL_NUSES (label) = 0;
1707 LABEL_ALTERNATE_NAME (label) = NULL;
1708 return label;
1711 /* For procedure integration. */
1713 /* Install new pointers to the first and last insns in the chain.
1714 Also, set cur_insn_uid to one higher than the last in use.
1715 Used for an inline-procedure after copying the insn chain. */
1717 void
1718 set_new_first_and_last_insn (first, last)
1719 rtx first, last;
1721 rtx insn;
1723 first_insn = first;
1724 last_insn = last;
1725 cur_insn_uid = 0;
1727 for (insn = first; insn; insn = NEXT_INSN (insn))
1728 cur_insn_uid = MAX (cur_insn_uid, INSN_UID (insn));
1730 cur_insn_uid++;
1733 /* Set the range of label numbers found in the current function.
1734 This is used when belatedly compiling an inline function. */
1736 void
1737 set_new_first_and_last_label_num (first, last)
1738 int first, last;
1740 base_label_num = label_num;
1741 first_label_num = first;
1742 last_label_num = last;
1745 /* Set the last label number found in the current function.
1746 This is used when belatedly compiling an inline function. */
1748 void
1749 set_new_last_label_num (last)
1750 int last;
1752 base_label_num = label_num;
1753 last_label_num = last;
1756 /* Restore all variables describing the current status from the structure *P.
1757 This is used after a nested function. */
1759 void
1760 restore_emit_status (p)
1761 struct function *p ATTRIBUTE_UNUSED;
1763 last_label_num = 0;
1764 clear_emit_caches ();
1767 /* Clear out all parts of the state in F that can safely be discarded
1768 after the function has been compiled, to let garbage collection
1769 reclaim the memory. */
1771 void
1772 free_emit_status (f)
1773 struct function *f;
1775 free (f->emit->x_regno_reg_rtx);
1776 free (f->emit->regno_pointer_align);
1777 free (f->emit);
1778 f->emit = NULL;
1781 /* Go through all the RTL insn bodies and copy any invalid shared
1782 structure. This routine should only be called once. */
1784 void
1785 unshare_all_rtl (fndecl, insn)
1786 tree fndecl;
1787 rtx insn;
1789 tree decl;
1791 /* Make sure that virtual parameters are not shared. */
1792 for (decl = DECL_ARGUMENTS (fndecl); decl; decl = TREE_CHAIN (decl))
1793 SET_DECL_RTL (decl, copy_rtx_if_shared (DECL_RTL (decl)));
1795 /* Make sure that virtual stack slots are not shared. */
1796 unshare_all_decls (DECL_INITIAL (fndecl));
1798 /* Unshare just about everything else. */
1799 unshare_all_rtl_1 (insn);
1801 /* Make sure the addresses of stack slots found outside the insn chain
1802 (such as, in DECL_RTL of a variable) are not shared
1803 with the insn chain.
1805 This special care is necessary when the stack slot MEM does not
1806 actually appear in the insn chain. If it does appear, its address
1807 is unshared from all else at that point. */
1808 stack_slot_list = copy_rtx_if_shared (stack_slot_list);
1811 /* Go through all the RTL insn bodies and copy any invalid shared
1812 structure, again. This is a fairly expensive thing to do so it
1813 should be done sparingly. */
1815 void
1816 unshare_all_rtl_again (insn)
1817 rtx insn;
1819 rtx p;
1820 tree decl;
1822 for (p = insn; p; p = NEXT_INSN (p))
1823 if (INSN_P (p))
1825 reset_used_flags (PATTERN (p));
1826 reset_used_flags (REG_NOTES (p));
1827 reset_used_flags (LOG_LINKS (p));
1830 /* Make sure that virtual stack slots are not shared. */
1831 reset_used_decls (DECL_INITIAL (cfun->decl));
1833 /* Make sure that virtual parameters are not shared. */
1834 for (decl = DECL_ARGUMENTS (cfun->decl); decl; decl = TREE_CHAIN (decl))
1835 reset_used_flags (DECL_RTL (decl));
1837 reset_used_flags (stack_slot_list);
1839 unshare_all_rtl (cfun->decl, insn);
1842 /* Go through all the RTL insn bodies and copy any invalid shared structure.
1843 Assumes the mark bits are cleared at entry. */
1845 static void
1846 unshare_all_rtl_1 (insn)
1847 rtx insn;
1849 for (; insn; insn = NEXT_INSN (insn))
1850 if (INSN_P (insn))
1852 PATTERN (insn) = copy_rtx_if_shared (PATTERN (insn));
1853 REG_NOTES (insn) = copy_rtx_if_shared (REG_NOTES (insn));
1854 LOG_LINKS (insn) = copy_rtx_if_shared (LOG_LINKS (insn));
1858 /* Go through all virtual stack slots of a function and copy any
1859 shared structure. */
1860 static void
1861 unshare_all_decls (blk)
1862 tree blk;
1864 tree t;
1866 /* Copy shared decls. */
1867 for (t = BLOCK_VARS (blk); t; t = TREE_CHAIN (t))
1868 if (DECL_RTL_SET_P (t))
1869 SET_DECL_RTL (t, copy_rtx_if_shared (DECL_RTL (t)));
1871 /* Now process sub-blocks. */
1872 for (t = BLOCK_SUBBLOCKS (blk); t; t = TREE_CHAIN (t))
1873 unshare_all_decls (t);
1876 /* Go through all virtual stack slots of a function and mark them as
1877 not shared. */
1878 static void
1879 reset_used_decls (blk)
1880 tree blk;
1882 tree t;
1884 /* Mark decls. */
1885 for (t = BLOCK_VARS (blk); t; t = TREE_CHAIN (t))
1886 if (DECL_RTL_SET_P (t))
1887 reset_used_flags (DECL_RTL (t));
1889 /* Now process sub-blocks. */
1890 for (t = BLOCK_SUBBLOCKS (blk); t; t = TREE_CHAIN (t))
1891 reset_used_decls (t);
1894 /* Mark ORIG as in use, and return a copy of it if it was already in use.
1895 Recursively does the same for subexpressions. */
1898 copy_rtx_if_shared (orig)
1899 rtx orig;
1901 register rtx x = orig;
1902 register int i;
1903 register enum rtx_code code;
1904 register const char *format_ptr;
1905 int copied = 0;
1907 if (x == 0)
1908 return 0;
1910 code = GET_CODE (x);
1912 /* These types may be freely shared. */
1914 switch (code)
1916 case REG:
1917 case QUEUED:
1918 case CONST_INT:
1919 case CONST_DOUBLE:
1920 case SYMBOL_REF:
1921 case CODE_LABEL:
1922 case PC:
1923 case CC0:
1924 case SCRATCH:
1925 /* SCRATCH must be shared because they represent distinct values. */
1926 return x;
1928 case CONST:
1929 /* CONST can be shared if it contains a SYMBOL_REF. If it contains
1930 a LABEL_REF, it isn't sharable. */
1931 if (GET_CODE (XEXP (x, 0)) == PLUS
1932 && GET_CODE (XEXP (XEXP (x, 0), 0)) == SYMBOL_REF
1933 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT)
1934 return x;
1935 break;
1937 case INSN:
1938 case JUMP_INSN:
1939 case CALL_INSN:
1940 case NOTE:
1941 case BARRIER:
1942 /* The chain of insns is not being copied. */
1943 return x;
1945 case MEM:
1946 /* A MEM is allowed to be shared if its address is constant.
1948 We used to allow sharing of MEMs which referenced
1949 virtual_stack_vars_rtx or virtual_incoming_args_rtx, but
1950 that can lose. instantiate_virtual_regs will not unshare
1951 the MEMs, and combine may change the structure of the address
1952 because it looks safe and profitable in one context, but
1953 in some other context it creates unrecognizable RTL. */
1954 if (CONSTANT_ADDRESS_P (XEXP (x, 0)))
1955 return x;
1957 break;
1959 default:
1960 break;
1963 /* This rtx may not be shared. If it has already been seen,
1964 replace it with a copy of itself. */
1966 if (x->used)
1968 register rtx copy;
1970 copy = rtx_alloc (code);
1971 memcpy (copy, x,
1972 (sizeof (*copy) - sizeof (copy->fld)
1973 + sizeof (copy->fld[0]) * GET_RTX_LENGTH (code)));
1974 x = copy;
1975 copied = 1;
1977 x->used = 1;
1979 /* Now scan the subexpressions recursively.
1980 We can store any replaced subexpressions directly into X
1981 since we know X is not shared! Any vectors in X
1982 must be copied if X was copied. */
1984 format_ptr = GET_RTX_FORMAT (code);
1986 for (i = 0; i < GET_RTX_LENGTH (code); i++)
1988 switch (*format_ptr++)
1990 case 'e':
1991 XEXP (x, i) = copy_rtx_if_shared (XEXP (x, i));
1992 break;
1994 case 'E':
1995 if (XVEC (x, i) != NULL)
1997 register int j;
1998 int len = XVECLEN (x, i);
2000 if (copied && len > 0)
2001 XVEC (x, i) = gen_rtvec_v (len, XVEC (x, i)->elem);
2002 for (j = 0; j < len; j++)
2003 XVECEXP (x, i, j) = copy_rtx_if_shared (XVECEXP (x, i, j));
2005 break;
2008 return x;
2011 /* Clear all the USED bits in X to allow copy_rtx_if_shared to be used
2012 to look for shared sub-parts. */
2014 void
2015 reset_used_flags (x)
2016 rtx x;
2018 register int i, j;
2019 register enum rtx_code code;
2020 register const char *format_ptr;
2022 if (x == 0)
2023 return;
2025 code = GET_CODE (x);
2027 /* These types may be freely shared so we needn't do any resetting
2028 for them. */
2030 switch (code)
2032 case REG:
2033 case QUEUED:
2034 case CONST_INT:
2035 case CONST_DOUBLE:
2036 case SYMBOL_REF:
2037 case CODE_LABEL:
2038 case PC:
2039 case CC0:
2040 return;
2042 case INSN:
2043 case JUMP_INSN:
2044 case CALL_INSN:
2045 case NOTE:
2046 case LABEL_REF:
2047 case BARRIER:
2048 /* The chain of insns is not being copied. */
2049 return;
2051 default:
2052 break;
2055 x->used = 0;
2057 format_ptr = GET_RTX_FORMAT (code);
2058 for (i = 0; i < GET_RTX_LENGTH (code); i++)
2060 switch (*format_ptr++)
2062 case 'e':
2063 reset_used_flags (XEXP (x, i));
2064 break;
2066 case 'E':
2067 for (j = 0; j < XVECLEN (x, i); j++)
2068 reset_used_flags (XVECEXP (x, i, j));
2069 break;
2074 /* Copy X if necessary so that it won't be altered by changes in OTHER.
2075 Return X or the rtx for the pseudo reg the value of X was copied into.
2076 OTHER must be valid as a SET_DEST. */
2079 make_safe_from (x, other)
2080 rtx x, other;
2082 while (1)
2083 switch (GET_CODE (other))
2085 case SUBREG:
2086 other = SUBREG_REG (other);
2087 break;
2088 case STRICT_LOW_PART:
2089 case SIGN_EXTEND:
2090 case ZERO_EXTEND:
2091 other = XEXP (other, 0);
2092 break;
2093 default:
2094 goto done;
2096 done:
2097 if ((GET_CODE (other) == MEM
2098 && ! CONSTANT_P (x)
2099 && GET_CODE (x) != REG
2100 && GET_CODE (x) != SUBREG)
2101 || (GET_CODE (other) == REG
2102 && (REGNO (other) < FIRST_PSEUDO_REGISTER
2103 || reg_mentioned_p (other, x))))
2105 rtx temp = gen_reg_rtx (GET_MODE (x));
2106 emit_move_insn (temp, x);
2107 return temp;
2109 return x;
2112 /* Emission of insns (adding them to the doubly-linked list). */
2114 /* Return the first insn of the current sequence or current function. */
2117 get_insns ()
2119 return first_insn;
2122 /* Return the last insn emitted in current sequence or current function. */
2125 get_last_insn ()
2127 return last_insn;
2130 /* Specify a new insn as the last in the chain. */
2132 void
2133 set_last_insn (insn)
2134 rtx insn;
2136 if (NEXT_INSN (insn) != 0)
2137 abort ();
2138 last_insn = insn;
2141 /* Return the last insn emitted, even if it is in a sequence now pushed. */
2144 get_last_insn_anywhere ()
2146 struct sequence_stack *stack;
2147 if (last_insn)
2148 return last_insn;
2149 for (stack = seq_stack; stack; stack = stack->next)
2150 if (stack->last != 0)
2151 return stack->last;
2152 return 0;
2155 /* Return a number larger than any instruction's uid in this function. */
2158 get_max_uid ()
2160 return cur_insn_uid;
2163 /* Renumber instructions so that no instruction UIDs are wasted. */
2165 void
2166 renumber_insns (stream)
2167 FILE *stream;
2169 rtx insn;
2171 /* If we're not supposed to renumber instructions, don't. */
2172 if (!flag_renumber_insns)
2173 return;
2175 /* If there aren't that many instructions, then it's not really
2176 worth renumbering them. */
2177 if (flag_renumber_insns == 1 && get_max_uid () < 25000)
2178 return;
2180 cur_insn_uid = 1;
2182 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
2184 if (stream)
2185 fprintf (stream, "Renumbering insn %d to %d\n",
2186 INSN_UID (insn), cur_insn_uid);
2187 INSN_UID (insn) = cur_insn_uid++;
2191 /* Return the next insn. If it is a SEQUENCE, return the first insn
2192 of the sequence. */
2195 next_insn (insn)
2196 rtx insn;
2198 if (insn)
2200 insn = NEXT_INSN (insn);
2201 if (insn && GET_CODE (insn) == INSN
2202 && GET_CODE (PATTERN (insn)) == SEQUENCE)
2203 insn = XVECEXP (PATTERN (insn), 0, 0);
2206 return insn;
2209 /* Return the previous insn. If it is a SEQUENCE, return the last insn
2210 of the sequence. */
2213 previous_insn (insn)
2214 rtx insn;
2216 if (insn)
2218 insn = PREV_INSN (insn);
2219 if (insn && GET_CODE (insn) == INSN
2220 && GET_CODE (PATTERN (insn)) == SEQUENCE)
2221 insn = XVECEXP (PATTERN (insn), 0, XVECLEN (PATTERN (insn), 0) - 1);
2224 return insn;
2227 /* Return the next insn after INSN that is not a NOTE. This routine does not
2228 look inside SEQUENCEs. */
2231 next_nonnote_insn (insn)
2232 rtx insn;
2234 while (insn)
2236 insn = NEXT_INSN (insn);
2237 if (insn == 0 || GET_CODE (insn) != NOTE)
2238 break;
2241 return insn;
2244 /* Return the previous insn before INSN that is not a NOTE. This routine does
2245 not look inside SEQUENCEs. */
2248 prev_nonnote_insn (insn)
2249 rtx insn;
2251 while (insn)
2253 insn = PREV_INSN (insn);
2254 if (insn == 0 || GET_CODE (insn) != NOTE)
2255 break;
2258 return insn;
2261 /* Return the next INSN, CALL_INSN or JUMP_INSN after INSN;
2262 or 0, if there is none. This routine does not look inside
2263 SEQUENCEs. */
2266 next_real_insn (insn)
2267 rtx insn;
2269 while (insn)
2271 insn = NEXT_INSN (insn);
2272 if (insn == 0 || GET_CODE (insn) == INSN
2273 || GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == JUMP_INSN)
2274 break;
2277 return insn;
2280 /* Return the last INSN, CALL_INSN or JUMP_INSN before INSN;
2281 or 0, if there is none. This routine does not look inside
2282 SEQUENCEs. */
2285 prev_real_insn (insn)
2286 rtx insn;
2288 while (insn)
2290 insn = PREV_INSN (insn);
2291 if (insn == 0 || GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN
2292 || GET_CODE (insn) == JUMP_INSN)
2293 break;
2296 return insn;
2299 /* Find the next insn after INSN that really does something. This routine
2300 does not look inside SEQUENCEs. Until reload has completed, this is the
2301 same as next_real_insn. */
2304 active_insn_p (insn)
2305 rtx insn;
2307 return (GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == JUMP_INSN
2308 || (GET_CODE (insn) == INSN
2309 && (! reload_completed
2310 || (GET_CODE (PATTERN (insn)) != USE
2311 && GET_CODE (PATTERN (insn)) != CLOBBER))));
2315 next_active_insn (insn)
2316 rtx insn;
2318 while (insn)
2320 insn = NEXT_INSN (insn);
2321 if (insn == 0 || active_insn_p (insn))
2322 break;
2325 return insn;
2328 /* Find the last insn before INSN that really does something. This routine
2329 does not look inside SEQUENCEs. Until reload has completed, this is the
2330 same as prev_real_insn. */
2333 prev_active_insn (insn)
2334 rtx insn;
2336 while (insn)
2338 insn = PREV_INSN (insn);
2339 if (insn == 0 || active_insn_p (insn))
2340 break;
2343 return insn;
2346 /* Return the next CODE_LABEL after the insn INSN, or 0 if there is none. */
2349 next_label (insn)
2350 rtx insn;
2352 while (insn)
2354 insn = NEXT_INSN (insn);
2355 if (insn == 0 || GET_CODE (insn) == CODE_LABEL)
2356 break;
2359 return insn;
2362 /* Return the last CODE_LABEL before the insn INSN, or 0 if there is none. */
2365 prev_label (insn)
2366 rtx insn;
2368 while (insn)
2370 insn = PREV_INSN (insn);
2371 if (insn == 0 || GET_CODE (insn) == CODE_LABEL)
2372 break;
2375 return insn;
2378 #ifdef HAVE_cc0
2379 /* INSN uses CC0 and is being moved into a delay slot. Set up REG_CC_SETTER
2380 and REG_CC_USER notes so we can find it. */
2382 void
2383 link_cc0_insns (insn)
2384 rtx insn;
2386 rtx user = next_nonnote_insn (insn);
2388 if (GET_CODE (user) == INSN && GET_CODE (PATTERN (user)) == SEQUENCE)
2389 user = XVECEXP (PATTERN (user), 0, 0);
2391 REG_NOTES (user) = gen_rtx_INSN_LIST (REG_CC_SETTER, insn,
2392 REG_NOTES (user));
2393 REG_NOTES (insn) = gen_rtx_INSN_LIST (REG_CC_USER, user, REG_NOTES (insn));
2396 /* Return the next insn that uses CC0 after INSN, which is assumed to
2397 set it. This is the inverse of prev_cc0_setter (i.e., prev_cc0_setter
2398 applied to the result of this function should yield INSN).
2400 Normally, this is simply the next insn. However, if a REG_CC_USER note
2401 is present, it contains the insn that uses CC0.
2403 Return 0 if we can't find the insn. */
2406 next_cc0_user (insn)
2407 rtx insn;
2409 rtx note = find_reg_note (insn, REG_CC_USER, NULL_RTX);
2411 if (note)
2412 return XEXP (note, 0);
2414 insn = next_nonnote_insn (insn);
2415 if (insn && GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
2416 insn = XVECEXP (PATTERN (insn), 0, 0);
2418 if (insn && INSN_P (insn) && reg_mentioned_p (cc0_rtx, PATTERN (insn)))
2419 return insn;
2421 return 0;
2424 /* Find the insn that set CC0 for INSN. Unless INSN has a REG_CC_SETTER
2425 note, it is the previous insn. */
2428 prev_cc0_setter (insn)
2429 rtx insn;
2431 rtx note = find_reg_note (insn, REG_CC_SETTER, NULL_RTX);
2433 if (note)
2434 return XEXP (note, 0);
2436 insn = prev_nonnote_insn (insn);
2437 if (! sets_cc0_p (PATTERN (insn)))
2438 abort ();
2440 return insn;
2442 #endif
2444 /* Increment the label uses for all labels present in rtx. */
2446 static void
2447 mark_label_nuses(x)
2448 rtx x;
2450 register enum rtx_code code;
2451 register int i, j;
2452 register const char *fmt;
2454 code = GET_CODE (x);
2455 if (code == LABEL_REF)
2456 LABEL_NUSES (XEXP (x, 0))++;
2458 fmt = GET_RTX_FORMAT (code);
2459 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2461 if (fmt[i] == 'e')
2462 mark_label_nuses (XEXP (x, i));
2463 else if (fmt[i] == 'E')
2464 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2465 mark_label_nuses (XVECEXP (x, i, j));
2470 /* Try splitting insns that can be split for better scheduling.
2471 PAT is the pattern which might split.
2472 TRIAL is the insn providing PAT.
2473 LAST is non-zero if we should return the last insn of the sequence produced.
2475 If this routine succeeds in splitting, it returns the first or last
2476 replacement insn depending on the value of LAST. Otherwise, it
2477 returns TRIAL. If the insn to be returned can be split, it will be. */
2480 try_split (pat, trial, last)
2481 rtx pat, trial;
2482 int last;
2484 rtx before = PREV_INSN (trial);
2485 rtx after = NEXT_INSN (trial);
2486 int has_barrier = 0;
2487 rtx tem;
2488 rtx note, seq;
2489 int probability;
2491 if (any_condjump_p (trial)
2492 && (note = find_reg_note (trial, REG_BR_PROB, 0)))
2493 split_branch_probability = INTVAL (XEXP (note, 0));
2494 probability = split_branch_probability;
2496 seq = split_insns (pat, trial);
2498 split_branch_probability = -1;
2500 /* If we are splitting a JUMP_INSN, it might be followed by a BARRIER.
2501 We may need to handle this specially. */
2502 if (after && GET_CODE (after) == BARRIER)
2504 has_barrier = 1;
2505 after = NEXT_INSN (after);
2508 if (seq)
2510 /* SEQ can either be a SEQUENCE or the pattern of a single insn.
2511 The latter case will normally arise only when being done so that
2512 it, in turn, will be split (SFmode on the 29k is an example). */
2513 if (GET_CODE (seq) == SEQUENCE)
2515 int i, njumps = 0;
2516 rtx eh_note;
2518 /* Avoid infinite loop if any insn of the result matches
2519 the original pattern. */
2520 for (i = 0; i < XVECLEN (seq, 0); i++)
2521 if (GET_CODE (XVECEXP (seq, 0, i)) == INSN
2522 && rtx_equal_p (PATTERN (XVECEXP (seq, 0, i)), pat))
2523 return trial;
2525 /* Mark labels. */
2526 for (i = XVECLEN (seq, 0) - 1; i >= 0; i--)
2527 if (GET_CODE (XVECEXP (seq, 0, i)) == JUMP_INSN)
2529 rtx insn = XVECEXP (seq, 0, i);
2530 mark_jump_label (PATTERN (insn),
2531 XVECEXP (seq, 0, i), 0);
2532 njumps++;
2533 if (probability != -1
2534 && any_condjump_p (insn)
2535 && !find_reg_note (insn, REG_BR_PROB, 0))
2537 /* We can preserve the REG_BR_PROB notes only if exactly
2538 one jump is created, otherwise the machinde description
2539 is responsible for this step using
2540 split_branch_probability variable. */
2541 if (njumps != 1)
2542 abort ();
2543 REG_NOTES (insn)
2544 = gen_rtx_EXPR_LIST (REG_BR_PROB,
2545 GEN_INT (probability),
2546 REG_NOTES (insn));
2549 /* If we are splitting a CALL_INSN, look for the CALL_INSN
2550 in SEQ and copy our CALL_INSN_FUNCTION_USAGE to it. */
2551 if (GET_CODE (trial) == CALL_INSN)
2552 for (i = XVECLEN (seq, 0) - 1; i >= 0; i--)
2553 if (GET_CODE (XVECEXP (seq, 0, i)) == CALL_INSN)
2554 CALL_INSN_FUNCTION_USAGE (XVECEXP (seq, 0, i))
2555 = CALL_INSN_FUNCTION_USAGE (trial);
2557 /* Copy EH notes. */
2558 if ((eh_note = find_reg_note (trial, REG_EH_REGION, NULL_RTX)))
2559 for (i = 0; i < XVECLEN (seq, 0); i++)
2561 rtx insn = XVECEXP (seq, 0, i);
2562 if (GET_CODE (insn) == CALL_INSN
2563 || (flag_non_call_exceptions
2564 && may_trap_p (PATTERN (insn))))
2565 REG_NOTES (insn)
2566 = gen_rtx_EXPR_LIST (REG_EH_REGION, XEXP (eh_note, 0),
2567 REG_NOTES (insn));
2570 /* If there are LABELS inside the split insns increment the
2571 usage count so we don't delete the label. */
2572 if (GET_CODE (trial) == INSN)
2573 for (i = XVECLEN (seq, 0) - 1; i >= 0; i--)
2574 if (GET_CODE (XVECEXP (seq, 0, i)) == INSN)
2575 mark_label_nuses (PATTERN (XVECEXP (seq, 0, i)));
2577 tem = emit_insn_after (seq, before);
2579 delete_insn (trial);
2580 if (has_barrier)
2581 emit_barrier_after (tem);
2583 /* Recursively call try_split for each new insn created; by the
2584 time control returns here that insn will be fully split, so
2585 set LAST and continue from the insn after the one returned.
2586 We can't use next_active_insn here since AFTER may be a note.
2587 Ignore deleted insns, which can be occur if not optimizing. */
2588 for (tem = NEXT_INSN (before); tem != after; tem = NEXT_INSN (tem))
2589 if (! INSN_DELETED_P (tem) && INSN_P (tem))
2590 tem = try_split (PATTERN (tem), tem, 1);
2592 /* Avoid infinite loop if the result matches the original pattern. */
2593 else if (rtx_equal_p (seq, pat))
2594 return trial;
2595 else
2597 PATTERN (trial) = seq;
2598 INSN_CODE (trial) = -1;
2599 try_split (seq, trial, last);
2602 /* Return either the first or the last insn, depending on which was
2603 requested. */
2604 return last
2605 ? (after ? PREV_INSN (after) : last_insn)
2606 : NEXT_INSN (before);
2609 return trial;
2612 /* Make and return an INSN rtx, initializing all its slots.
2613 Store PATTERN in the pattern slots. */
2616 make_insn_raw (pattern)
2617 rtx pattern;
2619 register rtx insn;
2621 insn = rtx_alloc (INSN);
2623 INSN_UID (insn) = cur_insn_uid++;
2624 PATTERN (insn) = pattern;
2625 INSN_CODE (insn) = -1;
2626 LOG_LINKS (insn) = NULL;
2627 REG_NOTES (insn) = NULL;
2629 #ifdef ENABLE_RTL_CHECKING
2630 if (insn
2631 && INSN_P (insn)
2632 && (returnjump_p (insn)
2633 || (GET_CODE (insn) == SET
2634 && SET_DEST (insn) == pc_rtx)))
2636 warning ("ICE: emit_insn used where emit_jump_insn needed:\n");
2637 debug_rtx (insn);
2639 #endif
2641 return insn;
2644 /* Like `make_insn' but make a JUMP_INSN instead of an insn. */
2646 static rtx
2647 make_jump_insn_raw (pattern)
2648 rtx pattern;
2650 register rtx insn;
2652 insn = rtx_alloc (JUMP_INSN);
2653 INSN_UID (insn) = cur_insn_uid++;
2655 PATTERN (insn) = pattern;
2656 INSN_CODE (insn) = -1;
2657 LOG_LINKS (insn) = NULL;
2658 REG_NOTES (insn) = NULL;
2659 JUMP_LABEL (insn) = NULL;
2661 return insn;
2664 /* Like `make_insn' but make a CALL_INSN instead of an insn. */
2666 static rtx
2667 make_call_insn_raw (pattern)
2668 rtx pattern;
2670 register rtx insn;
2672 insn = rtx_alloc (CALL_INSN);
2673 INSN_UID (insn) = cur_insn_uid++;
2675 PATTERN (insn) = pattern;
2676 INSN_CODE (insn) = -1;
2677 LOG_LINKS (insn) = NULL;
2678 REG_NOTES (insn) = NULL;
2679 CALL_INSN_FUNCTION_USAGE (insn) = NULL;
2681 return insn;
2684 /* Add INSN to the end of the doubly-linked list.
2685 INSN may be an INSN, JUMP_INSN, CALL_INSN, CODE_LABEL, BARRIER or NOTE. */
2687 void
2688 add_insn (insn)
2689 register rtx insn;
2691 PREV_INSN (insn) = last_insn;
2692 NEXT_INSN (insn) = 0;
2694 if (NULL != last_insn)
2695 NEXT_INSN (last_insn) = insn;
2697 if (NULL == first_insn)
2698 first_insn = insn;
2700 last_insn = insn;
2703 /* Add INSN into the doubly-linked list after insn AFTER. This and
2704 the next should be the only functions called to insert an insn once
2705 delay slots have been filled since only they know how to update a
2706 SEQUENCE. */
2708 void
2709 add_insn_after (insn, after)
2710 rtx insn, after;
2712 rtx next = NEXT_INSN (after);
2714 if (optimize && INSN_DELETED_P (after))
2715 abort ();
2717 NEXT_INSN (insn) = next;
2718 PREV_INSN (insn) = after;
2720 if (next)
2722 PREV_INSN (next) = insn;
2723 if (GET_CODE (next) == INSN && GET_CODE (PATTERN (next)) == SEQUENCE)
2724 PREV_INSN (XVECEXP (PATTERN (next), 0, 0)) = insn;
2726 else if (last_insn == after)
2727 last_insn = insn;
2728 else
2730 struct sequence_stack *stack = seq_stack;
2731 /* Scan all pending sequences too. */
2732 for (; stack; stack = stack->next)
2733 if (after == stack->last)
2735 stack->last = insn;
2736 break;
2739 if (stack == 0)
2740 abort ();
2743 NEXT_INSN (after) = insn;
2744 if (GET_CODE (after) == INSN && GET_CODE (PATTERN (after)) == SEQUENCE)
2746 rtx sequence = PATTERN (after);
2747 NEXT_INSN (XVECEXP (sequence, 0, XVECLEN (sequence, 0) - 1)) = insn;
2751 /* Add INSN into the doubly-linked list before insn BEFORE. This and
2752 the previous should be the only functions called to insert an insn once
2753 delay slots have been filled since only they know how to update a
2754 SEQUENCE. */
2756 void
2757 add_insn_before (insn, before)
2758 rtx insn, before;
2760 rtx prev = PREV_INSN (before);
2762 if (optimize && INSN_DELETED_P (before))
2763 abort ();
2765 PREV_INSN (insn) = prev;
2766 NEXT_INSN (insn) = before;
2768 if (prev)
2770 NEXT_INSN (prev) = insn;
2771 if (GET_CODE (prev) == INSN && GET_CODE (PATTERN (prev)) == SEQUENCE)
2773 rtx sequence = PATTERN (prev);
2774 NEXT_INSN (XVECEXP (sequence, 0, XVECLEN (sequence, 0) - 1)) = insn;
2777 else if (first_insn == before)
2778 first_insn = insn;
2779 else
2781 struct sequence_stack *stack = seq_stack;
2782 /* Scan all pending sequences too. */
2783 for (; stack; stack = stack->next)
2784 if (before == stack->first)
2786 stack->first = insn;
2787 break;
2790 if (stack == 0)
2791 abort ();
2794 PREV_INSN (before) = insn;
2795 if (GET_CODE (before) == INSN && GET_CODE (PATTERN (before)) == SEQUENCE)
2796 PREV_INSN (XVECEXP (PATTERN (before), 0, 0)) = insn;
2799 /* Remove an insn from its doubly-linked list. This function knows how
2800 to handle sequences. */
2801 void
2802 remove_insn (insn)
2803 rtx insn;
2805 rtx next = NEXT_INSN (insn);
2806 rtx prev = PREV_INSN (insn);
2807 if (prev)
2809 NEXT_INSN (prev) = next;
2810 if (GET_CODE (prev) == INSN && GET_CODE (PATTERN (prev)) == SEQUENCE)
2812 rtx sequence = PATTERN (prev);
2813 NEXT_INSN (XVECEXP (sequence, 0, XVECLEN (sequence, 0) - 1)) = next;
2816 else if (first_insn == insn)
2817 first_insn = next;
2818 else
2820 struct sequence_stack *stack = seq_stack;
2821 /* Scan all pending sequences too. */
2822 for (; stack; stack = stack->next)
2823 if (insn == stack->first)
2825 stack->first = next;
2826 break;
2829 if (stack == 0)
2830 abort ();
2833 if (next)
2835 PREV_INSN (next) = prev;
2836 if (GET_CODE (next) == INSN && GET_CODE (PATTERN (next)) == SEQUENCE)
2837 PREV_INSN (XVECEXP (PATTERN (next), 0, 0)) = prev;
2839 else if (last_insn == insn)
2840 last_insn = prev;
2841 else
2843 struct sequence_stack *stack = seq_stack;
2844 /* Scan all pending sequences too. */
2845 for (; stack; stack = stack->next)
2846 if (insn == stack->last)
2848 stack->last = prev;
2849 break;
2852 if (stack == 0)
2853 abort ();
2857 /* Delete all insns made since FROM.
2858 FROM becomes the new last instruction. */
2860 void
2861 delete_insns_since (from)
2862 rtx from;
2864 if (from == 0)
2865 first_insn = 0;
2866 else
2867 NEXT_INSN (from) = 0;
2868 last_insn = from;
2871 /* This function is deprecated, please use sequences instead.
2873 Move a consecutive bunch of insns to a different place in the chain.
2874 The insns to be moved are those between FROM and TO.
2875 They are moved to a new position after the insn AFTER.
2876 AFTER must not be FROM or TO or any insn in between.
2878 This function does not know about SEQUENCEs and hence should not be
2879 called after delay-slot filling has been done. */
2881 void
2882 reorder_insns (from, to, after)
2883 rtx from, to, after;
2885 /* Splice this bunch out of where it is now. */
2886 if (PREV_INSN (from))
2887 NEXT_INSN (PREV_INSN (from)) = NEXT_INSN (to);
2888 if (NEXT_INSN (to))
2889 PREV_INSN (NEXT_INSN (to)) = PREV_INSN (from);
2890 if (last_insn == to)
2891 last_insn = PREV_INSN (from);
2892 if (first_insn == from)
2893 first_insn = NEXT_INSN (to);
2895 /* Make the new neighbors point to it and it to them. */
2896 if (NEXT_INSN (after))
2897 PREV_INSN (NEXT_INSN (after)) = to;
2899 NEXT_INSN (to) = NEXT_INSN (after);
2900 PREV_INSN (from) = after;
2901 NEXT_INSN (after) = from;
2902 if (after == last_insn)
2903 last_insn = to;
2906 /* Return the line note insn preceding INSN. */
2908 static rtx
2909 find_line_note (insn)
2910 rtx insn;
2912 if (no_line_numbers)
2913 return 0;
2915 for (; insn; insn = PREV_INSN (insn))
2916 if (GET_CODE (insn) == NOTE
2917 && NOTE_LINE_NUMBER (insn) >= 0)
2918 break;
2920 return insn;
2923 /* Like reorder_insns, but inserts line notes to preserve the line numbers
2924 of the moved insns when debugging. This may insert a note between AFTER
2925 and FROM, and another one after TO. */
2927 void
2928 reorder_insns_with_line_notes (from, to, after)
2929 rtx from, to, after;
2931 rtx from_line = find_line_note (from);
2932 rtx after_line = find_line_note (after);
2934 reorder_insns (from, to, after);
2936 if (from_line == after_line)
2937 return;
2939 if (from_line)
2940 emit_line_note_after (NOTE_SOURCE_FILE (from_line),
2941 NOTE_LINE_NUMBER (from_line),
2942 after);
2943 if (after_line)
2944 emit_line_note_after (NOTE_SOURCE_FILE (after_line),
2945 NOTE_LINE_NUMBER (after_line),
2946 to);
2949 /* Remove unnecessary notes from the instruction stream. */
2951 void
2952 remove_unnecessary_notes ()
2954 rtx block_stack = NULL_RTX;
2955 rtx eh_stack = NULL_RTX;
2956 rtx insn;
2957 rtx next;
2958 rtx tmp;
2960 /* We must not remove the first instruction in the function because
2961 the compiler depends on the first instruction being a note. */
2962 for (insn = NEXT_INSN (get_insns ()); insn; insn = next)
2964 /* Remember what's next. */
2965 next = NEXT_INSN (insn);
2967 /* We're only interested in notes. */
2968 if (GET_CODE (insn) != NOTE)
2969 continue;
2971 switch (NOTE_LINE_NUMBER (insn))
2973 case NOTE_INSN_DELETED:
2974 remove_insn (insn);
2975 break;
2977 case NOTE_INSN_EH_REGION_BEG:
2978 eh_stack = alloc_INSN_LIST (insn, eh_stack);
2979 break;
2981 case NOTE_INSN_EH_REGION_END:
2982 /* Too many end notes. */
2983 if (eh_stack == NULL_RTX)
2984 abort ();
2985 /* Mismatched nesting. */
2986 if (NOTE_EH_HANDLER (XEXP (eh_stack, 0)) != NOTE_EH_HANDLER (insn))
2987 abort ();
2988 tmp = eh_stack;
2989 eh_stack = XEXP (eh_stack, 1);
2990 free_INSN_LIST_node (tmp);
2991 break;
2993 case NOTE_INSN_BLOCK_BEG:
2994 /* By now, all notes indicating lexical blocks should have
2995 NOTE_BLOCK filled in. */
2996 if (NOTE_BLOCK (insn) == NULL_TREE)
2997 abort ();
2998 block_stack = alloc_INSN_LIST (insn, block_stack);
2999 break;
3001 case NOTE_INSN_BLOCK_END:
3002 /* Too many end notes. */
3003 if (block_stack == NULL_RTX)
3004 abort ();
3005 /* Mismatched nesting. */
3006 if (NOTE_BLOCK (XEXP (block_stack, 0)) != NOTE_BLOCK (insn))
3007 abort ();
3008 tmp = block_stack;
3009 block_stack = XEXP (block_stack, 1);
3010 free_INSN_LIST_node (tmp);
3012 /* Scan back to see if there are any non-note instructions
3013 between INSN and the beginning of this block. If not,
3014 then there is no PC range in the generated code that will
3015 actually be in this block, so there's no point in
3016 remembering the existence of the block. */
3017 for (tmp = PREV_INSN (insn); tmp ; tmp = PREV_INSN (tmp))
3019 /* This block contains a real instruction. Note that we
3020 don't include labels; if the only thing in the block
3021 is a label, then there are still no PC values that
3022 lie within the block. */
3023 if (INSN_P (tmp))
3024 break;
3026 /* We're only interested in NOTEs. */
3027 if (GET_CODE (tmp) != NOTE)
3028 continue;
3030 if (NOTE_LINE_NUMBER (tmp) == NOTE_INSN_BLOCK_BEG)
3032 /* We just verified that this BLOCK matches us with
3033 the block_stack check above. Never delete the
3034 BLOCK for the outermost scope of the function; we
3035 can refer to names from that scope even if the
3036 block notes are messed up. */
3037 if (! is_body_block (NOTE_BLOCK (insn))
3038 && (*debug_hooks->ignore_block) (NOTE_BLOCK (insn)))
3040 remove_insn (tmp);
3041 remove_insn (insn);
3043 break;
3045 else if (NOTE_LINE_NUMBER (tmp) == NOTE_INSN_BLOCK_END)
3046 /* There's a nested block. We need to leave the
3047 current block in place since otherwise the debugger
3048 wouldn't be able to show symbols from our block in
3049 the nested block. */
3050 break;
3055 /* Too many begin notes. */
3056 if (block_stack || eh_stack)
3057 abort ();
3061 /* Emit an insn of given code and pattern
3062 at a specified place within the doubly-linked list. */
3064 /* Make an instruction with body PATTERN
3065 and output it before the instruction BEFORE. */
3068 emit_insn_before (pattern, before)
3069 register rtx pattern, before;
3071 register rtx insn = before;
3073 if (GET_CODE (pattern) == SEQUENCE)
3075 register int i;
3077 for (i = 0; i < XVECLEN (pattern, 0); i++)
3079 insn = XVECEXP (pattern, 0, i);
3080 add_insn_before (insn, before);
3083 else
3085 insn = make_insn_raw (pattern);
3086 add_insn_before (insn, before);
3089 return insn;
3092 /* Similar to emit_insn_before, but update basic block boundaries as well. */
3095 emit_block_insn_before (pattern, before, block)
3096 rtx pattern, before;
3097 basic_block block;
3099 rtx prev = PREV_INSN (before);
3100 rtx r = emit_insn_before (pattern, before);
3101 if (block && block->head == before)
3102 block->head = NEXT_INSN (prev);
3103 return r;
3106 /* Make an instruction with body PATTERN and code JUMP_INSN
3107 and output it before the instruction BEFORE. */
3110 emit_jump_insn_before (pattern, before)
3111 register rtx pattern, before;
3113 register rtx insn;
3115 if (GET_CODE (pattern) == SEQUENCE)
3116 insn = emit_insn_before (pattern, before);
3117 else
3119 insn = make_jump_insn_raw (pattern);
3120 add_insn_before (insn, before);
3123 return insn;
3126 /* Make an instruction with body PATTERN and code CALL_INSN
3127 and output it before the instruction BEFORE. */
3130 emit_call_insn_before (pattern, before)
3131 register rtx pattern, before;
3133 register rtx insn;
3135 if (GET_CODE (pattern) == SEQUENCE)
3136 insn = emit_insn_before (pattern, before);
3137 else
3139 insn = make_call_insn_raw (pattern);
3140 add_insn_before (insn, before);
3141 PUT_CODE (insn, CALL_INSN);
3144 return insn;
3147 /* Make an insn of code BARRIER
3148 and output it before the insn BEFORE. */
3151 emit_barrier_before (before)
3152 register rtx before;
3154 register rtx insn = rtx_alloc (BARRIER);
3156 INSN_UID (insn) = cur_insn_uid++;
3158 add_insn_before (insn, before);
3159 return insn;
3162 /* Emit the label LABEL before the insn BEFORE. */
3165 emit_label_before (label, before)
3166 rtx label, before;
3168 /* This can be called twice for the same label as a result of the
3169 confusion that follows a syntax error! So make it harmless. */
3170 if (INSN_UID (label) == 0)
3172 INSN_UID (label) = cur_insn_uid++;
3173 add_insn_before (label, before);
3176 return label;
3179 /* Emit a note of subtype SUBTYPE before the insn BEFORE. */
3182 emit_note_before (subtype, before)
3183 int subtype;
3184 rtx before;
3186 register rtx note = rtx_alloc (NOTE);
3187 INSN_UID (note) = cur_insn_uid++;
3188 NOTE_SOURCE_FILE (note) = 0;
3189 NOTE_LINE_NUMBER (note) = subtype;
3191 add_insn_before (note, before);
3192 return note;
3195 /* Make an insn of code INSN with body PATTERN
3196 and output it after the insn AFTER. */
3199 emit_insn_after (pattern, after)
3200 register rtx pattern, after;
3202 register rtx insn = after;
3204 if (GET_CODE (pattern) == SEQUENCE)
3206 register int i;
3208 for (i = 0; i < XVECLEN (pattern, 0); i++)
3210 insn = XVECEXP (pattern, 0, i);
3211 add_insn_after (insn, after);
3212 after = insn;
3215 else
3217 insn = make_insn_raw (pattern);
3218 add_insn_after (insn, after);
3221 return insn;
3224 /* Similar to emit_insn_after, except that line notes are to be inserted so
3225 as to act as if this insn were at FROM. */
3227 void
3228 emit_insn_after_with_line_notes (pattern, after, from)
3229 rtx pattern, after, from;
3231 rtx from_line = find_line_note (from);
3232 rtx after_line = find_line_note (after);
3233 rtx insn = emit_insn_after (pattern, after);
3235 if (from_line)
3236 emit_line_note_after (NOTE_SOURCE_FILE (from_line),
3237 NOTE_LINE_NUMBER (from_line),
3238 after);
3240 if (after_line)
3241 emit_line_note_after (NOTE_SOURCE_FILE (after_line),
3242 NOTE_LINE_NUMBER (after_line),
3243 insn);
3246 /* Similar to emit_insn_after, but update basic block boundaries as well. */
3249 emit_block_insn_after (pattern, after, block)
3250 rtx pattern, after;
3251 basic_block block;
3253 rtx r = emit_insn_after (pattern, after);
3254 if (block && block->end == after)
3255 block->end = r;
3256 return r;
3259 /* Make an insn of code JUMP_INSN with body PATTERN
3260 and output it after the insn AFTER. */
3263 emit_jump_insn_after (pattern, after)
3264 register rtx pattern, after;
3266 register rtx insn;
3268 if (GET_CODE (pattern) == SEQUENCE)
3269 insn = emit_insn_after (pattern, after);
3270 else
3272 insn = make_jump_insn_raw (pattern);
3273 add_insn_after (insn, after);
3276 return insn;
3279 /* Make an insn of code BARRIER
3280 and output it after the insn AFTER. */
3283 emit_barrier_after (after)
3284 register rtx after;
3286 register rtx insn = rtx_alloc (BARRIER);
3288 INSN_UID (insn) = cur_insn_uid++;
3290 add_insn_after (insn, after);
3291 return insn;
3294 /* Emit the label LABEL after the insn AFTER. */
3297 emit_label_after (label, after)
3298 rtx label, after;
3300 /* This can be called twice for the same label
3301 as a result of the confusion that follows a syntax error!
3302 So make it harmless. */
3303 if (INSN_UID (label) == 0)
3305 INSN_UID (label) = cur_insn_uid++;
3306 add_insn_after (label, after);
3309 return label;
3312 /* Emit a note of subtype SUBTYPE after the insn AFTER. */
3315 emit_note_after (subtype, after)
3316 int subtype;
3317 rtx after;
3319 register rtx note = rtx_alloc (NOTE);
3320 INSN_UID (note) = cur_insn_uid++;
3321 NOTE_SOURCE_FILE (note) = 0;
3322 NOTE_LINE_NUMBER (note) = subtype;
3323 add_insn_after (note, after);
3324 return note;
3327 /* Emit a line note for FILE and LINE after the insn AFTER. */
3330 emit_line_note_after (file, line, after)
3331 const char *file;
3332 int line;
3333 rtx after;
3335 register rtx note;
3337 if (no_line_numbers && line > 0)
3339 cur_insn_uid++;
3340 return 0;
3343 note = rtx_alloc (NOTE);
3344 INSN_UID (note) = cur_insn_uid++;
3345 NOTE_SOURCE_FILE (note) = file;
3346 NOTE_LINE_NUMBER (note) = line;
3347 add_insn_after (note, after);
3348 return note;
3351 /* Make an insn of code INSN with pattern PATTERN
3352 and add it to the end of the doubly-linked list.
3353 If PATTERN is a SEQUENCE, take the elements of it
3354 and emit an insn for each element.
3356 Returns the last insn emitted. */
3359 emit_insn (pattern)
3360 rtx pattern;
3362 rtx insn = last_insn;
3364 if (GET_CODE (pattern) == SEQUENCE)
3366 register int i;
3368 for (i = 0; i < XVECLEN (pattern, 0); i++)
3370 insn = XVECEXP (pattern, 0, i);
3371 add_insn (insn);
3374 else
3376 insn = make_insn_raw (pattern);
3377 add_insn (insn);
3380 return insn;
3383 /* Emit the insns in a chain starting with INSN.
3384 Return the last insn emitted. */
3387 emit_insns (insn)
3388 rtx insn;
3390 rtx last = 0;
3392 while (insn)
3394 rtx next = NEXT_INSN (insn);
3395 add_insn (insn);
3396 last = insn;
3397 insn = next;
3400 return last;
3403 /* Emit the insns in a chain starting with INSN and place them in front of
3404 the insn BEFORE. Return the last insn emitted. */
3407 emit_insns_before (insn, before)
3408 rtx insn;
3409 rtx before;
3411 rtx last = 0;
3413 while (insn)
3415 rtx next = NEXT_INSN (insn);
3416 add_insn_before (insn, before);
3417 last = insn;
3418 insn = next;
3421 return last;
3424 /* Emit the insns in a chain starting with FIRST and place them in back of
3425 the insn AFTER. Return the last insn emitted. */
3428 emit_insns_after (first, after)
3429 register rtx first;
3430 register rtx after;
3432 register rtx last;
3433 register rtx after_after;
3435 if (!after)
3436 abort ();
3438 if (!first)
3439 return first;
3441 for (last = first; NEXT_INSN (last); last = NEXT_INSN (last))
3442 continue;
3444 after_after = NEXT_INSN (after);
3446 NEXT_INSN (after) = first;
3447 PREV_INSN (first) = after;
3448 NEXT_INSN (last) = after_after;
3449 if (after_after)
3450 PREV_INSN (after_after) = last;
3452 if (after == last_insn)
3453 last_insn = last;
3454 return last;
3457 /* Make an insn of code JUMP_INSN with pattern PATTERN
3458 and add it to the end of the doubly-linked list. */
3461 emit_jump_insn (pattern)
3462 rtx pattern;
3464 if (GET_CODE (pattern) == SEQUENCE)
3465 return emit_insn (pattern);
3466 else
3468 register rtx insn = make_jump_insn_raw (pattern);
3469 add_insn (insn);
3470 return insn;
3474 /* Make an insn of code CALL_INSN with pattern PATTERN
3475 and add it to the end of the doubly-linked list. */
3478 emit_call_insn (pattern)
3479 rtx pattern;
3481 if (GET_CODE (pattern) == SEQUENCE)
3482 return emit_insn (pattern);
3483 else
3485 register rtx insn = make_call_insn_raw (pattern);
3486 add_insn (insn);
3487 PUT_CODE (insn, CALL_INSN);
3488 return insn;
3492 /* Add the label LABEL to the end of the doubly-linked list. */
3495 emit_label (label)
3496 rtx label;
3498 /* This can be called twice for the same label
3499 as a result of the confusion that follows a syntax error!
3500 So make it harmless. */
3501 if (INSN_UID (label) == 0)
3503 INSN_UID (label) = cur_insn_uid++;
3504 add_insn (label);
3506 return label;
3509 /* Make an insn of code BARRIER
3510 and add it to the end of the doubly-linked list. */
3513 emit_barrier ()
3515 register rtx barrier = rtx_alloc (BARRIER);
3516 INSN_UID (barrier) = cur_insn_uid++;
3517 add_insn (barrier);
3518 return barrier;
3521 /* Make an insn of code NOTE
3522 with data-fields specified by FILE and LINE
3523 and add it to the end of the doubly-linked list,
3524 but only if line-numbers are desired for debugging info. */
3527 emit_line_note (file, line)
3528 const char *file;
3529 int line;
3531 set_file_and_line_for_stmt (file, line);
3533 #if 0
3534 if (no_line_numbers)
3535 return 0;
3536 #endif
3538 return emit_note (file, line);
3541 /* Make an insn of code NOTE
3542 with data-fields specified by FILE and LINE
3543 and add it to the end of the doubly-linked list.
3544 If it is a line-number NOTE, omit it if it matches the previous one. */
3547 emit_note (file, line)
3548 const char *file;
3549 int line;
3551 register rtx note;
3553 if (line > 0)
3555 if (file && last_filename && !strcmp (file, last_filename)
3556 && line == last_linenum)
3557 return 0;
3558 last_filename = file;
3559 last_linenum = line;
3562 if (no_line_numbers && line > 0)
3564 cur_insn_uid++;
3565 return 0;
3568 note = rtx_alloc (NOTE);
3569 INSN_UID (note) = cur_insn_uid++;
3570 NOTE_SOURCE_FILE (note) = file;
3571 NOTE_LINE_NUMBER (note) = line;
3572 add_insn (note);
3573 return note;
3576 /* Emit a NOTE, and don't omit it even if LINE is the previous note. */
3579 emit_line_note_force (file, line)
3580 const char *file;
3581 int line;
3583 last_linenum = -1;
3584 return emit_line_note (file, line);
3587 /* Cause next statement to emit a line note even if the line number
3588 has not changed. This is used at the beginning of a function. */
3590 void
3591 force_next_line_note ()
3593 last_linenum = -1;
3596 /* Place a note of KIND on insn INSN with DATUM as the datum. If a
3597 note of this type already exists, remove it first. */
3599 void
3600 set_unique_reg_note (insn, kind, datum)
3601 rtx insn;
3602 enum reg_note kind;
3603 rtx datum;
3605 rtx note = find_reg_note (insn, kind, NULL_RTX);
3607 /* First remove the note if there already is one. */
3608 if (note)
3609 remove_note (insn, note);
3611 REG_NOTES (insn) = gen_rtx_EXPR_LIST (kind, datum, REG_NOTES (insn));
3614 /* Return an indication of which type of insn should have X as a body.
3615 The value is CODE_LABEL, INSN, CALL_INSN or JUMP_INSN. */
3617 enum rtx_code
3618 classify_insn (x)
3619 rtx x;
3621 if (GET_CODE (x) == CODE_LABEL)
3622 return CODE_LABEL;
3623 if (GET_CODE (x) == CALL)
3624 return CALL_INSN;
3625 if (GET_CODE (x) == RETURN)
3626 return JUMP_INSN;
3627 if (GET_CODE (x) == SET)
3629 if (SET_DEST (x) == pc_rtx)
3630 return JUMP_INSN;
3631 else if (GET_CODE (SET_SRC (x)) == CALL)
3632 return CALL_INSN;
3633 else
3634 return INSN;
3636 if (GET_CODE (x) == PARALLEL)
3638 register int j;
3639 for (j = XVECLEN (x, 0) - 1; j >= 0; j--)
3640 if (GET_CODE (XVECEXP (x, 0, j)) == CALL)
3641 return CALL_INSN;
3642 else if (GET_CODE (XVECEXP (x, 0, j)) == SET
3643 && SET_DEST (XVECEXP (x, 0, j)) == pc_rtx)
3644 return JUMP_INSN;
3645 else if (GET_CODE (XVECEXP (x, 0, j)) == SET
3646 && GET_CODE (SET_SRC (XVECEXP (x, 0, j))) == CALL)
3647 return CALL_INSN;
3649 return INSN;
3652 /* Emit the rtl pattern X as an appropriate kind of insn.
3653 If X is a label, it is simply added into the insn chain. */
3656 emit (x)
3657 rtx x;
3659 enum rtx_code code = classify_insn (x);
3661 if (code == CODE_LABEL)
3662 return emit_label (x);
3663 else if (code == INSN)
3664 return emit_insn (x);
3665 else if (code == JUMP_INSN)
3667 register rtx insn = emit_jump_insn (x);
3668 if (any_uncondjump_p (insn) || GET_CODE (x) == RETURN)
3669 return emit_barrier ();
3670 return insn;
3672 else if (code == CALL_INSN)
3673 return emit_call_insn (x);
3674 else
3675 abort ();
3678 /* Begin emitting insns to a sequence which can be packaged in an
3679 RTL_EXPR. If this sequence will contain something that might cause
3680 the compiler to pop arguments to function calls (because those
3681 pops have previously been deferred; see INHIBIT_DEFER_POP for more
3682 details), use do_pending_stack_adjust before calling this function.
3683 That will ensure that the deferred pops are not accidentally
3684 emitted in the middle of this sequence. */
3686 void
3687 start_sequence ()
3689 struct sequence_stack *tem;
3691 tem = (struct sequence_stack *) xmalloc (sizeof (struct sequence_stack));
3693 tem->next = seq_stack;
3694 tem->first = first_insn;
3695 tem->last = last_insn;
3696 tem->sequence_rtl_expr = seq_rtl_expr;
3698 seq_stack = tem;
3700 first_insn = 0;
3701 last_insn = 0;
3704 /* Similarly, but indicate that this sequence will be placed in T, an
3705 RTL_EXPR. See the documentation for start_sequence for more
3706 information about how to use this function. */
3708 void
3709 start_sequence_for_rtl_expr (t)
3710 tree t;
3712 start_sequence ();
3714 seq_rtl_expr = t;
3717 /* Set up the insn chain starting with FIRST as the current sequence,
3718 saving the previously current one. See the documentation for
3719 start_sequence for more information about how to use this function. */
3721 void
3722 push_to_sequence (first)
3723 rtx first;
3725 rtx last;
3727 start_sequence ();
3729 for (last = first; last && NEXT_INSN (last); last = NEXT_INSN (last));
3731 first_insn = first;
3732 last_insn = last;
3735 /* Set up the insn chain from a chain stort in FIRST to LAST. */
3737 void
3738 push_to_full_sequence (first, last)
3739 rtx first, last;
3741 start_sequence ();
3742 first_insn = first;
3743 last_insn = last;
3744 /* We really should have the end of the insn chain here. */
3745 if (last && NEXT_INSN (last))
3746 abort ();
3749 /* Set up the outer-level insn chain
3750 as the current sequence, saving the previously current one. */
3752 void
3753 push_topmost_sequence ()
3755 struct sequence_stack *stack, *top = NULL;
3757 start_sequence ();
3759 for (stack = seq_stack; stack; stack = stack->next)
3760 top = stack;
3762 first_insn = top->first;
3763 last_insn = top->last;
3764 seq_rtl_expr = top->sequence_rtl_expr;
3767 /* After emitting to the outer-level insn chain, update the outer-level
3768 insn chain, and restore the previous saved state. */
3770 void
3771 pop_topmost_sequence ()
3773 struct sequence_stack *stack, *top = NULL;
3775 for (stack = seq_stack; stack; stack = stack->next)
3776 top = stack;
3778 top->first = first_insn;
3779 top->last = last_insn;
3780 /* ??? Why don't we save seq_rtl_expr here? */
3782 end_sequence ();
3785 /* After emitting to a sequence, restore previous saved state.
3787 To get the contents of the sequence just made, you must call
3788 `gen_sequence' *before* calling here.
3790 If the compiler might have deferred popping arguments while
3791 generating this sequence, and this sequence will not be immediately
3792 inserted into the instruction stream, use do_pending_stack_adjust
3793 before calling gen_sequence. That will ensure that the deferred
3794 pops are inserted into this sequence, and not into some random
3795 location in the instruction stream. See INHIBIT_DEFER_POP for more
3796 information about deferred popping of arguments. */
3798 void
3799 end_sequence ()
3801 struct sequence_stack *tem = seq_stack;
3803 first_insn = tem->first;
3804 last_insn = tem->last;
3805 seq_rtl_expr = tem->sequence_rtl_expr;
3806 seq_stack = tem->next;
3808 free (tem);
3811 /* This works like end_sequence, but records the old sequence in FIRST
3812 and LAST. */
3814 void
3815 end_full_sequence (first, last)
3816 rtx *first, *last;
3818 *first = first_insn;
3819 *last = last_insn;
3820 end_sequence();
3823 /* Return 1 if currently emitting into a sequence. */
3826 in_sequence_p ()
3828 return seq_stack != 0;
3831 /* Generate a SEQUENCE rtx containing the insns already emitted
3832 to the current sequence.
3834 This is how the gen_... function from a DEFINE_EXPAND
3835 constructs the SEQUENCE that it returns. */
3838 gen_sequence ()
3840 rtx result;
3841 rtx tem;
3842 int i;
3843 int len;
3845 /* Count the insns in the chain. */
3846 len = 0;
3847 for (tem = first_insn; tem; tem = NEXT_INSN (tem))
3848 len++;
3850 /* If only one insn, return it rather than a SEQUENCE.
3851 (Now that we cache SEQUENCE expressions, it isn't worth special-casing
3852 the case of an empty list.)
3853 We only return the pattern of an insn if its code is INSN and it
3854 has no notes. This ensures that no information gets lost. */
3855 if (len == 1
3856 && ! RTX_FRAME_RELATED_P (first_insn)
3857 && GET_CODE (first_insn) == INSN
3858 /* Don't throw away any reg notes. */
3859 && REG_NOTES (first_insn) == 0)
3860 return PATTERN (first_insn);
3862 result = gen_rtx_SEQUENCE (VOIDmode, rtvec_alloc (len));
3864 for (i = 0, tem = first_insn; tem; tem = NEXT_INSN (tem), i++)
3865 XVECEXP (result, 0, i) = tem;
3867 return result;
3870 /* Put the various virtual registers into REGNO_REG_RTX. */
3872 void
3873 init_virtual_regs (es)
3874 struct emit_status *es;
3876 rtx *ptr = es->x_regno_reg_rtx;
3877 ptr[VIRTUAL_INCOMING_ARGS_REGNUM] = virtual_incoming_args_rtx;
3878 ptr[VIRTUAL_STACK_VARS_REGNUM] = virtual_stack_vars_rtx;
3879 ptr[VIRTUAL_STACK_DYNAMIC_REGNUM] = virtual_stack_dynamic_rtx;
3880 ptr[VIRTUAL_OUTGOING_ARGS_REGNUM] = virtual_outgoing_args_rtx;
3881 ptr[VIRTUAL_CFA_REGNUM] = virtual_cfa_rtx;
3884 void
3885 clear_emit_caches ()
3887 int i;
3889 /* Clear the start_sequence/gen_sequence cache. */
3890 for (i = 0; i < SEQUENCE_RESULT_SIZE; i++)
3891 sequence_result[i] = 0;
3892 free_insn = 0;
3895 /* Used by copy_insn_1 to avoid copying SCRATCHes more than once. */
3896 static rtx copy_insn_scratch_in[MAX_RECOG_OPERANDS];
3897 static rtx copy_insn_scratch_out[MAX_RECOG_OPERANDS];
3898 static int copy_insn_n_scratches;
3900 /* When an insn is being copied by copy_insn_1, this is nonzero if we have
3901 copied an ASM_OPERANDS.
3902 In that case, it is the original input-operand vector. */
3903 static rtvec orig_asm_operands_vector;
3905 /* When an insn is being copied by copy_insn_1, this is nonzero if we have
3906 copied an ASM_OPERANDS.
3907 In that case, it is the copied input-operand vector. */
3908 static rtvec copy_asm_operands_vector;
3910 /* Likewise for the constraints vector. */
3911 static rtvec orig_asm_constraints_vector;
3912 static rtvec copy_asm_constraints_vector;
3914 /* Recursively create a new copy of an rtx for copy_insn.
3915 This function differs from copy_rtx in that it handles SCRATCHes and
3916 ASM_OPERANDs properly.
3917 Normally, this function is not used directly; use copy_insn as front end.
3918 However, you could first copy an insn pattern with copy_insn and then use
3919 this function afterwards to properly copy any REG_NOTEs containing
3920 SCRATCHes. */
3923 copy_insn_1 (orig)
3924 register rtx orig;
3926 register rtx copy;
3927 register int i, j;
3928 register RTX_CODE code;
3929 register const char *format_ptr;
3931 code = GET_CODE (orig);
3933 switch (code)
3935 case REG:
3936 case QUEUED:
3937 case CONST_INT:
3938 case CONST_DOUBLE:
3939 case SYMBOL_REF:
3940 case CODE_LABEL:
3941 case PC:
3942 case CC0:
3943 case ADDRESSOF:
3944 return orig;
3946 case SCRATCH:
3947 for (i = 0; i < copy_insn_n_scratches; i++)
3948 if (copy_insn_scratch_in[i] == orig)
3949 return copy_insn_scratch_out[i];
3950 break;
3952 case CONST:
3953 /* CONST can be shared if it contains a SYMBOL_REF. If it contains
3954 a LABEL_REF, it isn't sharable. */
3955 if (GET_CODE (XEXP (orig, 0)) == PLUS
3956 && GET_CODE (XEXP (XEXP (orig, 0), 0)) == SYMBOL_REF
3957 && GET_CODE (XEXP (XEXP (orig, 0), 1)) == CONST_INT)
3958 return orig;
3959 break;
3961 /* A MEM with a constant address is not sharable. The problem is that
3962 the constant address may need to be reloaded. If the mem is shared,
3963 then reloading one copy of this mem will cause all copies to appear
3964 to have been reloaded. */
3966 default:
3967 break;
3970 copy = rtx_alloc (code);
3972 /* Copy the various flags, and other information. We assume that
3973 all fields need copying, and then clear the fields that should
3974 not be copied. That is the sensible default behavior, and forces
3975 us to explicitly document why we are *not* copying a flag. */
3976 memcpy (copy, orig, sizeof (struct rtx_def) - sizeof (rtunion));
3978 /* We do not copy the USED flag, which is used as a mark bit during
3979 walks over the RTL. */
3980 copy->used = 0;
3982 /* We do not copy JUMP, CALL, or FRAME_RELATED for INSNs. */
3983 if (GET_RTX_CLASS (code) == 'i')
3985 copy->jump = 0;
3986 copy->call = 0;
3987 copy->frame_related = 0;
3990 format_ptr = GET_RTX_FORMAT (GET_CODE (copy));
3992 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (copy)); i++)
3994 copy->fld[i] = orig->fld[i];
3995 switch (*format_ptr++)
3997 case 'e':
3998 if (XEXP (orig, i) != NULL)
3999 XEXP (copy, i) = copy_insn_1 (XEXP (orig, i));
4000 break;
4002 case 'E':
4003 case 'V':
4004 if (XVEC (orig, i) == orig_asm_constraints_vector)
4005 XVEC (copy, i) = copy_asm_constraints_vector;
4006 else if (XVEC (orig, i) == orig_asm_operands_vector)
4007 XVEC (copy, i) = copy_asm_operands_vector;
4008 else if (XVEC (orig, i) != NULL)
4010 XVEC (copy, i) = rtvec_alloc (XVECLEN (orig, i));
4011 for (j = 0; j < XVECLEN (copy, i); j++)
4012 XVECEXP (copy, i, j) = copy_insn_1 (XVECEXP (orig, i, j));
4014 break;
4016 case 't':
4017 case 'w':
4018 case 'i':
4019 case 's':
4020 case 'S':
4021 case 'u':
4022 case '0':
4023 /* These are left unchanged. */
4024 break;
4026 default:
4027 abort ();
4031 if (code == SCRATCH)
4033 i = copy_insn_n_scratches++;
4034 if (i >= MAX_RECOG_OPERANDS)
4035 abort ();
4036 copy_insn_scratch_in[i] = orig;
4037 copy_insn_scratch_out[i] = copy;
4039 else if (code == ASM_OPERANDS)
4041 orig_asm_operands_vector = ASM_OPERANDS_INPUT_VEC (orig);
4042 copy_asm_operands_vector = ASM_OPERANDS_INPUT_VEC (copy);
4043 orig_asm_constraints_vector = ASM_OPERANDS_INPUT_CONSTRAINT_VEC (orig);
4044 copy_asm_constraints_vector = ASM_OPERANDS_INPUT_CONSTRAINT_VEC (copy);
4047 return copy;
4050 /* Create a new copy of an rtx.
4051 This function differs from copy_rtx in that it handles SCRATCHes and
4052 ASM_OPERANDs properly.
4053 INSN doesn't really have to be a full INSN; it could be just the
4054 pattern. */
4056 copy_insn (insn)
4057 rtx insn;
4059 copy_insn_n_scratches = 0;
4060 orig_asm_operands_vector = 0;
4061 orig_asm_constraints_vector = 0;
4062 copy_asm_operands_vector = 0;
4063 copy_asm_constraints_vector = 0;
4064 return copy_insn_1 (insn);
4067 /* Initialize data structures and variables in this file
4068 before generating rtl for each function. */
4070 void
4071 init_emit ()
4073 struct function *f = cfun;
4075 f->emit = (struct emit_status *) xmalloc (sizeof (struct emit_status));
4076 first_insn = NULL;
4077 last_insn = NULL;
4078 seq_rtl_expr = NULL;
4079 cur_insn_uid = 1;
4080 reg_rtx_no = LAST_VIRTUAL_REGISTER + 1;
4081 last_linenum = 0;
4082 last_filename = 0;
4083 first_label_num = label_num;
4084 last_label_num = 0;
4085 seq_stack = NULL;
4087 clear_emit_caches ();
4089 /* Init the tables that describe all the pseudo regs. */
4091 f->emit->regno_pointer_align_length = LAST_VIRTUAL_REGISTER + 101;
4093 f->emit->regno_pointer_align
4094 = (unsigned char *) xcalloc (f->emit->regno_pointer_align_length,
4095 sizeof (unsigned char));
4097 regno_reg_rtx
4098 = (rtx *) xcalloc (f->emit->regno_pointer_align_length * sizeof (rtx),
4099 sizeof (rtx));
4101 /* Put copies of all the virtual register rtx into regno_reg_rtx. */
4102 init_virtual_regs (f->emit);
4104 /* Indicate that the virtual registers and stack locations are
4105 all pointers. */
4106 REG_POINTER (stack_pointer_rtx) = 1;
4107 REG_POINTER (frame_pointer_rtx) = 1;
4108 REG_POINTER (hard_frame_pointer_rtx) = 1;
4109 REG_POINTER (arg_pointer_rtx) = 1;
4111 REG_POINTER (virtual_incoming_args_rtx) = 1;
4112 REG_POINTER (virtual_stack_vars_rtx) = 1;
4113 REG_POINTER (virtual_stack_dynamic_rtx) = 1;
4114 REG_POINTER (virtual_outgoing_args_rtx) = 1;
4115 REG_POINTER (virtual_cfa_rtx) = 1;
4117 #ifdef STACK_BOUNDARY
4118 REGNO_POINTER_ALIGN (STACK_POINTER_REGNUM) = STACK_BOUNDARY;
4119 REGNO_POINTER_ALIGN (FRAME_POINTER_REGNUM) = STACK_BOUNDARY;
4120 REGNO_POINTER_ALIGN (HARD_FRAME_POINTER_REGNUM) = STACK_BOUNDARY;
4121 REGNO_POINTER_ALIGN (ARG_POINTER_REGNUM) = STACK_BOUNDARY;
4123 REGNO_POINTER_ALIGN (VIRTUAL_INCOMING_ARGS_REGNUM) = STACK_BOUNDARY;
4124 REGNO_POINTER_ALIGN (VIRTUAL_STACK_VARS_REGNUM) = STACK_BOUNDARY;
4125 REGNO_POINTER_ALIGN (VIRTUAL_STACK_DYNAMIC_REGNUM) = STACK_BOUNDARY;
4126 REGNO_POINTER_ALIGN (VIRTUAL_OUTGOING_ARGS_REGNUM) = STACK_BOUNDARY;
4127 REGNO_POINTER_ALIGN (VIRTUAL_CFA_REGNUM) = BITS_PER_WORD;
4128 #endif
4130 #ifdef INIT_EXPANDERS
4131 INIT_EXPANDERS;
4132 #endif
4135 /* Mark SS for GC. */
4137 static void
4138 mark_sequence_stack (ss)
4139 struct sequence_stack *ss;
4141 while (ss)
4143 ggc_mark_rtx (ss->first);
4144 ggc_mark_tree (ss->sequence_rtl_expr);
4145 ss = ss->next;
4149 /* Mark ES for GC. */
4151 void
4152 mark_emit_status (es)
4153 struct emit_status *es;
4155 rtx *r;
4156 int i;
4158 if (es == 0)
4159 return;
4161 for (i = es->regno_pointer_align_length, r = es->x_regno_reg_rtx;
4162 i > 0; --i, ++r)
4163 ggc_mark_rtx (*r);
4165 mark_sequence_stack (es->sequence_stack);
4166 ggc_mark_tree (es->sequence_rtl_expr);
4167 ggc_mark_rtx (es->x_first_insn);
4170 /* Create some permanent unique rtl objects shared between all functions.
4171 LINE_NUMBERS is nonzero if line numbers are to be generated. */
4173 void
4174 init_emit_once (line_numbers)
4175 int line_numbers;
4177 int i;
4178 enum machine_mode mode;
4179 enum machine_mode double_mode;
4181 /* Initialize the CONST_INT hash table. */
4182 const_int_htab = htab_create (37, const_int_htab_hash,
4183 const_int_htab_eq, NULL);
4184 ggc_add_root (&const_int_htab, 1, sizeof (const_int_htab),
4185 rtx_htab_mark);
4187 no_line_numbers = ! line_numbers;
4189 /* Compute the word and byte modes. */
4191 byte_mode = VOIDmode;
4192 word_mode = VOIDmode;
4193 double_mode = VOIDmode;
4195 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
4196 mode = GET_MODE_WIDER_MODE (mode))
4198 if (GET_MODE_BITSIZE (mode) == BITS_PER_UNIT
4199 && byte_mode == VOIDmode)
4200 byte_mode = mode;
4202 if (GET_MODE_BITSIZE (mode) == BITS_PER_WORD
4203 && word_mode == VOIDmode)
4204 word_mode = mode;
4207 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
4208 mode = GET_MODE_WIDER_MODE (mode))
4210 if (GET_MODE_BITSIZE (mode) == DOUBLE_TYPE_SIZE
4211 && double_mode == VOIDmode)
4212 double_mode = mode;
4215 ptr_mode = mode_for_size (POINTER_SIZE, GET_MODE_CLASS (Pmode), 0);
4217 /* Assign register numbers to the globally defined register rtx.
4218 This must be done at runtime because the register number field
4219 is in a union and some compilers can't initialize unions. */
4221 pc_rtx = gen_rtx (PC, VOIDmode);
4222 cc0_rtx = gen_rtx (CC0, VOIDmode);
4223 stack_pointer_rtx = gen_raw_REG (Pmode, STACK_POINTER_REGNUM);
4224 frame_pointer_rtx = gen_raw_REG (Pmode, FRAME_POINTER_REGNUM);
4225 if (hard_frame_pointer_rtx == 0)
4226 hard_frame_pointer_rtx = gen_raw_REG (Pmode,
4227 HARD_FRAME_POINTER_REGNUM);
4228 if (arg_pointer_rtx == 0)
4229 arg_pointer_rtx = gen_raw_REG (Pmode, ARG_POINTER_REGNUM);
4230 virtual_incoming_args_rtx =
4231 gen_raw_REG (Pmode, VIRTUAL_INCOMING_ARGS_REGNUM);
4232 virtual_stack_vars_rtx =
4233 gen_raw_REG (Pmode, VIRTUAL_STACK_VARS_REGNUM);
4234 virtual_stack_dynamic_rtx =
4235 gen_raw_REG (Pmode, VIRTUAL_STACK_DYNAMIC_REGNUM);
4236 virtual_outgoing_args_rtx =
4237 gen_raw_REG (Pmode, VIRTUAL_OUTGOING_ARGS_REGNUM);
4238 virtual_cfa_rtx = gen_raw_REG (Pmode, VIRTUAL_CFA_REGNUM);
4240 /* These rtx must be roots if GC is enabled. */
4241 ggc_add_rtx_root (global_rtl, GR_MAX);
4243 #ifdef INIT_EXPANDERS
4244 /* This is to initialize {init|mark|free}_machine_status before the first
4245 call to push_function_context_to. This is needed by the Chill front
4246 end which calls push_function_context_to before the first cal to
4247 init_function_start. */
4248 INIT_EXPANDERS;
4249 #endif
4251 /* Create the unique rtx's for certain rtx codes and operand values. */
4253 /* Don't use gen_rtx here since gen_rtx in this case
4254 tries to use these variables. */
4255 for (i = - MAX_SAVED_CONST_INT; i <= MAX_SAVED_CONST_INT; i++)
4256 const_int_rtx[i + MAX_SAVED_CONST_INT] =
4257 gen_rtx_raw_CONST_INT (VOIDmode, i);
4258 ggc_add_rtx_root (const_int_rtx, 2 * MAX_SAVED_CONST_INT + 1);
4260 if (STORE_FLAG_VALUE >= - MAX_SAVED_CONST_INT
4261 && STORE_FLAG_VALUE <= MAX_SAVED_CONST_INT)
4262 const_true_rtx = const_int_rtx[STORE_FLAG_VALUE + MAX_SAVED_CONST_INT];
4263 else
4264 const_true_rtx = gen_rtx_CONST_INT (VOIDmode, STORE_FLAG_VALUE);
4266 dconst0 = REAL_VALUE_ATOF ("0", double_mode);
4267 dconst1 = REAL_VALUE_ATOF ("1", double_mode);
4268 dconst2 = REAL_VALUE_ATOF ("2", double_mode);
4269 dconstm1 = REAL_VALUE_ATOF ("-1", double_mode);
4271 for (i = 0; i <= 2; i++)
4273 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
4274 mode = GET_MODE_WIDER_MODE (mode))
4276 rtx tem = rtx_alloc (CONST_DOUBLE);
4277 union real_extract u;
4279 /* Zero any holes in a structure. */
4280 memset ((char *) &u, 0, sizeof u);
4281 u.d = i == 0 ? dconst0 : i == 1 ? dconst1 : dconst2;
4283 /* Avoid trailing garbage in the rtx. */
4284 if (sizeof (u) < sizeof (HOST_WIDE_INT))
4285 CONST_DOUBLE_LOW (tem) = 0;
4286 if (sizeof (u) < 2 * sizeof (HOST_WIDE_INT))
4287 CONST_DOUBLE_HIGH (tem) = 0;
4289 memcpy (&CONST_DOUBLE_LOW (tem), &u, sizeof u);
4290 CONST_DOUBLE_MEM (tem) = cc0_rtx;
4291 CONST_DOUBLE_CHAIN (tem) = NULL_RTX;
4292 PUT_MODE (tem, mode);
4294 const_tiny_rtx[i][(int) mode] = tem;
4297 const_tiny_rtx[i][(int) VOIDmode] = GEN_INT (i);
4299 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
4300 mode = GET_MODE_WIDER_MODE (mode))
4301 const_tiny_rtx[i][(int) mode] = GEN_INT (i);
4303 for (mode = GET_CLASS_NARROWEST_MODE (MODE_PARTIAL_INT);
4304 mode != VOIDmode;
4305 mode = GET_MODE_WIDER_MODE (mode))
4306 const_tiny_rtx[i][(int) mode] = GEN_INT (i);
4309 for (i = (int) CCmode; i < (int) MAX_MACHINE_MODE; ++i)
4310 if (GET_MODE_CLASS ((enum machine_mode) i) == MODE_CC)
4311 const_tiny_rtx[0][i] = const0_rtx;
4313 const_tiny_rtx[0][(int) BImode] = const0_rtx;
4314 if (STORE_FLAG_VALUE == 1)
4315 const_tiny_rtx[1][(int) BImode] = const1_rtx;
4317 /* For bounded pointers, `&const_tiny_rtx[0][0]' is not the same as
4318 `(rtx *) const_tiny_rtx'. The former has bounds that only cover
4319 `const_tiny_rtx[0]', whereas the latter has bounds that cover all. */
4320 ggc_add_rtx_root ((rtx *) const_tiny_rtx, sizeof const_tiny_rtx / sizeof (rtx));
4321 ggc_add_rtx_root (&const_true_rtx, 1);
4323 #ifdef RETURN_ADDRESS_POINTER_REGNUM
4324 return_address_pointer_rtx
4325 = gen_raw_REG (Pmode, RETURN_ADDRESS_POINTER_REGNUM);
4326 #endif
4328 #ifdef STRUCT_VALUE
4329 struct_value_rtx = STRUCT_VALUE;
4330 #else
4331 struct_value_rtx = gen_rtx_REG (Pmode, STRUCT_VALUE_REGNUM);
4332 #endif
4334 #ifdef STRUCT_VALUE_INCOMING
4335 struct_value_incoming_rtx = STRUCT_VALUE_INCOMING;
4336 #else
4337 #ifdef STRUCT_VALUE_INCOMING_REGNUM
4338 struct_value_incoming_rtx
4339 = gen_rtx_REG (Pmode, STRUCT_VALUE_INCOMING_REGNUM);
4340 #else
4341 struct_value_incoming_rtx = struct_value_rtx;
4342 #endif
4343 #endif
4345 #ifdef STATIC_CHAIN_REGNUM
4346 static_chain_rtx = gen_rtx_REG (Pmode, STATIC_CHAIN_REGNUM);
4348 #ifdef STATIC_CHAIN_INCOMING_REGNUM
4349 if (STATIC_CHAIN_INCOMING_REGNUM != STATIC_CHAIN_REGNUM)
4350 static_chain_incoming_rtx
4351 = gen_rtx_REG (Pmode, STATIC_CHAIN_INCOMING_REGNUM);
4352 else
4353 #endif
4354 static_chain_incoming_rtx = static_chain_rtx;
4355 #endif
4357 #ifdef STATIC_CHAIN
4358 static_chain_rtx = STATIC_CHAIN;
4360 #ifdef STATIC_CHAIN_INCOMING
4361 static_chain_incoming_rtx = STATIC_CHAIN_INCOMING;
4362 #else
4363 static_chain_incoming_rtx = static_chain_rtx;
4364 #endif
4365 #endif
4367 if (PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM)
4368 pic_offset_table_rtx = gen_rtx_REG (Pmode, PIC_OFFSET_TABLE_REGNUM);
4370 ggc_add_rtx_root (&pic_offset_table_rtx, 1);
4371 ggc_add_rtx_root (&struct_value_rtx, 1);
4372 ggc_add_rtx_root (&struct_value_incoming_rtx, 1);
4373 ggc_add_rtx_root (&static_chain_rtx, 1);
4374 ggc_add_rtx_root (&static_chain_incoming_rtx, 1);
4375 ggc_add_rtx_root (&return_address_pointer_rtx, 1);
4378 /* Query and clear/ restore no_line_numbers. This is used by the
4379 switch / case handling in stmt.c to give proper line numbers in
4380 warnings about unreachable code. */
4383 force_line_numbers ()
4385 int old = no_line_numbers;
4387 no_line_numbers = 0;
4388 if (old)
4389 force_next_line_note ();
4390 return old;
4393 void
4394 restore_line_number_status (old_value)
4395 int old_value;
4397 no_line_numbers = old_value;