OSDN Git Service

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