OSDN Git Service

* emit-rtl.c (static_regno_reg_rtx): Define.
[pf3gnuchains/gcc-fork.git] / gcc / emit-rtl.c
1 /* Emit RTL for the GNU C-Compiler expander.
2    Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.  */
21
22
23 /* Middle-to-low level generation of rtx code and insns.
24
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.
28
29    It also has the functions for creating insns and linking
30    them in the doubly-linked chain.
31
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.  */
37
38 #include "config.h"
39 #include "system.h"
40 #include "toplev.h"
41 #include "rtl.h"
42 #include "tree.h"
43 #include "tm_p.h"
44 #include "flags.h"
45 #include "function.h"
46 #include "expr.h"
47 #include "regs.h"
48 #include "hard-reg-set.h"
49 #include "hashtab.h"
50 #include "insn-config.h"
51 #include "recog.h"
52 #include "real.h"
53 #include "obstack.h"
54 #include "bitmap.h"
55 #include "basic-block.h"
56 #include "ggc.h"
57 #include "debug.h"
58 #include "langhooks.h"
59
60 /* Commonly used modes.  */
61
62 enum machine_mode byte_mode;    /* Mode whose width is BITS_PER_UNIT.  */
63 enum machine_mode word_mode;    /* Mode whose width is BITS_PER_WORD.  */
64 enum machine_mode double_mode;  /* Mode whose width is DOUBLE_TYPE_SIZE.  */
65 enum machine_mode ptr_mode;     /* Mode whose width is POINTER_SIZE.  */
66
67
68 /* This is *not* reset after each function.  It gives each CODE_LABEL
69    in the entire compilation a unique label number.  */
70
71 static int label_num = 1;
72
73 /* Highest label number in current function.
74    Zero means use the value of label_num instead.
75    This is nonzero only when belatedly compiling an inline function.  */
76
77 static int last_label_num;
78
79 /* Value label_num had when set_new_first_and_last_label_number was called.
80    If label_num has not changed since then, last_label_num is valid.  */
81
82 static int base_label_num;
83
84 /* Nonzero means do not generate NOTEs for source line numbers.  */
85
86 static int no_line_numbers;
87
88 /* Commonly used rtx's, so that we only need space for one copy.
89    These are initialized once for the entire compilation.
90    All of these are unique; no other rtx-object will be equal to any
91    of these.  */
92
93 rtx global_rtl[GR_MAX];
94
95 /* Commonly used RTL for hard registers.  These objects are not necessarily
96    unique, so we allocate them separately from global_rtl.  They are
97    initialized once per compilation unit, then copied into regno_reg_rtx
98    at the beginning of each function.  */
99 static GTY(()) rtx static_regno_reg_rtx[FIRST_PSEUDO_REGISTER];
100
101 /* We record floating-point CONST_DOUBLEs in each floating-point mode for
102    the values of 0, 1, and 2.  For the integer entries and VOIDmode, we
103    record a copy of const[012]_rtx.  */
104
105 rtx const_tiny_rtx[3][(int) MAX_MACHINE_MODE];
106
107 rtx const_true_rtx;
108
109 REAL_VALUE_TYPE dconst0;
110 REAL_VALUE_TYPE dconst1;
111 REAL_VALUE_TYPE dconst2;
112 REAL_VALUE_TYPE dconstm1;
113
114 /* All references to the following fixed hard registers go through
115    these unique rtl objects.  On machines where the frame-pointer and
116    arg-pointer are the same register, they use the same unique object.
117
118    After register allocation, other rtl objects which used to be pseudo-regs
119    may be clobbered to refer to the frame-pointer register.
120    But references that were originally to the frame-pointer can be
121    distinguished from the others because they contain frame_pointer_rtx.
122
123    When to use frame_pointer_rtx and hard_frame_pointer_rtx is a little
124    tricky: until register elimination has taken place hard_frame_pointer_rtx
125    should be used if it is being set, and frame_pointer_rtx otherwise.  After
126    register elimination hard_frame_pointer_rtx should always be used.
127    On machines where the two registers are same (most) then these are the
128    same.
129
130    In an inline procedure, the stack and frame pointer rtxs may not be
131    used for anything else.  */
132 rtx struct_value_rtx;           /* (REG:Pmode STRUCT_VALUE_REGNUM) */
133 rtx struct_value_incoming_rtx;  /* (REG:Pmode STRUCT_VALUE_INCOMING_REGNUM) */
134 rtx static_chain_rtx;           /* (REG:Pmode STATIC_CHAIN_REGNUM) */
135 rtx static_chain_incoming_rtx;  /* (REG:Pmode STATIC_CHAIN_INCOMING_REGNUM) */
136 rtx pic_offset_table_rtx;       /* (REG:Pmode PIC_OFFSET_TABLE_REGNUM) */
137
138 /* This is used to implement __builtin_return_address for some machines.
139    See for instance the MIPS port.  */
140 rtx return_address_pointer_rtx; /* (REG:Pmode RETURN_ADDRESS_POINTER_REGNUM) */
141
142 /* We make one copy of (const_int C) where C is in
143    [- MAX_SAVED_CONST_INT, MAX_SAVED_CONST_INT]
144    to save space during the compilation and simplify comparisons of
145    integers.  */
146
147 rtx const_int_rtx[MAX_SAVED_CONST_INT * 2 + 1];
148
149 /* A hash table storing CONST_INTs whose absolute value is greater
150    than MAX_SAVED_CONST_INT.  */
151
152 static GTY ((if_marked ("ggc_marked_p"), param_is (struct rtx_def)))
153      htab_t const_int_htab;
154
155 /* A hash table storing memory attribute structures.  */
156 static GTY ((if_marked ("ggc_marked_p"), param_is (struct mem_attrs)))
157      htab_t mem_attrs_htab;
158
159 /* A hash table storing all CONST_DOUBLEs.  */
160 static GTY ((if_marked ("ggc_marked_p"), param_is (struct rtx_def)))
161      htab_t const_double_htab;
162
163 #define first_insn (cfun->emit->x_first_insn)
164 #define last_insn (cfun->emit->x_last_insn)
165 #define cur_insn_uid (cfun->emit->x_cur_insn_uid)
166 #define last_linenum (cfun->emit->x_last_linenum)
167 #define last_filename (cfun->emit->x_last_filename)
168 #define first_label_num (cfun->emit->x_first_label_num)
169
170 static rtx make_jump_insn_raw           PARAMS ((rtx));
171 static rtx make_call_insn_raw           PARAMS ((rtx));
172 static rtx find_line_note               PARAMS ((rtx));
173 static rtx change_address_1             PARAMS ((rtx, enum machine_mode, rtx,
174                                                  int));
175 static void unshare_all_rtl_1           PARAMS ((rtx));
176 static void unshare_all_decls           PARAMS ((tree));
177 static void reset_used_decls            PARAMS ((tree));
178 static void mark_label_nuses            PARAMS ((rtx));
179 static hashval_t const_int_htab_hash    PARAMS ((const void *));
180 static int const_int_htab_eq            PARAMS ((const void *,
181                                                  const void *));
182 static hashval_t const_double_htab_hash PARAMS ((const void *));
183 static int const_double_htab_eq         PARAMS ((const void *,
184                                                  const void *));
185 static rtx lookup_const_double          PARAMS ((rtx));
186 static hashval_t mem_attrs_htab_hash    PARAMS ((const void *));
187 static int mem_attrs_htab_eq            PARAMS ((const void *,
188                                                  const void *));
189 static mem_attrs *get_mem_attrs         PARAMS ((HOST_WIDE_INT, tree, rtx,
190                                                  rtx, unsigned int,
191                                                  enum machine_mode));
192 static tree component_ref_for_mem_expr  PARAMS ((tree));
193 static rtx gen_const_vector_0           PARAMS ((enum machine_mode));
194
195 /* Probability of the conditional branch currently proceeded by try_split.
196    Set to -1 otherwise.  */
197 int split_branch_probability = -1;
198 \f
199 /* Returns a hash code for X (which is a really a CONST_INT).  */
200
201 static hashval_t
202 const_int_htab_hash (x)
203      const void *x;
204 {
205   return (hashval_t) INTVAL ((struct rtx_def *) x);
206 }
207
208 /* Returns non-zero if the value represented by X (which is really a
209    CONST_INT) is the same as that given by Y (which is really a
210    HOST_WIDE_INT *).  */
211
212 static int
213 const_int_htab_eq (x, y)
214      const void *x;
215      const void *y;
216 {
217   return (INTVAL ((rtx) x) == *((const HOST_WIDE_INT *) y));
218 }
219
220 /* Returns a hash code for X (which is really a CONST_DOUBLE).  */
221 static hashval_t
222 const_double_htab_hash (x)
223      const void *x;
224 {
225   hashval_t h = 0;
226   size_t i;
227   rtx value = (rtx) x;
228
229   for (i = 0; i < sizeof(CONST_DOUBLE_FORMAT)-1; i++)
230     h ^= XWINT (value, i);
231   return h;
232 }
233
234 /* Returns non-zero if the value represented by X (really a ...)
235    is the same as that represented by Y (really a ...) */
236 static int
237 const_double_htab_eq (x, y)
238      const void *x;
239      const void *y;
240 {
241   rtx a = (rtx)x, b = (rtx)y;
242   size_t i;
243
244   if (GET_MODE (a) != GET_MODE (b))
245     return 0;
246   for (i = 0; i < sizeof(CONST_DOUBLE_FORMAT)-1; i++)
247     if (XWINT (a, i) != XWINT (b, i))
248       return 0;
249
250   return 1;
251 }
252
253 /* Returns a hash code for X (which is a really a mem_attrs *).  */
254
255 static hashval_t
256 mem_attrs_htab_hash (x)
257      const void *x;
258 {
259   mem_attrs *p = (mem_attrs *) x;
260
261   return (p->alias ^ (p->align * 1000)
262           ^ ((p->offset ? INTVAL (p->offset) : 0) * 50000)
263           ^ ((p->size ? INTVAL (p->size) : 0) * 2500000)
264           ^ (size_t) p->expr);
265 }
266
267 /* Returns non-zero if the value represented by X (which is really a
268    mem_attrs *) is the same as that given by Y (which is also really a
269    mem_attrs *).  */
270
271 static int
272 mem_attrs_htab_eq (x, y)
273      const void *x;
274      const void *y;
275 {
276   mem_attrs *p = (mem_attrs *) x;
277   mem_attrs *q = (mem_attrs *) y;
278
279   return (p->alias == q->alias && p->expr == q->expr && p->offset == q->offset
280           && p->size == q->size && p->align == q->align);
281 }
282
283 /* Allocate a new mem_attrs structure and insert it into the hash table if
284    one identical to it is not already in the table.  We are doing this for
285    MEM of mode MODE.  */
286
287 static mem_attrs *
288 get_mem_attrs (alias, expr, offset, size, align, mode)
289      HOST_WIDE_INT alias;
290      tree expr;
291      rtx offset;
292      rtx size;
293      unsigned int align;
294      enum machine_mode mode;
295 {
296   mem_attrs attrs;
297   void **slot;
298
299   /* If everything is the default, we can just return zero.  */
300   if (alias == 0 && expr == 0 && offset == 0
301       && (size == 0
302           || (mode != BLKmode && GET_MODE_SIZE (mode) == INTVAL (size)))
303       && (align == BITS_PER_UNIT
304           || (STRICT_ALIGNMENT
305               && mode != BLKmode && align == GET_MODE_ALIGNMENT (mode))))
306     return 0;
307
308   attrs.alias = alias;
309   attrs.expr = expr;
310   attrs.offset = offset;
311   attrs.size = size;
312   attrs.align = align;
313
314   slot = htab_find_slot (mem_attrs_htab, &attrs, INSERT);
315   if (*slot == 0)
316     {
317       *slot = ggc_alloc (sizeof (mem_attrs));
318       memcpy (*slot, &attrs, sizeof (mem_attrs));
319     }
320
321   return *slot;
322 }
323
324 /* Generate a new REG rtx.  Make sure ORIGINAL_REGNO is set properly, and
325    don't attempt to share with the various global pieces of rtl (such as
326    frame_pointer_rtx).  */
327
328 rtx
329 gen_raw_REG (mode, regno)
330      enum machine_mode mode;
331      int regno;
332 {
333   rtx x = gen_rtx_raw_REG (mode, regno);
334   ORIGINAL_REGNO (x) = regno;
335   return x;
336 }
337
338 /* There are some RTL codes that require special attention; the generation
339    functions do the raw handling.  If you add to this list, modify
340    special_rtx in gengenrtl.c as well.  */
341
342 rtx
343 gen_rtx_CONST_INT (mode, arg)
344      enum machine_mode mode ATTRIBUTE_UNUSED;
345      HOST_WIDE_INT arg;
346 {
347   void **slot;
348
349   if (arg >= - MAX_SAVED_CONST_INT && arg <= MAX_SAVED_CONST_INT)
350     return const_int_rtx[arg + MAX_SAVED_CONST_INT];
351
352 #if STORE_FLAG_VALUE != 1 && STORE_FLAG_VALUE != -1
353   if (const_true_rtx && arg == STORE_FLAG_VALUE)
354     return const_true_rtx;
355 #endif
356
357   /* Look up the CONST_INT in the hash table.  */
358   slot = htab_find_slot_with_hash (const_int_htab, &arg,
359                                    (hashval_t) arg, INSERT);
360   if (*slot == 0)
361     *slot = gen_rtx_raw_CONST_INT (VOIDmode, arg);
362
363   return (rtx) *slot;
364 }
365
366 rtx
367 gen_int_mode (c, mode)
368      HOST_WIDE_INT c;
369      enum machine_mode mode;
370 {
371   return GEN_INT (trunc_int_for_mode (c, mode));
372 }
373
374 /* CONST_DOUBLEs might be created from pairs of integers, or from
375    REAL_VALUE_TYPEs.  Also, their length is known only at run time,
376    so we cannot use gen_rtx_raw_CONST_DOUBLE.  */
377
378 /* Determine whether REAL, a CONST_DOUBLE, already exists in the
379    hash table.  If so, return its counterpart; otherwise add it
380    to the hash table and return it.  */
381 static rtx
382 lookup_const_double (real)
383      rtx real;
384 {
385   void **slot = htab_find_slot (const_double_htab, real, INSERT);
386   if (*slot == 0)
387     *slot = real;
388
389   return (rtx) *slot;
390 }
391
392 /* Return a CONST_DOUBLE rtx for a floating-point value specified by
393    VALUE in mode MODE.  */
394 rtx
395 const_double_from_real_value (value, mode)
396      REAL_VALUE_TYPE value;
397      enum machine_mode mode;
398 {
399   rtx real = rtx_alloc (CONST_DOUBLE);
400   PUT_MODE (real, mode);
401
402   memcpy (&CONST_DOUBLE_LOW (real), &value, sizeof (REAL_VALUE_TYPE));
403
404   return lookup_const_double (real);
405 }
406
407 /* Return a CONST_DOUBLE or CONST_INT for a value specified as a pair
408    of ints: I0 is the low-order word and I1 is the high-order word.
409    Do not use this routine for non-integer modes; convert to
410    REAL_VALUE_TYPE and use CONST_DOUBLE_FROM_REAL_VALUE.  */
411
412 rtx
413 immed_double_const (i0, i1, mode)
414      HOST_WIDE_INT i0, i1;
415      enum machine_mode mode;
416 {
417   rtx value;
418   unsigned int i;
419
420   if (mode != VOIDmode)
421     {
422       int width;
423       if (GET_MODE_CLASS (mode) != MODE_INT
424           && GET_MODE_CLASS (mode) != MODE_PARTIAL_INT)
425         abort ();
426
427       /* We clear out all bits that don't belong in MODE, unless they and
428          our sign bit are all one.  So we get either a reasonable negative
429          value or a reasonable unsigned value for this mode.  */
430       width = GET_MODE_BITSIZE (mode);
431       if (width < HOST_BITS_PER_WIDE_INT
432           && ((i0 & ((HOST_WIDE_INT) (-1) << (width - 1)))
433               != ((HOST_WIDE_INT) (-1) << (width - 1))))
434         i0 &= ((HOST_WIDE_INT) 1 << width) - 1, i1 = 0;
435       else if (width == HOST_BITS_PER_WIDE_INT
436                && ! (i1 == ~0 && i0 < 0))
437         i1 = 0;
438       else if (width > 2 * HOST_BITS_PER_WIDE_INT)
439         /* We cannot represent this value as a constant.  */
440         abort ();
441
442       /* If this would be an entire word for the target, but is not for
443          the host, then sign-extend on the host so that the number will
444          look the same way on the host that it would on the target.
445
446          For example, when building a 64 bit alpha hosted 32 bit sparc
447          targeted compiler, then we want the 32 bit unsigned value -1 to be
448          represented as a 64 bit value -1, and not as 0x00000000ffffffff.
449          The latter confuses the sparc backend.  */
450
451       if (width < HOST_BITS_PER_WIDE_INT
452           && (i0 & ((HOST_WIDE_INT) 1 << (width - 1))))
453         i0 |= ((HOST_WIDE_INT) (-1) << width);
454
455       /* If MODE fits within HOST_BITS_PER_WIDE_INT, always use a
456          CONST_INT.
457
458          ??? Strictly speaking, this is wrong if we create a CONST_INT for
459          a large unsigned constant with the size of MODE being
460          HOST_BITS_PER_WIDE_INT and later try to interpret that constant
461          in a wider mode.  In that case we will mis-interpret it as a
462          negative number.
463
464          Unfortunately, the only alternative is to make a CONST_DOUBLE for
465          any constant in any mode if it is an unsigned constant larger
466          than the maximum signed integer in an int on the host.  However,
467          doing this will break everyone that always expects to see a
468          CONST_INT for SImode and smaller.
469
470          We have always been making CONST_INTs in this case, so nothing
471          new is being broken.  */
472
473       if (width <= HOST_BITS_PER_WIDE_INT)
474         i1 = (i0 < 0) ? ~(HOST_WIDE_INT) 0 : 0;
475     }
476
477   /* If this integer fits in one word, return a CONST_INT.  */
478   if ((i1 == 0 && i0 >= 0) || (i1 == ~0 && i0 < 0))
479     return GEN_INT (i0);
480
481   /* We use VOIDmode for integers.  */
482   value = rtx_alloc (CONST_DOUBLE);
483   PUT_MODE (value, VOIDmode);
484
485   CONST_DOUBLE_LOW (value) = i0;
486   CONST_DOUBLE_HIGH (value) = i1;
487
488   for (i = 2; i < (sizeof CONST_DOUBLE_FORMAT - 1); i++)
489     XWINT (value, i) = 0;
490
491   return lookup_const_double (value);
492 }
493
494 rtx
495 gen_rtx_REG (mode, regno)
496      enum machine_mode mode;
497      unsigned int regno;
498 {
499   /* In case the MD file explicitly references the frame pointer, have
500      all such references point to the same frame pointer.  This is
501      used during frame pointer elimination to distinguish the explicit
502      references to these registers from pseudos that happened to be
503      assigned to them.
504
505      If we have eliminated the frame pointer or arg pointer, we will
506      be using it as a normal register, for example as a spill
507      register.  In such cases, we might be accessing it in a mode that
508      is not Pmode and therefore cannot use the pre-allocated rtx.
509
510      Also don't do this when we are making new REGs in reload, since
511      we don't want to get confused with the real pointers.  */
512
513   if (mode == Pmode && !reload_in_progress)
514     {
515       if (regno == FRAME_POINTER_REGNUM)
516         return frame_pointer_rtx;
517 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
518       if (regno == HARD_FRAME_POINTER_REGNUM)
519         return hard_frame_pointer_rtx;
520 #endif
521 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM && HARD_FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
522       if (regno == ARG_POINTER_REGNUM)
523         return arg_pointer_rtx;
524 #endif
525 #ifdef RETURN_ADDRESS_POINTER_REGNUM
526       if (regno == RETURN_ADDRESS_POINTER_REGNUM)
527         return return_address_pointer_rtx;
528 #endif
529       if (regno == PIC_OFFSET_TABLE_REGNUM
530           && fixed_regs[PIC_OFFSET_TABLE_REGNUM])
531         return pic_offset_table_rtx;
532       if (regno == STACK_POINTER_REGNUM)
533         return stack_pointer_rtx;
534     }
535
536   /* If the per-function register table has been set up, try to re-use
537      an existing entry in that table to avoid useless generation of RTL.  */
538   if (cfun
539       && cfun->emit
540       && regno_reg_rtx
541       && regno < FIRST_PSEUDO_REGISTER
542       && reg_raw_mode[regno] == mode)
543     return regno_reg_rtx[regno];
544
545   return gen_raw_REG (mode, regno);
546 }
547
548 rtx
549 gen_rtx_MEM (mode, addr)
550      enum machine_mode mode;
551      rtx addr;
552 {
553   rtx rt = gen_rtx_raw_MEM (mode, addr);
554
555   /* This field is not cleared by the mere allocation of the rtx, so
556      we clear it here.  */
557   MEM_ATTRS (rt) = 0;
558
559   return rt;
560 }
561
562 rtx
563 gen_rtx_SUBREG (mode, reg, offset)
564      enum machine_mode mode;
565      rtx reg;
566      int offset;
567 {
568   /* This is the most common failure type.
569      Catch it early so we can see who does it.  */
570   if ((offset % GET_MODE_SIZE (mode)) != 0)
571     abort ();
572
573   /* This check isn't usable right now because combine will
574      throw arbitrary crap like a CALL into a SUBREG in
575      gen_lowpart_for_combine so we must just eat it.  */
576 #if 0
577   /* Check for this too.  */
578   if (offset >= GET_MODE_SIZE (GET_MODE (reg)))
579     abort ();
580 #endif
581   return gen_rtx_raw_SUBREG (mode, reg, offset);
582 }
583
584 /* Generate a SUBREG representing the least-significant part of REG if MODE
585    is smaller than mode of REG, otherwise paradoxical SUBREG.  */
586
587 rtx
588 gen_lowpart_SUBREG (mode, reg)
589      enum machine_mode mode;
590      rtx reg;
591 {
592   enum machine_mode inmode;
593
594   inmode = GET_MODE (reg);
595   if (inmode == VOIDmode)
596     inmode = mode;
597   return gen_rtx_SUBREG (mode, reg,
598                          subreg_lowpart_offset (mode, inmode));
599 }
600 \f
601 /* rtx gen_rtx (code, mode, [element1, ..., elementn])
602 **
603 **          This routine generates an RTX of the size specified by
604 **      <code>, which is an RTX code.   The RTX structure is initialized
605 **      from the arguments <element1> through <elementn>, which are
606 **      interpreted according to the specific RTX type's format.   The
607 **      special machine mode associated with the rtx (if any) is specified
608 **      in <mode>.
609 **
610 **          gen_rtx can be invoked in a way which resembles the lisp-like
611 **      rtx it will generate.   For example, the following rtx structure:
612 **
613 **            (plus:QI (mem:QI (reg:SI 1))
614 **                     (mem:QI (plusw:SI (reg:SI 2) (reg:SI 3))))
615 **
616 **              ...would be generated by the following C code:
617 **
618 **              gen_rtx (PLUS, QImode,
619 **                  gen_rtx (MEM, QImode,
620 **                      gen_rtx (REG, SImode, 1)),
621 **                  gen_rtx (MEM, QImode,
622 **                      gen_rtx (PLUS, SImode,
623 **                          gen_rtx (REG, SImode, 2),
624 **                          gen_rtx (REG, SImode, 3)))),
625 */
626
627 /*VARARGS2*/
628 rtx
629 gen_rtx VPARAMS ((enum rtx_code code, enum machine_mode mode, ...))
630 {
631   int i;                /* Array indices...                     */
632   const char *fmt;      /* Current rtx's format...              */
633   rtx rt_val;           /* RTX to return to caller...           */
634
635   VA_OPEN (p, mode);
636   VA_FIXEDARG (p, enum rtx_code, code);
637   VA_FIXEDARG (p, enum machine_mode, mode);
638
639   switch (code)
640     {
641     case CONST_INT:
642       rt_val = gen_rtx_CONST_INT (mode, va_arg (p, HOST_WIDE_INT));
643       break;
644
645     case CONST_DOUBLE:
646       {
647         HOST_WIDE_INT arg0 = va_arg (p, HOST_WIDE_INT);
648         HOST_WIDE_INT arg1 = va_arg (p, HOST_WIDE_INT);
649
650         rt_val = immed_double_const (arg0, arg1, mode);
651       }
652       break;
653
654     case REG:
655       rt_val = gen_rtx_REG (mode, va_arg (p, int));
656       break;
657
658     case MEM:
659       rt_val = gen_rtx_MEM (mode, va_arg (p, rtx));
660       break;
661
662     default:
663       rt_val = rtx_alloc (code);        /* Allocate the storage space.  */
664       rt_val->mode = mode;              /* Store the machine mode...  */
665
666       fmt = GET_RTX_FORMAT (code);      /* Find the right format...  */
667       for (i = 0; i < GET_RTX_LENGTH (code); i++)
668         {
669           switch (*fmt++)
670             {
671             case '0':           /* Unused field.  */
672               break;
673
674             case 'i':           /* An integer?  */
675               XINT (rt_val, i) = va_arg (p, int);
676               break;
677
678             case 'w':           /* A wide integer? */
679               XWINT (rt_val, i) = va_arg (p, HOST_WIDE_INT);
680               break;
681
682             case 's':           /* A string?  */
683               XSTR (rt_val, i) = va_arg (p, char *);
684               break;
685
686             case 'e':           /* An expression?  */
687             case 'u':           /* An insn?  Same except when printing.  */
688               XEXP (rt_val, i) = va_arg (p, rtx);
689               break;
690
691             case 'E':           /* An RTX vector?  */
692               XVEC (rt_val, i) = va_arg (p, rtvec);
693               break;
694
695             case 'b':           /* A bitmap? */
696               XBITMAP (rt_val, i) = va_arg (p, bitmap);
697               break;
698
699             case 't':           /* A tree? */
700               XTREE (rt_val, i) = va_arg (p, tree);
701               break;
702
703             default:
704               abort ();
705             }
706         }
707       break;
708     }
709
710   VA_CLOSE (p);
711   return rt_val;
712 }
713
714 /* gen_rtvec (n, [rt1, ..., rtn])
715 **
716 **          This routine creates an rtvec and stores within it the
717 **      pointers to rtx's which are its arguments.
718 */
719
720 /*VARARGS1*/
721 rtvec
722 gen_rtvec VPARAMS ((int n, ...))
723 {
724   int i, save_n;
725   rtx *vector;
726
727   VA_OPEN (p, n);
728   VA_FIXEDARG (p, int, n);
729
730   if (n == 0)
731     return NULL_RTVEC;          /* Don't allocate an empty rtvec...     */
732
733   vector = (rtx *) alloca (n * sizeof (rtx));
734
735   for (i = 0; i < n; i++)
736     vector[i] = va_arg (p, rtx);
737
738   /* The definition of VA_* in K&R C causes `n' to go out of scope.  */
739   save_n = n;
740   VA_CLOSE (p);
741
742   return gen_rtvec_v (save_n, vector);
743 }
744
745 rtvec
746 gen_rtvec_v (n, argp)
747      int n;
748      rtx *argp;
749 {
750   int i;
751   rtvec rt_val;
752
753   if (n == 0)
754     return NULL_RTVEC;          /* Don't allocate an empty rtvec...     */
755
756   rt_val = rtvec_alloc (n);     /* Allocate an rtvec...                 */
757
758   for (i = 0; i < n; i++)
759     rt_val->elem[i] = *argp++;
760
761   return rt_val;
762 }
763 \f
764 /* Generate a REG rtx for a new pseudo register of mode MODE.
765    This pseudo is assigned the next sequential register number.  */
766
767 rtx
768 gen_reg_rtx (mode)
769      enum machine_mode mode;
770 {
771   struct function *f = cfun;
772   rtx val;
773
774   /* Don't let anything called after initial flow analysis create new
775      registers.  */
776   if (no_new_pseudos)
777     abort ();
778
779   if (generating_concat_p
780       && (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
781           || GET_MODE_CLASS (mode) == MODE_COMPLEX_INT))
782     {
783       /* For complex modes, don't make a single pseudo.
784          Instead, make a CONCAT of two pseudos.
785          This allows noncontiguous allocation of the real and imaginary parts,
786          which makes much better code.  Besides, allocating DCmode
787          pseudos overstrains reload on some machines like the 386.  */
788       rtx realpart, imagpart;
789       int size = GET_MODE_UNIT_SIZE (mode);
790       enum machine_mode partmode
791         = mode_for_size (size * BITS_PER_UNIT,
792                          (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
793                           ? MODE_FLOAT : MODE_INT),
794                          0);
795
796       realpart = gen_reg_rtx (partmode);
797       imagpart = gen_reg_rtx (partmode);
798       return gen_rtx_CONCAT (mode, realpart, imagpart);
799     }
800
801   /* Make sure regno_pointer_align, regno_decl, and regno_reg_rtx are large
802      enough to have an element for this pseudo reg number.  */
803
804   if (reg_rtx_no == f->emit->regno_pointer_align_length)
805     {
806       int old_size = f->emit->regno_pointer_align_length;
807       char *new;
808       rtx *new1;
809       tree *new2;
810
811       new = ggc_realloc (f->emit->regno_pointer_align, old_size * 2);
812       memset (new + old_size, 0, old_size);
813       f->emit->regno_pointer_align = (unsigned char *) new;
814
815       new1 = (rtx *) ggc_realloc (f->emit->x_regno_reg_rtx,
816                                   old_size * 2 * sizeof (rtx));
817       memset (new1 + old_size, 0, old_size * sizeof (rtx));
818       regno_reg_rtx = new1;
819
820       new2 = (tree *) ggc_realloc (f->emit->regno_decl,
821                                    old_size * 2 * sizeof (tree));
822       memset (new2 + old_size, 0, old_size * sizeof (tree));
823       f->emit->regno_decl = new2;
824
825       f->emit->regno_pointer_align_length = old_size * 2;
826     }
827
828   val = gen_raw_REG (mode, reg_rtx_no);
829   regno_reg_rtx[reg_rtx_no++] = val;
830   return val;
831 }
832
833 /* Identify REG (which may be a CONCAT) as a user register.  */
834
835 void
836 mark_user_reg (reg)
837      rtx reg;
838 {
839   if (GET_CODE (reg) == CONCAT)
840     {
841       REG_USERVAR_P (XEXP (reg, 0)) = 1;
842       REG_USERVAR_P (XEXP (reg, 1)) = 1;
843     }
844   else if (GET_CODE (reg) == REG)
845     REG_USERVAR_P (reg) = 1;
846   else
847     abort ();
848 }
849
850 /* Identify REG as a probable pointer register and show its alignment
851    as ALIGN, if nonzero.  */
852
853 void
854 mark_reg_pointer (reg, align)
855      rtx reg;
856      int align;
857 {
858   if (! REG_POINTER (reg))
859     {
860       REG_POINTER (reg) = 1;
861
862       if (align)
863         REGNO_POINTER_ALIGN (REGNO (reg)) = align;
864     }
865   else if (align && align < REGNO_POINTER_ALIGN (REGNO (reg)))
866     /* We can no-longer be sure just how aligned this pointer is */
867     REGNO_POINTER_ALIGN (REGNO (reg)) = align;
868 }
869
870 /* Return 1 plus largest pseudo reg number used in the current function.  */
871
872 int
873 max_reg_num ()
874 {
875   return reg_rtx_no;
876 }
877
878 /* Return 1 + the largest label number used so far in the current function.  */
879
880 int
881 max_label_num ()
882 {
883   if (last_label_num && label_num == base_label_num)
884     return last_label_num;
885   return label_num;
886 }
887
888 /* Return first label number used in this function (if any were used).  */
889
890 int
891 get_first_label_num ()
892 {
893   return first_label_num;
894 }
895 \f
896 /* Return the final regno of X, which is a SUBREG of a hard
897    register.  */
898 int
899 subreg_hard_regno (x, check_mode)
900      rtx x;
901      int check_mode;
902 {
903   enum machine_mode mode = GET_MODE (x);
904   unsigned int byte_offset, base_regno, final_regno;
905   rtx reg = SUBREG_REG (x);
906
907   /* This is where we attempt to catch illegal subregs
908      created by the compiler.  */
909   if (GET_CODE (x) != SUBREG
910       || GET_CODE (reg) != REG)
911     abort ();
912   base_regno = REGNO (reg);
913   if (base_regno >= FIRST_PSEUDO_REGISTER)
914     abort ();
915   if (check_mode && ! HARD_REGNO_MODE_OK (base_regno, GET_MODE (reg)))
916     abort ();
917
918   /* Catch non-congruent offsets too.  */
919   byte_offset = SUBREG_BYTE (x);
920   if ((byte_offset % GET_MODE_SIZE (mode)) != 0)
921     abort ();
922
923   final_regno = subreg_regno (x);
924
925   return final_regno;
926 }
927
928 /* Return a value representing some low-order bits of X, where the number
929    of low-order bits is given by MODE.  Note that no conversion is done
930    between floating-point and fixed-point values, rather, the bit
931    representation is returned.
932
933    This function handles the cases in common between gen_lowpart, below,
934    and two variants in cse.c and combine.c.  These are the cases that can
935    be safely handled at all points in the compilation.
936
937    If this is not a case we can handle, return 0.  */
938
939 rtx
940 gen_lowpart_common (mode, x)
941      enum machine_mode mode;
942      rtx x;
943 {
944   int msize = GET_MODE_SIZE (mode);
945   int xsize = GET_MODE_SIZE (GET_MODE (x));
946   int offset = 0;
947
948   if (GET_MODE (x) == mode)
949     return x;
950
951   /* MODE must occupy no more words than the mode of X.  */
952   if (GET_MODE (x) != VOIDmode
953       && ((msize + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD
954           > ((xsize + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)))
955     return 0;
956
957   offset = subreg_lowpart_offset (mode, GET_MODE (x));
958
959   if ((GET_CODE (x) == ZERO_EXTEND || GET_CODE (x) == SIGN_EXTEND)
960       && (GET_MODE_CLASS (mode) == MODE_INT
961           || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT))
962     {
963       /* If we are getting the low-order part of something that has been
964          sign- or zero-extended, we can either just use the object being
965          extended or make a narrower extension.  If we want an even smaller
966          piece than the size of the object being extended, call ourselves
967          recursively.
968
969          This case is used mostly by combine and cse.  */
970
971       if (GET_MODE (XEXP (x, 0)) == mode)
972         return XEXP (x, 0);
973       else if (GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (XEXP (x, 0))))
974         return gen_lowpart_common (mode, XEXP (x, 0));
975       else if (GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (x)))
976         return gen_rtx_fmt_e (GET_CODE (x), mode, XEXP (x, 0));
977     }
978   else if (GET_CODE (x) == SUBREG || GET_CODE (x) == REG
979            || GET_CODE (x) == CONCAT)
980     return simplify_gen_subreg (mode, x, GET_MODE (x), offset);
981   /* If X is a CONST_INT or a CONST_DOUBLE, extract the appropriate bits
982      from the low-order part of the constant.  */
983   else if ((GET_MODE_CLASS (mode) == MODE_INT
984             || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
985            && GET_MODE (x) == VOIDmode
986            && (GET_CODE (x) == CONST_INT || GET_CODE (x) == CONST_DOUBLE))
987     {
988       /* If MODE is twice the host word size, X is already the desired
989          representation.  Otherwise, if MODE is wider than a word, we can't
990          do this.  If MODE is exactly a word, return just one CONST_INT.  */
991
992       if (GET_MODE_BITSIZE (mode) >= 2 * HOST_BITS_PER_WIDE_INT)
993         return x;
994       else if (GET_MODE_BITSIZE (mode) > HOST_BITS_PER_WIDE_INT)
995         return 0;
996       else if (GET_MODE_BITSIZE (mode) == HOST_BITS_PER_WIDE_INT)
997         return (GET_CODE (x) == CONST_INT ? x
998                 : GEN_INT (CONST_DOUBLE_LOW (x)));
999       else
1000         {
1001           /* MODE must be narrower than HOST_BITS_PER_WIDE_INT.  */
1002           HOST_WIDE_INT val = (GET_CODE (x) == CONST_INT ? INTVAL (x)
1003                                : CONST_DOUBLE_LOW (x));
1004
1005           /* Sign extend to HOST_WIDE_INT.  */
1006           val = trunc_int_for_mode (val, mode);
1007
1008           return (GET_CODE (x) == CONST_INT && INTVAL (x) == val ? x
1009                   : GEN_INT (val));
1010         }
1011     }
1012
1013   /* The floating-point emulator can handle all conversions between
1014      FP and integer operands.  This simplifies reload because it
1015      doesn't have to deal with constructs like (subreg:DI
1016      (const_double:SF ...)) or (subreg:DF (const_int ...)).  */
1017   /* Single-precision floats are always 32-bits and double-precision
1018      floats are always 64-bits.  */
1019
1020   else if (GET_MODE_CLASS (mode) == MODE_FLOAT
1021            && GET_MODE_BITSIZE (mode) == 32
1022            && GET_CODE (x) == CONST_INT)
1023     {
1024       REAL_VALUE_TYPE r;
1025       HOST_WIDE_INT i;
1026
1027       i = INTVAL (x);
1028       r = REAL_VALUE_FROM_TARGET_SINGLE (i);
1029       return CONST_DOUBLE_FROM_REAL_VALUE (r, mode);
1030     }
1031   else if (GET_MODE_CLASS (mode) == MODE_FLOAT
1032            && GET_MODE_BITSIZE (mode) == 64
1033            && (GET_CODE (x) == CONST_INT || GET_CODE (x) == CONST_DOUBLE)
1034            && GET_MODE (x) == VOIDmode)
1035     {
1036       REAL_VALUE_TYPE r;
1037       HOST_WIDE_INT i[2];
1038       HOST_WIDE_INT low, high;
1039
1040       if (GET_CODE (x) == CONST_INT)
1041         {
1042           low = INTVAL (x);
1043           high = low >> (HOST_BITS_PER_WIDE_INT - 1);
1044         }
1045       else
1046         {
1047           low = CONST_DOUBLE_LOW (x);
1048           high = CONST_DOUBLE_HIGH (x);
1049         }
1050
1051 #if HOST_BITS_PER_WIDE_INT == 32
1052       /* REAL_VALUE_TARGET_DOUBLE takes the addressing order of the
1053          target machine.  */
1054       if (WORDS_BIG_ENDIAN)
1055         i[0] = high, i[1] = low;
1056       else
1057         i[0] = low, i[1] = high;
1058 #else
1059       i[0] = low;
1060 #endif
1061
1062       r = REAL_VALUE_FROM_TARGET_DOUBLE (i);
1063       return CONST_DOUBLE_FROM_REAL_VALUE (r, mode);
1064     }
1065   else if ((GET_MODE_CLASS (mode) == MODE_INT
1066             || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
1067            && GET_CODE (x) == CONST_DOUBLE
1068            && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
1069     {
1070       REAL_VALUE_TYPE r;
1071       long i[4];  /* Only the low 32 bits of each 'long' are used.  */
1072       int endian = WORDS_BIG_ENDIAN ? 1 : 0;
1073
1074       /* Convert 'r' into an array of four 32-bit words in target word
1075          order.  */
1076       REAL_VALUE_FROM_CONST_DOUBLE (r, x);
1077       switch (GET_MODE_BITSIZE (GET_MODE (x)))
1078         {
1079         case 32:
1080           REAL_VALUE_TO_TARGET_SINGLE (r, i[3 * endian]);
1081           i[1] = 0;
1082           i[2] = 0;
1083           i[3 - 3 * endian] = 0;
1084           break;
1085         case 64:
1086           REAL_VALUE_TO_TARGET_DOUBLE (r, i + 2 * endian);
1087           i[2 - 2 * endian] = 0;
1088           i[3 - 2 * endian] = 0;
1089           break;
1090         case 96:
1091           REAL_VALUE_TO_TARGET_LONG_DOUBLE (r, i + endian);
1092           i[3 - 3 * endian] = 0;
1093           break;
1094         case 128:
1095           REAL_VALUE_TO_TARGET_LONG_DOUBLE (r, i);
1096           break;
1097         default:
1098           abort ();
1099         }
1100       /* Now, pack the 32-bit elements of the array into a CONST_DOUBLE
1101          and return it.  */
1102 #if HOST_BITS_PER_WIDE_INT == 32
1103       return immed_double_const (i[3 * endian], i[1 + endian], mode);
1104 #else
1105       if (HOST_BITS_PER_WIDE_INT != 64)
1106         abort ();
1107
1108       return immed_double_const ((((unsigned long) i[3 * endian])
1109                                   | ((HOST_WIDE_INT) i[1 + endian] << 32)),
1110                                  (((unsigned long) i[2 - endian])
1111                                   | ((HOST_WIDE_INT) i[3 - 3 * endian] << 32)),
1112                                  mode);
1113 #endif
1114     }
1115
1116   /* Otherwise, we can't do this.  */
1117   return 0;
1118 }
1119 \f
1120 /* Return the real part (which has mode MODE) of a complex value X.
1121    This always comes at the low address in memory.  */
1122
1123 rtx
1124 gen_realpart (mode, x)
1125      enum machine_mode mode;
1126      rtx x;
1127 {
1128   if (WORDS_BIG_ENDIAN
1129       && GET_MODE_BITSIZE (mode) < BITS_PER_WORD
1130       && REG_P (x)
1131       && REGNO (x) < FIRST_PSEUDO_REGISTER)
1132     internal_error
1133       ("can't access real part of complex value in hard register");
1134   else if (WORDS_BIG_ENDIAN)
1135     return gen_highpart (mode, x);
1136   else
1137     return gen_lowpart (mode, x);
1138 }
1139
1140 /* Return the imaginary part (which has mode MODE) of a complex value X.
1141    This always comes at the high address in memory.  */
1142
1143 rtx
1144 gen_imagpart (mode, x)
1145      enum machine_mode mode;
1146      rtx x;
1147 {
1148   if (WORDS_BIG_ENDIAN)
1149     return gen_lowpart (mode, x);
1150   else if (! WORDS_BIG_ENDIAN
1151            && GET_MODE_BITSIZE (mode) < BITS_PER_WORD
1152            && REG_P (x)
1153            && REGNO (x) < FIRST_PSEUDO_REGISTER)
1154     internal_error
1155       ("can't access imaginary part of complex value in hard register");
1156   else
1157     return gen_highpart (mode, x);
1158 }
1159
1160 /* Return 1 iff X, assumed to be a SUBREG,
1161    refers to the real part of the complex value in its containing reg.
1162    Complex values are always stored with the real part in the first word,
1163    regardless of WORDS_BIG_ENDIAN.  */
1164
1165 int
1166 subreg_realpart_p (x)
1167      rtx x;
1168 {
1169   if (GET_CODE (x) != SUBREG)
1170     abort ();
1171
1172   return ((unsigned int) SUBREG_BYTE (x)
1173           < GET_MODE_UNIT_SIZE (GET_MODE (SUBREG_REG (x))));
1174 }
1175 \f
1176 /* Assuming that X is an rtx (e.g., MEM, REG or SUBREG) for a value,
1177    return an rtx (MEM, SUBREG, or CONST_INT) that refers to the
1178    least-significant part of X.
1179    MODE specifies how big a part of X to return;
1180    it usually should not be larger than a word.
1181    If X is a MEM whose address is a QUEUED, the value may be so also.  */
1182
1183 rtx
1184 gen_lowpart (mode, x)
1185      enum machine_mode mode;
1186      rtx x;
1187 {
1188   rtx result = gen_lowpart_common (mode, x);
1189
1190   if (result)
1191     return result;
1192   else if (GET_CODE (x) == REG)
1193     {
1194       /* Must be a hard reg that's not valid in MODE.  */
1195       result = gen_lowpart_common (mode, copy_to_reg (x));
1196       if (result == 0)
1197         abort ();
1198       return result;
1199     }
1200   else if (GET_CODE (x) == MEM)
1201     {
1202       /* The only additional case we can do is MEM.  */
1203       int offset = 0;
1204       if (WORDS_BIG_ENDIAN)
1205         offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
1206                   - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
1207
1208       if (BYTES_BIG_ENDIAN)
1209         /* Adjust the address so that the address-after-the-data
1210            is unchanged.  */
1211         offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
1212                    - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
1213
1214       return adjust_address (x, mode, offset);
1215     }
1216   else if (GET_CODE (x) == ADDRESSOF)
1217     return gen_lowpart (mode, force_reg (GET_MODE (x), x));
1218   else
1219     abort ();
1220 }
1221
1222 /* Like `gen_lowpart', but refer to the most significant part.
1223    This is used to access the imaginary part of a complex number.  */
1224
1225 rtx
1226 gen_highpart (mode, x)
1227      enum machine_mode mode;
1228      rtx x;
1229 {
1230   unsigned int msize = GET_MODE_SIZE (mode);
1231   rtx result;
1232
1233   /* This case loses if X is a subreg.  To catch bugs early,
1234      complain if an invalid MODE is used even in other cases.  */
1235   if (msize > UNITS_PER_WORD
1236       && msize != GET_MODE_UNIT_SIZE (GET_MODE (x)))
1237     abort ();
1238
1239   result = simplify_gen_subreg (mode, x, GET_MODE (x),
1240                                 subreg_highpart_offset (mode, GET_MODE (x)));
1241
1242   /* simplify_gen_subreg is not guaranteed to return a valid operand for
1243      the target if we have a MEM.  gen_highpart must return a valid operand,
1244      emitting code if necessary to do so.  */
1245   if (result != NULL_RTX && GET_CODE (result) == MEM)
1246     result = validize_mem (result);
1247
1248   if (!result)
1249     abort ();
1250   return result;
1251 }
1252
1253 /* Like gen_highpart_mode, but accept mode of EXP operand in case EXP can
1254    be VOIDmode constant.  */
1255 rtx
1256 gen_highpart_mode (outermode, innermode, exp)
1257      enum machine_mode outermode, innermode;
1258      rtx exp;
1259 {
1260   if (GET_MODE (exp) != VOIDmode)
1261     {
1262       if (GET_MODE (exp) != innermode)
1263         abort ();
1264       return gen_highpart (outermode, exp);
1265     }
1266   return simplify_gen_subreg (outermode, exp, innermode,
1267                               subreg_highpart_offset (outermode, innermode));
1268 }
1269
1270 /* Return offset in bytes to get OUTERMODE low part
1271    of the value in mode INNERMODE stored in memory in target format.  */
1272
1273 unsigned int
1274 subreg_lowpart_offset (outermode, innermode)
1275      enum machine_mode outermode, innermode;
1276 {
1277   unsigned int offset = 0;
1278   int difference = (GET_MODE_SIZE (innermode) - GET_MODE_SIZE (outermode));
1279
1280   if (difference > 0)
1281     {
1282       if (WORDS_BIG_ENDIAN)
1283         offset += (difference / UNITS_PER_WORD) * UNITS_PER_WORD;
1284       if (BYTES_BIG_ENDIAN)
1285         offset += difference % UNITS_PER_WORD;
1286     }
1287
1288   return offset;
1289 }
1290
1291 /* Return offset in bytes to get OUTERMODE high part
1292    of the value in mode INNERMODE stored in memory in target format.  */
1293 unsigned int
1294 subreg_highpart_offset (outermode, innermode)
1295      enum machine_mode outermode, innermode;
1296 {
1297   unsigned int offset = 0;
1298   int difference = (GET_MODE_SIZE (innermode) - GET_MODE_SIZE (outermode));
1299
1300   if (GET_MODE_SIZE (innermode) < GET_MODE_SIZE (outermode))
1301     abort ();
1302
1303   if (difference > 0)
1304     {
1305       if (! WORDS_BIG_ENDIAN)
1306         offset += (difference / UNITS_PER_WORD) * UNITS_PER_WORD;
1307       if (! BYTES_BIG_ENDIAN)
1308         offset += difference % UNITS_PER_WORD;
1309     }
1310
1311   return offset;
1312 }
1313
1314 /* Return 1 iff X, assumed to be a SUBREG,
1315    refers to the least significant part of its containing reg.
1316    If X is not a SUBREG, always return 1 (it is its own low part!).  */
1317
1318 int
1319 subreg_lowpart_p (x)
1320      rtx x;
1321 {
1322   if (GET_CODE (x) != SUBREG)
1323     return 1;
1324   else if (GET_MODE (SUBREG_REG (x)) == VOIDmode)
1325     return 0;
1326
1327   return (subreg_lowpart_offset (GET_MODE (x), GET_MODE (SUBREG_REG (x)))
1328           == SUBREG_BYTE (x));
1329 }
1330 \f
1331
1332 /* Helper routine for all the constant cases of operand_subword.
1333    Some places invoke this directly.  */
1334
1335 rtx
1336 constant_subword (op, offset, mode)
1337      rtx op;
1338      int offset;
1339      enum machine_mode mode;
1340 {
1341   int size_ratio = HOST_BITS_PER_WIDE_INT / BITS_PER_WORD;
1342   HOST_WIDE_INT val;
1343
1344   /* If OP is already an integer word, return it.  */
1345   if (GET_MODE_CLASS (mode) == MODE_INT
1346       && GET_MODE_SIZE (mode) == UNITS_PER_WORD)
1347     return op;
1348
1349   /* The output is some bits, the width of the target machine's word.
1350      A wider-word host can surely hold them in a CONST_INT. A narrower-word
1351      host can't.  */
1352   if (HOST_BITS_PER_WIDE_INT >= BITS_PER_WORD
1353       && GET_MODE_CLASS (mode) == MODE_FLOAT
1354       && GET_MODE_BITSIZE (mode) == 64
1355       && GET_CODE (op) == CONST_DOUBLE)
1356     {
1357       long k[2];
1358       REAL_VALUE_TYPE rv;
1359
1360       REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
1361       REAL_VALUE_TO_TARGET_DOUBLE (rv, k);
1362
1363       /* We handle 32-bit and >= 64-bit words here.  Note that the order in
1364          which the words are written depends on the word endianness.
1365          ??? This is a potential portability problem and should
1366          be fixed at some point.
1367
1368          We must exercise caution with the sign bit.  By definition there
1369          are 32 significant bits in K; there may be more in a HOST_WIDE_INT.
1370          Consider a host with a 32-bit long and a 64-bit HOST_WIDE_INT.
1371          So we explicitly mask and sign-extend as necessary.  */
1372       if (BITS_PER_WORD == 32)
1373         {
1374           val = k[offset];
1375           val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
1376           return GEN_INT (val);
1377         }
1378 #if HOST_BITS_PER_WIDE_INT >= 64
1379       else if (BITS_PER_WORD >= 64 && offset == 0)
1380         {
1381           val = k[! WORDS_BIG_ENDIAN];
1382           val = (((val & 0xffffffff) ^ 0x80000000) - 0x80000000) << 32;
1383           val |= (HOST_WIDE_INT) k[WORDS_BIG_ENDIAN] & 0xffffffff;
1384           return GEN_INT (val);
1385         }
1386 #endif
1387       else if (BITS_PER_WORD == 16)
1388         {
1389           val = k[offset >> 1];
1390           if ((offset & 1) == ! WORDS_BIG_ENDIAN)
1391             val >>= 16;
1392           val = ((val & 0xffff) ^ 0x8000) - 0x8000;
1393           return GEN_INT (val);
1394         }
1395       else
1396         abort ();
1397     }
1398   else if (HOST_BITS_PER_WIDE_INT >= BITS_PER_WORD
1399            && GET_MODE_CLASS (mode) == MODE_FLOAT
1400            && GET_MODE_BITSIZE (mode) > 64
1401            && GET_CODE (op) == CONST_DOUBLE)
1402     {
1403       long k[4];
1404       REAL_VALUE_TYPE rv;
1405
1406       REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
1407       REAL_VALUE_TO_TARGET_LONG_DOUBLE (rv, k);
1408
1409       if (BITS_PER_WORD == 32)
1410         {
1411           val = k[offset];
1412           val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
1413           return GEN_INT (val);
1414         }
1415 #if HOST_BITS_PER_WIDE_INT >= 64
1416       else if (BITS_PER_WORD >= 64 && offset <= 1)
1417         {
1418           val = k[offset * 2 + ! WORDS_BIG_ENDIAN];
1419           val = (((val & 0xffffffff) ^ 0x80000000) - 0x80000000) << 32;
1420           val |= (HOST_WIDE_INT) k[offset * 2 + WORDS_BIG_ENDIAN] & 0xffffffff;
1421           return GEN_INT (val);
1422         }
1423 #endif
1424       else
1425         abort ();
1426     }
1427
1428   /* Single word float is a little harder, since single- and double-word
1429      values often do not have the same high-order bits.  We have already
1430      verified that we want the only defined word of the single-word value.  */
1431   if (GET_MODE_CLASS (mode) == MODE_FLOAT
1432       && GET_MODE_BITSIZE (mode) == 32
1433       && GET_CODE (op) == CONST_DOUBLE)
1434     {
1435       long l;
1436       REAL_VALUE_TYPE rv;
1437
1438       REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
1439       REAL_VALUE_TO_TARGET_SINGLE (rv, l);
1440
1441       /* Sign extend from known 32-bit value to HOST_WIDE_INT.  */
1442       val = l;
1443       val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
1444
1445       if (BITS_PER_WORD == 16)
1446         {
1447           if ((offset & 1) == ! WORDS_BIG_ENDIAN)
1448             val >>= 16;
1449           val = ((val & 0xffff) ^ 0x8000) - 0x8000;
1450         }
1451
1452       return GEN_INT (val);
1453     }
1454
1455   /* The only remaining cases that we can handle are integers.
1456      Convert to proper endianness now since these cases need it.
1457      At this point, offset == 0 means the low-order word.
1458
1459      We do not want to handle the case when BITS_PER_WORD <= HOST_BITS_PER_INT
1460      in general.  However, if OP is (const_int 0), we can just return
1461      it for any word.  */
1462
1463   if (op == const0_rtx)
1464     return op;
1465
1466   if (GET_MODE_CLASS (mode) != MODE_INT
1467       || (GET_CODE (op) != CONST_INT && GET_CODE (op) != CONST_DOUBLE)
1468       || BITS_PER_WORD > HOST_BITS_PER_WIDE_INT)
1469     return 0;
1470
1471   if (WORDS_BIG_ENDIAN)
1472     offset = GET_MODE_SIZE (mode) / UNITS_PER_WORD - 1 - offset;
1473
1474   /* Find out which word on the host machine this value is in and get
1475      it from the constant.  */
1476   val = (offset / size_ratio == 0
1477          ? (GET_CODE (op) == CONST_INT ? INTVAL (op) : CONST_DOUBLE_LOW (op))
1478          : (GET_CODE (op) == CONST_INT
1479             ? (INTVAL (op) < 0 ? ~0 : 0) : CONST_DOUBLE_HIGH (op)));
1480
1481   /* Get the value we want into the low bits of val.  */
1482   if (BITS_PER_WORD < HOST_BITS_PER_WIDE_INT)
1483     val = ((val >> ((offset % size_ratio) * BITS_PER_WORD)));
1484
1485   val = trunc_int_for_mode (val, word_mode);
1486
1487   return GEN_INT (val);
1488 }
1489
1490 /* Return subword OFFSET of operand OP.
1491    The word number, OFFSET, is interpreted as the word number starting
1492    at the low-order address.  OFFSET 0 is the low-order word if not
1493    WORDS_BIG_ENDIAN, otherwise it is the high-order word.
1494
1495    If we cannot extract the required word, we return zero.  Otherwise,
1496    an rtx corresponding to the requested word will be returned.
1497
1498    VALIDATE_ADDRESS is nonzero if the address should be validated.  Before
1499    reload has completed, a valid address will always be returned.  After
1500    reload, if a valid address cannot be returned, we return zero.
1501
1502    If VALIDATE_ADDRESS is zero, we simply form the required address; validating
1503    it is the responsibility of the caller.
1504
1505    MODE is the mode of OP in case it is a CONST_INT.
1506
1507    ??? This is still rather broken for some cases.  The problem for the
1508    moment is that all callers of this thing provide no 'goal mode' to
1509    tell us to work with.  This exists because all callers were written
1510    in a word based SUBREG world.
1511    Now use of this function can be deprecated by simplify_subreg in most
1512    cases.
1513  */
1514
1515 rtx
1516 operand_subword (op, offset, validate_address, mode)
1517      rtx op;
1518      unsigned int offset;
1519      int validate_address;
1520      enum machine_mode mode;
1521 {
1522   if (mode == VOIDmode)
1523     mode = GET_MODE (op);
1524
1525   if (mode == VOIDmode)
1526     abort ();
1527
1528   /* If OP is narrower than a word, fail.  */
1529   if (mode != BLKmode
1530       && (GET_MODE_SIZE (mode) < UNITS_PER_WORD))
1531     return 0;
1532
1533   /* If we want a word outside OP, return zero.  */
1534   if (mode != BLKmode
1535       && (offset + 1) * UNITS_PER_WORD > GET_MODE_SIZE (mode))
1536     return const0_rtx;
1537
1538   /* Form a new MEM at the requested address.  */
1539   if (GET_CODE (op) == MEM)
1540     {
1541       rtx new = adjust_address_nv (op, word_mode, offset * UNITS_PER_WORD);
1542
1543       if (! validate_address)
1544         return new;
1545
1546       else if (reload_completed)
1547         {
1548           if (! strict_memory_address_p (word_mode, XEXP (new, 0)))
1549             return 0;
1550         }
1551       else
1552         return replace_equiv_address (new, XEXP (new, 0));
1553     }
1554
1555   /* Rest can be handled by simplify_subreg.  */
1556   return simplify_gen_subreg (word_mode, op, mode, (offset * UNITS_PER_WORD));
1557 }
1558
1559 /* Similar to `operand_subword', but never return 0.  If we can't extract
1560    the required subword, put OP into a register and try again.  If that fails,
1561    abort.  We always validate the address in this case.
1562
1563    MODE is the mode of OP, in case it is CONST_INT.  */
1564
1565 rtx
1566 operand_subword_force (op, offset, mode)
1567      rtx op;
1568      unsigned int offset;
1569      enum machine_mode mode;
1570 {
1571   rtx result = operand_subword (op, offset, 1, mode);
1572
1573   if (result)
1574     return result;
1575
1576   if (mode != BLKmode && mode != VOIDmode)
1577     {
1578       /* If this is a register which can not be accessed by words, copy it
1579          to a pseudo register.  */
1580       if (GET_CODE (op) == REG)
1581         op = copy_to_reg (op);
1582       else
1583         op = force_reg (mode, op);
1584     }
1585
1586   result = operand_subword (op, offset, 1, mode);
1587   if (result == 0)
1588     abort ();
1589
1590   return result;
1591 }
1592 \f
1593 /* Given a compare instruction, swap the operands.
1594    A test instruction is changed into a compare of 0 against the operand.  */
1595
1596 void
1597 reverse_comparison (insn)
1598      rtx insn;
1599 {
1600   rtx body = PATTERN (insn);
1601   rtx comp;
1602
1603   if (GET_CODE (body) == SET)
1604     comp = SET_SRC (body);
1605   else
1606     comp = SET_SRC (XVECEXP (body, 0, 0));
1607
1608   if (GET_CODE (comp) == COMPARE)
1609     {
1610       rtx op0 = XEXP (comp, 0);
1611       rtx op1 = XEXP (comp, 1);
1612       XEXP (comp, 0) = op1;
1613       XEXP (comp, 1) = op0;
1614     }
1615   else
1616     {
1617       rtx new = gen_rtx_COMPARE (VOIDmode,
1618                                  CONST0_RTX (GET_MODE (comp)), comp);
1619       if (GET_CODE (body) == SET)
1620         SET_SRC (body) = new;
1621       else
1622         SET_SRC (XVECEXP (body, 0, 0)) = new;
1623     }
1624 }
1625 \f
1626 /* Within a MEM_EXPR, we care about either (1) a component ref of a decl,
1627    or (2) a component ref of something variable.  Represent the later with
1628    a NULL expression.  */
1629
1630 static tree
1631 component_ref_for_mem_expr (ref)
1632      tree ref;
1633 {
1634   tree inner = TREE_OPERAND (ref, 0);
1635
1636   if (TREE_CODE (inner) == COMPONENT_REF)
1637     inner = component_ref_for_mem_expr (inner);
1638   else
1639     {
1640       tree placeholder_ptr = 0;
1641
1642       /* Now remove any conversions: they don't change what the underlying
1643          object is.  Likewise for SAVE_EXPR.  Also handle PLACEHOLDER_EXPR.  */
1644       while (TREE_CODE (inner) == NOP_EXPR || TREE_CODE (inner) == CONVERT_EXPR
1645              || TREE_CODE (inner) == NON_LVALUE_EXPR
1646              || TREE_CODE (inner) == VIEW_CONVERT_EXPR
1647              || TREE_CODE (inner) == SAVE_EXPR
1648              || TREE_CODE (inner) == PLACEHOLDER_EXPR)
1649         if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
1650           inner = find_placeholder (inner, &placeholder_ptr);
1651         else
1652           inner = TREE_OPERAND (inner, 0);
1653
1654       if (! DECL_P (inner))
1655         inner = NULL_TREE;
1656     }
1657
1658   if (inner == TREE_OPERAND (ref, 0))
1659     return ref;
1660   else
1661     return build (COMPONENT_REF, TREE_TYPE (ref), inner,
1662                   TREE_OPERAND (ref, 1));
1663 }
1664
1665 /* Given REF, a MEM, and T, either the type of X or the expression
1666    corresponding to REF, set the memory attributes.  OBJECTP is nonzero
1667    if we are making a new object of this type.  */
1668
1669 void
1670 set_mem_attributes (ref, t, objectp)
1671      rtx ref;
1672      tree t;
1673      int objectp;
1674 {
1675   HOST_WIDE_INT alias = MEM_ALIAS_SET (ref);
1676   tree expr = MEM_EXPR (ref);
1677   rtx offset = MEM_OFFSET (ref);
1678   rtx size = MEM_SIZE (ref);
1679   unsigned int align = MEM_ALIGN (ref);
1680   tree type;
1681
1682   /* It can happen that type_for_mode was given a mode for which there
1683      is no language-level type.  In which case it returns NULL, which
1684      we can see here.  */
1685   if (t == NULL_TREE)
1686     return;
1687
1688   type = TYPE_P (t) ? t : TREE_TYPE (t);
1689
1690   /* If we have already set DECL_RTL = ref, get_alias_set will get the
1691      wrong answer, as it assumes that DECL_RTL already has the right alias
1692      info.  Callers should not set DECL_RTL until after the call to
1693      set_mem_attributes.  */
1694   if (DECL_P (t) && ref == DECL_RTL_IF_SET (t))
1695     abort ();
1696
1697   /* Get the alias set from the expression or type (perhaps using a
1698      front-end routine) and use it.  */
1699   alias = get_alias_set (t);
1700
1701   MEM_VOLATILE_P (ref) = TYPE_VOLATILE (type);
1702   MEM_IN_STRUCT_P (ref) = AGGREGATE_TYPE_P (type);
1703   RTX_UNCHANGING_P (ref)
1704     |= ((lang_hooks.honor_readonly
1705          && (TYPE_READONLY (type) || TREE_READONLY (t)))
1706         || (! TYPE_P (t) && TREE_CONSTANT (t)));
1707
1708   /* If we are making an object of this type, or if this is a DECL, we know
1709      that it is a scalar if the type is not an aggregate.  */
1710   if ((objectp || DECL_P (t)) && ! AGGREGATE_TYPE_P (type))
1711     MEM_SCALAR_P (ref) = 1;
1712
1713   /* We can set the alignment from the type if we are making an object,
1714      this is an INDIRECT_REF, or if TYPE_ALIGN_OK.  */
1715   if (objectp || TREE_CODE (t) == INDIRECT_REF || TYPE_ALIGN_OK (type))
1716     align = MAX (align, TYPE_ALIGN (type));
1717
1718   /* If the size is known, we can set that.  */
1719   if (TYPE_SIZE_UNIT (type) && host_integerp (TYPE_SIZE_UNIT (type), 1))
1720     size = GEN_INT (tree_low_cst (TYPE_SIZE_UNIT (type), 1));
1721
1722   /* If T is not a type, we may be able to deduce some more information about
1723      the expression.  */
1724   if (! TYPE_P (t))
1725     {
1726       maybe_set_unchanging (ref, t);
1727       if (TREE_THIS_VOLATILE (t))
1728         MEM_VOLATILE_P (ref) = 1;
1729
1730       /* Now remove any conversions: they don't change what the underlying
1731          object is.  Likewise for SAVE_EXPR.  */
1732       while (TREE_CODE (t) == NOP_EXPR || TREE_CODE (t) == CONVERT_EXPR
1733              || TREE_CODE (t) == NON_LVALUE_EXPR
1734              || TREE_CODE (t) == VIEW_CONVERT_EXPR
1735              || TREE_CODE (t) == SAVE_EXPR)
1736         t = TREE_OPERAND (t, 0);
1737
1738       /* If this expression can't be addressed (e.g., it contains a reference
1739          to a non-addressable field), show we don't change its alias set.  */
1740       if (! can_address_p (t))
1741         MEM_KEEP_ALIAS_SET_P (ref) = 1;
1742
1743       /* If this is a decl, set the attributes of the MEM from it.  */
1744       if (DECL_P (t))
1745         {
1746           expr = t;
1747           offset = const0_rtx;
1748           size = (DECL_SIZE_UNIT (t)
1749                   && host_integerp (DECL_SIZE_UNIT (t), 1)
1750                   ? GEN_INT (tree_low_cst (DECL_SIZE_UNIT (t), 1)) : 0);
1751           align = DECL_ALIGN (t);
1752         }
1753
1754       /* If this is a constant, we know the alignment.  */
1755       else if (TREE_CODE_CLASS (TREE_CODE (t)) == 'c')
1756         {
1757           align = TYPE_ALIGN (type);
1758 #ifdef CONSTANT_ALIGNMENT
1759           align = CONSTANT_ALIGNMENT (t, align);
1760 #endif
1761         }
1762
1763       /* If this is a field reference and not a bit-field, record it.  */
1764       /* ??? There is some information that can be gleened from bit-fields,
1765          such as the word offset in the structure that might be modified.
1766          But skip it for now.  */
1767       else if (TREE_CODE (t) == COMPONENT_REF
1768                && ! DECL_BIT_FIELD (TREE_OPERAND (t, 1)))
1769         {
1770           expr = component_ref_for_mem_expr (t);
1771           offset = const0_rtx;
1772           /* ??? Any reason the field size would be different than
1773              the size we got from the type?  */
1774         }
1775
1776       /* If this is an array reference, look for an outer field reference.  */
1777       else if (TREE_CODE (t) == ARRAY_REF)
1778         {
1779           tree off_tree = size_zero_node;
1780
1781           do
1782             {
1783               off_tree
1784                 = fold (build (PLUS_EXPR, sizetype,
1785                                fold (build (MULT_EXPR, sizetype,
1786                                             TREE_OPERAND (t, 1),
1787                                             TYPE_SIZE_UNIT (TREE_TYPE (t)))),
1788                                off_tree));
1789               t = TREE_OPERAND (t, 0);
1790             }
1791           while (TREE_CODE (t) == ARRAY_REF);
1792
1793           if (TREE_CODE (t) == COMPONENT_REF)
1794             {
1795               expr = component_ref_for_mem_expr (t);
1796               if (host_integerp (off_tree, 1))
1797                 offset = GEN_INT (tree_low_cst (off_tree, 1));
1798               /* ??? Any reason the field size would be different than
1799                  the size we got from the type?  */
1800             }
1801         }
1802     }
1803
1804   /* Now set the attributes we computed above.  */
1805   MEM_ATTRS (ref)
1806     = get_mem_attrs (alias, expr, offset, size, align, GET_MODE (ref));
1807
1808   /* If this is already known to be a scalar or aggregate, we are done.  */
1809   if (MEM_IN_STRUCT_P (ref) || MEM_SCALAR_P (ref))
1810     return;
1811
1812   /* If it is a reference into an aggregate, this is part of an aggregate.
1813      Otherwise we don't know.  */
1814   else if (TREE_CODE (t) == COMPONENT_REF || TREE_CODE (t) == ARRAY_REF
1815            || TREE_CODE (t) == ARRAY_RANGE_REF
1816            || TREE_CODE (t) == BIT_FIELD_REF)
1817     MEM_IN_STRUCT_P (ref) = 1;
1818 }
1819
1820 /* Set the alias set of MEM to SET.  */
1821
1822 void
1823 set_mem_alias_set (mem, set)
1824      rtx mem;
1825      HOST_WIDE_INT set;
1826 {
1827 #ifdef ENABLE_CHECKING
1828   /* If the new and old alias sets don't conflict, something is wrong.  */
1829   if (!alias_sets_conflict_p (set, MEM_ALIAS_SET (mem)))
1830     abort ();
1831 #endif
1832
1833   MEM_ATTRS (mem) = get_mem_attrs (set, MEM_EXPR (mem), MEM_OFFSET (mem),
1834                                    MEM_SIZE (mem), MEM_ALIGN (mem),
1835                                    GET_MODE (mem));
1836 }
1837
1838 /* Set the alignment of MEM to ALIGN bits.  */
1839
1840 void
1841 set_mem_align (mem, align)
1842      rtx mem;
1843      unsigned int align;
1844 {
1845   MEM_ATTRS (mem) = get_mem_attrs (MEM_ALIAS_SET (mem), MEM_EXPR (mem),
1846                                    MEM_OFFSET (mem), MEM_SIZE (mem), align,
1847                                    GET_MODE (mem));
1848 }
1849
1850 /* Set the expr for MEM to EXPR.  */
1851
1852 void
1853 set_mem_expr (mem, expr)
1854      rtx mem;
1855      tree expr;
1856 {
1857   MEM_ATTRS (mem)
1858     = get_mem_attrs (MEM_ALIAS_SET (mem), expr, MEM_OFFSET (mem),
1859                      MEM_SIZE (mem), MEM_ALIGN (mem), GET_MODE (mem));
1860 }
1861
1862 /* Set the offset of MEM to OFFSET.  */
1863
1864 void
1865 set_mem_offset (mem, offset)
1866      rtx mem, offset;
1867 {
1868   MEM_ATTRS (mem) = get_mem_attrs (MEM_ALIAS_SET (mem), MEM_EXPR (mem),
1869                                    offset, MEM_SIZE (mem), MEM_ALIGN (mem),
1870                                    GET_MODE (mem));
1871 }
1872 \f
1873 /* Return a memory reference like MEMREF, but with its mode changed to MODE
1874    and its address changed to ADDR.  (VOIDmode means don't change the mode.
1875    NULL for ADDR means don't change the address.)  VALIDATE is nonzero if the
1876    returned memory location is required to be valid.  The memory
1877    attributes are not changed.  */
1878
1879 static rtx
1880 change_address_1 (memref, mode, addr, validate)
1881      rtx memref;
1882      enum machine_mode mode;
1883      rtx addr;
1884      int validate;
1885 {
1886   rtx new;
1887
1888   if (GET_CODE (memref) != MEM)
1889     abort ();
1890   if (mode == VOIDmode)
1891     mode = GET_MODE (memref);
1892   if (addr == 0)
1893     addr = XEXP (memref, 0);
1894
1895   if (validate)
1896     {
1897       if (reload_in_progress || reload_completed)
1898         {
1899           if (! memory_address_p (mode, addr))
1900             abort ();
1901         }
1902       else
1903         addr = memory_address (mode, addr);
1904     }
1905
1906   if (rtx_equal_p (addr, XEXP (memref, 0)) && mode == GET_MODE (memref))
1907     return memref;
1908
1909   new = gen_rtx_MEM (mode, addr);
1910   MEM_COPY_ATTRIBUTES (new, memref);
1911   return new;
1912 }
1913
1914 /* Like change_address_1 with VALIDATE nonzero, but we are not saying in what
1915    way we are changing MEMREF, so we only preserve the alias set.  */
1916
1917 rtx
1918 change_address (memref, mode, addr)
1919      rtx memref;
1920      enum machine_mode mode;
1921      rtx addr;
1922 {
1923   rtx new = change_address_1 (memref, mode, addr, 1);
1924   enum machine_mode mmode = GET_MODE (new);
1925
1926   MEM_ATTRS (new)
1927     = get_mem_attrs (MEM_ALIAS_SET (memref), 0, 0,
1928                      mmode == BLKmode ? 0 : GEN_INT (GET_MODE_SIZE (mmode)),
1929                      (mmode == BLKmode ? BITS_PER_UNIT
1930                       : GET_MODE_ALIGNMENT (mmode)),
1931                      mmode);
1932
1933   return new;
1934 }
1935
1936 /* Return a memory reference like MEMREF, but with its mode changed
1937    to MODE and its address offset by OFFSET bytes.  If VALIDATE is
1938    nonzero, the memory address is forced to be valid.
1939    If ADJUST is zero, OFFSET is only used to update MEM_ATTRS
1940    and caller is responsible for adjusting MEMREF base register.  */
1941
1942 rtx
1943 adjust_address_1 (memref, mode, offset, validate, adjust)
1944      rtx memref;
1945      enum machine_mode mode;
1946      HOST_WIDE_INT offset;
1947      int validate, adjust;
1948 {
1949   rtx addr = XEXP (memref, 0);
1950   rtx new;
1951   rtx memoffset = MEM_OFFSET (memref);
1952   rtx size = 0;
1953   unsigned int memalign = MEM_ALIGN (memref);
1954
1955   /* ??? Prefer to create garbage instead of creating shared rtl.
1956      This may happen even if offset is non-zero -- consider
1957      (plus (plus reg reg) const_int) -- so do this always.  */
1958   addr = copy_rtx (addr);
1959
1960   if (adjust)
1961     {
1962       /* If MEMREF is a LO_SUM and the offset is within the alignment of the
1963          object, we can merge it into the LO_SUM.  */
1964       if (GET_MODE (memref) != BLKmode && GET_CODE (addr) == LO_SUM
1965           && offset >= 0
1966           && (unsigned HOST_WIDE_INT) offset
1967               < GET_MODE_ALIGNMENT (GET_MODE (memref)) / BITS_PER_UNIT)
1968         addr = gen_rtx_LO_SUM (Pmode, XEXP (addr, 0),
1969                                plus_constant (XEXP (addr, 1), offset));
1970       else
1971         addr = plus_constant (addr, offset);
1972     }
1973
1974   new = change_address_1 (memref, mode, addr, validate);
1975
1976   /* Compute the new values of the memory attributes due to this adjustment.
1977      We add the offsets and update the alignment.  */
1978   if (memoffset)
1979     memoffset = GEN_INT (offset + INTVAL (memoffset));
1980
1981   /* Compute the new alignment by taking the MIN of the alignment and the
1982      lowest-order set bit in OFFSET, but don't change the alignment if OFFSET
1983      if zero.  */
1984   if (offset != 0)
1985     memalign
1986       = MIN (memalign,
1987              (unsigned HOST_WIDE_INT) (offset & -offset) * BITS_PER_UNIT);
1988
1989   /* We can compute the size in a number of ways.  */
1990   if (GET_MODE (new) != BLKmode)
1991     size = GEN_INT (GET_MODE_SIZE (GET_MODE (new)));
1992   else if (MEM_SIZE (memref))
1993     size = plus_constant (MEM_SIZE (memref), -offset);
1994
1995   MEM_ATTRS (new) = get_mem_attrs (MEM_ALIAS_SET (memref), MEM_EXPR (memref),
1996                                    memoffset, size, memalign, GET_MODE (new));
1997
1998   /* At some point, we should validate that this offset is within the object,
1999      if all the appropriate values are known.  */
2000   return new;
2001 }
2002
2003 /* Return a memory reference like MEMREF, but with its mode changed
2004    to MODE and its address changed to ADDR, which is assumed to be
2005    MEMREF offseted by OFFSET bytes.  If VALIDATE is
2006    nonzero, the memory address is forced to be valid.  */
2007
2008 rtx
2009 adjust_automodify_address_1 (memref, mode, addr, offset, validate)
2010      rtx memref;
2011      enum machine_mode mode;
2012      rtx addr;
2013      HOST_WIDE_INT offset;
2014      int validate;
2015 {
2016   memref = change_address_1 (memref, VOIDmode, addr, validate);
2017   return adjust_address_1 (memref, mode, offset, validate, 0);
2018 }
2019
2020 /* Return a memory reference like MEMREF, but whose address is changed by
2021    adding OFFSET, an RTX, to it.  POW2 is the highest power of two factor
2022    known to be in OFFSET (possibly 1).  */
2023
2024 rtx
2025 offset_address (memref, offset, pow2)
2026      rtx memref;
2027      rtx offset;
2028      HOST_WIDE_INT pow2;
2029 {
2030   rtx new, addr = XEXP (memref, 0);
2031
2032   new = simplify_gen_binary (PLUS, Pmode, addr, offset);
2033
2034   /* At this point we don't know _why_ the address is invalid.  It
2035      could have secondary memory refereces, multiplies or anything.
2036
2037      However, if we did go and rearrange things, we can wind up not
2038      being able to recognize the magic around pic_offset_table_rtx.
2039      This stuff is fragile, and is yet another example of why it is
2040      bad to expose PIC machinery too early.  */
2041   if (! memory_address_p (GET_MODE (memref), new)
2042       && GET_CODE (addr) == PLUS
2043       && XEXP (addr, 0) == pic_offset_table_rtx)
2044     {
2045       addr = force_reg (GET_MODE (addr), addr);
2046       new = simplify_gen_binary (PLUS, Pmode, addr, offset);
2047     }
2048
2049   update_temp_slot_address (XEXP (memref, 0), new);
2050   new = change_address_1 (memref, VOIDmode, new, 1);
2051
2052   /* Update the alignment to reflect the offset.  Reset the offset, which
2053      we don't know.  */
2054   MEM_ATTRS (new)
2055     = get_mem_attrs (MEM_ALIAS_SET (memref), MEM_EXPR (memref), 0, 0,
2056                      MIN (MEM_ALIGN (memref),
2057                           (unsigned HOST_WIDE_INT) pow2 * BITS_PER_UNIT),
2058                      GET_MODE (new));
2059   return new;
2060 }
2061
2062 /* Return a memory reference like MEMREF, but with its address changed to
2063    ADDR.  The caller is asserting that the actual piece of memory pointed
2064    to is the same, just the form of the address is being changed, such as
2065    by putting something into a register.  */
2066
2067 rtx
2068 replace_equiv_address (memref, addr)
2069      rtx memref;
2070      rtx addr;
2071 {
2072   /* change_address_1 copies the memory attribute structure without change
2073      and that's exactly what we want here.  */
2074   update_temp_slot_address (XEXP (memref, 0), addr);
2075   return change_address_1 (memref, VOIDmode, addr, 1);
2076 }
2077
2078 /* Likewise, but the reference is not required to be valid.  */
2079
2080 rtx
2081 replace_equiv_address_nv (memref, addr)
2082      rtx memref;
2083      rtx addr;
2084 {
2085   return change_address_1 (memref, VOIDmode, addr, 0);
2086 }
2087
2088 /* Return a memory reference like MEMREF, but with its mode widened to
2089    MODE and offset by OFFSET.  This would be used by targets that e.g.
2090    cannot issue QImode memory operations and have to use SImode memory
2091    operations plus masking logic.  */
2092
2093 rtx
2094 widen_memory_access (memref, mode, offset)
2095      rtx memref;
2096      enum machine_mode mode;
2097      HOST_WIDE_INT offset;
2098 {
2099   rtx new = adjust_address_1 (memref, mode, offset, 1, 1);
2100   tree expr = MEM_EXPR (new);
2101   rtx memoffset = MEM_OFFSET (new);
2102   unsigned int size = GET_MODE_SIZE (mode);
2103
2104   /* If we don't know what offset we were at within the expression, then
2105      we can't know if we've overstepped the bounds.  */
2106   if (! memoffset)
2107     expr = NULL_TREE;
2108
2109   while (expr)
2110     {
2111       if (TREE_CODE (expr) == COMPONENT_REF)
2112         {
2113           tree field = TREE_OPERAND (expr, 1);
2114
2115           if (! DECL_SIZE_UNIT (field))
2116             {
2117               expr = NULL_TREE;
2118               break;
2119             }
2120
2121           /* Is the field at least as large as the access?  If so, ok,
2122              otherwise strip back to the containing structure.  */
2123           if (TREE_CODE (DECL_SIZE_UNIT (field)) == INTEGER_CST
2124               && compare_tree_int (DECL_SIZE_UNIT (field), size) >= 0
2125               && INTVAL (memoffset) >= 0)
2126             break;
2127
2128           if (! host_integerp (DECL_FIELD_OFFSET (field), 1))
2129             {
2130               expr = NULL_TREE;
2131               break;
2132             }
2133
2134           expr = TREE_OPERAND (expr, 0);
2135           memoffset = (GEN_INT (INTVAL (memoffset)
2136                        + tree_low_cst (DECL_FIELD_OFFSET (field), 1)
2137                        + (tree_low_cst (DECL_FIELD_BIT_OFFSET (field), 1)
2138                           / BITS_PER_UNIT)));
2139         }
2140       /* Similarly for the decl.  */
2141       else if (DECL_P (expr)
2142                && DECL_SIZE_UNIT (expr)
2143                && TREE_CODE (DECL_SIZE_UNIT (expr)) == INTEGER_CST
2144                && compare_tree_int (DECL_SIZE_UNIT (expr), size) >= 0
2145                && (! memoffset || INTVAL (memoffset) >= 0))
2146         break;
2147       else
2148         {
2149           /* The widened memory access overflows the expression, which means
2150              that it could alias another expression.  Zap it.  */
2151           expr = NULL_TREE;
2152           break;
2153         }
2154     }
2155
2156   if (! expr)
2157     memoffset = NULL_RTX;
2158
2159   /* The widened memory may alias other stuff, so zap the alias set.  */
2160   /* ??? Maybe use get_alias_set on any remaining expression.  */
2161
2162   MEM_ATTRS (new) = get_mem_attrs (0, expr, memoffset, GEN_INT (size),
2163                                    MEM_ALIGN (new), mode);
2164
2165   return new;
2166 }
2167 \f
2168 /* Return a newly created CODE_LABEL rtx with a unique label number.  */
2169
2170 rtx
2171 gen_label_rtx ()
2172 {
2173   rtx label;
2174
2175   label = gen_rtx_CODE_LABEL (VOIDmode, 0, NULL_RTX, NULL_RTX,
2176                               NULL, label_num++, NULL, NULL);
2177
2178   LABEL_NUSES (label) = 0;
2179   LABEL_ALTERNATE_NAME (label) = NULL;
2180   return label;
2181 }
2182 \f
2183 /* For procedure integration.  */
2184
2185 /* Install new pointers to the first and last insns in the chain.
2186    Also, set cur_insn_uid to one higher than the last in use.
2187    Used for an inline-procedure after copying the insn chain.  */
2188
2189 void
2190 set_new_first_and_last_insn (first, last)
2191      rtx first, last;
2192 {
2193   rtx insn;
2194
2195   first_insn = first;
2196   last_insn = last;
2197   cur_insn_uid = 0;
2198
2199   for (insn = first; insn; insn = NEXT_INSN (insn))
2200     cur_insn_uid = MAX (cur_insn_uid, INSN_UID (insn));
2201
2202   cur_insn_uid++;
2203 }
2204
2205 /* Set the range of label numbers found in the current function.
2206    This is used when belatedly compiling an inline function.  */
2207
2208 void
2209 set_new_first_and_last_label_num (first, last)
2210      int first, last;
2211 {
2212   base_label_num = label_num;
2213   first_label_num = first;
2214   last_label_num = last;
2215 }
2216
2217 /* Set the last label number found in the current function.
2218    This is used when belatedly compiling an inline function.  */
2219
2220 void
2221 set_new_last_label_num (last)
2222      int last;
2223 {
2224   base_label_num = label_num;
2225   last_label_num = last;
2226 }
2227 \f
2228 /* Restore all variables describing the current status from the structure *P.
2229    This is used after a nested function.  */
2230
2231 void
2232 restore_emit_status (p)
2233      struct function *p ATTRIBUTE_UNUSED;
2234 {
2235   last_label_num = 0;
2236 }
2237 \f
2238 /* Go through all the RTL insn bodies and copy any invalid shared
2239    structure.  This routine should only be called once.  */
2240
2241 void
2242 unshare_all_rtl (fndecl, insn)
2243      tree fndecl;
2244      rtx insn;
2245 {
2246   tree decl;
2247
2248   /* Make sure that virtual parameters are not shared.  */
2249   for (decl = DECL_ARGUMENTS (fndecl); decl; decl = TREE_CHAIN (decl))
2250     SET_DECL_RTL (decl, copy_rtx_if_shared (DECL_RTL (decl)));
2251
2252   /* Make sure that virtual stack slots are not shared.  */
2253   unshare_all_decls (DECL_INITIAL (fndecl));
2254
2255   /* Unshare just about everything else.  */
2256   unshare_all_rtl_1 (insn);
2257
2258   /* Make sure the addresses of stack slots found outside the insn chain
2259      (such as, in DECL_RTL of a variable) are not shared
2260      with the insn chain.
2261
2262      This special care is necessary when the stack slot MEM does not
2263      actually appear in the insn chain.  If it does appear, its address
2264      is unshared from all else at that point.  */
2265   stack_slot_list = copy_rtx_if_shared (stack_slot_list);
2266 }
2267
2268 /* Go through all the RTL insn bodies and copy any invalid shared
2269    structure, again.  This is a fairly expensive thing to do so it
2270    should be done sparingly.  */
2271
2272 void
2273 unshare_all_rtl_again (insn)
2274      rtx insn;
2275 {
2276   rtx p;
2277   tree decl;
2278
2279   for (p = insn; p; p = NEXT_INSN (p))
2280     if (INSN_P (p))
2281       {
2282         reset_used_flags (PATTERN (p));
2283         reset_used_flags (REG_NOTES (p));
2284         reset_used_flags (LOG_LINKS (p));
2285       }
2286
2287   /* Make sure that virtual stack slots are not shared.  */
2288   reset_used_decls (DECL_INITIAL (cfun->decl));
2289
2290   /* Make sure that virtual parameters are not shared.  */
2291   for (decl = DECL_ARGUMENTS (cfun->decl); decl; decl = TREE_CHAIN (decl))
2292     reset_used_flags (DECL_RTL (decl));
2293
2294   reset_used_flags (stack_slot_list);
2295
2296   unshare_all_rtl (cfun->decl, insn);
2297 }
2298
2299 /* Go through all the RTL insn bodies and copy any invalid shared structure.
2300    Assumes the mark bits are cleared at entry.  */
2301
2302 static void
2303 unshare_all_rtl_1 (insn)
2304      rtx insn;
2305 {
2306   for (; insn; insn = NEXT_INSN (insn))
2307     if (INSN_P (insn))
2308       {
2309         PATTERN (insn) = copy_rtx_if_shared (PATTERN (insn));
2310         REG_NOTES (insn) = copy_rtx_if_shared (REG_NOTES (insn));
2311         LOG_LINKS (insn) = copy_rtx_if_shared (LOG_LINKS (insn));
2312       }
2313 }
2314
2315 /* Go through all virtual stack slots of a function and copy any
2316    shared structure.  */
2317 static void
2318 unshare_all_decls (blk)
2319      tree blk;
2320 {
2321   tree t;
2322
2323   /* Copy shared decls.  */
2324   for (t = BLOCK_VARS (blk); t; t = TREE_CHAIN (t))
2325     if (DECL_RTL_SET_P (t))
2326       SET_DECL_RTL (t, copy_rtx_if_shared (DECL_RTL (t)));
2327
2328   /* Now process sub-blocks.  */
2329   for (t = BLOCK_SUBBLOCKS (blk); t; t = TREE_CHAIN (t))
2330     unshare_all_decls (t);
2331 }
2332
2333 /* Go through all virtual stack slots of a function and mark them as
2334    not shared.  */
2335 static void
2336 reset_used_decls (blk)
2337      tree blk;
2338 {
2339   tree t;
2340
2341   /* Mark decls.  */
2342   for (t = BLOCK_VARS (blk); t; t = TREE_CHAIN (t))
2343     if (DECL_RTL_SET_P (t))
2344       reset_used_flags (DECL_RTL (t));
2345
2346   /* Now process sub-blocks.  */
2347   for (t = BLOCK_SUBBLOCKS (blk); t; t = TREE_CHAIN (t))
2348     reset_used_decls (t);
2349 }
2350
2351 /* Similar to `copy_rtx' except that if MAY_SHARE is present, it is
2352    placed in the result directly, rather than being copied.  MAY_SHARE is
2353    either a MEM of an EXPR_LIST of MEMs.  */
2354
2355 rtx
2356 copy_most_rtx (orig, may_share)
2357      rtx orig;
2358      rtx may_share;
2359 {
2360   rtx copy;
2361   int i, j;
2362   RTX_CODE code;
2363   const char *format_ptr;
2364
2365   if (orig == may_share
2366       || (GET_CODE (may_share) == EXPR_LIST
2367           && in_expr_list_p (may_share, orig)))
2368     return orig;
2369
2370   code = GET_CODE (orig);
2371
2372   switch (code)
2373     {
2374     case REG:
2375     case QUEUED:
2376     case CONST_INT:
2377     case CONST_DOUBLE:
2378     case CONST_VECTOR:
2379     case SYMBOL_REF:
2380     case CODE_LABEL:
2381     case PC:
2382     case CC0:
2383       return orig;
2384     default:
2385       break;
2386     }
2387
2388   copy = rtx_alloc (code);
2389   PUT_MODE (copy, GET_MODE (orig));
2390   RTX_FLAG (copy, in_struct) = RTX_FLAG (orig, in_struct);
2391   RTX_FLAG (copy, volatil) = RTX_FLAG (orig, volatil);
2392   RTX_FLAG (copy, unchanging) = RTX_FLAG (orig, unchanging);
2393   RTX_FLAG (copy, integrated) = RTX_FLAG (orig, integrated);
2394   RTX_FLAG (copy, frame_related) = RTX_FLAG (orig, frame_related);
2395
2396   format_ptr = GET_RTX_FORMAT (GET_CODE (copy));
2397
2398   for (i = 0; i < GET_RTX_LENGTH (GET_CODE (copy)); i++)
2399     {
2400       switch (*format_ptr++)
2401         {
2402         case 'e':
2403           XEXP (copy, i) = XEXP (orig, i);
2404           if (XEXP (orig, i) != NULL && XEXP (orig, i) != may_share)
2405             XEXP (copy, i) = copy_most_rtx (XEXP (orig, i), may_share);
2406           break;
2407
2408         case 'u':
2409           XEXP (copy, i) = XEXP (orig, i);
2410           break;
2411
2412         case 'E':
2413         case 'V':
2414           XVEC (copy, i) = XVEC (orig, i);
2415           if (XVEC (orig, i) != NULL)
2416             {
2417               XVEC (copy, i) = rtvec_alloc (XVECLEN (orig, i));
2418               for (j = 0; j < XVECLEN (copy, i); j++)
2419                 XVECEXP (copy, i, j)
2420                   = copy_most_rtx (XVECEXP (orig, i, j), may_share);
2421             }
2422           break;
2423
2424         case 'w':
2425           XWINT (copy, i) = XWINT (orig, i);
2426           break;
2427
2428         case 'n':
2429         case 'i':
2430           XINT (copy, i) = XINT (orig, i);
2431           break;
2432
2433         case 't':
2434           XTREE (copy, i) = XTREE (orig, i);
2435           break;
2436
2437         case 's':
2438         case 'S':
2439           XSTR (copy, i) = XSTR (orig, i);
2440           break;
2441
2442         case '0':
2443           /* Copy this through the wide int field; that's safest.  */
2444           X0WINT (copy, i) = X0WINT (orig, i);
2445           break;
2446
2447         default:
2448           abort ();
2449         }
2450     }
2451   return copy;
2452 }
2453
2454 /* Mark ORIG as in use, and return a copy of it if it was already in use.
2455    Recursively does the same for subexpressions.  */
2456
2457 rtx
2458 copy_rtx_if_shared (orig)
2459      rtx orig;
2460 {
2461   rtx x = orig;
2462   int i;
2463   enum rtx_code code;
2464   const char *format_ptr;
2465   int copied = 0;
2466
2467   if (x == 0)
2468     return 0;
2469
2470   code = GET_CODE (x);
2471
2472   /* These types may be freely shared.  */
2473
2474   switch (code)
2475     {
2476     case REG:
2477     case QUEUED:
2478     case CONST_INT:
2479     case CONST_DOUBLE:
2480     case CONST_VECTOR:
2481     case SYMBOL_REF:
2482     case CODE_LABEL:
2483     case PC:
2484     case CC0:
2485     case SCRATCH:
2486       /* SCRATCH must be shared because they represent distinct values.  */
2487       return x;
2488
2489     case CONST:
2490       /* CONST can be shared if it contains a SYMBOL_REF.  If it contains
2491          a LABEL_REF, it isn't sharable.  */
2492       if (GET_CODE (XEXP (x, 0)) == PLUS
2493           && GET_CODE (XEXP (XEXP (x, 0), 0)) == SYMBOL_REF
2494           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT)
2495         return x;
2496       break;
2497
2498     case INSN:
2499     case JUMP_INSN:
2500     case CALL_INSN:
2501     case NOTE:
2502     case BARRIER:
2503       /* The chain of insns is not being copied.  */
2504       return x;
2505
2506     case MEM:
2507       /* A MEM is allowed to be shared if its address is constant.
2508
2509          We used to allow sharing of MEMs which referenced
2510          virtual_stack_vars_rtx or virtual_incoming_args_rtx, but
2511          that can lose.  instantiate_virtual_regs will not unshare
2512          the MEMs, and combine may change the structure of the address
2513          because it looks safe and profitable in one context, but
2514          in some other context it creates unrecognizable RTL.  */
2515       if (CONSTANT_ADDRESS_P (XEXP (x, 0)))
2516         return x;
2517
2518       break;
2519
2520     default:
2521       break;
2522     }
2523
2524   /* This rtx may not be shared.  If it has already been seen,
2525      replace it with a copy of itself.  */
2526
2527   if (RTX_FLAG (x, used))
2528     {
2529       rtx copy;
2530
2531       copy = rtx_alloc (code);
2532       memcpy (copy, x,
2533              (sizeof (*copy) - sizeof (copy->fld)
2534               + sizeof (copy->fld[0]) * GET_RTX_LENGTH (code)));
2535       x = copy;
2536       copied = 1;
2537     }
2538   RTX_FLAG (x, used) = 1;
2539
2540   /* Now scan the subexpressions recursively.
2541      We can store any replaced subexpressions directly into X
2542      since we know X is not shared!  Any vectors in X
2543      must be copied if X was copied.  */
2544
2545   format_ptr = GET_RTX_FORMAT (code);
2546
2547   for (i = 0; i < GET_RTX_LENGTH (code); i++)
2548     {
2549       switch (*format_ptr++)
2550         {
2551         case 'e':
2552           XEXP (x, i) = copy_rtx_if_shared (XEXP (x, i));
2553           break;
2554
2555         case 'E':
2556           if (XVEC (x, i) != NULL)
2557             {
2558               int j;
2559               int len = XVECLEN (x, i);
2560
2561               if (copied && len > 0)
2562                 XVEC (x, i) = gen_rtvec_v (len, XVEC (x, i)->elem);
2563               for (j = 0; j < len; j++)
2564                 XVECEXP (x, i, j) = copy_rtx_if_shared (XVECEXP (x, i, j));
2565             }
2566           break;
2567         }
2568     }
2569   return x;
2570 }
2571
2572 /* Clear all the USED bits in X to allow copy_rtx_if_shared to be used
2573    to look for shared sub-parts.  */
2574
2575 void
2576 reset_used_flags (x)
2577      rtx x;
2578 {
2579   int i, j;
2580   enum rtx_code code;
2581   const char *format_ptr;
2582
2583   if (x == 0)
2584     return;
2585
2586   code = GET_CODE (x);
2587
2588   /* These types may be freely shared so we needn't do any resetting
2589      for them.  */
2590
2591   switch (code)
2592     {
2593     case REG:
2594     case QUEUED:
2595     case CONST_INT:
2596     case CONST_DOUBLE:
2597     case CONST_VECTOR:
2598     case SYMBOL_REF:
2599     case CODE_LABEL:
2600     case PC:
2601     case CC0:
2602       return;
2603
2604     case INSN:
2605     case JUMP_INSN:
2606     case CALL_INSN:
2607     case NOTE:
2608     case LABEL_REF:
2609     case BARRIER:
2610       /* The chain of insns is not being copied.  */
2611       return;
2612
2613     default:
2614       break;
2615     }
2616
2617   RTX_FLAG (x, used) = 0;
2618
2619   format_ptr = GET_RTX_FORMAT (code);
2620   for (i = 0; i < GET_RTX_LENGTH (code); i++)
2621     {
2622       switch (*format_ptr++)
2623         {
2624         case 'e':
2625           reset_used_flags (XEXP (x, i));
2626           break;
2627
2628         case 'E':
2629           for (j = 0; j < XVECLEN (x, i); j++)
2630             reset_used_flags (XVECEXP (x, i, j));
2631           break;
2632         }
2633     }
2634 }
2635 \f
2636 /* Copy X if necessary so that it won't be altered by changes in OTHER.
2637    Return X or the rtx for the pseudo reg the value of X was copied into.
2638    OTHER must be valid as a SET_DEST.  */
2639
2640 rtx
2641 make_safe_from (x, other)
2642      rtx x, other;
2643 {
2644   while (1)
2645     switch (GET_CODE (other))
2646       {
2647       case SUBREG:
2648         other = SUBREG_REG (other);
2649         break;
2650       case STRICT_LOW_PART:
2651       case SIGN_EXTEND:
2652       case ZERO_EXTEND:
2653         other = XEXP (other, 0);
2654         break;
2655       default:
2656         goto done;
2657       }
2658  done:
2659   if ((GET_CODE (other) == MEM
2660        && ! CONSTANT_P (x)
2661        && GET_CODE (x) != REG
2662        && GET_CODE (x) != SUBREG)
2663       || (GET_CODE (other) == REG
2664           && (REGNO (other) < FIRST_PSEUDO_REGISTER
2665               || reg_mentioned_p (other, x))))
2666     {
2667       rtx temp = gen_reg_rtx (GET_MODE (x));
2668       emit_move_insn (temp, x);
2669       return temp;
2670     }
2671   return x;
2672 }
2673 \f
2674 /* Emission of insns (adding them to the doubly-linked list).  */
2675
2676 /* Return the first insn of the current sequence or current function.  */
2677
2678 rtx
2679 get_insns ()
2680 {
2681   return first_insn;
2682 }
2683
2684 /* Specify a new insn as the first in the chain.  */
2685
2686 void
2687 set_first_insn (insn)
2688      rtx insn;
2689 {
2690   if (PREV_INSN (insn) != 0)
2691     abort ();
2692   first_insn = insn;
2693 }
2694
2695 /* Return the last insn emitted in current sequence or current function.  */
2696
2697 rtx
2698 get_last_insn ()
2699 {
2700   return last_insn;
2701 }
2702
2703 /* Specify a new insn as the last in the chain.  */
2704
2705 void
2706 set_last_insn (insn)
2707      rtx insn;
2708 {
2709   if (NEXT_INSN (insn) != 0)
2710     abort ();
2711   last_insn = insn;
2712 }
2713
2714 /* Return the last insn emitted, even if it is in a sequence now pushed.  */
2715
2716 rtx
2717 get_last_insn_anywhere ()
2718 {
2719   struct sequence_stack *stack;
2720   if (last_insn)
2721     return last_insn;
2722   for (stack = seq_stack; stack; stack = stack->next)
2723     if (stack->last != 0)
2724       return stack->last;
2725   return 0;
2726 }
2727
2728 /* Return the first nonnote insn emitted in current sequence or current
2729    function.  This routine looks inside SEQUENCEs.  */
2730
2731 rtx
2732 get_first_nonnote_insn ()
2733 {
2734   rtx insn = first_insn;
2735
2736   while (insn)
2737     {
2738       insn = next_insn (insn);
2739       if (insn == 0 || GET_CODE (insn) != NOTE)
2740         break;
2741     }
2742
2743   return insn;
2744 }
2745
2746 /* Return the last nonnote insn emitted in current sequence or current
2747    function.  This routine looks inside SEQUENCEs.  */
2748
2749 rtx
2750 get_last_nonnote_insn ()
2751 {
2752   rtx insn = last_insn;
2753
2754   while (insn)
2755     {
2756       insn = previous_insn (insn);
2757       if (insn == 0 || GET_CODE (insn) != NOTE)
2758         break;
2759     }
2760
2761   return insn;
2762 }
2763
2764 /* Return a number larger than any instruction's uid in this function.  */
2765
2766 int
2767 get_max_uid ()
2768 {
2769   return cur_insn_uid;
2770 }
2771
2772 /* Renumber instructions so that no instruction UIDs are wasted.  */
2773
2774 void
2775 renumber_insns (stream)
2776      FILE *stream;
2777 {
2778   rtx insn;
2779
2780   /* If we're not supposed to renumber instructions, don't.  */
2781   if (!flag_renumber_insns)
2782     return;
2783
2784   /* If there aren't that many instructions, then it's not really
2785      worth renumbering them.  */
2786   if (flag_renumber_insns == 1 && get_max_uid () < 25000)
2787     return;
2788
2789   cur_insn_uid = 1;
2790
2791   for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
2792     {
2793       if (stream)
2794         fprintf (stream, "Renumbering insn %d to %d\n",
2795                  INSN_UID (insn), cur_insn_uid);
2796       INSN_UID (insn) = cur_insn_uid++;
2797     }
2798 }
2799 \f
2800 /* Return the next insn.  If it is a SEQUENCE, return the first insn
2801    of the sequence.  */
2802
2803 rtx
2804 next_insn (insn)
2805      rtx insn;
2806 {
2807   if (insn)
2808     {
2809       insn = NEXT_INSN (insn);
2810       if (insn && GET_CODE (insn) == INSN
2811           && GET_CODE (PATTERN (insn)) == SEQUENCE)
2812         insn = XVECEXP (PATTERN (insn), 0, 0);
2813     }
2814
2815   return insn;
2816 }
2817
2818 /* Return the previous insn.  If it is a SEQUENCE, return the last insn
2819    of the sequence.  */
2820
2821 rtx
2822 previous_insn (insn)
2823      rtx insn;
2824 {
2825   if (insn)
2826     {
2827       insn = PREV_INSN (insn);
2828       if (insn && GET_CODE (insn) == INSN
2829           && GET_CODE (PATTERN (insn)) == SEQUENCE)
2830         insn = XVECEXP (PATTERN (insn), 0, XVECLEN (PATTERN (insn), 0) - 1);
2831     }
2832
2833   return insn;
2834 }
2835
2836 /* Return the next insn after INSN that is not a NOTE.  This routine does not
2837    look inside SEQUENCEs.  */
2838
2839 rtx
2840 next_nonnote_insn (insn)
2841      rtx insn;
2842 {
2843   while (insn)
2844     {
2845       insn = NEXT_INSN (insn);
2846       if (insn == 0 || GET_CODE (insn) != NOTE)
2847         break;
2848     }
2849
2850   return insn;
2851 }
2852
2853 /* Return the previous insn before INSN that is not a NOTE.  This routine does
2854    not look inside SEQUENCEs.  */
2855
2856 rtx
2857 prev_nonnote_insn (insn)
2858      rtx insn;
2859 {
2860   while (insn)
2861     {
2862       insn = PREV_INSN (insn);
2863       if (insn == 0 || GET_CODE (insn) != NOTE)
2864         break;
2865     }
2866
2867   return insn;
2868 }
2869
2870 /* Return the next INSN, CALL_INSN or JUMP_INSN after INSN;
2871    or 0, if there is none.  This routine does not look inside
2872    SEQUENCEs.  */
2873
2874 rtx
2875 next_real_insn (insn)
2876      rtx insn;
2877 {
2878   while (insn)
2879     {
2880       insn = NEXT_INSN (insn);
2881       if (insn == 0 || GET_CODE (insn) == INSN
2882           || GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == JUMP_INSN)
2883         break;
2884     }
2885
2886   return insn;
2887 }
2888
2889 /* Return the last INSN, CALL_INSN or JUMP_INSN before INSN;
2890    or 0, if there is none.  This routine does not look inside
2891    SEQUENCEs.  */
2892
2893 rtx
2894 prev_real_insn (insn)
2895      rtx insn;
2896 {
2897   while (insn)
2898     {
2899       insn = PREV_INSN (insn);
2900       if (insn == 0 || GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN
2901           || GET_CODE (insn) == JUMP_INSN)
2902         break;
2903     }
2904
2905   return insn;
2906 }
2907
2908 /* Find the next insn after INSN that really does something.  This routine
2909    does not look inside SEQUENCEs.  Until reload has completed, this is the
2910    same as next_real_insn.  */
2911
2912 int
2913 active_insn_p (insn)
2914      rtx insn;
2915 {
2916   return (GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == JUMP_INSN
2917           || (GET_CODE (insn) == INSN
2918               && (! reload_completed
2919                   || (GET_CODE (PATTERN (insn)) != USE
2920                       && GET_CODE (PATTERN (insn)) != CLOBBER))));
2921 }
2922
2923 rtx
2924 next_active_insn (insn)
2925      rtx insn;
2926 {
2927   while (insn)
2928     {
2929       insn = NEXT_INSN (insn);
2930       if (insn == 0 || active_insn_p (insn))
2931         break;
2932     }
2933
2934   return insn;
2935 }
2936
2937 /* Find the last insn before INSN that really does something.  This routine
2938    does not look inside SEQUENCEs.  Until reload has completed, this is the
2939    same as prev_real_insn.  */
2940
2941 rtx
2942 prev_active_insn (insn)
2943      rtx insn;
2944 {
2945   while (insn)
2946     {
2947       insn = PREV_INSN (insn);
2948       if (insn == 0 || active_insn_p (insn))
2949         break;
2950     }
2951
2952   return insn;
2953 }
2954
2955 /* Return the next CODE_LABEL after the insn INSN, or 0 if there is none.  */
2956
2957 rtx
2958 next_label (insn)
2959      rtx insn;
2960 {
2961   while (insn)
2962     {
2963       insn = NEXT_INSN (insn);
2964       if (insn == 0 || GET_CODE (insn) == CODE_LABEL)
2965         break;
2966     }
2967
2968   return insn;
2969 }
2970
2971 /* Return the last CODE_LABEL before the insn INSN, or 0 if there is none.  */
2972
2973 rtx
2974 prev_label (insn)
2975      rtx insn;
2976 {
2977   while (insn)
2978     {
2979       insn = PREV_INSN (insn);
2980       if (insn == 0 || GET_CODE (insn) == CODE_LABEL)
2981         break;
2982     }
2983
2984   return insn;
2985 }
2986 \f
2987 #ifdef HAVE_cc0
2988 /* INSN uses CC0 and is being moved into a delay slot.  Set up REG_CC_SETTER
2989    and REG_CC_USER notes so we can find it.  */
2990
2991 void
2992 link_cc0_insns (insn)
2993      rtx insn;
2994 {
2995   rtx user = next_nonnote_insn (insn);
2996
2997   if (GET_CODE (user) == INSN && GET_CODE (PATTERN (user)) == SEQUENCE)
2998     user = XVECEXP (PATTERN (user), 0, 0);
2999
3000   REG_NOTES (user) = gen_rtx_INSN_LIST (REG_CC_SETTER, insn,
3001                                         REG_NOTES (user));
3002   REG_NOTES (insn) = gen_rtx_INSN_LIST (REG_CC_USER, user, REG_NOTES (insn));
3003 }
3004
3005 /* Return the next insn that uses CC0 after INSN, which is assumed to
3006    set it.  This is the inverse of prev_cc0_setter (i.e., prev_cc0_setter
3007    applied to the result of this function should yield INSN).
3008
3009    Normally, this is simply the next insn.  However, if a REG_CC_USER note
3010    is present, it contains the insn that uses CC0.
3011
3012    Return 0 if we can't find the insn.  */
3013
3014 rtx
3015 next_cc0_user (insn)
3016      rtx insn;
3017 {
3018   rtx note = find_reg_note (insn, REG_CC_USER, NULL_RTX);
3019
3020   if (note)
3021     return XEXP (note, 0);
3022
3023   insn = next_nonnote_insn (insn);
3024   if (insn && GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
3025     insn = XVECEXP (PATTERN (insn), 0, 0);
3026
3027   if (insn && INSN_P (insn) && reg_mentioned_p (cc0_rtx, PATTERN (insn)))
3028     return insn;
3029
3030   return 0;
3031 }
3032
3033 /* Find the insn that set CC0 for INSN.  Unless INSN has a REG_CC_SETTER
3034    note, it is the previous insn.  */
3035
3036 rtx
3037 prev_cc0_setter (insn)
3038      rtx insn;
3039 {
3040   rtx note = find_reg_note (insn, REG_CC_SETTER, NULL_RTX);
3041
3042   if (note)
3043     return XEXP (note, 0);
3044
3045   insn = prev_nonnote_insn (insn);
3046   if (! sets_cc0_p (PATTERN (insn)))
3047     abort ();
3048
3049   return insn;
3050 }
3051 #endif
3052
3053 /* Increment the label uses for all labels present in rtx.  */
3054
3055 static void
3056 mark_label_nuses (x)
3057      rtx x;
3058 {
3059   enum rtx_code code;
3060   int i, j;
3061   const char *fmt;
3062
3063   code = GET_CODE (x);
3064   if (code == LABEL_REF)
3065     LABEL_NUSES (XEXP (x, 0))++;
3066
3067   fmt = GET_RTX_FORMAT (code);
3068   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3069     {
3070       if (fmt[i] == 'e')
3071         mark_label_nuses (XEXP (x, i));
3072       else if (fmt[i] == 'E')
3073         for (j = XVECLEN (x, i) - 1; j >= 0; j--)
3074           mark_label_nuses (XVECEXP (x, i, j));
3075     }
3076 }
3077
3078 \f
3079 /* Try splitting insns that can be split for better scheduling.
3080    PAT is the pattern which might split.
3081    TRIAL is the insn providing PAT.
3082    LAST is non-zero if we should return the last insn of the sequence produced.
3083
3084    If this routine succeeds in splitting, it returns the first or last
3085    replacement insn depending on the value of LAST.  Otherwise, it
3086    returns TRIAL.  If the insn to be returned can be split, it will be.  */
3087
3088 rtx
3089 try_split (pat, trial, last)
3090      rtx pat, trial;
3091      int last;
3092 {
3093   rtx before = PREV_INSN (trial);
3094   rtx after = NEXT_INSN (trial);
3095   int has_barrier = 0;
3096   rtx tem;
3097   rtx note, seq;
3098   int probability;
3099
3100   if (any_condjump_p (trial)
3101       && (note = find_reg_note (trial, REG_BR_PROB, 0)))
3102     split_branch_probability = INTVAL (XEXP (note, 0));
3103   probability = split_branch_probability;
3104
3105   seq = split_insns (pat, trial);
3106
3107   split_branch_probability = -1;
3108
3109   /* If we are splitting a JUMP_INSN, it might be followed by a BARRIER.
3110      We may need to handle this specially.  */
3111   if (after && GET_CODE (after) == BARRIER)
3112     {
3113       has_barrier = 1;
3114       after = NEXT_INSN (after);
3115     }
3116
3117   if (seq)
3118     {
3119       /* Sometimes there will be only one insn in that list, this case will
3120          normally arise only when we want it in turn to be split (SFmode on
3121          the 29k is an example).  */
3122       if (NEXT_INSN (seq) != NULL_RTX)
3123         {
3124           rtx insn_last, insn;
3125           int njumps = 0;
3126
3127           /* Avoid infinite loop if any insn of the result matches
3128              the original pattern.  */
3129           insn_last = seq;
3130           while (1)
3131             {
3132               if (INSN_P (insn_last)
3133                   && rtx_equal_p (PATTERN (insn_last), pat))
3134                 return trial;
3135               if (NEXT_INSN (insn_last) == NULL_RTX)
3136                 break;
3137               insn_last = NEXT_INSN (insn_last);
3138             }
3139
3140           /* Mark labels.  */
3141           insn = insn_last;
3142           while (insn != NULL_RTX)
3143             {
3144               if (GET_CODE (insn) == JUMP_INSN)
3145                 {
3146                   mark_jump_label (PATTERN (insn), insn, 0);
3147                   njumps++;
3148                   if (probability != -1
3149                       && any_condjump_p (insn)
3150                       && !find_reg_note (insn, REG_BR_PROB, 0))
3151                     {
3152                       /* We can preserve the REG_BR_PROB notes only if exactly
3153                          one jump is created, otherwise the machine description
3154                          is responsible for this step using
3155                          split_branch_probability variable.  */
3156                       if (njumps != 1)
3157                         abort ();
3158                       REG_NOTES (insn)
3159                         = gen_rtx_EXPR_LIST (REG_BR_PROB,
3160                                              GEN_INT (probability),
3161                                              REG_NOTES (insn));
3162                     }
3163                 }
3164
3165               insn = PREV_INSN (insn);
3166             }
3167
3168           /* If we are splitting a CALL_INSN, look for the CALL_INSN
3169              in SEQ and copy our CALL_INSN_FUNCTION_USAGE to it.  */
3170           if (GET_CODE (trial) == CALL_INSN)
3171             {
3172               insn = insn_last;
3173               while (insn != NULL_RTX)
3174                 {
3175                   if (GET_CODE (insn) == CALL_INSN)
3176                     CALL_INSN_FUNCTION_USAGE (insn)
3177                       = CALL_INSN_FUNCTION_USAGE (trial);
3178
3179                   insn = PREV_INSN (insn);
3180                 }
3181             }
3182
3183           /* Copy notes, particularly those related to the CFG.  */
3184           for (note = REG_NOTES (trial); note; note = XEXP (note, 1))
3185             {
3186               switch (REG_NOTE_KIND (note))
3187                 {
3188                 case REG_EH_REGION:
3189                   insn = insn_last;
3190                   while (insn != NULL_RTX)
3191                     {
3192                       if (GET_CODE (insn) == CALL_INSN
3193                           || (flag_non_call_exceptions
3194                               && may_trap_p (PATTERN (insn))))
3195                         REG_NOTES (insn)
3196                           = gen_rtx_EXPR_LIST (REG_EH_REGION,
3197                                                XEXP (note, 0),
3198                                                REG_NOTES (insn));
3199                       insn = PREV_INSN (insn);
3200                     }
3201                   break;
3202
3203                 case REG_NORETURN:
3204                 case REG_SETJMP:
3205                 case REG_ALWAYS_RETURN:
3206                   insn = insn_last;
3207                   while (insn != NULL_RTX)
3208                     {
3209                       if (GET_CODE (insn) == CALL_INSN)
3210                         REG_NOTES (insn)
3211                           = gen_rtx_EXPR_LIST (REG_NOTE_KIND (note),
3212                                                XEXP (note, 0),
3213                                                REG_NOTES (insn));
3214                       insn = PREV_INSN (insn);
3215                     }
3216                   break;
3217
3218                 case REG_NON_LOCAL_GOTO:
3219                   insn = insn_last;
3220                   while (insn != NULL_RTX)
3221                     {
3222                       if (GET_CODE (insn) == JUMP_INSN)
3223                         REG_NOTES (insn)
3224                           = gen_rtx_EXPR_LIST (REG_NOTE_KIND (note),
3225                                                XEXP (note, 0),
3226                                                REG_NOTES (insn));
3227                       insn = PREV_INSN (insn);
3228                     }
3229                   break;
3230
3231                 default:
3232                   break;
3233                 }
3234             }
3235
3236           /* If there are LABELS inside the split insns increment the
3237              usage count so we don't delete the label.  */
3238           if (GET_CODE (trial) == INSN)
3239             {
3240               insn = insn_last;
3241               while (insn != NULL_RTX)
3242                 {
3243                   if (GET_CODE (insn) == INSN)
3244                     mark_label_nuses (PATTERN (insn));
3245
3246                   insn = PREV_INSN (insn);
3247                 }
3248             }
3249
3250           tem = emit_insn_after_scope (seq, trial, INSN_SCOPE (trial));
3251
3252           delete_insn (trial);
3253           if (has_barrier)
3254             emit_barrier_after (tem);
3255
3256           /* Recursively call try_split for each new insn created; by the
3257              time control returns here that insn will be fully split, so
3258              set LAST and continue from the insn after the one returned.
3259              We can't use next_active_insn here since AFTER may be a note.
3260              Ignore deleted insns, which can be occur if not optimizing.  */
3261           for (tem = NEXT_INSN (before); tem != after; tem = NEXT_INSN (tem))
3262             if (! INSN_DELETED_P (tem) && INSN_P (tem))
3263               tem = try_split (PATTERN (tem), tem, 1);
3264         }
3265       /* Avoid infinite loop if the result matches the original pattern.  */
3266       else if (rtx_equal_p (PATTERN (seq), pat))
3267         return trial;
3268       else
3269         {
3270           PATTERN (trial) = PATTERN (seq);
3271           INSN_CODE (trial) = -1;
3272           try_split (PATTERN (trial), trial, last);
3273         }
3274
3275       /* Return either the first or the last insn, depending on which was
3276          requested.  */
3277       return last
3278                 ? (after ? PREV_INSN (after) : last_insn)
3279                 : NEXT_INSN (before);
3280     }
3281
3282   return trial;
3283 }
3284 \f
3285 /* Make and return an INSN rtx, initializing all its slots.
3286    Store PATTERN in the pattern slots.  */
3287
3288 rtx
3289 make_insn_raw (pattern)
3290      rtx pattern;
3291 {
3292   rtx insn;
3293
3294   insn = rtx_alloc (INSN);
3295
3296   INSN_UID (insn) = cur_insn_uid++;
3297   PATTERN (insn) = pattern;
3298   INSN_CODE (insn) = -1;
3299   LOG_LINKS (insn) = NULL;
3300   REG_NOTES (insn) = NULL;
3301   INSN_SCOPE (insn) = NULL;
3302   BLOCK_FOR_INSN (insn) = NULL;
3303
3304 #ifdef ENABLE_RTL_CHECKING
3305   if (insn
3306       && INSN_P (insn)
3307       && (returnjump_p (insn)
3308           || (GET_CODE (insn) == SET
3309               && SET_DEST (insn) == pc_rtx)))
3310     {
3311       warning ("ICE: emit_insn used where emit_jump_insn needed:\n");
3312       debug_rtx (insn);
3313     }
3314 #endif
3315
3316   return insn;
3317 }
3318
3319 /* Like `make_insn_raw' but make a JUMP_INSN instead of an insn.  */
3320
3321 static rtx
3322 make_jump_insn_raw (pattern)
3323      rtx pattern;
3324 {
3325   rtx insn;
3326
3327   insn = rtx_alloc (JUMP_INSN);
3328   INSN_UID (insn) = cur_insn_uid++;
3329
3330   PATTERN (insn) = pattern;
3331   INSN_CODE (insn) = -1;
3332   LOG_LINKS (insn) = NULL;
3333   REG_NOTES (insn) = NULL;
3334   JUMP_LABEL (insn) = NULL;
3335   INSN_SCOPE (insn) = NULL;
3336   BLOCK_FOR_INSN (insn) = NULL;
3337
3338   return insn;
3339 }
3340
3341 /* Like `make_insn_raw' but make a CALL_INSN instead of an insn.  */
3342
3343 static rtx
3344 make_call_insn_raw (pattern)
3345      rtx pattern;
3346 {
3347   rtx insn;
3348
3349   insn = rtx_alloc (CALL_INSN);
3350   INSN_UID (insn) = cur_insn_uid++;
3351
3352   PATTERN (insn) = pattern;
3353   INSN_CODE (insn) = -1;
3354   LOG_LINKS (insn) = NULL;
3355   REG_NOTES (insn) = NULL;
3356   CALL_INSN_FUNCTION_USAGE (insn) = NULL;
3357   INSN_SCOPE (insn) = NULL;
3358   BLOCK_FOR_INSN (insn) = NULL;
3359
3360   return insn;
3361 }
3362 \f
3363 /* Add INSN to the end of the doubly-linked list.
3364    INSN may be an INSN, JUMP_INSN, CALL_INSN, CODE_LABEL, BARRIER or NOTE.  */
3365
3366 void
3367 add_insn (insn)
3368      rtx insn;
3369 {
3370   PREV_INSN (insn) = last_insn;
3371   NEXT_INSN (insn) = 0;
3372
3373   if (NULL != last_insn)
3374     NEXT_INSN (last_insn) = insn;
3375
3376   if (NULL == first_insn)
3377     first_insn = insn;
3378
3379   last_insn = insn;
3380 }
3381
3382 /* Add INSN into the doubly-linked list after insn AFTER.  This and
3383    the next should be the only functions called to insert an insn once
3384    delay slots have been filled since only they know how to update a
3385    SEQUENCE.  */
3386
3387 void
3388 add_insn_after (insn, after)
3389      rtx insn, after;
3390 {
3391   rtx next = NEXT_INSN (after);
3392   basic_block bb;
3393
3394   if (optimize && INSN_DELETED_P (after))
3395     abort ();
3396
3397   NEXT_INSN (insn) = next;
3398   PREV_INSN (insn) = after;
3399
3400   if (next)
3401     {
3402       PREV_INSN (next) = insn;
3403       if (GET_CODE (next) == INSN && GET_CODE (PATTERN (next)) == SEQUENCE)
3404         PREV_INSN (XVECEXP (PATTERN (next), 0, 0)) = insn;
3405     }
3406   else if (last_insn == after)
3407     last_insn = insn;
3408   else
3409     {
3410       struct sequence_stack *stack = seq_stack;
3411       /* Scan all pending sequences too.  */
3412       for (; stack; stack = stack->next)
3413         if (after == stack->last)
3414           {
3415             stack->last = insn;
3416             break;
3417           }
3418
3419       if (stack == 0)
3420         abort ();
3421     }
3422
3423   if (GET_CODE (after) != BARRIER
3424       && GET_CODE (insn) != BARRIER
3425       && (bb = BLOCK_FOR_INSN (after)))
3426     {
3427       set_block_for_insn (insn, bb);
3428       if (INSN_P (insn))
3429         bb->flags |= BB_DIRTY;
3430       /* Should not happen as first in the BB is always
3431          either NOTE or LABEL.  */
3432       if (bb->end == after
3433           /* Avoid clobbering of structure when creating new BB.  */
3434           && GET_CODE (insn) != BARRIER
3435           && (GET_CODE (insn) != NOTE
3436               || NOTE_LINE_NUMBER (insn) != NOTE_INSN_BASIC_BLOCK))
3437         bb->end = insn;
3438     }
3439
3440   NEXT_INSN (after) = insn;
3441   if (GET_CODE (after) == INSN && GET_CODE (PATTERN (after)) == SEQUENCE)
3442     {
3443       rtx sequence = PATTERN (after);
3444       NEXT_INSN (XVECEXP (sequence, 0, XVECLEN (sequence, 0) - 1)) = insn;
3445     }
3446 }
3447
3448 /* Add INSN into the doubly-linked list before insn BEFORE.  This and
3449    the previous should be the only functions called to insert an insn once
3450    delay slots have been filled since only they know how to update a
3451    SEQUENCE.  */
3452
3453 void
3454 add_insn_before (insn, before)
3455      rtx insn, before;
3456 {
3457   rtx prev = PREV_INSN (before);
3458   basic_block bb;
3459
3460   if (optimize && INSN_DELETED_P (before))
3461     abort ();
3462
3463   PREV_INSN (insn) = prev;
3464   NEXT_INSN (insn) = before;
3465
3466   if (prev)
3467     {
3468       NEXT_INSN (prev) = insn;
3469       if (GET_CODE (prev) == INSN && GET_CODE (PATTERN (prev)) == SEQUENCE)
3470         {
3471           rtx sequence = PATTERN (prev);
3472           NEXT_INSN (XVECEXP (sequence, 0, XVECLEN (sequence, 0) - 1)) = insn;
3473         }
3474     }
3475   else if (first_insn == before)
3476     first_insn = insn;
3477   else
3478     {
3479       struct sequence_stack *stack = seq_stack;
3480       /* Scan all pending sequences too.  */
3481       for (; stack; stack = stack->next)
3482         if (before == stack->first)
3483           {
3484             stack->first = insn;
3485             break;
3486           }
3487
3488       if (stack == 0)
3489         abort ();
3490     }
3491
3492   if (GET_CODE (before) != BARRIER
3493       && GET_CODE (insn) != BARRIER
3494       && (bb = BLOCK_FOR_INSN (before)))
3495     {
3496       set_block_for_insn (insn, bb);
3497       if (INSN_P (insn))
3498         bb->flags |= BB_DIRTY;
3499       /* Should not happen as first in the BB is always
3500          either NOTE or LABEl.  */
3501       if (bb->head == insn
3502           /* Avoid clobbering of structure when creating new BB.  */
3503           && GET_CODE (insn) != BARRIER
3504           && (GET_CODE (insn) != NOTE
3505               || NOTE_LINE_NUMBER (insn) != NOTE_INSN_BASIC_BLOCK))
3506         abort ();
3507     }
3508
3509   PREV_INSN (before) = insn;
3510   if (GET_CODE (before) == INSN && GET_CODE (PATTERN (before)) == SEQUENCE)
3511     PREV_INSN (XVECEXP (PATTERN (before), 0, 0)) = insn;
3512 }
3513
3514 /* Remove an insn from its doubly-linked list.  This function knows how
3515    to handle sequences.  */
3516 void
3517 remove_insn (insn)
3518      rtx insn;
3519 {
3520   rtx next = NEXT_INSN (insn);
3521   rtx prev = PREV_INSN (insn);
3522   basic_block bb;
3523
3524   if (prev)
3525     {
3526       NEXT_INSN (prev) = next;
3527       if (GET_CODE (prev) == INSN && GET_CODE (PATTERN (prev)) == SEQUENCE)
3528         {
3529           rtx sequence = PATTERN (prev);
3530           NEXT_INSN (XVECEXP (sequence, 0, XVECLEN (sequence, 0) - 1)) = next;
3531         }
3532     }
3533   else if (first_insn == insn)
3534     first_insn = next;
3535   else
3536     {
3537       struct sequence_stack *stack = seq_stack;
3538       /* Scan all pending sequences too.  */
3539       for (; stack; stack = stack->next)
3540         if (insn == stack->first)
3541           {
3542             stack->first = next;
3543             break;
3544           }
3545
3546       if (stack == 0)
3547         abort ();
3548     }
3549
3550   if (next)
3551     {
3552       PREV_INSN (next) = prev;
3553       if (GET_CODE (next) == INSN && GET_CODE (PATTERN (next)) == SEQUENCE)
3554         PREV_INSN (XVECEXP (PATTERN (next), 0, 0)) = prev;
3555     }
3556   else if (last_insn == insn)
3557     last_insn = prev;
3558   else
3559     {
3560       struct sequence_stack *stack = seq_stack;
3561       /* Scan all pending sequences too.  */
3562       for (; stack; stack = stack->next)
3563         if (insn == stack->last)
3564           {
3565             stack->last = prev;
3566             break;
3567           }
3568
3569       if (stack == 0)
3570         abort ();
3571     }
3572   if (GET_CODE (insn) != BARRIER
3573       && (bb = BLOCK_FOR_INSN (insn)))
3574     {
3575       if (INSN_P (insn))
3576         bb->flags |= BB_DIRTY;
3577       if (bb->head == insn)
3578         {
3579           /* Never ever delete the basic block note without deleting whole
3580              basic block.  */
3581           if (GET_CODE (insn) == NOTE)
3582             abort ();
3583           bb->head = next;
3584         }
3585       if (bb->end == insn)
3586         bb->end = prev;
3587     }
3588 }
3589
3590 /* Delete all insns made since FROM.
3591    FROM becomes the new last instruction.  */
3592
3593 void
3594 delete_insns_since (from)
3595      rtx from;
3596 {
3597   if (from == 0)
3598     first_insn = 0;
3599   else
3600     NEXT_INSN (from) = 0;
3601   last_insn = from;
3602 }
3603
3604 /* This function is deprecated, please use sequences instead.
3605
3606    Move a consecutive bunch of insns to a different place in the chain.
3607    The insns to be moved are those between FROM and TO.
3608    They are moved to a new position after the insn AFTER.
3609    AFTER must not be FROM or TO or any insn in between.
3610
3611    This function does not know about SEQUENCEs and hence should not be
3612    called after delay-slot filling has been done.  */
3613
3614 void
3615 reorder_insns_nobb (from, to, after)
3616      rtx from, to, after;
3617 {
3618   /* Splice this bunch out of where it is now.  */
3619   if (PREV_INSN (from))
3620     NEXT_INSN (PREV_INSN (from)) = NEXT_INSN (to);
3621   if (NEXT_INSN (to))
3622     PREV_INSN (NEXT_INSN (to)) = PREV_INSN (from);
3623   if (last_insn == to)
3624     last_insn = PREV_INSN (from);
3625   if (first_insn == from)
3626     first_insn = NEXT_INSN (to);
3627
3628   /* Make the new neighbors point to it and it to them.  */
3629   if (NEXT_INSN (after))
3630     PREV_INSN (NEXT_INSN (after)) = to;
3631
3632   NEXT_INSN (to) = NEXT_INSN (after);
3633   PREV_INSN (from) = after;
3634   NEXT_INSN (after) = from;
3635   if (after == last_insn)
3636     last_insn = to;
3637 }
3638
3639 /* Same as function above, but take care to update BB boundaries.  */
3640 void
3641 reorder_insns (from, to, after)
3642      rtx from, to, after;
3643 {
3644   rtx prev = PREV_INSN (from);
3645   basic_block bb, bb2;
3646
3647   reorder_insns_nobb (from, to, after);
3648
3649   if (GET_CODE (after) != BARRIER
3650       && (bb = BLOCK_FOR_INSN (after)))
3651     {
3652       rtx x;
3653       bb->flags |= BB_DIRTY;
3654
3655       if (GET_CODE (from) != BARRIER
3656           && (bb2 = BLOCK_FOR_INSN (from)))
3657         {
3658           if (bb2->end == to)
3659             bb2->end = prev;
3660           bb2->flags |= BB_DIRTY;
3661         }
3662
3663       if (bb->end == after)
3664         bb->end = to;
3665
3666       for (x = from; x != NEXT_INSN (to); x = NEXT_INSN (x))
3667         set_block_for_insn (x, bb);
3668     }
3669 }
3670
3671 /* Return the line note insn preceding INSN.  */
3672
3673 static rtx
3674 find_line_note (insn)
3675      rtx insn;
3676 {
3677   if (no_line_numbers)
3678     return 0;
3679
3680   for (; insn; insn = PREV_INSN (insn))
3681     if (GET_CODE (insn) == NOTE
3682         && NOTE_LINE_NUMBER (insn) >= 0)
3683       break;
3684
3685   return insn;
3686 }
3687
3688 /* Like reorder_insns, but inserts line notes to preserve the line numbers
3689    of the moved insns when debugging.  This may insert a note between AFTER
3690    and FROM, and another one after TO.  */
3691
3692 void
3693 reorder_insns_with_line_notes (from, to, after)
3694      rtx from, to, after;
3695 {
3696   rtx from_line = find_line_note (from);
3697   rtx after_line = find_line_note (after);
3698
3699   reorder_insns (from, to, after);
3700
3701   if (from_line == after_line)
3702     return;
3703
3704   if (from_line)
3705     emit_line_note_after (NOTE_SOURCE_FILE (from_line),
3706                           NOTE_LINE_NUMBER (from_line),
3707                           after);
3708   if (after_line)
3709     emit_line_note_after (NOTE_SOURCE_FILE (after_line),
3710                           NOTE_LINE_NUMBER (after_line),
3711                           to);
3712 }
3713
3714 /* Remove unnecessary notes from the instruction stream.  */
3715
3716 void
3717 remove_unnecessary_notes ()
3718 {
3719   rtx block_stack = NULL_RTX;
3720   rtx eh_stack = NULL_RTX;
3721   rtx insn;
3722   rtx next;
3723   rtx tmp;
3724
3725   /* We must not remove the first instruction in the function because
3726      the compiler depends on the first instruction being a note.  */
3727   for (insn = NEXT_INSN (get_insns ()); insn; insn = next)
3728     {
3729       /* Remember what's next.  */
3730       next = NEXT_INSN (insn);
3731
3732       /* We're only interested in notes.  */
3733       if (GET_CODE (insn) != NOTE)
3734         continue;
3735
3736       switch (NOTE_LINE_NUMBER (insn))
3737         {
3738         case NOTE_INSN_DELETED:
3739         case NOTE_INSN_LOOP_END_TOP_COND:
3740           remove_insn (insn);
3741           break;
3742
3743         case NOTE_INSN_EH_REGION_BEG:
3744           eh_stack = alloc_INSN_LIST (insn, eh_stack);
3745           break;
3746
3747         case NOTE_INSN_EH_REGION_END:
3748           /* Too many end notes.  */
3749           if (eh_stack == NULL_RTX)
3750             abort ();
3751           /* Mismatched nesting.  */
3752           if (NOTE_EH_HANDLER (XEXP (eh_stack, 0)) != NOTE_EH_HANDLER (insn))
3753             abort ();
3754           tmp = eh_stack;
3755           eh_stack = XEXP (eh_stack, 1);
3756           free_INSN_LIST_node (tmp);
3757           break;
3758
3759         case NOTE_INSN_BLOCK_BEG:
3760           /* By now, all notes indicating lexical blocks should have
3761              NOTE_BLOCK filled in.  */
3762           if (NOTE_BLOCK (insn) == NULL_TREE)
3763             abort ();
3764           block_stack = alloc_INSN_LIST (insn, block_stack);
3765           break;
3766
3767         case NOTE_INSN_BLOCK_END:
3768           /* Too many end notes.  */
3769           if (block_stack == NULL_RTX)
3770             abort ();
3771           /* Mismatched nesting.  */
3772           if (NOTE_BLOCK (XEXP (block_stack, 0)) != NOTE_BLOCK (insn))
3773             abort ();
3774           tmp = block_stack;
3775           block_stack = XEXP (block_stack, 1);
3776           free_INSN_LIST_node (tmp);
3777
3778           /* Scan back to see if there are any non-note instructions
3779              between INSN and the beginning of this block.  If not,
3780              then there is no PC range in the generated code that will
3781              actually be in this block, so there's no point in
3782              remembering the existence of the block.  */
3783           for (tmp = PREV_INSN (insn); tmp; tmp = PREV_INSN (tmp))
3784             {
3785               /* This block contains a real instruction.  Note that we
3786                  don't include labels; if the only thing in the block
3787                  is a label, then there are still no PC values that
3788                  lie within the block.  */
3789               if (INSN_P (tmp))
3790                 break;
3791
3792               /* We're only interested in NOTEs.  */
3793               if (GET_CODE (tmp) != NOTE)
3794                 continue;
3795
3796               if (NOTE_LINE_NUMBER (tmp) == NOTE_INSN_BLOCK_BEG)
3797                 {
3798                   /* We just verified that this BLOCK matches us with
3799                      the block_stack check above.  Never delete the
3800                      BLOCK for the outermost scope of the function; we
3801                      can refer to names from that scope even if the
3802                      block notes are messed up.  */
3803                   if (! is_body_block (NOTE_BLOCK (insn))
3804                       && (*debug_hooks->ignore_block) (NOTE_BLOCK (insn)))
3805                     {
3806                       remove_insn (tmp);
3807                       remove_insn (insn);
3808                     }
3809                   break;
3810                 }
3811               else if (NOTE_LINE_NUMBER (tmp) == NOTE_INSN_BLOCK_END)
3812                 /* There's a nested block.  We need to leave the
3813                    current block in place since otherwise the debugger
3814                    wouldn't be able to show symbols from our block in
3815                    the nested block.  */
3816                 break;
3817             }
3818         }
3819     }
3820
3821   /* Too many begin notes.  */
3822   if (block_stack || eh_stack)
3823     abort ();
3824 }
3825
3826 \f
3827 /* Emit insn(s) of given code and pattern
3828    at a specified place within the doubly-linked list.
3829
3830    All of the emit_foo global entry points accept an object
3831    X which is either an insn list or a PATTERN of a single
3832    instruction.
3833
3834    There are thus a few canonical ways to generate code and
3835    emit it at a specific place in the instruction stream.  For
3836    example, consider the instruction named SPOT and the fact that
3837    we would like to emit some instructions before SPOT.  We might
3838    do it like this:
3839
3840         start_sequence ();
3841         ... emit the new instructions ...
3842         insns_head = get_insns ();
3843         end_sequence ();
3844
3845         emit_insn_before (insns_head, SPOT);
3846
3847    It used to be common to generate SEQUENCE rtl instead, but that
3848    is a relic of the past which no longer occurs.  The reason is that
3849    SEQUENCE rtl results in much fragmented RTL memory since the SEQUENCE
3850    generated would almost certainly die right after it was created.  */
3851
3852 /* Make X be output before the instruction BEFORE.  */
3853
3854 rtx
3855 emit_insn_before (x, before)
3856      rtx x, before;
3857 {
3858   rtx last = before;
3859   rtx insn;
3860
3861 #ifdef ENABLE_RTL_CHECKING
3862   if (before == NULL_RTX)
3863     abort ();
3864 #endif
3865
3866   if (x == NULL_RTX)
3867     return last;
3868
3869   switch (GET_CODE (x))
3870     {
3871     case INSN:
3872     case JUMP_INSN:
3873     case CALL_INSN:
3874     case CODE_LABEL:
3875     case BARRIER:
3876     case NOTE:
3877       insn = x;
3878       while (insn)
3879         {
3880           rtx next = NEXT_INSN (insn);
3881           add_insn_before (insn, before);
3882           last = insn;
3883           insn = next;
3884         }
3885       break;
3886
3887 #ifdef ENABLE_RTL_CHECKING
3888     case SEQUENCE:
3889       abort ();
3890       break;
3891 #endif
3892
3893     default:
3894       last = make_insn_raw (x);
3895       add_insn_before (last, before);
3896       break;
3897     }
3898
3899   return last;
3900 }
3901
3902 /* Make an instruction with body X and code JUMP_INSN
3903    and output it before the instruction BEFORE.  */
3904
3905 rtx
3906 emit_jump_insn_before (x, before)
3907      rtx x, before;
3908 {
3909   rtx insn, last;
3910
3911 #ifdef ENABLE_RTL_CHECKING
3912   if (before == NULL_RTX)
3913     abort ();
3914 #endif
3915
3916   switch (GET_CODE (x))
3917     {
3918     case INSN:
3919     case JUMP_INSN:
3920     case CALL_INSN:
3921     case CODE_LABEL:
3922     case BARRIER:
3923     case NOTE:
3924       insn = x;
3925       while (insn)
3926         {
3927           rtx next = NEXT_INSN (insn);
3928           add_insn_before (insn, before);
3929           last = insn;
3930           insn = next;
3931         }
3932       break;
3933
3934 #ifdef ENABLE_RTL_CHECKING
3935     case SEQUENCE:
3936       abort ();
3937       break;
3938 #endif
3939
3940     default:
3941       last = make_jump_insn_raw (x);
3942       add_insn_before (last, before);
3943       break;
3944     }
3945
3946   return last;
3947 }
3948
3949 /* Make an instruction with body X and code CALL_INSN
3950    and output it before the instruction BEFORE.  */
3951
3952 rtx
3953 emit_call_insn_before (x, before)
3954      rtx x, before;
3955 {
3956   rtx last, insn;
3957
3958 #ifdef ENABLE_RTL_CHECKING
3959   if (before == NULL_RTX)
3960     abort ();
3961 #endif
3962
3963   switch (GET_CODE (x))
3964     {
3965     case INSN:
3966     case JUMP_INSN:
3967     case CALL_INSN:
3968     case CODE_LABEL:
3969     case BARRIER:
3970     case NOTE:
3971       insn = x;
3972       while (insn)
3973         {
3974           rtx next = NEXT_INSN (insn);
3975           add_insn_before (insn, before);
3976           last = insn;
3977           insn = next;
3978         }
3979       break;
3980
3981 #ifdef ENABLE_RTL_CHECKING
3982     case SEQUENCE:
3983       abort ();
3984       break;
3985 #endif
3986
3987     default:
3988       last = make_call_insn_raw (x);
3989       add_insn_before (last, before);
3990       break;
3991     }
3992
3993   return last;
3994 }
3995
3996 /* Make an insn of code BARRIER
3997    and output it before the insn BEFORE.  */
3998
3999 rtx
4000 emit_barrier_before (before)
4001      rtx before;
4002 {
4003   rtx insn = rtx_alloc (BARRIER);
4004
4005   INSN_UID (insn) = cur_insn_uid++;
4006
4007   add_insn_before (insn, before);
4008   return insn;
4009 }
4010
4011 /* Emit the label LABEL before the insn BEFORE.  */
4012
4013 rtx
4014 emit_label_before (label, before)
4015      rtx label, before;
4016 {
4017   /* This can be called twice for the same label as a result of the
4018      confusion that follows a syntax error!  So make it harmless.  */
4019   if (INSN_UID (label) == 0)
4020     {
4021       INSN_UID (label) = cur_insn_uid++;
4022       add_insn_before (label, before);
4023     }
4024
4025   return label;
4026 }
4027
4028 /* Emit a note of subtype SUBTYPE before the insn BEFORE.  */
4029
4030 rtx
4031 emit_note_before (subtype, before)
4032      int subtype;
4033      rtx before;
4034 {
4035   rtx note = rtx_alloc (NOTE);
4036   INSN_UID (note) = cur_insn_uid++;
4037   NOTE_SOURCE_FILE (note) = 0;
4038   NOTE_LINE_NUMBER (note) = subtype;
4039   BLOCK_FOR_INSN (note) = NULL;
4040
4041   add_insn_before (note, before);
4042   return note;
4043 }
4044 \f
4045 /* Helper for emit_insn_after, handles lists of instructions
4046    efficiently.  */
4047
4048 static rtx emit_insn_after_1 PARAMS ((rtx, rtx));
4049
4050 static rtx
4051 emit_insn_after_1 (first, after)
4052      rtx first, after;
4053 {
4054   rtx last;
4055   rtx after_after;
4056   basic_block bb;
4057
4058   if (GET_CODE (after) != BARRIER
4059       && (bb = BLOCK_FOR_INSN (after)))
4060     {
4061       bb->flags |= BB_DIRTY;
4062       for (last = first; NEXT_INSN (last); last = NEXT_INSN (last))
4063         if (GET_CODE (last) != BARRIER)
4064           set_block_for_insn (last, bb);
4065       if (GET_CODE (last) != BARRIER)
4066         set_block_for_insn (last, bb);
4067       if (bb->end == after)
4068         bb->end = last;
4069     }
4070   else
4071     for (last = first; NEXT_INSN (last); last = NEXT_INSN (last))
4072       continue;
4073
4074   after_after = NEXT_INSN (after);
4075
4076   NEXT_INSN (after) = first;
4077   PREV_INSN (first) = after;
4078   NEXT_INSN (last) = after_after;
4079   if (after_after)
4080     PREV_INSN (after_after) = last;
4081
4082   if (after == last_insn)
4083     last_insn = last;
4084   return last;
4085 }
4086
4087 /* Make X be output after the insn AFTER.  */
4088
4089 rtx
4090 emit_insn_after (x, after)
4091      rtx x, after;
4092 {
4093   rtx last = after;
4094
4095 #ifdef ENABLE_RTL_CHECKING
4096   if (after == NULL_RTX)
4097     abort ();
4098 #endif
4099
4100   if (x == NULL_RTX)
4101     return last;
4102
4103   switch (GET_CODE (x))
4104     {
4105     case INSN:
4106     case JUMP_INSN:
4107     case CALL_INSN:
4108     case CODE_LABEL:
4109     case BARRIER:
4110     case NOTE:
4111       last = emit_insn_after_1 (x, after);
4112       break;
4113
4114 #ifdef ENABLE_RTL_CHECKING
4115     case SEQUENCE:
4116       abort ();
4117       break;
4118 #endif
4119
4120     default:
4121       last = make_insn_raw (x);
4122       add_insn_after (last, after);
4123       break;
4124     }
4125
4126   return last;
4127 }
4128
4129 /* Similar to emit_insn_after, except that line notes are to be inserted so
4130    as to act as if this insn were at FROM.  */
4131
4132 void
4133 emit_insn_after_with_line_notes (x, after, from)
4134      rtx x, after, from;
4135 {
4136   rtx from_line = find_line_note (from);
4137   rtx after_line = find_line_note (after);
4138   rtx insn = emit_insn_after (x, after);
4139
4140   if (from_line)
4141     emit_line_note_after (NOTE_SOURCE_FILE (from_line),
4142                           NOTE_LINE_NUMBER (from_line),
4143                           after);
4144
4145   if (after_line)
4146     emit_line_note_after (NOTE_SOURCE_FILE (after_line),
4147                           NOTE_LINE_NUMBER (after_line),
4148                           insn);
4149 }
4150
4151 /* Make an insn of code JUMP_INSN with body X
4152    and output it after the insn AFTER.  */
4153
4154 rtx
4155 emit_jump_insn_after (x, after)
4156      rtx x, after;
4157 {
4158   rtx last;
4159
4160 #ifdef ENABLE_RTL_CHECKING
4161   if (after == NULL_RTX)
4162     abort ();
4163 #endif
4164
4165   switch (GET_CODE (x))
4166     {
4167     case INSN:
4168     case JUMP_INSN:
4169     case CALL_INSN:
4170     case CODE_LABEL:
4171     case BARRIER:
4172     case NOTE:
4173       last = emit_insn_after_1 (x, after);
4174       break;
4175
4176 #ifdef ENABLE_RTL_CHECKING
4177     case SEQUENCE:
4178       abort ();
4179       break;
4180 #endif
4181
4182     default:
4183       last = make_jump_insn_raw (x);
4184       add_insn_after (last, after);
4185       break;
4186     }
4187
4188   return last;
4189 }
4190
4191 /* Make an instruction with body X and code CALL_INSN
4192    and output it after the instruction AFTER.  */
4193
4194 rtx
4195 emit_call_insn_after (x, after)
4196      rtx x, after;
4197 {
4198   rtx last;
4199
4200 #ifdef ENABLE_RTL_CHECKING
4201   if (after == NULL_RTX)
4202     abort ();
4203 #endif
4204
4205   switch (GET_CODE (x))
4206     {
4207     case INSN:
4208     case JUMP_INSN:
4209     case CALL_INSN:
4210     case CODE_LABEL:
4211     case BARRIER:
4212     case NOTE:
4213       last = emit_insn_after_1 (x, after);
4214       break;
4215
4216 #ifdef ENABLE_RTL_CHECKING
4217     case SEQUENCE:
4218       abort ();
4219       break;
4220 #endif
4221
4222     default:
4223       last = make_call_insn_raw (x);
4224       add_insn_after (last, after);
4225       break;
4226     }
4227
4228   return last;
4229 }
4230
4231 /* Make an insn of code BARRIER
4232    and output it after the insn AFTER.  */
4233
4234 rtx
4235 emit_barrier_after (after)
4236      rtx after;
4237 {
4238   rtx insn = rtx_alloc (BARRIER);
4239
4240   INSN_UID (insn) = cur_insn_uid++;
4241
4242   add_insn_after (insn, after);
4243   return insn;
4244 }
4245
4246 /* Emit the label LABEL after the insn AFTER.  */
4247
4248 rtx
4249 emit_label_after (label, after)
4250      rtx label, after;
4251 {
4252   /* This can be called twice for the same label
4253      as a result of the confusion that follows a syntax error!
4254      So make it harmless.  */
4255   if (INSN_UID (label) == 0)
4256     {
4257       INSN_UID (label) = cur_insn_uid++;
4258       add_insn_after (label, after);
4259     }
4260
4261   return label;
4262 }
4263
4264 /* Emit a note of subtype SUBTYPE after the insn AFTER.  */
4265
4266 rtx
4267 emit_note_after (subtype, after)
4268      int subtype;
4269      rtx after;
4270 {
4271   rtx note = rtx_alloc (NOTE);
4272   INSN_UID (note) = cur_insn_uid++;
4273   NOTE_SOURCE_FILE (note) = 0;
4274   NOTE_LINE_NUMBER (note) = subtype;
4275   BLOCK_FOR_INSN (note) = NULL;
4276   add_insn_after (note, after);
4277   return note;
4278 }
4279
4280 /* Emit a line note for FILE and LINE after the insn AFTER.  */
4281
4282 rtx
4283 emit_line_note_after (file, line, after)
4284      const char *file;
4285      int line;
4286      rtx after;
4287 {
4288   rtx note;
4289
4290   if (no_line_numbers && line > 0)
4291     {
4292       cur_insn_uid++;
4293       return 0;
4294     }
4295
4296   note = rtx_alloc (NOTE);
4297   INSN_UID (note) = cur_insn_uid++;
4298   NOTE_SOURCE_FILE (note) = file;
4299   NOTE_LINE_NUMBER (note) = line;
4300   BLOCK_FOR_INSN (note) = NULL;
4301   add_insn_after (note, after);
4302   return note;
4303 }
4304 \f
4305 /* Like emit_insn_after, but set INSN_SCOPE according to SCOPE.  */
4306 rtx
4307 emit_insn_after_scope (pattern, after, scope)
4308      rtx pattern, after;
4309      tree scope;
4310 {
4311   rtx last = emit_insn_after (pattern, after);
4312
4313   after = NEXT_INSN (after);
4314   while (1)
4315     {
4316       if (active_insn_p (after))
4317         INSN_SCOPE (after) = scope;
4318       if (after == last)
4319         break;
4320       after = NEXT_INSN (after);
4321     }
4322   return last;
4323 }
4324
4325 /* Like emit_jump_insn_after, but set INSN_SCOPE according to SCOPE.  */
4326 rtx
4327 emit_jump_insn_after_scope (pattern, after, scope)
4328      rtx pattern, after;
4329      tree scope;
4330 {
4331   rtx last = emit_jump_insn_after (pattern, after);
4332
4333   after = NEXT_INSN (after);
4334   while (1)
4335     {
4336       if (active_insn_p (after))
4337         INSN_SCOPE (after) = scope;
4338       if (after == last)
4339         break;
4340       after = NEXT_INSN (after);
4341     }
4342   return last;
4343 }
4344
4345 /* Like emit_call_insn_after, but set INSN_SCOPE according to SCOPE.  */
4346 rtx
4347 emit_call_insn_after_scope (pattern, after, scope)
4348      rtx pattern, after;
4349      tree scope;
4350 {
4351   rtx last = emit_call_insn_after (pattern, after);
4352
4353   after = NEXT_INSN (after);
4354   while (1)
4355     {
4356       if (active_insn_p (after))
4357         INSN_SCOPE (after) = scope;
4358       if (after == last)
4359         break;
4360       after = NEXT_INSN (after);
4361     }
4362   return last;
4363 }
4364
4365 /* Like emit_insn_before, but set INSN_SCOPE according to SCOPE.  */
4366 rtx
4367 emit_insn_before_scope (pattern, before, scope)
4368      rtx pattern, before;
4369      tree scope;
4370 {
4371   rtx first = PREV_INSN (before);
4372   rtx last = emit_insn_before (pattern, before);
4373
4374   first = NEXT_INSN (first);
4375   while (1)
4376     {
4377       if (active_insn_p (first))
4378         INSN_SCOPE (first) = scope;
4379       if (first == last)
4380         break;
4381       first = NEXT_INSN (first);
4382     }
4383   return last;
4384 }
4385 \f
4386 /* Take X and emit it at the end of the doubly-linked
4387    INSN list.
4388
4389    Returns the last insn emitted.  */
4390
4391 rtx
4392 emit_insn (x)
4393      rtx x;
4394 {
4395   rtx last = last_insn;
4396   rtx insn;
4397
4398   if (x == NULL_RTX)
4399     return last;
4400
4401   switch (GET_CODE (x))
4402     {
4403     case INSN:
4404     case JUMP_INSN:
4405     case CALL_INSN:
4406     case CODE_LABEL:
4407     case BARRIER:
4408     case NOTE:
4409       insn = x;
4410       while (insn)
4411         {
4412           rtx next = NEXT_INSN (insn);
4413           add_insn (insn);
4414           last = insn;
4415           insn = next;
4416         }
4417       break;
4418
4419 #ifdef ENABLE_RTL_CHECKING
4420     case SEQUENCE:
4421       abort ();
4422       break;
4423 #endif
4424
4425     default:
4426       last = make_insn_raw (x);
4427       add_insn (last);
4428       break;
4429     }
4430
4431   return last;
4432 }
4433
4434 /* Make an insn of code JUMP_INSN with pattern X
4435    and add it to the end of the doubly-linked list.  */
4436
4437 rtx
4438 emit_jump_insn (x)
4439      rtx x;
4440 {
4441   rtx last, insn;
4442
4443   switch (GET_CODE (x))
4444     {
4445     case INSN:
4446     case JUMP_INSN:
4447     case CALL_INSN:
4448     case CODE_LABEL:
4449     case BARRIER:
4450     case NOTE:
4451       insn = x;
4452       while (insn)
4453         {
4454           rtx next = NEXT_INSN (insn);
4455           add_insn (insn);
4456           last = insn;
4457           insn = next;
4458         }
4459       break;
4460
4461 #ifdef ENABLE_RTL_CHECKING
4462     case SEQUENCE:
4463       abort ();
4464       break;
4465 #endif
4466
4467     default:
4468       last = make_jump_insn_raw (x);
4469       add_insn (last);
4470       break;
4471     }
4472
4473   return last;
4474 }
4475
4476 /* Make an insn of code CALL_INSN with pattern X
4477    and add it to the end of the doubly-linked list.  */
4478
4479 rtx
4480 emit_call_insn (x)
4481      rtx x;
4482 {
4483   rtx insn;
4484
4485   switch (GET_CODE (x))
4486     {
4487     case INSN:
4488     case JUMP_INSN:
4489     case CALL_INSN:
4490     case CODE_LABEL:
4491     case BARRIER:
4492     case NOTE:
4493       insn = emit_insn (x);
4494       break;
4495
4496 #ifdef ENABLE_RTL_CHECKING
4497     case SEQUENCE:
4498       abort ();
4499       break;
4500 #endif
4501
4502     default:
4503       insn = make_call_insn_raw (x);
4504       add_insn (insn);
4505       break;
4506     }
4507
4508   return insn;
4509 }
4510
4511 /* Add the label LABEL to the end of the doubly-linked list.  */
4512
4513 rtx
4514 emit_label (label)
4515      rtx label;
4516 {
4517   /* This can be called twice for the same label
4518      as a result of the confusion that follows a syntax error!
4519      So make it harmless.  */
4520   if (INSN_UID (label) == 0)
4521     {
4522       INSN_UID (label) = cur_insn_uid++;
4523       add_insn (label);
4524     }
4525   return label;
4526 }
4527
4528 /* Make an insn of code BARRIER
4529    and add it to the end of the doubly-linked list.  */
4530
4531 rtx
4532 emit_barrier ()
4533 {
4534   rtx barrier = rtx_alloc (BARRIER);
4535   INSN_UID (barrier) = cur_insn_uid++;
4536   add_insn (barrier);
4537   return barrier;
4538 }
4539
4540 /* Make an insn of code NOTE
4541    with data-fields specified by FILE and LINE
4542    and add it to the end of the doubly-linked list,
4543    but only if line-numbers are desired for debugging info.  */
4544
4545 rtx
4546 emit_line_note (file, line)
4547      const char *file;
4548      int line;
4549 {
4550   set_file_and_line_for_stmt (file, line);
4551
4552 #if 0
4553   if (no_line_numbers)
4554     return 0;
4555 #endif
4556
4557   return emit_note (file, line);
4558 }
4559
4560 /* Make an insn of code NOTE
4561    with data-fields specified by FILE and LINE
4562    and add it to the end of the doubly-linked list.
4563    If it is a line-number NOTE, omit it if it matches the previous one.  */
4564
4565 rtx
4566 emit_note (file, line)
4567      const char *file;
4568      int line;
4569 {
4570   rtx note;
4571
4572   if (line > 0)
4573     {
4574       if (file && last_filename && !strcmp (file, last_filename)
4575           && line == last_linenum)
4576         return 0;
4577       last_filename = file;
4578       last_linenum = line;
4579     }
4580
4581   if (no_line_numbers && line > 0)
4582     {
4583       cur_insn_uid++;
4584       return 0;
4585     }
4586
4587   note = rtx_alloc (NOTE);
4588   INSN_UID (note) = cur_insn_uid++;
4589   NOTE_SOURCE_FILE (note) = file;
4590   NOTE_LINE_NUMBER (note) = line;
4591   BLOCK_FOR_INSN (note) = NULL;
4592   add_insn (note);
4593   return note;
4594 }
4595
4596 /* Emit a NOTE, and don't omit it even if LINE is the previous note.  */
4597
4598 rtx
4599 emit_line_note_force (file, line)
4600      const char *file;
4601      int line;
4602 {
4603   last_linenum = -1;
4604   return emit_line_note (file, line);
4605 }
4606
4607 /* Cause next statement to emit a line note even if the line number
4608    has not changed.  This is used at the beginning of a function.  */
4609
4610 void
4611 force_next_line_note ()
4612 {
4613   last_linenum = -1;
4614 }
4615
4616 /* Place a note of KIND on insn INSN with DATUM as the datum. If a
4617    note of this type already exists, remove it first.  */
4618
4619 rtx
4620 set_unique_reg_note (insn, kind, datum)
4621      rtx insn;
4622      enum reg_note kind;
4623      rtx datum;
4624 {
4625   rtx note = find_reg_note (insn, kind, NULL_RTX);
4626
4627   switch (kind)
4628     {
4629     case REG_EQUAL:
4630     case REG_EQUIV:
4631       /* Don't add REG_EQUAL/REG_EQUIV notes if the insn
4632          has multiple sets (some callers assume single_set
4633          means the insn only has one set, when in fact it
4634          means the insn only has one * useful * set).  */
4635       if (GET_CODE (PATTERN (insn)) == PARALLEL && multiple_sets (insn))
4636         {
4637           if (note)
4638             abort ();
4639           return NULL_RTX;
4640         }
4641
4642       /* Don't add ASM_OPERAND REG_EQUAL/REG_EQUIV notes.
4643          It serves no useful purpose and breaks eliminate_regs.  */
4644       if (GET_CODE (datum) == ASM_OPERANDS)
4645         return NULL_RTX;
4646       break;
4647
4648     default:
4649       break;
4650     }
4651
4652   if (note)
4653     {
4654       XEXP (note, 0) = datum;
4655       return note;
4656     }
4657
4658   REG_NOTES (insn) = gen_rtx_EXPR_LIST (kind, datum, REG_NOTES (insn));
4659   return REG_NOTES (insn);
4660 }
4661 \f
4662 /* Return an indication of which type of insn should have X as a body.
4663    The value is CODE_LABEL, INSN, CALL_INSN or JUMP_INSN.  */
4664
4665 enum rtx_code
4666 classify_insn (x)
4667      rtx x;
4668 {
4669   if (GET_CODE (x) == CODE_LABEL)
4670     return CODE_LABEL;
4671   if (GET_CODE (x) == CALL)
4672     return CALL_INSN;
4673   if (GET_CODE (x) == RETURN)
4674     return JUMP_INSN;
4675   if (GET_CODE (x) == SET)
4676     {
4677       if (SET_DEST (x) == pc_rtx)
4678         return JUMP_INSN;
4679       else if (GET_CODE (SET_SRC (x)) == CALL)
4680         return CALL_INSN;
4681       else
4682         return INSN;
4683     }
4684   if (GET_CODE (x) == PARALLEL)
4685     {
4686       int j;
4687       for (j = XVECLEN (x, 0) - 1; j >= 0; j--)
4688         if (GET_CODE (XVECEXP (x, 0, j)) == CALL)
4689           return CALL_INSN;
4690         else if (GET_CODE (XVECEXP (x, 0, j)) == SET
4691                  && SET_DEST (XVECEXP (x, 0, j)) == pc_rtx)
4692           return JUMP_INSN;
4693         else if (GET_CODE (XVECEXP (x, 0, j)) == SET
4694                  && GET_CODE (SET_SRC (XVECEXP (x, 0, j))) == CALL)
4695           return CALL_INSN;
4696     }
4697   return INSN;
4698 }
4699
4700 /* Emit the rtl pattern X as an appropriate kind of insn.
4701    If X is a label, it is simply added into the insn chain.  */
4702
4703 rtx
4704 emit (x)
4705      rtx x;
4706 {
4707   enum rtx_code code = classify_insn (x);
4708
4709   if (code == CODE_LABEL)
4710     return emit_label (x);
4711   else if (code == INSN)
4712     return emit_insn (x);
4713   else if (code == JUMP_INSN)
4714     {
4715       rtx insn = emit_jump_insn (x);
4716       if (any_uncondjump_p (insn) || GET_CODE (x) == RETURN)
4717         return emit_barrier ();
4718       return insn;
4719     }
4720   else if (code == CALL_INSN)
4721     return emit_call_insn (x);
4722   else
4723     abort ();
4724 }
4725 \f
4726 /* Space for free sequence stack entries.  */
4727 static GTY ((deletable (""))) struct sequence_stack *free_sequence_stack;
4728
4729 /* Begin emitting insns to a sequence which can be packaged in an
4730    RTL_EXPR.  If this sequence will contain something that might cause
4731    the compiler to pop arguments to function calls (because those
4732    pops have previously been deferred; see INHIBIT_DEFER_POP for more
4733    details), use do_pending_stack_adjust before calling this function.
4734    That will ensure that the deferred pops are not accidentally
4735    emitted in the middle of this sequence.  */
4736
4737 void
4738 start_sequence ()
4739 {
4740   struct sequence_stack *tem;
4741
4742   if (free_sequence_stack != NULL)
4743     {
4744       tem = free_sequence_stack;
4745       free_sequence_stack = tem->next;
4746     }
4747   else
4748     tem = (struct sequence_stack *) ggc_alloc (sizeof (struct sequence_stack));
4749
4750   tem->next = seq_stack;
4751   tem->first = first_insn;
4752   tem->last = last_insn;
4753   tem->sequence_rtl_expr = seq_rtl_expr;
4754
4755   seq_stack = tem;
4756
4757   first_insn = 0;
4758   last_insn = 0;
4759 }
4760
4761 /* Similarly, but indicate that this sequence will be placed in T, an
4762    RTL_EXPR.  See the documentation for start_sequence for more
4763    information about how to use this function.  */
4764
4765 void
4766 start_sequence_for_rtl_expr (t)
4767      tree t;
4768 {
4769   start_sequence ();
4770
4771   seq_rtl_expr = t;
4772 }
4773
4774 /* Set up the insn chain starting with FIRST as the current sequence,
4775    saving the previously current one.  See the documentation for
4776    start_sequence for more information about how to use this function.  */
4777
4778 void
4779 push_to_sequence (first)
4780      rtx first;
4781 {
4782   rtx last;
4783
4784   start_sequence ();
4785
4786   for (last = first; last && NEXT_INSN (last); last = NEXT_INSN (last));
4787
4788   first_insn = first;
4789   last_insn = last;
4790 }
4791
4792 /* Set up the insn chain from a chain stort in FIRST to LAST.  */
4793
4794 void
4795 push_to_full_sequence (first, last)
4796      rtx first, last;
4797 {
4798   start_sequence ();
4799   first_insn = first;
4800   last_insn = last;
4801   /* We really should have the end of the insn chain here.  */
4802   if (last && NEXT_INSN (last))
4803     abort ();
4804 }
4805
4806 /* Set up the outer-level insn chain
4807    as the current sequence, saving the previously current one.  */
4808
4809 void
4810 push_topmost_sequence ()
4811 {
4812   struct sequence_stack *stack, *top = NULL;
4813
4814   start_sequence ();
4815
4816   for (stack = seq_stack; stack; stack = stack->next)
4817     top = stack;
4818
4819   first_insn = top->first;
4820   last_insn = top->last;
4821   seq_rtl_expr = top->sequence_rtl_expr;
4822 }
4823
4824 /* After emitting to the outer-level insn chain, update the outer-level
4825    insn chain, and restore the previous saved state.  */
4826
4827 void
4828 pop_topmost_sequence ()
4829 {
4830   struct sequence_stack *stack, *top = NULL;
4831
4832   for (stack = seq_stack; stack; stack = stack->next)
4833     top = stack;
4834
4835   top->first = first_insn;
4836   top->last = last_insn;
4837   /* ??? Why don't we save seq_rtl_expr here?  */
4838
4839   end_sequence ();
4840 }
4841
4842 /* After emitting to a sequence, restore previous saved state.
4843
4844    To get the contents of the sequence just made, you must call
4845    `get_insns' *before* calling here.
4846
4847    If the compiler might have deferred popping arguments while
4848    generating this sequence, and this sequence will not be immediately
4849    inserted into the instruction stream, use do_pending_stack_adjust
4850    before calling get_insns.  That will ensure that the deferred
4851    pops are inserted into this sequence, and not into some random
4852    location in the instruction stream.  See INHIBIT_DEFER_POP for more
4853    information about deferred popping of arguments.  */
4854
4855 void
4856 end_sequence ()
4857 {
4858   struct sequence_stack *tem = seq_stack;
4859
4860   first_insn = tem->first;
4861   last_insn = tem->last;
4862   seq_rtl_expr = tem->sequence_rtl_expr;
4863   seq_stack = tem->next;
4864
4865   memset (tem, 0, sizeof (*tem));
4866   tem->next = free_sequence_stack;
4867   free_sequence_stack = tem;
4868 }
4869
4870 /* This works like end_sequence, but records the old sequence in FIRST
4871    and LAST.  */
4872
4873 void
4874 end_full_sequence (first, last)
4875      rtx *first, *last;
4876 {
4877   *first = first_insn;
4878   *last = last_insn;
4879   end_sequence ();
4880 }
4881
4882 /* Return 1 if currently emitting into a sequence.  */
4883
4884 int
4885 in_sequence_p ()
4886 {
4887   return seq_stack != 0;
4888 }
4889 \f
4890 /* Put the various virtual registers into REGNO_REG_RTX.  */
4891
4892 void
4893 init_virtual_regs (es)
4894      struct emit_status *es;
4895 {
4896   rtx *ptr = es->x_regno_reg_rtx;
4897   ptr[VIRTUAL_INCOMING_ARGS_REGNUM] = virtual_incoming_args_rtx;
4898   ptr[VIRTUAL_STACK_VARS_REGNUM] = virtual_stack_vars_rtx;
4899   ptr[VIRTUAL_STACK_DYNAMIC_REGNUM] = virtual_stack_dynamic_rtx;
4900   ptr[VIRTUAL_OUTGOING_ARGS_REGNUM] = virtual_outgoing_args_rtx;
4901   ptr[VIRTUAL_CFA_REGNUM] = virtual_cfa_rtx;
4902 }
4903
4904 \f
4905 /* Used by copy_insn_1 to avoid copying SCRATCHes more than once.  */
4906 static rtx copy_insn_scratch_in[MAX_RECOG_OPERANDS];
4907 static rtx copy_insn_scratch_out[MAX_RECOG_OPERANDS];
4908 static int copy_insn_n_scratches;
4909
4910 /* When an insn is being copied by copy_insn_1, this is nonzero if we have
4911    copied an ASM_OPERANDS.
4912    In that case, it is the original input-operand vector.  */
4913 static rtvec orig_asm_operands_vector;
4914
4915 /* When an insn is being copied by copy_insn_1, this is nonzero if we have
4916    copied an ASM_OPERANDS.
4917    In that case, it is the copied input-operand vector.  */
4918 static rtvec copy_asm_operands_vector;
4919
4920 /* Likewise for the constraints vector.  */
4921 static rtvec orig_asm_constraints_vector;
4922 static rtvec copy_asm_constraints_vector;
4923
4924 /* Recursively create a new copy of an rtx for copy_insn.
4925    This function differs from copy_rtx in that it handles SCRATCHes and
4926    ASM_OPERANDs properly.
4927    Normally, this function is not used directly; use copy_insn as front end.
4928    However, you could first copy an insn pattern with copy_insn and then use
4929    this function afterwards to properly copy any REG_NOTEs containing
4930    SCRATCHes.  */
4931
4932 rtx
4933 copy_insn_1 (orig)
4934      rtx orig;
4935 {
4936   rtx copy;
4937   int i, j;
4938   RTX_CODE code;
4939   const char *format_ptr;
4940
4941   code = GET_CODE (orig);
4942
4943   switch (code)
4944     {
4945     case REG:
4946     case QUEUED:
4947     case CONST_INT:
4948     case CONST_DOUBLE:
4949     case CONST_VECTOR:
4950     case SYMBOL_REF:
4951     case CODE_LABEL:
4952     case PC:
4953     case CC0:
4954     case ADDRESSOF:
4955       return orig;
4956
4957     case SCRATCH:
4958       for (i = 0; i < copy_insn_n_scratches; i++)
4959         if (copy_insn_scratch_in[i] == orig)
4960           return copy_insn_scratch_out[i];
4961       break;
4962
4963     case CONST:
4964       /* CONST can be shared if it contains a SYMBOL_REF.  If it contains
4965          a LABEL_REF, it isn't sharable.  */
4966       if (GET_CODE (XEXP (orig, 0)) == PLUS
4967           && GET_CODE (XEXP (XEXP (orig, 0), 0)) == SYMBOL_REF
4968           && GET_CODE (XEXP (XEXP (orig, 0), 1)) == CONST_INT)
4969         return orig;
4970       break;
4971
4972       /* A MEM with a constant address is not sharable.  The problem is that
4973          the constant address may need to be reloaded.  If the mem is shared,
4974          then reloading one copy of this mem will cause all copies to appear
4975          to have been reloaded.  */
4976
4977     default:
4978       break;
4979     }
4980
4981   copy = rtx_alloc (code);
4982
4983   /* Copy the various flags, and other information.  We assume that
4984      all fields need copying, and then clear the fields that should
4985      not be copied.  That is the sensible default behavior, and forces
4986      us to explicitly document why we are *not* copying a flag.  */
4987   memcpy (copy, orig, sizeof (struct rtx_def) - sizeof (rtunion));
4988
4989   /* We do not copy the USED flag, which is used as a mark bit during
4990      walks over the RTL.  */
4991   RTX_FLAG (copy, used) = 0;
4992
4993   /* We do not copy JUMP, CALL, or FRAME_RELATED for INSNs.  */
4994   if (GET_RTX_CLASS (code) == 'i')
4995     {
4996       RTX_FLAG (copy, jump) = 0;
4997       RTX_FLAG (copy, call) = 0;
4998       RTX_FLAG (copy, frame_related) = 0;
4999     }
5000
5001   format_ptr = GET_RTX_FORMAT (GET_CODE (copy));
5002
5003   for (i = 0; i < GET_RTX_LENGTH (GET_CODE (copy)); i++)
5004     {
5005       copy->fld[i] = orig->fld[i];
5006       switch (*format_ptr++)
5007         {
5008         case 'e':
5009           if (XEXP (orig, i) != NULL)
5010             XEXP (copy, i) = copy_insn_1 (XEXP (orig, i));
5011           break;
5012
5013         case 'E':
5014         case 'V':
5015           if (XVEC (orig, i) == orig_asm_constraints_vector)
5016             XVEC (copy, i) = copy_asm_constraints_vector;
5017           else if (XVEC (orig, i) == orig_asm_operands_vector)
5018             XVEC (copy, i) = copy_asm_operands_vector;
5019           else if (XVEC (orig, i) != NULL)
5020             {
5021               XVEC (copy, i) = rtvec_alloc (XVECLEN (orig, i));
5022               for (j = 0; j < XVECLEN (copy, i); j++)
5023                 XVECEXP (copy, i, j) = copy_insn_1 (XVECEXP (orig, i, j));
5024             }
5025           break;
5026
5027         case 't':
5028         case 'w':
5029         case 'i':
5030         case 's':
5031         case 'S':
5032         case 'u':
5033         case '0':
5034           /* These are left unchanged.  */
5035           break;
5036
5037         default:
5038           abort ();
5039         }
5040     }
5041
5042   if (code == SCRATCH)
5043     {
5044       i = copy_insn_n_scratches++;
5045       if (i >= MAX_RECOG_OPERANDS)
5046         abort ();
5047       copy_insn_scratch_in[i] = orig;
5048       copy_insn_scratch_out[i] = copy;
5049     }
5050   else if (code == ASM_OPERANDS)
5051     {
5052       orig_asm_operands_vector = ASM_OPERANDS_INPUT_VEC (orig);
5053       copy_asm_operands_vector = ASM_OPERANDS_INPUT_VEC (copy);
5054       orig_asm_constraints_vector = ASM_OPERANDS_INPUT_CONSTRAINT_VEC (orig);
5055       copy_asm_constraints_vector = ASM_OPERANDS_INPUT_CONSTRAINT_VEC (copy);
5056     }
5057
5058   return copy;
5059 }
5060
5061 /* Create a new copy of an rtx.
5062    This function differs from copy_rtx in that it handles SCRATCHes and
5063    ASM_OPERANDs properly.
5064    INSN doesn't really have to be a full INSN; it could be just the
5065    pattern.  */
5066 rtx
5067 copy_insn (insn)
5068      rtx insn;
5069 {
5070   copy_insn_n_scratches = 0;
5071   orig_asm_operands_vector = 0;
5072   orig_asm_constraints_vector = 0;
5073   copy_asm_operands_vector = 0;
5074   copy_asm_constraints_vector = 0;
5075   return copy_insn_1 (insn);
5076 }
5077
5078 /* Initialize data structures and variables in this file
5079    before generating rtl for each function.  */
5080
5081 void
5082 init_emit ()
5083 {
5084   struct function *f = cfun;
5085
5086   f->emit = (struct emit_status *) ggc_alloc (sizeof (struct emit_status));
5087   first_insn = NULL;
5088   last_insn = NULL;
5089   seq_rtl_expr = NULL;
5090   cur_insn_uid = 1;
5091   reg_rtx_no = LAST_VIRTUAL_REGISTER + 1;
5092   last_linenum = 0;
5093   last_filename = 0;
5094   first_label_num = label_num;
5095   last_label_num = 0;
5096   seq_stack = NULL;
5097
5098   /* Init the tables that describe all the pseudo regs.  */
5099
5100   f->emit->regno_pointer_align_length = LAST_VIRTUAL_REGISTER + 101;
5101
5102   f->emit->regno_pointer_align
5103     = (unsigned char *) ggc_alloc_cleared (f->emit->regno_pointer_align_length
5104                                            * sizeof (unsigned char));
5105
5106   regno_reg_rtx
5107     = (rtx *) ggc_alloc_cleared (f->emit->regno_pointer_align_length
5108                                  * sizeof (rtx));
5109
5110   f->emit->regno_decl
5111     = (tree *) ggc_alloc_cleared (f->emit->regno_pointer_align_length
5112                                   * sizeof (tree));
5113
5114   /* Put copies of all the hard registers into regno_reg_rtx.  */
5115   memcpy (regno_reg_rtx,
5116           static_regno_reg_rtx,
5117           FIRST_PSEUDO_REGISTER * sizeof (rtx));
5118
5119   /* Put copies of all the virtual register rtx into regno_reg_rtx.  */
5120   init_virtual_regs (f->emit);
5121
5122   /* Indicate that the virtual registers and stack locations are
5123      all pointers.  */
5124   REG_POINTER (stack_pointer_rtx) = 1;
5125   REG_POINTER (frame_pointer_rtx) = 1;
5126   REG_POINTER (hard_frame_pointer_rtx) = 1;
5127   REG_POINTER (arg_pointer_rtx) = 1;
5128
5129   REG_POINTER (virtual_incoming_args_rtx) = 1;
5130   REG_POINTER (virtual_stack_vars_rtx) = 1;
5131   REG_POINTER (virtual_stack_dynamic_rtx) = 1;
5132   REG_POINTER (virtual_outgoing_args_rtx) = 1;
5133   REG_POINTER (virtual_cfa_rtx) = 1;
5134
5135 #ifdef STACK_BOUNDARY
5136   REGNO_POINTER_ALIGN (STACK_POINTER_REGNUM) = STACK_BOUNDARY;
5137   REGNO_POINTER_ALIGN (FRAME_POINTER_REGNUM) = STACK_BOUNDARY;
5138   REGNO_POINTER_ALIGN (HARD_FRAME_POINTER_REGNUM) = STACK_BOUNDARY;
5139   REGNO_POINTER_ALIGN (ARG_POINTER_REGNUM) = STACK_BOUNDARY;
5140
5141   REGNO_POINTER_ALIGN (VIRTUAL_INCOMING_ARGS_REGNUM) = STACK_BOUNDARY;
5142   REGNO_POINTER_ALIGN (VIRTUAL_STACK_VARS_REGNUM) = STACK_BOUNDARY;
5143   REGNO_POINTER_ALIGN (VIRTUAL_STACK_DYNAMIC_REGNUM) = STACK_BOUNDARY;
5144   REGNO_POINTER_ALIGN (VIRTUAL_OUTGOING_ARGS_REGNUM) = STACK_BOUNDARY;
5145   REGNO_POINTER_ALIGN (VIRTUAL_CFA_REGNUM) = BITS_PER_WORD;
5146 #endif
5147
5148 #ifdef INIT_EXPANDERS
5149   INIT_EXPANDERS;
5150 #endif
5151 }
5152
5153 /* Generate the constant 0.  */
5154
5155 static rtx
5156 gen_const_vector_0 (mode)
5157      enum machine_mode mode;
5158 {
5159   rtx tem;
5160   rtvec v;
5161   int units, i;
5162   enum machine_mode inner;
5163
5164   units = GET_MODE_NUNITS (mode);
5165   inner = GET_MODE_INNER (mode);
5166
5167   v = rtvec_alloc (units);
5168
5169   /* We need to call this function after we to set CONST0_RTX first.  */
5170   if (!CONST0_RTX (inner))
5171     abort ();
5172
5173   for (i = 0; i < units; ++i)
5174     RTVEC_ELT (v, i) = CONST0_RTX (inner);
5175
5176   tem = gen_rtx_CONST_VECTOR (mode, v);
5177   return tem;
5178 }
5179
5180 /* Create some permanent unique rtl objects shared between all functions.
5181    LINE_NUMBERS is nonzero if line numbers are to be generated.  */
5182
5183 void
5184 init_emit_once (line_numbers)
5185      int line_numbers;
5186 {
5187   int i;
5188   enum machine_mode mode;
5189   enum machine_mode double_mode;
5190
5191   /* Initialize the CONST_INT, CONST_DOUBLE, and memory attribute hash
5192      tables.  */
5193   const_int_htab = htab_create (37, const_int_htab_hash,
5194                                 const_int_htab_eq, NULL);
5195
5196   const_double_htab = htab_create (37, const_double_htab_hash,
5197                                    const_double_htab_eq, NULL);
5198
5199   mem_attrs_htab = htab_create (37, mem_attrs_htab_hash,
5200                                 mem_attrs_htab_eq, NULL);
5201
5202   no_line_numbers = ! line_numbers;
5203
5204   /* Compute the word and byte modes.  */
5205
5206   byte_mode = VOIDmode;
5207   word_mode = VOIDmode;
5208   double_mode = VOIDmode;
5209
5210   for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
5211        mode = GET_MODE_WIDER_MODE (mode))
5212     {
5213       if (GET_MODE_BITSIZE (mode) == BITS_PER_UNIT
5214           && byte_mode == VOIDmode)
5215         byte_mode = mode;
5216
5217       if (GET_MODE_BITSIZE (mode) == BITS_PER_WORD
5218           && word_mode == VOIDmode)
5219         word_mode = mode;
5220     }
5221
5222   for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
5223        mode = GET_MODE_WIDER_MODE (mode))
5224     {
5225       if (GET_MODE_BITSIZE (mode) == DOUBLE_TYPE_SIZE
5226           && double_mode == VOIDmode)
5227         double_mode = mode;
5228     }
5229
5230   ptr_mode = mode_for_size (POINTER_SIZE, GET_MODE_CLASS (Pmode), 0);
5231
5232   /* Assign register numbers to the globally defined register rtx.
5233      This must be done at runtime because the register number field
5234      is in a union and some compilers can't initialize unions.  */
5235
5236   pc_rtx = gen_rtx (PC, VOIDmode);
5237   cc0_rtx = gen_rtx (CC0, VOIDmode);
5238   stack_pointer_rtx = gen_raw_REG (Pmode, STACK_POINTER_REGNUM);
5239   frame_pointer_rtx = gen_raw_REG (Pmode, FRAME_POINTER_REGNUM);
5240   if (hard_frame_pointer_rtx == 0)
5241     hard_frame_pointer_rtx = gen_raw_REG (Pmode,
5242                                           HARD_FRAME_POINTER_REGNUM);
5243   if (arg_pointer_rtx == 0)
5244     arg_pointer_rtx = gen_raw_REG (Pmode, ARG_POINTER_REGNUM);
5245   virtual_incoming_args_rtx =
5246     gen_raw_REG (Pmode, VIRTUAL_INCOMING_ARGS_REGNUM);
5247   virtual_stack_vars_rtx =
5248     gen_raw_REG (Pmode, VIRTUAL_STACK_VARS_REGNUM);
5249   virtual_stack_dynamic_rtx =
5250     gen_raw_REG (Pmode, VIRTUAL_STACK_DYNAMIC_REGNUM);
5251   virtual_outgoing_args_rtx =
5252     gen_raw_REG (Pmode, VIRTUAL_OUTGOING_ARGS_REGNUM);
5253   virtual_cfa_rtx = gen_raw_REG (Pmode, VIRTUAL_CFA_REGNUM);
5254
5255   /* Initialize RTL for commonly used hard registers.  These are
5256      copied into regno_reg_rtx as we begin to compile each function.  */
5257   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
5258     static_regno_reg_rtx[i] = gen_raw_REG (reg_raw_mode[i], i);
5259
5260 #ifdef INIT_EXPANDERS
5261   /* This is to initialize {init|mark|free}_machine_status before the first
5262      call to push_function_context_to.  This is needed by the Chill front
5263      end which calls push_function_context_to before the first call to
5264      init_function_start.  */
5265   INIT_EXPANDERS;
5266 #endif
5267
5268   /* Create the unique rtx's for certain rtx codes and operand values.  */
5269
5270   /* Don't use gen_rtx here since gen_rtx in this case
5271      tries to use these variables.  */
5272   for (i = - MAX_SAVED_CONST_INT; i <= MAX_SAVED_CONST_INT; i++)
5273     const_int_rtx[i + MAX_SAVED_CONST_INT] =
5274       gen_rtx_raw_CONST_INT (VOIDmode, i);
5275
5276   if (STORE_FLAG_VALUE >= - MAX_SAVED_CONST_INT
5277       && STORE_FLAG_VALUE <= MAX_SAVED_CONST_INT)
5278     const_true_rtx = const_int_rtx[STORE_FLAG_VALUE + MAX_SAVED_CONST_INT];
5279   else
5280     const_true_rtx = gen_rtx_CONST_INT (VOIDmode, STORE_FLAG_VALUE);
5281
5282   REAL_VALUE_FROM_INT (dconst0,   0,  0, double_mode);
5283   REAL_VALUE_FROM_INT (dconst1,   1,  0, double_mode);
5284   REAL_VALUE_FROM_INT (dconst2,   2,  0, double_mode);
5285   REAL_VALUE_FROM_INT (dconstm1, -1, -1, double_mode);
5286
5287   for (i = 0; i <= 2; i++)
5288     {
5289       REAL_VALUE_TYPE *r =
5290         (i == 0 ? &dconst0 : i == 1 ? &dconst1 : &dconst2);
5291
5292       for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
5293            mode = GET_MODE_WIDER_MODE (mode))
5294         const_tiny_rtx[i][(int) mode] =
5295           CONST_DOUBLE_FROM_REAL_VALUE (*r, mode);
5296
5297       const_tiny_rtx[i][(int) VOIDmode] = GEN_INT (i);
5298
5299       for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
5300            mode = GET_MODE_WIDER_MODE (mode))
5301         const_tiny_rtx[i][(int) mode] = GEN_INT (i);
5302
5303       for (mode = GET_CLASS_NARROWEST_MODE (MODE_PARTIAL_INT);
5304            mode != VOIDmode;
5305            mode = GET_MODE_WIDER_MODE (mode))
5306         const_tiny_rtx[i][(int) mode] = GEN_INT (i);
5307     }
5308
5309   for (mode = GET_CLASS_NARROWEST_MODE (MODE_VECTOR_INT);
5310        mode != VOIDmode;
5311        mode = GET_MODE_WIDER_MODE (mode))
5312     const_tiny_rtx[0][(int) mode] = gen_const_vector_0 (mode);
5313
5314   for (mode = GET_CLASS_NARROWEST_MODE (MODE_VECTOR_FLOAT);
5315        mode != VOIDmode;
5316        mode = GET_MODE_WIDER_MODE (mode))
5317     const_tiny_rtx[0][(int) mode] = gen_const_vector_0 (mode);
5318
5319   for (i = (int) CCmode; i < (int) MAX_MACHINE_MODE; ++i)
5320     if (GET_MODE_CLASS ((enum machine_mode) i) == MODE_CC)
5321       const_tiny_rtx[0][i] = const0_rtx;
5322
5323   const_tiny_rtx[0][(int) BImode] = const0_rtx;
5324   if (STORE_FLAG_VALUE == 1)
5325     const_tiny_rtx[1][(int) BImode] = const1_rtx;
5326
5327 #ifdef RETURN_ADDRESS_POINTER_REGNUM
5328   return_address_pointer_rtx
5329     = gen_raw_REG (Pmode, RETURN_ADDRESS_POINTER_REGNUM);
5330 #endif
5331
5332 #ifdef STRUCT_VALUE
5333   struct_value_rtx = STRUCT_VALUE;
5334 #else
5335   struct_value_rtx = gen_rtx_REG (Pmode, STRUCT_VALUE_REGNUM);
5336 #endif
5337
5338 #ifdef STRUCT_VALUE_INCOMING
5339   struct_value_incoming_rtx = STRUCT_VALUE_INCOMING;
5340 #else
5341 #ifdef STRUCT_VALUE_INCOMING_REGNUM
5342   struct_value_incoming_rtx
5343     = gen_rtx_REG (Pmode, STRUCT_VALUE_INCOMING_REGNUM);
5344 #else
5345   struct_value_incoming_rtx = struct_value_rtx;
5346 #endif
5347 #endif
5348
5349 #ifdef STATIC_CHAIN_REGNUM
5350   static_chain_rtx = gen_rtx_REG (Pmode, STATIC_CHAIN_REGNUM);
5351
5352 #ifdef STATIC_CHAIN_INCOMING_REGNUM
5353   if (STATIC_CHAIN_INCOMING_REGNUM != STATIC_CHAIN_REGNUM)
5354     static_chain_incoming_rtx
5355       = gen_rtx_REG (Pmode, STATIC_CHAIN_INCOMING_REGNUM);
5356   else
5357 #endif
5358     static_chain_incoming_rtx = static_chain_rtx;
5359 #endif
5360
5361 #ifdef STATIC_CHAIN
5362   static_chain_rtx = STATIC_CHAIN;
5363
5364 #ifdef STATIC_CHAIN_INCOMING
5365   static_chain_incoming_rtx = STATIC_CHAIN_INCOMING;
5366 #else
5367   static_chain_incoming_rtx = static_chain_rtx;
5368 #endif
5369 #endif
5370
5371   if (PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM)
5372     pic_offset_table_rtx = gen_raw_REG (Pmode, PIC_OFFSET_TABLE_REGNUM);
5373 }
5374 \f
5375 /* Query and clear/ restore no_line_numbers.  This is used by the
5376    switch / case handling in stmt.c to give proper line numbers in
5377    warnings about unreachable code.  */
5378
5379 int
5380 force_line_numbers ()
5381 {
5382   int old = no_line_numbers;
5383
5384   no_line_numbers = 0;
5385   if (old)
5386     force_next_line_note ();
5387   return old;
5388 }
5389
5390 void
5391 restore_line_number_status (old_value)
5392      int old_value;
5393 {
5394   no_line_numbers = old_value;
5395 }
5396
5397 /* Produce exact duplicate of insn INSN after AFTER.
5398    Care updating of libcall regions if present.  */
5399
5400 rtx
5401 emit_copy_of_insn_after (insn, after)
5402      rtx insn, after;
5403 {
5404   rtx new;
5405   rtx note1, note2, link;
5406
5407   switch (GET_CODE (insn))
5408     {
5409     case INSN:
5410       new = emit_insn_after (copy_insn (PATTERN (insn)), after);
5411       break;
5412
5413     case JUMP_INSN:
5414       new = emit_jump_insn_after (copy_insn (PATTERN (insn)), after);
5415       break;
5416
5417     case CALL_INSN:
5418       new = emit_call_insn_after (copy_insn (PATTERN (insn)), after);
5419       if (CALL_INSN_FUNCTION_USAGE (insn))
5420         CALL_INSN_FUNCTION_USAGE (new)
5421           = copy_insn (CALL_INSN_FUNCTION_USAGE (insn));
5422       SIBLING_CALL_P (new) = SIBLING_CALL_P (insn);
5423       CONST_OR_PURE_CALL_P (new) = CONST_OR_PURE_CALL_P (insn);
5424       break;
5425
5426     default:
5427       abort ();
5428     }
5429
5430   /* Update LABEL_NUSES.  */
5431   mark_jump_label (PATTERN (new), new, 0);
5432
5433   INSN_SCOPE (new) = INSN_SCOPE (insn);
5434
5435   /* Copy all REG_NOTES except REG_LABEL since mark_jump_label will
5436      make them.  */
5437   for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
5438     if (REG_NOTE_KIND (link) != REG_LABEL)
5439       {
5440         if (GET_CODE (link) == EXPR_LIST)
5441           REG_NOTES (new)
5442             = copy_insn_1 (gen_rtx_EXPR_LIST (REG_NOTE_KIND (link),
5443                                               XEXP (link, 0),
5444                                               REG_NOTES (new)));
5445         else
5446           REG_NOTES (new)
5447             = copy_insn_1 (gen_rtx_INSN_LIST (REG_NOTE_KIND (link),
5448                                               XEXP (link, 0),
5449                                               REG_NOTES (new)));
5450       }
5451
5452   /* Fix the libcall sequences.  */
5453   if ((note1 = find_reg_note (new, REG_RETVAL, NULL_RTX)) != NULL)
5454     {
5455       rtx p = new;
5456       while ((note2 = find_reg_note (p, REG_LIBCALL, NULL_RTX)) == NULL)
5457         p = PREV_INSN (p);
5458       XEXP (note1, 0) = p;
5459       XEXP (note2, 0) = new;
5460     }
5461   return new;
5462 }
5463
5464 #include "gt-emit-rtl.h"