OSDN Git Service

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