OSDN Git Service

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