OSDN Git Service

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