OSDN Git Service

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