* sh.h (STRUCT_VALUE): Just 0 for TARGET_HITACHI.
[official-gcc.git] / gcc / emit-rtl.c
blobe697d55c455eefe3584d315596e1fe643904dd06
1 /* Emit RTL for the GNU C-Compiler expander.
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 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"
58 /* Commonly used modes. */
60 enum machine_mode byte_mode; /* Mode whose width is BITS_PER_UNIT. */
61 enum machine_mode word_mode; /* Mode whose width is BITS_PER_WORD. */
62 enum machine_mode double_mode; /* Mode whose width is DOUBLE_TYPE_SIZE. */
63 enum machine_mode ptr_mode; /* Mode whose width is POINTER_SIZE. */
66 /* This is *not* reset after each function. It gives each CODE_LABEL
67 in the entire compilation a unique label number. */
69 static int label_num = 1;
71 /* Highest label number in current function.
72 Zero means use the value of label_num instead.
73 This is nonzero only when belatedly compiling an inline function. */
75 static int last_label_num;
77 /* Value label_num had when set_new_first_and_last_label_number was called.
78 If label_num has not changed since then, last_label_num is valid. */
80 static int base_label_num;
82 /* Nonzero means do not generate NOTEs for source line numbers. */
84 static int no_line_numbers;
86 /* Commonly used rtx's, so that we only need space for one copy.
87 These are initialized once for the entire compilation.
88 All of these except perhaps the floating-point CONST_DOUBLEs
89 are unique; no other rtx-object will be equal to any of these. */
91 rtx global_rtl[GR_MAX];
93 /* We record floating-point CONST_DOUBLEs in each floating-point mode for
94 the values of 0, 1, and 2. For the integer entries and VOIDmode, we
95 record a copy of const[012]_rtx. */
97 rtx const_tiny_rtx[3][(int) MAX_MACHINE_MODE];
99 rtx const_true_rtx;
101 REAL_VALUE_TYPE dconst0;
102 REAL_VALUE_TYPE dconst1;
103 REAL_VALUE_TYPE dconst2;
104 REAL_VALUE_TYPE dconstm1;
106 /* All references to the following fixed hard registers go through
107 these unique rtl objects. On machines where the frame-pointer and
108 arg-pointer are the same register, they use the same unique object.
110 After register allocation, other rtl objects which used to be pseudo-regs
111 may be clobbered to refer to the frame-pointer register.
112 But references that were originally to the frame-pointer can be
113 distinguished from the others because they contain frame_pointer_rtx.
115 When to use frame_pointer_rtx and hard_frame_pointer_rtx is a little
116 tricky: until register elimination has taken place hard_frame_pointer_rtx
117 should be used if it is being set, and frame_pointer_rtx otherwise. After
118 register elimination hard_frame_pointer_rtx should always be used.
119 On machines where the two registers are same (most) then these are the
120 same.
122 In an inline procedure, the stack and frame pointer rtxs may not be
123 used for anything else. */
124 rtx struct_value_rtx; /* (REG:Pmode STRUCT_VALUE_REGNUM) */
125 rtx struct_value_incoming_rtx; /* (REG:Pmode STRUCT_VALUE_INCOMING_REGNUM) */
126 rtx static_chain_rtx; /* (REG:Pmode STATIC_CHAIN_REGNUM) */
127 rtx static_chain_incoming_rtx; /* (REG:Pmode STATIC_CHAIN_INCOMING_REGNUM) */
128 rtx pic_offset_table_rtx; /* (REG:Pmode PIC_OFFSET_TABLE_REGNUM) */
130 /* This is used to implement __builtin_return_address for some machines.
131 See for instance the MIPS port. */
132 rtx return_address_pointer_rtx; /* (REG:Pmode RETURN_ADDRESS_POINTER_REGNUM) */
134 /* We make one copy of (const_int C) where C is in
135 [- MAX_SAVED_CONST_INT, MAX_SAVED_CONST_INT]
136 to save space during the compilation and simplify comparisons of
137 integers. */
139 rtx const_int_rtx[MAX_SAVED_CONST_INT * 2 + 1];
141 /* A hash table storing CONST_INTs whose absolute value is greater
142 than MAX_SAVED_CONST_INT. */
144 static htab_t const_int_htab;
146 /* start_sequence and gen_sequence can make a lot of rtx expressions which are
147 shortly thrown away. We use two mechanisms to prevent this waste:
149 For sizes up to 5 elements, we keep a SEQUENCE and its associated
150 rtvec for use by gen_sequence. One entry for each size is
151 sufficient because most cases are calls to gen_sequence followed by
152 immediately emitting the SEQUENCE. Reuse is safe since emitting a
153 sequence is destructive on the insn in it anyway and hence can't be
154 redone.
156 We do not bother to save this cached data over nested function calls.
157 Instead, we just reinitialize them. */
159 #define SEQUENCE_RESULT_SIZE 5
161 static rtx sequence_result[SEQUENCE_RESULT_SIZE];
163 /* During RTL generation, we also keep a list of free INSN rtl codes. */
164 static rtx free_insn;
166 #define first_insn (cfun->emit->x_first_insn)
167 #define last_insn (cfun->emit->x_last_insn)
168 #define cur_insn_uid (cfun->emit->x_cur_insn_uid)
169 #define last_linenum (cfun->emit->x_last_linenum)
170 #define last_filename (cfun->emit->x_last_filename)
171 #define first_label_num (cfun->emit->x_first_label_num)
173 /* This is where the pointer to the obstack being used for RTL is stored. */
174 extern struct obstack *rtl_obstack;
176 static rtx make_jump_insn_raw PARAMS ((rtx));
177 static rtx make_call_insn_raw PARAMS ((rtx));
178 static rtx find_line_note PARAMS ((rtx));
179 static void mark_sequence_stack PARAMS ((struct sequence_stack *));
180 static void unshare_all_rtl_1 PARAMS ((rtx));
181 static hashval_t const_int_htab_hash PARAMS ((const void *));
182 static int const_int_htab_eq PARAMS ((const void *,
183 const void *));
184 static int rtx_htab_mark_1 PARAMS ((void **, void *));
185 static void rtx_htab_mark PARAMS ((void *));
188 /* Returns a hash code for X (which is a really a CONST_INT). */
190 static hashval_t
191 const_int_htab_hash (x)
192 const void *x;
194 return (hashval_t) INTVAL ((const struct rtx_def *) x);
197 /* Returns non-zero if the value represented by X (which is really a
198 CONST_INT) is the same as that given by Y (which is really a
199 HOST_WIDE_INT *). */
201 static int
202 const_int_htab_eq (x, y)
203 const void *x;
204 const void *y;
206 return (INTVAL ((const struct rtx_def *) x) == *((const HOST_WIDE_INT *) y));
209 /* Mark the hash-table element X (which is really a pointer to an
210 rtx). */
212 static int
213 rtx_htab_mark_1 (x, data)
214 void **x;
215 void *data ATTRIBUTE_UNUSED;
217 ggc_mark_rtx (*x);
218 return 1;
221 /* Mark all the elements of HTAB (which is really an htab_t full of
222 rtxs). */
224 static void
225 rtx_htab_mark (htab)
226 void *htab;
228 htab_traverse (*((htab_t *) htab), rtx_htab_mark_1, NULL);
231 /* There are some RTL codes that require special attention; the generation
232 functions do the raw handling. If you add to this list, modify
233 special_rtx in gengenrtl.c as well. */
236 gen_rtx_CONST_INT (mode, arg)
237 enum machine_mode mode ATTRIBUTE_UNUSED;
238 HOST_WIDE_INT arg;
240 void **slot;
242 if (arg >= - MAX_SAVED_CONST_INT && arg <= MAX_SAVED_CONST_INT)
243 return const_int_rtx[arg + MAX_SAVED_CONST_INT];
245 #if STORE_FLAG_VALUE != 1 && STORE_FLAG_VALUE != -1
246 if (const_true_rtx && arg == STORE_FLAG_VALUE)
247 return const_true_rtx;
248 #endif
250 /* Look up the CONST_INT in the hash table. */
251 slot = htab_find_slot_with_hash (const_int_htab, &arg, (hashval_t) arg, 1);
252 if (*slot == 0)
254 if (!ggc_p)
256 push_obstacks_nochange ();
257 end_temporary_allocation ();
258 *slot = gen_rtx_raw_CONST_INT (VOIDmode, arg);
259 pop_obstacks ();
261 else
262 *slot = gen_rtx_raw_CONST_INT (VOIDmode, arg);
265 return (rtx) *slot;
268 /* CONST_DOUBLEs needs special handling because their length is known
269 only at run-time. */
272 gen_rtx_CONST_DOUBLE (mode, arg0, arg1, arg2)
273 enum machine_mode mode;
274 rtx arg0;
275 HOST_WIDE_INT arg1, arg2;
277 rtx r = rtx_alloc (CONST_DOUBLE);
278 int i;
280 PUT_MODE (r, mode);
281 XEXP (r, 0) = arg0;
282 X0EXP (r, 1) = NULL_RTX;
283 XWINT (r, 2) = arg1;
284 XWINT (r, 3) = arg2;
286 for (i = GET_RTX_LENGTH (CONST_DOUBLE) - 1; i > 3; --i)
287 XWINT (r, i) = 0;
289 return r;
293 gen_rtx_REG (mode, regno)
294 enum machine_mode mode;
295 int regno;
297 /* In case the MD file explicitly references the frame pointer, have
298 all such references point to the same frame pointer. This is
299 used during frame pointer elimination to distinguish the explicit
300 references to these registers from pseudos that happened to be
301 assigned to them.
303 If we have eliminated the frame pointer or arg pointer, we will
304 be using it as a normal register, for example as a spill
305 register. In such cases, we might be accessing it in a mode that
306 is not Pmode and therefore cannot use the pre-allocated rtx.
308 Also don't do this when we are making new REGs in reload, since
309 we don't want to get confused with the real pointers. */
311 if (mode == Pmode && !reload_in_progress)
313 if (regno == FRAME_POINTER_REGNUM)
314 return frame_pointer_rtx;
315 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
316 if (regno == HARD_FRAME_POINTER_REGNUM)
317 return hard_frame_pointer_rtx;
318 #endif
319 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM && HARD_FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
320 if (regno == ARG_POINTER_REGNUM)
321 return arg_pointer_rtx;
322 #endif
323 #ifdef RETURN_ADDRESS_POINTER_REGNUM
324 if (regno == RETURN_ADDRESS_POINTER_REGNUM)
325 return return_address_pointer_rtx;
326 #endif
327 if (regno == STACK_POINTER_REGNUM)
328 return stack_pointer_rtx;
331 return gen_rtx_raw_REG (mode, regno);
335 gen_rtx_MEM (mode, addr)
336 enum machine_mode mode;
337 rtx addr;
339 rtx rt = gen_rtx_raw_MEM (mode, addr);
341 /* This field is not cleared by the mere allocation of the rtx, so
342 we clear it here. */
343 MEM_ALIAS_SET (rt) = 0;
345 return rt;
348 /* rtx gen_rtx (code, mode, [element1, ..., elementn])
350 ** This routine generates an RTX of the size specified by
351 ** <code>, which is an RTX code. The RTX structure is initialized
352 ** from the arguments <element1> through <elementn>, which are
353 ** interpreted according to the specific RTX type's format. The
354 ** special machine mode associated with the rtx (if any) is specified
355 ** in <mode>.
357 ** gen_rtx can be invoked in a way which resembles the lisp-like
358 ** rtx it will generate. For example, the following rtx structure:
360 ** (plus:QI (mem:QI (reg:SI 1))
361 ** (mem:QI (plusw:SI (reg:SI 2) (reg:SI 3))))
363 ** ...would be generated by the following C code:
365 ** gen_rtx (PLUS, QImode,
366 ** gen_rtx (MEM, QImode,
367 ** gen_rtx (REG, SImode, 1)),
368 ** gen_rtx (MEM, QImode,
369 ** gen_rtx (PLUS, SImode,
370 ** gen_rtx (REG, SImode, 2),
371 ** gen_rtx (REG, SImode, 3)))),
374 /*VARARGS2*/
376 gen_rtx VPARAMS ((enum rtx_code code, enum machine_mode mode, ...))
378 #ifndef ANSI_PROTOTYPES
379 enum rtx_code code;
380 enum machine_mode mode;
381 #endif
382 va_list p;
383 register int i; /* Array indices... */
384 register const char *fmt; /* Current rtx's format... */
385 register rtx rt_val; /* RTX to return to caller... */
387 VA_START (p, mode);
389 #ifndef ANSI_PROTOTYPES
390 code = va_arg (p, enum rtx_code);
391 mode = va_arg (p, enum machine_mode);
392 #endif
394 switch (code)
396 case CONST_INT:
397 rt_val = gen_rtx_CONST_INT (mode, va_arg (p, HOST_WIDE_INT));
398 break;
400 case CONST_DOUBLE:
402 rtx arg0 = va_arg (p, rtx);
403 HOST_WIDE_INT arg1 = va_arg (p, HOST_WIDE_INT);
404 HOST_WIDE_INT arg2 = va_arg (p, HOST_WIDE_INT);
405 rt_val = gen_rtx_CONST_DOUBLE (mode, arg0, arg1, arg2);
407 break;
409 case REG:
410 rt_val = gen_rtx_REG (mode, va_arg (p, int));
411 break;
413 case MEM:
414 rt_val = gen_rtx_MEM (mode, va_arg (p, rtx));
415 break;
417 default:
418 rt_val = rtx_alloc (code); /* Allocate the storage space. */
419 rt_val->mode = mode; /* Store the machine mode... */
421 fmt = GET_RTX_FORMAT (code); /* Find the right format... */
422 for (i = 0; i < GET_RTX_LENGTH (code); i++)
424 switch (*fmt++)
426 case '0': /* Unused field. */
427 break;
429 case 'i': /* An integer? */
430 XINT (rt_val, i) = va_arg (p, int);
431 break;
433 case 'w': /* A wide integer? */
434 XWINT (rt_val, i) = va_arg (p, HOST_WIDE_INT);
435 break;
437 case 's': /* A string? */
438 XSTR (rt_val, i) = va_arg (p, char *);
439 break;
441 case 'e': /* An expression? */
442 case 'u': /* An insn? Same except when printing. */
443 XEXP (rt_val, i) = va_arg (p, rtx);
444 break;
446 case 'E': /* An RTX vector? */
447 XVEC (rt_val, i) = va_arg (p, rtvec);
448 break;
450 case 'b': /* A bitmap? */
451 XBITMAP (rt_val, i) = va_arg (p, bitmap);
452 break;
454 case 't': /* A tree? */
455 XTREE (rt_val, i) = va_arg (p, tree);
456 break;
458 default:
459 abort ();
462 break;
465 va_end (p);
466 return rt_val;
469 /* gen_rtvec (n, [rt1, ..., rtn])
471 ** This routine creates an rtvec and stores within it the
472 ** pointers to rtx's which are its arguments.
475 /*VARARGS1*/
476 rtvec
477 gen_rtvec VPARAMS ((int n, ...))
479 #ifndef ANSI_PROTOTYPES
480 int n;
481 #endif
482 int i;
483 va_list p;
484 rtx *vector;
486 VA_START (p, n);
488 #ifndef ANSI_PROTOTYPES
489 n = va_arg (p, int);
490 #endif
492 if (n == 0)
493 return NULL_RTVEC; /* Don't allocate an empty rtvec... */
495 vector = (rtx *) alloca (n * sizeof (rtx));
497 for (i = 0; i < n; i++)
498 vector[i] = va_arg (p, rtx);
499 va_end (p);
501 return gen_rtvec_v (n, vector);
504 rtvec
505 gen_rtvec_v (n, argp)
506 int n;
507 rtx *argp;
509 register int i;
510 register rtvec rt_val;
512 if (n == 0)
513 return NULL_RTVEC; /* Don't allocate an empty rtvec... */
515 rt_val = rtvec_alloc (n); /* Allocate an rtvec... */
517 for (i = 0; i < n; i++)
518 rt_val->elem[i] = *argp++;
520 return rt_val;
524 /* Generate a REG rtx for a new pseudo register of mode MODE.
525 This pseudo is assigned the next sequential register number. */
528 gen_reg_rtx (mode)
529 enum machine_mode mode;
531 struct function *f = cfun;
532 register rtx val;
534 /* Don't let anything called after initial flow analysis create new
535 registers. */
536 if (no_new_pseudos)
537 abort ();
539 if (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
540 || GET_MODE_CLASS (mode) == MODE_COMPLEX_INT)
542 /* For complex modes, don't make a single pseudo.
543 Instead, make a CONCAT of two pseudos.
544 This allows noncontiguous allocation of the real and imaginary parts,
545 which makes much better code. Besides, allocating DCmode
546 pseudos overstrains reload on some machines like the 386. */
547 rtx realpart, imagpart;
548 int size = GET_MODE_UNIT_SIZE (mode);
549 enum machine_mode partmode
550 = mode_for_size (size * BITS_PER_UNIT,
551 (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
552 ? MODE_FLOAT : MODE_INT),
555 realpart = gen_reg_rtx (partmode);
556 imagpart = gen_reg_rtx (partmode);
557 return gen_rtx_CONCAT (mode, realpart, imagpart);
560 /* Make sure regno_pointer_flag and regno_reg_rtx are large
561 enough to have an element for this pseudo reg number. */
563 if (reg_rtx_no == f->emit->regno_pointer_flag_length)
565 int old_size = f->emit->regno_pointer_flag_length;
566 rtx *new1;
567 char *new;
568 new = xrealloc (f->emit->regno_pointer_flag, old_size * 2);
569 memset (new + old_size, 0, old_size);
570 f->emit->regno_pointer_flag = new;
572 new = xrealloc (f->emit->regno_pointer_align, old_size * 2);
573 memset (new + old_size, 0, old_size);
574 f->emit->regno_pointer_align = new;
576 new1 = (rtx *) xrealloc (f->emit->x_regno_reg_rtx,
577 old_size * 2 * sizeof (rtx));
578 memset (new1 + old_size, 0, old_size * sizeof (rtx));
579 regno_reg_rtx = new1;
581 f->emit->regno_pointer_flag_length = old_size * 2;
584 val = gen_rtx_raw_REG (mode, reg_rtx_no);
585 regno_reg_rtx[reg_rtx_no++] = val;
586 return val;
589 /* Identify REG (which may be a CONCAT) as a user register. */
591 void
592 mark_user_reg (reg)
593 rtx reg;
595 if (GET_CODE (reg) == CONCAT)
597 REG_USERVAR_P (XEXP (reg, 0)) = 1;
598 REG_USERVAR_P (XEXP (reg, 1)) = 1;
600 else if (GET_CODE (reg) == REG)
601 REG_USERVAR_P (reg) = 1;
602 else
603 abort ();
606 /* Identify REG as a probable pointer register and show its alignment
607 as ALIGN, if nonzero. */
609 void
610 mark_reg_pointer (reg, align)
611 rtx reg;
612 int align;
614 if (! REGNO_POINTER_FLAG (REGNO (reg)))
616 REGNO_POINTER_FLAG (REGNO (reg)) = 1;
618 if (align)
619 REGNO_POINTER_ALIGN (REGNO (reg)) = align;
621 else if (align && align < REGNO_POINTER_ALIGN (REGNO (reg)))
622 /* We can no-longer be sure just how aligned this pointer is */
623 REGNO_POINTER_ALIGN (REGNO (reg)) = align;
626 /* Return 1 plus largest pseudo reg number used in the current function. */
629 max_reg_num ()
631 return reg_rtx_no;
634 /* Return 1 + the largest label number used so far in the current function. */
637 max_label_num ()
639 if (last_label_num && label_num == base_label_num)
640 return last_label_num;
641 return label_num;
644 /* Return first label number used in this function (if any were used). */
647 get_first_label_num ()
649 return first_label_num;
652 /* Return a value representing some low-order bits of X, where the number
653 of low-order bits is given by MODE. Note that no conversion is done
654 between floating-point and fixed-point values, rather, the bit
655 representation is returned.
657 This function handles the cases in common between gen_lowpart, below,
658 and two variants in cse.c and combine.c. These are the cases that can
659 be safely handled at all points in the compilation.
661 If this is not a case we can handle, return 0. */
664 gen_lowpart_common (mode, x)
665 enum machine_mode mode;
666 register rtx x;
668 int word = 0;
670 if (GET_MODE (x) == mode)
671 return x;
673 /* MODE must occupy no more words than the mode of X. */
674 if (GET_MODE (x) != VOIDmode
675 && ((GET_MODE_SIZE (mode) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD
676 > ((GET_MODE_SIZE (GET_MODE (x)) + (UNITS_PER_WORD - 1))
677 / UNITS_PER_WORD)))
678 return 0;
680 if (WORDS_BIG_ENDIAN && GET_MODE_SIZE (GET_MODE (x)) > UNITS_PER_WORD)
681 word = ((GET_MODE_SIZE (GET_MODE (x))
682 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD))
683 / UNITS_PER_WORD);
685 if ((GET_CODE (x) == ZERO_EXTEND || GET_CODE (x) == SIGN_EXTEND)
686 && (GET_MODE_CLASS (mode) == MODE_INT
687 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT))
689 /* If we are getting the low-order part of something that has been
690 sign- or zero-extended, we can either just use the object being
691 extended or make a narrower extension. If we want an even smaller
692 piece than the size of the object being extended, call ourselves
693 recursively.
695 This case is used mostly by combine and cse. */
697 if (GET_MODE (XEXP (x, 0)) == mode)
698 return XEXP (x, 0);
699 else if (GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (XEXP (x, 0))))
700 return gen_lowpart_common (mode, XEXP (x, 0));
701 else if (GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (x)))
702 return gen_rtx_fmt_e (GET_CODE (x), mode, XEXP (x, 0));
704 else if (GET_CODE (x) == SUBREG
705 && (GET_MODE_SIZE (mode) <= UNITS_PER_WORD
706 || GET_MODE_SIZE (mode) == GET_MODE_UNIT_SIZE (GET_MODE (x))))
707 return (GET_MODE (SUBREG_REG (x)) == mode && SUBREG_WORD (x) == 0
708 ? SUBREG_REG (x)
709 : gen_rtx_SUBREG (mode, SUBREG_REG (x), SUBREG_WORD (x) + word));
710 else if (GET_CODE (x) == REG)
712 /* Let the backend decide how many registers to skip. This is needed
713 in particular for Sparc64 where fp regs are smaller than a word. */
714 /* ??? Note that subregs are now ambiguous, in that those against
715 pseudos are sized by the Word Size, while those against hard
716 regs are sized by the underlying register size. Better would be
717 to always interpret the subreg offset parameter as bytes or bits. */
719 if (WORDS_BIG_ENDIAN && REGNO (x) < FIRST_PSEUDO_REGISTER)
720 word = (HARD_REGNO_NREGS (REGNO (x), GET_MODE (x))
721 - HARD_REGNO_NREGS (REGNO (x), mode));
723 /* If the register is not valid for MODE, return 0. If we don't
724 do this, there is no way to fix up the resulting REG later.
725 But we do do this if the current REG is not valid for its
726 mode. This latter is a kludge, but is required due to the
727 way that parameters are passed on some machines, most
728 notably Sparc. */
729 if (REGNO (x) < FIRST_PSEUDO_REGISTER
730 && ! HARD_REGNO_MODE_OK (REGNO (x) + word, mode)
731 && HARD_REGNO_MODE_OK (REGNO (x), GET_MODE (x)))
732 return 0;
733 else if (REGNO (x) < FIRST_PSEUDO_REGISTER
734 /* integrate.c can't handle parts of a return value register. */
735 && (! REG_FUNCTION_VALUE_P (x)
736 || ! rtx_equal_function_value_matters)
737 #ifdef CLASS_CANNOT_CHANGE_SIZE
738 && ! (GET_MODE_SIZE (mode) != GET_MODE_SIZE (GET_MODE (x))
739 && GET_MODE_CLASS (GET_MODE (x)) != MODE_COMPLEX_INT
740 && GET_MODE_CLASS (GET_MODE (x)) != MODE_COMPLEX_FLOAT
741 && (TEST_HARD_REG_BIT
742 (reg_class_contents[(int) CLASS_CANNOT_CHANGE_SIZE],
743 REGNO (x))))
744 #endif
745 /* We want to keep the stack, frame, and arg pointers
746 special. */
747 && x != frame_pointer_rtx
748 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
749 && x != arg_pointer_rtx
750 #endif
751 && x != stack_pointer_rtx)
752 return gen_rtx_REG (mode, REGNO (x) + word);
753 else
754 return gen_rtx_SUBREG (mode, x, word);
756 /* If X is a CONST_INT or a CONST_DOUBLE, extract the appropriate bits
757 from the low-order part of the constant. */
758 else if ((GET_MODE_CLASS (mode) == MODE_INT
759 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
760 && GET_MODE (x) == VOIDmode
761 && (GET_CODE (x) == CONST_INT || GET_CODE (x) == CONST_DOUBLE))
763 /* If MODE is twice the host word size, X is already the desired
764 representation. Otherwise, if MODE is wider than a word, we can't
765 do this. If MODE is exactly a word, return just one CONST_INT.
766 If MODE is smaller than a word, clear the bits that don't belong
767 in our mode, unless they and our sign bit are all one. So we get
768 either a reasonable negative value or a reasonable unsigned value
769 for this mode. */
771 if (GET_MODE_BITSIZE (mode) >= 2 * HOST_BITS_PER_WIDE_INT)
772 return x;
773 else if (GET_MODE_BITSIZE (mode) > HOST_BITS_PER_WIDE_INT)
774 return 0;
775 else if (GET_MODE_BITSIZE (mode) == HOST_BITS_PER_WIDE_INT)
776 return (GET_CODE (x) == CONST_INT ? x
777 : GEN_INT (CONST_DOUBLE_LOW (x)));
778 else
780 /* MODE must be narrower than HOST_BITS_PER_WIDE_INT. */
781 int width = GET_MODE_BITSIZE (mode);
782 HOST_WIDE_INT val = (GET_CODE (x) == CONST_INT ? INTVAL (x)
783 : CONST_DOUBLE_LOW (x));
785 /* Sign extend to HOST_WIDE_INT. */
786 val = val << (HOST_BITS_PER_WIDE_INT - width) >> (HOST_BITS_PER_WIDE_INT - width);
788 return (GET_CODE (x) == CONST_INT && INTVAL (x) == val ? x
789 : GEN_INT (val));
793 /* If X is an integral constant but we want it in floating-point, it
794 must be the case that we have a union of an integer and a floating-point
795 value. If the machine-parameters allow it, simulate that union here
796 and return the result. The two-word and single-word cases are
797 different. */
799 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
800 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
801 || flag_pretend_float)
802 && GET_MODE_CLASS (mode) == MODE_FLOAT
803 && GET_MODE_SIZE (mode) == UNITS_PER_WORD
804 && GET_CODE (x) == CONST_INT
805 && sizeof (float) * HOST_BITS_PER_CHAR == HOST_BITS_PER_WIDE_INT)
806 #ifdef REAL_ARITHMETIC
808 REAL_VALUE_TYPE r;
809 HOST_WIDE_INT i;
811 i = INTVAL (x);
812 r = REAL_VALUE_FROM_TARGET_SINGLE (i);
813 return CONST_DOUBLE_FROM_REAL_VALUE (r, mode);
815 #else
817 union {HOST_WIDE_INT i; float d; } u;
819 u.i = INTVAL (x);
820 return CONST_DOUBLE_FROM_REAL_VALUE (u.d, mode);
822 #endif
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))
832 #ifdef REAL_ARITHMETIC
834 REAL_VALUE_TYPE r;
835 HOST_WIDE_INT i[2];
836 HOST_WIDE_INT low, high;
838 if (GET_CODE (x) == CONST_INT)
839 low = INTVAL (x), high = low >> (HOST_BITS_PER_WIDE_INT -1);
840 else
841 low = CONST_DOUBLE_LOW (x), high = CONST_DOUBLE_HIGH (x);
843 /* REAL_VALUE_TARGET_DOUBLE takes the addressing order of the
844 target machine. */
845 if (WORDS_BIG_ENDIAN)
846 i[0] = high, i[1] = low;
847 else
848 i[0] = low, i[1] = high;
850 r = REAL_VALUE_FROM_TARGET_DOUBLE (i);
851 return CONST_DOUBLE_FROM_REAL_VALUE (r, mode);
853 #else
855 union {HOST_WIDE_INT i[2]; double d; } u;
856 HOST_WIDE_INT low, high;
858 if (GET_CODE (x) == CONST_INT)
859 low = INTVAL (x), high = low >> (HOST_BITS_PER_WIDE_INT -1);
860 else
861 low = CONST_DOUBLE_LOW (x), high = CONST_DOUBLE_HIGH (x);
863 #ifdef HOST_WORDS_BIG_ENDIAN
864 u.i[0] = high, u.i[1] = low;
865 #else
866 u.i[0] = low, u.i[1] = high;
867 #endif
869 return CONST_DOUBLE_FROM_REAL_VALUE (u.d, mode);
871 #endif
873 /* We need an extra case for machines where HOST_BITS_PER_WIDE_INT is the
874 same as sizeof (double) or when sizeof (float) is larger than the
875 size of a word on the target machine. */
876 #ifdef REAL_ARITHMETIC
877 else if (mode == SFmode && GET_CODE (x) == CONST_INT)
879 REAL_VALUE_TYPE r;
880 HOST_WIDE_INT i;
882 i = INTVAL (x);
883 r = REAL_VALUE_FROM_TARGET_SINGLE (i);
884 return CONST_DOUBLE_FROM_REAL_VALUE (r, mode);
886 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
887 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
888 || flag_pretend_float)
889 && GET_MODE_CLASS (mode) == MODE_FLOAT
890 && GET_MODE_SIZE (mode) == UNITS_PER_WORD
891 && GET_CODE (x) == CONST_INT
892 && (sizeof (double) * HOST_BITS_PER_CHAR
893 == HOST_BITS_PER_WIDE_INT))
895 REAL_VALUE_TYPE r;
896 HOST_WIDE_INT i;
898 i = INTVAL (x);
899 r = REAL_VALUE_FROM_TARGET_DOUBLE (&i);
900 return CONST_DOUBLE_FROM_REAL_VALUE (r, mode);
902 #endif
904 /* Similarly, if this is converting a floating-point value into a
905 single-word integer. Only do this is the host and target parameters are
906 compatible. */
908 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
909 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
910 || flag_pretend_float)
911 && (GET_MODE_CLASS (mode) == MODE_INT
912 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
913 && GET_CODE (x) == CONST_DOUBLE
914 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT
915 && GET_MODE_BITSIZE (mode) == BITS_PER_WORD)
916 return operand_subword (x, word, 0, GET_MODE (x));
918 /* Similarly, if this is converting a floating-point value into a
919 two-word integer, we can do this one word at a time and make an
920 integer. Only do this is the host and target parameters are
921 compatible. */
923 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
924 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
925 || flag_pretend_float)
926 && (GET_MODE_CLASS (mode) == MODE_INT
927 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
928 && GET_CODE (x) == CONST_DOUBLE
929 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT
930 && GET_MODE_BITSIZE (mode) == 2 * BITS_PER_WORD)
932 rtx lowpart
933 = operand_subword (x, word + WORDS_BIG_ENDIAN, 0, GET_MODE (x));
934 rtx highpart
935 = operand_subword (x, word + ! WORDS_BIG_ENDIAN, 0, GET_MODE (x));
937 if (lowpart && GET_CODE (lowpart) == CONST_INT
938 && highpart && GET_CODE (highpart) == CONST_INT)
939 return immed_double_const (INTVAL (lowpart), INTVAL (highpart), mode);
942 /* Otherwise, we can't do this. */
943 return 0;
946 /* Return the real part (which has mode MODE) of a complex value X.
947 This always comes at the low address in memory. */
950 gen_realpart (mode, x)
951 enum machine_mode mode;
952 register rtx x;
954 if (GET_CODE (x) == CONCAT && GET_MODE (XEXP (x, 0)) == mode)
955 return XEXP (x, 0);
956 else if (WORDS_BIG_ENDIAN
957 && GET_MODE_BITSIZE (mode) < BITS_PER_WORD
958 && REG_P (x)
959 && REGNO (x) < FIRST_PSEUDO_REGISTER)
960 fatal ("Unable to access real part of complex value in a hard register on this target");
961 else if (WORDS_BIG_ENDIAN)
962 return gen_highpart (mode, x);
963 else
964 return gen_lowpart (mode, x);
967 /* Return the imaginary part (which has mode MODE) of a complex value X.
968 This always comes at the high address in memory. */
971 gen_imagpart (mode, x)
972 enum machine_mode mode;
973 register rtx x;
975 if (GET_CODE (x) == CONCAT && GET_MODE (XEXP (x, 0)) == mode)
976 return XEXP (x, 1);
977 else if (WORDS_BIG_ENDIAN)
978 return gen_lowpart (mode, x);
979 else if (!WORDS_BIG_ENDIAN
980 && GET_MODE_BITSIZE (mode) < BITS_PER_WORD
981 && REG_P (x)
982 && REGNO (x) < FIRST_PSEUDO_REGISTER)
983 fatal ("Unable to access imaginary part of complex value in a hard register on this target");
984 else
985 return gen_highpart (mode, x);
988 /* Return 1 iff X, assumed to be a SUBREG,
989 refers to the real part of the complex value in its containing reg.
990 Complex values are always stored with the real part in the first word,
991 regardless of WORDS_BIG_ENDIAN. */
994 subreg_realpart_p (x)
995 rtx x;
997 if (GET_CODE (x) != SUBREG)
998 abort ();
1000 return ((unsigned int) SUBREG_WORD (x) * UNITS_PER_WORD
1001 < GET_MODE_UNIT_SIZE (GET_MODE (SUBREG_REG (x))));
1004 /* Assuming that X is an rtx (e.g., MEM, REG or SUBREG) for a value,
1005 return an rtx (MEM, SUBREG, or CONST_INT) that refers to the
1006 least-significant part of X.
1007 MODE specifies how big a part of X to return;
1008 it usually should not be larger than a word.
1009 If X is a MEM whose address is a QUEUED, the value may be so also. */
1012 gen_lowpart (mode, x)
1013 enum machine_mode mode;
1014 register rtx x;
1016 rtx result = gen_lowpart_common (mode, x);
1018 if (result)
1019 return result;
1020 else if (GET_CODE (x) == REG)
1022 /* Must be a hard reg that's not valid in MODE. */
1023 result = gen_lowpart_common (mode, copy_to_reg (x));
1024 if (result == 0)
1025 abort ();
1026 return result;
1028 else if (GET_CODE (x) == MEM)
1030 /* The only additional case we can do is MEM. */
1031 register int offset = 0;
1032 if (WORDS_BIG_ENDIAN)
1033 offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
1034 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
1036 if (BYTES_BIG_ENDIAN)
1037 /* Adjust the address so that the address-after-the-data
1038 is unchanged. */
1039 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
1040 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
1042 return change_address (x, mode, plus_constant (XEXP (x, 0), offset));
1044 else if (GET_CODE (x) == ADDRESSOF)
1045 return gen_lowpart (mode, force_reg (GET_MODE (x), x));
1046 else
1047 abort ();
1050 /* Like `gen_lowpart', but refer to the most significant part.
1051 This is used to access the imaginary part of a complex number. */
1054 gen_highpart (mode, x)
1055 enum machine_mode mode;
1056 register rtx x;
1058 /* This case loses if X is a subreg. To catch bugs early,
1059 complain if an invalid MODE is used even in other cases. */
1060 if (GET_MODE_SIZE (mode) > UNITS_PER_WORD
1061 && GET_MODE_SIZE (mode) != GET_MODE_UNIT_SIZE (GET_MODE (x)))
1062 abort ();
1063 if (GET_CODE (x) == CONST_DOUBLE
1064 #if !(TARGET_FLOAT_FORMAT != HOST_FLOAT_FORMAT || defined (REAL_IS_NOT_DOUBLE))
1065 && GET_MODE_CLASS (GET_MODE (x)) != MODE_FLOAT
1066 #endif
1068 return GEN_INT (CONST_DOUBLE_HIGH (x) & GET_MODE_MASK (mode));
1069 else if (GET_CODE (x) == CONST_INT)
1071 if (HOST_BITS_PER_WIDE_INT <= BITS_PER_WORD)
1072 return const0_rtx;
1073 return GEN_INT (INTVAL (x) >> (HOST_BITS_PER_WIDE_INT - BITS_PER_WORD));
1075 else if (GET_CODE (x) == MEM)
1077 register int offset = 0;
1078 if (! WORDS_BIG_ENDIAN)
1079 offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
1080 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
1082 if (! BYTES_BIG_ENDIAN
1083 && GET_MODE_SIZE (mode) < UNITS_PER_WORD)
1084 offset -= (GET_MODE_SIZE (mode)
1085 - MIN (UNITS_PER_WORD,
1086 GET_MODE_SIZE (GET_MODE (x))));
1088 return change_address (x, mode, plus_constant (XEXP (x, 0), offset));
1090 else if (GET_CODE (x) == SUBREG)
1092 /* The only time this should occur is when we are looking at a
1093 multi-word item with a SUBREG whose mode is the same as that of the
1094 item. It isn't clear what we would do if it wasn't. */
1095 if (SUBREG_WORD (x) != 0)
1096 abort ();
1097 return gen_highpart (mode, SUBREG_REG (x));
1099 else if (GET_CODE (x) == REG)
1101 int word;
1103 /* Let the backend decide how many registers to skip. This is needed
1104 in particular for sparc64 where fp regs are smaller than a word. */
1105 /* ??? Note that subregs are now ambiguous, in that those against
1106 pseudos are sized by the word size, while those against hard
1107 regs are sized by the underlying register size. Better would be
1108 to always interpret the subreg offset parameter as bytes or bits. */
1110 if (WORDS_BIG_ENDIAN)
1111 word = 0;
1112 else if (REGNO (x) < FIRST_PSEUDO_REGISTER)
1113 word = (HARD_REGNO_NREGS (REGNO (x), GET_MODE (x))
1114 - HARD_REGNO_NREGS (REGNO (x), mode));
1115 else
1116 word = ((GET_MODE_SIZE (GET_MODE (x))
1117 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD))
1118 / UNITS_PER_WORD);
1120 if (REGNO (x) < FIRST_PSEUDO_REGISTER
1121 /* integrate.c can't handle parts of a return value register. */
1122 && (! REG_FUNCTION_VALUE_P (x)
1123 || ! rtx_equal_function_value_matters)
1124 /* We want to keep the stack, frame, and arg pointers special. */
1125 && x != frame_pointer_rtx
1126 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
1127 && x != arg_pointer_rtx
1128 #endif
1129 && x != stack_pointer_rtx)
1130 return gen_rtx_REG (mode, REGNO (x) + word);
1131 else
1132 return gen_rtx_SUBREG (mode, x, word);
1134 else
1135 abort ();
1138 /* Return 1 iff X, assumed to be a SUBREG,
1139 refers to the least significant part of its containing reg.
1140 If X is not a SUBREG, always return 1 (it is its own low part!). */
1143 subreg_lowpart_p (x)
1144 rtx x;
1146 if (GET_CODE (x) != SUBREG)
1147 return 1;
1148 else if (GET_MODE (SUBREG_REG (x)) == VOIDmode)
1149 return 0;
1151 if (WORDS_BIG_ENDIAN
1152 && GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))) > UNITS_PER_WORD)
1153 return (SUBREG_WORD (x)
1154 == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))
1155 - MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD))
1156 / UNITS_PER_WORD));
1158 return SUBREG_WORD (x) == 0;
1161 /* Return subword I of operand OP.
1162 The word number, I, is interpreted as the word number starting at the
1163 low-order address. Word 0 is the low-order word if not WORDS_BIG_ENDIAN,
1164 otherwise it is the high-order word.
1166 If we cannot extract the required word, we return zero. Otherwise, an
1167 rtx corresponding to the requested word will be returned.
1169 VALIDATE_ADDRESS is nonzero if the address should be validated. Before
1170 reload has completed, a valid address will always be returned. After
1171 reload, if a valid address cannot be returned, we return zero.
1173 If VALIDATE_ADDRESS is zero, we simply form the required address; validating
1174 it is the responsibility of the caller.
1176 MODE is the mode of OP in case it is a CONST_INT. */
1179 operand_subword (op, i, validate_address, mode)
1180 rtx op;
1181 unsigned int i;
1182 int validate_address;
1183 enum machine_mode mode;
1185 HOST_WIDE_INT val;
1186 int size_ratio = HOST_BITS_PER_WIDE_INT / BITS_PER_WORD;
1188 if (mode == VOIDmode)
1189 mode = GET_MODE (op);
1191 if (mode == VOIDmode)
1192 abort ();
1194 /* If OP is narrower than a word, fail. */
1195 if (mode != BLKmode
1196 && (GET_MODE_SIZE (mode) < UNITS_PER_WORD))
1197 return 0;
1199 /* If we want a word outside OP, return zero. */
1200 if (mode != BLKmode
1201 && (i + 1) * UNITS_PER_WORD > GET_MODE_SIZE (mode))
1202 return const0_rtx;
1204 /* If OP is already an integer word, return it. */
1205 if (GET_MODE_CLASS (mode) == MODE_INT
1206 && GET_MODE_SIZE (mode) == UNITS_PER_WORD)
1207 return op;
1209 /* If OP is a REG or SUBREG, we can handle it very simply. */
1210 if (GET_CODE (op) == REG)
1212 /* ??? There is a potential problem with this code. It does not
1213 properly handle extractions of a subword from a hard register
1214 that is larger than word_mode. Presumably the check for
1215 HARD_REGNO_MODE_OK catches these most of these cases. */
1217 /* If OP is a hard register, but OP + I is not a hard register,
1218 then extracting a subword is impossible.
1220 For example, consider if OP is the last hard register and it is
1221 larger than word_mode. If we wanted word N (for N > 0) because a
1222 part of that hard register was known to contain a useful value,
1223 then OP + I would refer to a pseudo, not the hard register we
1224 actually wanted. */
1225 if (REGNO (op) < FIRST_PSEUDO_REGISTER
1226 && REGNO (op) + i >= FIRST_PSEUDO_REGISTER)
1227 return 0;
1229 /* If the register is not valid for MODE, return 0. Note we
1230 have to check both OP and OP + I since they may refer to
1231 different parts of the register file.
1233 Consider if OP refers to the last 96bit FP register and we want
1234 subword 3 because that subword is known to contain a value we
1235 needed. */
1236 if (REGNO (op) < FIRST_PSEUDO_REGISTER
1237 && (! HARD_REGNO_MODE_OK (REGNO (op), word_mode)
1238 || ! HARD_REGNO_MODE_OK (REGNO (op) + i, word_mode)))
1239 return 0;
1240 else if (REGNO (op) >= FIRST_PSEUDO_REGISTER
1241 || (REG_FUNCTION_VALUE_P (op)
1242 && rtx_equal_function_value_matters)
1243 /* We want to keep the stack, frame, and arg pointers
1244 special. */
1245 || op == frame_pointer_rtx
1246 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
1247 || op == arg_pointer_rtx
1248 #endif
1249 || op == stack_pointer_rtx)
1250 return gen_rtx_SUBREG (word_mode, op, i);
1251 else
1252 return gen_rtx_REG (word_mode, REGNO (op) + i);
1254 else if (GET_CODE (op) == SUBREG)
1255 return gen_rtx_SUBREG (word_mode, SUBREG_REG (op), i + SUBREG_WORD (op));
1256 else if (GET_CODE (op) == CONCAT)
1258 unsigned int partwords
1259 = GET_MODE_UNIT_SIZE (GET_MODE (op)) / UNITS_PER_WORD;
1261 if (i < partwords)
1262 return operand_subword (XEXP (op, 0), i, validate_address, mode);
1263 return operand_subword (XEXP (op, 1), i - partwords,
1264 validate_address, mode);
1267 /* Form a new MEM at the requested address. */
1268 if (GET_CODE (op) == MEM)
1270 rtx addr = plus_constant (XEXP (op, 0), i * UNITS_PER_WORD);
1271 rtx new;
1273 if (validate_address)
1275 if (reload_completed)
1277 if (! strict_memory_address_p (word_mode, addr))
1278 return 0;
1280 else
1281 addr = memory_address (word_mode, addr);
1284 new = gen_rtx_MEM (word_mode, addr);
1286 MEM_COPY_ATTRIBUTES (new, op);
1287 RTX_UNCHANGING_P (new) = RTX_UNCHANGING_P (op);
1288 MEM_ALIAS_SET (new) = MEM_ALIAS_SET (op);
1290 return new;
1293 /* The only remaining cases are when OP is a constant. If the host and
1294 target floating formats are the same, handling two-word floating
1295 constants are easy. Note that REAL_VALUE_TO_TARGET_{SINGLE,DOUBLE}
1296 are defined as returning one or two 32 bit values, respectively,
1297 and not values of BITS_PER_WORD bits. */
1298 #ifdef REAL_ARITHMETIC
1299 /* The output is some bits, the width of the target machine's word.
1300 A wider-word host can surely hold them in a CONST_INT. A narrower-word
1301 host can't. */
1302 if (HOST_BITS_PER_WIDE_INT >= BITS_PER_WORD
1303 && GET_MODE_CLASS (mode) == MODE_FLOAT
1304 && GET_MODE_BITSIZE (mode) == 64
1305 && GET_CODE (op) == CONST_DOUBLE)
1307 long k[2];
1308 REAL_VALUE_TYPE rv;
1310 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
1311 REAL_VALUE_TO_TARGET_DOUBLE (rv, k);
1313 /* We handle 32-bit and >= 64-bit words here. Note that the order in
1314 which the words are written depends on the word endianness.
1315 ??? This is a potential portability problem and should
1316 be fixed at some point.
1318 We must excercise caution with the sign bit. By definition there
1319 are 32 significant bits in K; there may be more in a HOST_WIDE_INT.
1320 Consider a host with a 32-bit long and a 64-bit HOST_WIDE_INT.
1321 So we explicitly mask and sign-extend as necessary. */
1322 if (BITS_PER_WORD == 32)
1324 val = k[i];
1325 val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
1326 return GEN_INT (val);
1328 #if HOST_BITS_PER_WIDE_INT >= 64
1329 else if (BITS_PER_WORD >= 64 && i == 0)
1331 val = k[! WORDS_BIG_ENDIAN];
1332 val = (((val & 0xffffffff) ^ 0x80000000) - 0x80000000) << 32;
1333 val |= (HOST_WIDE_INT) k[WORDS_BIG_ENDIAN] & 0xffffffff;
1334 return GEN_INT (val);
1336 #endif
1337 else if (BITS_PER_WORD == 16)
1339 val = k[i >> 1];
1340 if ((i & 1) == !WORDS_BIG_ENDIAN)
1341 val >>= 16;
1342 val &= 0xffff;
1343 return GEN_INT (val);
1345 else
1346 abort ();
1348 else if (HOST_BITS_PER_WIDE_INT >= BITS_PER_WORD
1349 && GET_MODE_CLASS (mode) == MODE_FLOAT
1350 && GET_MODE_BITSIZE (mode) > 64
1351 && GET_CODE (op) == CONST_DOUBLE)
1353 long k[4];
1354 REAL_VALUE_TYPE rv;
1356 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
1357 REAL_VALUE_TO_TARGET_LONG_DOUBLE (rv, k);
1359 if (BITS_PER_WORD == 32)
1361 val = k[i];
1362 val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
1363 return GEN_INT (val);
1365 #if HOST_BITS_PER_WIDE_INT >= 64
1366 else if (BITS_PER_WORD >= 64 && i <= 1)
1368 val = k[i*2 + ! WORDS_BIG_ENDIAN];
1369 val = (((val & 0xffffffff) ^ 0x80000000) - 0x80000000) << 32;
1370 val |= (HOST_WIDE_INT) k[i*2 + WORDS_BIG_ENDIAN] & 0xffffffff;
1371 return GEN_INT (val);
1373 #endif
1374 else
1375 abort ();
1377 #else /* no REAL_ARITHMETIC */
1378 if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
1379 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
1380 || flag_pretend_float)
1381 && GET_MODE_CLASS (mode) == MODE_FLOAT
1382 && GET_MODE_SIZE (mode) == 2 * UNITS_PER_WORD
1383 && GET_CODE (op) == CONST_DOUBLE)
1385 /* The constant is stored in the host's word-ordering,
1386 but we want to access it in the target's word-ordering. Some
1387 compilers don't like a conditional inside macro args, so we have two
1388 copies of the return. */
1389 #ifdef HOST_WORDS_BIG_ENDIAN
1390 return GEN_INT (i == WORDS_BIG_ENDIAN
1391 ? CONST_DOUBLE_HIGH (op) : CONST_DOUBLE_LOW (op));
1392 #else
1393 return GEN_INT (i != WORDS_BIG_ENDIAN
1394 ? CONST_DOUBLE_HIGH (op) : CONST_DOUBLE_LOW (op));
1395 #endif
1397 #endif /* no REAL_ARITHMETIC */
1399 /* Single word float is a little harder, since single- and double-word
1400 values often do not have the same high-order bits. We have already
1401 verified that we want the only defined word of the single-word value. */
1402 #ifdef REAL_ARITHMETIC
1403 if (GET_MODE_CLASS (mode) == MODE_FLOAT
1404 && GET_MODE_BITSIZE (mode) == 32
1405 && GET_CODE (op) == CONST_DOUBLE)
1407 long l;
1408 REAL_VALUE_TYPE rv;
1410 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
1411 REAL_VALUE_TO_TARGET_SINGLE (rv, l);
1413 /* Sign extend from known 32-bit value to HOST_WIDE_INT. */
1414 val = l;
1415 val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
1417 if (BITS_PER_WORD == 16)
1419 if ((i & 1) == !WORDS_BIG_ENDIAN)
1420 val >>= 16;
1421 val &= 0xffff;
1424 return GEN_INT (val);
1426 #else
1427 if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
1428 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
1429 || flag_pretend_float)
1430 && sizeof (float) * 8 == HOST_BITS_PER_WIDE_INT
1431 && GET_MODE_CLASS (mode) == MODE_FLOAT
1432 && GET_MODE_SIZE (mode) == UNITS_PER_WORD
1433 && GET_CODE (op) == CONST_DOUBLE)
1435 double d;
1436 union {float f; HOST_WIDE_INT i; } u;
1438 REAL_VALUE_FROM_CONST_DOUBLE (d, op);
1440 u.f = d;
1441 return GEN_INT (u.i);
1443 if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
1444 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
1445 || flag_pretend_float)
1446 && sizeof (double) * 8 == HOST_BITS_PER_WIDE_INT
1447 && GET_MODE_CLASS (mode) == MODE_FLOAT
1448 && GET_MODE_SIZE (mode) == UNITS_PER_WORD
1449 && GET_CODE (op) == CONST_DOUBLE)
1451 double d;
1452 union {double d; HOST_WIDE_INT i; } u;
1454 REAL_VALUE_FROM_CONST_DOUBLE (d, op);
1456 u.d = d;
1457 return GEN_INT (u.i);
1459 #endif /* no REAL_ARITHMETIC */
1461 /* The only remaining cases that we can handle are integers.
1462 Convert to proper endianness now since these cases need it.
1463 At this point, i == 0 means the low-order word.
1465 We do not want to handle the case when BITS_PER_WORD <= HOST_BITS_PER_INT
1466 in general. However, if OP is (const_int 0), we can just return
1467 it for any word. */
1469 if (op == const0_rtx)
1470 return op;
1472 if (GET_MODE_CLASS (mode) != MODE_INT
1473 || (GET_CODE (op) != CONST_INT && GET_CODE (op) != CONST_DOUBLE)
1474 || BITS_PER_WORD > HOST_BITS_PER_WIDE_INT)
1475 return 0;
1477 if (WORDS_BIG_ENDIAN)
1478 i = GET_MODE_SIZE (mode) / UNITS_PER_WORD - 1 - i;
1480 /* Find out which word on the host machine this value is in and get
1481 it from the constant. */
1482 val = (i / size_ratio == 0
1483 ? (GET_CODE (op) == CONST_INT ? INTVAL (op) : CONST_DOUBLE_LOW (op))
1484 : (GET_CODE (op) == CONST_INT
1485 ? (INTVAL (op) < 0 ? ~0 : 0) : CONST_DOUBLE_HIGH (op)));
1487 /* Get the value we want into the low bits of val. */
1488 if (BITS_PER_WORD < HOST_BITS_PER_WIDE_INT)
1489 val = ((val >> ((i % size_ratio) * BITS_PER_WORD)));
1491 val = trunc_int_for_mode (val, word_mode);
1493 return GEN_INT (val);
1496 /* Similar to `operand_subword', but never return 0. If we can't extract
1497 the required subword, put OP into a register and try again. If that fails,
1498 abort. We always validate the address in this case. It is not valid
1499 to call this function after reload; it is mostly meant for RTL
1500 generation.
1502 MODE is the mode of OP, in case it is CONST_INT. */
1505 operand_subword_force (op, i, mode)
1506 rtx op;
1507 unsigned int i;
1508 enum machine_mode mode;
1510 rtx result = operand_subword (op, i, 1, mode);
1512 if (result)
1513 return result;
1515 if (mode != BLKmode && mode != VOIDmode)
1517 /* If this is a register which can not be accessed by words, copy it
1518 to a pseudo register. */
1519 if (GET_CODE (op) == REG)
1520 op = copy_to_reg (op);
1521 else
1522 op = force_reg (mode, op);
1525 result = operand_subword (op, i, 1, mode);
1526 if (result == 0)
1527 abort ();
1529 return result;
1532 /* Given a compare instruction, swap the operands.
1533 A test instruction is changed into a compare of 0 against the operand. */
1535 void
1536 reverse_comparison (insn)
1537 rtx insn;
1539 rtx body = PATTERN (insn);
1540 rtx comp;
1542 if (GET_CODE (body) == SET)
1543 comp = SET_SRC (body);
1544 else
1545 comp = SET_SRC (XVECEXP (body, 0, 0));
1547 if (GET_CODE (comp) == COMPARE)
1549 rtx op0 = XEXP (comp, 0);
1550 rtx op1 = XEXP (comp, 1);
1551 XEXP (comp, 0) = op1;
1552 XEXP (comp, 1) = op0;
1554 else
1556 rtx new = gen_rtx_COMPARE (VOIDmode,
1557 CONST0_RTX (GET_MODE (comp)), comp);
1558 if (GET_CODE (body) == SET)
1559 SET_SRC (body) = new;
1560 else
1561 SET_SRC (XVECEXP (body, 0, 0)) = new;
1565 /* Return a memory reference like MEMREF, but with its mode changed
1566 to MODE and its address changed to ADDR.
1567 (VOIDmode means don't change the mode.
1568 NULL for ADDR means don't change the address.) */
1571 change_address (memref, mode, addr)
1572 rtx memref;
1573 enum machine_mode mode;
1574 rtx addr;
1576 rtx new;
1578 if (GET_CODE (memref) != MEM)
1579 abort ();
1580 if (mode == VOIDmode)
1581 mode = GET_MODE (memref);
1582 if (addr == 0)
1583 addr = XEXP (memref, 0);
1585 /* If reload is in progress or has completed, ADDR must be valid.
1586 Otherwise, we can call memory_address to make it valid. */
1587 if (reload_completed || reload_in_progress)
1589 if (! memory_address_p (mode, addr))
1590 abort ();
1592 else
1593 addr = memory_address (mode, addr);
1595 if (rtx_equal_p (addr, XEXP (memref, 0)) && mode == GET_MODE (memref))
1596 return memref;
1598 new = gen_rtx_MEM (mode, addr);
1599 RTX_UNCHANGING_P (new) = RTX_UNCHANGING_P (memref);
1600 MEM_COPY_ATTRIBUTES (new, memref);
1601 MEM_ALIAS_SET (new) = MEM_ALIAS_SET (memref);
1602 return new;
1605 /* Return a newly created CODE_LABEL rtx with a unique label number. */
1608 gen_label_rtx ()
1610 register rtx label;
1612 label = gen_rtx_CODE_LABEL (VOIDmode, 0, NULL_RTX,
1613 NULL_RTX, label_num++, NULL_PTR, NULL_PTR);
1615 LABEL_NUSES (label) = 0;
1616 LABEL_ALTERNATE_NAME (label) = NULL;
1617 return label;
1620 /* For procedure integration. */
1622 /* Install new pointers to the first and last insns in the chain.
1623 Also, set cur_insn_uid to one higher than the last in use.
1624 Used for an inline-procedure after copying the insn chain. */
1626 void
1627 set_new_first_and_last_insn (first, last)
1628 rtx first, last;
1630 rtx insn;
1632 first_insn = first;
1633 last_insn = last;
1634 cur_insn_uid = 0;
1636 for (insn = first; insn; insn = NEXT_INSN (insn))
1637 cur_insn_uid = MAX (cur_insn_uid, INSN_UID (insn));
1639 cur_insn_uid++;
1642 /* Set the range of label numbers found in the current function.
1643 This is used when belatedly compiling an inline function. */
1645 void
1646 set_new_first_and_last_label_num (first, last)
1647 int first, last;
1649 base_label_num = label_num;
1650 first_label_num = first;
1651 last_label_num = last;
1654 /* Set the last label number found in the current function.
1655 This is used when belatedly compiling an inline function. */
1657 void
1658 set_new_last_label_num (last)
1659 int last;
1661 base_label_num = label_num;
1662 last_label_num = last;
1665 /* Restore all variables describing the current status from the structure *P.
1666 This is used after a nested function. */
1668 void
1669 restore_emit_status (p)
1670 struct function *p ATTRIBUTE_UNUSED;
1672 last_label_num = 0;
1673 clear_emit_caches ();
1676 /* Clear out all parts of the state in F that can safely be discarded
1677 after the function has been compiled, to let garbage collection
1678 reclaim the memory. */
1680 void
1681 free_emit_status (f)
1682 struct function *f;
1684 free (f->emit->x_regno_reg_rtx);
1685 free (f->emit->regno_pointer_flag);
1686 free (f->emit->regno_pointer_align);
1687 free (f->emit);
1688 f->emit = NULL;
1691 /* Go through all the RTL insn bodies and copy any invalid shared
1692 structure. This routine should only be called once. */
1694 void
1695 unshare_all_rtl (fndecl, insn)
1696 tree fndecl;
1697 rtx insn;
1699 tree decl;
1701 /* Make sure that virtual parameters are not shared. */
1702 for (decl = DECL_ARGUMENTS (fndecl); decl; decl = TREE_CHAIN (decl))
1703 copy_rtx_if_shared (DECL_RTL (decl));
1705 /* Unshare just about everything else. */
1706 unshare_all_rtl_1 (insn);
1708 /* Make sure the addresses of stack slots found outside the insn chain
1709 (such as, in DECL_RTL of a variable) are not shared
1710 with the insn chain.
1712 This special care is necessary when the stack slot MEM does not
1713 actually appear in the insn chain. If it does appear, its address
1714 is unshared from all else at that point. */
1715 copy_rtx_if_shared (stack_slot_list);
1718 /* Go through all the RTL insn bodies and copy any invalid shared
1719 structure, again. This is a fairly expensive thing to do so it
1720 should be done sparingly. */
1722 void
1723 unshare_all_rtl_again (insn)
1724 rtx insn;
1726 rtx p;
1727 for (p = insn; p; p = NEXT_INSN (p))
1728 if (GET_RTX_CLASS (GET_CODE (p)) == 'i')
1730 reset_used_flags (PATTERN (p));
1731 reset_used_flags (REG_NOTES (p));
1732 reset_used_flags (LOG_LINKS (p));
1734 unshare_all_rtl_1 (insn);
1737 /* Go through all the RTL insn bodies and copy any invalid shared structure.
1738 Assumes the mark bits are cleared at entry. */
1740 static void
1741 unshare_all_rtl_1 (insn)
1742 rtx insn;
1744 for (; insn; insn = NEXT_INSN (insn))
1745 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
1747 PATTERN (insn) = copy_rtx_if_shared (PATTERN (insn));
1748 REG_NOTES (insn) = copy_rtx_if_shared (REG_NOTES (insn));
1749 LOG_LINKS (insn) = copy_rtx_if_shared (LOG_LINKS (insn));
1753 /* Mark ORIG as in use, and return a copy of it if it was already in use.
1754 Recursively does the same for subexpressions. */
1757 copy_rtx_if_shared (orig)
1758 rtx orig;
1760 register rtx x = orig;
1761 register int i;
1762 register enum rtx_code code;
1763 register const char *format_ptr;
1764 int copied = 0;
1766 if (x == 0)
1767 return 0;
1769 code = GET_CODE (x);
1771 /* These types may be freely shared. */
1773 switch (code)
1775 case REG:
1776 case QUEUED:
1777 case CONST_INT:
1778 case CONST_DOUBLE:
1779 case SYMBOL_REF:
1780 case CODE_LABEL:
1781 case PC:
1782 case CC0:
1783 case SCRATCH:
1784 /* SCRATCH must be shared because they represent distinct values. */
1785 return x;
1787 case CONST:
1788 /* CONST can be shared if it contains a SYMBOL_REF. If it contains
1789 a LABEL_REF, it isn't sharable. */
1790 if (GET_CODE (XEXP (x, 0)) == PLUS
1791 && GET_CODE (XEXP (XEXP (x, 0), 0)) == SYMBOL_REF
1792 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT)
1793 return x;
1794 break;
1796 case INSN:
1797 case JUMP_INSN:
1798 case CALL_INSN:
1799 case NOTE:
1800 case BARRIER:
1801 /* The chain of insns is not being copied. */
1802 return x;
1804 case MEM:
1805 /* A MEM is allowed to be shared if its address is constant.
1807 We used to allow sharing of MEMs which referenced
1808 virtual_stack_vars_rtx or virtual_incoming_args_rtx, but
1809 that can lose. instantiate_virtual_regs will not unshare
1810 the MEMs, and combine may change the structure of the address
1811 because it looks safe and profitable in one context, but
1812 in some other context it creates unrecognizable RTL. */
1813 if (CONSTANT_ADDRESS_P (XEXP (x, 0)))
1814 return x;
1816 break;
1818 default:
1819 break;
1822 /* This rtx may not be shared. If it has already been seen,
1823 replace it with a copy of itself. */
1825 if (x->used)
1827 register rtx copy;
1829 copy = rtx_alloc (code);
1830 bcopy ((char *) x, (char *) copy,
1831 (sizeof (*copy) - sizeof (copy->fld)
1832 + sizeof (copy->fld[0]) * GET_RTX_LENGTH (code)));
1833 x = copy;
1834 copied = 1;
1836 x->used = 1;
1838 /* Now scan the subexpressions recursively.
1839 We can store any replaced subexpressions directly into X
1840 since we know X is not shared! Any vectors in X
1841 must be copied if X was copied. */
1843 format_ptr = GET_RTX_FORMAT (code);
1845 for (i = 0; i < GET_RTX_LENGTH (code); i++)
1847 switch (*format_ptr++)
1849 case 'e':
1850 XEXP (x, i) = copy_rtx_if_shared (XEXP (x, i));
1851 break;
1853 case 'E':
1854 if (XVEC (x, i) != NULL)
1856 register int j;
1857 int len = XVECLEN (x, i);
1859 if (copied && len > 0)
1860 XVEC (x, i) = gen_rtvec_v (len, XVEC (x, i)->elem);
1861 for (j = 0; j < len; j++)
1862 XVECEXP (x, i, j) = copy_rtx_if_shared (XVECEXP (x, i, j));
1864 break;
1867 return x;
1870 /* Clear all the USED bits in X to allow copy_rtx_if_shared to be used
1871 to look for shared sub-parts. */
1873 void
1874 reset_used_flags (x)
1875 rtx x;
1877 register int i, j;
1878 register enum rtx_code code;
1879 register const char *format_ptr;
1881 if (x == 0)
1882 return;
1884 code = GET_CODE (x);
1886 /* These types may be freely shared so we needn't do any resetting
1887 for them. */
1889 switch (code)
1891 case REG:
1892 case QUEUED:
1893 case CONST_INT:
1894 case CONST_DOUBLE:
1895 case SYMBOL_REF:
1896 case CODE_LABEL:
1897 case PC:
1898 case CC0:
1899 return;
1901 case INSN:
1902 case JUMP_INSN:
1903 case CALL_INSN:
1904 case NOTE:
1905 case LABEL_REF:
1906 case BARRIER:
1907 /* The chain of insns is not being copied. */
1908 return;
1910 default:
1911 break;
1914 x->used = 0;
1916 format_ptr = GET_RTX_FORMAT (code);
1917 for (i = 0; i < GET_RTX_LENGTH (code); i++)
1919 switch (*format_ptr++)
1921 case 'e':
1922 reset_used_flags (XEXP (x, i));
1923 break;
1925 case 'E':
1926 for (j = 0; j < XVECLEN (x, i); j++)
1927 reset_used_flags (XVECEXP (x, i, j));
1928 break;
1933 /* Copy X if necessary so that it won't be altered by changes in OTHER.
1934 Return X or the rtx for the pseudo reg the value of X was copied into.
1935 OTHER must be valid as a SET_DEST. */
1938 make_safe_from (x, other)
1939 rtx x, other;
1941 while (1)
1942 switch (GET_CODE (other))
1944 case SUBREG:
1945 other = SUBREG_REG (other);
1946 break;
1947 case STRICT_LOW_PART:
1948 case SIGN_EXTEND:
1949 case ZERO_EXTEND:
1950 other = XEXP (other, 0);
1951 break;
1952 default:
1953 goto done;
1955 done:
1956 if ((GET_CODE (other) == MEM
1957 && ! CONSTANT_P (x)
1958 && GET_CODE (x) != REG
1959 && GET_CODE (x) != SUBREG)
1960 || (GET_CODE (other) == REG
1961 && (REGNO (other) < FIRST_PSEUDO_REGISTER
1962 || reg_mentioned_p (other, x))))
1964 rtx temp = gen_reg_rtx (GET_MODE (x));
1965 emit_move_insn (temp, x);
1966 return temp;
1968 return x;
1971 /* Emission of insns (adding them to the doubly-linked list). */
1973 /* Return the first insn of the current sequence or current function. */
1976 get_insns ()
1978 return first_insn;
1981 /* Return the last insn emitted in current sequence or current function. */
1984 get_last_insn ()
1986 return last_insn;
1989 /* Specify a new insn as the last in the chain. */
1991 void
1992 set_last_insn (insn)
1993 rtx insn;
1995 if (NEXT_INSN (insn) != 0)
1996 abort ();
1997 last_insn = insn;
2000 /* Return the last insn emitted, even if it is in a sequence now pushed. */
2003 get_last_insn_anywhere ()
2005 struct sequence_stack *stack;
2006 if (last_insn)
2007 return last_insn;
2008 for (stack = seq_stack; stack; stack = stack->next)
2009 if (stack->last != 0)
2010 return stack->last;
2011 return 0;
2014 /* Return a number larger than any instruction's uid in this function. */
2017 get_max_uid ()
2019 return cur_insn_uid;
2022 /* Renumber instructions so that no instruction UIDs are wasted. */
2024 void
2025 renumber_insns (stream)
2026 FILE *stream;
2028 rtx insn;
2030 /* If we're not supposed to renumber instructions, don't. */
2031 if (!flag_renumber_insns)
2032 return;
2034 /* If there aren't that many instructions, then it's not really
2035 worth renumbering them. */
2036 if (flag_renumber_insns == 1 && get_max_uid () < 25000)
2037 return;
2039 cur_insn_uid = 1;
2041 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
2043 if (stream)
2044 fprintf (stream, "Renumbering insn %d to %d\n",
2045 INSN_UID (insn), cur_insn_uid);
2046 INSN_UID (insn) = cur_insn_uid++;
2050 /* Return the next insn. If it is a SEQUENCE, return the first insn
2051 of the sequence. */
2054 next_insn (insn)
2055 rtx insn;
2057 if (insn)
2059 insn = NEXT_INSN (insn);
2060 if (insn && GET_CODE (insn) == INSN
2061 && GET_CODE (PATTERN (insn)) == SEQUENCE)
2062 insn = XVECEXP (PATTERN (insn), 0, 0);
2065 return insn;
2068 /* Return the previous insn. If it is a SEQUENCE, return the last insn
2069 of the sequence. */
2072 previous_insn (insn)
2073 rtx insn;
2075 if (insn)
2077 insn = PREV_INSN (insn);
2078 if (insn && GET_CODE (insn) == INSN
2079 && GET_CODE (PATTERN (insn)) == SEQUENCE)
2080 insn = XVECEXP (PATTERN (insn), 0, XVECLEN (PATTERN (insn), 0) - 1);
2083 return insn;
2086 /* Return the next insn after INSN that is not a NOTE. This routine does not
2087 look inside SEQUENCEs. */
2090 next_nonnote_insn (insn)
2091 rtx insn;
2093 while (insn)
2095 insn = NEXT_INSN (insn);
2096 if (insn == 0 || GET_CODE (insn) != NOTE)
2097 break;
2100 return insn;
2103 /* Return the previous insn before INSN that is not a NOTE. This routine does
2104 not look inside SEQUENCEs. */
2107 prev_nonnote_insn (insn)
2108 rtx insn;
2110 while (insn)
2112 insn = PREV_INSN (insn);
2113 if (insn == 0 || GET_CODE (insn) != NOTE)
2114 break;
2117 return insn;
2120 /* Return the next INSN, CALL_INSN or JUMP_INSN after INSN;
2121 or 0, if there is none. This routine does not look inside
2122 SEQUENCEs. */
2125 next_real_insn (insn)
2126 rtx insn;
2128 while (insn)
2130 insn = NEXT_INSN (insn);
2131 if (insn == 0 || GET_CODE (insn) == INSN
2132 || GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == JUMP_INSN)
2133 break;
2136 return insn;
2139 /* Return the last INSN, CALL_INSN or JUMP_INSN before INSN;
2140 or 0, if there is none. This routine does not look inside
2141 SEQUENCEs. */
2144 prev_real_insn (insn)
2145 rtx insn;
2147 while (insn)
2149 insn = PREV_INSN (insn);
2150 if (insn == 0 || GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN
2151 || GET_CODE (insn) == JUMP_INSN)
2152 break;
2155 return insn;
2158 /* Find the next insn after INSN that really does something. This routine
2159 does not look inside SEQUENCEs. Until reload has completed, this is the
2160 same as next_real_insn. */
2163 active_insn_p (insn)
2164 rtx insn;
2166 return (GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == JUMP_INSN
2167 || (GET_CODE (insn) == INSN
2168 && (! reload_completed
2169 || (GET_CODE (PATTERN (insn)) != USE
2170 && GET_CODE (PATTERN (insn)) != CLOBBER))));
2174 next_active_insn (insn)
2175 rtx insn;
2177 while (insn)
2179 insn = NEXT_INSN (insn);
2180 if (insn == 0 || active_insn_p (insn))
2181 break;
2184 return insn;
2187 /* Find the last insn before INSN that really does something. This routine
2188 does not look inside SEQUENCEs. Until reload has completed, this is the
2189 same as prev_real_insn. */
2192 prev_active_insn (insn)
2193 rtx insn;
2195 while (insn)
2197 insn = PREV_INSN (insn);
2198 if (insn == 0 || active_insn_p (insn))
2199 break;
2202 return insn;
2205 /* Return the next CODE_LABEL after the insn INSN, or 0 if there is none. */
2208 next_label (insn)
2209 rtx insn;
2211 while (insn)
2213 insn = NEXT_INSN (insn);
2214 if (insn == 0 || GET_CODE (insn) == CODE_LABEL)
2215 break;
2218 return insn;
2221 /* Return the last CODE_LABEL before the insn INSN, or 0 if there is none. */
2224 prev_label (insn)
2225 rtx insn;
2227 while (insn)
2229 insn = PREV_INSN (insn);
2230 if (insn == 0 || GET_CODE (insn) == CODE_LABEL)
2231 break;
2234 return insn;
2237 #ifdef HAVE_cc0
2238 /* INSN uses CC0 and is being moved into a delay slot. Set up REG_CC_SETTER
2239 and REG_CC_USER notes so we can find it. */
2241 void
2242 link_cc0_insns (insn)
2243 rtx insn;
2245 rtx user = next_nonnote_insn (insn);
2247 if (GET_CODE (user) == INSN && GET_CODE (PATTERN (user)) == SEQUENCE)
2248 user = XVECEXP (PATTERN (user), 0, 0);
2250 REG_NOTES (user) = gen_rtx_INSN_LIST (REG_CC_SETTER, insn,
2251 REG_NOTES (user));
2252 REG_NOTES (insn) = gen_rtx_INSN_LIST (REG_CC_USER, user, REG_NOTES (insn));
2255 /* Return the next insn that uses CC0 after INSN, which is assumed to
2256 set it. This is the inverse of prev_cc0_setter (i.e., prev_cc0_setter
2257 applied to the result of this function should yield INSN).
2259 Normally, this is simply the next insn. However, if a REG_CC_USER note
2260 is present, it contains the insn that uses CC0.
2262 Return 0 if we can't find the insn. */
2265 next_cc0_user (insn)
2266 rtx insn;
2268 rtx note = find_reg_note (insn, REG_CC_USER, NULL_RTX);
2270 if (note)
2271 return XEXP (note, 0);
2273 insn = next_nonnote_insn (insn);
2274 if (insn && GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
2275 insn = XVECEXP (PATTERN (insn), 0, 0);
2277 if (insn && GET_RTX_CLASS (GET_CODE (insn)) == 'i'
2278 && reg_mentioned_p (cc0_rtx, PATTERN (insn)))
2279 return insn;
2281 return 0;
2284 /* Find the insn that set CC0 for INSN. Unless INSN has a REG_CC_SETTER
2285 note, it is the previous insn. */
2288 prev_cc0_setter (insn)
2289 rtx insn;
2291 rtx note = find_reg_note (insn, REG_CC_SETTER, NULL_RTX);
2293 if (note)
2294 return XEXP (note, 0);
2296 insn = prev_nonnote_insn (insn);
2297 if (! sets_cc0_p (PATTERN (insn)))
2298 abort ();
2300 return insn;
2302 #endif
2304 /* Try splitting insns that can be split for better scheduling.
2305 PAT is the pattern which might split.
2306 TRIAL is the insn providing PAT.
2307 LAST is non-zero if we should return the last insn of the sequence produced.
2309 If this routine succeeds in splitting, it returns the first or last
2310 replacement insn depending on the value of LAST. Otherwise, it
2311 returns TRIAL. If the insn to be returned can be split, it will be. */
2314 try_split (pat, trial, last)
2315 rtx pat, trial;
2316 int last;
2318 rtx before = PREV_INSN (trial);
2319 rtx after = NEXT_INSN (trial);
2320 rtx seq = split_insns (pat, trial);
2321 int has_barrier = 0;
2322 rtx tem;
2324 /* If we are splitting a JUMP_INSN, it might be followed by a BARRIER.
2325 We may need to handle this specially. */
2326 if (after && GET_CODE (after) == BARRIER)
2328 has_barrier = 1;
2329 after = NEXT_INSN (after);
2332 if (seq)
2334 /* SEQ can either be a SEQUENCE or the pattern of a single insn.
2335 The latter case will normally arise only when being done so that
2336 it, in turn, will be split (SFmode on the 29k is an example). */
2337 if (GET_CODE (seq) == SEQUENCE)
2339 /* If we are splitting a JUMP_INSN, look for the JUMP_INSN in
2340 SEQ and copy our JUMP_LABEL to it. If JUMP_LABEL is non-zero,
2341 increment the usage count so we don't delete the label. */
2342 int i;
2344 if (GET_CODE (trial) == JUMP_INSN)
2345 for (i = XVECLEN (seq, 0) - 1; i >= 0; i--)
2346 if (GET_CODE (XVECEXP (seq, 0, i)) == JUMP_INSN)
2348 JUMP_LABEL (XVECEXP (seq, 0, i)) = JUMP_LABEL (trial);
2350 if (JUMP_LABEL (trial))
2351 LABEL_NUSES (JUMP_LABEL (trial))++;
2354 tem = emit_insn_after (seq, before);
2356 delete_insn (trial);
2357 if (has_barrier)
2358 emit_barrier_after (tem);
2360 /* Recursively call try_split for each new insn created; by the
2361 time control returns here that insn will be fully split, so
2362 set LAST and continue from the insn after the one returned.
2363 We can't use next_active_insn here since AFTER may be a note.
2364 Ignore deleted insns, which can be occur if not optimizing. */
2365 for (tem = NEXT_INSN (before); tem != after;
2366 tem = NEXT_INSN (tem))
2367 if (! INSN_DELETED_P (tem)
2368 && GET_RTX_CLASS (GET_CODE (tem)) == 'i')
2369 tem = try_split (PATTERN (tem), tem, 1);
2371 /* Avoid infinite loop if the result matches the original pattern. */
2372 else if (rtx_equal_p (seq, pat))
2373 return trial;
2374 else
2376 PATTERN (trial) = seq;
2377 INSN_CODE (trial) = -1;
2378 try_split (seq, trial, last);
2381 /* Return either the first or the last insn, depending on which was
2382 requested. */
2383 return last
2384 ? (after ? prev_active_insn (after) : last_insn)
2385 : next_active_insn (before);
2388 return trial;
2391 /* Make and return an INSN rtx, initializing all its slots.
2392 Store PATTERN in the pattern slots. */
2395 make_insn_raw (pattern)
2396 rtx pattern;
2398 register rtx insn;
2400 /* If in RTL generation phase, see if FREE_INSN can be used. */
2401 if (!ggc_p && free_insn != 0 && rtx_equal_function_value_matters)
2403 insn = free_insn;
2404 free_insn = NEXT_INSN (free_insn);
2405 PUT_CODE (insn, INSN);
2407 else
2408 insn = rtx_alloc (INSN);
2410 INSN_UID (insn) = cur_insn_uid++;
2411 PATTERN (insn) = pattern;
2412 INSN_CODE (insn) = -1;
2413 LOG_LINKS (insn) = NULL;
2414 REG_NOTES (insn) = NULL;
2416 #ifdef ENABLE_RTL_CHECKING
2417 if (insn
2418 && GET_RTX_CLASS (GET_CODE (insn)) == 'i'
2419 && (returnjump_p (insn)
2420 || (GET_CODE (insn) == SET
2421 && SET_DEST (insn) == pc_rtx)))
2423 warning ("ICE: emit_insn used where emit_jump_insn needed:\n");
2424 debug_rtx (insn);
2426 #endif
2428 return insn;
2431 /* Like `make_insn' but make a JUMP_INSN instead of an insn. */
2433 static rtx
2434 make_jump_insn_raw (pattern)
2435 rtx pattern;
2437 register rtx insn;
2439 insn = rtx_alloc (JUMP_INSN);
2440 INSN_UID (insn) = cur_insn_uid++;
2442 PATTERN (insn) = pattern;
2443 INSN_CODE (insn) = -1;
2444 LOG_LINKS (insn) = NULL;
2445 REG_NOTES (insn) = NULL;
2446 JUMP_LABEL (insn) = NULL;
2448 return insn;
2451 /* Like `make_insn' but make a CALL_INSN instead of an insn. */
2453 static rtx
2454 make_call_insn_raw (pattern)
2455 rtx pattern;
2457 register rtx insn;
2459 insn = rtx_alloc (CALL_INSN);
2460 INSN_UID (insn) = cur_insn_uid++;
2462 PATTERN (insn) = pattern;
2463 INSN_CODE (insn) = -1;
2464 LOG_LINKS (insn) = NULL;
2465 REG_NOTES (insn) = NULL;
2466 CALL_INSN_FUNCTION_USAGE (insn) = NULL;
2468 return insn;
2471 /* Add INSN to the end of the doubly-linked list.
2472 INSN may be an INSN, JUMP_INSN, CALL_INSN, CODE_LABEL, BARRIER or NOTE. */
2474 void
2475 add_insn (insn)
2476 register rtx insn;
2478 PREV_INSN (insn) = last_insn;
2479 NEXT_INSN (insn) = 0;
2481 if (NULL != last_insn)
2482 NEXT_INSN (last_insn) = insn;
2484 if (NULL == first_insn)
2485 first_insn = insn;
2487 last_insn = insn;
2490 /* Add INSN into the doubly-linked list after insn AFTER. This and
2491 the next should be the only functions called to insert an insn once
2492 delay slots have been filled since only they know how to update a
2493 SEQUENCE. */
2495 void
2496 add_insn_after (insn, after)
2497 rtx insn, after;
2499 rtx next = NEXT_INSN (after);
2501 if (optimize && INSN_DELETED_P (after))
2502 abort ();
2504 NEXT_INSN (insn) = next;
2505 PREV_INSN (insn) = after;
2507 if (next)
2509 PREV_INSN (next) = insn;
2510 if (GET_CODE (next) == INSN && GET_CODE (PATTERN (next)) == SEQUENCE)
2511 PREV_INSN (XVECEXP (PATTERN (next), 0, 0)) = insn;
2513 else if (last_insn == after)
2514 last_insn = insn;
2515 else
2517 struct sequence_stack *stack = seq_stack;
2518 /* Scan all pending sequences too. */
2519 for (; stack; stack = stack->next)
2520 if (after == stack->last)
2522 stack->last = insn;
2523 break;
2526 if (stack == 0)
2527 abort ();
2530 NEXT_INSN (after) = insn;
2531 if (GET_CODE (after) == INSN && GET_CODE (PATTERN (after)) == SEQUENCE)
2533 rtx sequence = PATTERN (after);
2534 NEXT_INSN (XVECEXP (sequence, 0, XVECLEN (sequence, 0) - 1)) = insn;
2538 /* Add INSN into the doubly-linked list before insn BEFORE. This and
2539 the previous should be the only functions called to insert an insn once
2540 delay slots have been filled since only they know how to update a
2541 SEQUENCE. */
2543 void
2544 add_insn_before (insn, before)
2545 rtx insn, before;
2547 rtx prev = PREV_INSN (before);
2549 if (optimize && INSN_DELETED_P (before))
2550 abort ();
2552 PREV_INSN (insn) = prev;
2553 NEXT_INSN (insn) = before;
2555 if (prev)
2557 NEXT_INSN (prev) = insn;
2558 if (GET_CODE (prev) == INSN && GET_CODE (PATTERN (prev)) == SEQUENCE)
2560 rtx sequence = PATTERN (prev);
2561 NEXT_INSN (XVECEXP (sequence, 0, XVECLEN (sequence, 0) - 1)) = insn;
2564 else if (first_insn == before)
2565 first_insn = insn;
2566 else
2568 struct sequence_stack *stack = seq_stack;
2569 /* Scan all pending sequences too. */
2570 for (; stack; stack = stack->next)
2571 if (before == stack->first)
2573 stack->first = insn;
2574 break;
2577 if (stack == 0)
2578 abort ();
2581 PREV_INSN (before) = insn;
2582 if (GET_CODE (before) == INSN && GET_CODE (PATTERN (before)) == SEQUENCE)
2583 PREV_INSN (XVECEXP (PATTERN (before), 0, 0)) = insn;
2586 /* Remove an insn from its doubly-linked list. This function knows how
2587 to handle sequences. */
2588 void
2589 remove_insn (insn)
2590 rtx insn;
2592 rtx next = NEXT_INSN (insn);
2593 rtx prev = PREV_INSN (insn);
2594 if (prev)
2596 NEXT_INSN (prev) = next;
2597 if (GET_CODE (prev) == INSN && GET_CODE (PATTERN (prev)) == SEQUENCE)
2599 rtx sequence = PATTERN (prev);
2600 NEXT_INSN (XVECEXP (sequence, 0, XVECLEN (sequence, 0) - 1)) = next;
2603 else if (first_insn == insn)
2604 first_insn = next;
2605 else
2607 struct sequence_stack *stack = seq_stack;
2608 /* Scan all pending sequences too. */
2609 for (; stack; stack = stack->next)
2610 if (insn == stack->first)
2612 stack->first = next;
2613 break;
2616 if (stack == 0)
2617 abort ();
2620 if (next)
2622 PREV_INSN (next) = prev;
2623 if (GET_CODE (next) == INSN && GET_CODE (PATTERN (next)) == SEQUENCE)
2624 PREV_INSN (XVECEXP (PATTERN (next), 0, 0)) = prev;
2626 else if (last_insn == insn)
2627 last_insn = prev;
2628 else
2630 struct sequence_stack *stack = seq_stack;
2631 /* Scan all pending sequences too. */
2632 for (; stack; stack = stack->next)
2633 if (insn == stack->last)
2635 stack->last = prev;
2636 break;
2639 if (stack == 0)
2640 abort ();
2644 /* Delete all insns made since FROM.
2645 FROM becomes the new last instruction. */
2647 void
2648 delete_insns_since (from)
2649 rtx from;
2651 if (from == 0)
2652 first_insn = 0;
2653 else
2654 NEXT_INSN (from) = 0;
2655 last_insn = from;
2658 /* This function is deprecated, please use sequences instead.
2660 Move a consecutive bunch of insns to a different place in the chain.
2661 The insns to be moved are those between FROM and TO.
2662 They are moved to a new position after the insn AFTER.
2663 AFTER must not be FROM or TO or any insn in between.
2665 This function does not know about SEQUENCEs and hence should not be
2666 called after delay-slot filling has been done. */
2668 void
2669 reorder_insns (from, to, after)
2670 rtx from, to, after;
2672 /* Splice this bunch out of where it is now. */
2673 if (PREV_INSN (from))
2674 NEXT_INSN (PREV_INSN (from)) = NEXT_INSN (to);
2675 if (NEXT_INSN (to))
2676 PREV_INSN (NEXT_INSN (to)) = PREV_INSN (from);
2677 if (last_insn == to)
2678 last_insn = PREV_INSN (from);
2679 if (first_insn == from)
2680 first_insn = NEXT_INSN (to);
2682 /* Make the new neighbors point to it and it to them. */
2683 if (NEXT_INSN (after))
2684 PREV_INSN (NEXT_INSN (after)) = to;
2686 NEXT_INSN (to) = NEXT_INSN (after);
2687 PREV_INSN (from) = after;
2688 NEXT_INSN (after) = from;
2689 if (after == last_insn)
2690 last_insn = to;
2693 /* Return the line note insn preceding INSN. */
2695 static rtx
2696 find_line_note (insn)
2697 rtx insn;
2699 if (no_line_numbers)
2700 return 0;
2702 for (; insn; insn = PREV_INSN (insn))
2703 if (GET_CODE (insn) == NOTE
2704 && NOTE_LINE_NUMBER (insn) >= 0)
2705 break;
2707 return insn;
2710 /* Like reorder_insns, but inserts line notes to preserve the line numbers
2711 of the moved insns when debugging. This may insert a note between AFTER
2712 and FROM, and another one after TO. */
2714 void
2715 reorder_insns_with_line_notes (from, to, after)
2716 rtx from, to, after;
2718 rtx from_line = find_line_note (from);
2719 rtx after_line = find_line_note (after);
2721 reorder_insns (from, to, after);
2723 if (from_line == after_line)
2724 return;
2726 if (from_line)
2727 emit_line_note_after (NOTE_SOURCE_FILE (from_line),
2728 NOTE_LINE_NUMBER (from_line),
2729 after);
2730 if (after_line)
2731 emit_line_note_after (NOTE_SOURCE_FILE (after_line),
2732 NOTE_LINE_NUMBER (after_line),
2733 to);
2736 /* Remove unncessary notes from the instruction stream. */
2738 void
2739 remove_unncessary_notes ()
2741 rtx insn;
2742 rtx next;
2744 /* We must not remove the first instruction in the function because
2745 the compiler depends on the first instruction being a note. */
2746 for (insn = NEXT_INSN (get_insns ()); insn; insn = next)
2748 /* Remember what's next. */
2749 next = NEXT_INSN (insn);
2751 /* We're only interested in notes. */
2752 if (GET_CODE (insn) != NOTE)
2753 continue;
2755 /* By now, all notes indicating lexical blocks should have
2756 NOTE_BLOCK filled in. */
2757 if ((NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2758 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END)
2759 && NOTE_BLOCK (insn) == NULL_TREE)
2760 abort ();
2762 /* Remove NOTE_INSN_DELETED notes. */
2763 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED)
2764 remove_insn (insn);
2765 else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END)
2767 /* Scan back to see if there are any non-note instructions
2768 between INSN and the beginning of this block. If not,
2769 then there is no PC range in the generated code that will
2770 actually be in this block, so there's no point in
2771 remembering the existence of the block. */
2772 rtx prev;
2774 for (prev = PREV_INSN (insn); prev; prev = PREV_INSN (prev))
2776 /* This block contains a real instruction. Note that we
2777 don't include labels; if the only thing in the block
2778 is a label, then there are still no PC values that
2779 lie within the block. */
2780 if (GET_RTX_CLASS (GET_CODE (prev)) == 'i')
2781 break;
2783 /* We're only interested in NOTEs. */
2784 if (GET_CODE (prev) != NOTE)
2785 continue;
2787 if (NOTE_LINE_NUMBER (prev) == NOTE_INSN_BLOCK_BEG)
2789 /* If the BLOCKs referred to by these notes don't
2790 match, then something is wrong with our BLOCK
2791 nesting structure. */
2792 if (NOTE_BLOCK (prev) != NOTE_BLOCK (insn))
2793 abort ();
2795 /* Never delete the BLOCK for the outermost scope
2796 of the function; we can refer to names from
2797 that scope even if the block notes are messed up. */
2798 if (! is_body_block (NOTE_BLOCK (insn)))
2800 debug_ignore_block (NOTE_BLOCK (insn));
2802 remove_insn (prev);
2803 remove_insn (insn);
2805 break;
2807 else if (NOTE_LINE_NUMBER (prev) == NOTE_INSN_BLOCK_END)
2808 /* There's a nested block. We need to leave the
2809 current block in place since otherwise the debugger
2810 wouldn't be able to show symbols from our block in
2811 the nested block. */
2812 break;
2819 /* Emit an insn of given code and pattern
2820 at a specified place within the doubly-linked list. */
2822 /* Make an instruction with body PATTERN
2823 and output it before the instruction BEFORE. */
2826 emit_insn_before (pattern, before)
2827 register rtx pattern, before;
2829 register rtx insn = before;
2831 if (GET_CODE (pattern) == SEQUENCE)
2833 register int i;
2835 for (i = 0; i < XVECLEN (pattern, 0); i++)
2837 insn = XVECEXP (pattern, 0, i);
2838 add_insn_before (insn, before);
2840 if (!ggc_p && XVECLEN (pattern, 0) < SEQUENCE_RESULT_SIZE)
2841 sequence_result[XVECLEN (pattern, 0)] = pattern;
2843 else
2845 insn = make_insn_raw (pattern);
2846 add_insn_before (insn, before);
2849 return insn;
2852 /* Similar to emit_insn_before, but update basic block boundaries as well. */
2855 emit_block_insn_before (pattern, before, block)
2856 rtx pattern, before;
2857 basic_block block;
2859 rtx prev = PREV_INSN (before);
2860 rtx r = emit_insn_before (pattern, before);
2861 if (block && block->head == before)
2862 block->head = NEXT_INSN (prev);
2863 return r;
2866 /* Make an instruction with body PATTERN and code JUMP_INSN
2867 and output it before the instruction BEFORE. */
2870 emit_jump_insn_before (pattern, before)
2871 register rtx pattern, before;
2873 register rtx insn;
2875 if (GET_CODE (pattern) == SEQUENCE)
2876 insn = emit_insn_before (pattern, before);
2877 else
2879 insn = make_jump_insn_raw (pattern);
2880 add_insn_before (insn, before);
2883 return insn;
2886 /* Make an instruction with body PATTERN and code CALL_INSN
2887 and output it before the instruction BEFORE. */
2890 emit_call_insn_before (pattern, before)
2891 register rtx pattern, before;
2893 register rtx insn;
2895 if (GET_CODE (pattern) == SEQUENCE)
2896 insn = emit_insn_before (pattern, before);
2897 else
2899 insn = make_call_insn_raw (pattern);
2900 add_insn_before (insn, before);
2901 PUT_CODE (insn, CALL_INSN);
2904 return insn;
2907 /* Make an insn of code BARRIER
2908 and output it before the insn BEFORE. */
2911 emit_barrier_before (before)
2912 register rtx before;
2914 register rtx insn = rtx_alloc (BARRIER);
2916 INSN_UID (insn) = cur_insn_uid++;
2918 add_insn_before (insn, before);
2919 return insn;
2922 /* Emit the label LABEL before the insn BEFORE. */
2925 emit_label_before (label, before)
2926 rtx label, before;
2928 /* This can be called twice for the same label as a result of the
2929 confusion that follows a syntax error! So make it harmless. */
2930 if (INSN_UID (label) == 0)
2932 INSN_UID (label) = cur_insn_uid++;
2933 add_insn_before (label, before);
2936 return label;
2939 /* Emit a note of subtype SUBTYPE before the insn BEFORE. */
2942 emit_note_before (subtype, before)
2943 int subtype;
2944 rtx before;
2946 register rtx note = rtx_alloc (NOTE);
2947 INSN_UID (note) = cur_insn_uid++;
2948 NOTE_SOURCE_FILE (note) = 0;
2949 NOTE_LINE_NUMBER (note) = subtype;
2951 add_insn_before (note, before);
2952 return note;
2955 /* Make an insn of code INSN with body PATTERN
2956 and output it after the insn AFTER. */
2959 emit_insn_after (pattern, after)
2960 register rtx pattern, after;
2962 register rtx insn = after;
2964 if (GET_CODE (pattern) == SEQUENCE)
2966 register int i;
2968 for (i = 0; i < XVECLEN (pattern, 0); i++)
2970 insn = XVECEXP (pattern, 0, i);
2971 add_insn_after (insn, after);
2972 after = insn;
2974 if (!ggc_p && XVECLEN (pattern, 0) < SEQUENCE_RESULT_SIZE)
2975 sequence_result[XVECLEN (pattern, 0)] = pattern;
2977 else
2979 insn = make_insn_raw (pattern);
2980 add_insn_after (insn, after);
2983 return insn;
2986 /* Similar to emit_insn_after, except that line notes are to be inserted so
2987 as to act as if this insn were at FROM. */
2989 void
2990 emit_insn_after_with_line_notes (pattern, after, from)
2991 rtx pattern, after, from;
2993 rtx from_line = find_line_note (from);
2994 rtx after_line = find_line_note (after);
2995 rtx insn = emit_insn_after (pattern, after);
2997 if (from_line)
2998 emit_line_note_after (NOTE_SOURCE_FILE (from_line),
2999 NOTE_LINE_NUMBER (from_line),
3000 after);
3002 if (after_line)
3003 emit_line_note_after (NOTE_SOURCE_FILE (after_line),
3004 NOTE_LINE_NUMBER (after_line),
3005 insn);
3008 /* Similar to emit_insn_after, but update basic block boundaries as well. */
3011 emit_block_insn_after (pattern, after, block)
3012 rtx pattern, after;
3013 basic_block block;
3015 rtx r = emit_insn_after (pattern, after);
3016 if (block && block->end == after)
3017 block->end = r;
3018 return r;
3021 /* Make an insn of code JUMP_INSN with body PATTERN
3022 and output it after the insn AFTER. */
3025 emit_jump_insn_after (pattern, after)
3026 register rtx pattern, after;
3028 register rtx insn;
3030 if (GET_CODE (pattern) == SEQUENCE)
3031 insn = emit_insn_after (pattern, after);
3032 else
3034 insn = make_jump_insn_raw (pattern);
3035 add_insn_after (insn, after);
3038 return insn;
3041 /* Make an insn of code BARRIER
3042 and output it after the insn AFTER. */
3045 emit_barrier_after (after)
3046 register rtx after;
3048 register rtx insn = rtx_alloc (BARRIER);
3050 INSN_UID (insn) = cur_insn_uid++;
3052 add_insn_after (insn, after);
3053 return insn;
3056 /* Emit the label LABEL after the insn AFTER. */
3059 emit_label_after (label, after)
3060 rtx label, after;
3062 /* This can be called twice for the same label
3063 as a result of the confusion that follows a syntax error!
3064 So make it harmless. */
3065 if (INSN_UID (label) == 0)
3067 INSN_UID (label) = cur_insn_uid++;
3068 add_insn_after (label, after);
3071 return label;
3074 /* Emit a note of subtype SUBTYPE after the insn AFTER. */
3077 emit_note_after (subtype, after)
3078 int subtype;
3079 rtx after;
3081 register rtx note = rtx_alloc (NOTE);
3082 INSN_UID (note) = cur_insn_uid++;
3083 NOTE_SOURCE_FILE (note) = 0;
3084 NOTE_LINE_NUMBER (note) = subtype;
3085 add_insn_after (note, after);
3086 return note;
3089 /* Emit a line note for FILE and LINE after the insn AFTER. */
3092 emit_line_note_after (file, line, after)
3093 const char *file;
3094 int line;
3095 rtx after;
3097 register rtx note;
3099 if (no_line_numbers && line > 0)
3101 cur_insn_uid++;
3102 return 0;
3105 note = rtx_alloc (NOTE);
3106 INSN_UID (note) = cur_insn_uid++;
3107 NOTE_SOURCE_FILE (note) = file;
3108 NOTE_LINE_NUMBER (note) = line;
3109 add_insn_after (note, after);
3110 return note;
3113 /* Make an insn of code INSN with pattern PATTERN
3114 and add it to the end of the doubly-linked list.
3115 If PATTERN is a SEQUENCE, take the elements of it
3116 and emit an insn for each element.
3118 Returns the last insn emitted. */
3121 emit_insn (pattern)
3122 rtx pattern;
3124 rtx insn = last_insn;
3126 if (GET_CODE (pattern) == SEQUENCE)
3128 register int i;
3130 for (i = 0; i < XVECLEN (pattern, 0); i++)
3132 insn = XVECEXP (pattern, 0, i);
3133 add_insn (insn);
3135 if (!ggc_p && XVECLEN (pattern, 0) < SEQUENCE_RESULT_SIZE)
3136 sequence_result[XVECLEN (pattern, 0)] = pattern;
3138 else
3140 insn = make_insn_raw (pattern);
3141 add_insn (insn);
3144 return insn;
3147 /* Emit the insns in a chain starting with INSN.
3148 Return the last insn emitted. */
3151 emit_insns (insn)
3152 rtx insn;
3154 rtx last = 0;
3156 while (insn)
3158 rtx next = NEXT_INSN (insn);
3159 add_insn (insn);
3160 last = insn;
3161 insn = next;
3164 return last;
3167 /* Emit the insns in a chain starting with INSN and place them in front of
3168 the insn BEFORE. Return the last insn emitted. */
3171 emit_insns_before (insn, before)
3172 rtx insn;
3173 rtx before;
3175 rtx last = 0;
3177 while (insn)
3179 rtx next = NEXT_INSN (insn);
3180 add_insn_before (insn, before);
3181 last = insn;
3182 insn = next;
3185 return last;
3188 /* Emit the insns in a chain starting with FIRST and place them in back of
3189 the insn AFTER. Return the last insn emitted. */
3192 emit_insns_after (first, after)
3193 register rtx first;
3194 register rtx after;
3196 register rtx last;
3197 register rtx after_after;
3199 if (!after)
3200 abort ();
3202 if (!first)
3203 return first;
3205 for (last = first; NEXT_INSN (last); last = NEXT_INSN (last))
3206 continue;
3208 after_after = NEXT_INSN (after);
3210 NEXT_INSN (after) = first;
3211 PREV_INSN (first) = after;
3212 NEXT_INSN (last) = after_after;
3213 if (after_after)
3214 PREV_INSN (after_after) = last;
3216 if (after == last_insn)
3217 last_insn = last;
3218 return last;
3221 /* Make an insn of code JUMP_INSN with pattern PATTERN
3222 and add it to the end of the doubly-linked list. */
3225 emit_jump_insn (pattern)
3226 rtx pattern;
3228 if (GET_CODE (pattern) == SEQUENCE)
3229 return emit_insn (pattern);
3230 else
3232 register rtx insn = make_jump_insn_raw (pattern);
3233 add_insn (insn);
3234 return insn;
3238 /* Make an insn of code CALL_INSN with pattern PATTERN
3239 and add it to the end of the doubly-linked list. */
3242 emit_call_insn (pattern)
3243 rtx pattern;
3245 if (GET_CODE (pattern) == SEQUENCE)
3246 return emit_insn (pattern);
3247 else
3249 register rtx insn = make_call_insn_raw (pattern);
3250 add_insn (insn);
3251 PUT_CODE (insn, CALL_INSN);
3252 return insn;
3256 /* Add the label LABEL to the end of the doubly-linked list. */
3259 emit_label (label)
3260 rtx label;
3262 /* This can be called twice for the same label
3263 as a result of the confusion that follows a syntax error!
3264 So make it harmless. */
3265 if (INSN_UID (label) == 0)
3267 INSN_UID (label) = cur_insn_uid++;
3268 add_insn (label);
3270 return label;
3273 /* Make an insn of code BARRIER
3274 and add it to the end of the doubly-linked list. */
3277 emit_barrier ()
3279 register rtx barrier = rtx_alloc (BARRIER);
3280 INSN_UID (barrier) = cur_insn_uid++;
3281 add_insn (barrier);
3282 return barrier;
3285 /* Make an insn of code NOTE
3286 with data-fields specified by FILE and LINE
3287 and add it to the end of the doubly-linked list,
3288 but only if line-numbers are desired for debugging info. */
3291 emit_line_note (file, line)
3292 const char *file;
3293 int line;
3295 set_file_and_line_for_stmt (file, line);
3297 #if 0
3298 if (no_line_numbers)
3299 return 0;
3300 #endif
3302 return emit_note (file, line);
3305 /* Make an insn of code NOTE
3306 with data-fields specified by FILE and LINE
3307 and add it to the end of the doubly-linked list.
3308 If it is a line-number NOTE, omit it if it matches the previous one. */
3311 emit_note (file, line)
3312 const char *file;
3313 int line;
3315 register rtx note;
3317 if (line > 0)
3319 if (file && last_filename && !strcmp (file, last_filename)
3320 && line == last_linenum)
3321 return 0;
3322 last_filename = file;
3323 last_linenum = line;
3326 if (no_line_numbers && line > 0)
3328 cur_insn_uid++;
3329 return 0;
3332 note = rtx_alloc (NOTE);
3333 INSN_UID (note) = cur_insn_uid++;
3334 NOTE_SOURCE_FILE (note) = file;
3335 NOTE_LINE_NUMBER (note) = line;
3336 add_insn (note);
3337 return note;
3340 /* Emit a NOTE, and don't omit it even if LINE is the previous note. */
3343 emit_line_note_force (file, line)
3344 const char *file;
3345 int line;
3347 last_linenum = -1;
3348 return emit_line_note (file, line);
3351 /* Cause next statement to emit a line note even if the line number
3352 has not changed. This is used at the beginning of a function. */
3354 void
3355 force_next_line_note ()
3357 last_linenum = -1;
3360 /* Place a note of KIND on insn INSN with DATUM as the datum. If a
3361 note of this type already exists, remove it first. */
3363 void
3364 set_unique_reg_note (insn, kind, datum)
3365 rtx insn;
3366 enum reg_note kind;
3367 rtx datum;
3369 rtx note = find_reg_note (insn, kind, NULL_RTX);
3371 /* First remove the note if there already is one. */
3372 if (note)
3373 remove_note (insn, note);
3375 REG_NOTES (insn) = gen_rtx_EXPR_LIST (kind, datum, REG_NOTES (insn));
3378 /* Return an indication of which type of insn should have X as a body.
3379 The value is CODE_LABEL, INSN, CALL_INSN or JUMP_INSN. */
3381 enum rtx_code
3382 classify_insn (x)
3383 rtx x;
3385 if (GET_CODE (x) == CODE_LABEL)
3386 return CODE_LABEL;
3387 if (GET_CODE (x) == CALL)
3388 return CALL_INSN;
3389 if (GET_CODE (x) == RETURN)
3390 return JUMP_INSN;
3391 if (GET_CODE (x) == SET)
3393 if (SET_DEST (x) == pc_rtx)
3394 return JUMP_INSN;
3395 else if (GET_CODE (SET_SRC (x)) == CALL)
3396 return CALL_INSN;
3397 else
3398 return INSN;
3400 if (GET_CODE (x) == PARALLEL)
3402 register int j;
3403 for (j = XVECLEN (x, 0) - 1; j >= 0; j--)
3404 if (GET_CODE (XVECEXP (x, 0, j)) == CALL)
3405 return CALL_INSN;
3406 else if (GET_CODE (XVECEXP (x, 0, j)) == SET
3407 && SET_DEST (XVECEXP (x, 0, j)) == pc_rtx)
3408 return JUMP_INSN;
3409 else if (GET_CODE (XVECEXP (x, 0, j)) == SET
3410 && GET_CODE (SET_SRC (XVECEXP (x, 0, j))) == CALL)
3411 return CALL_INSN;
3413 return INSN;
3416 /* Emit the rtl pattern X as an appropriate kind of insn.
3417 If X is a label, it is simply added into the insn chain. */
3420 emit (x)
3421 rtx x;
3423 enum rtx_code code = classify_insn (x);
3425 if (code == CODE_LABEL)
3426 return emit_label (x);
3427 else if (code == INSN)
3428 return emit_insn (x);
3429 else if (code == JUMP_INSN)
3431 register rtx insn = emit_jump_insn (x);
3432 if (simplejump_p (insn) || GET_CODE (x) == RETURN)
3433 return emit_barrier ();
3434 return insn;
3436 else if (code == CALL_INSN)
3437 return emit_call_insn (x);
3438 else
3439 abort ();
3442 /* Begin emitting insns to a sequence which can be packaged in an
3443 RTL_EXPR. If this sequence will contain something that might cause
3444 the compiler to pop arguments to function calls (because those
3445 pops have previously been deferred; see INHIBIT_DEFER_POP for more
3446 details), use do_pending_stack_adjust before calling this function.
3447 That will ensure that the deferred pops are not accidentally
3448 emitted in the middel of this sequence. */
3450 void
3451 start_sequence ()
3453 struct sequence_stack *tem;
3455 tem = (struct sequence_stack *) xmalloc (sizeof (struct sequence_stack));
3457 tem->next = seq_stack;
3458 tem->first = first_insn;
3459 tem->last = last_insn;
3460 tem->sequence_rtl_expr = seq_rtl_expr;
3462 seq_stack = tem;
3464 first_insn = 0;
3465 last_insn = 0;
3468 /* Similarly, but indicate that this sequence will be placed in T, an
3469 RTL_EXPR. See the documentation for start_sequence for more
3470 information about how to use this function. */
3472 void
3473 start_sequence_for_rtl_expr (t)
3474 tree t;
3476 start_sequence ();
3478 seq_rtl_expr = t;
3481 /* Set up the insn chain starting with FIRST as the current sequence,
3482 saving the previously current one. See the documentation for
3483 start_sequence for more information about how to use this function. */
3485 void
3486 push_to_sequence (first)
3487 rtx first;
3489 rtx last;
3491 start_sequence ();
3493 for (last = first; last && NEXT_INSN (last); last = NEXT_INSN (last));
3495 first_insn = first;
3496 last_insn = last;
3499 /* Set up the insn chain from a chain stort in FIRST to LAST. */
3501 void
3502 push_to_full_sequence (first, last)
3503 rtx first, last;
3505 start_sequence ();
3506 first_insn = first;
3507 last_insn = last;
3508 /* We really should have the end of the insn chain here. */
3509 if (last && NEXT_INSN (last))
3510 abort ();
3513 /* Set up the outer-level insn chain
3514 as the current sequence, saving the previously current one. */
3516 void
3517 push_topmost_sequence ()
3519 struct sequence_stack *stack, *top = NULL;
3521 start_sequence ();
3523 for (stack = seq_stack; stack; stack = stack->next)
3524 top = stack;
3526 first_insn = top->first;
3527 last_insn = top->last;
3528 seq_rtl_expr = top->sequence_rtl_expr;
3531 /* After emitting to the outer-level insn chain, update the outer-level
3532 insn chain, and restore the previous saved state. */
3534 void
3535 pop_topmost_sequence ()
3537 struct sequence_stack *stack, *top = NULL;
3539 for (stack = seq_stack; stack; stack = stack->next)
3540 top = stack;
3542 top->first = first_insn;
3543 top->last = last_insn;
3544 /* ??? Why don't we save seq_rtl_expr here? */
3546 end_sequence ();
3549 /* After emitting to a sequence, restore previous saved state.
3551 To get the contents of the sequence just made, you must call
3552 `gen_sequence' *before* calling here.
3554 If the compiler might have deferred popping arguments while
3555 generating this sequence, and this sequence will not be immediately
3556 inserted into the instruction stream, use do_pending_stack_adjust
3557 before calling gen_sequence. That will ensure that the deferred
3558 pops are inserted into this sequence, and not into some random
3559 location in the instruction stream. See INHIBIT_DEFER_POP for more
3560 information about deferred popping of arguments. */
3562 void
3563 end_sequence ()
3565 struct sequence_stack *tem = seq_stack;
3567 first_insn = tem->first;
3568 last_insn = tem->last;
3569 seq_rtl_expr = tem->sequence_rtl_expr;
3570 seq_stack = tem->next;
3572 free (tem);
3575 /* This works like end_sequence, but records the old sequence in FIRST
3576 and LAST. */
3578 void
3579 end_full_sequence (first, last)
3580 rtx *first, *last;
3582 *first = first_insn;
3583 *last = last_insn;
3584 end_sequence();
3587 /* Return 1 if currently emitting into a sequence. */
3590 in_sequence_p ()
3592 return seq_stack != 0;
3595 /* Generate a SEQUENCE rtx containing the insns already emitted
3596 to the current sequence.
3598 This is how the gen_... function from a DEFINE_EXPAND
3599 constructs the SEQUENCE that it returns. */
3602 gen_sequence ()
3604 rtx result;
3605 rtx tem;
3606 int i;
3607 int len;
3609 /* Count the insns in the chain. */
3610 len = 0;
3611 for (tem = first_insn; tem; tem = NEXT_INSN (tem))
3612 len++;
3614 /* If only one insn, return it rather than a SEQUENCE.
3615 (Now that we cache SEQUENCE expressions, it isn't worth special-casing
3616 the case of an empty list.)
3617 We only return the pattern of an insn if its code is INSN and it
3618 has no notes. This ensures that no information gets lost. */
3619 if (len == 1
3620 && ! RTX_FRAME_RELATED_P (first_insn)
3621 && GET_CODE (first_insn) == INSN
3622 /* Don't throw away any reg notes. */
3623 && REG_NOTES (first_insn) == 0)
3625 if (!ggc_p)
3627 NEXT_INSN (first_insn) = free_insn;
3628 free_insn = first_insn;
3630 return PATTERN (first_insn);
3633 /* Put them in a vector. See if we already have a SEQUENCE of the
3634 appropriate length around. */
3635 if (!ggc_p && len < SEQUENCE_RESULT_SIZE
3636 && (result = sequence_result[len]) != 0)
3637 sequence_result[len] = 0;
3638 else
3640 /* Ensure that this rtl goes in saveable_obstack, since we may
3641 cache it. */
3642 push_obstacks_nochange ();
3643 rtl_in_saveable_obstack ();
3644 result = gen_rtx_SEQUENCE (VOIDmode, rtvec_alloc (len));
3645 pop_obstacks ();
3648 for (i = 0, tem = first_insn; tem; tem = NEXT_INSN (tem), i++)
3649 XVECEXP (result, 0, i) = tem;
3651 return result;
3654 /* Put the various virtual registers into REGNO_REG_RTX. */
3656 void
3657 init_virtual_regs (es)
3658 struct emit_status *es;
3660 rtx *ptr = es->x_regno_reg_rtx;
3661 ptr[VIRTUAL_INCOMING_ARGS_REGNUM] = virtual_incoming_args_rtx;
3662 ptr[VIRTUAL_STACK_VARS_REGNUM] = virtual_stack_vars_rtx;
3663 ptr[VIRTUAL_STACK_DYNAMIC_REGNUM] = virtual_stack_dynamic_rtx;
3664 ptr[VIRTUAL_OUTGOING_ARGS_REGNUM] = virtual_outgoing_args_rtx;
3665 ptr[VIRTUAL_CFA_REGNUM] = virtual_cfa_rtx;
3668 void
3669 clear_emit_caches ()
3671 int i;
3673 /* Clear the start_sequence/gen_sequence cache. */
3674 for (i = 0; i < SEQUENCE_RESULT_SIZE; i++)
3675 sequence_result[i] = 0;
3676 free_insn = 0;
3679 /* Used by copy_insn_1 to avoid copying SCRATCHes more than once. */
3680 static rtx copy_insn_scratch_in[MAX_RECOG_OPERANDS];
3681 static rtx copy_insn_scratch_out[MAX_RECOG_OPERANDS];
3682 static int copy_insn_n_scratches;
3684 /* When an insn is being copied by copy_insn_1, this is nonzero if we have
3685 copied an ASM_OPERANDS.
3686 In that case, it is the original input-operand vector. */
3687 static rtvec orig_asm_operands_vector;
3689 /* When an insn is being copied by copy_insn_1, this is nonzero if we have
3690 copied an ASM_OPERANDS.
3691 In that case, it is the copied input-operand vector. */
3692 static rtvec copy_asm_operands_vector;
3694 /* Likewise for the constraints vector. */
3695 static rtvec orig_asm_constraints_vector;
3696 static rtvec copy_asm_constraints_vector;
3698 /* Recursively create a new copy of an rtx for copy_insn.
3699 This function differs from copy_rtx in that it handles SCRATCHes and
3700 ASM_OPERANDs properly.
3701 Normally, this function is not used directly; use copy_insn as front end.
3702 However, you could first copy an insn pattern with copy_insn and then use
3703 this function afterwards to properly copy any REG_NOTEs containing
3704 SCRATCHes. */
3707 copy_insn_1 (orig)
3708 register rtx orig;
3710 register rtx copy;
3711 register int i, j;
3712 register RTX_CODE code;
3713 register const char *format_ptr;
3715 code = GET_CODE (orig);
3717 switch (code)
3719 case REG:
3720 case QUEUED:
3721 case CONST_INT:
3722 case CONST_DOUBLE:
3723 case SYMBOL_REF:
3724 case CODE_LABEL:
3725 case PC:
3726 case CC0:
3727 case ADDRESSOF:
3728 return orig;
3730 case SCRATCH:
3731 for (i = 0; i < copy_insn_n_scratches; i++)
3732 if (copy_insn_scratch_in[i] == orig)
3733 return copy_insn_scratch_out[i];
3734 break;
3736 case CONST:
3737 /* CONST can be shared if it contains a SYMBOL_REF. If it contains
3738 a LABEL_REF, it isn't sharable. */
3739 if (GET_CODE (XEXP (orig, 0)) == PLUS
3740 && GET_CODE (XEXP (XEXP (orig, 0), 0)) == SYMBOL_REF
3741 && GET_CODE (XEXP (XEXP (orig, 0), 1)) == CONST_INT)
3742 return orig;
3743 break;
3745 /* A MEM with a constant address is not sharable. The problem is that
3746 the constant address may need to be reloaded. If the mem is shared,
3747 then reloading one copy of this mem will cause all copies to appear
3748 to have been reloaded. */
3750 default:
3751 break;
3754 copy = rtx_alloc (code);
3756 /* Copy the various flags, and other information. We assume that
3757 all fields need copying, and then clear the fields that should
3758 not be copied. That is the sensible default behavior, and forces
3759 us to explicitly document why we are *not* copying a flag. */
3760 memcpy (copy, orig, sizeof (struct rtx_def) - sizeof (rtunion));
3762 /* We do not copy the USED flag, which is used as a mark bit during
3763 walks over the RTL. */
3764 copy->used = 0;
3766 /* We do not copy JUMP, CALL, or FRAME_RELATED for INSNs. */
3767 if (GET_RTX_CLASS (code) == 'i')
3769 copy->jump = 0;
3770 copy->call = 0;
3771 copy->frame_related = 0;
3774 format_ptr = GET_RTX_FORMAT (GET_CODE (copy));
3776 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (copy)); i++)
3778 copy->fld[i] = orig->fld[i];
3779 switch (*format_ptr++)
3781 case 'e':
3782 if (XEXP (orig, i) != NULL)
3783 XEXP (copy, i) = copy_insn_1 (XEXP (orig, i));
3784 break;
3786 case 'E':
3787 case 'V':
3788 if (XVEC (orig, i) == orig_asm_constraints_vector)
3789 XVEC (copy, i) = copy_asm_constraints_vector;
3790 else if (XVEC (orig, i) == orig_asm_operands_vector)
3791 XVEC (copy, i) = copy_asm_operands_vector;
3792 else if (XVEC (orig, i) != NULL)
3794 XVEC (copy, i) = rtvec_alloc (XVECLEN (orig, i));
3795 for (j = 0; j < XVECLEN (copy, i); j++)
3796 XVECEXP (copy, i, j) = copy_insn_1 (XVECEXP (orig, i, j));
3798 break;
3800 case 'b':
3802 bitmap new_bits = BITMAP_OBSTACK_ALLOC (rtl_obstack);
3803 bitmap_copy (new_bits, XBITMAP (orig, i));
3804 XBITMAP (copy, i) = new_bits;
3805 break;
3808 case 't':
3809 case 'w':
3810 case 'i':
3811 case 's':
3812 case 'S':
3813 case 'u':
3814 case '0':
3815 /* These are left unchanged. */
3816 break;
3818 default:
3819 abort ();
3823 if (code == SCRATCH)
3825 i = copy_insn_n_scratches++;
3826 if (i >= MAX_RECOG_OPERANDS)
3827 abort ();
3828 copy_insn_scratch_in[i] = orig;
3829 copy_insn_scratch_out[i] = copy;
3831 else if (code == ASM_OPERANDS)
3833 orig_asm_operands_vector = XVEC (orig, 3);
3834 copy_asm_operands_vector = XVEC (copy, 3);
3835 orig_asm_constraints_vector = XVEC (orig, 4);
3836 copy_asm_constraints_vector = XVEC (copy, 4);
3839 return copy;
3842 /* Create a new copy of an rtx.
3843 This function differs from copy_rtx in that it handles SCRATCHes and
3844 ASM_OPERANDs properly.
3845 INSN doesn't really have to be a full INSN; it could be just the
3846 pattern. */
3848 copy_insn (insn)
3849 rtx insn;
3851 copy_insn_n_scratches = 0;
3852 orig_asm_operands_vector = 0;
3853 orig_asm_constraints_vector = 0;
3854 copy_asm_operands_vector = 0;
3855 copy_asm_constraints_vector = 0;
3856 return copy_insn_1 (insn);
3859 /* Initialize data structures and variables in this file
3860 before generating rtl for each function. */
3862 void
3863 init_emit ()
3865 struct function *f = cfun;
3867 f->emit = (struct emit_status *) xmalloc (sizeof (struct emit_status));
3868 first_insn = NULL;
3869 last_insn = NULL;
3870 seq_rtl_expr = NULL;
3871 cur_insn_uid = 1;
3872 reg_rtx_no = LAST_VIRTUAL_REGISTER + 1;
3873 last_linenum = 0;
3874 last_filename = 0;
3875 first_label_num = label_num;
3876 last_label_num = 0;
3877 seq_stack = NULL;
3879 clear_emit_caches ();
3881 /* Init the tables that describe all the pseudo regs. */
3883 f->emit->regno_pointer_flag_length = LAST_VIRTUAL_REGISTER + 101;
3885 f->emit->regno_pointer_flag
3886 = (char *) xcalloc (f->emit->regno_pointer_flag_length, sizeof (char));
3888 f->emit->regno_pointer_align
3889 = (char *) xcalloc (f->emit->regno_pointer_flag_length,
3890 sizeof (char));
3892 regno_reg_rtx
3893 = (rtx *) xcalloc (f->emit->regno_pointer_flag_length * sizeof (rtx),
3894 sizeof (rtx));
3896 /* Put copies of all the virtual register rtx into regno_reg_rtx. */
3897 init_virtual_regs (f->emit);
3899 /* Indicate that the virtual registers and stack locations are
3900 all pointers. */
3901 REGNO_POINTER_FLAG (STACK_POINTER_REGNUM) = 1;
3902 REGNO_POINTER_FLAG (FRAME_POINTER_REGNUM) = 1;
3903 REGNO_POINTER_FLAG (HARD_FRAME_POINTER_REGNUM) = 1;
3904 REGNO_POINTER_FLAG (ARG_POINTER_REGNUM) = 1;
3906 REGNO_POINTER_FLAG (VIRTUAL_INCOMING_ARGS_REGNUM) = 1;
3907 REGNO_POINTER_FLAG (VIRTUAL_STACK_VARS_REGNUM) = 1;
3908 REGNO_POINTER_FLAG (VIRTUAL_STACK_DYNAMIC_REGNUM) = 1;
3909 REGNO_POINTER_FLAG (VIRTUAL_OUTGOING_ARGS_REGNUM) = 1;
3910 REGNO_POINTER_FLAG (VIRTUAL_CFA_REGNUM) = 1;
3912 #ifdef STACK_BOUNDARY
3913 REGNO_POINTER_ALIGN (STACK_POINTER_REGNUM) = STACK_BOUNDARY;
3914 REGNO_POINTER_ALIGN (FRAME_POINTER_REGNUM) = STACK_BOUNDARY;
3915 REGNO_POINTER_ALIGN (HARD_FRAME_POINTER_REGNUM) = STACK_BOUNDARY;
3916 REGNO_POINTER_ALIGN (ARG_POINTER_REGNUM) = STACK_BOUNDARY;
3918 REGNO_POINTER_ALIGN (VIRTUAL_INCOMING_ARGS_REGNUM) = STACK_BOUNDARY;
3919 REGNO_POINTER_ALIGN (VIRTUAL_STACK_VARS_REGNUM) = STACK_BOUNDARY;
3920 REGNO_POINTER_ALIGN (VIRTUAL_STACK_DYNAMIC_REGNUM) = STACK_BOUNDARY;
3921 REGNO_POINTER_ALIGN (VIRTUAL_OUTGOING_ARGS_REGNUM) = STACK_BOUNDARY;
3922 REGNO_POINTER_ALIGN (VIRTUAL_CFA_REGNUM) = BITS_PER_WORD;
3923 #endif
3925 #ifdef INIT_EXPANDERS
3926 INIT_EXPANDERS;
3927 #endif
3930 /* Mark SS for GC. */
3932 static void
3933 mark_sequence_stack (ss)
3934 struct sequence_stack *ss;
3936 while (ss)
3938 ggc_mark_rtx (ss->first);
3939 ggc_mark_tree (ss->sequence_rtl_expr);
3940 ss = ss->next;
3944 /* Mark ES for GC. */
3946 void
3947 mark_emit_status (es)
3948 struct emit_status *es;
3950 rtx *r;
3951 int i;
3953 if (es == 0)
3954 return;
3956 for (i = es->regno_pointer_flag_length, r = es->x_regno_reg_rtx;
3957 i > 0; --i, ++r)
3958 ggc_mark_rtx (*r);
3960 mark_sequence_stack (es->sequence_stack);
3961 ggc_mark_tree (es->sequence_rtl_expr);
3962 ggc_mark_rtx (es->x_first_insn);
3965 /* Create some permanent unique rtl objects shared between all functions.
3966 LINE_NUMBERS is nonzero if line numbers are to be generated. */
3968 void
3969 init_emit_once (line_numbers)
3970 int line_numbers;
3972 int i;
3973 enum machine_mode mode;
3974 enum machine_mode double_mode;
3976 no_line_numbers = ! line_numbers;
3978 /* Compute the word and byte modes. */
3980 byte_mode = VOIDmode;
3981 word_mode = VOIDmode;
3982 double_mode = VOIDmode;
3984 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
3985 mode = GET_MODE_WIDER_MODE (mode))
3987 if (GET_MODE_BITSIZE (mode) == BITS_PER_UNIT
3988 && byte_mode == VOIDmode)
3989 byte_mode = mode;
3991 if (GET_MODE_BITSIZE (mode) == BITS_PER_WORD
3992 && word_mode == VOIDmode)
3993 word_mode = mode;
3996 #ifndef DOUBLE_TYPE_SIZE
3997 #define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
3998 #endif
4000 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
4001 mode = GET_MODE_WIDER_MODE (mode))
4003 if (GET_MODE_BITSIZE (mode) == DOUBLE_TYPE_SIZE
4004 && double_mode == VOIDmode)
4005 double_mode = mode;
4008 ptr_mode = mode_for_size (POINTER_SIZE, GET_MODE_CLASS (Pmode), 0);
4010 /* Assign register numbers to the globally defined register rtx.
4011 This must be done at runtime because the register number field
4012 is in a union and some compilers can't initialize unions. */
4014 pc_rtx = gen_rtx (PC, VOIDmode);
4015 cc0_rtx = gen_rtx (CC0, VOIDmode);
4016 stack_pointer_rtx = gen_rtx_raw_REG (Pmode, STACK_POINTER_REGNUM);
4017 frame_pointer_rtx = gen_rtx_raw_REG (Pmode, FRAME_POINTER_REGNUM);
4018 if (hard_frame_pointer_rtx == 0)
4019 hard_frame_pointer_rtx = gen_rtx_raw_REG (Pmode,
4020 HARD_FRAME_POINTER_REGNUM);
4021 if (arg_pointer_rtx == 0)
4022 arg_pointer_rtx = gen_rtx_raw_REG (Pmode, ARG_POINTER_REGNUM);
4023 virtual_incoming_args_rtx =
4024 gen_rtx_raw_REG (Pmode, VIRTUAL_INCOMING_ARGS_REGNUM);
4025 virtual_stack_vars_rtx =
4026 gen_rtx_raw_REG (Pmode, VIRTUAL_STACK_VARS_REGNUM);
4027 virtual_stack_dynamic_rtx =
4028 gen_rtx_raw_REG (Pmode, VIRTUAL_STACK_DYNAMIC_REGNUM);
4029 virtual_outgoing_args_rtx =
4030 gen_rtx_raw_REG (Pmode, VIRTUAL_OUTGOING_ARGS_REGNUM);
4031 virtual_cfa_rtx = gen_rtx_raw_REG (Pmode, VIRTUAL_CFA_REGNUM);
4033 /* These rtx must be roots if GC is enabled. */
4034 if (ggc_p)
4035 ggc_add_rtx_root (global_rtl, GR_MAX);
4037 #ifdef INIT_EXPANDERS
4038 /* This is to initialize save_machine_status and restore_machine_status before
4039 the first call to push_function_context_to. This is needed by the Chill
4040 front end which calls push_function_context_to before the first cal to
4041 init_function_start. */
4042 INIT_EXPANDERS;
4043 #endif
4045 /* Create the unique rtx's for certain rtx codes and operand values. */
4047 /* Don't use gen_rtx here since gen_rtx in this case
4048 tries to use these variables. */
4049 for (i = - MAX_SAVED_CONST_INT; i <= MAX_SAVED_CONST_INT; i++)
4050 const_int_rtx[i + MAX_SAVED_CONST_INT] =
4051 gen_rtx_raw_CONST_INT (VOIDmode, i);
4052 if (ggc_p)
4053 ggc_add_rtx_root (const_int_rtx, 2 * MAX_SAVED_CONST_INT + 1);
4055 if (STORE_FLAG_VALUE >= - MAX_SAVED_CONST_INT
4056 && STORE_FLAG_VALUE <= MAX_SAVED_CONST_INT)
4057 const_true_rtx = const_int_rtx[STORE_FLAG_VALUE + MAX_SAVED_CONST_INT];
4058 else
4059 const_true_rtx = gen_rtx_CONST_INT (VOIDmode, STORE_FLAG_VALUE);
4061 dconst0 = REAL_VALUE_ATOF ("0", double_mode);
4062 dconst1 = REAL_VALUE_ATOF ("1", double_mode);
4063 dconst2 = REAL_VALUE_ATOF ("2", double_mode);
4064 dconstm1 = REAL_VALUE_ATOF ("-1", double_mode);
4066 for (i = 0; i <= 2; i++)
4068 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
4069 mode = GET_MODE_WIDER_MODE (mode))
4071 rtx tem = rtx_alloc (CONST_DOUBLE);
4072 union real_extract u;
4074 bzero ((char *) &u, sizeof u); /* Zero any holes in a structure. */
4075 u.d = i == 0 ? dconst0 : i == 1 ? dconst1 : dconst2;
4077 bcopy ((char *) &u, (char *) &CONST_DOUBLE_LOW (tem), sizeof u);
4078 CONST_DOUBLE_MEM (tem) = cc0_rtx;
4079 PUT_MODE (tem, mode);
4081 const_tiny_rtx[i][(int) mode] = tem;
4084 const_tiny_rtx[i][(int) VOIDmode] = GEN_INT (i);
4086 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
4087 mode = GET_MODE_WIDER_MODE (mode))
4088 const_tiny_rtx[i][(int) mode] = GEN_INT (i);
4090 for (mode = GET_CLASS_NARROWEST_MODE (MODE_PARTIAL_INT);
4091 mode != VOIDmode;
4092 mode = GET_MODE_WIDER_MODE (mode))
4093 const_tiny_rtx[i][(int) mode] = GEN_INT (i);
4096 for (mode = CCmode; mode < MAX_MACHINE_MODE; ++mode)
4097 if (GET_MODE_CLASS (mode) == MODE_CC)
4098 const_tiny_rtx[0][(int) mode] = const0_rtx;
4100 ggc_add_rtx_root (&const_tiny_rtx[0][0], sizeof(const_tiny_rtx)/sizeof(rtx));
4101 ggc_add_rtx_root (&const_true_rtx, 1);
4103 #ifdef RETURN_ADDRESS_POINTER_REGNUM
4104 return_address_pointer_rtx
4105 = gen_rtx_raw_REG (Pmode, RETURN_ADDRESS_POINTER_REGNUM);
4106 #endif
4108 #ifdef STRUCT_VALUE
4109 struct_value_rtx = STRUCT_VALUE;
4110 #else
4111 struct_value_rtx = gen_rtx_REG (Pmode, STRUCT_VALUE_REGNUM);
4112 #endif
4114 #ifdef STRUCT_VALUE_INCOMING
4115 struct_value_incoming_rtx = STRUCT_VALUE_INCOMING;
4116 #else
4117 #ifdef STRUCT_VALUE_INCOMING_REGNUM
4118 struct_value_incoming_rtx
4119 = gen_rtx_REG (Pmode, STRUCT_VALUE_INCOMING_REGNUM);
4120 #else
4121 struct_value_incoming_rtx = struct_value_rtx;
4122 #endif
4123 #endif
4125 #ifdef STATIC_CHAIN_REGNUM
4126 static_chain_rtx = gen_rtx_REG (Pmode, STATIC_CHAIN_REGNUM);
4128 #ifdef STATIC_CHAIN_INCOMING_REGNUM
4129 if (STATIC_CHAIN_INCOMING_REGNUM != STATIC_CHAIN_REGNUM)
4130 static_chain_incoming_rtx
4131 = gen_rtx_REG (Pmode, STATIC_CHAIN_INCOMING_REGNUM);
4132 else
4133 #endif
4134 static_chain_incoming_rtx = static_chain_rtx;
4135 #endif
4137 #ifdef STATIC_CHAIN
4138 static_chain_rtx = STATIC_CHAIN;
4140 #ifdef STATIC_CHAIN_INCOMING
4141 static_chain_incoming_rtx = STATIC_CHAIN_INCOMING;
4142 #else
4143 static_chain_incoming_rtx = static_chain_rtx;
4144 #endif
4145 #endif
4147 #ifdef PIC_OFFSET_TABLE_REGNUM
4148 pic_offset_table_rtx = gen_rtx_REG (Pmode, PIC_OFFSET_TABLE_REGNUM);
4149 #endif
4151 ggc_add_rtx_root (&pic_offset_table_rtx, 1);
4152 ggc_add_rtx_root (&struct_value_rtx, 1);
4153 ggc_add_rtx_root (&struct_value_incoming_rtx, 1);
4154 ggc_add_rtx_root (&static_chain_rtx, 1);
4155 ggc_add_rtx_root (&static_chain_incoming_rtx, 1);
4156 ggc_add_rtx_root (&return_address_pointer_rtx, 1);
4158 /* Initialize the CONST_INT hash table. */
4159 const_int_htab = htab_create (37, const_int_htab_hash,
4160 const_int_htab_eq, NULL);
4161 ggc_add_root (&const_int_htab, 1, sizeof (const_int_htab),
4162 rtx_htab_mark);
4165 /* Query and clear/ restore no_line_numbers. This is used by the
4166 switch / case handling in stmt.c to give proper line numbers in
4167 warnings about unreachable code. */
4170 force_line_numbers ()
4172 int old = no_line_numbers;
4174 no_line_numbers = 0;
4175 if (old)
4176 force_next_line_note ();
4177 return old;
4180 void
4181 restore_line_number_status (old_value)
4182 int old_value;
4184 no_line_numbers = old_value;