OSDN Git Service

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