alias.c (get_alias_set): Try to replace PLACEHOLDER_EXPR.
[official-gcc.git] / gcc / emit-rtl.c
blobea0eef2c29bd8658cab6fbe568f324cde86882fe
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.
5 This file is part of GCC.
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.
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.
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. */
23 /* Middle-to-low level generation of rtx code and insns.
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.
29 It also has the functions for creating insns and linking
30 them in the doubly-linked chain.
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. */
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"
59 /* Commonly used modes. */
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. */
67 /* This is *not* reset after each function. It gives each CODE_LABEL
68 in the entire compilation a unique label number. */
70 static int label_num = 1;
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. */
76 static int last_label_num;
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. */
81 static int base_label_num;
83 /* Nonzero means do not generate NOTEs for source line numbers. */
85 static int no_line_numbers;
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. */
92 rtx global_rtl[GR_MAX];
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. */
98 rtx const_tiny_rtx[3][(int) MAX_MACHINE_MODE];
100 rtx const_true_rtx;
102 REAL_VALUE_TYPE dconst0;
103 REAL_VALUE_TYPE dconst1;
104 REAL_VALUE_TYPE dconst2;
105 REAL_VALUE_TYPE dconstm1;
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.
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.
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.
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) */
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) */
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. */
140 rtx const_int_rtx[MAX_SAVED_CONST_INT * 2 + 1];
142 /* A hash table storing CONST_INTs whose absolute value is greater
143 than MAX_SAVED_CONST_INT. */
145 static htab_t const_int_htab;
147 /* A hash table storing memory attribute structures. */
148 static htab_t mem_attrs_htab;
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:
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.
160 We do not bother to save this cached data over nested function calls.
161 Instead, we just reinitialize them. */
163 #define SEQUENCE_RESULT_SIZE 5
165 static rtx sequence_result[SEQUENCE_RESULT_SIZE];
167 /* During RTL generation, we also keep a list of free INSN rtl codes. */
168 static rtx free_insn;
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)
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 void unshare_all_rtl_1 PARAMS ((rtx));
182 static void unshare_all_decls PARAMS ((tree));
183 static void reset_used_decls PARAMS ((tree));
184 static void mark_label_nuses PARAMS ((rtx));
185 static hashval_t const_int_htab_hash PARAMS ((const void *));
186 static int const_int_htab_eq PARAMS ((const void *,
187 const void *));
188 static hashval_t mem_attrs_htab_hash PARAMS ((const void *));
189 static int mem_attrs_htab_eq PARAMS ((const void *,
190 const void *));
191 static void mem_attrs_mark PARAMS ((const void *));
192 static mem_attrs *get_mem_attrs PARAMS ((HOST_WIDE_INT, tree, rtx,
193 rtx, unsigned int));
195 /* Probability of the conditional branch currently proceeded by try_split.
196 Set to -1 otherwise. */
197 int split_branch_probability = -1;
199 /* Returns a hash code for X (which is a really a CONST_INT). */
201 static hashval_t
202 const_int_htab_hash (x)
203 const void *x;
205 return (hashval_t) INTVAL ((const struct rtx_def *) x);
208 /* Returns non-zero if the value represented by X (which is really a
209 CONST_INT) is the same as that given by Y (which is really a
210 HOST_WIDE_INT *). */
212 static int
213 const_int_htab_eq (x, y)
214 const void *x;
215 const void *y;
217 return (INTVAL ((const struct rtx_def *) x) == *((const HOST_WIDE_INT *) y));
220 /* Returns a hash code for X (which is a really a mem_attrs *). */
222 static hashval_t
223 mem_attrs_htab_hash (x)
224 const void *x;
226 mem_attrs *p = (mem_attrs *) x;
228 return (p->alias ^ (p->align * 1000)
229 ^ ((p->offset ? INTVAL (p->offset) : 0) * 50000)
230 ^ ((p->size ? INTVAL (p->size) : 0) * 2500000)
231 ^ (long) p->decl);
234 /* Returns non-zero if the value represented by X (which is really a
235 mem_attrs *) is the same as that given by Y (which is also really a
236 mem_attrs *). */
238 static int
239 mem_attrs_htab_eq (x, y)
240 const void *x;
241 const void *y;
243 mem_attrs *p = (mem_attrs *) x;
244 mem_attrs *q = (mem_attrs *) y;
246 return (p->alias == q->alias && p->decl == q->decl && p->offset == q->offset
247 && p->size == q->size && p->align == q->align);
250 /* This routine is called when we determine that we need a mem_attrs entry.
251 It marks the associated decl and RTL as being used, if present. */
253 static void
254 mem_attrs_mark (x)
255 const void *x;
257 mem_attrs *p = (mem_attrs *) x;
259 if (p->decl)
260 ggc_mark_tree (p->decl);
262 if (p->offset)
263 ggc_mark_rtx (p->offset);
265 if (p->size)
266 ggc_mark_rtx (p->size);
269 /* Allocate a new mem_attrs structure and insert it into the hash table if
270 one identical to it is not already in the table. */
272 static mem_attrs *
273 get_mem_attrs (alias, decl, offset, size, align)
274 HOST_WIDE_INT alias;
275 tree decl;
276 rtx offset;
277 rtx size;
278 unsigned int align;
280 mem_attrs attrs;
281 void **slot;
283 attrs.alias = alias;
284 attrs.decl = decl;
285 attrs.offset = offset;
286 attrs.size = size;
287 attrs.align = align;
289 slot = htab_find_slot (mem_attrs_htab, &attrs, INSERT);
290 if (*slot == 0)
292 *slot = ggc_alloc (sizeof (mem_attrs));
293 memcpy (*slot, &attrs, sizeof (mem_attrs));
296 return *slot;
299 /* Generate a new REG rtx. Make sure ORIGINAL_REGNO is set properly, and
300 don't attempt to share with the various global pieces of rtl (such as
301 frame_pointer_rtx). */
304 gen_raw_REG (mode, regno)
305 enum machine_mode mode;
306 int regno;
308 rtx x = gen_rtx_raw_REG (mode, regno);
309 ORIGINAL_REGNO (x) = regno;
310 return x;
313 /* There are some RTL codes that require special attention; the generation
314 functions do the raw handling. If you add to this list, modify
315 special_rtx in gengenrtl.c as well. */
318 gen_rtx_CONST_INT (mode, arg)
319 enum machine_mode mode ATTRIBUTE_UNUSED;
320 HOST_WIDE_INT arg;
322 void **slot;
324 if (arg >= - MAX_SAVED_CONST_INT && arg <= MAX_SAVED_CONST_INT)
325 return const_int_rtx[arg + MAX_SAVED_CONST_INT];
327 #if STORE_FLAG_VALUE != 1 && STORE_FLAG_VALUE != -1
328 if (const_true_rtx && arg == STORE_FLAG_VALUE)
329 return const_true_rtx;
330 #endif
332 /* Look up the CONST_INT in the hash table. */
333 slot = htab_find_slot_with_hash (const_int_htab, &arg,
334 (hashval_t) arg, INSERT);
335 if (*slot == 0)
336 *slot = gen_rtx_raw_CONST_INT (VOIDmode, arg);
338 return (rtx) *slot;
341 /* CONST_DOUBLEs needs special handling because their length is known
342 only at run-time. */
345 gen_rtx_CONST_DOUBLE (mode, arg0, arg1, arg2)
346 enum machine_mode mode;
347 rtx arg0;
348 HOST_WIDE_INT arg1, arg2;
350 rtx r = rtx_alloc (CONST_DOUBLE);
351 int i;
353 PUT_MODE (r, mode);
354 XEXP (r, 0) = arg0;
355 X0EXP (r, 1) = NULL_RTX;
356 XWINT (r, 2) = arg1;
357 XWINT (r, 3) = arg2;
359 for (i = GET_RTX_LENGTH (CONST_DOUBLE) - 1; i > 3; --i)
360 XWINT (r, i) = 0;
362 return r;
366 gen_rtx_REG (mode, regno)
367 enum machine_mode mode;
368 int regno;
370 /* In case the MD file explicitly references the frame pointer, have
371 all such references point to the same frame pointer. This is
372 used during frame pointer elimination to distinguish the explicit
373 references to these registers from pseudos that happened to be
374 assigned to them.
376 If we have eliminated the frame pointer or arg pointer, we will
377 be using it as a normal register, for example as a spill
378 register. In such cases, we might be accessing it in a mode that
379 is not Pmode and therefore cannot use the pre-allocated rtx.
381 Also don't do this when we are making new REGs in reload, since
382 we don't want to get confused with the real pointers. */
384 if (mode == Pmode && !reload_in_progress)
386 if (regno == FRAME_POINTER_REGNUM)
387 return frame_pointer_rtx;
388 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
389 if (regno == HARD_FRAME_POINTER_REGNUM)
390 return hard_frame_pointer_rtx;
391 #endif
392 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM && HARD_FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
393 if (regno == ARG_POINTER_REGNUM)
394 return arg_pointer_rtx;
395 #endif
396 #ifdef RETURN_ADDRESS_POINTER_REGNUM
397 if (regno == RETURN_ADDRESS_POINTER_REGNUM)
398 return return_address_pointer_rtx;
399 #endif
400 if (regno == STACK_POINTER_REGNUM)
401 return stack_pointer_rtx;
404 return gen_raw_REG (mode, regno);
408 gen_rtx_MEM (mode, addr)
409 enum machine_mode mode;
410 rtx addr;
412 rtx rt = gen_rtx_raw_MEM (mode, addr);
414 /* This field is not cleared by the mere allocation of the rtx, so
415 we clear it here. */
416 MEM_ATTRS (rt) = 0;
418 return rt;
422 gen_rtx_SUBREG (mode, reg, offset)
423 enum machine_mode mode;
424 rtx reg;
425 int offset;
427 /* This is the most common failure type.
428 Catch it early so we can see who does it. */
429 if ((offset % GET_MODE_SIZE (mode)) != 0)
430 abort ();
432 /* This check isn't usable right now because combine will
433 throw arbitrary crap like a CALL into a SUBREG in
434 gen_lowpart_for_combine so we must just eat it. */
435 #if 0
436 /* Check for this too. */
437 if (offset >= GET_MODE_SIZE (GET_MODE (reg)))
438 abort ();
439 #endif
440 return gen_rtx_fmt_ei (SUBREG, mode, reg, offset);
443 /* Generate a SUBREG representing the least-significant part of REG if MODE
444 is smaller than mode of REG, otherwise paradoxical SUBREG. */
447 gen_lowpart_SUBREG (mode, reg)
448 enum machine_mode mode;
449 rtx reg;
451 enum machine_mode inmode;
453 inmode = GET_MODE (reg);
454 if (inmode == VOIDmode)
455 inmode = mode;
456 return gen_rtx_SUBREG (mode, reg,
457 subreg_lowpart_offset (mode, inmode));
460 /* rtx gen_rtx (code, mode, [element1, ..., elementn])
462 ** This routine generates an RTX of the size specified by
463 ** <code>, which is an RTX code. The RTX structure is initialized
464 ** from the arguments <element1> through <elementn>, which are
465 ** interpreted according to the specific RTX type's format. The
466 ** special machine mode associated with the rtx (if any) is specified
467 ** in <mode>.
469 ** gen_rtx can be invoked in a way which resembles the lisp-like
470 ** rtx it will generate. For example, the following rtx structure:
472 ** (plus:QI (mem:QI (reg:SI 1))
473 ** (mem:QI (plusw:SI (reg:SI 2) (reg:SI 3))))
475 ** ...would be generated by the following C code:
477 ** gen_rtx (PLUS, QImode,
478 ** gen_rtx (MEM, QImode,
479 ** gen_rtx (REG, SImode, 1)),
480 ** gen_rtx (MEM, QImode,
481 ** gen_rtx (PLUS, SImode,
482 ** gen_rtx (REG, SImode, 2),
483 ** gen_rtx (REG, SImode, 3)))),
486 /*VARARGS2*/
488 gen_rtx VPARAMS ((enum rtx_code code, enum machine_mode mode, ...))
490 register int i; /* Array indices... */
491 register const char *fmt; /* Current rtx's format... */
492 register rtx rt_val; /* RTX to return to caller... */
494 VA_OPEN (p, mode);
495 VA_FIXEDARG (p, enum rtx_code, code);
496 VA_FIXEDARG (p, enum machine_mode, mode);
498 switch (code)
500 case CONST_INT:
501 rt_val = gen_rtx_CONST_INT (mode, va_arg (p, HOST_WIDE_INT));
502 break;
504 case CONST_DOUBLE:
506 rtx arg0 = va_arg (p, rtx);
507 HOST_WIDE_INT arg1 = va_arg (p, HOST_WIDE_INT);
508 HOST_WIDE_INT arg2 = va_arg (p, HOST_WIDE_INT);
509 rt_val = gen_rtx_CONST_DOUBLE (mode, arg0, arg1, arg2);
511 break;
513 case REG:
514 rt_val = gen_rtx_REG (mode, va_arg (p, int));
515 break;
517 case MEM:
518 rt_val = gen_rtx_MEM (mode, va_arg (p, rtx));
519 break;
521 default:
522 rt_val = rtx_alloc (code); /* Allocate the storage space. */
523 rt_val->mode = mode; /* Store the machine mode... */
525 fmt = GET_RTX_FORMAT (code); /* Find the right format... */
526 for (i = 0; i < GET_RTX_LENGTH (code); i++)
528 switch (*fmt++)
530 case '0': /* Unused field. */
531 break;
533 case 'i': /* An integer? */
534 XINT (rt_val, i) = va_arg (p, int);
535 break;
537 case 'w': /* A wide integer? */
538 XWINT (rt_val, i) = va_arg (p, HOST_WIDE_INT);
539 break;
541 case 's': /* A string? */
542 XSTR (rt_val, i) = va_arg (p, char *);
543 break;
545 case 'e': /* An expression? */
546 case 'u': /* An insn? Same except when printing. */
547 XEXP (rt_val, i) = va_arg (p, rtx);
548 break;
550 case 'E': /* An RTX vector? */
551 XVEC (rt_val, i) = va_arg (p, rtvec);
552 break;
554 case 'b': /* A bitmap? */
555 XBITMAP (rt_val, i) = va_arg (p, bitmap);
556 break;
558 case 't': /* A tree? */
559 XTREE (rt_val, i) = va_arg (p, tree);
560 break;
562 default:
563 abort ();
566 break;
569 VA_CLOSE (p);
570 return rt_val;
573 /* gen_rtvec (n, [rt1, ..., rtn])
575 ** This routine creates an rtvec and stores within it the
576 ** pointers to rtx's which are its arguments.
579 /*VARARGS1*/
580 rtvec
581 gen_rtvec VPARAMS ((int n, ...))
583 int i, save_n;
584 rtx *vector;
586 VA_OPEN (p, n);
587 VA_FIXEDARG (p, int, n);
589 if (n == 0)
590 return NULL_RTVEC; /* Don't allocate an empty rtvec... */
592 vector = (rtx *) alloca (n * sizeof (rtx));
594 for (i = 0; i < n; i++)
595 vector[i] = va_arg (p, rtx);
597 /* The definition of VA_* in K&R C causes `n' to go out of scope. */
598 save_n = n;
599 VA_CLOSE (p);
601 return gen_rtvec_v (save_n, vector);
604 rtvec
605 gen_rtvec_v (n, argp)
606 int n;
607 rtx *argp;
609 register int i;
610 register rtvec rt_val;
612 if (n == 0)
613 return NULL_RTVEC; /* Don't allocate an empty rtvec... */
615 rt_val = rtvec_alloc (n); /* Allocate an rtvec... */
617 for (i = 0; i < n; i++)
618 rt_val->elem[i] = *argp++;
620 return rt_val;
623 /* Generate a REG rtx for a new pseudo register of mode MODE.
624 This pseudo is assigned the next sequential register number. */
627 gen_reg_rtx (mode)
628 enum machine_mode mode;
630 struct function *f = cfun;
631 register rtx val;
633 /* Don't let anything called after initial flow analysis create new
634 registers. */
635 if (no_new_pseudos)
636 abort ();
638 if (generating_concat_p
639 && (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
640 || GET_MODE_CLASS (mode) == MODE_COMPLEX_INT))
642 /* For complex modes, don't make a single pseudo.
643 Instead, make a CONCAT of two pseudos.
644 This allows noncontiguous allocation of the real and imaginary parts,
645 which makes much better code. Besides, allocating DCmode
646 pseudos overstrains reload on some machines like the 386. */
647 rtx realpart, imagpart;
648 int size = GET_MODE_UNIT_SIZE (mode);
649 enum machine_mode partmode
650 = mode_for_size (size * BITS_PER_UNIT,
651 (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
652 ? MODE_FLOAT : MODE_INT),
655 realpart = gen_reg_rtx (partmode);
656 imagpart = gen_reg_rtx (partmode);
657 return gen_rtx_CONCAT (mode, realpart, imagpart);
660 /* Make sure regno_pointer_align and regno_reg_rtx are large enough
661 to have an element for this pseudo reg number. */
663 if (reg_rtx_no == f->emit->regno_pointer_align_length)
665 int old_size = f->emit->regno_pointer_align_length;
666 rtx *new1;
667 char *new;
668 new = xrealloc (f->emit->regno_pointer_align, old_size * 2);
669 memset (new + old_size, 0, old_size);
670 f->emit->regno_pointer_align = (unsigned char *) new;
672 new1 = (rtx *) xrealloc (f->emit->x_regno_reg_rtx,
673 old_size * 2 * sizeof (rtx));
674 memset (new1 + old_size, 0, old_size * sizeof (rtx));
675 regno_reg_rtx = new1;
677 f->emit->regno_pointer_align_length = old_size * 2;
680 val = gen_raw_REG (mode, reg_rtx_no);
681 regno_reg_rtx[reg_rtx_no++] = val;
682 return val;
685 /* Identify REG (which may be a CONCAT) as a user register. */
687 void
688 mark_user_reg (reg)
689 rtx reg;
691 if (GET_CODE (reg) == CONCAT)
693 REG_USERVAR_P (XEXP (reg, 0)) = 1;
694 REG_USERVAR_P (XEXP (reg, 1)) = 1;
696 else if (GET_CODE (reg) == REG)
697 REG_USERVAR_P (reg) = 1;
698 else
699 abort ();
702 /* Identify REG as a probable pointer register and show its alignment
703 as ALIGN, if nonzero. */
705 void
706 mark_reg_pointer (reg, align)
707 rtx reg;
708 int align;
710 if (! REG_POINTER (reg))
712 REG_POINTER (reg) = 1;
714 if (align)
715 REGNO_POINTER_ALIGN (REGNO (reg)) = align;
717 else if (align && align < REGNO_POINTER_ALIGN (REGNO (reg)))
718 /* We can no-longer be sure just how aligned this pointer is */
719 REGNO_POINTER_ALIGN (REGNO (reg)) = align;
722 /* Return 1 plus largest pseudo reg number used in the current function. */
725 max_reg_num ()
727 return reg_rtx_no;
730 /* Return 1 + the largest label number used so far in the current function. */
733 max_label_num ()
735 if (last_label_num && label_num == base_label_num)
736 return last_label_num;
737 return label_num;
740 /* Return first label number used in this function (if any were used). */
743 get_first_label_num ()
745 return first_label_num;
748 /* Return the final regno of X, which is a SUBREG of a hard
749 register. */
751 subreg_hard_regno (x, check_mode)
752 register rtx x;
753 int check_mode;
755 enum machine_mode mode = GET_MODE (x);
756 unsigned int byte_offset, base_regno, final_regno;
757 rtx reg = SUBREG_REG (x);
759 /* This is where we attempt to catch illegal subregs
760 created by the compiler. */
761 if (GET_CODE (x) != SUBREG
762 || GET_CODE (reg) != REG)
763 abort ();
764 base_regno = REGNO (reg);
765 if (base_regno >= FIRST_PSEUDO_REGISTER)
766 abort ();
767 if (check_mode && ! HARD_REGNO_MODE_OK (base_regno, GET_MODE (reg)))
768 abort ();
770 /* Catch non-congruent offsets too. */
771 byte_offset = SUBREG_BYTE (x);
772 if ((byte_offset % GET_MODE_SIZE (mode)) != 0)
773 abort ();
775 final_regno = subreg_regno (x);
777 return final_regno;
780 /* Return a value representing some low-order bits of X, where the number
781 of low-order bits is given by MODE. Note that no conversion is done
782 between floating-point and fixed-point values, rather, the bit
783 representation is returned.
785 This function handles the cases in common between gen_lowpart, below,
786 and two variants in cse.c and combine.c. These are the cases that can
787 be safely handled at all points in the compilation.
789 If this is not a case we can handle, return 0. */
792 gen_lowpart_common (mode, x)
793 enum machine_mode mode;
794 register rtx x;
796 int msize = GET_MODE_SIZE (mode);
797 int xsize = GET_MODE_SIZE (GET_MODE (x));
798 int offset = 0;
800 if (GET_MODE (x) == mode)
801 return x;
803 /* MODE must occupy no more words than the mode of X. */
804 if (GET_MODE (x) != VOIDmode
805 && ((msize + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD
806 > ((xsize + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)))
807 return 0;
809 offset = subreg_lowpart_offset (mode, GET_MODE (x));
811 if ((GET_CODE (x) == ZERO_EXTEND || GET_CODE (x) == SIGN_EXTEND)
812 && (GET_MODE_CLASS (mode) == MODE_INT
813 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT))
815 /* If we are getting the low-order part of something that has been
816 sign- or zero-extended, we can either just use the object being
817 extended or make a narrower extension. If we want an even smaller
818 piece than the size of the object being extended, call ourselves
819 recursively.
821 This case is used mostly by combine and cse. */
823 if (GET_MODE (XEXP (x, 0)) == mode)
824 return XEXP (x, 0);
825 else if (GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (XEXP (x, 0))))
826 return gen_lowpart_common (mode, XEXP (x, 0));
827 else if (GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (x)))
828 return gen_rtx_fmt_e (GET_CODE (x), mode, XEXP (x, 0));
830 else if (GET_CODE (x) == SUBREG || GET_CODE (x) == REG
831 || GET_CODE (x) == CONCAT)
832 return simplify_gen_subreg (mode, x, GET_MODE (x), offset);
833 /* If X is a CONST_INT or a CONST_DOUBLE, extract the appropriate bits
834 from the low-order part of the constant. */
835 else if ((GET_MODE_CLASS (mode) == MODE_INT
836 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
837 && GET_MODE (x) == VOIDmode
838 && (GET_CODE (x) == CONST_INT || GET_CODE (x) == CONST_DOUBLE))
840 /* If MODE is twice the host word size, X is already the desired
841 representation. Otherwise, if MODE is wider than a word, we can't
842 do this. If MODE is exactly a word, return just one CONST_INT. */
844 if (GET_MODE_BITSIZE (mode) >= 2 * HOST_BITS_PER_WIDE_INT)
845 return x;
846 else if (GET_MODE_BITSIZE (mode) > HOST_BITS_PER_WIDE_INT)
847 return 0;
848 else if (GET_MODE_BITSIZE (mode) == HOST_BITS_PER_WIDE_INT)
849 return (GET_CODE (x) == CONST_INT ? x
850 : GEN_INT (CONST_DOUBLE_LOW (x)));
851 else
853 /* MODE must be narrower than HOST_BITS_PER_WIDE_INT. */
854 HOST_WIDE_INT val = (GET_CODE (x) == CONST_INT ? INTVAL (x)
855 : CONST_DOUBLE_LOW (x));
857 /* Sign extend to HOST_WIDE_INT. */
858 val = trunc_int_for_mode (val, mode);
860 return (GET_CODE (x) == CONST_INT && INTVAL (x) == val ? x
861 : GEN_INT (val));
865 #ifndef REAL_ARITHMETIC
866 /* If X is an integral constant but we want it in floating-point, it
867 must be the case that we have a union of an integer and a floating-point
868 value. If the machine-parameters allow it, simulate that union here
869 and return the result. The two-word and single-word cases are
870 different. */
872 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
873 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
874 || flag_pretend_float)
875 && GET_MODE_CLASS (mode) == MODE_FLOAT
876 && GET_MODE_SIZE (mode) == UNITS_PER_WORD
877 && GET_CODE (x) == CONST_INT
878 && sizeof (float) * HOST_BITS_PER_CHAR == HOST_BITS_PER_WIDE_INT)
880 union {HOST_WIDE_INT i; float d; } u;
882 u.i = INTVAL (x);
883 return CONST_DOUBLE_FROM_REAL_VALUE (u.d, mode);
885 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
886 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
887 || flag_pretend_float)
888 && GET_MODE_CLASS (mode) == MODE_FLOAT
889 && GET_MODE_SIZE (mode) == 2 * UNITS_PER_WORD
890 && (GET_CODE (x) == CONST_INT || GET_CODE (x) == CONST_DOUBLE)
891 && GET_MODE (x) == VOIDmode
892 && (sizeof (double) * HOST_BITS_PER_CHAR
893 == 2 * HOST_BITS_PER_WIDE_INT))
895 union {HOST_WIDE_INT i[2]; double d; } u;
896 HOST_WIDE_INT low, high;
898 if (GET_CODE (x) == CONST_INT)
899 low = INTVAL (x), high = low >> (HOST_BITS_PER_WIDE_INT -1);
900 else
901 low = CONST_DOUBLE_LOW (x), high = CONST_DOUBLE_HIGH (x);
903 #ifdef HOST_WORDS_BIG_ENDIAN
904 u.i[0] = high, u.i[1] = low;
905 #else
906 u.i[0] = low, u.i[1] = high;
907 #endif
909 return CONST_DOUBLE_FROM_REAL_VALUE (u.d, mode);
912 /* Similarly, if this is converting a floating-point value into a
913 single-word integer. Only do this is the host and target parameters are
914 compatible. */
916 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
917 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
918 || flag_pretend_float)
919 && (GET_MODE_CLASS (mode) == MODE_INT
920 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
921 && GET_CODE (x) == CONST_DOUBLE
922 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT
923 && GET_MODE_BITSIZE (mode) == BITS_PER_WORD)
924 return constant_subword (x, (offset / UNITS_PER_WORD), GET_MODE (x));
926 /* Similarly, if this is converting a floating-point value into a
927 two-word integer, we can do this one word at a time and make an
928 integer. Only do this is the host and target parameters are
929 compatible. */
931 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
932 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
933 || flag_pretend_float)
934 && (GET_MODE_CLASS (mode) == MODE_INT
935 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
936 && GET_CODE (x) == CONST_DOUBLE
937 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT
938 && GET_MODE_BITSIZE (mode) == 2 * BITS_PER_WORD)
940 rtx lowpart, highpart;
942 lowpart = constant_subword (x,
943 (offset / UNITS_PER_WORD) + WORDS_BIG_ENDIAN,
944 GET_MODE (x));
945 highpart = constant_subword (x,
946 (offset / UNITS_PER_WORD) + (! WORDS_BIG_ENDIAN),
947 GET_MODE (x));
948 if (lowpart && GET_CODE (lowpart) == CONST_INT
949 && highpart && GET_CODE (highpart) == CONST_INT)
950 return immed_double_const (INTVAL (lowpart), INTVAL (highpart), mode);
952 #else /* ifndef REAL_ARITHMETIC */
954 /* When we have a FP emulator, we can handle all conversions between
955 FP and integer operands. This simplifies reload because it
956 doesn't have to deal with constructs like (subreg:DI
957 (const_double:SF ...)) or (subreg:DF (const_int ...)). */
958 /* Single-precision floats are always 32-bits and double-precision
959 floats are always 64-bits. */
961 else if (GET_MODE_CLASS (mode) == MODE_FLOAT
962 && GET_MODE_BITSIZE (mode) == 32
963 && GET_CODE (x) == CONST_INT)
965 REAL_VALUE_TYPE r;
966 HOST_WIDE_INT i;
968 i = INTVAL (x);
969 r = REAL_VALUE_FROM_TARGET_SINGLE (i);
970 return CONST_DOUBLE_FROM_REAL_VALUE (r, mode);
972 else if (GET_MODE_CLASS (mode) == MODE_FLOAT
973 && GET_MODE_BITSIZE (mode) == 64
974 && (GET_CODE (x) == CONST_INT || GET_CODE (x) == CONST_DOUBLE)
975 && GET_MODE (x) == VOIDmode)
977 REAL_VALUE_TYPE r;
978 HOST_WIDE_INT i[2];
979 HOST_WIDE_INT low, high;
981 if (GET_CODE (x) == CONST_INT)
983 low = INTVAL (x);
984 high = low >> (HOST_BITS_PER_WIDE_INT - 1);
986 else
988 low = CONST_DOUBLE_LOW (x);
989 high = CONST_DOUBLE_HIGH (x);
992 /* REAL_VALUE_TARGET_DOUBLE takes the addressing order of the
993 target machine. */
994 if (WORDS_BIG_ENDIAN)
995 i[0] = high, i[1] = low;
996 else
997 i[0] = low, i[1] = high;
999 r = REAL_VALUE_FROM_TARGET_DOUBLE (i);
1000 return CONST_DOUBLE_FROM_REAL_VALUE (r, mode);
1002 else if ((GET_MODE_CLASS (mode) == MODE_INT
1003 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
1004 && GET_CODE (x) == CONST_DOUBLE
1005 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
1007 REAL_VALUE_TYPE r;
1008 long i[4]; /* Only the low 32 bits of each 'long' are used. */
1009 int endian = WORDS_BIG_ENDIAN ? 1 : 0;
1011 REAL_VALUE_FROM_CONST_DOUBLE (r, x);
1012 switch (GET_MODE_BITSIZE (GET_MODE (x)))
1014 case 32:
1015 REAL_VALUE_TO_TARGET_SINGLE (r, i[endian]);
1016 i[1 - endian] = 0;
1017 break;
1018 case 64:
1019 REAL_VALUE_TO_TARGET_DOUBLE (r, i);
1020 break;
1021 case 96:
1022 REAL_VALUE_TO_TARGET_LONG_DOUBLE (r, i + endian);
1023 i[3-3*endian] = 0;
1024 break;
1025 case 128:
1026 REAL_VALUE_TO_TARGET_LONG_DOUBLE (r, i);
1027 break;
1028 default:
1029 abort ();
1032 /* Now, pack the 32-bit elements of the array into a CONST_DOUBLE
1033 and return it. */
1034 #if HOST_BITS_PER_WIDE_INT == 32
1035 return immed_double_const (i[endian], i[1 - endian], mode);
1036 #else
1038 int c;
1040 if (HOST_BITS_PER_WIDE_INT != 64)
1041 abort ();
1043 for (c = 0; c < 4; c++)
1044 i[c] &= ~ (0L);
1046 switch (GET_MODE_BITSIZE (GET_MODE (x)))
1048 case 32:
1049 case 64:
1050 return immed_double_const (((unsigned long) i[endian]) |
1051 (((HOST_WIDE_INT) i[1-endian]) << 32),
1052 0, mode);
1053 case 96:
1054 case 128:
1055 return immed_double_const (((unsigned long) i[endian*3]) |
1056 (((HOST_WIDE_INT) i[1+endian]) << 32),
1057 ((unsigned long) i[2-endian]) |
1058 (((HOST_WIDE_INT) i[3-endian*3]) << 32),
1059 mode);
1060 default:
1061 abort ();
1064 #endif
1066 #endif /* ifndef REAL_ARITHMETIC */
1068 /* Otherwise, we can't do this. */
1069 return 0;
1072 /* Return the real part (which has mode MODE) of a complex value X.
1073 This always comes at the low address in memory. */
1076 gen_realpart (mode, x)
1077 enum machine_mode mode;
1078 register rtx x;
1080 if (WORDS_BIG_ENDIAN
1081 && GET_MODE_BITSIZE (mode) < BITS_PER_WORD
1082 && REG_P (x)
1083 && REGNO (x) < FIRST_PSEUDO_REGISTER)
1084 internal_error
1085 ("Can't access real part of complex value in hard register");
1086 else if (WORDS_BIG_ENDIAN)
1087 return gen_highpart (mode, x);
1088 else
1089 return gen_lowpart (mode, x);
1092 /* Return the imaginary part (which has mode MODE) of a complex value X.
1093 This always comes at the high address in memory. */
1096 gen_imagpart (mode, x)
1097 enum machine_mode mode;
1098 register rtx x;
1100 if (WORDS_BIG_ENDIAN)
1101 return gen_lowpart (mode, x);
1102 else if (! WORDS_BIG_ENDIAN
1103 && GET_MODE_BITSIZE (mode) < BITS_PER_WORD
1104 && REG_P (x)
1105 && REGNO (x) < FIRST_PSEUDO_REGISTER)
1106 internal_error
1107 ("can't access imaginary part of complex value in hard register");
1108 else
1109 return gen_highpart (mode, x);
1112 /* Return 1 iff X, assumed to be a SUBREG,
1113 refers to the real part of the complex value in its containing reg.
1114 Complex values are always stored with the real part in the first word,
1115 regardless of WORDS_BIG_ENDIAN. */
1118 subreg_realpart_p (x)
1119 rtx x;
1121 if (GET_CODE (x) != SUBREG)
1122 abort ();
1124 return ((unsigned int) SUBREG_BYTE (x)
1125 < GET_MODE_UNIT_SIZE (GET_MODE (SUBREG_REG (x))));
1128 /* Assuming that X is an rtx (e.g., MEM, REG or SUBREG) for a value,
1129 return an rtx (MEM, SUBREG, or CONST_INT) that refers to the
1130 least-significant part of X.
1131 MODE specifies how big a part of X to return;
1132 it usually should not be larger than a word.
1133 If X is a MEM whose address is a QUEUED, the value may be so also. */
1136 gen_lowpart (mode, x)
1137 enum machine_mode mode;
1138 register rtx x;
1140 rtx result = gen_lowpart_common (mode, x);
1142 if (result)
1143 return result;
1144 else if (GET_CODE (x) == REG)
1146 /* Must be a hard reg that's not valid in MODE. */
1147 result = gen_lowpart_common (mode, copy_to_reg (x));
1148 if (result == 0)
1149 abort ();
1150 return result;
1152 else if (GET_CODE (x) == MEM)
1154 /* The only additional case we can do is MEM. */
1155 register int offset = 0;
1156 if (WORDS_BIG_ENDIAN)
1157 offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
1158 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
1160 if (BYTES_BIG_ENDIAN)
1161 /* Adjust the address so that the address-after-the-data
1162 is unchanged. */
1163 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
1164 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
1166 return adjust_address (x, mode, offset);
1168 else if (GET_CODE (x) == ADDRESSOF)
1169 return gen_lowpart (mode, force_reg (GET_MODE (x), x));
1170 else
1171 abort ();
1174 /* Like `gen_lowpart', but refer to the most significant part.
1175 This is used to access the imaginary part of a complex number. */
1178 gen_highpart (mode, x)
1179 enum machine_mode mode;
1180 register rtx x;
1182 unsigned int msize = GET_MODE_SIZE (mode);
1183 rtx result;
1185 /* This case loses if X is a subreg. To catch bugs early,
1186 complain if an invalid MODE is used even in other cases. */
1187 if (msize > UNITS_PER_WORD
1188 && msize != GET_MODE_UNIT_SIZE (GET_MODE (x)))
1189 abort ();
1191 result = simplify_gen_subreg (mode, x, GET_MODE (x),
1192 subreg_highpart_offset (mode, GET_MODE (x)));
1194 /* simplify_gen_subreg is not guaranteed to return a valid operand for
1195 the target if we have a MEM. gen_highpart must return a valid operand,
1196 emitting code if necessary to do so. */
1197 if (GET_CODE (result) == MEM)
1198 result = validize_mem (result);
1200 if (!result)
1201 abort ();
1202 return result;
1205 /* Like gen_highpart_mode, but accept mode of EXP operand in case EXP can
1206 be VOIDmode constant. */
1208 gen_highpart_mode (outermode, innermode, exp)
1209 enum machine_mode outermode, innermode;
1210 rtx exp;
1212 if (GET_MODE (exp) != VOIDmode)
1214 if (GET_MODE (exp) != innermode)
1215 abort ();
1216 return gen_highpart (outermode, exp);
1218 return simplify_gen_subreg (outermode, exp, innermode,
1219 subreg_highpart_offset (outermode, innermode));
1221 /* Return offset in bytes to get OUTERMODE low part
1222 of the value in mode INNERMODE stored in memory in target format. */
1224 unsigned int
1225 subreg_lowpart_offset (outermode, innermode)
1226 enum machine_mode outermode, innermode;
1228 unsigned int offset = 0;
1229 int difference = (GET_MODE_SIZE (innermode) - GET_MODE_SIZE (outermode));
1231 if (difference > 0)
1233 if (WORDS_BIG_ENDIAN)
1234 offset += (difference / UNITS_PER_WORD) * UNITS_PER_WORD;
1235 if (BYTES_BIG_ENDIAN)
1236 offset += difference % UNITS_PER_WORD;
1239 return offset;
1242 /* Return offset in bytes to get OUTERMODE high part
1243 of the value in mode INNERMODE stored in memory in target format. */
1244 unsigned int
1245 subreg_highpart_offset (outermode, innermode)
1246 enum machine_mode outermode, innermode;
1248 unsigned int offset = 0;
1249 int difference = (GET_MODE_SIZE (innermode) - GET_MODE_SIZE (outermode));
1251 if (GET_MODE_SIZE (innermode) < GET_MODE_SIZE (outermode))
1252 abort ();
1254 if (difference > 0)
1256 if (! WORDS_BIG_ENDIAN)
1257 offset += (difference / UNITS_PER_WORD) * UNITS_PER_WORD;
1258 if (! BYTES_BIG_ENDIAN)
1259 offset += difference % UNITS_PER_WORD;
1262 return offset;
1265 /* Return 1 iff X, assumed to be a SUBREG,
1266 refers to the least significant part of its containing reg.
1267 If X is not a SUBREG, always return 1 (it is its own low part!). */
1270 subreg_lowpart_p (x)
1271 rtx x;
1273 if (GET_CODE (x) != SUBREG)
1274 return 1;
1275 else if (GET_MODE (SUBREG_REG (x)) == VOIDmode)
1276 return 0;
1278 return (subreg_lowpart_offset (GET_MODE (x), GET_MODE (SUBREG_REG (x)))
1279 == SUBREG_BYTE (x));
1283 /* Helper routine for all the constant cases of operand_subword.
1284 Some places invoke this directly. */
1287 constant_subword (op, offset, mode)
1288 rtx op;
1289 int offset;
1290 enum machine_mode mode;
1292 int size_ratio = HOST_BITS_PER_WIDE_INT / BITS_PER_WORD;
1293 HOST_WIDE_INT val;
1295 /* If OP is already an integer word, return it. */
1296 if (GET_MODE_CLASS (mode) == MODE_INT
1297 && GET_MODE_SIZE (mode) == UNITS_PER_WORD)
1298 return op;
1300 #ifdef REAL_ARITHMETIC
1301 /* The output is some bits, the width of the target machine's word.
1302 A wider-word host can surely hold them in a CONST_INT. A narrower-word
1303 host can't. */
1304 if (HOST_BITS_PER_WIDE_INT >= BITS_PER_WORD
1305 && GET_MODE_CLASS (mode) == MODE_FLOAT
1306 && GET_MODE_BITSIZE (mode) == 64
1307 && GET_CODE (op) == CONST_DOUBLE)
1309 long k[2];
1310 REAL_VALUE_TYPE rv;
1312 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
1313 REAL_VALUE_TO_TARGET_DOUBLE (rv, k);
1315 /* We handle 32-bit and >= 64-bit words here. Note that the order in
1316 which the words are written depends on the word endianness.
1317 ??? This is a potential portability problem and should
1318 be fixed at some point.
1320 We must excercise caution with the sign bit. By definition there
1321 are 32 significant bits in K; there may be more in a HOST_WIDE_INT.
1322 Consider a host with a 32-bit long and a 64-bit HOST_WIDE_INT.
1323 So we explicitly mask and sign-extend as necessary. */
1324 if (BITS_PER_WORD == 32)
1326 val = k[offset];
1327 val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
1328 return GEN_INT (val);
1330 #if HOST_BITS_PER_WIDE_INT >= 64
1331 else if (BITS_PER_WORD >= 64 && offset == 0)
1333 val = k[! WORDS_BIG_ENDIAN];
1334 val = (((val & 0xffffffff) ^ 0x80000000) - 0x80000000) << 32;
1335 val |= (HOST_WIDE_INT) k[WORDS_BIG_ENDIAN] & 0xffffffff;
1336 return GEN_INT (val);
1338 #endif
1339 else if (BITS_PER_WORD == 16)
1341 val = k[offset >> 1];
1342 if ((offset & 1) == ! WORDS_BIG_ENDIAN)
1343 val >>= 16;
1344 val = ((val & 0xffff) ^ 0x8000) - 0x8000;
1345 return GEN_INT (val);
1347 else
1348 abort ();
1350 else if (HOST_BITS_PER_WIDE_INT >= BITS_PER_WORD
1351 && GET_MODE_CLASS (mode) == MODE_FLOAT
1352 && GET_MODE_BITSIZE (mode) > 64
1353 && GET_CODE (op) == CONST_DOUBLE)
1355 long k[4];
1356 REAL_VALUE_TYPE rv;
1358 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
1359 REAL_VALUE_TO_TARGET_LONG_DOUBLE (rv, k);
1361 if (BITS_PER_WORD == 32)
1363 val = k[offset];
1364 val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
1365 return GEN_INT (val);
1367 #if HOST_BITS_PER_WIDE_INT >= 64
1368 else if (BITS_PER_WORD >= 64 && offset <= 1)
1370 val = k[offset * 2 + ! WORDS_BIG_ENDIAN];
1371 val = (((val & 0xffffffff) ^ 0x80000000) - 0x80000000) << 32;
1372 val |= (HOST_WIDE_INT) k[offset * 2 + WORDS_BIG_ENDIAN] & 0xffffffff;
1373 return GEN_INT (val);
1375 #endif
1376 else
1377 abort ();
1379 #else /* no REAL_ARITHMETIC */
1380 if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
1381 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
1382 || flag_pretend_float)
1383 && GET_MODE_CLASS (mode) == MODE_FLOAT
1384 && GET_MODE_SIZE (mode) == 2 * UNITS_PER_WORD
1385 && GET_CODE (op) == CONST_DOUBLE)
1387 /* The constant is stored in the host's word-ordering,
1388 but we want to access it in the target's word-ordering. Some
1389 compilers don't like a conditional inside macro args, so we have two
1390 copies of the return. */
1391 #ifdef HOST_WORDS_BIG_ENDIAN
1392 return GEN_INT (offset == WORDS_BIG_ENDIAN
1393 ? CONST_DOUBLE_HIGH (op) : CONST_DOUBLE_LOW (op));
1394 #else
1395 return GEN_INT (offset != WORDS_BIG_ENDIAN
1396 ? CONST_DOUBLE_HIGH (op) : CONST_DOUBLE_LOW (op));
1397 #endif
1399 #endif /* no REAL_ARITHMETIC */
1401 /* Single word float is a little harder, since single- and double-word
1402 values often do not have the same high-order bits. We have already
1403 verified that we want the only defined word of the single-word value. */
1404 #ifdef REAL_ARITHMETIC
1405 if (GET_MODE_CLASS (mode) == MODE_FLOAT
1406 && GET_MODE_BITSIZE (mode) == 32
1407 && GET_CODE (op) == CONST_DOUBLE)
1409 long l;
1410 REAL_VALUE_TYPE rv;
1412 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
1413 REAL_VALUE_TO_TARGET_SINGLE (rv, l);
1415 /* Sign extend from known 32-bit value to HOST_WIDE_INT. */
1416 val = l;
1417 val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
1419 if (BITS_PER_WORD == 16)
1421 if ((offset & 1) == ! WORDS_BIG_ENDIAN)
1422 val >>= 16;
1423 val = ((val & 0xffff) ^ 0x8000) - 0x8000;
1426 return GEN_INT (val);
1428 #else
1429 if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
1430 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
1431 || flag_pretend_float)
1432 && sizeof (float) * 8 == HOST_BITS_PER_WIDE_INT
1433 && GET_MODE_CLASS (mode) == MODE_FLOAT
1434 && GET_MODE_SIZE (mode) == UNITS_PER_WORD
1435 && GET_CODE (op) == CONST_DOUBLE)
1437 double d;
1438 union {float f; HOST_WIDE_INT i; } u;
1440 REAL_VALUE_FROM_CONST_DOUBLE (d, op);
1442 u.f = d;
1443 return GEN_INT (u.i);
1445 if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
1446 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
1447 || flag_pretend_float)
1448 && sizeof (double) * 8 == HOST_BITS_PER_WIDE_INT
1449 && GET_MODE_CLASS (mode) == MODE_FLOAT
1450 && GET_MODE_SIZE (mode) == UNITS_PER_WORD
1451 && GET_CODE (op) == CONST_DOUBLE)
1453 double d;
1454 union {double d; HOST_WIDE_INT i; } u;
1456 REAL_VALUE_FROM_CONST_DOUBLE (d, op);
1458 u.d = d;
1459 return GEN_INT (u.i);
1461 #endif /* no REAL_ARITHMETIC */
1463 /* The only remaining cases that we can handle are integers.
1464 Convert to proper endianness now since these cases need it.
1465 At this point, offset == 0 means the low-order word.
1467 We do not want to handle the case when BITS_PER_WORD <= HOST_BITS_PER_INT
1468 in general. However, if OP is (const_int 0), we can just return
1469 it for any word. */
1471 if (op == const0_rtx)
1472 return op;
1474 if (GET_MODE_CLASS (mode) != MODE_INT
1475 || (GET_CODE (op) != CONST_INT && GET_CODE (op) != CONST_DOUBLE)
1476 || BITS_PER_WORD > HOST_BITS_PER_WIDE_INT)
1477 return 0;
1479 if (WORDS_BIG_ENDIAN)
1480 offset = GET_MODE_SIZE (mode) / UNITS_PER_WORD - 1 - offset;
1482 /* Find out which word on the host machine this value is in and get
1483 it from the constant. */
1484 val = (offset / size_ratio == 0
1485 ? (GET_CODE (op) == CONST_INT ? INTVAL (op) : CONST_DOUBLE_LOW (op))
1486 : (GET_CODE (op) == CONST_INT
1487 ? (INTVAL (op) < 0 ? ~0 : 0) : CONST_DOUBLE_HIGH (op)));
1489 /* Get the value we want into the low bits of val. */
1490 if (BITS_PER_WORD < HOST_BITS_PER_WIDE_INT)
1491 val = ((val >> ((offset % size_ratio) * BITS_PER_WORD)));
1493 val = trunc_int_for_mode (val, word_mode);
1495 return GEN_INT (val);
1498 /* Return subword OFFSET of operand OP.
1499 The word number, OFFSET, is interpreted as the word number starting
1500 at the low-order address. OFFSET 0 is the low-order word if not
1501 WORDS_BIG_ENDIAN, otherwise it is the high-order word.
1503 If we cannot extract the required word, we return zero. Otherwise,
1504 an rtx corresponding to the requested word will be returned.
1506 VALIDATE_ADDRESS is nonzero if the address should be validated. Before
1507 reload has completed, a valid address will always be returned. After
1508 reload, if a valid address cannot be returned, we return zero.
1510 If VALIDATE_ADDRESS is zero, we simply form the required address; validating
1511 it is the responsibility of the caller.
1513 MODE is the mode of OP in case it is a CONST_INT.
1515 ??? This is still rather broken for some cases. The problem for the
1516 moment is that all callers of this thing provide no 'goal mode' to
1517 tell us to work with. This exists because all callers were written
1518 in a word based SUBREG world.
1519 Now use of this function can be deprecated by simplify_subreg in most
1520 cases.
1524 operand_subword (op, offset, validate_address, mode)
1525 rtx op;
1526 unsigned int offset;
1527 int validate_address;
1528 enum machine_mode mode;
1530 if (mode == VOIDmode)
1531 mode = GET_MODE (op);
1533 if (mode == VOIDmode)
1534 abort ();
1536 /* If OP is narrower than a word, fail. */
1537 if (mode != BLKmode
1538 && (GET_MODE_SIZE (mode) < UNITS_PER_WORD))
1539 return 0;
1541 /* If we want a word outside OP, return zero. */
1542 if (mode != BLKmode
1543 && (offset + 1) * UNITS_PER_WORD > GET_MODE_SIZE (mode))
1544 return const0_rtx;
1546 /* Form a new MEM at the requested address. */
1547 if (GET_CODE (op) == MEM)
1549 rtx new = adjust_address_nv (op, word_mode, offset * UNITS_PER_WORD);
1551 if (! validate_address)
1552 return new;
1554 else if (reload_completed)
1556 if (! strict_memory_address_p (word_mode, XEXP (new, 0)))
1557 return 0;
1559 else
1560 return replace_equiv_address (new, XEXP (new, 0));
1563 /* Rest can be handled by simplify_subreg. */
1564 return simplify_gen_subreg (word_mode, op, mode, (offset * UNITS_PER_WORD));
1567 /* Similar to `operand_subword', but never return 0. If we can't extract
1568 the required subword, put OP into a register and try again. If that fails,
1569 abort. We always validate the address in this case.
1571 MODE is the mode of OP, in case it is CONST_INT. */
1574 operand_subword_force (op, offset, mode)
1575 rtx op;
1576 unsigned int offset;
1577 enum machine_mode mode;
1579 rtx result = operand_subword (op, offset, 1, mode);
1581 if (result)
1582 return result;
1584 if (mode != BLKmode && mode != VOIDmode)
1586 /* If this is a register which can not be accessed by words, copy it
1587 to a pseudo register. */
1588 if (GET_CODE (op) == REG)
1589 op = copy_to_reg (op);
1590 else
1591 op = force_reg (mode, op);
1594 result = operand_subword (op, offset, 1, mode);
1595 if (result == 0)
1596 abort ();
1598 return result;
1601 /* Given a compare instruction, swap the operands.
1602 A test instruction is changed into a compare of 0 against the operand. */
1604 void
1605 reverse_comparison (insn)
1606 rtx insn;
1608 rtx body = PATTERN (insn);
1609 rtx comp;
1611 if (GET_CODE (body) == SET)
1612 comp = SET_SRC (body);
1613 else
1614 comp = SET_SRC (XVECEXP (body, 0, 0));
1616 if (GET_CODE (comp) == COMPARE)
1618 rtx op0 = XEXP (comp, 0);
1619 rtx op1 = XEXP (comp, 1);
1620 XEXP (comp, 0) = op1;
1621 XEXP (comp, 1) = op0;
1623 else
1625 rtx new = gen_rtx_COMPARE (VOIDmode,
1626 CONST0_RTX (GET_MODE (comp)), comp);
1627 if (GET_CODE (body) == SET)
1628 SET_SRC (body) = new;
1629 else
1630 SET_SRC (XVECEXP (body, 0, 0)) = new;
1635 /* Given REF, a MEM, and T, either the type of X or the expression
1636 corresponding to REF, set the memory attributes. OBJECTP is nonzero
1637 if we are making a new object of this type. */
1639 void
1640 set_mem_attributes (ref, t, objectp)
1641 rtx ref;
1642 tree t;
1643 int objectp;
1645 tree type;
1647 /* It can happen that type_for_mode was given a mode for which there
1648 is no language-level type. In which case it returns NULL, which
1649 we can see here. */
1650 if (t == NULL_TREE)
1651 return;
1653 type = TYPE_P (t) ? t : TREE_TYPE (t);
1655 /* Get the alias set from the expression or type (perhaps using a
1656 front-end routine) and then copy bits from the type. */
1658 /* It is incorrect to set RTX_UNCHANGING_P from TREE_READONLY (type)
1659 here, because, in C and C++, the fact that a location is accessed
1660 through a const expression does not mean that the value there can
1661 never change. */
1663 /* If we have already set DECL_RTL = ref, get_alias_set will get the
1664 wrong answer, as it assumes that DECL_RTL already has the right alias
1665 info. Callers should not set DECL_RTL until after the call to
1666 set_mem_attributes. */
1667 if (DECL_P (t) && ref == DECL_RTL_IF_SET (t))
1668 abort ();
1670 set_mem_alias_set (ref, get_alias_set (t));
1672 MEM_VOLATILE_P (ref) = TYPE_VOLATILE (type);
1673 MEM_IN_STRUCT_P (ref) = AGGREGATE_TYPE_P (type);
1675 /* If we are making an object of this type, we know that it is a scalar if
1676 the type is not an aggregate. */
1677 if (objectp && ! AGGREGATE_TYPE_P (type))
1678 MEM_SCALAR_P (ref) = 1;
1680 /* If T is a type, this is all we can do. Otherwise, we may be able
1681 to deduce some more information about the expression. */
1682 if (TYPE_P (t))
1683 return;
1685 maybe_set_unchanging (ref, t);
1686 if (TREE_THIS_VOLATILE (t))
1687 MEM_VOLATILE_P (ref) = 1;
1689 /* Now see if we can say more about whether it's an aggregate or
1690 scalar. If we already know it's an aggregate, don't bother. */
1691 if (MEM_IN_STRUCT_P (ref))
1692 return;
1694 /* Now remove any NOPs: they don't change what the underlying object is.
1695 Likewise for SAVE_EXPR. */
1696 while (TREE_CODE (t) == NOP_EXPR || TREE_CODE (t) == CONVERT_EXPR
1697 || TREE_CODE (t) == NON_LVALUE_EXPR || TREE_CODE (t) == SAVE_EXPR)
1698 t = TREE_OPERAND (t, 0);
1700 /* Since we already know the type isn't an aggregate, if this is a decl,
1701 it must be a scalar. Or if it is a reference into an aggregate,
1702 this is part of an aggregate. Otherwise we don't know. */
1703 if (DECL_P (t))
1704 MEM_SCALAR_P (ref) = 1;
1705 else if (TREE_CODE (t) == COMPONENT_REF || TREE_CODE (t) == ARRAY_REF
1706 || TREE_CODE (t) == ARRAY_RANGE_REF
1707 || TREE_CODE (t) == BIT_FIELD_REF)
1708 MEM_IN_STRUCT_P (ref) = 1;
1711 /* Set the alias set of MEM to SET. */
1713 void
1714 set_mem_alias_set (mem, set)
1715 rtx mem;
1716 HOST_WIDE_INT set;
1718 /* It would be nice to enable this check, but we can't quite yet. */
1719 #ifdef ENABLE_CHECKING
1720 /* If the new and old alias sets don't conflict, something is wrong. */
1721 if (!alias_sets_conflict_p (set, MEM_ALIAS_SET (mem)))
1722 abort ();
1723 #endif
1725 MEM_ATTRS (mem) = get_mem_attrs (set, MEM_DECL (mem), MEM_OFFSET (mem),
1726 MEM_SIZE (mem), MEM_ALIGN (mem));
1729 /* Return a memory reference like MEMREF, but with its mode changed
1730 to MODE and its address changed to ADDR.
1731 (VOIDmode means don't change the mode.
1732 NULL for ADDR means don't change the address.)
1733 VALIDATE is nonzero if the returned memory location is required to be
1734 valid. */
1737 change_address_1 (memref, mode, addr, validate)
1738 rtx memref;
1739 enum machine_mode mode;
1740 rtx addr;
1741 int validate;
1743 rtx new;
1745 if (GET_CODE (memref) != MEM)
1746 abort ();
1747 if (mode == VOIDmode)
1748 mode = GET_MODE (memref);
1749 if (addr == 0)
1750 addr = XEXP (memref, 0);
1752 if (validate)
1754 if (reload_in_progress || reload_completed)
1756 if (! memory_address_p (mode, addr))
1757 abort ();
1759 else
1760 addr = memory_address (mode, addr);
1763 if (rtx_equal_p (addr, XEXP (memref, 0)) && mode == GET_MODE (memref))
1764 return memref;
1766 new = gen_rtx_MEM (mode, addr);
1767 MEM_COPY_ATTRIBUTES (new, memref);
1768 return new;
1771 /* Return a memory reference like MEMREF, but with its mode changed
1772 to MODE and its address offset by OFFSET bytes. */
1775 adjust_address (memref, mode, offset)
1776 rtx memref;
1777 enum machine_mode mode;
1778 HOST_WIDE_INT offset;
1780 /* For now, this is just a wrapper for change_address, but eventually
1781 will do memref tracking. */
1782 rtx addr = XEXP (memref, 0);
1784 /* ??? Prefer to create garbage instead of creating shared rtl. */
1785 addr = copy_rtx (addr);
1787 /* If MEMREF is a LO_SUM and the offset is within the alignment of the
1788 object, we can merge it into the LO_SUM. */
1789 if (GET_MODE (memref) != BLKmode && GET_CODE (addr) == LO_SUM
1790 && offset >= 0
1791 && (unsigned HOST_WIDE_INT) offset
1792 < GET_MODE_ALIGNMENT (GET_MODE (memref)) / BITS_PER_UNIT)
1793 addr = gen_rtx_LO_SUM (Pmode, XEXP (addr, 0),
1794 plus_constant (XEXP (addr, 1), offset));
1795 else
1796 addr = plus_constant (addr, offset);
1798 return change_address (memref, mode, addr);
1801 /* Likewise, but the reference is not required to be valid. */
1804 adjust_address_nv (memref, mode, offset)
1805 rtx memref;
1806 enum machine_mode mode;
1807 HOST_WIDE_INT offset;
1809 /* For now, this is just a wrapper for change_address, but eventually
1810 will do memref tracking. */
1811 rtx addr = XEXP (memref, 0);
1813 /* If MEMREF is a LO_SUM and the offset is within the size of the
1814 object, we can merge it into the LO_SUM. */
1815 if (GET_MODE (memref) != BLKmode && GET_CODE (addr) == LO_SUM
1816 && offset >= 0
1817 && (unsigned HOST_WIDE_INT) offset
1818 < GET_MODE_ALIGNMENT (GET_MODE (memref)) / BITS_PER_UNIT)
1819 addr = gen_rtx_LO_SUM (mode, XEXP (addr, 0),
1820 plus_constant (XEXP (addr, 1), offset));
1821 else
1822 addr = plus_constant (addr, offset);
1824 return change_address_1 (memref, mode, addr, 0);
1827 /* Return a memory reference like MEMREF, but with its address changed to
1828 ADDR. The caller is asserting that the actual piece of memory pointed
1829 to is the same, just the form of the address is being changed, such as
1830 by putting something into a register. */
1833 replace_equiv_address (memref, addr)
1834 rtx memref;
1835 rtx addr;
1837 /* For now, this is just a wrapper for change_address, but eventually
1838 will do memref tracking. */
1839 return change_address (memref, VOIDmode, addr);
1841 /* Likewise, but the reference is not required to be valid. */
1844 replace_equiv_address_nv (memref, addr)
1845 rtx memref;
1846 rtx addr;
1848 /* For now, this is just a wrapper for change_address, but eventually
1849 will do memref tracking. */
1850 return change_address_1 (memref, VOIDmode, addr, 0);
1853 /* Return a newly created CODE_LABEL rtx with a unique label number. */
1856 gen_label_rtx ()
1858 register rtx label;
1860 label = gen_rtx_CODE_LABEL (VOIDmode, 0, NULL_RTX,
1861 NULL_RTX, label_num++, NULL, NULL);
1863 LABEL_NUSES (label) = 0;
1864 LABEL_ALTERNATE_NAME (label) = NULL;
1865 return label;
1868 /* For procedure integration. */
1870 /* Install new pointers to the first and last insns in the chain.
1871 Also, set cur_insn_uid to one higher than the last in use.
1872 Used for an inline-procedure after copying the insn chain. */
1874 void
1875 set_new_first_and_last_insn (first, last)
1876 rtx first, last;
1878 rtx insn;
1880 first_insn = first;
1881 last_insn = last;
1882 cur_insn_uid = 0;
1884 for (insn = first; insn; insn = NEXT_INSN (insn))
1885 cur_insn_uid = MAX (cur_insn_uid, INSN_UID (insn));
1887 cur_insn_uid++;
1890 /* Set the range of label numbers found in the current function.
1891 This is used when belatedly compiling an inline function. */
1893 void
1894 set_new_first_and_last_label_num (first, last)
1895 int first, last;
1897 base_label_num = label_num;
1898 first_label_num = first;
1899 last_label_num = last;
1902 /* Set the last label number found in the current function.
1903 This is used when belatedly compiling an inline function. */
1905 void
1906 set_new_last_label_num (last)
1907 int last;
1909 base_label_num = label_num;
1910 last_label_num = last;
1913 /* Restore all variables describing the current status from the structure *P.
1914 This is used after a nested function. */
1916 void
1917 restore_emit_status (p)
1918 struct function *p ATTRIBUTE_UNUSED;
1920 last_label_num = 0;
1921 clear_emit_caches ();
1924 /* Clear out all parts of the state in F that can safely be discarded
1925 after the function has been compiled, to let garbage collection
1926 reclaim the memory. */
1928 void
1929 free_emit_status (f)
1930 struct function *f;
1932 free (f->emit->x_regno_reg_rtx);
1933 free (f->emit->regno_pointer_align);
1934 free (f->emit);
1935 f->emit = NULL;
1938 /* Go through all the RTL insn bodies and copy any invalid shared
1939 structure. This routine should only be called once. */
1941 void
1942 unshare_all_rtl (fndecl, insn)
1943 tree fndecl;
1944 rtx insn;
1946 tree decl;
1948 /* Make sure that virtual parameters are not shared. */
1949 for (decl = DECL_ARGUMENTS (fndecl); decl; decl = TREE_CHAIN (decl))
1950 SET_DECL_RTL (decl, copy_rtx_if_shared (DECL_RTL (decl)));
1952 /* Make sure that virtual stack slots are not shared. */
1953 unshare_all_decls (DECL_INITIAL (fndecl));
1955 /* Unshare just about everything else. */
1956 unshare_all_rtl_1 (insn);
1958 /* Make sure the addresses of stack slots found outside the insn chain
1959 (such as, in DECL_RTL of a variable) are not shared
1960 with the insn chain.
1962 This special care is necessary when the stack slot MEM does not
1963 actually appear in the insn chain. If it does appear, its address
1964 is unshared from all else at that point. */
1965 stack_slot_list = copy_rtx_if_shared (stack_slot_list);
1968 /* Go through all the RTL insn bodies and copy any invalid shared
1969 structure, again. This is a fairly expensive thing to do so it
1970 should be done sparingly. */
1972 void
1973 unshare_all_rtl_again (insn)
1974 rtx insn;
1976 rtx p;
1977 tree decl;
1979 for (p = insn; p; p = NEXT_INSN (p))
1980 if (INSN_P (p))
1982 reset_used_flags (PATTERN (p));
1983 reset_used_flags (REG_NOTES (p));
1984 reset_used_flags (LOG_LINKS (p));
1987 /* Make sure that virtual stack slots are not shared. */
1988 reset_used_decls (DECL_INITIAL (cfun->decl));
1990 /* Make sure that virtual parameters are not shared. */
1991 for (decl = DECL_ARGUMENTS (cfun->decl); decl; decl = TREE_CHAIN (decl))
1992 reset_used_flags (DECL_RTL (decl));
1994 reset_used_flags (stack_slot_list);
1996 unshare_all_rtl (cfun->decl, insn);
1999 /* Go through all the RTL insn bodies and copy any invalid shared structure.
2000 Assumes the mark bits are cleared at entry. */
2002 static void
2003 unshare_all_rtl_1 (insn)
2004 rtx insn;
2006 for (; insn; insn = NEXT_INSN (insn))
2007 if (INSN_P (insn))
2009 PATTERN (insn) = copy_rtx_if_shared (PATTERN (insn));
2010 REG_NOTES (insn) = copy_rtx_if_shared (REG_NOTES (insn));
2011 LOG_LINKS (insn) = copy_rtx_if_shared (LOG_LINKS (insn));
2015 /* Go through all virtual stack slots of a function and copy any
2016 shared structure. */
2017 static void
2018 unshare_all_decls (blk)
2019 tree blk;
2021 tree t;
2023 /* Copy shared decls. */
2024 for (t = BLOCK_VARS (blk); t; t = TREE_CHAIN (t))
2025 if (DECL_RTL_SET_P (t))
2026 SET_DECL_RTL (t, copy_rtx_if_shared (DECL_RTL (t)));
2028 /* Now process sub-blocks. */
2029 for (t = BLOCK_SUBBLOCKS (blk); t; t = TREE_CHAIN (t))
2030 unshare_all_decls (t);
2033 /* Go through all virtual stack slots of a function and mark them as
2034 not shared. */
2035 static void
2036 reset_used_decls (blk)
2037 tree blk;
2039 tree t;
2041 /* Mark decls. */
2042 for (t = BLOCK_VARS (blk); t; t = TREE_CHAIN (t))
2043 if (DECL_RTL_SET_P (t))
2044 reset_used_flags (DECL_RTL (t));
2046 /* Now process sub-blocks. */
2047 for (t = BLOCK_SUBBLOCKS (blk); t; t = TREE_CHAIN (t))
2048 reset_used_decls (t);
2051 /* Mark ORIG as in use, and return a copy of it if it was already in use.
2052 Recursively does the same for subexpressions. */
2055 copy_rtx_if_shared (orig)
2056 rtx orig;
2058 register rtx x = orig;
2059 register int i;
2060 register enum rtx_code code;
2061 register const char *format_ptr;
2062 int copied = 0;
2064 if (x == 0)
2065 return 0;
2067 code = GET_CODE (x);
2069 /* These types may be freely shared. */
2071 switch (code)
2073 case REG:
2074 case QUEUED:
2075 case CONST_INT:
2076 case CONST_DOUBLE:
2077 case SYMBOL_REF:
2078 case CODE_LABEL:
2079 case PC:
2080 case CC0:
2081 case SCRATCH:
2082 /* SCRATCH must be shared because they represent distinct values. */
2083 return x;
2085 case CONST:
2086 /* CONST can be shared if it contains a SYMBOL_REF. If it contains
2087 a LABEL_REF, it isn't sharable. */
2088 if (GET_CODE (XEXP (x, 0)) == PLUS
2089 && GET_CODE (XEXP (XEXP (x, 0), 0)) == SYMBOL_REF
2090 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT)
2091 return x;
2092 break;
2094 case INSN:
2095 case JUMP_INSN:
2096 case CALL_INSN:
2097 case NOTE:
2098 case BARRIER:
2099 /* The chain of insns is not being copied. */
2100 return x;
2102 case MEM:
2103 /* A MEM is allowed to be shared if its address is constant.
2105 We used to allow sharing of MEMs which referenced
2106 virtual_stack_vars_rtx or virtual_incoming_args_rtx, but
2107 that can lose. instantiate_virtual_regs will not unshare
2108 the MEMs, and combine may change the structure of the address
2109 because it looks safe and profitable in one context, but
2110 in some other context it creates unrecognizable RTL. */
2111 if (CONSTANT_ADDRESS_P (XEXP (x, 0)))
2112 return x;
2114 break;
2116 default:
2117 break;
2120 /* This rtx may not be shared. If it has already been seen,
2121 replace it with a copy of itself. */
2123 if (x->used)
2125 register rtx copy;
2127 copy = rtx_alloc (code);
2128 memcpy (copy, x,
2129 (sizeof (*copy) - sizeof (copy->fld)
2130 + sizeof (copy->fld[0]) * GET_RTX_LENGTH (code)));
2131 x = copy;
2132 copied = 1;
2134 x->used = 1;
2136 /* Now scan the subexpressions recursively.
2137 We can store any replaced subexpressions directly into X
2138 since we know X is not shared! Any vectors in X
2139 must be copied if X was copied. */
2141 format_ptr = GET_RTX_FORMAT (code);
2143 for (i = 0; i < GET_RTX_LENGTH (code); i++)
2145 switch (*format_ptr++)
2147 case 'e':
2148 XEXP (x, i) = copy_rtx_if_shared (XEXP (x, i));
2149 break;
2151 case 'E':
2152 if (XVEC (x, i) != NULL)
2154 register int j;
2155 int len = XVECLEN (x, i);
2157 if (copied && len > 0)
2158 XVEC (x, i) = gen_rtvec_v (len, XVEC (x, i)->elem);
2159 for (j = 0; j < len; j++)
2160 XVECEXP (x, i, j) = copy_rtx_if_shared (XVECEXP (x, i, j));
2162 break;
2165 return x;
2168 /* Clear all the USED bits in X to allow copy_rtx_if_shared to be used
2169 to look for shared sub-parts. */
2171 void
2172 reset_used_flags (x)
2173 rtx x;
2175 register int i, j;
2176 register enum rtx_code code;
2177 register const char *format_ptr;
2179 if (x == 0)
2180 return;
2182 code = GET_CODE (x);
2184 /* These types may be freely shared so we needn't do any resetting
2185 for them. */
2187 switch (code)
2189 case REG:
2190 case QUEUED:
2191 case CONST_INT:
2192 case CONST_DOUBLE:
2193 case SYMBOL_REF:
2194 case CODE_LABEL:
2195 case PC:
2196 case CC0:
2197 return;
2199 case INSN:
2200 case JUMP_INSN:
2201 case CALL_INSN:
2202 case NOTE:
2203 case LABEL_REF:
2204 case BARRIER:
2205 /* The chain of insns is not being copied. */
2206 return;
2208 default:
2209 break;
2212 x->used = 0;
2214 format_ptr = GET_RTX_FORMAT (code);
2215 for (i = 0; i < GET_RTX_LENGTH (code); i++)
2217 switch (*format_ptr++)
2219 case 'e':
2220 reset_used_flags (XEXP (x, i));
2221 break;
2223 case 'E':
2224 for (j = 0; j < XVECLEN (x, i); j++)
2225 reset_used_flags (XVECEXP (x, i, j));
2226 break;
2231 /* Copy X if necessary so that it won't be altered by changes in OTHER.
2232 Return X or the rtx for the pseudo reg the value of X was copied into.
2233 OTHER must be valid as a SET_DEST. */
2236 make_safe_from (x, other)
2237 rtx x, other;
2239 while (1)
2240 switch (GET_CODE (other))
2242 case SUBREG:
2243 other = SUBREG_REG (other);
2244 break;
2245 case STRICT_LOW_PART:
2246 case SIGN_EXTEND:
2247 case ZERO_EXTEND:
2248 other = XEXP (other, 0);
2249 break;
2250 default:
2251 goto done;
2253 done:
2254 if ((GET_CODE (other) == MEM
2255 && ! CONSTANT_P (x)
2256 && GET_CODE (x) != REG
2257 && GET_CODE (x) != SUBREG)
2258 || (GET_CODE (other) == REG
2259 && (REGNO (other) < FIRST_PSEUDO_REGISTER
2260 || reg_mentioned_p (other, x))))
2262 rtx temp = gen_reg_rtx (GET_MODE (x));
2263 emit_move_insn (temp, x);
2264 return temp;
2266 return x;
2269 /* Emission of insns (adding them to the doubly-linked list). */
2271 /* Return the first insn of the current sequence or current function. */
2274 get_insns ()
2276 return first_insn;
2279 /* Return the last insn emitted in current sequence or current function. */
2282 get_last_insn ()
2284 return last_insn;
2287 /* Specify a new insn as the last in the chain. */
2289 void
2290 set_last_insn (insn)
2291 rtx insn;
2293 if (NEXT_INSN (insn) != 0)
2294 abort ();
2295 last_insn = insn;
2298 /* Return the last insn emitted, even if it is in a sequence now pushed. */
2301 get_last_insn_anywhere ()
2303 struct sequence_stack *stack;
2304 if (last_insn)
2305 return last_insn;
2306 for (stack = seq_stack; stack; stack = stack->next)
2307 if (stack->last != 0)
2308 return stack->last;
2309 return 0;
2312 /* Return a number larger than any instruction's uid in this function. */
2315 get_max_uid ()
2317 return cur_insn_uid;
2320 /* Renumber instructions so that no instruction UIDs are wasted. */
2322 void
2323 renumber_insns (stream)
2324 FILE *stream;
2326 rtx insn;
2328 /* If we're not supposed to renumber instructions, don't. */
2329 if (!flag_renumber_insns)
2330 return;
2332 /* If there aren't that many instructions, then it's not really
2333 worth renumbering them. */
2334 if (flag_renumber_insns == 1 && get_max_uid () < 25000)
2335 return;
2337 cur_insn_uid = 1;
2339 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
2341 if (stream)
2342 fprintf (stream, "Renumbering insn %d to %d\n",
2343 INSN_UID (insn), cur_insn_uid);
2344 INSN_UID (insn) = cur_insn_uid++;
2348 /* Return the next insn. If it is a SEQUENCE, return the first insn
2349 of the sequence. */
2352 next_insn (insn)
2353 rtx insn;
2355 if (insn)
2357 insn = NEXT_INSN (insn);
2358 if (insn && GET_CODE (insn) == INSN
2359 && GET_CODE (PATTERN (insn)) == SEQUENCE)
2360 insn = XVECEXP (PATTERN (insn), 0, 0);
2363 return insn;
2366 /* Return the previous insn. If it is a SEQUENCE, return the last insn
2367 of the sequence. */
2370 previous_insn (insn)
2371 rtx insn;
2373 if (insn)
2375 insn = PREV_INSN (insn);
2376 if (insn && GET_CODE (insn) == INSN
2377 && GET_CODE (PATTERN (insn)) == SEQUENCE)
2378 insn = XVECEXP (PATTERN (insn), 0, XVECLEN (PATTERN (insn), 0) - 1);
2381 return insn;
2384 /* Return the next insn after INSN that is not a NOTE. This routine does not
2385 look inside SEQUENCEs. */
2388 next_nonnote_insn (insn)
2389 rtx insn;
2391 while (insn)
2393 insn = NEXT_INSN (insn);
2394 if (insn == 0 || GET_CODE (insn) != NOTE)
2395 break;
2398 return insn;
2401 /* Return the previous insn before INSN that is not a NOTE. This routine does
2402 not look inside SEQUENCEs. */
2405 prev_nonnote_insn (insn)
2406 rtx insn;
2408 while (insn)
2410 insn = PREV_INSN (insn);
2411 if (insn == 0 || GET_CODE (insn) != NOTE)
2412 break;
2415 return insn;
2418 /* Return the next INSN, CALL_INSN or JUMP_INSN after INSN;
2419 or 0, if there is none. This routine does not look inside
2420 SEQUENCEs. */
2423 next_real_insn (insn)
2424 rtx insn;
2426 while (insn)
2428 insn = NEXT_INSN (insn);
2429 if (insn == 0 || GET_CODE (insn) == INSN
2430 || GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == JUMP_INSN)
2431 break;
2434 return insn;
2437 /* Return the last INSN, CALL_INSN or JUMP_INSN before INSN;
2438 or 0, if there is none. This routine does not look inside
2439 SEQUENCEs. */
2442 prev_real_insn (insn)
2443 rtx insn;
2445 while (insn)
2447 insn = PREV_INSN (insn);
2448 if (insn == 0 || GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN
2449 || GET_CODE (insn) == JUMP_INSN)
2450 break;
2453 return insn;
2456 /* Find the next insn after INSN that really does something. This routine
2457 does not look inside SEQUENCEs. Until reload has completed, this is the
2458 same as next_real_insn. */
2461 active_insn_p (insn)
2462 rtx insn;
2464 return (GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == JUMP_INSN
2465 || (GET_CODE (insn) == INSN
2466 && (! reload_completed
2467 || (GET_CODE (PATTERN (insn)) != USE
2468 && GET_CODE (PATTERN (insn)) != CLOBBER))));
2472 next_active_insn (insn)
2473 rtx insn;
2475 while (insn)
2477 insn = NEXT_INSN (insn);
2478 if (insn == 0 || active_insn_p (insn))
2479 break;
2482 return insn;
2485 /* Find the last insn before INSN that really does something. This routine
2486 does not look inside SEQUENCEs. Until reload has completed, this is the
2487 same as prev_real_insn. */
2490 prev_active_insn (insn)
2491 rtx insn;
2493 while (insn)
2495 insn = PREV_INSN (insn);
2496 if (insn == 0 || active_insn_p (insn))
2497 break;
2500 return insn;
2503 /* Return the next CODE_LABEL after the insn INSN, or 0 if there is none. */
2506 next_label (insn)
2507 rtx insn;
2509 while (insn)
2511 insn = NEXT_INSN (insn);
2512 if (insn == 0 || GET_CODE (insn) == CODE_LABEL)
2513 break;
2516 return insn;
2519 /* Return the last CODE_LABEL before the insn INSN, or 0 if there is none. */
2522 prev_label (insn)
2523 rtx insn;
2525 while (insn)
2527 insn = PREV_INSN (insn);
2528 if (insn == 0 || GET_CODE (insn) == CODE_LABEL)
2529 break;
2532 return insn;
2535 #ifdef HAVE_cc0
2536 /* INSN uses CC0 and is being moved into a delay slot. Set up REG_CC_SETTER
2537 and REG_CC_USER notes so we can find it. */
2539 void
2540 link_cc0_insns (insn)
2541 rtx insn;
2543 rtx user = next_nonnote_insn (insn);
2545 if (GET_CODE (user) == INSN && GET_CODE (PATTERN (user)) == SEQUENCE)
2546 user = XVECEXP (PATTERN (user), 0, 0);
2548 REG_NOTES (user) = gen_rtx_INSN_LIST (REG_CC_SETTER, insn,
2549 REG_NOTES (user));
2550 REG_NOTES (insn) = gen_rtx_INSN_LIST (REG_CC_USER, user, REG_NOTES (insn));
2553 /* Return the next insn that uses CC0 after INSN, which is assumed to
2554 set it. This is the inverse of prev_cc0_setter (i.e., prev_cc0_setter
2555 applied to the result of this function should yield INSN).
2557 Normally, this is simply the next insn. However, if a REG_CC_USER note
2558 is present, it contains the insn that uses CC0.
2560 Return 0 if we can't find the insn. */
2563 next_cc0_user (insn)
2564 rtx insn;
2566 rtx note = find_reg_note (insn, REG_CC_USER, NULL_RTX);
2568 if (note)
2569 return XEXP (note, 0);
2571 insn = next_nonnote_insn (insn);
2572 if (insn && GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
2573 insn = XVECEXP (PATTERN (insn), 0, 0);
2575 if (insn && INSN_P (insn) && reg_mentioned_p (cc0_rtx, PATTERN (insn)))
2576 return insn;
2578 return 0;
2581 /* Find the insn that set CC0 for INSN. Unless INSN has a REG_CC_SETTER
2582 note, it is the previous insn. */
2585 prev_cc0_setter (insn)
2586 rtx insn;
2588 rtx note = find_reg_note (insn, REG_CC_SETTER, NULL_RTX);
2590 if (note)
2591 return XEXP (note, 0);
2593 insn = prev_nonnote_insn (insn);
2594 if (! sets_cc0_p (PATTERN (insn)))
2595 abort ();
2597 return insn;
2599 #endif
2601 /* Increment the label uses for all labels present in rtx. */
2603 static void
2604 mark_label_nuses(x)
2605 rtx x;
2607 register enum rtx_code code;
2608 register int i, j;
2609 register const char *fmt;
2611 code = GET_CODE (x);
2612 if (code == LABEL_REF)
2613 LABEL_NUSES (XEXP (x, 0))++;
2615 fmt = GET_RTX_FORMAT (code);
2616 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2618 if (fmt[i] == 'e')
2619 mark_label_nuses (XEXP (x, i));
2620 else if (fmt[i] == 'E')
2621 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2622 mark_label_nuses (XVECEXP (x, i, j));
2627 /* Try splitting insns that can be split for better scheduling.
2628 PAT is the pattern which might split.
2629 TRIAL is the insn providing PAT.
2630 LAST is non-zero if we should return the last insn of the sequence produced.
2632 If this routine succeeds in splitting, it returns the first or last
2633 replacement insn depending on the value of LAST. Otherwise, it
2634 returns TRIAL. If the insn to be returned can be split, it will be. */
2637 try_split (pat, trial, last)
2638 rtx pat, trial;
2639 int last;
2641 rtx before = PREV_INSN (trial);
2642 rtx after = NEXT_INSN (trial);
2643 int has_barrier = 0;
2644 rtx tem;
2645 rtx note, seq;
2646 int probability;
2648 if (any_condjump_p (trial)
2649 && (note = find_reg_note (trial, REG_BR_PROB, 0)))
2650 split_branch_probability = INTVAL (XEXP (note, 0));
2651 probability = split_branch_probability;
2653 seq = split_insns (pat, trial);
2655 split_branch_probability = -1;
2657 /* If we are splitting a JUMP_INSN, it might be followed by a BARRIER.
2658 We may need to handle this specially. */
2659 if (after && GET_CODE (after) == BARRIER)
2661 has_barrier = 1;
2662 after = NEXT_INSN (after);
2665 if (seq)
2667 /* SEQ can either be a SEQUENCE or the pattern of a single insn.
2668 The latter case will normally arise only when being done so that
2669 it, in turn, will be split (SFmode on the 29k is an example). */
2670 if (GET_CODE (seq) == SEQUENCE)
2672 int i, njumps = 0;
2674 /* Avoid infinite loop if any insn of the result matches
2675 the original pattern. */
2676 for (i = 0; i < XVECLEN (seq, 0); i++)
2677 if (GET_CODE (XVECEXP (seq, 0, i)) == INSN
2678 && rtx_equal_p (PATTERN (XVECEXP (seq, 0, i)), pat))
2679 return trial;
2681 /* Mark labels. */
2682 for (i = XVECLEN (seq, 0) - 1; i >= 0; i--)
2683 if (GET_CODE (XVECEXP (seq, 0, i)) == JUMP_INSN)
2685 rtx insn = XVECEXP (seq, 0, i);
2686 mark_jump_label (PATTERN (insn),
2687 XVECEXP (seq, 0, i), 0);
2688 njumps++;
2689 if (probability != -1
2690 && any_condjump_p (insn)
2691 && !find_reg_note (insn, REG_BR_PROB, 0))
2693 /* We can preserve the REG_BR_PROB notes only if exactly
2694 one jump is created, otherwise the machinde description
2695 is responsible for this step using
2696 split_branch_probability variable. */
2697 if (njumps != 1)
2698 abort ();
2699 REG_NOTES (insn)
2700 = gen_rtx_EXPR_LIST (REG_BR_PROB,
2701 GEN_INT (probability),
2702 REG_NOTES (insn));
2706 /* If we are splitting a CALL_INSN, look for the CALL_INSN
2707 in SEQ and copy our CALL_INSN_FUNCTION_USAGE to it. */
2708 if (GET_CODE (trial) == CALL_INSN)
2709 for (i = XVECLEN (seq, 0) - 1; i >= 0; i--)
2710 if (GET_CODE (XVECEXP (seq, 0, i)) == CALL_INSN)
2711 CALL_INSN_FUNCTION_USAGE (XVECEXP (seq, 0, i))
2712 = CALL_INSN_FUNCTION_USAGE (trial);
2714 /* Copy notes, particularly those related to the CFG. */
2715 for (note = REG_NOTES (trial); note ; note = XEXP (note, 1))
2717 switch (REG_NOTE_KIND (note))
2719 case REG_EH_REGION:
2720 for (i = XVECLEN (seq, 0) - 1; i >= 0; i--)
2722 rtx insn = XVECEXP (seq, 0, i);
2723 if (GET_CODE (insn) == CALL_INSN
2724 || (flag_non_call_exceptions
2725 && may_trap_p (PATTERN (insn))))
2726 REG_NOTES (insn)
2727 = gen_rtx_EXPR_LIST (REG_EH_REGION,
2728 XEXP (note, 0),
2729 REG_NOTES (insn));
2731 break;
2733 case REG_NORETURN:
2734 case REG_SETJMP:
2735 case REG_ALWAYS_RETURN:
2736 for (i = XVECLEN (seq, 0) - 1; i >= 0; i--)
2738 rtx insn = XVECEXP (seq, 0, i);
2739 if (GET_CODE (insn) == CALL_INSN)
2740 REG_NOTES (insn)
2741 = gen_rtx_EXPR_LIST (REG_NOTE_KIND (note),
2742 XEXP (note, 0),
2743 REG_NOTES (insn));
2745 break;
2747 case REG_NON_LOCAL_GOTO:
2748 for (i = XVECLEN (seq, 0) - 1; i >= 0; i--)
2750 rtx insn = XVECEXP (seq, 0, i);
2751 if (GET_CODE (insn) == JUMP_INSN)
2752 REG_NOTES (insn)
2753 = gen_rtx_EXPR_LIST (REG_NOTE_KIND (note),
2754 XEXP (note, 0),
2755 REG_NOTES (insn));
2757 break;
2759 default:
2760 break;
2764 /* If there are LABELS inside the split insns increment the
2765 usage count so we don't delete the label. */
2766 if (GET_CODE (trial) == INSN)
2767 for (i = XVECLEN (seq, 0) - 1; i >= 0; i--)
2768 if (GET_CODE (XVECEXP (seq, 0, i)) == INSN)
2769 mark_label_nuses (PATTERN (XVECEXP (seq, 0, i)));
2771 tem = emit_insn_after (seq, trial);
2773 delete_related_insns (trial);
2774 if (has_barrier)
2775 emit_barrier_after (tem);
2777 /* Recursively call try_split for each new insn created; by the
2778 time control returns here that insn will be fully split, so
2779 set LAST and continue from the insn after the one returned.
2780 We can't use next_active_insn here since AFTER may be a note.
2781 Ignore deleted insns, which can be occur if not optimizing. */
2782 for (tem = NEXT_INSN (before); tem != after; tem = NEXT_INSN (tem))
2783 if (! INSN_DELETED_P (tem) && INSN_P (tem))
2784 tem = try_split (PATTERN (tem), tem, 1);
2786 /* Avoid infinite loop if the result matches the original pattern. */
2787 else if (rtx_equal_p (seq, pat))
2788 return trial;
2789 else
2791 PATTERN (trial) = seq;
2792 INSN_CODE (trial) = -1;
2793 try_split (seq, trial, last);
2796 /* Return either the first or the last insn, depending on which was
2797 requested. */
2798 return last
2799 ? (after ? PREV_INSN (after) : last_insn)
2800 : NEXT_INSN (before);
2803 return trial;
2806 /* Make and return an INSN rtx, initializing all its slots.
2807 Store PATTERN in the pattern slots. */
2810 make_insn_raw (pattern)
2811 rtx pattern;
2813 register rtx insn;
2815 insn = rtx_alloc (INSN);
2817 INSN_UID (insn) = cur_insn_uid++;
2818 PATTERN (insn) = pattern;
2819 INSN_CODE (insn) = -1;
2820 LOG_LINKS (insn) = NULL;
2821 REG_NOTES (insn) = NULL;
2823 #ifdef ENABLE_RTL_CHECKING
2824 if (insn
2825 && INSN_P (insn)
2826 && (returnjump_p (insn)
2827 || (GET_CODE (insn) == SET
2828 && SET_DEST (insn) == pc_rtx)))
2830 warning ("ICE: emit_insn used where emit_jump_insn needed:\n");
2831 debug_rtx (insn);
2833 #endif
2835 return insn;
2838 /* Like `make_insn' but make a JUMP_INSN instead of an insn. */
2840 static rtx
2841 make_jump_insn_raw (pattern)
2842 rtx pattern;
2844 register rtx insn;
2846 insn = rtx_alloc (JUMP_INSN);
2847 INSN_UID (insn) = cur_insn_uid++;
2849 PATTERN (insn) = pattern;
2850 INSN_CODE (insn) = -1;
2851 LOG_LINKS (insn) = NULL;
2852 REG_NOTES (insn) = NULL;
2853 JUMP_LABEL (insn) = NULL;
2855 return insn;
2858 /* Like `make_insn' but make a CALL_INSN instead of an insn. */
2860 static rtx
2861 make_call_insn_raw (pattern)
2862 rtx pattern;
2864 register rtx insn;
2866 insn = rtx_alloc (CALL_INSN);
2867 INSN_UID (insn) = cur_insn_uid++;
2869 PATTERN (insn) = pattern;
2870 INSN_CODE (insn) = -1;
2871 LOG_LINKS (insn) = NULL;
2872 REG_NOTES (insn) = NULL;
2873 CALL_INSN_FUNCTION_USAGE (insn) = NULL;
2875 return insn;
2878 /* Add INSN to the end of the doubly-linked list.
2879 INSN may be an INSN, JUMP_INSN, CALL_INSN, CODE_LABEL, BARRIER or NOTE. */
2881 void
2882 add_insn (insn)
2883 register rtx insn;
2885 PREV_INSN (insn) = last_insn;
2886 NEXT_INSN (insn) = 0;
2888 if (NULL != last_insn)
2889 NEXT_INSN (last_insn) = insn;
2891 if (NULL == first_insn)
2892 first_insn = insn;
2894 last_insn = insn;
2897 /* Add INSN into the doubly-linked list after insn AFTER. This and
2898 the next should be the only functions called to insert an insn once
2899 delay slots have been filled since only they know how to update a
2900 SEQUENCE. */
2902 void
2903 add_insn_after (insn, after)
2904 rtx insn, after;
2906 rtx next = NEXT_INSN (after);
2907 basic_block bb;
2909 if (optimize && INSN_DELETED_P (after))
2910 abort ();
2912 NEXT_INSN (insn) = next;
2913 PREV_INSN (insn) = after;
2915 if (next)
2917 PREV_INSN (next) = insn;
2918 if (GET_CODE (next) == INSN && GET_CODE (PATTERN (next)) == SEQUENCE)
2919 PREV_INSN (XVECEXP (PATTERN (next), 0, 0)) = insn;
2921 else if (last_insn == after)
2922 last_insn = insn;
2923 else
2925 struct sequence_stack *stack = seq_stack;
2926 /* Scan all pending sequences too. */
2927 for (; stack; stack = stack->next)
2928 if (after == stack->last)
2930 stack->last = insn;
2931 break;
2934 if (stack == 0)
2935 abort ();
2938 if (basic_block_for_insn
2939 && (unsigned int)INSN_UID (after) < basic_block_for_insn->num_elements
2940 && (bb = BLOCK_FOR_INSN (after)))
2942 set_block_for_insn (insn, bb);
2943 /* Should not happen as first in the BB is always
2944 eigther NOTE or LABEL. */
2945 if (bb->end == after
2946 /* Avoid clobbering of structure when creating new BB. */
2947 && GET_CODE (insn) != BARRIER
2948 && (GET_CODE (insn) != NOTE
2949 || NOTE_LINE_NUMBER (insn) != NOTE_INSN_BASIC_BLOCK))
2950 bb->end = insn;
2953 NEXT_INSN (after) = insn;
2954 if (GET_CODE (after) == INSN && GET_CODE (PATTERN (after)) == SEQUENCE)
2956 rtx sequence = PATTERN (after);
2957 NEXT_INSN (XVECEXP (sequence, 0, XVECLEN (sequence, 0) - 1)) = insn;
2961 /* Add INSN into the doubly-linked list before insn BEFORE. This and
2962 the previous should be the only functions called to insert an insn once
2963 delay slots have been filled since only they know how to update a
2964 SEQUENCE. */
2966 void
2967 add_insn_before (insn, before)
2968 rtx insn, before;
2970 rtx prev = PREV_INSN (before);
2971 basic_block bb;
2973 if (optimize && INSN_DELETED_P (before))
2974 abort ();
2976 PREV_INSN (insn) = prev;
2977 NEXT_INSN (insn) = before;
2979 if (prev)
2981 NEXT_INSN (prev) = insn;
2982 if (GET_CODE (prev) == INSN && GET_CODE (PATTERN (prev)) == SEQUENCE)
2984 rtx sequence = PATTERN (prev);
2985 NEXT_INSN (XVECEXP (sequence, 0, XVECLEN (sequence, 0) - 1)) = insn;
2988 else if (first_insn == before)
2989 first_insn = insn;
2990 else
2992 struct sequence_stack *stack = seq_stack;
2993 /* Scan all pending sequences too. */
2994 for (; stack; stack = stack->next)
2995 if (before == stack->first)
2997 stack->first = insn;
2998 break;
3001 if (stack == 0)
3002 abort ();
3005 if (basic_block_for_insn
3006 && (unsigned int)INSN_UID (before) < basic_block_for_insn->num_elements
3007 && (bb = BLOCK_FOR_INSN (before)))
3009 set_block_for_insn (insn, bb);
3010 /* Should not happen as first in the BB is always
3011 eigther NOTE or LABEl. */
3012 if (bb->head == insn
3013 /* Avoid clobbering of structure when creating new BB. */
3014 && GET_CODE (insn) != BARRIER
3015 && (GET_CODE (insn) != NOTE
3016 || NOTE_LINE_NUMBER (insn) != NOTE_INSN_BASIC_BLOCK))
3017 abort ();
3020 PREV_INSN (before) = insn;
3021 if (GET_CODE (before) == INSN && GET_CODE (PATTERN (before)) == SEQUENCE)
3022 PREV_INSN (XVECEXP (PATTERN (before), 0, 0)) = insn;
3025 /* Remove an insn from its doubly-linked list. This function knows how
3026 to handle sequences. */
3027 void
3028 remove_insn (insn)
3029 rtx insn;
3031 rtx next = NEXT_INSN (insn);
3032 rtx prev = PREV_INSN (insn);
3033 basic_block bb;
3035 if (prev)
3037 NEXT_INSN (prev) = next;
3038 if (GET_CODE (prev) == INSN && GET_CODE (PATTERN (prev)) == SEQUENCE)
3040 rtx sequence = PATTERN (prev);
3041 NEXT_INSN (XVECEXP (sequence, 0, XVECLEN (sequence, 0) - 1)) = next;
3044 else if (first_insn == insn)
3045 first_insn = next;
3046 else
3048 struct sequence_stack *stack = seq_stack;
3049 /* Scan all pending sequences too. */
3050 for (; stack; stack = stack->next)
3051 if (insn == stack->first)
3053 stack->first = next;
3054 break;
3057 if (stack == 0)
3058 abort ();
3061 if (next)
3063 PREV_INSN (next) = prev;
3064 if (GET_CODE (next) == INSN && GET_CODE (PATTERN (next)) == SEQUENCE)
3065 PREV_INSN (XVECEXP (PATTERN (next), 0, 0)) = prev;
3067 else if (last_insn == insn)
3068 last_insn = prev;
3069 else
3071 struct sequence_stack *stack = seq_stack;
3072 /* Scan all pending sequences too. */
3073 for (; stack; stack = stack->next)
3074 if (insn == stack->last)
3076 stack->last = prev;
3077 break;
3080 if (stack == 0)
3081 abort ();
3083 if (basic_block_for_insn
3084 && (unsigned int)INSN_UID (insn) < basic_block_for_insn->num_elements
3085 && (bb = BLOCK_FOR_INSN (insn)))
3087 if (bb->head == insn)
3089 /* Never ever delete the basic block note without deleting whole basic
3090 block. */
3091 if (GET_CODE (insn) == NOTE)
3092 abort ();
3093 bb->head = next;
3095 if (bb->end == insn)
3096 bb->end = prev;
3100 /* Delete all insns made since FROM.
3101 FROM becomes the new last instruction. */
3103 void
3104 delete_insns_since (from)
3105 rtx from;
3107 if (from == 0)
3108 first_insn = 0;
3109 else
3110 NEXT_INSN (from) = 0;
3111 last_insn = from;
3114 /* This function is deprecated, please use sequences instead.
3116 Move a consecutive bunch of insns to a different place in the chain.
3117 The insns to be moved are those between FROM and TO.
3118 They are moved to a new position after the insn AFTER.
3119 AFTER must not be FROM or TO or any insn in between.
3121 This function does not know about SEQUENCEs and hence should not be
3122 called after delay-slot filling has been done. */
3124 void
3125 reorder_insns_nobb (from, to, after)
3126 rtx from, to, after;
3128 /* Splice this bunch out of where it is now. */
3129 if (PREV_INSN (from))
3130 NEXT_INSN (PREV_INSN (from)) = NEXT_INSN (to);
3131 if (NEXT_INSN (to))
3132 PREV_INSN (NEXT_INSN (to)) = PREV_INSN (from);
3133 if (last_insn == to)
3134 last_insn = PREV_INSN (from);
3135 if (first_insn == from)
3136 first_insn = NEXT_INSN (to);
3138 /* Make the new neighbors point to it and it to them. */
3139 if (NEXT_INSN (after))
3140 PREV_INSN (NEXT_INSN (after)) = to;
3142 NEXT_INSN (to) = NEXT_INSN (after);
3143 PREV_INSN (from) = after;
3144 NEXT_INSN (after) = from;
3145 if (after == last_insn)
3146 last_insn = to;
3149 /* Same as function above, but take care to update BB boundaries. */
3150 void
3151 reorder_insns (from, to, after)
3152 rtx from, to, after;
3154 rtx prev = PREV_INSN (from);
3155 basic_block bb, bb2;
3157 reorder_insns_nobb (from, to, after);
3159 if (basic_block_for_insn
3160 && (unsigned int)INSN_UID (after) < basic_block_for_insn->num_elements
3161 && (bb = BLOCK_FOR_INSN (after)))
3163 rtx x;
3165 if (basic_block_for_insn
3166 && (unsigned int)INSN_UID (from) < basic_block_for_insn->num_elements
3167 && (bb2 = BLOCK_FOR_INSN (from)))
3169 if (bb2->end == to)
3170 bb2->end = prev;
3173 if (bb->end == after)
3174 bb->end = to;
3176 for (x = from; x != NEXT_INSN (to); x = NEXT_INSN (x))
3177 set_block_for_insn (x, bb);
3181 /* Return the line note insn preceding INSN. */
3183 static rtx
3184 find_line_note (insn)
3185 rtx insn;
3187 if (no_line_numbers)
3188 return 0;
3190 for (; insn; insn = PREV_INSN (insn))
3191 if (GET_CODE (insn) == NOTE
3192 && NOTE_LINE_NUMBER (insn) >= 0)
3193 break;
3195 return insn;
3198 /* Like reorder_insns, but inserts line notes to preserve the line numbers
3199 of the moved insns when debugging. This may insert a note between AFTER
3200 and FROM, and another one after TO. */
3202 void
3203 reorder_insns_with_line_notes (from, to, after)
3204 rtx from, to, after;
3206 rtx from_line = find_line_note (from);
3207 rtx after_line = find_line_note (after);
3209 reorder_insns (from, to, after);
3211 if (from_line == after_line)
3212 return;
3214 if (from_line)
3215 emit_line_note_after (NOTE_SOURCE_FILE (from_line),
3216 NOTE_LINE_NUMBER (from_line),
3217 after);
3218 if (after_line)
3219 emit_line_note_after (NOTE_SOURCE_FILE (after_line),
3220 NOTE_LINE_NUMBER (after_line),
3221 to);
3224 /* Remove unnecessary notes from the instruction stream. */
3226 void
3227 remove_unnecessary_notes ()
3229 rtx block_stack = NULL_RTX;
3230 rtx eh_stack = NULL_RTX;
3231 rtx insn;
3232 rtx next;
3233 rtx tmp;
3235 /* We must not remove the first instruction in the function because
3236 the compiler depends on the first instruction being a note. */
3237 for (insn = NEXT_INSN (get_insns ()); insn; insn = next)
3239 /* Remember what's next. */
3240 next = NEXT_INSN (insn);
3242 /* We're only interested in notes. */
3243 if (GET_CODE (insn) != NOTE)
3244 continue;
3246 switch (NOTE_LINE_NUMBER (insn))
3248 case NOTE_INSN_DELETED:
3249 remove_insn (insn);
3250 break;
3252 case NOTE_INSN_EH_REGION_BEG:
3253 eh_stack = alloc_INSN_LIST (insn, eh_stack);
3254 break;
3256 case NOTE_INSN_EH_REGION_END:
3257 /* Too many end notes. */
3258 if (eh_stack == NULL_RTX)
3259 abort ();
3260 /* Mismatched nesting. */
3261 if (NOTE_EH_HANDLER (XEXP (eh_stack, 0)) != NOTE_EH_HANDLER (insn))
3262 abort ();
3263 tmp = eh_stack;
3264 eh_stack = XEXP (eh_stack, 1);
3265 free_INSN_LIST_node (tmp);
3266 break;
3268 case NOTE_INSN_BLOCK_BEG:
3269 /* By now, all notes indicating lexical blocks should have
3270 NOTE_BLOCK filled in. */
3271 if (NOTE_BLOCK (insn) == NULL_TREE)
3272 abort ();
3273 block_stack = alloc_INSN_LIST (insn, block_stack);
3274 break;
3276 case NOTE_INSN_BLOCK_END:
3277 /* Too many end notes. */
3278 if (block_stack == NULL_RTX)
3279 abort ();
3280 /* Mismatched nesting. */
3281 if (NOTE_BLOCK (XEXP (block_stack, 0)) != NOTE_BLOCK (insn))
3282 abort ();
3283 tmp = block_stack;
3284 block_stack = XEXP (block_stack, 1);
3285 free_INSN_LIST_node (tmp);
3287 /* Scan back to see if there are any non-note instructions
3288 between INSN and the beginning of this block. If not,
3289 then there is no PC range in the generated code that will
3290 actually be in this block, so there's no point in
3291 remembering the existence of the block. */
3292 for (tmp = PREV_INSN (insn); tmp ; tmp = PREV_INSN (tmp))
3294 /* This block contains a real instruction. Note that we
3295 don't include labels; if the only thing in the block
3296 is a label, then there are still no PC values that
3297 lie within the block. */
3298 if (INSN_P (tmp))
3299 break;
3301 /* We're only interested in NOTEs. */
3302 if (GET_CODE (tmp) != NOTE)
3303 continue;
3305 if (NOTE_LINE_NUMBER (tmp) == NOTE_INSN_BLOCK_BEG)
3307 /* We just verified that this BLOCK matches us with
3308 the block_stack check above. Never delete the
3309 BLOCK for the outermost scope of the function; we
3310 can refer to names from that scope even if the
3311 block notes are messed up. */
3312 if (! is_body_block (NOTE_BLOCK (insn))
3313 && (*debug_hooks->ignore_block) (NOTE_BLOCK (insn)))
3315 remove_insn (tmp);
3316 remove_insn (insn);
3318 break;
3320 else if (NOTE_LINE_NUMBER (tmp) == NOTE_INSN_BLOCK_END)
3321 /* There's a nested block. We need to leave the
3322 current block in place since otherwise the debugger
3323 wouldn't be able to show symbols from our block in
3324 the nested block. */
3325 break;
3330 /* Too many begin notes. */
3331 if (block_stack || eh_stack)
3332 abort ();
3336 /* Emit an insn of given code and pattern
3337 at a specified place within the doubly-linked list. */
3339 /* Make an instruction with body PATTERN
3340 and output it before the instruction BEFORE. */
3343 emit_insn_before (pattern, before)
3344 register rtx pattern, before;
3346 register rtx insn = before;
3348 if (GET_CODE (pattern) == SEQUENCE)
3350 register int i;
3352 for (i = 0; i < XVECLEN (pattern, 0); i++)
3354 insn = XVECEXP (pattern, 0, i);
3355 add_insn_before (insn, before);
3358 else
3360 insn = make_insn_raw (pattern);
3361 add_insn_before (insn, before);
3364 return insn;
3367 /* Make an instruction with body PATTERN and code JUMP_INSN
3368 and output it before the instruction BEFORE. */
3371 emit_jump_insn_before (pattern, before)
3372 register rtx pattern, before;
3374 register rtx insn;
3376 if (GET_CODE (pattern) == SEQUENCE)
3377 insn = emit_insn_before (pattern, before);
3378 else
3380 insn = make_jump_insn_raw (pattern);
3381 add_insn_before (insn, before);
3384 return insn;
3387 /* Make an instruction with body PATTERN and code CALL_INSN
3388 and output it before the instruction BEFORE. */
3391 emit_call_insn_before (pattern, before)
3392 register rtx pattern, before;
3394 register rtx insn;
3396 if (GET_CODE (pattern) == SEQUENCE)
3397 insn = emit_insn_before (pattern, before);
3398 else
3400 insn = make_call_insn_raw (pattern);
3401 add_insn_before (insn, before);
3402 PUT_CODE (insn, CALL_INSN);
3405 return insn;
3408 /* Make an insn of code BARRIER
3409 and output it before the insn BEFORE. */
3412 emit_barrier_before (before)
3413 register rtx before;
3415 register rtx insn = rtx_alloc (BARRIER);
3417 INSN_UID (insn) = cur_insn_uid++;
3419 add_insn_before (insn, before);
3420 return insn;
3423 /* Emit the label LABEL before the insn BEFORE. */
3426 emit_label_before (label, before)
3427 rtx label, before;
3429 /* This can be called twice for the same label as a result of the
3430 confusion that follows a syntax error! So make it harmless. */
3431 if (INSN_UID (label) == 0)
3433 INSN_UID (label) = cur_insn_uid++;
3434 add_insn_before (label, before);
3437 return label;
3440 /* Emit a note of subtype SUBTYPE before the insn BEFORE. */
3443 emit_note_before (subtype, before)
3444 int subtype;
3445 rtx before;
3447 register rtx note = rtx_alloc (NOTE);
3448 INSN_UID (note) = cur_insn_uid++;
3449 NOTE_SOURCE_FILE (note) = 0;
3450 NOTE_LINE_NUMBER (note) = subtype;
3452 add_insn_before (note, before);
3453 return note;
3456 /* Make an insn of code INSN with body PATTERN
3457 and output it after the insn AFTER. */
3460 emit_insn_after (pattern, after)
3461 register rtx pattern, after;
3463 register rtx insn = after;
3465 if (GET_CODE (pattern) == SEQUENCE)
3467 register int i;
3469 for (i = 0; i < XVECLEN (pattern, 0); i++)
3471 insn = XVECEXP (pattern, 0, i);
3472 add_insn_after (insn, after);
3473 after = insn;
3476 else
3478 insn = make_insn_raw (pattern);
3479 add_insn_after (insn, after);
3482 return insn;
3485 /* Similar to emit_insn_after, except that line notes are to be inserted so
3486 as to act as if this insn were at FROM. */
3488 void
3489 emit_insn_after_with_line_notes (pattern, after, from)
3490 rtx pattern, after, from;
3492 rtx from_line = find_line_note (from);
3493 rtx after_line = find_line_note (after);
3494 rtx insn = emit_insn_after (pattern, after);
3496 if (from_line)
3497 emit_line_note_after (NOTE_SOURCE_FILE (from_line),
3498 NOTE_LINE_NUMBER (from_line),
3499 after);
3501 if (after_line)
3502 emit_line_note_after (NOTE_SOURCE_FILE (after_line),
3503 NOTE_LINE_NUMBER (after_line),
3504 insn);
3507 /* Make an insn of code JUMP_INSN with body PATTERN
3508 and output it after the insn AFTER. */
3511 emit_jump_insn_after (pattern, after)
3512 register rtx pattern, after;
3514 register rtx insn;
3516 if (GET_CODE (pattern) == SEQUENCE)
3517 insn = emit_insn_after (pattern, after);
3518 else
3520 insn = make_jump_insn_raw (pattern);
3521 add_insn_after (insn, after);
3524 return insn;
3527 /* Make an insn of code BARRIER
3528 and output it after the insn AFTER. */
3531 emit_barrier_after (after)
3532 register rtx after;
3534 register rtx insn = rtx_alloc (BARRIER);
3536 INSN_UID (insn) = cur_insn_uid++;
3538 add_insn_after (insn, after);
3539 return insn;
3542 /* Emit the label LABEL after the insn AFTER. */
3545 emit_label_after (label, after)
3546 rtx label, after;
3548 /* This can be called twice for the same label
3549 as a result of the confusion that follows a syntax error!
3550 So make it harmless. */
3551 if (INSN_UID (label) == 0)
3553 INSN_UID (label) = cur_insn_uid++;
3554 add_insn_after (label, after);
3557 return label;
3560 /* Emit a note of subtype SUBTYPE after the insn AFTER. */
3563 emit_note_after (subtype, after)
3564 int subtype;
3565 rtx after;
3567 register rtx note = rtx_alloc (NOTE);
3568 INSN_UID (note) = cur_insn_uid++;
3569 NOTE_SOURCE_FILE (note) = 0;
3570 NOTE_LINE_NUMBER (note) = subtype;
3571 add_insn_after (note, after);
3572 return note;
3575 /* Emit a line note for FILE and LINE after the insn AFTER. */
3578 emit_line_note_after (file, line, after)
3579 const char *file;
3580 int line;
3581 rtx after;
3583 register rtx note;
3585 if (no_line_numbers && line > 0)
3587 cur_insn_uid++;
3588 return 0;
3591 note = rtx_alloc (NOTE);
3592 INSN_UID (note) = cur_insn_uid++;
3593 NOTE_SOURCE_FILE (note) = file;
3594 NOTE_LINE_NUMBER (note) = line;
3595 add_insn_after (note, after);
3596 return note;
3599 /* Make an insn of code INSN with pattern PATTERN
3600 and add it to the end of the doubly-linked list.
3601 If PATTERN is a SEQUENCE, take the elements of it
3602 and emit an insn for each element.
3604 Returns the last insn emitted. */
3607 emit_insn (pattern)
3608 rtx pattern;
3610 rtx insn = last_insn;
3612 if (GET_CODE (pattern) == SEQUENCE)
3614 register int i;
3616 for (i = 0; i < XVECLEN (pattern, 0); i++)
3618 insn = XVECEXP (pattern, 0, i);
3619 add_insn (insn);
3622 else
3624 insn = make_insn_raw (pattern);
3625 add_insn (insn);
3628 return insn;
3631 /* Emit the insns in a chain starting with INSN.
3632 Return the last insn emitted. */
3635 emit_insns (insn)
3636 rtx insn;
3638 rtx last = 0;
3640 while (insn)
3642 rtx next = NEXT_INSN (insn);
3643 add_insn (insn);
3644 last = insn;
3645 insn = next;
3648 return last;
3651 /* Emit the insns in a chain starting with INSN and place them in front of
3652 the insn BEFORE. Return the last insn emitted. */
3655 emit_insns_before (insn, before)
3656 rtx insn;
3657 rtx before;
3659 rtx last = 0;
3661 while (insn)
3663 rtx next = NEXT_INSN (insn);
3664 add_insn_before (insn, before);
3665 last = insn;
3666 insn = next;
3669 return last;
3672 /* Emit the insns in a chain starting with FIRST and place them in back of
3673 the insn AFTER. Return the last insn emitted. */
3676 emit_insns_after (first, after)
3677 register rtx first;
3678 register rtx after;
3680 register rtx last;
3681 register rtx after_after;
3682 basic_block bb;
3684 if (!after)
3685 abort ();
3687 if (!first)
3688 return after;
3690 if (basic_block_for_insn
3691 && (unsigned int)INSN_UID (after) < basic_block_for_insn->num_elements
3692 && (bb = BLOCK_FOR_INSN (after)))
3694 for (last = first; NEXT_INSN (last); last = NEXT_INSN (last))
3695 set_block_for_insn (last, bb);
3696 set_block_for_insn (last, bb);
3697 if (bb->end == after)
3698 bb->end = last;
3700 else
3701 for (last = first; NEXT_INSN (last); last = NEXT_INSN (last))
3702 continue;
3704 after_after = NEXT_INSN (after);
3706 NEXT_INSN (after) = first;
3707 PREV_INSN (first) = after;
3708 NEXT_INSN (last) = after_after;
3709 if (after_after)
3710 PREV_INSN (after_after) = last;
3712 if (after == last_insn)
3713 last_insn = last;
3714 return last;
3717 /* Make an insn of code JUMP_INSN with pattern PATTERN
3718 and add it to the end of the doubly-linked list. */
3721 emit_jump_insn (pattern)
3722 rtx pattern;
3724 if (GET_CODE (pattern) == SEQUENCE)
3725 return emit_insn (pattern);
3726 else
3728 register rtx insn = make_jump_insn_raw (pattern);
3729 add_insn (insn);
3730 return insn;
3734 /* Make an insn of code CALL_INSN with pattern PATTERN
3735 and add it to the end of the doubly-linked list. */
3738 emit_call_insn (pattern)
3739 rtx pattern;
3741 if (GET_CODE (pattern) == SEQUENCE)
3742 return emit_insn (pattern);
3743 else
3745 register rtx insn = make_call_insn_raw (pattern);
3746 add_insn (insn);
3747 PUT_CODE (insn, CALL_INSN);
3748 return insn;
3752 /* Add the label LABEL to the end of the doubly-linked list. */
3755 emit_label (label)
3756 rtx label;
3758 /* This can be called twice for the same label
3759 as a result of the confusion that follows a syntax error!
3760 So make it harmless. */
3761 if (INSN_UID (label) == 0)
3763 INSN_UID (label) = cur_insn_uid++;
3764 add_insn (label);
3766 return label;
3769 /* Make an insn of code BARRIER
3770 and add it to the end of the doubly-linked list. */
3773 emit_barrier ()
3775 register rtx barrier = rtx_alloc (BARRIER);
3776 INSN_UID (barrier) = cur_insn_uid++;
3777 add_insn (barrier);
3778 return barrier;
3781 /* Make an insn of code NOTE
3782 with data-fields specified by FILE and LINE
3783 and add it to the end of the doubly-linked list,
3784 but only if line-numbers are desired for debugging info. */
3787 emit_line_note (file, line)
3788 const char *file;
3789 int line;
3791 set_file_and_line_for_stmt (file, line);
3793 #if 0
3794 if (no_line_numbers)
3795 return 0;
3796 #endif
3798 return emit_note (file, line);
3801 /* Make an insn of code NOTE
3802 with data-fields specified by FILE and LINE
3803 and add it to the end of the doubly-linked list.
3804 If it is a line-number NOTE, omit it if it matches the previous one. */
3807 emit_note (file, line)
3808 const char *file;
3809 int line;
3811 register rtx note;
3813 if (line > 0)
3815 if (file && last_filename && !strcmp (file, last_filename)
3816 && line == last_linenum)
3817 return 0;
3818 last_filename = file;
3819 last_linenum = line;
3822 if (no_line_numbers && line > 0)
3824 cur_insn_uid++;
3825 return 0;
3828 note = rtx_alloc (NOTE);
3829 INSN_UID (note) = cur_insn_uid++;
3830 NOTE_SOURCE_FILE (note) = file;
3831 NOTE_LINE_NUMBER (note) = line;
3832 add_insn (note);
3833 return note;
3836 /* Emit a NOTE, and don't omit it even if LINE is the previous note. */
3839 emit_line_note_force (file, line)
3840 const char *file;
3841 int line;
3843 last_linenum = -1;
3844 return emit_line_note (file, line);
3847 /* Cause next statement to emit a line note even if the line number
3848 has not changed. This is used at the beginning of a function. */
3850 void
3851 force_next_line_note ()
3853 last_linenum = -1;
3856 /* Place a note of KIND on insn INSN with DATUM as the datum. If a
3857 note of this type already exists, remove it first. */
3859 void
3860 set_unique_reg_note (insn, kind, datum)
3861 rtx insn;
3862 enum reg_note kind;
3863 rtx datum;
3865 rtx note = find_reg_note (insn, kind, NULL_RTX);
3867 /* First remove the note if there already is one. */
3868 if (note)
3869 remove_note (insn, note);
3871 REG_NOTES (insn) = gen_rtx_EXPR_LIST (kind, datum, REG_NOTES (insn));
3874 /* Return an indication of which type of insn should have X as a body.
3875 The value is CODE_LABEL, INSN, CALL_INSN or JUMP_INSN. */
3877 enum rtx_code
3878 classify_insn (x)
3879 rtx x;
3881 if (GET_CODE (x) == CODE_LABEL)
3882 return CODE_LABEL;
3883 if (GET_CODE (x) == CALL)
3884 return CALL_INSN;
3885 if (GET_CODE (x) == RETURN)
3886 return JUMP_INSN;
3887 if (GET_CODE (x) == SET)
3889 if (SET_DEST (x) == pc_rtx)
3890 return JUMP_INSN;
3891 else if (GET_CODE (SET_SRC (x)) == CALL)
3892 return CALL_INSN;
3893 else
3894 return INSN;
3896 if (GET_CODE (x) == PARALLEL)
3898 register int j;
3899 for (j = XVECLEN (x, 0) - 1; j >= 0; j--)
3900 if (GET_CODE (XVECEXP (x, 0, j)) == CALL)
3901 return CALL_INSN;
3902 else if (GET_CODE (XVECEXP (x, 0, j)) == SET
3903 && SET_DEST (XVECEXP (x, 0, j)) == pc_rtx)
3904 return JUMP_INSN;
3905 else if (GET_CODE (XVECEXP (x, 0, j)) == SET
3906 && GET_CODE (SET_SRC (XVECEXP (x, 0, j))) == CALL)
3907 return CALL_INSN;
3909 return INSN;
3912 /* Emit the rtl pattern X as an appropriate kind of insn.
3913 If X is a label, it is simply added into the insn chain. */
3916 emit (x)
3917 rtx x;
3919 enum rtx_code code = classify_insn (x);
3921 if (code == CODE_LABEL)
3922 return emit_label (x);
3923 else if (code == INSN)
3924 return emit_insn (x);
3925 else if (code == JUMP_INSN)
3927 register rtx insn = emit_jump_insn (x);
3928 if (any_uncondjump_p (insn) || GET_CODE (x) == RETURN)
3929 return emit_barrier ();
3930 return insn;
3932 else if (code == CALL_INSN)
3933 return emit_call_insn (x);
3934 else
3935 abort ();
3938 /* Begin emitting insns to a sequence which can be packaged in an
3939 RTL_EXPR. If this sequence will contain something that might cause
3940 the compiler to pop arguments to function calls (because those
3941 pops have previously been deferred; see INHIBIT_DEFER_POP for more
3942 details), use do_pending_stack_adjust before calling this function.
3943 That will ensure that the deferred pops are not accidentally
3944 emitted in the middle of this sequence. */
3946 void
3947 start_sequence ()
3949 struct sequence_stack *tem;
3951 tem = (struct sequence_stack *) xmalloc (sizeof (struct sequence_stack));
3953 tem->next = seq_stack;
3954 tem->first = first_insn;
3955 tem->last = last_insn;
3956 tem->sequence_rtl_expr = seq_rtl_expr;
3958 seq_stack = tem;
3960 first_insn = 0;
3961 last_insn = 0;
3964 /* Similarly, but indicate that this sequence will be placed in T, an
3965 RTL_EXPR. See the documentation for start_sequence for more
3966 information about how to use this function. */
3968 void
3969 start_sequence_for_rtl_expr (t)
3970 tree t;
3972 start_sequence ();
3974 seq_rtl_expr = t;
3977 /* Set up the insn chain starting with FIRST as the current sequence,
3978 saving the previously current one. See the documentation for
3979 start_sequence for more information about how to use this function. */
3981 void
3982 push_to_sequence (first)
3983 rtx first;
3985 rtx last;
3987 start_sequence ();
3989 for (last = first; last && NEXT_INSN (last); last = NEXT_INSN (last));
3991 first_insn = first;
3992 last_insn = last;
3995 /* Set up the insn chain from a chain stort in FIRST to LAST. */
3997 void
3998 push_to_full_sequence (first, last)
3999 rtx first, last;
4001 start_sequence ();
4002 first_insn = first;
4003 last_insn = last;
4004 /* We really should have the end of the insn chain here. */
4005 if (last && NEXT_INSN (last))
4006 abort ();
4009 /* Set up the outer-level insn chain
4010 as the current sequence, saving the previously current one. */
4012 void
4013 push_topmost_sequence ()
4015 struct sequence_stack *stack, *top = NULL;
4017 start_sequence ();
4019 for (stack = seq_stack; stack; stack = stack->next)
4020 top = stack;
4022 first_insn = top->first;
4023 last_insn = top->last;
4024 seq_rtl_expr = top->sequence_rtl_expr;
4027 /* After emitting to the outer-level insn chain, update the outer-level
4028 insn chain, and restore the previous saved state. */
4030 void
4031 pop_topmost_sequence ()
4033 struct sequence_stack *stack, *top = NULL;
4035 for (stack = seq_stack; stack; stack = stack->next)
4036 top = stack;
4038 top->first = first_insn;
4039 top->last = last_insn;
4040 /* ??? Why don't we save seq_rtl_expr here? */
4042 end_sequence ();
4045 /* After emitting to a sequence, restore previous saved state.
4047 To get the contents of the sequence just made, you must call
4048 `gen_sequence' *before* calling here.
4050 If the compiler might have deferred popping arguments while
4051 generating this sequence, and this sequence will not be immediately
4052 inserted into the instruction stream, use do_pending_stack_adjust
4053 before calling gen_sequence. That will ensure that the deferred
4054 pops are inserted into this sequence, and not into some random
4055 location in the instruction stream. See INHIBIT_DEFER_POP for more
4056 information about deferred popping of arguments. */
4058 void
4059 end_sequence ()
4061 struct sequence_stack *tem = seq_stack;
4063 first_insn = tem->first;
4064 last_insn = tem->last;
4065 seq_rtl_expr = tem->sequence_rtl_expr;
4066 seq_stack = tem->next;
4068 free (tem);
4071 /* This works like end_sequence, but records the old sequence in FIRST
4072 and LAST. */
4074 void
4075 end_full_sequence (first, last)
4076 rtx *first, *last;
4078 *first = first_insn;
4079 *last = last_insn;
4080 end_sequence();
4083 /* Return 1 if currently emitting into a sequence. */
4086 in_sequence_p ()
4088 return seq_stack != 0;
4091 /* Generate a SEQUENCE rtx containing the insns already emitted
4092 to the current sequence.
4094 This is how the gen_... function from a DEFINE_EXPAND
4095 constructs the SEQUENCE that it returns. */
4098 gen_sequence ()
4100 rtx result;
4101 rtx tem;
4102 int i;
4103 int len;
4105 /* Count the insns in the chain. */
4106 len = 0;
4107 for (tem = first_insn; tem; tem = NEXT_INSN (tem))
4108 len++;
4110 /* If only one insn, return it rather than a SEQUENCE.
4111 (Now that we cache SEQUENCE expressions, it isn't worth special-casing
4112 the case of an empty list.)
4113 We only return the pattern of an insn if its code is INSN and it
4114 has no notes. This ensures that no information gets lost. */
4115 if (len == 1
4116 && ! RTX_FRAME_RELATED_P (first_insn)
4117 && GET_CODE (first_insn) == INSN
4118 /* Don't throw away any reg notes. */
4119 && REG_NOTES (first_insn) == 0)
4120 return PATTERN (first_insn);
4122 result = gen_rtx_SEQUENCE (VOIDmode, rtvec_alloc (len));
4124 for (i = 0, tem = first_insn; tem; tem = NEXT_INSN (tem), i++)
4125 XVECEXP (result, 0, i) = tem;
4127 return result;
4130 /* Put the various virtual registers into REGNO_REG_RTX. */
4132 void
4133 init_virtual_regs (es)
4134 struct emit_status *es;
4136 rtx *ptr = es->x_regno_reg_rtx;
4137 ptr[VIRTUAL_INCOMING_ARGS_REGNUM] = virtual_incoming_args_rtx;
4138 ptr[VIRTUAL_STACK_VARS_REGNUM] = virtual_stack_vars_rtx;
4139 ptr[VIRTUAL_STACK_DYNAMIC_REGNUM] = virtual_stack_dynamic_rtx;
4140 ptr[VIRTUAL_OUTGOING_ARGS_REGNUM] = virtual_outgoing_args_rtx;
4141 ptr[VIRTUAL_CFA_REGNUM] = virtual_cfa_rtx;
4144 void
4145 clear_emit_caches ()
4147 int i;
4149 /* Clear the start_sequence/gen_sequence cache. */
4150 for (i = 0; i < SEQUENCE_RESULT_SIZE; i++)
4151 sequence_result[i] = 0;
4152 free_insn = 0;
4155 /* Used by copy_insn_1 to avoid copying SCRATCHes more than once. */
4156 static rtx copy_insn_scratch_in[MAX_RECOG_OPERANDS];
4157 static rtx copy_insn_scratch_out[MAX_RECOG_OPERANDS];
4158 static int copy_insn_n_scratches;
4160 /* When an insn is being copied by copy_insn_1, this is nonzero if we have
4161 copied an ASM_OPERANDS.
4162 In that case, it is the original input-operand vector. */
4163 static rtvec orig_asm_operands_vector;
4165 /* When an insn is being copied by copy_insn_1, this is nonzero if we have
4166 copied an ASM_OPERANDS.
4167 In that case, it is the copied input-operand vector. */
4168 static rtvec copy_asm_operands_vector;
4170 /* Likewise for the constraints vector. */
4171 static rtvec orig_asm_constraints_vector;
4172 static rtvec copy_asm_constraints_vector;
4174 /* Recursively create a new copy of an rtx for copy_insn.
4175 This function differs from copy_rtx in that it handles SCRATCHes and
4176 ASM_OPERANDs properly.
4177 Normally, this function is not used directly; use copy_insn as front end.
4178 However, you could first copy an insn pattern with copy_insn and then use
4179 this function afterwards to properly copy any REG_NOTEs containing
4180 SCRATCHes. */
4183 copy_insn_1 (orig)
4184 register rtx orig;
4186 register rtx copy;
4187 register int i, j;
4188 register RTX_CODE code;
4189 register const char *format_ptr;
4191 code = GET_CODE (orig);
4193 switch (code)
4195 case REG:
4196 case QUEUED:
4197 case CONST_INT:
4198 case CONST_DOUBLE:
4199 case SYMBOL_REF:
4200 case CODE_LABEL:
4201 case PC:
4202 case CC0:
4203 case ADDRESSOF:
4204 return orig;
4206 case SCRATCH:
4207 for (i = 0; i < copy_insn_n_scratches; i++)
4208 if (copy_insn_scratch_in[i] == orig)
4209 return copy_insn_scratch_out[i];
4210 break;
4212 case CONST:
4213 /* CONST can be shared if it contains a SYMBOL_REF. If it contains
4214 a LABEL_REF, it isn't sharable. */
4215 if (GET_CODE (XEXP (orig, 0)) == PLUS
4216 && GET_CODE (XEXP (XEXP (orig, 0), 0)) == SYMBOL_REF
4217 && GET_CODE (XEXP (XEXP (orig, 0), 1)) == CONST_INT)
4218 return orig;
4219 break;
4221 /* A MEM with a constant address is not sharable. The problem is that
4222 the constant address may need to be reloaded. If the mem is shared,
4223 then reloading one copy of this mem will cause all copies to appear
4224 to have been reloaded. */
4226 default:
4227 break;
4230 copy = rtx_alloc (code);
4232 /* Copy the various flags, and other information. We assume that
4233 all fields need copying, and then clear the fields that should
4234 not be copied. That is the sensible default behavior, and forces
4235 us to explicitly document why we are *not* copying a flag. */
4236 memcpy (copy, orig, sizeof (struct rtx_def) - sizeof (rtunion));
4238 /* We do not copy the USED flag, which is used as a mark bit during
4239 walks over the RTL. */
4240 copy->used = 0;
4242 /* We do not copy JUMP, CALL, or FRAME_RELATED for INSNs. */
4243 if (GET_RTX_CLASS (code) == 'i')
4245 copy->jump = 0;
4246 copy->call = 0;
4247 copy->frame_related = 0;
4250 format_ptr = GET_RTX_FORMAT (GET_CODE (copy));
4252 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (copy)); i++)
4254 copy->fld[i] = orig->fld[i];
4255 switch (*format_ptr++)
4257 case 'e':
4258 if (XEXP (orig, i) != NULL)
4259 XEXP (copy, i) = copy_insn_1 (XEXP (orig, i));
4260 break;
4262 case 'E':
4263 case 'V':
4264 if (XVEC (orig, i) == orig_asm_constraints_vector)
4265 XVEC (copy, i) = copy_asm_constraints_vector;
4266 else if (XVEC (orig, i) == orig_asm_operands_vector)
4267 XVEC (copy, i) = copy_asm_operands_vector;
4268 else if (XVEC (orig, i) != NULL)
4270 XVEC (copy, i) = rtvec_alloc (XVECLEN (orig, i));
4271 for (j = 0; j < XVECLEN (copy, i); j++)
4272 XVECEXP (copy, i, j) = copy_insn_1 (XVECEXP (orig, i, j));
4274 break;
4276 case 't':
4277 case 'w':
4278 case 'i':
4279 case 's':
4280 case 'S':
4281 case 'u':
4282 case '0':
4283 /* These are left unchanged. */
4284 break;
4286 default:
4287 abort ();
4291 if (code == SCRATCH)
4293 i = copy_insn_n_scratches++;
4294 if (i >= MAX_RECOG_OPERANDS)
4295 abort ();
4296 copy_insn_scratch_in[i] = orig;
4297 copy_insn_scratch_out[i] = copy;
4299 else if (code == ASM_OPERANDS)
4301 orig_asm_operands_vector = ASM_OPERANDS_INPUT_VEC (orig);
4302 copy_asm_operands_vector = ASM_OPERANDS_INPUT_VEC (copy);
4303 orig_asm_constraints_vector = ASM_OPERANDS_INPUT_CONSTRAINT_VEC (orig);
4304 copy_asm_constraints_vector = ASM_OPERANDS_INPUT_CONSTRAINT_VEC (copy);
4307 return copy;
4310 /* Create a new copy of an rtx.
4311 This function differs from copy_rtx in that it handles SCRATCHes and
4312 ASM_OPERANDs properly.
4313 INSN doesn't really have to be a full INSN; it could be just the
4314 pattern. */
4316 copy_insn (insn)
4317 rtx insn;
4319 copy_insn_n_scratches = 0;
4320 orig_asm_operands_vector = 0;
4321 orig_asm_constraints_vector = 0;
4322 copy_asm_operands_vector = 0;
4323 copy_asm_constraints_vector = 0;
4324 return copy_insn_1 (insn);
4327 /* Initialize data structures and variables in this file
4328 before generating rtl for each function. */
4330 void
4331 init_emit ()
4333 struct function *f = cfun;
4335 f->emit = (struct emit_status *) xmalloc (sizeof (struct emit_status));
4336 first_insn = NULL;
4337 last_insn = NULL;
4338 seq_rtl_expr = NULL;
4339 cur_insn_uid = 1;
4340 reg_rtx_no = LAST_VIRTUAL_REGISTER + 1;
4341 last_linenum = 0;
4342 last_filename = 0;
4343 first_label_num = label_num;
4344 last_label_num = 0;
4345 seq_stack = NULL;
4347 clear_emit_caches ();
4349 /* Init the tables that describe all the pseudo regs. */
4351 f->emit->regno_pointer_align_length = LAST_VIRTUAL_REGISTER + 101;
4353 f->emit->regno_pointer_align
4354 = (unsigned char *) xcalloc (f->emit->regno_pointer_align_length,
4355 sizeof (unsigned char));
4357 regno_reg_rtx
4358 = (rtx *) xcalloc (f->emit->regno_pointer_align_length * sizeof (rtx),
4359 sizeof (rtx));
4361 /* Put copies of all the virtual register rtx into regno_reg_rtx. */
4362 init_virtual_regs (f->emit);
4364 /* Indicate that the virtual registers and stack locations are
4365 all pointers. */
4366 REG_POINTER (stack_pointer_rtx) = 1;
4367 REG_POINTER (frame_pointer_rtx) = 1;
4368 REG_POINTER (hard_frame_pointer_rtx) = 1;
4369 REG_POINTER (arg_pointer_rtx) = 1;
4371 REG_POINTER (virtual_incoming_args_rtx) = 1;
4372 REG_POINTER (virtual_stack_vars_rtx) = 1;
4373 REG_POINTER (virtual_stack_dynamic_rtx) = 1;
4374 REG_POINTER (virtual_outgoing_args_rtx) = 1;
4375 REG_POINTER (virtual_cfa_rtx) = 1;
4377 #ifdef STACK_BOUNDARY
4378 REGNO_POINTER_ALIGN (STACK_POINTER_REGNUM) = STACK_BOUNDARY;
4379 REGNO_POINTER_ALIGN (FRAME_POINTER_REGNUM) = STACK_BOUNDARY;
4380 REGNO_POINTER_ALIGN (HARD_FRAME_POINTER_REGNUM) = STACK_BOUNDARY;
4381 REGNO_POINTER_ALIGN (ARG_POINTER_REGNUM) = STACK_BOUNDARY;
4383 REGNO_POINTER_ALIGN (VIRTUAL_INCOMING_ARGS_REGNUM) = STACK_BOUNDARY;
4384 REGNO_POINTER_ALIGN (VIRTUAL_STACK_VARS_REGNUM) = STACK_BOUNDARY;
4385 REGNO_POINTER_ALIGN (VIRTUAL_STACK_DYNAMIC_REGNUM) = STACK_BOUNDARY;
4386 REGNO_POINTER_ALIGN (VIRTUAL_OUTGOING_ARGS_REGNUM) = STACK_BOUNDARY;
4387 REGNO_POINTER_ALIGN (VIRTUAL_CFA_REGNUM) = BITS_PER_WORD;
4388 #endif
4390 #ifdef INIT_EXPANDERS
4391 INIT_EXPANDERS;
4392 #endif
4395 /* Mark SS for GC. */
4397 static void
4398 mark_sequence_stack (ss)
4399 struct sequence_stack *ss;
4401 while (ss)
4403 ggc_mark_rtx (ss->first);
4404 ggc_mark_tree (ss->sequence_rtl_expr);
4405 ss = ss->next;
4409 /* Mark ES for GC. */
4411 void
4412 mark_emit_status (es)
4413 struct emit_status *es;
4415 rtx *r;
4416 int i;
4418 if (es == 0)
4419 return;
4421 for (i = es->regno_pointer_align_length, r = es->x_regno_reg_rtx;
4422 i > 0; --i, ++r)
4423 ggc_mark_rtx (*r);
4425 mark_sequence_stack (es->sequence_stack);
4426 ggc_mark_tree (es->sequence_rtl_expr);
4427 ggc_mark_rtx (es->x_first_insn);
4430 /* Create some permanent unique rtl objects shared between all functions.
4431 LINE_NUMBERS is nonzero if line numbers are to be generated. */
4433 void
4434 init_emit_once (line_numbers)
4435 int line_numbers;
4437 int i;
4438 enum machine_mode mode;
4439 enum machine_mode double_mode;
4441 /* Initialize the CONST_INT and memory attribute hash tables. */
4442 const_int_htab = htab_create (37, const_int_htab_hash,
4443 const_int_htab_eq, NULL);
4444 ggc_add_deletable_htab (const_int_htab, 0, 0);
4446 mem_attrs_htab = htab_create (37, mem_attrs_htab_hash,
4447 mem_attrs_htab_eq, NULL);
4448 ggc_add_deletable_htab (mem_attrs_htab, 0, mem_attrs_mark);
4450 no_line_numbers = ! line_numbers;
4452 /* Compute the word and byte modes. */
4454 byte_mode = VOIDmode;
4455 word_mode = VOIDmode;
4456 double_mode = VOIDmode;
4458 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
4459 mode = GET_MODE_WIDER_MODE (mode))
4461 if (GET_MODE_BITSIZE (mode) == BITS_PER_UNIT
4462 && byte_mode == VOIDmode)
4463 byte_mode = mode;
4465 if (GET_MODE_BITSIZE (mode) == BITS_PER_WORD
4466 && word_mode == VOIDmode)
4467 word_mode = mode;
4470 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
4471 mode = GET_MODE_WIDER_MODE (mode))
4473 if (GET_MODE_BITSIZE (mode) == DOUBLE_TYPE_SIZE
4474 && double_mode == VOIDmode)
4475 double_mode = mode;
4478 ptr_mode = mode_for_size (POINTER_SIZE, GET_MODE_CLASS (Pmode), 0);
4480 /* Assign register numbers to the globally defined register rtx.
4481 This must be done at runtime because the register number field
4482 is in a union and some compilers can't initialize unions. */
4484 pc_rtx = gen_rtx (PC, VOIDmode);
4485 cc0_rtx = gen_rtx (CC0, VOIDmode);
4486 stack_pointer_rtx = gen_raw_REG (Pmode, STACK_POINTER_REGNUM);
4487 frame_pointer_rtx = gen_raw_REG (Pmode, FRAME_POINTER_REGNUM);
4488 if (hard_frame_pointer_rtx == 0)
4489 hard_frame_pointer_rtx = gen_raw_REG (Pmode,
4490 HARD_FRAME_POINTER_REGNUM);
4491 if (arg_pointer_rtx == 0)
4492 arg_pointer_rtx = gen_raw_REG (Pmode, ARG_POINTER_REGNUM);
4493 virtual_incoming_args_rtx =
4494 gen_raw_REG (Pmode, VIRTUAL_INCOMING_ARGS_REGNUM);
4495 virtual_stack_vars_rtx =
4496 gen_raw_REG (Pmode, VIRTUAL_STACK_VARS_REGNUM);
4497 virtual_stack_dynamic_rtx =
4498 gen_raw_REG (Pmode, VIRTUAL_STACK_DYNAMIC_REGNUM);
4499 virtual_outgoing_args_rtx =
4500 gen_raw_REG (Pmode, VIRTUAL_OUTGOING_ARGS_REGNUM);
4501 virtual_cfa_rtx = gen_raw_REG (Pmode, VIRTUAL_CFA_REGNUM);
4503 /* These rtx must be roots if GC is enabled. */
4504 ggc_add_rtx_root (global_rtl, GR_MAX);
4506 #ifdef INIT_EXPANDERS
4507 /* This is to initialize {init|mark|free}_machine_status before the first
4508 call to push_function_context_to. This is needed by the Chill front
4509 end which calls push_function_context_to before the first cal to
4510 init_function_start. */
4511 INIT_EXPANDERS;
4512 #endif
4514 /* Create the unique rtx's for certain rtx codes and operand values. */
4516 /* Don't use gen_rtx here since gen_rtx in this case
4517 tries to use these variables. */
4518 for (i = - MAX_SAVED_CONST_INT; i <= MAX_SAVED_CONST_INT; i++)
4519 const_int_rtx[i + MAX_SAVED_CONST_INT] =
4520 gen_rtx_raw_CONST_INT (VOIDmode, i);
4521 ggc_add_rtx_root (const_int_rtx, 2 * MAX_SAVED_CONST_INT + 1);
4523 if (STORE_FLAG_VALUE >= - MAX_SAVED_CONST_INT
4524 && STORE_FLAG_VALUE <= MAX_SAVED_CONST_INT)
4525 const_true_rtx = const_int_rtx[STORE_FLAG_VALUE + MAX_SAVED_CONST_INT];
4526 else
4527 const_true_rtx = gen_rtx_CONST_INT (VOIDmode, STORE_FLAG_VALUE);
4529 dconst0 = REAL_VALUE_ATOF ("0", double_mode);
4530 dconst1 = REAL_VALUE_ATOF ("1", double_mode);
4531 dconst2 = REAL_VALUE_ATOF ("2", double_mode);
4532 dconstm1 = REAL_VALUE_ATOF ("-1", double_mode);
4534 for (i = 0; i <= 2; i++)
4536 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
4537 mode = GET_MODE_WIDER_MODE (mode))
4539 rtx tem = rtx_alloc (CONST_DOUBLE);
4540 union real_extract u;
4542 /* Zero any holes in a structure. */
4543 memset ((char *) &u, 0, sizeof u);
4544 u.d = i == 0 ? dconst0 : i == 1 ? dconst1 : dconst2;
4546 /* Avoid trailing garbage in the rtx. */
4547 if (sizeof (u) < sizeof (HOST_WIDE_INT))
4548 CONST_DOUBLE_LOW (tem) = 0;
4549 if (sizeof (u) < 2 * sizeof (HOST_WIDE_INT))
4550 CONST_DOUBLE_HIGH (tem) = 0;
4552 memcpy (&CONST_DOUBLE_LOW (tem), &u, sizeof u);
4553 CONST_DOUBLE_MEM (tem) = cc0_rtx;
4554 CONST_DOUBLE_CHAIN (tem) = NULL_RTX;
4555 PUT_MODE (tem, mode);
4557 const_tiny_rtx[i][(int) mode] = tem;
4560 const_tiny_rtx[i][(int) VOIDmode] = GEN_INT (i);
4562 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
4563 mode = GET_MODE_WIDER_MODE (mode))
4564 const_tiny_rtx[i][(int) mode] = GEN_INT (i);
4566 for (mode = GET_CLASS_NARROWEST_MODE (MODE_PARTIAL_INT);
4567 mode != VOIDmode;
4568 mode = GET_MODE_WIDER_MODE (mode))
4569 const_tiny_rtx[i][(int) mode] = GEN_INT (i);
4572 for (i = (int) CCmode; i < (int) MAX_MACHINE_MODE; ++i)
4573 if (GET_MODE_CLASS ((enum machine_mode) i) == MODE_CC)
4574 const_tiny_rtx[0][i] = const0_rtx;
4576 const_tiny_rtx[0][(int) BImode] = const0_rtx;
4577 if (STORE_FLAG_VALUE == 1)
4578 const_tiny_rtx[1][(int) BImode] = const1_rtx;
4580 /* For bounded pointers, `&const_tiny_rtx[0][0]' is not the same as
4581 `(rtx *) const_tiny_rtx'. The former has bounds that only cover
4582 `const_tiny_rtx[0]', whereas the latter has bounds that cover all. */
4583 ggc_add_rtx_root ((rtx *) const_tiny_rtx, sizeof const_tiny_rtx / sizeof (rtx));
4584 ggc_add_rtx_root (&const_true_rtx, 1);
4586 #ifdef RETURN_ADDRESS_POINTER_REGNUM
4587 return_address_pointer_rtx
4588 = gen_raw_REG (Pmode, RETURN_ADDRESS_POINTER_REGNUM);
4589 #endif
4591 #ifdef STRUCT_VALUE
4592 struct_value_rtx = STRUCT_VALUE;
4593 #else
4594 struct_value_rtx = gen_rtx_REG (Pmode, STRUCT_VALUE_REGNUM);
4595 #endif
4597 #ifdef STRUCT_VALUE_INCOMING
4598 struct_value_incoming_rtx = STRUCT_VALUE_INCOMING;
4599 #else
4600 #ifdef STRUCT_VALUE_INCOMING_REGNUM
4601 struct_value_incoming_rtx
4602 = gen_rtx_REG (Pmode, STRUCT_VALUE_INCOMING_REGNUM);
4603 #else
4604 struct_value_incoming_rtx = struct_value_rtx;
4605 #endif
4606 #endif
4608 #ifdef STATIC_CHAIN_REGNUM
4609 static_chain_rtx = gen_rtx_REG (Pmode, STATIC_CHAIN_REGNUM);
4611 #ifdef STATIC_CHAIN_INCOMING_REGNUM
4612 if (STATIC_CHAIN_INCOMING_REGNUM != STATIC_CHAIN_REGNUM)
4613 static_chain_incoming_rtx
4614 = gen_rtx_REG (Pmode, STATIC_CHAIN_INCOMING_REGNUM);
4615 else
4616 #endif
4617 static_chain_incoming_rtx = static_chain_rtx;
4618 #endif
4620 #ifdef STATIC_CHAIN
4621 static_chain_rtx = STATIC_CHAIN;
4623 #ifdef STATIC_CHAIN_INCOMING
4624 static_chain_incoming_rtx = STATIC_CHAIN_INCOMING;
4625 #else
4626 static_chain_incoming_rtx = static_chain_rtx;
4627 #endif
4628 #endif
4630 if (PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM)
4631 pic_offset_table_rtx = gen_rtx_REG (Pmode, PIC_OFFSET_TABLE_REGNUM);
4633 ggc_add_rtx_root (&pic_offset_table_rtx, 1);
4634 ggc_add_rtx_root (&struct_value_rtx, 1);
4635 ggc_add_rtx_root (&struct_value_incoming_rtx, 1);
4636 ggc_add_rtx_root (&static_chain_rtx, 1);
4637 ggc_add_rtx_root (&static_chain_incoming_rtx, 1);
4638 ggc_add_rtx_root (&return_address_pointer_rtx, 1);
4641 /* Query and clear/ restore no_line_numbers. This is used by the
4642 switch / case handling in stmt.c to give proper line numbers in
4643 warnings about unreachable code. */
4646 force_line_numbers ()
4648 int old = no_line_numbers;
4650 no_line_numbers = 0;
4651 if (old)
4652 force_next_line_note ();
4653 return old;
4656 void
4657 restore_line_number_status (old_value)
4658 int old_value;
4660 no_line_numbers = old_value;