rtl.def (CALL_PLACEHOLDER): New rtx code.
[gcc.git] / gcc / emit-rtl.c
1 /* Emit RTL for the GNU C-Compiler expander.
2 Copyright (C) 1987, 88, 92-97, 1998, 1999 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21
22 /* Middle-to-low level generation of rtx code and insns.
23
24 This file contains the functions `gen_rtx', `gen_reg_rtx'
25 and `gen_label_rtx' that are the usual ways of creating rtl
26 expressions for most purposes.
27
28 It also has the functions for creating insns and linking
29 them in the doubly-linked chain.
30
31 The patterns of the insns are created by machine-dependent
32 routines in insn-emit.c, which is generated automatically from
33 the machine description. These routines use `gen_rtx' to make
34 the individual rtx's of the pattern; what is machine dependent
35 is the kind of rtx's they make and what arguments they use. */
36
37 #include "config.h"
38 #include "system.h"
39 #include "rtl.h"
40 #include "tree.h"
41 #include "flags.h"
42 #include "except.h"
43 #include "function.h"
44 #include "expr.h"
45 #include "regs.h"
46 #include "hard-reg-set.h"
47 #include "insn-config.h"
48 #include "recog.h"
49 #include "real.h"
50 #include "obstack.h"
51 #include "bitmap.h"
52
53 /* Commonly used modes. */
54
55 enum machine_mode byte_mode; /* Mode whose width is BITS_PER_UNIT. */
56 enum machine_mode word_mode; /* Mode whose width is BITS_PER_WORD. */
57 enum machine_mode double_mode; /* Mode whose width is DOUBLE_TYPE_SIZE. */
58 enum machine_mode ptr_mode; /* Mode whose width is POINTER_SIZE. */
59
60 /* This is reset to LAST_VIRTUAL_REGISTER + 1 at the start of each function.
61 After rtl generation, it is 1 plus the largest register number used. */
62
63 int reg_rtx_no = LAST_VIRTUAL_REGISTER + 1;
64
65 /* This is *not* reset after each function. It gives each CODE_LABEL
66 in the entire compilation a unique label number. */
67
68 static int label_num = 1;
69
70 /* Lowest label number in current function. */
71
72 static int first_label_num;
73
74 /* Highest label number in current function.
75 Zero means use the value of label_num instead.
76 This is nonzero only when belatedly compiling an inline function. */
77
78 static int last_label_num;
79
80 /* Value label_num had when set_new_first_and_last_label_number was called.
81 If label_num has not changed since then, last_label_num is valid. */
82
83 static int base_label_num;
84
85 /* Nonzero means do not generate NOTEs for source line numbers. */
86
87 static int no_line_numbers;
88
89 /* Commonly used rtx's, so that we only need space for one copy.
90 These are initialized once for the entire compilation.
91 All of these except perhaps the floating-point CONST_DOUBLEs
92 are unique; no other rtx-object will be equal to any of these. */
93
94 /* Avoid warnings by initializing the `fld' field. Since its a union,
95 bypass problems with KNR compilers by only doing so when __GNUC__. */
96 #ifdef __GNUC__
97 #define FLDI , {{0}}
98 #else
99 #define FLDI
100 #endif
101
102 struct _global_rtl global_rtl =
103 {
104 {PC, VOIDmode, 0, 0, 0, 0, 0, 0, 0, 0 FLDI }, /* pc_rtx */
105 {CC0, VOIDmode, 0, 0, 0, 0, 0, 0, 0, 0 FLDI }, /* cc0_rtx */
106 {REG, VOIDmode, 0, 0, 0, 0, 0, 0, 0, 0 FLDI }, /* stack_pointer_rtx */
107 {REG, VOIDmode, 0, 0, 0, 0, 0, 0, 0, 0 FLDI }, /* frame_pointer_rtx */
108 {REG, VOIDmode, 0, 0, 0, 0, 0, 0, 0, 0 FLDI }, /* hard_frame_pointer_rtx */
109 {REG, VOIDmode, 0, 0, 0, 0, 0, 0, 0, 0 FLDI }, /* arg_pointer_rtx */
110 {REG, VOIDmode, 0, 0, 0, 0, 0, 0, 0, 0 FLDI }, /* virtual_incoming_args_rtx */
111 {REG, VOIDmode, 0, 0, 0, 0, 0, 0, 0, 0 FLDI }, /* virtual_stack_vars_rtx */
112 {REG, VOIDmode, 0, 0, 0, 0, 0, 0, 0, 0 FLDI }, /* virtual_stack_dynamic_rtx */
113 {REG, VOIDmode, 0, 0, 0, 0, 0, 0, 0, 0 FLDI }, /* virtual_outgoing_args_rtx */
114 {REG, VOIDmode, 0, 0, 0, 0, 0, 0, 0, 0 FLDI }, /* virtual_cfa_rtx */
115 };
116
117 /* We record floating-point CONST_DOUBLEs in each floating-point mode for
118 the values of 0, 1, and 2. For the integer entries and VOIDmode, we
119 record a copy of const[012]_rtx. */
120
121 rtx const_tiny_rtx[3][(int) MAX_MACHINE_MODE];
122
123 rtx const_true_rtx;
124
125 REAL_VALUE_TYPE dconst0;
126 REAL_VALUE_TYPE dconst1;
127 REAL_VALUE_TYPE dconst2;
128 REAL_VALUE_TYPE dconstm1;
129
130 /* All references to the following fixed hard registers go through
131 these unique rtl objects. On machines where the frame-pointer and
132 arg-pointer are the same register, they use the same unique object.
133
134 After register allocation, other rtl objects which used to be pseudo-regs
135 may be clobbered to refer to the frame-pointer register.
136 But references that were originally to the frame-pointer can be
137 distinguished from the others because they contain frame_pointer_rtx.
138
139 When to use frame_pointer_rtx and hard_frame_pointer_rtx is a little
140 tricky: until register elimination has taken place hard_frame_pointer_rtx
141 should be used if it is being set, and frame_pointer_rtx otherwise. After
142 register elimination hard_frame_pointer_rtx should always be used.
143 On machines where the two registers are same (most) then these are the
144 same.
145
146 In an inline procedure, the stack and frame pointer rtxs may not be
147 used for anything else. */
148 rtx struct_value_rtx; /* (REG:Pmode STRUCT_VALUE_REGNUM) */
149 rtx struct_value_incoming_rtx; /* (REG:Pmode STRUCT_VALUE_INCOMING_REGNUM) */
150 rtx static_chain_rtx; /* (REG:Pmode STATIC_CHAIN_REGNUM) */
151 rtx static_chain_incoming_rtx; /* (REG:Pmode STATIC_CHAIN_INCOMING_REGNUM) */
152 rtx pic_offset_table_rtx; /* (REG:Pmode PIC_OFFSET_TABLE_REGNUM) */
153
154 /* This is used to implement __builtin_return_address for some machines.
155 See for instance the MIPS port. */
156 rtx return_address_pointer_rtx; /* (REG:Pmode RETURN_ADDRESS_POINTER_REGNUM) */
157
158 /* We make one copy of (const_int C) where C is in
159 [- MAX_SAVED_CONST_INT, MAX_SAVED_CONST_INT]
160 to save space during the compilation and simplify comparisons of
161 integers. */
162
163 struct rtx_def const_int_rtx[MAX_SAVED_CONST_INT * 2 + 1];
164
165 /* The ends of the doubly-linked chain of rtl for the current function.
166 Both are reset to null at the start of rtl generation for the function.
167
168 start_sequence saves both of these on `sequence_stack' along with
169 `sequence_rtl_expr' and then starts a new, nested sequence of insns. */
170
171 static rtx first_insn = NULL;
172 static rtx last_insn = NULL;
173
174 /* RTL_EXPR within which the current sequence will be placed. Use to
175 prevent reuse of any temporaries within the sequence until after the
176 RTL_EXPR is emitted. */
177
178 tree sequence_rtl_expr = NULL;
179
180 /* INSN_UID for next insn emitted.
181 Reset to 1 for each function compiled. */
182
183 static int cur_insn_uid = 1;
184
185 /* Line number and source file of the last line-number NOTE emitted.
186 This is used to avoid generating duplicates. */
187
188 static int last_linenum = 0;
189 static char *last_filename = 0;
190
191 /* A vector indexed by pseudo reg number. The allocated length
192 of this vector is regno_pointer_flag_length. Since this
193 vector is needed during the expansion phase when the total
194 number of registers in the function is not yet known,
195 it is copied and made bigger when necessary. */
196
197 char *regno_pointer_flag;
198 int regno_pointer_flag_length;
199
200 /* Indexed by pseudo register number, if nonzero gives the known alignment
201 for that pseudo (if regno_pointer_flag is set).
202 Allocated in parallel with regno_pointer_flag. */
203 char *regno_pointer_align;
204
205 /* Indexed by pseudo register number, gives the rtx for that pseudo.
206 Allocated in parallel with regno_pointer_flag. */
207
208 rtx *regno_reg_rtx;
209
210 /* Stack of pending (incomplete) sequences saved by `start_sequence'.
211 Each element describes one pending sequence.
212 The main insn-chain is saved in the last element of the chain,
213 unless the chain is empty. */
214
215 struct sequence_stack *sequence_stack;
216
217 /* start_sequence and gen_sequence can make a lot of rtx expressions which are
218 shortly thrown away. We use two mechanisms to prevent this waste:
219
220 First, we keep a list of the expressions used to represent the sequence
221 stack in sequence_element_free_list.
222
223 Second, for sizes up to 5 elements, we keep a SEQUENCE and its associated
224 rtvec for use by gen_sequence. One entry for each size is sufficient
225 because most cases are calls to gen_sequence followed by immediately
226 emitting the SEQUENCE. Reuse is safe since emitting a sequence is
227 destructive on the insn in it anyway and hence can't be redone.
228
229 We do not bother to save this cached data over nested function calls.
230 Instead, we just reinitialize them. */
231
232 #define SEQUENCE_RESULT_SIZE 5
233
234 static struct sequence_stack *sequence_element_free_list;
235 static rtx sequence_result[SEQUENCE_RESULT_SIZE];
236
237 /* During RTL generation, we also keep a list of free INSN rtl codes. */
238 static rtx free_insn;
239
240 extern int rtx_equal_function_value_matters;
241
242 /* Filename and line number of last line-number note,
243 whether we actually emitted it or not. */
244 extern char *emit_filename;
245 extern int emit_lineno;
246
247 static rtx make_jump_insn_raw PROTO((rtx));
248 static rtx make_call_insn_raw PROTO((rtx));
249 static rtx find_line_note PROTO((rtx));
250 \f
251 rtx
252 gen_rtx_CONST_INT (mode, arg)
253 enum machine_mode mode;
254 HOST_WIDE_INT arg;
255 {
256 if (arg >= - MAX_SAVED_CONST_INT && arg <= MAX_SAVED_CONST_INT)
257 return &const_int_rtx[arg + MAX_SAVED_CONST_INT];
258
259 #if STORE_FLAG_VALUE != 1 && STORE_FLAG_VALUE != -1
260 if (const_true_rtx && arg == STORE_FLAG_VALUE)
261 return const_true_rtx;
262 #endif
263
264 return gen_rtx_raw_CONST_INT (mode, arg);
265 }
266
267 rtx
268 gen_rtx_REG (mode, regno)
269 enum machine_mode mode;
270 int regno;
271 {
272 /* In case the MD file explicitly references the frame pointer, have
273 all such references point to the same frame pointer. This is
274 used during frame pointer elimination to distinguish the explicit
275 references to these registers from pseudos that happened to be
276 assigned to them.
277
278 If we have eliminated the frame pointer or arg pointer, we will
279 be using it as a normal register, for example as a spill
280 register. In such cases, we might be accessing it in a mode that
281 is not Pmode and therefore cannot use the pre-allocated rtx.
282
283 Also don't do this when we are making new REGs in reload, since
284 we don't want to get confused with the real pointers. */
285
286 if (mode == Pmode && !reload_in_progress)
287 {
288 if (regno == FRAME_POINTER_REGNUM)
289 return frame_pointer_rtx;
290 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
291 if (regno == HARD_FRAME_POINTER_REGNUM)
292 return hard_frame_pointer_rtx;
293 #endif
294 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM && HARD_FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
295 if (regno == ARG_POINTER_REGNUM)
296 return arg_pointer_rtx;
297 #endif
298 #ifdef RETURN_ADDRESS_POINTER_REGNUM
299 if (regno == RETURN_ADDRESS_POINTER_REGNUM)
300 return return_address_pointer_rtx;
301 #endif
302 if (regno == STACK_POINTER_REGNUM)
303 return stack_pointer_rtx;
304 }
305
306 return gen_rtx_raw_REG (mode, regno);
307 }
308
309 rtx
310 gen_rtx_MEM (mode, addr)
311 enum machine_mode mode;
312 rtx addr;
313 {
314 rtx rt = gen_rtx_raw_MEM (mode, addr);
315
316 /* This field is not cleared by the mere allocation of the rtx, so
317 we clear it here. */
318 MEM_ALIAS_SET (rt) = 0;
319
320 return rt;
321 }
322
323 /* rtx gen_rtx (code, mode, [element1, ..., elementn])
324 **
325 ** This routine generates an RTX of the size specified by
326 ** <code>, which is an RTX code. The RTX structure is initialized
327 ** from the arguments <element1> through <elementn>, which are
328 ** interpreted according to the specific RTX type's format. The
329 ** special machine mode associated with the rtx (if any) is specified
330 ** in <mode>.
331 **
332 ** gen_rtx can be invoked in a way which resembles the lisp-like
333 ** rtx it will generate. For example, the following rtx structure:
334 **
335 ** (plus:QI (mem:QI (reg:SI 1))
336 ** (mem:QI (plusw:SI (reg:SI 2) (reg:SI 3))))
337 **
338 ** ...would be generated by the following C code:
339 **
340 ** gen_rtx (PLUS, QImode,
341 ** gen_rtx (MEM, QImode,
342 ** gen_rtx (REG, SImode, 1)),
343 ** gen_rtx (MEM, QImode,
344 ** gen_rtx (PLUS, SImode,
345 ** gen_rtx (REG, SImode, 2),
346 ** gen_rtx (REG, SImode, 3)))),
347 */
348
349 /*VARARGS2*/
350 rtx
351 gen_rtx VPROTO((enum rtx_code code, enum machine_mode mode, ...))
352 {
353 #ifndef ANSI_PROTOTYPES
354 enum rtx_code code;
355 enum machine_mode mode;
356 #endif
357 va_list p;
358 register int i; /* Array indices... */
359 register char *fmt; /* Current rtx's format... */
360 register rtx rt_val; /* RTX to return to caller... */
361
362 VA_START (p, mode);
363
364 #ifndef ANSI_PROTOTYPES
365 code = va_arg (p, enum rtx_code);
366 mode = va_arg (p, enum machine_mode);
367 #endif
368
369 if (code == CONST_INT)
370 rt_val = gen_rtx_CONST_INT (mode, va_arg (p, HOST_WIDE_INT));
371 else if (code == REG)
372 rt_val = gen_rtx_REG (mode, va_arg (p, int));
373 else if (code == MEM)
374 rt_val = gen_rtx_MEM (mode, va_arg (p, rtx));
375 else
376 {
377 rt_val = rtx_alloc (code); /* Allocate the storage space. */
378 rt_val->mode = mode; /* Store the machine mode... */
379
380 fmt = GET_RTX_FORMAT (code); /* Find the right format... */
381 for (i = 0; i < GET_RTX_LENGTH (code); i++)
382 {
383 switch (*fmt++)
384 {
385 case '0': /* Unused field. */
386 break;
387
388 case 'i': /* An integer? */
389 XINT (rt_val, i) = va_arg (p, int);
390 break;
391
392 case 'w': /* A wide integer? */
393 XWINT (rt_val, i) = va_arg (p, HOST_WIDE_INT);
394 break;
395
396 case 's': /* A string? */
397 XSTR (rt_val, i) = va_arg (p, char *);
398 break;
399
400 case 'e': /* An expression? */
401 case 'u': /* An insn? Same except when printing. */
402 XEXP (rt_val, i) = va_arg (p, rtx);
403 break;
404
405 case 'E': /* An RTX vector? */
406 XVEC (rt_val, i) = va_arg (p, rtvec);
407 break;
408
409 case 'b': /* A bitmap? */
410 XBITMAP (rt_val, i) = va_arg (p, bitmap);
411 break;
412
413 case 't': /* A tree? */
414 XTREE (rt_val, i) = va_arg (p, tree);
415 break;
416
417 default:
418 abort ();
419 }
420 }
421 }
422 va_end (p);
423 return rt_val; /* Return the new RTX... */
424 }
425
426 /* gen_rtvec (n, [rt1, ..., rtn])
427 **
428 ** This routine creates an rtvec and stores within it the
429 ** pointers to rtx's which are its arguments.
430 */
431
432 /*VARARGS1*/
433 rtvec
434 gen_rtvec VPROTO((int n, ...))
435 {
436 #ifndef ANSI_PROTOTYPES
437 int n;
438 #endif
439 int i;
440 va_list p;
441 rtx *vector;
442
443 VA_START (p, n);
444
445 #ifndef ANSI_PROTOTYPES
446 n = va_arg (p, int);
447 #endif
448
449 if (n == 0)
450 return NULL_RTVEC; /* Don't allocate an empty rtvec... */
451
452 vector = (rtx *) alloca (n * sizeof (rtx));
453
454 for (i = 0; i < n; i++)
455 vector[i] = va_arg (p, rtx);
456 va_end (p);
457
458 return gen_rtvec_v (n, vector);
459 }
460
461 rtvec
462 gen_rtvec_v (n, argp)
463 int n;
464 rtx *argp;
465 {
466 register int i;
467 register rtvec rt_val;
468
469 if (n == 0)
470 return NULL_RTVEC; /* Don't allocate an empty rtvec... */
471
472 rt_val = rtvec_alloc (n); /* Allocate an rtvec... */
473
474 for (i = 0; i < n; i++)
475 rt_val->elem[i].rtx = *argp++;
476
477 return rt_val;
478 }
479
480 rtvec
481 gen_rtvec_vv (n, argp)
482 int n;
483 rtunion *argp;
484 {
485 register int i;
486 register rtvec rt_val;
487
488 if (n == 0)
489 return NULL_RTVEC; /* Don't allocate an empty rtvec... */
490
491 rt_val = rtvec_alloc (n); /* Allocate an rtvec... */
492
493 for (i = 0; i < n; i++)
494 rt_val->elem[i].rtx = (argp++)->rtx;
495
496 return rt_val;
497 }
498 \f
499 /* Generate a REG rtx for a new pseudo register of mode MODE.
500 This pseudo is assigned the next sequential register number. */
501
502 rtx
503 gen_reg_rtx (mode)
504 enum machine_mode mode;
505 {
506 register rtx val;
507
508 /* Don't let anything called after initial flow analysis create new
509 registers. */
510 if (no_new_pseudos)
511 abort ();
512
513 if (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
514 || GET_MODE_CLASS (mode) == MODE_COMPLEX_INT)
515 {
516 /* For complex modes, don't make a single pseudo.
517 Instead, make a CONCAT of two pseudos.
518 This allows noncontiguous allocation of the real and imaginary parts,
519 which makes much better code. Besides, allocating DCmode
520 pseudos overstrains reload on some machines like the 386. */
521 rtx realpart, imagpart;
522 int size = GET_MODE_UNIT_SIZE (mode);
523 enum machine_mode partmode
524 = mode_for_size (size * BITS_PER_UNIT,
525 (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
526 ? MODE_FLOAT : MODE_INT),
527 0);
528
529 realpart = gen_reg_rtx (partmode);
530 imagpart = gen_reg_rtx (partmode);
531 return gen_rtx_CONCAT (mode, realpart, imagpart);
532 }
533
534 /* Make sure regno_pointer_flag and regno_reg_rtx are large
535 enough to have an element for this pseudo reg number. */
536
537 if (reg_rtx_no == regno_pointer_flag_length)
538 {
539 rtx *new1;
540 char *new =
541 (char *) savealloc (regno_pointer_flag_length * 2);
542 bcopy (regno_pointer_flag, new, regno_pointer_flag_length);
543 bzero (&new[regno_pointer_flag_length], regno_pointer_flag_length);
544 regno_pointer_flag = new;
545
546 new = (char *) savealloc (regno_pointer_flag_length * 2);
547 bcopy (regno_pointer_align, new, regno_pointer_flag_length);
548 bzero (&new[regno_pointer_flag_length], regno_pointer_flag_length);
549 regno_pointer_align = new;
550
551 new1 = (rtx *) savealloc (regno_pointer_flag_length * 2 * sizeof (rtx));
552 bcopy ((char *) regno_reg_rtx, (char *) new1,
553 regno_pointer_flag_length * sizeof (rtx));
554 bzero ((char *) &new1[regno_pointer_flag_length],
555 regno_pointer_flag_length * sizeof (rtx));
556 regno_reg_rtx = new1;
557
558 regno_pointer_flag_length *= 2;
559 }
560
561 val = gen_rtx_raw_REG (mode, reg_rtx_no);
562 regno_reg_rtx[reg_rtx_no++] = val;
563 return val;
564 }
565
566 /* Identify REG (which may be a CONCAT) as a user register. */
567
568 void
569 mark_user_reg (reg)
570 rtx reg;
571 {
572 if (GET_CODE (reg) == CONCAT)
573 {
574 REG_USERVAR_P (XEXP (reg, 0)) = 1;
575 REG_USERVAR_P (XEXP (reg, 1)) = 1;
576 }
577 else if (GET_CODE (reg) == REG)
578 REG_USERVAR_P (reg) = 1;
579 else
580 abort ();
581 }
582
583 /* Identify REG as a probable pointer register and show its alignment
584 as ALIGN, if nonzero. */
585
586 void
587 mark_reg_pointer (reg, align)
588 rtx reg;
589 int align;
590 {
591 REGNO_POINTER_FLAG (REGNO (reg)) = 1;
592
593 if (align)
594 REGNO_POINTER_ALIGN (REGNO (reg)) = align;
595 }
596
597 /* Return 1 plus largest pseudo reg number used in the current function. */
598
599 int
600 max_reg_num ()
601 {
602 return reg_rtx_no;
603 }
604
605 /* Return 1 + the largest label number used so far in the current function. */
606
607 int
608 max_label_num ()
609 {
610 if (last_label_num && label_num == base_label_num)
611 return last_label_num;
612 return label_num;
613 }
614
615 /* Return first label number used in this function (if any were used). */
616
617 int
618 get_first_label_num ()
619 {
620 return first_label_num;
621 }
622 \f
623 /* Return a value representing some low-order bits of X, where the number
624 of low-order bits is given by MODE. Note that no conversion is done
625 between floating-point and fixed-point values, rather, the bit
626 representation is returned.
627
628 This function handles the cases in common between gen_lowpart, below,
629 and two variants in cse.c and combine.c. These are the cases that can
630 be safely handled at all points in the compilation.
631
632 If this is not a case we can handle, return 0. */
633
634 rtx
635 gen_lowpart_common (mode, x)
636 enum machine_mode mode;
637 register rtx x;
638 {
639 int word = 0;
640
641 if (GET_MODE (x) == mode)
642 return x;
643
644 /* MODE must occupy no more words than the mode of X. */
645 if (GET_MODE (x) != VOIDmode
646 && ((GET_MODE_SIZE (mode) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD
647 > ((GET_MODE_SIZE (GET_MODE (x)) + (UNITS_PER_WORD - 1))
648 / UNITS_PER_WORD)))
649 return 0;
650
651 if (WORDS_BIG_ENDIAN && GET_MODE_SIZE (GET_MODE (x)) > UNITS_PER_WORD)
652 word = ((GET_MODE_SIZE (GET_MODE (x))
653 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD))
654 / UNITS_PER_WORD);
655
656 if ((GET_CODE (x) == ZERO_EXTEND || GET_CODE (x) == SIGN_EXTEND)
657 && (GET_MODE_CLASS (mode) == MODE_INT
658 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT))
659 {
660 /* If we are getting the low-order part of something that has been
661 sign- or zero-extended, we can either just use the object being
662 extended or make a narrower extension. If we want an even smaller
663 piece than the size of the object being extended, call ourselves
664 recursively.
665
666 This case is used mostly by combine and cse. */
667
668 if (GET_MODE (XEXP (x, 0)) == mode)
669 return XEXP (x, 0);
670 else if (GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (XEXP (x, 0))))
671 return gen_lowpart_common (mode, XEXP (x, 0));
672 else if (GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (x)))
673 return gen_rtx_fmt_e (GET_CODE (x), mode, XEXP (x, 0));
674 }
675 else if (GET_CODE (x) == SUBREG
676 && (GET_MODE_SIZE (mode) <= UNITS_PER_WORD
677 || GET_MODE_SIZE (mode) == GET_MODE_UNIT_SIZE (GET_MODE (x))))
678 return (GET_MODE (SUBREG_REG (x)) == mode && SUBREG_WORD (x) == 0
679 ? SUBREG_REG (x)
680 : gen_rtx_SUBREG (mode, SUBREG_REG (x), SUBREG_WORD (x) + word));
681 else if (GET_CODE (x) == REG)
682 {
683 /* Let the backend decide how many registers to skip. This is needed
684 in particular for Sparc64 where fp regs are smaller than a word. */
685 /* ??? Note that subregs are now ambiguous, in that those against
686 pseudos are sized by the Word Size, while those against hard
687 regs are sized by the underlying register size. Better would be
688 to always interpret the subreg offset parameter as bytes or bits. */
689
690 if (WORDS_BIG_ENDIAN && REGNO (x) < FIRST_PSEUDO_REGISTER)
691 word = (HARD_REGNO_NREGS (REGNO (x), GET_MODE (x))
692 - HARD_REGNO_NREGS (REGNO (x), mode));
693
694 /* If the register is not valid for MODE, return 0. If we don't
695 do this, there is no way to fix up the resulting REG later.
696 But we do do this if the current REG is not valid for its
697 mode. This latter is a kludge, but is required due to the
698 way that parameters are passed on some machines, most
699 notably Sparc. */
700 if (REGNO (x) < FIRST_PSEUDO_REGISTER
701 && ! HARD_REGNO_MODE_OK (REGNO (x) + word, mode)
702 && HARD_REGNO_MODE_OK (REGNO (x), GET_MODE (x)))
703 return 0;
704 else if (REGNO (x) < FIRST_PSEUDO_REGISTER
705 /* integrate.c can't handle parts of a return value register. */
706 && (! REG_FUNCTION_VALUE_P (x)
707 || ! rtx_equal_function_value_matters)
708 #ifdef CLASS_CANNOT_CHANGE_SIZE
709 && ! (GET_MODE_SIZE (mode) != GET_MODE_SIZE (GET_MODE (x))
710 && GET_MODE_CLASS (GET_MODE (x)) != MODE_COMPLEX_INT
711 && GET_MODE_CLASS (GET_MODE (x)) != MODE_COMPLEX_FLOAT
712 && (TEST_HARD_REG_BIT
713 (reg_class_contents[(int) CLASS_CANNOT_CHANGE_SIZE],
714 REGNO (x))))
715 #endif
716 /* We want to keep the stack, frame, and arg pointers
717 special. */
718 && x != frame_pointer_rtx
719 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
720 && x != arg_pointer_rtx
721 #endif
722 && x != stack_pointer_rtx)
723 return gen_rtx_REG (mode, REGNO (x) + word);
724 else
725 return gen_rtx_SUBREG (mode, x, word);
726 }
727 /* If X is a CONST_INT or a CONST_DOUBLE, extract the appropriate bits
728 from the low-order part of the constant. */
729 else if ((GET_MODE_CLASS (mode) == MODE_INT
730 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
731 && GET_MODE (x) == VOIDmode
732 && (GET_CODE (x) == CONST_INT || GET_CODE (x) == CONST_DOUBLE))
733 {
734 /* If MODE is twice the host word size, X is already the desired
735 representation. Otherwise, if MODE is wider than a word, we can't
736 do this. If MODE is exactly a word, return just one CONST_INT.
737 If MODE is smaller than a word, clear the bits that don't belong
738 in our mode, unless they and our sign bit are all one. So we get
739 either a reasonable negative value or a reasonable unsigned value
740 for this mode. */
741
742 if (GET_MODE_BITSIZE (mode) >= 2 * HOST_BITS_PER_WIDE_INT)
743 return x;
744 else if (GET_MODE_BITSIZE (mode) > HOST_BITS_PER_WIDE_INT)
745 return 0;
746 else if (GET_MODE_BITSIZE (mode) == HOST_BITS_PER_WIDE_INT)
747 return (GET_CODE (x) == CONST_INT ? x
748 : GEN_INT (CONST_DOUBLE_LOW (x)));
749 else
750 {
751 /* MODE must be narrower than HOST_BITS_PER_WIDE_INT. */
752 int width = GET_MODE_BITSIZE (mode);
753 HOST_WIDE_INT val = (GET_CODE (x) == CONST_INT ? INTVAL (x)
754 : CONST_DOUBLE_LOW (x));
755
756 /* Sign extend to HOST_WIDE_INT. */
757 val = val << (HOST_BITS_PER_WIDE_INT - width) >> (HOST_BITS_PER_WIDE_INT - width);
758
759 return (GET_CODE (x) == CONST_INT && INTVAL (x) == val ? x
760 : GEN_INT (val));
761 }
762 }
763
764 /* If X is an integral constant but we want it in floating-point, it
765 must be the case that we have a union of an integer and a floating-point
766 value. If the machine-parameters allow it, simulate that union here
767 and return the result. The two-word and single-word cases are
768 different. */
769
770 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
771 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
772 || flag_pretend_float)
773 && GET_MODE_CLASS (mode) == MODE_FLOAT
774 && GET_MODE_SIZE (mode) == UNITS_PER_WORD
775 && GET_CODE (x) == CONST_INT
776 && sizeof (float) * HOST_BITS_PER_CHAR == HOST_BITS_PER_WIDE_INT)
777 #ifdef REAL_ARITHMETIC
778 {
779 REAL_VALUE_TYPE r;
780 HOST_WIDE_INT i;
781
782 i = INTVAL (x);
783 r = REAL_VALUE_FROM_TARGET_SINGLE (i);
784 return CONST_DOUBLE_FROM_REAL_VALUE (r, mode);
785 }
786 #else
787 {
788 union {HOST_WIDE_INT i; float d; } u;
789
790 u.i = INTVAL (x);
791 return CONST_DOUBLE_FROM_REAL_VALUE (u.d, mode);
792 }
793 #endif
794 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
795 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
796 || flag_pretend_float)
797 && GET_MODE_CLASS (mode) == MODE_FLOAT
798 && GET_MODE_SIZE (mode) == 2 * UNITS_PER_WORD
799 && (GET_CODE (x) == CONST_INT || GET_CODE (x) == CONST_DOUBLE)
800 && GET_MODE (x) == VOIDmode
801 && (sizeof (double) * HOST_BITS_PER_CHAR
802 == 2 * HOST_BITS_PER_WIDE_INT))
803 #ifdef REAL_ARITHMETIC
804 {
805 REAL_VALUE_TYPE r;
806 HOST_WIDE_INT i[2];
807 HOST_WIDE_INT low, high;
808
809 if (GET_CODE (x) == CONST_INT)
810 low = INTVAL (x), high = low >> (HOST_BITS_PER_WIDE_INT -1);
811 else
812 low = CONST_DOUBLE_LOW (x), high = CONST_DOUBLE_HIGH (x);
813
814 /* REAL_VALUE_TARGET_DOUBLE takes the addressing order of the
815 target machine. */
816 if (WORDS_BIG_ENDIAN)
817 i[0] = high, i[1] = low;
818 else
819 i[0] = low, i[1] = high;
820
821 r = REAL_VALUE_FROM_TARGET_DOUBLE (i);
822 return CONST_DOUBLE_FROM_REAL_VALUE (r, mode);
823 }
824 #else
825 {
826 union {HOST_WIDE_INT i[2]; double d; } u;
827 HOST_WIDE_INT low, high;
828
829 if (GET_CODE (x) == CONST_INT)
830 low = INTVAL (x), high = low >> (HOST_BITS_PER_WIDE_INT -1);
831 else
832 low = CONST_DOUBLE_LOW (x), high = CONST_DOUBLE_HIGH (x);
833
834 #ifdef HOST_WORDS_BIG_ENDIAN
835 u.i[0] = high, u.i[1] = low;
836 #else
837 u.i[0] = low, u.i[1] = high;
838 #endif
839
840 return CONST_DOUBLE_FROM_REAL_VALUE (u.d, mode);
841 }
842 #endif
843
844 /* We need an extra case for machines where HOST_BITS_PER_WIDE_INT is the
845 same as sizeof (double) or when sizeof (float) is larger than the
846 size of a word on the target machine. */
847 #ifdef REAL_ARITHMETIC
848 else if (mode == SFmode && GET_CODE (x) == CONST_INT)
849 {
850 REAL_VALUE_TYPE r;
851 HOST_WIDE_INT i;
852
853 i = INTVAL (x);
854 r = REAL_VALUE_FROM_TARGET_SINGLE (i);
855 return CONST_DOUBLE_FROM_REAL_VALUE (r, mode);
856 }
857 #endif
858
859 /* Similarly, if this is converting a floating-point value into a
860 single-word integer. Only do this is the host and target parameters are
861 compatible. */
862
863 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
864 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
865 || flag_pretend_float)
866 && (GET_MODE_CLASS (mode) == MODE_INT
867 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
868 && GET_CODE (x) == CONST_DOUBLE
869 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT
870 && GET_MODE_BITSIZE (mode) == BITS_PER_WORD)
871 return operand_subword (x, word, 0, GET_MODE (x));
872
873 /* Similarly, if this is converting a floating-point value into a
874 two-word integer, we can do this one word at a time and make an
875 integer. Only do this is the host and target parameters are
876 compatible. */
877
878 else if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
879 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
880 || flag_pretend_float)
881 && (GET_MODE_CLASS (mode) == MODE_INT
882 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
883 && GET_CODE (x) == CONST_DOUBLE
884 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT
885 && GET_MODE_BITSIZE (mode) == 2 * BITS_PER_WORD)
886 {
887 rtx lowpart
888 = operand_subword (x, word + WORDS_BIG_ENDIAN, 0, GET_MODE (x));
889 rtx highpart
890 = operand_subword (x, word + ! WORDS_BIG_ENDIAN, 0, GET_MODE (x));
891
892 if (lowpart && GET_CODE (lowpart) == CONST_INT
893 && highpart && GET_CODE (highpart) == CONST_INT)
894 return immed_double_const (INTVAL (lowpart), INTVAL (highpart), mode);
895 }
896
897 /* Otherwise, we can't do this. */
898 return 0;
899 }
900 \f
901 /* Return the real part (which has mode MODE) of a complex value X.
902 This always comes at the low address in memory. */
903
904 rtx
905 gen_realpart (mode, x)
906 enum machine_mode mode;
907 register rtx x;
908 {
909 if (GET_CODE (x) == CONCAT && GET_MODE (XEXP (x, 0)) == mode)
910 return XEXP (x, 0);
911 else if (WORDS_BIG_ENDIAN)
912 return gen_highpart (mode, x);
913 else
914 return gen_lowpart (mode, x);
915 }
916
917 /* Return the imaginary part (which has mode MODE) of a complex value X.
918 This always comes at the high address in memory. */
919
920 rtx
921 gen_imagpart (mode, x)
922 enum machine_mode mode;
923 register rtx x;
924 {
925 if (GET_CODE (x) == CONCAT && GET_MODE (XEXP (x, 0)) == mode)
926 return XEXP (x, 1);
927 else if (WORDS_BIG_ENDIAN)
928 return gen_lowpart (mode, x);
929 else
930 return gen_highpart (mode, x);
931 }
932
933 /* Return 1 iff X, assumed to be a SUBREG,
934 refers to the real part of the complex value in its containing reg.
935 Complex values are always stored with the real part in the first word,
936 regardless of WORDS_BIG_ENDIAN. */
937
938 int
939 subreg_realpart_p (x)
940 rtx x;
941 {
942 if (GET_CODE (x) != SUBREG)
943 abort ();
944
945 return SUBREG_WORD (x) * UNITS_PER_WORD < GET_MODE_UNIT_SIZE (GET_MODE (SUBREG_REG (x)));
946 }
947 \f
948 /* Assuming that X is an rtx (e.g., MEM, REG or SUBREG) for a value,
949 return an rtx (MEM, SUBREG, or CONST_INT) that refers to the
950 least-significant part of X.
951 MODE specifies how big a part of X to return;
952 it usually should not be larger than a word.
953 If X is a MEM whose address is a QUEUED, the value may be so also. */
954
955 rtx
956 gen_lowpart (mode, x)
957 enum machine_mode mode;
958 register rtx x;
959 {
960 rtx result = gen_lowpart_common (mode, x);
961
962 if (result)
963 return result;
964 else if (GET_CODE (x) == REG)
965 {
966 /* Must be a hard reg that's not valid in MODE. */
967 result = gen_lowpart_common (mode, copy_to_reg (x));
968 if (result == 0)
969 abort ();
970 return result;
971 }
972 else if (GET_CODE (x) == MEM)
973 {
974 /* The only additional case we can do is MEM. */
975 register int offset = 0;
976 if (WORDS_BIG_ENDIAN)
977 offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
978 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
979
980 if (BYTES_BIG_ENDIAN)
981 /* Adjust the address so that the address-after-the-data
982 is unchanged. */
983 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
984 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
985
986 return change_address (x, mode, plus_constant (XEXP (x, 0), offset));
987 }
988 else if (GET_CODE (x) == ADDRESSOF)
989 return gen_lowpart (mode, force_reg (GET_MODE (x), x));
990 else
991 abort ();
992 }
993
994 /* Like `gen_lowpart', but refer to the most significant part.
995 This is used to access the imaginary part of a complex number. */
996
997 rtx
998 gen_highpart (mode, x)
999 enum machine_mode mode;
1000 register rtx x;
1001 {
1002 /* This case loses if X is a subreg. To catch bugs early,
1003 complain if an invalid MODE is used even in other cases. */
1004 if (GET_MODE_SIZE (mode) > UNITS_PER_WORD
1005 && GET_MODE_SIZE (mode) != GET_MODE_UNIT_SIZE (GET_MODE (x)))
1006 abort ();
1007 if (GET_CODE (x) == CONST_DOUBLE
1008 #if !(TARGET_FLOAT_FORMAT != HOST_FLOAT_FORMAT || defined (REAL_IS_NOT_DOUBLE))
1009 && GET_MODE_CLASS (GET_MODE (x)) != MODE_FLOAT
1010 #endif
1011 )
1012 return GEN_INT (CONST_DOUBLE_HIGH (x) & GET_MODE_MASK (mode));
1013 else if (GET_CODE (x) == CONST_INT)
1014 {
1015 if (HOST_BITS_PER_WIDE_INT <= BITS_PER_WORD)
1016 return const0_rtx;
1017 return GEN_INT (INTVAL (x) >> (HOST_BITS_PER_WIDE_INT - BITS_PER_WORD));
1018 }
1019 else if (GET_CODE (x) == MEM)
1020 {
1021 register int offset = 0;
1022 if (! WORDS_BIG_ENDIAN)
1023 offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
1024 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
1025
1026 if (! BYTES_BIG_ENDIAN
1027 && GET_MODE_SIZE (mode) < UNITS_PER_WORD)
1028 offset -= (GET_MODE_SIZE (mode)
1029 - MIN (UNITS_PER_WORD,
1030 GET_MODE_SIZE (GET_MODE (x))));
1031
1032 return change_address (x, mode, plus_constant (XEXP (x, 0), offset));
1033 }
1034 else if (GET_CODE (x) == SUBREG)
1035 {
1036 /* The only time this should occur is when we are looking at a
1037 multi-word item with a SUBREG whose mode is the same as that of the
1038 item. It isn't clear what we would do if it wasn't. */
1039 if (SUBREG_WORD (x) != 0)
1040 abort ();
1041 return gen_highpart (mode, SUBREG_REG (x));
1042 }
1043 else if (GET_CODE (x) == REG)
1044 {
1045 int word;
1046
1047 /* Let the backend decide how many registers to skip. This is needed
1048 in particular for sparc64 where fp regs are smaller than a word. */
1049 /* ??? Note that subregs are now ambiguous, in that those against
1050 pseudos are sized by the word size, while those against hard
1051 regs are sized by the underlying register size. Better would be
1052 to always interpret the subreg offset parameter as bytes or bits. */
1053
1054 if (WORDS_BIG_ENDIAN)
1055 word = 0;
1056 else if (REGNO (x) < FIRST_PSEUDO_REGISTER)
1057 word = (HARD_REGNO_NREGS (REGNO (x), GET_MODE (x))
1058 - HARD_REGNO_NREGS (REGNO (x), mode));
1059 else
1060 word = ((GET_MODE_SIZE (GET_MODE (x))
1061 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD))
1062 / UNITS_PER_WORD);
1063
1064 if (REGNO (x) < FIRST_PSEUDO_REGISTER
1065 /* integrate.c can't handle parts of a return value register. */
1066 && (! REG_FUNCTION_VALUE_P (x)
1067 || ! rtx_equal_function_value_matters)
1068 /* We want to keep the stack, frame, and arg pointers special. */
1069 && x != frame_pointer_rtx
1070 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
1071 && x != arg_pointer_rtx
1072 #endif
1073 && x != stack_pointer_rtx)
1074 return gen_rtx_REG (mode, REGNO (x) + word);
1075 else
1076 return gen_rtx_SUBREG (mode, x, word);
1077 }
1078 else
1079 abort ();
1080 }
1081
1082 /* Return 1 iff X, assumed to be a SUBREG,
1083 refers to the least significant part of its containing reg.
1084 If X is not a SUBREG, always return 1 (it is its own low part!). */
1085
1086 int
1087 subreg_lowpart_p (x)
1088 rtx x;
1089 {
1090 if (GET_CODE (x) != SUBREG)
1091 return 1;
1092 else if (GET_MODE (SUBREG_REG (x)) == VOIDmode)
1093 return 0;
1094
1095 if (WORDS_BIG_ENDIAN
1096 && GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))) > UNITS_PER_WORD)
1097 return (SUBREG_WORD (x)
1098 == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))
1099 - MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD))
1100 / UNITS_PER_WORD));
1101
1102 return SUBREG_WORD (x) == 0;
1103 }
1104 \f
1105 /* Return subword I of operand OP.
1106 The word number, I, is interpreted as the word number starting at the
1107 low-order address. Word 0 is the low-order word if not WORDS_BIG_ENDIAN,
1108 otherwise it is the high-order word.
1109
1110 If we cannot extract the required word, we return zero. Otherwise, an
1111 rtx corresponding to the requested word will be returned.
1112
1113 VALIDATE_ADDRESS is nonzero if the address should be validated. Before
1114 reload has completed, a valid address will always be returned. After
1115 reload, if a valid address cannot be returned, we return zero.
1116
1117 If VALIDATE_ADDRESS is zero, we simply form the required address; validating
1118 it is the responsibility of the caller.
1119
1120 MODE is the mode of OP in case it is a CONST_INT. */
1121
1122 rtx
1123 operand_subword (op, i, validate_address, mode)
1124 rtx op;
1125 int i;
1126 int validate_address;
1127 enum machine_mode mode;
1128 {
1129 HOST_WIDE_INT val;
1130 int size_ratio = HOST_BITS_PER_WIDE_INT / BITS_PER_WORD;
1131 int bits_per_word = BITS_PER_WORD;
1132
1133 if (mode == VOIDmode)
1134 mode = GET_MODE (op);
1135
1136 if (mode == VOIDmode)
1137 abort ();
1138
1139 /* If OP is narrower than a word, fail. */
1140 if (mode != BLKmode
1141 && (GET_MODE_SIZE (mode) < UNITS_PER_WORD))
1142 return 0;
1143
1144 /* If we want a word outside OP, return zero. */
1145 if (mode != BLKmode
1146 && (i + 1) * UNITS_PER_WORD > GET_MODE_SIZE (mode))
1147 return const0_rtx;
1148
1149 /* If OP is already an integer word, return it. */
1150 if (GET_MODE_CLASS (mode) == MODE_INT
1151 && GET_MODE_SIZE (mode) == UNITS_PER_WORD)
1152 return op;
1153
1154 /* If OP is a REG or SUBREG, we can handle it very simply. */
1155 if (GET_CODE (op) == REG)
1156 {
1157 /* If the register is not valid for MODE, return 0. If we don't
1158 do this, there is no way to fix up the resulting REG later. */
1159 if (REGNO (op) < FIRST_PSEUDO_REGISTER
1160 && ! HARD_REGNO_MODE_OK (REGNO (op) + i, word_mode))
1161 return 0;
1162 else if (REGNO (op) >= FIRST_PSEUDO_REGISTER
1163 || (REG_FUNCTION_VALUE_P (op)
1164 && rtx_equal_function_value_matters)
1165 /* We want to keep the stack, frame, and arg pointers
1166 special. */
1167 || op == frame_pointer_rtx
1168 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
1169 || op == arg_pointer_rtx
1170 #endif
1171 || op == stack_pointer_rtx)
1172 return gen_rtx_SUBREG (word_mode, op, i);
1173 else
1174 return gen_rtx_REG (word_mode, REGNO (op) + i);
1175 }
1176 else if (GET_CODE (op) == SUBREG)
1177 return gen_rtx_SUBREG (word_mode, SUBREG_REG (op), i + SUBREG_WORD (op));
1178 else if (GET_CODE (op) == CONCAT)
1179 {
1180 int partwords = GET_MODE_UNIT_SIZE (GET_MODE (op)) / UNITS_PER_WORD;
1181 if (i < partwords)
1182 return operand_subword (XEXP (op, 0), i, validate_address, mode);
1183 return operand_subword (XEXP (op, 1), i - partwords,
1184 validate_address, mode);
1185 }
1186
1187 /* Form a new MEM at the requested address. */
1188 if (GET_CODE (op) == MEM)
1189 {
1190 rtx addr = plus_constant (XEXP (op, 0), i * UNITS_PER_WORD);
1191 rtx new;
1192
1193 if (validate_address)
1194 {
1195 if (reload_completed)
1196 {
1197 if (! strict_memory_address_p (word_mode, addr))
1198 return 0;
1199 }
1200 else
1201 addr = memory_address (word_mode, addr);
1202 }
1203
1204 new = gen_rtx_MEM (word_mode, addr);
1205
1206 MEM_COPY_ATTRIBUTES (new, op);
1207 RTX_UNCHANGING_P (new) = RTX_UNCHANGING_P (op);
1208
1209 return new;
1210 }
1211
1212 /* The only remaining cases are when OP is a constant. If the host and
1213 target floating formats are the same, handling two-word floating
1214 constants are easy. Note that REAL_VALUE_TO_TARGET_{SINGLE,DOUBLE}
1215 are defined as returning one or two 32 bit values, respectively,
1216 and not values of BITS_PER_WORD bits. */
1217 #ifdef REAL_ARITHMETIC
1218 /* The output is some bits, the width of the target machine's word.
1219 A wider-word host can surely hold them in a CONST_INT. A narrower-word
1220 host can't. */
1221 if (HOST_BITS_PER_WIDE_INT >= BITS_PER_WORD
1222 && GET_MODE_CLASS (mode) == MODE_FLOAT
1223 && GET_MODE_BITSIZE (mode) == 64
1224 && GET_CODE (op) == CONST_DOUBLE)
1225 {
1226 long k[2];
1227 REAL_VALUE_TYPE rv;
1228
1229 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
1230 REAL_VALUE_TO_TARGET_DOUBLE (rv, k);
1231
1232 /* We handle 32-bit and >= 64-bit words here. Note that the order in
1233 which the words are written depends on the word endianness.
1234
1235 ??? This is a potential portability problem and should
1236 be fixed at some point. */
1237 if (BITS_PER_WORD == 32)
1238 return GEN_INT ((HOST_WIDE_INT) k[i]);
1239 #if HOST_BITS_PER_WIDE_INT > 32
1240 else if (BITS_PER_WORD >= 64 && i == 0)
1241 return GEN_INT ((((HOST_WIDE_INT) k[! WORDS_BIG_ENDIAN]) << 32)
1242 | (HOST_WIDE_INT) k[WORDS_BIG_ENDIAN]);
1243 #endif
1244 else if (BITS_PER_WORD == 16)
1245 {
1246 long value;
1247 value = k[i >> 1];
1248 if ((i & 0x1) == !WORDS_BIG_ENDIAN)
1249 value >>= 16;
1250 value &= 0xffff;
1251 return GEN_INT ((HOST_WIDE_INT) value);
1252 }
1253 else
1254 abort ();
1255 }
1256 else if (HOST_BITS_PER_WIDE_INT >= BITS_PER_WORD
1257 && GET_MODE_CLASS (mode) == MODE_FLOAT
1258 && GET_MODE_BITSIZE (mode) > 64
1259 && GET_CODE (op) == CONST_DOUBLE)
1260 {
1261 long k[4];
1262 REAL_VALUE_TYPE rv;
1263
1264 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
1265 REAL_VALUE_TO_TARGET_LONG_DOUBLE (rv, k);
1266
1267 if (BITS_PER_WORD == 32)
1268 return GEN_INT ((HOST_WIDE_INT) k[i]);
1269 }
1270 #else /* no REAL_ARITHMETIC */
1271 if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
1272 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
1273 || flag_pretend_float)
1274 && GET_MODE_CLASS (mode) == MODE_FLOAT
1275 && GET_MODE_SIZE (mode) == 2 * UNITS_PER_WORD
1276 && GET_CODE (op) == CONST_DOUBLE)
1277 {
1278 /* The constant is stored in the host's word-ordering,
1279 but we want to access it in the target's word-ordering. Some
1280 compilers don't like a conditional inside macro args, so we have two
1281 copies of the return. */
1282 #ifdef HOST_WORDS_BIG_ENDIAN
1283 return GEN_INT (i == WORDS_BIG_ENDIAN
1284 ? CONST_DOUBLE_HIGH (op) : CONST_DOUBLE_LOW (op));
1285 #else
1286 return GEN_INT (i != WORDS_BIG_ENDIAN
1287 ? CONST_DOUBLE_HIGH (op) : CONST_DOUBLE_LOW (op));
1288 #endif
1289 }
1290 #endif /* no REAL_ARITHMETIC */
1291
1292 /* Single word float is a little harder, since single- and double-word
1293 values often do not have the same high-order bits. We have already
1294 verified that we want the only defined word of the single-word value. */
1295 #ifdef REAL_ARITHMETIC
1296 if (GET_MODE_CLASS (mode) == MODE_FLOAT
1297 && GET_MODE_BITSIZE (mode) == 32
1298 && GET_CODE (op) == CONST_DOUBLE)
1299 {
1300 long l;
1301 REAL_VALUE_TYPE rv;
1302
1303 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
1304 REAL_VALUE_TO_TARGET_SINGLE (rv, l);
1305
1306 if (BITS_PER_WORD == 16)
1307 {
1308 if ((i & 0x1) == !WORDS_BIG_ENDIAN)
1309 l >>= 16;
1310 l &= 0xffff;
1311 }
1312 return GEN_INT ((HOST_WIDE_INT) l);
1313 }
1314 #else
1315 if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
1316 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
1317 || flag_pretend_float)
1318 && sizeof (float) * 8 == HOST_BITS_PER_WIDE_INT
1319 && GET_MODE_CLASS (mode) == MODE_FLOAT
1320 && GET_MODE_SIZE (mode) == UNITS_PER_WORD
1321 && GET_CODE (op) == CONST_DOUBLE)
1322 {
1323 double d;
1324 union {float f; HOST_WIDE_INT i; } u;
1325
1326 REAL_VALUE_FROM_CONST_DOUBLE (d, op);
1327
1328 u.f = d;
1329 return GEN_INT (u.i);
1330 }
1331 if (((HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
1332 && HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
1333 || flag_pretend_float)
1334 && sizeof (double) * 8 == HOST_BITS_PER_WIDE_INT
1335 && GET_MODE_CLASS (mode) == MODE_FLOAT
1336 && GET_MODE_SIZE (mode) == UNITS_PER_WORD
1337 && GET_CODE (op) == CONST_DOUBLE)
1338 {
1339 double d;
1340 union {double d; HOST_WIDE_INT i; } u;
1341
1342 REAL_VALUE_FROM_CONST_DOUBLE (d, op);
1343
1344 u.d = d;
1345 return GEN_INT (u.i);
1346 }
1347 #endif /* no REAL_ARITHMETIC */
1348
1349 /* The only remaining cases that we can handle are integers.
1350 Convert to proper endianness now since these cases need it.
1351 At this point, i == 0 means the low-order word.
1352
1353 We do not want to handle the case when BITS_PER_WORD <= HOST_BITS_PER_INT
1354 in general. However, if OP is (const_int 0), we can just return
1355 it for any word. */
1356
1357 if (op == const0_rtx)
1358 return op;
1359
1360 if (GET_MODE_CLASS (mode) != MODE_INT
1361 || (GET_CODE (op) != CONST_INT && GET_CODE (op) != CONST_DOUBLE)
1362 || BITS_PER_WORD > HOST_BITS_PER_WIDE_INT)
1363 return 0;
1364
1365 if (WORDS_BIG_ENDIAN)
1366 i = GET_MODE_SIZE (mode) / UNITS_PER_WORD - 1 - i;
1367
1368 /* Find out which word on the host machine this value is in and get
1369 it from the constant. */
1370 val = (i / size_ratio == 0
1371 ? (GET_CODE (op) == CONST_INT ? INTVAL (op) : CONST_DOUBLE_LOW (op))
1372 : (GET_CODE (op) == CONST_INT
1373 ? (INTVAL (op) < 0 ? ~0 : 0) : CONST_DOUBLE_HIGH (op)));
1374
1375 /* Get the value we want into the low bits of val. */
1376 if (BITS_PER_WORD < HOST_BITS_PER_WIDE_INT)
1377 val = ((val >> ((i % size_ratio) * BITS_PER_WORD)));
1378
1379 /* Clear the bits that don't belong in our mode, unless they and our sign
1380 bit are all one. So we get either a reasonable negative value or a
1381 reasonable unsigned value for this mode. */
1382 if (BITS_PER_WORD < HOST_BITS_PER_WIDE_INT
1383 && ((val & ((HOST_WIDE_INT) (-1) << (bits_per_word - 1)))
1384 != ((HOST_WIDE_INT) (-1) << (bits_per_word - 1))))
1385 val &= ((HOST_WIDE_INT) 1 << bits_per_word) - 1;
1386
1387 /* If this would be an entire word for the target, but is not for
1388 the host, then sign-extend on the host so that the number will look
1389 the same way on the host that it would on the target.
1390
1391 For example, when building a 64 bit alpha hosted 32 bit sparc
1392 targeted compiler, then we want the 32 bit unsigned value -1 to be
1393 represented as a 64 bit value -1, and not as 0x00000000ffffffff.
1394 The later confuses the sparc backend. */
1395
1396 if (BITS_PER_WORD < HOST_BITS_PER_WIDE_INT
1397 && (val & ((HOST_WIDE_INT) 1 << (bits_per_word - 1))))
1398 val |= ((HOST_WIDE_INT) (-1) << bits_per_word);
1399
1400 return GEN_INT (val);
1401 }
1402
1403 /* Similar to `operand_subword', but never return 0. If we can't extract
1404 the required subword, put OP into a register and try again. If that fails,
1405 abort. We always validate the address in this case. It is not valid
1406 to call this function after reload; it is mostly meant for RTL
1407 generation.
1408
1409 MODE is the mode of OP, in case it is CONST_INT. */
1410
1411 rtx
1412 operand_subword_force (op, i, mode)
1413 rtx op;
1414 int i;
1415 enum machine_mode mode;
1416 {
1417 rtx result = operand_subword (op, i, 1, mode);
1418
1419 if (result)
1420 return result;
1421
1422 if (mode != BLKmode && mode != VOIDmode)
1423 {
1424 /* If this is a register which can not be accessed by words, copy it
1425 to a pseudo register. */
1426 if (GET_CODE (op) == REG)
1427 op = copy_to_reg (op);
1428 else
1429 op = force_reg (mode, op);
1430 }
1431
1432 result = operand_subword (op, i, 1, mode);
1433 if (result == 0)
1434 abort ();
1435
1436 return result;
1437 }
1438 \f
1439 /* Given a compare instruction, swap the operands.
1440 A test instruction is changed into a compare of 0 against the operand. */
1441
1442 void
1443 reverse_comparison (insn)
1444 rtx insn;
1445 {
1446 rtx body = PATTERN (insn);
1447 rtx comp;
1448
1449 if (GET_CODE (body) == SET)
1450 comp = SET_SRC (body);
1451 else
1452 comp = SET_SRC (XVECEXP (body, 0, 0));
1453
1454 if (GET_CODE (comp) == COMPARE)
1455 {
1456 rtx op0 = XEXP (comp, 0);
1457 rtx op1 = XEXP (comp, 1);
1458 XEXP (comp, 0) = op1;
1459 XEXP (comp, 1) = op0;
1460 }
1461 else
1462 {
1463 rtx new = gen_rtx_COMPARE (VOIDmode, CONST0_RTX (GET_MODE (comp)), comp);
1464 if (GET_CODE (body) == SET)
1465 SET_SRC (body) = new;
1466 else
1467 SET_SRC (XVECEXP (body, 0, 0)) = new;
1468 }
1469 }
1470 \f
1471 /* Return a memory reference like MEMREF, but with its mode changed
1472 to MODE and its address changed to ADDR.
1473 (VOIDmode means don't change the mode.
1474 NULL for ADDR means don't change the address.) */
1475
1476 rtx
1477 change_address (memref, mode, addr)
1478 rtx memref;
1479 enum machine_mode mode;
1480 rtx addr;
1481 {
1482 rtx new;
1483
1484 if (GET_CODE (memref) != MEM)
1485 abort ();
1486 if (mode == VOIDmode)
1487 mode = GET_MODE (memref);
1488 if (addr == 0)
1489 addr = XEXP (memref, 0);
1490
1491 /* If reload is in progress or has completed, ADDR must be valid.
1492 Otherwise, we can call memory_address to make it valid. */
1493 if (reload_completed || reload_in_progress)
1494 {
1495 if (! memory_address_p (mode, addr))
1496 abort ();
1497 }
1498 else
1499 addr = memory_address (mode, addr);
1500
1501 if (rtx_equal_p (addr, XEXP (memref, 0)) && mode == GET_MODE (memref))
1502 return memref;
1503
1504 new = gen_rtx_MEM (mode, addr);
1505 RTX_UNCHANGING_P (new) = RTX_UNCHANGING_P (memref);
1506 MEM_COPY_ATTRIBUTES (new, memref);
1507 return new;
1508 }
1509 \f
1510 /* Return a newly created CODE_LABEL rtx with a unique label number. */
1511
1512 rtx
1513 gen_label_rtx ()
1514 {
1515 register rtx label;
1516
1517 label = gen_rtx_CODE_LABEL (VOIDmode, 0, NULL_RTX,
1518 NULL_RTX, label_num++, NULL_PTR);
1519
1520 LABEL_NUSES (label) = 0;
1521 return label;
1522 }
1523 \f
1524 /* For procedure integration. */
1525
1526 /* Return a newly created INLINE_HEADER rtx. Should allocate this
1527 from a permanent obstack when the opportunity arises. */
1528
1529 rtx
1530 gen_inline_header_rtx (first_insn, first_parm_insn, first_labelno,
1531 last_labelno, max_parm_regnum, max_regnum, args_size,
1532 pops_args, stack_slots, forced_labels, function_flags,
1533 outgoing_args_size, original_arg_vector,
1534 original_decl_initial, regno_rtx, regno_flag,
1535 regno_align, parm_reg_stack_loc)
1536 rtx first_insn, first_parm_insn;
1537 int first_labelno, last_labelno, max_parm_regnum, max_regnum, args_size;
1538 int pops_args;
1539 rtx stack_slots;
1540 rtx forced_labels;
1541 int function_flags;
1542 int outgoing_args_size;
1543 rtvec original_arg_vector;
1544 rtx original_decl_initial;
1545 rtvec regno_rtx;
1546 char *regno_flag;
1547 char *regno_align;
1548 rtvec parm_reg_stack_loc;
1549 {
1550 rtx header = gen_rtx_INLINE_HEADER (VOIDmode,
1551 cur_insn_uid++, NULL_RTX,
1552 first_insn, first_parm_insn,
1553 first_labelno, last_labelno,
1554 max_parm_regnum, max_regnum, args_size,
1555 pops_args, stack_slots, forced_labels,
1556 function_flags, outgoing_args_size,
1557 original_arg_vector,
1558 original_decl_initial,
1559 regno_rtx, regno_flag, regno_align,
1560 parm_reg_stack_loc);
1561 return header;
1562 }
1563
1564 /* Install new pointers to the first and last insns in the chain.
1565 Also, set cur_insn_uid to one higher than the last in use.
1566 Used for an inline-procedure after copying the insn chain. */
1567
1568 void
1569 set_new_first_and_last_insn (first, last)
1570 rtx first, last;
1571 {
1572 rtx insn;
1573
1574 first_insn = first;
1575 last_insn = last;
1576 cur_insn_uid = 0;
1577
1578 for (insn = first; insn; insn = NEXT_INSN (insn))
1579 cur_insn_uid = MAX (cur_insn_uid, INSN_UID (insn));
1580
1581 cur_insn_uid++;
1582 }
1583
1584 /* Set the range of label numbers found in the current function.
1585 This is used when belatedly compiling an inline function. */
1586
1587 void
1588 set_new_first_and_last_label_num (first, last)
1589 int first, last;
1590 {
1591 base_label_num = label_num;
1592 first_label_num = first;
1593 last_label_num = last;
1594 }
1595 \f
1596 /* Save all variables describing the current status into the structure *P.
1597 This is used before starting a nested function. */
1598
1599 void
1600 save_emit_status (p)
1601 struct function *p;
1602 {
1603 p->reg_rtx_no = reg_rtx_no;
1604 p->first_label_num = first_label_num;
1605 p->first_insn = first_insn;
1606 p->last_insn = last_insn;
1607 p->sequence_rtl_expr = sequence_rtl_expr;
1608 p->sequence_stack = sequence_stack;
1609 p->cur_insn_uid = cur_insn_uid;
1610 p->last_linenum = last_linenum;
1611 p->last_filename = last_filename;
1612 p->regno_pointer_flag = regno_pointer_flag;
1613 p->regno_pointer_align = regno_pointer_align;
1614 p->regno_pointer_flag_length = regno_pointer_flag_length;
1615 p->regno_reg_rtx = regno_reg_rtx;
1616 }
1617
1618 /* Restore all variables describing the current status from the structure *P.
1619 This is used after a nested function. */
1620
1621 void
1622 restore_emit_status (p)
1623 struct function *p;
1624 {
1625 int i;
1626
1627 reg_rtx_no = p->reg_rtx_no;
1628 first_label_num = p->first_label_num;
1629 last_label_num = 0;
1630 first_insn = p->first_insn;
1631 last_insn = p->last_insn;
1632 sequence_rtl_expr = p->sequence_rtl_expr;
1633 sequence_stack = p->sequence_stack;
1634 cur_insn_uid = p->cur_insn_uid;
1635 last_linenum = p->last_linenum;
1636 last_filename = p->last_filename;
1637 regno_pointer_flag = p->regno_pointer_flag;
1638 regno_pointer_align = p->regno_pointer_align;
1639 regno_pointer_flag_length = p->regno_pointer_flag_length;
1640 regno_reg_rtx = p->regno_reg_rtx;
1641
1642 /* Clear our cache of rtx expressions for start_sequence and
1643 gen_sequence. */
1644 sequence_element_free_list = 0;
1645 for (i = 0; i < SEQUENCE_RESULT_SIZE; i++)
1646 sequence_result[i] = 0;
1647
1648 free_insn = 0;
1649 }
1650 \f
1651 /* Go through all the RTL insn bodies and copy any invalid shared structure.
1652 It does not work to do this twice, because the mark bits set here
1653 are not cleared afterwards. */
1654
1655 void
1656 unshare_all_rtl (insn)
1657 register rtx insn;
1658 {
1659 for (; insn; insn = NEXT_INSN (insn))
1660 if (GET_CODE (insn) == INSN || GET_CODE (insn) == JUMP_INSN
1661 || GET_CODE (insn) == CALL_INSN)
1662 {
1663 PATTERN (insn) = copy_rtx_if_shared (PATTERN (insn));
1664 REG_NOTES (insn) = copy_rtx_if_shared (REG_NOTES (insn));
1665 LOG_LINKS (insn) = copy_rtx_if_shared (LOG_LINKS (insn));
1666 }
1667
1668 /* Make sure the addresses of stack slots found outside the insn chain
1669 (such as, in DECL_RTL of a variable) are not shared
1670 with the insn chain.
1671
1672 This special care is necessary when the stack slot MEM does not
1673 actually appear in the insn chain. If it does appear, its address
1674 is unshared from all else at that point. */
1675
1676 copy_rtx_if_shared (stack_slot_list);
1677 }
1678
1679 /* Mark ORIG as in use, and return a copy of it if it was already in use.
1680 Recursively does the same for subexpressions. */
1681
1682 rtx
1683 copy_rtx_if_shared (orig)
1684 rtx orig;
1685 {
1686 register rtx x = orig;
1687 register int i;
1688 register enum rtx_code code;
1689 register char *format_ptr;
1690 int copied = 0;
1691
1692 if (x == 0)
1693 return 0;
1694
1695 code = GET_CODE (x);
1696
1697 /* These types may be freely shared. */
1698
1699 switch (code)
1700 {
1701 case REG:
1702 case QUEUED:
1703 case CONST_INT:
1704 case CONST_DOUBLE:
1705 case SYMBOL_REF:
1706 case CODE_LABEL:
1707 case PC:
1708 case CC0:
1709 case SCRATCH:
1710 /* SCRATCH must be shared because they represent distinct values. */
1711 return x;
1712
1713 case CONST:
1714 /* CONST can be shared if it contains a SYMBOL_REF. If it contains
1715 a LABEL_REF, it isn't sharable. */
1716 if (GET_CODE (XEXP (x, 0)) == PLUS
1717 && GET_CODE (XEXP (XEXP (x, 0), 0)) == SYMBOL_REF
1718 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT)
1719 return x;
1720 break;
1721
1722 case INSN:
1723 case JUMP_INSN:
1724 case CALL_INSN:
1725 case NOTE:
1726 case BARRIER:
1727 /* The chain of insns is not being copied. */
1728 return x;
1729
1730 case MEM:
1731 /* A MEM is allowed to be shared if its address is constant
1732 or is a constant plus one of the special registers. */
1733 if (CONSTANT_ADDRESS_P (XEXP (x, 0))
1734 || XEXP (x, 0) == virtual_stack_vars_rtx
1735 || XEXP (x, 0) == virtual_incoming_args_rtx)
1736 return x;
1737
1738 if (GET_CODE (XEXP (x, 0)) == PLUS
1739 && (XEXP (XEXP (x, 0), 0) == virtual_stack_vars_rtx
1740 || XEXP (XEXP (x, 0), 0) == virtual_incoming_args_rtx)
1741 && CONSTANT_ADDRESS_P (XEXP (XEXP (x, 0), 1)))
1742 {
1743 /* This MEM can appear in more than one place,
1744 but its address better not be shared with anything else. */
1745 if (! x->used)
1746 XEXP (x, 0) = copy_rtx_if_shared (XEXP (x, 0));
1747 x->used = 1;
1748 return x;
1749 }
1750 break;
1751
1752 default:
1753 break;
1754 }
1755
1756 /* This rtx may not be shared. If it has already been seen,
1757 replace it with a copy of itself. */
1758
1759 if (x->used)
1760 {
1761 register rtx copy;
1762
1763 copy = rtx_alloc (code);
1764 bcopy ((char *) x, (char *) copy,
1765 (sizeof (*copy) - sizeof (copy->fld)
1766 + sizeof (copy->fld[0]) * GET_RTX_LENGTH (code)));
1767 x = copy;
1768 copied = 1;
1769 }
1770 x->used = 1;
1771
1772 /* Now scan the subexpressions recursively.
1773 We can store any replaced subexpressions directly into X
1774 since we know X is not shared! Any vectors in X
1775 must be copied if X was copied. */
1776
1777 format_ptr = GET_RTX_FORMAT (code);
1778
1779 for (i = 0; i < GET_RTX_LENGTH (code); i++)
1780 {
1781 switch (*format_ptr++)
1782 {
1783 case 'e':
1784 XEXP (x, i) = copy_rtx_if_shared (XEXP (x, i));
1785 break;
1786
1787 case 'E':
1788 if (XVEC (x, i) != NULL)
1789 {
1790 register int j;
1791 int len = XVECLEN (x, i);
1792
1793 if (copied && len > 0)
1794 XVEC (x, i) = gen_rtvec_vv (len, XVEC (x, i)->elem);
1795 for (j = 0; j < len; j++)
1796 XVECEXP (x, i, j) = copy_rtx_if_shared (XVECEXP (x, i, j));
1797 }
1798 break;
1799 }
1800 }
1801 return x;
1802 }
1803
1804 /* Clear all the USED bits in X to allow copy_rtx_if_shared to be used
1805 to look for shared sub-parts. */
1806
1807 void
1808 reset_used_flags (x)
1809 rtx x;
1810 {
1811 register int i, j;
1812 register enum rtx_code code;
1813 register char *format_ptr;
1814
1815 if (x == 0)
1816 return;
1817
1818 code = GET_CODE (x);
1819
1820 /* These types may be freely shared so we needn't do any resetting
1821 for them. */
1822
1823 switch (code)
1824 {
1825 case REG:
1826 case QUEUED:
1827 case CONST_INT:
1828 case CONST_DOUBLE:
1829 case SYMBOL_REF:
1830 case CODE_LABEL:
1831 case PC:
1832 case CC0:
1833 return;
1834
1835 case INSN:
1836 case JUMP_INSN:
1837 case CALL_INSN:
1838 case NOTE:
1839 case LABEL_REF:
1840 case BARRIER:
1841 /* The chain of insns is not being copied. */
1842 return;
1843
1844 default:
1845 break;
1846 }
1847
1848 x->used = 0;
1849
1850 format_ptr = GET_RTX_FORMAT (code);
1851 for (i = 0; i < GET_RTX_LENGTH (code); i++)
1852 {
1853 switch (*format_ptr++)
1854 {
1855 case 'e':
1856 reset_used_flags (XEXP (x, i));
1857 break;
1858
1859 case 'E':
1860 for (j = 0; j < XVECLEN (x, i); j++)
1861 reset_used_flags (XVECEXP (x, i, j));
1862 break;
1863 }
1864 }
1865 }
1866 \f
1867 /* Copy X if necessary so that it won't be altered by changes in OTHER.
1868 Return X or the rtx for the pseudo reg the value of X was copied into.
1869 OTHER must be valid as a SET_DEST. */
1870
1871 rtx
1872 make_safe_from (x, other)
1873 rtx x, other;
1874 {
1875 while (1)
1876 switch (GET_CODE (other))
1877 {
1878 case SUBREG:
1879 other = SUBREG_REG (other);
1880 break;
1881 case STRICT_LOW_PART:
1882 case SIGN_EXTEND:
1883 case ZERO_EXTEND:
1884 other = XEXP (other, 0);
1885 break;
1886 default:
1887 goto done;
1888 }
1889 done:
1890 if ((GET_CODE (other) == MEM
1891 && ! CONSTANT_P (x)
1892 && GET_CODE (x) != REG
1893 && GET_CODE (x) != SUBREG)
1894 || (GET_CODE (other) == REG
1895 && (REGNO (other) < FIRST_PSEUDO_REGISTER
1896 || reg_mentioned_p (other, x))))
1897 {
1898 rtx temp = gen_reg_rtx (GET_MODE (x));
1899 emit_move_insn (temp, x);
1900 return temp;
1901 }
1902 return x;
1903 }
1904 \f
1905 /* Emission of insns (adding them to the doubly-linked list). */
1906
1907 /* Return the first insn of the current sequence or current function. */
1908
1909 rtx
1910 get_insns ()
1911 {
1912 return first_insn;
1913 }
1914
1915 /* Return the last insn emitted in current sequence or current function. */
1916
1917 rtx
1918 get_last_insn ()
1919 {
1920 return last_insn;
1921 }
1922
1923 /* Specify a new insn as the last in the chain. */
1924
1925 void
1926 set_last_insn (insn)
1927 rtx insn;
1928 {
1929 if (NEXT_INSN (insn) != 0)
1930 abort ();
1931 last_insn = insn;
1932 }
1933
1934 /* Return the last insn emitted, even if it is in a sequence now pushed. */
1935
1936 rtx
1937 get_last_insn_anywhere ()
1938 {
1939 struct sequence_stack *stack;
1940 if (last_insn)
1941 return last_insn;
1942 for (stack = sequence_stack; stack; stack = stack->next)
1943 if (stack->last != 0)
1944 return stack->last;
1945 return 0;
1946 }
1947
1948 /* Return a number larger than any instruction's uid in this function. */
1949
1950 int
1951 get_max_uid ()
1952 {
1953 return cur_insn_uid;
1954 }
1955 \f
1956 /* Return the next insn. If it is a SEQUENCE, return the first insn
1957 of the sequence. */
1958
1959 rtx
1960 next_insn (insn)
1961 rtx insn;
1962 {
1963 if (insn)
1964 {
1965 insn = NEXT_INSN (insn);
1966 if (insn && GET_CODE (insn) == INSN
1967 && GET_CODE (PATTERN (insn)) == SEQUENCE)
1968 insn = XVECEXP (PATTERN (insn), 0, 0);
1969 }
1970
1971 return insn;
1972 }
1973
1974 /* Return the previous insn. If it is a SEQUENCE, return the last insn
1975 of the sequence. */
1976
1977 rtx
1978 previous_insn (insn)
1979 rtx insn;
1980 {
1981 if (insn)
1982 {
1983 insn = PREV_INSN (insn);
1984 if (insn && GET_CODE (insn) == INSN
1985 && GET_CODE (PATTERN (insn)) == SEQUENCE)
1986 insn = XVECEXP (PATTERN (insn), 0, XVECLEN (PATTERN (insn), 0) - 1);
1987 }
1988
1989 return insn;
1990 }
1991
1992 /* Return the next insn after INSN that is not a NOTE. This routine does not
1993 look inside SEQUENCEs. */
1994
1995 rtx
1996 next_nonnote_insn (insn)
1997 rtx insn;
1998 {
1999 while (insn)
2000 {
2001 insn = NEXT_INSN (insn);
2002 if (insn == 0 || GET_CODE (insn) != NOTE)
2003 break;
2004 }
2005
2006 return insn;
2007 }
2008
2009 /* Return the previous insn before INSN that is not a NOTE. This routine does
2010 not look inside SEQUENCEs. */
2011
2012 rtx
2013 prev_nonnote_insn (insn)
2014 rtx insn;
2015 {
2016 while (insn)
2017 {
2018 insn = PREV_INSN (insn);
2019 if (insn == 0 || GET_CODE (insn) != NOTE)
2020 break;
2021 }
2022
2023 return insn;
2024 }
2025
2026 /* Return the next INSN, CALL_INSN or JUMP_INSN after INSN;
2027 or 0, if there is none. This routine does not look inside
2028 SEQUENCEs. */
2029
2030 rtx
2031 next_real_insn (insn)
2032 rtx insn;
2033 {
2034 while (insn)
2035 {
2036 insn = NEXT_INSN (insn);
2037 if (insn == 0 || GET_CODE (insn) == INSN
2038 || GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == JUMP_INSN)
2039 break;
2040 }
2041
2042 return insn;
2043 }
2044
2045 /* Return the last INSN, CALL_INSN or JUMP_INSN before INSN;
2046 or 0, if there is none. This routine does not look inside
2047 SEQUENCEs. */
2048
2049 rtx
2050 prev_real_insn (insn)
2051 rtx insn;
2052 {
2053 while (insn)
2054 {
2055 insn = PREV_INSN (insn);
2056 if (insn == 0 || GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN
2057 || GET_CODE (insn) == JUMP_INSN)
2058 break;
2059 }
2060
2061 return insn;
2062 }
2063
2064 /* Find the next insn after INSN that really does something. This routine
2065 does not look inside SEQUENCEs. Until reload has completed, this is the
2066 same as next_real_insn. */
2067
2068 rtx
2069 next_active_insn (insn)
2070 rtx insn;
2071 {
2072 while (insn)
2073 {
2074 insn = NEXT_INSN (insn);
2075 if (insn == 0
2076 || GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == JUMP_INSN
2077 || (GET_CODE (insn) == INSN
2078 && (! reload_completed
2079 || (GET_CODE (PATTERN (insn)) != USE
2080 && GET_CODE (PATTERN (insn)) != CLOBBER))))
2081 break;
2082 }
2083
2084 return insn;
2085 }
2086
2087 /* Find the last insn before INSN that really does something. This routine
2088 does not look inside SEQUENCEs. Until reload has completed, this is the
2089 same as prev_real_insn. */
2090
2091 rtx
2092 prev_active_insn (insn)
2093 rtx insn;
2094 {
2095 while (insn)
2096 {
2097 insn = PREV_INSN (insn);
2098 if (insn == 0
2099 || GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == JUMP_INSN
2100 || (GET_CODE (insn) == INSN
2101 && (! reload_completed
2102 || (GET_CODE (PATTERN (insn)) != USE
2103 && GET_CODE (PATTERN (insn)) != CLOBBER))))
2104 break;
2105 }
2106
2107 return insn;
2108 }
2109
2110 /* Return the next CODE_LABEL after the insn INSN, or 0 if there is none. */
2111
2112 rtx
2113 next_label (insn)
2114 rtx insn;
2115 {
2116 while (insn)
2117 {
2118 insn = NEXT_INSN (insn);
2119 if (insn == 0 || GET_CODE (insn) == CODE_LABEL)
2120 break;
2121 }
2122
2123 return insn;
2124 }
2125
2126 /* Return the last CODE_LABEL before the insn INSN, or 0 if there is none. */
2127
2128 rtx
2129 prev_label (insn)
2130 rtx insn;
2131 {
2132 while (insn)
2133 {
2134 insn = PREV_INSN (insn);
2135 if (insn == 0 || GET_CODE (insn) == CODE_LABEL)
2136 break;
2137 }
2138
2139 return insn;
2140 }
2141 \f
2142 #ifdef HAVE_cc0
2143 /* INSN uses CC0 and is being moved into a delay slot. Set up REG_CC_SETTER
2144 and REG_CC_USER notes so we can find it. */
2145
2146 void
2147 link_cc0_insns (insn)
2148 rtx insn;
2149 {
2150 rtx user = next_nonnote_insn (insn);
2151
2152 if (GET_CODE (user) == INSN && GET_CODE (PATTERN (user)) == SEQUENCE)
2153 user = XVECEXP (PATTERN (user), 0, 0);
2154
2155 REG_NOTES (user) = gen_rtx_INSN_LIST (REG_CC_SETTER, insn, REG_NOTES (user));
2156 REG_NOTES (insn) = gen_rtx_INSN_LIST (REG_CC_USER, user, REG_NOTES (insn));
2157 }
2158
2159 /* Return the next insn that uses CC0 after INSN, which is assumed to
2160 set it. This is the inverse of prev_cc0_setter (i.e., prev_cc0_setter
2161 applied to the result of this function should yield INSN).
2162
2163 Normally, this is simply the next insn. However, if a REG_CC_USER note
2164 is present, it contains the insn that uses CC0.
2165
2166 Return 0 if we can't find the insn. */
2167
2168 rtx
2169 next_cc0_user (insn)
2170 rtx insn;
2171 {
2172 rtx note = find_reg_note (insn, REG_CC_USER, NULL_RTX);
2173
2174 if (note)
2175 return XEXP (note, 0);
2176
2177 insn = next_nonnote_insn (insn);
2178 if (insn && GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
2179 insn = XVECEXP (PATTERN (insn), 0, 0);
2180
2181 if (insn && GET_RTX_CLASS (GET_CODE (insn)) == 'i'
2182 && reg_mentioned_p (cc0_rtx, PATTERN (insn)))
2183 return insn;
2184
2185 return 0;
2186 }
2187
2188 /* Find the insn that set CC0 for INSN. Unless INSN has a REG_CC_SETTER
2189 note, it is the previous insn. */
2190
2191 rtx
2192 prev_cc0_setter (insn)
2193 rtx insn;
2194 {
2195 rtx note = find_reg_note (insn, REG_CC_SETTER, NULL_RTX);
2196
2197 if (note)
2198 return XEXP (note, 0);
2199
2200 insn = prev_nonnote_insn (insn);
2201 if (! sets_cc0_p (PATTERN (insn)))
2202 abort ();
2203
2204 return insn;
2205 }
2206 #endif
2207 \f
2208 /* Try splitting insns that can be split for better scheduling.
2209 PAT is the pattern which might split.
2210 TRIAL is the insn providing PAT.
2211 LAST is non-zero if we should return the last insn of the sequence produced.
2212
2213 If this routine succeeds in splitting, it returns the first or last
2214 replacement insn depending on the value of LAST. Otherwise, it
2215 returns TRIAL. If the insn to be returned can be split, it will be. */
2216
2217 rtx
2218 try_split (pat, trial, last)
2219 rtx pat, trial;
2220 int last;
2221 {
2222 rtx before = PREV_INSN (trial);
2223 rtx after = NEXT_INSN (trial);
2224 rtx seq = split_insns (pat, trial);
2225 int has_barrier = 0;
2226 rtx tem;
2227
2228 /* If we are splitting a JUMP_INSN, it might be followed by a BARRIER.
2229 We may need to handle this specially. */
2230 if (after && GET_CODE (after) == BARRIER)
2231 {
2232 has_barrier = 1;
2233 after = NEXT_INSN (after);
2234 }
2235
2236 if (seq)
2237 {
2238 /* SEQ can either be a SEQUENCE or the pattern of a single insn.
2239 The latter case will normally arise only when being done so that
2240 it, in turn, will be split (SFmode on the 29k is an example). */
2241 if (GET_CODE (seq) == SEQUENCE)
2242 {
2243 /* If we are splitting a JUMP_INSN, look for the JUMP_INSN in
2244 SEQ and copy our JUMP_LABEL to it. If JUMP_LABEL is non-zero,
2245 increment the usage count so we don't delete the label. */
2246 int i;
2247
2248 if (GET_CODE (trial) == JUMP_INSN)
2249 for (i = XVECLEN (seq, 0) - 1; i >= 0; i--)
2250 if (GET_CODE (XVECEXP (seq, 0, i)) == JUMP_INSN)
2251 {
2252 JUMP_LABEL (XVECEXP (seq, 0, i)) = JUMP_LABEL (trial);
2253
2254 if (JUMP_LABEL (trial))
2255 LABEL_NUSES (JUMP_LABEL (trial))++;
2256 }
2257
2258 tem = emit_insn_after (seq, before);
2259
2260 delete_insn (trial);
2261 if (has_barrier)
2262 emit_barrier_after (tem);
2263
2264 /* Recursively call try_split for each new insn created; by the
2265 time control returns here that insn will be fully split, so
2266 set LAST and continue from the insn after the one returned.
2267 We can't use next_active_insn here since AFTER may be a note.
2268 Ignore deleted insns, which can be occur if not optimizing. */
2269 for (tem = NEXT_INSN (before); tem != after;
2270 tem = NEXT_INSN (tem))
2271 if (! INSN_DELETED_P (tem)
2272 && GET_RTX_CLASS (GET_CODE (tem)) == 'i')
2273 tem = try_split (PATTERN (tem), tem, 1);
2274 }
2275 /* Avoid infinite loop if the result matches the original pattern. */
2276 else if (rtx_equal_p (seq, pat))
2277 return trial;
2278 else
2279 {
2280 PATTERN (trial) = seq;
2281 INSN_CODE (trial) = -1;
2282 try_split (seq, trial, last);
2283 }
2284
2285 /* Return either the first or the last insn, depending on which was
2286 requested. */
2287 return last ? prev_active_insn (after) : next_active_insn (before);
2288 }
2289
2290 return trial;
2291 }
2292 \f
2293 /* Make and return an INSN rtx, initializing all its slots.
2294 Store PATTERN in the pattern slots. */
2295
2296 rtx
2297 make_insn_raw (pattern)
2298 rtx pattern;
2299 {
2300 register rtx insn;
2301
2302 /* If in RTL generation phase, see if FREE_INSN can be used. */
2303 if (free_insn != 0 && rtx_equal_function_value_matters)
2304 {
2305 insn = free_insn;
2306 free_insn = NEXT_INSN (free_insn);
2307 PUT_CODE (insn, INSN);
2308 }
2309 else
2310 insn = rtx_alloc (INSN);
2311
2312 INSN_UID (insn) = cur_insn_uid++;
2313 PATTERN (insn) = pattern;
2314 INSN_CODE (insn) = -1;
2315 LOG_LINKS (insn) = NULL;
2316 REG_NOTES (insn) = NULL;
2317
2318 return insn;
2319 }
2320
2321 /* Like `make_insn' but make a JUMP_INSN instead of an insn. */
2322
2323 static rtx
2324 make_jump_insn_raw (pattern)
2325 rtx pattern;
2326 {
2327 register rtx insn;
2328
2329 insn = rtx_alloc (JUMP_INSN);
2330 INSN_UID (insn) = cur_insn_uid++;
2331
2332 PATTERN (insn) = pattern;
2333 INSN_CODE (insn) = -1;
2334 LOG_LINKS (insn) = NULL;
2335 REG_NOTES (insn) = NULL;
2336 JUMP_LABEL (insn) = NULL;
2337
2338 return insn;
2339 }
2340
2341 /* Like `make_insn' but make a CALL_INSN instead of an insn. */
2342
2343 static rtx
2344 make_call_insn_raw (pattern)
2345 rtx pattern;
2346 {
2347 register rtx insn;
2348
2349 insn = rtx_alloc (CALL_INSN);
2350 INSN_UID (insn) = cur_insn_uid++;
2351
2352 PATTERN (insn) = pattern;
2353 INSN_CODE (insn) = -1;
2354 LOG_LINKS (insn) = NULL;
2355 REG_NOTES (insn) = NULL;
2356 CALL_INSN_FUNCTION_USAGE (insn) = NULL;
2357
2358 return insn;
2359 }
2360 \f
2361 /* Add INSN to the end of the doubly-linked list.
2362 INSN may be an INSN, JUMP_INSN, CALL_INSN, CODE_LABEL, BARRIER or NOTE. */
2363
2364 void
2365 add_insn (insn)
2366 register rtx insn;
2367 {
2368 PREV_INSN (insn) = last_insn;
2369 NEXT_INSN (insn) = 0;
2370
2371 if (NULL != last_insn)
2372 NEXT_INSN (last_insn) = insn;
2373
2374 if (NULL == first_insn)
2375 first_insn = insn;
2376
2377 last_insn = insn;
2378 }
2379
2380 /* Add INSN into the doubly-linked list after insn AFTER. This and
2381 the next should be the only functions called to insert an insn once
2382 delay slots have been filled since only they know how to update a
2383 SEQUENCE. */
2384
2385 void
2386 add_insn_after (insn, after)
2387 rtx insn, after;
2388 {
2389 rtx next = NEXT_INSN (after);
2390
2391 if (optimize && INSN_DELETED_P (after))
2392 abort ();
2393
2394 NEXT_INSN (insn) = next;
2395 PREV_INSN (insn) = after;
2396
2397 if (next)
2398 {
2399 PREV_INSN (next) = insn;
2400 if (GET_CODE (next) == INSN && GET_CODE (PATTERN (next)) == SEQUENCE)
2401 PREV_INSN (XVECEXP (PATTERN (next), 0, 0)) = insn;
2402 }
2403 else if (last_insn == after)
2404 last_insn = insn;
2405 else
2406 {
2407 struct sequence_stack *stack = sequence_stack;
2408 /* Scan all pending sequences too. */
2409 for (; stack; stack = stack->next)
2410 if (after == stack->last)
2411 {
2412 stack->last = insn;
2413 break;
2414 }
2415
2416 if (stack == 0)
2417 abort ();
2418 }
2419
2420 NEXT_INSN (after) = insn;
2421 if (GET_CODE (after) == INSN && GET_CODE (PATTERN (after)) == SEQUENCE)
2422 {
2423 rtx sequence = PATTERN (after);
2424 NEXT_INSN (XVECEXP (sequence, 0, XVECLEN (sequence, 0) - 1)) = insn;
2425 }
2426 }
2427
2428 /* Add INSN into the doubly-linked list before insn BEFORE. This and
2429 the previous should be the only functions called to insert an insn once
2430 delay slots have been filled since only they know how to update a
2431 SEQUENCE. */
2432
2433 void
2434 add_insn_before (insn, before)
2435 rtx insn, before;
2436 {
2437 rtx prev = PREV_INSN (before);
2438
2439 if (optimize && INSN_DELETED_P (before))
2440 abort ();
2441
2442 PREV_INSN (insn) = prev;
2443 NEXT_INSN (insn) = before;
2444
2445 if (prev)
2446 {
2447 NEXT_INSN (prev) = insn;
2448 if (GET_CODE (prev) == INSN && GET_CODE (PATTERN (prev)) == SEQUENCE)
2449 {
2450 rtx sequence = PATTERN (prev);
2451 NEXT_INSN (XVECEXP (sequence, 0, XVECLEN (sequence, 0) - 1)) = insn;
2452 }
2453 }
2454 else if (first_insn == before)
2455 first_insn = insn;
2456 else
2457 {
2458 struct sequence_stack *stack = sequence_stack;
2459 /* Scan all pending sequences too. */
2460 for (; stack; stack = stack->next)
2461 if (before == stack->first)
2462 {
2463 stack->first = insn;
2464 break;
2465 }
2466
2467 if (stack == 0)
2468 abort ();
2469 }
2470
2471 PREV_INSN (before) = insn;
2472 if (GET_CODE (before) == INSN && GET_CODE (PATTERN (before)) == SEQUENCE)
2473 PREV_INSN (XVECEXP (PATTERN (before), 0, 0)) = insn;
2474 }
2475
2476 /* Delete all insns made since FROM.
2477 FROM becomes the new last instruction. */
2478
2479 void
2480 delete_insns_since (from)
2481 rtx from;
2482 {
2483 if (from == 0)
2484 first_insn = 0;
2485 else
2486 NEXT_INSN (from) = 0;
2487 last_insn = from;
2488 }
2489
2490 /* This function is deprecated, please use sequences instead.
2491
2492 Move a consecutive bunch of insns to a different place in the chain.
2493 The insns to be moved are those between FROM and TO.
2494 They are moved to a new position after the insn AFTER.
2495 AFTER must not be FROM or TO or any insn in between.
2496
2497 This function does not know about SEQUENCEs and hence should not be
2498 called after delay-slot filling has been done. */
2499
2500 void
2501 reorder_insns (from, to, after)
2502 rtx from, to, after;
2503 {
2504 /* Splice this bunch out of where it is now. */
2505 if (PREV_INSN (from))
2506 NEXT_INSN (PREV_INSN (from)) = NEXT_INSN (to);
2507 if (NEXT_INSN (to))
2508 PREV_INSN (NEXT_INSN (to)) = PREV_INSN (from);
2509 if (last_insn == to)
2510 last_insn = PREV_INSN (from);
2511 if (first_insn == from)
2512 first_insn = NEXT_INSN (to);
2513
2514 /* Make the new neighbors point to it and it to them. */
2515 if (NEXT_INSN (after))
2516 PREV_INSN (NEXT_INSN (after)) = to;
2517
2518 NEXT_INSN (to) = NEXT_INSN (after);
2519 PREV_INSN (from) = after;
2520 NEXT_INSN (after) = from;
2521 if (after == last_insn)
2522 last_insn = to;
2523 }
2524
2525 /* Return the line note insn preceding INSN. */
2526
2527 static rtx
2528 find_line_note (insn)
2529 rtx insn;
2530 {
2531 if (no_line_numbers)
2532 return 0;
2533
2534 for (; insn; insn = PREV_INSN (insn))
2535 if (GET_CODE (insn) == NOTE
2536 && NOTE_LINE_NUMBER (insn) >= 0)
2537 break;
2538
2539 return insn;
2540 }
2541
2542 /* Like reorder_insns, but inserts line notes to preserve the line numbers
2543 of the moved insns when debugging. This may insert a note between AFTER
2544 and FROM, and another one after TO. */
2545
2546 void
2547 reorder_insns_with_line_notes (from, to, after)
2548 rtx from, to, after;
2549 {
2550 rtx from_line = find_line_note (from);
2551 rtx after_line = find_line_note (after);
2552
2553 reorder_insns (from, to, after);
2554
2555 if (from_line == after_line)
2556 return;
2557
2558 if (from_line)
2559 emit_line_note_after (NOTE_SOURCE_FILE (from_line),
2560 NOTE_LINE_NUMBER (from_line),
2561 after);
2562 if (after_line)
2563 emit_line_note_after (NOTE_SOURCE_FILE (after_line),
2564 NOTE_LINE_NUMBER (after_line),
2565 to);
2566 }
2567 \f
2568 /* Emit an insn of given code and pattern
2569 at a specified place within the doubly-linked list. */
2570
2571 /* Make an instruction with body PATTERN
2572 and output it before the instruction BEFORE. */
2573
2574 rtx
2575 emit_insn_before (pattern, before)
2576 register rtx pattern, before;
2577 {
2578 register rtx insn = before;
2579
2580 if (GET_CODE (pattern) == SEQUENCE)
2581 {
2582 register int i;
2583
2584 for (i = 0; i < XVECLEN (pattern, 0); i++)
2585 {
2586 insn = XVECEXP (pattern, 0, i);
2587 add_insn_before (insn, before);
2588 }
2589 if (XVECLEN (pattern, 0) < SEQUENCE_RESULT_SIZE)
2590 sequence_result[XVECLEN (pattern, 0)] = pattern;
2591 }
2592 else
2593 {
2594 insn = make_insn_raw (pattern);
2595 add_insn_before (insn, before);
2596 }
2597
2598 return insn;
2599 }
2600
2601 /* Make an instruction with body PATTERN and code JUMP_INSN
2602 and output it before the instruction BEFORE. */
2603
2604 rtx
2605 emit_jump_insn_before (pattern, before)
2606 register rtx pattern, before;
2607 {
2608 register rtx insn;
2609
2610 if (GET_CODE (pattern) == SEQUENCE)
2611 insn = emit_insn_before (pattern, before);
2612 else
2613 {
2614 insn = make_jump_insn_raw (pattern);
2615 add_insn_before (insn, before);
2616 }
2617
2618 return insn;
2619 }
2620
2621 /* Make an instruction with body PATTERN and code CALL_INSN
2622 and output it before the instruction BEFORE. */
2623
2624 rtx
2625 emit_call_insn_before (pattern, before)
2626 register rtx pattern, before;
2627 {
2628 register rtx insn;
2629
2630 if (GET_CODE (pattern) == SEQUENCE)
2631 insn = emit_insn_before (pattern, before);
2632 else
2633 {
2634 insn = make_call_insn_raw (pattern);
2635 add_insn_before (insn, before);
2636 PUT_CODE (insn, CALL_INSN);
2637 }
2638
2639 return insn;
2640 }
2641
2642 /* Make an insn of code BARRIER
2643 and output it before the insn AFTER. */
2644
2645 rtx
2646 emit_barrier_before (before)
2647 register rtx before;
2648 {
2649 register rtx insn = rtx_alloc (BARRIER);
2650
2651 INSN_UID (insn) = cur_insn_uid++;
2652
2653 add_insn_before (insn, before);
2654 return insn;
2655 }
2656
2657 /* Emit a note of subtype SUBTYPE before the insn BEFORE. */
2658
2659 rtx
2660 emit_note_before (subtype, before)
2661 int subtype;
2662 rtx before;
2663 {
2664 register rtx note = rtx_alloc (NOTE);
2665 INSN_UID (note) = cur_insn_uid++;
2666 NOTE_SOURCE_FILE (note) = 0;
2667 NOTE_LINE_NUMBER (note) = subtype;
2668
2669 add_insn_before (note, before);
2670 return note;
2671 }
2672 \f
2673 /* Make an insn of code INSN with body PATTERN
2674 and output it after the insn AFTER. */
2675
2676 rtx
2677 emit_insn_after (pattern, after)
2678 register rtx pattern, after;
2679 {
2680 register rtx insn = after;
2681
2682 if (GET_CODE (pattern) == SEQUENCE)
2683 {
2684 register int i;
2685
2686 for (i = 0; i < XVECLEN (pattern, 0); i++)
2687 {
2688 insn = XVECEXP (pattern, 0, i);
2689 add_insn_after (insn, after);
2690 after = insn;
2691 }
2692 if (XVECLEN (pattern, 0) < SEQUENCE_RESULT_SIZE)
2693 sequence_result[XVECLEN (pattern, 0)] = pattern;
2694 }
2695 else
2696 {
2697 insn = make_insn_raw (pattern);
2698 add_insn_after (insn, after);
2699 }
2700
2701 return insn;
2702 }
2703
2704 /* Similar to emit_insn_after, except that line notes are to be inserted so
2705 as to act as if this insn were at FROM. */
2706
2707 void
2708 emit_insn_after_with_line_notes (pattern, after, from)
2709 rtx pattern, after, from;
2710 {
2711 rtx from_line = find_line_note (from);
2712 rtx after_line = find_line_note (after);
2713 rtx insn = emit_insn_after (pattern, after);
2714
2715 if (from_line)
2716 emit_line_note_after (NOTE_SOURCE_FILE (from_line),
2717 NOTE_LINE_NUMBER (from_line),
2718 after);
2719
2720 if (after_line)
2721 emit_line_note_after (NOTE_SOURCE_FILE (after_line),
2722 NOTE_LINE_NUMBER (after_line),
2723 insn);
2724 }
2725
2726 /* Make an insn of code JUMP_INSN with body PATTERN
2727 and output it after the insn AFTER. */
2728
2729 rtx
2730 emit_jump_insn_after (pattern, after)
2731 register rtx pattern, after;
2732 {
2733 register rtx insn;
2734
2735 if (GET_CODE (pattern) == SEQUENCE)
2736 insn = emit_insn_after (pattern, after);
2737 else
2738 {
2739 insn = make_jump_insn_raw (pattern);
2740 add_insn_after (insn, after);
2741 }
2742
2743 return insn;
2744 }
2745
2746 /* Make an insn of code BARRIER
2747 and output it after the insn AFTER. */
2748
2749 rtx
2750 emit_barrier_after (after)
2751 register rtx after;
2752 {
2753 register rtx insn = rtx_alloc (BARRIER);
2754
2755 INSN_UID (insn) = cur_insn_uid++;
2756
2757 add_insn_after (insn, after);
2758 return insn;
2759 }
2760
2761 /* Emit the label LABEL after the insn AFTER. */
2762
2763 rtx
2764 emit_label_after (label, after)
2765 rtx label, after;
2766 {
2767 /* This can be called twice for the same label
2768 as a result of the confusion that follows a syntax error!
2769 So make it harmless. */
2770 if (INSN_UID (label) == 0)
2771 {
2772 INSN_UID (label) = cur_insn_uid++;
2773 add_insn_after (label, after);
2774 }
2775
2776 return label;
2777 }
2778
2779 /* Emit a note of subtype SUBTYPE after the insn AFTER. */
2780
2781 rtx
2782 emit_note_after (subtype, after)
2783 int subtype;
2784 rtx after;
2785 {
2786 register rtx note = rtx_alloc (NOTE);
2787 INSN_UID (note) = cur_insn_uid++;
2788 NOTE_SOURCE_FILE (note) = 0;
2789 NOTE_LINE_NUMBER (note) = subtype;
2790 add_insn_after (note, after);
2791 return note;
2792 }
2793
2794 /* Emit a line note for FILE and LINE after the insn AFTER. */
2795
2796 rtx
2797 emit_line_note_after (file, line, after)
2798 char *file;
2799 int line;
2800 rtx after;
2801 {
2802 register rtx note;
2803
2804 if (no_line_numbers && line > 0)
2805 {
2806 cur_insn_uid++;
2807 return 0;
2808 }
2809
2810 note = rtx_alloc (NOTE);
2811 INSN_UID (note) = cur_insn_uid++;
2812 NOTE_SOURCE_FILE (note) = file;
2813 NOTE_LINE_NUMBER (note) = line;
2814 add_insn_after (note, after);
2815 return note;
2816 }
2817 \f
2818 /* Make an insn of code INSN with pattern PATTERN
2819 and add it to the end of the doubly-linked list.
2820 If PATTERN is a SEQUENCE, take the elements of it
2821 and emit an insn for each element.
2822
2823 Returns the last insn emitted. */
2824
2825 rtx
2826 emit_insn (pattern)
2827 rtx pattern;
2828 {
2829 rtx insn = last_insn;
2830
2831 if (GET_CODE (pattern) == SEQUENCE)
2832 {
2833 register int i;
2834
2835 for (i = 0; i < XVECLEN (pattern, 0); i++)
2836 {
2837 insn = XVECEXP (pattern, 0, i);
2838 add_insn (insn);
2839 }
2840 if (XVECLEN (pattern, 0) < SEQUENCE_RESULT_SIZE)
2841 sequence_result[XVECLEN (pattern, 0)] = pattern;
2842 }
2843 else
2844 {
2845 insn = make_insn_raw (pattern);
2846 add_insn (insn);
2847 }
2848
2849 return insn;
2850 }
2851
2852 /* Emit the insns in a chain starting with INSN.
2853 Return the last insn emitted. */
2854
2855 rtx
2856 emit_insns (insn)
2857 rtx insn;
2858 {
2859 rtx last = 0;
2860
2861 while (insn)
2862 {
2863 rtx next = NEXT_INSN (insn);
2864 add_insn (insn);
2865 last = insn;
2866 insn = next;
2867 }
2868
2869 return last;
2870 }
2871
2872 /* Emit the insns in a chain starting with INSN and place them in front of
2873 the insn BEFORE. Return the last insn emitted. */
2874
2875 rtx
2876 emit_insns_before (insn, before)
2877 rtx insn;
2878 rtx before;
2879 {
2880 rtx last = 0;
2881
2882 while (insn)
2883 {
2884 rtx next = NEXT_INSN (insn);
2885 add_insn_before (insn, before);
2886 last = insn;
2887 insn = next;
2888 }
2889
2890 return last;
2891 }
2892
2893 /* Emit the insns in a chain starting with FIRST and place them in back of
2894 the insn AFTER. Return the last insn emitted. */
2895
2896 rtx
2897 emit_insns_after (first, after)
2898 register rtx first;
2899 register rtx after;
2900 {
2901 register rtx last;
2902 register rtx after_after;
2903
2904 if (!after)
2905 abort ();
2906
2907 if (!first)
2908 return first;
2909
2910 for (last = first; NEXT_INSN (last); last = NEXT_INSN (last))
2911 continue;
2912
2913 after_after = NEXT_INSN (after);
2914
2915 NEXT_INSN (after) = first;
2916 PREV_INSN (first) = after;
2917 NEXT_INSN (last) = after_after;
2918 if (after_after)
2919 PREV_INSN (after_after) = last;
2920
2921 if (after == last_insn)
2922 last_insn = last;
2923 return last;
2924 }
2925
2926 /* Make an insn of code JUMP_INSN with pattern PATTERN
2927 and add it to the end of the doubly-linked list. */
2928
2929 rtx
2930 emit_jump_insn (pattern)
2931 rtx pattern;
2932 {
2933 if (GET_CODE (pattern) == SEQUENCE)
2934 return emit_insn (pattern);
2935 else
2936 {
2937 register rtx insn = make_jump_insn_raw (pattern);
2938 add_insn (insn);
2939 return insn;
2940 }
2941 }
2942
2943 /* Make an insn of code CALL_INSN with pattern PATTERN
2944 and add it to the end of the doubly-linked list. */
2945
2946 rtx
2947 emit_call_insn (pattern)
2948 rtx pattern;
2949 {
2950 if (GET_CODE (pattern) == SEQUENCE)
2951 return emit_insn (pattern);
2952 else
2953 {
2954 register rtx insn = make_call_insn_raw (pattern);
2955 add_insn (insn);
2956 PUT_CODE (insn, CALL_INSN);
2957 return insn;
2958 }
2959 }
2960
2961 /* Add the label LABEL to the end of the doubly-linked list. */
2962
2963 rtx
2964 emit_label (label)
2965 rtx label;
2966 {
2967 /* This can be called twice for the same label
2968 as a result of the confusion that follows a syntax error!
2969 So make it harmless. */
2970 if (INSN_UID (label) == 0)
2971 {
2972 INSN_UID (label) = cur_insn_uid++;
2973 add_insn (label);
2974 }
2975 return label;
2976 }
2977
2978 /* Make an insn of code BARRIER
2979 and add it to the end of the doubly-linked list. */
2980
2981 rtx
2982 emit_barrier ()
2983 {
2984 register rtx barrier = rtx_alloc (BARRIER);
2985 INSN_UID (barrier) = cur_insn_uid++;
2986 add_insn (barrier);
2987 return barrier;
2988 }
2989
2990 /* Make an insn of code NOTE
2991 with data-fields specified by FILE and LINE
2992 and add it to the end of the doubly-linked list,
2993 but only if line-numbers are desired for debugging info. */
2994
2995 rtx
2996 emit_line_note (file, line)
2997 char *file;
2998 int line;
2999 {
3000 emit_filename = file;
3001 emit_lineno = line;
3002
3003 #if 0
3004 if (no_line_numbers)
3005 return 0;
3006 #endif
3007
3008 return emit_note (file, line);
3009 }
3010
3011 /* Make an insn of code NOTE
3012 with data-fields specified by FILE and LINE
3013 and add it to the end of the doubly-linked list.
3014 If it is a line-number NOTE, omit it if it matches the previous one. */
3015
3016 rtx
3017 emit_note (file, line)
3018 char *file;
3019 int line;
3020 {
3021 register rtx note;
3022
3023 if (line > 0)
3024 {
3025 if (file && last_filename && !strcmp (file, last_filename)
3026 && line == last_linenum)
3027 return 0;
3028 last_filename = file;
3029 last_linenum = line;
3030 }
3031
3032 if (no_line_numbers && line > 0)
3033 {
3034 cur_insn_uid++;
3035 return 0;
3036 }
3037
3038 note = rtx_alloc (NOTE);
3039 INSN_UID (note) = cur_insn_uid++;
3040 NOTE_SOURCE_FILE (note) = file;
3041 NOTE_LINE_NUMBER (note) = line;
3042 add_insn (note);
3043 return note;
3044 }
3045
3046 /* Emit a NOTE, and don't omit it even if LINE is the previous note. */
3047
3048 rtx
3049 emit_line_note_force (file, line)
3050 char *file;
3051 int line;
3052 {
3053 last_linenum = -1;
3054 return emit_line_note (file, line);
3055 }
3056
3057 /* Cause next statement to emit a line note even if the line number
3058 has not changed. This is used at the beginning of a function. */
3059
3060 void
3061 force_next_line_note ()
3062 {
3063 last_linenum = -1;
3064 }
3065 \f
3066 /* Return an indication of which type of insn should have X as a body.
3067 The value is CODE_LABEL, INSN, CALL_INSN or JUMP_INSN. */
3068
3069 enum rtx_code
3070 classify_insn (x)
3071 rtx x;
3072 {
3073 if (GET_CODE (x) == CODE_LABEL)
3074 return CODE_LABEL;
3075 if (GET_CODE (x) == CALL)
3076 return CALL_INSN;
3077 if (GET_CODE (x) == RETURN)
3078 return JUMP_INSN;
3079 if (GET_CODE (x) == SET)
3080 {
3081 if (SET_DEST (x) == pc_rtx)
3082 return JUMP_INSN;
3083 else if (GET_CODE (SET_SRC (x)) == CALL)
3084 return CALL_INSN;
3085 else
3086 return INSN;
3087 }
3088 if (GET_CODE (x) == PARALLEL)
3089 {
3090 register int j;
3091 for (j = XVECLEN (x, 0) - 1; j >= 0; j--)
3092 if (GET_CODE (XVECEXP (x, 0, j)) == CALL)
3093 return CALL_INSN;
3094 else if (GET_CODE (XVECEXP (x, 0, j)) == SET
3095 && SET_DEST (XVECEXP (x, 0, j)) == pc_rtx)
3096 return JUMP_INSN;
3097 else if (GET_CODE (XVECEXP (x, 0, j)) == SET
3098 && GET_CODE (SET_SRC (XVECEXP (x, 0, j))) == CALL)
3099 return CALL_INSN;
3100 }
3101 return INSN;
3102 }
3103
3104 /* Emit the rtl pattern X as an appropriate kind of insn.
3105 If X is a label, it is simply added into the insn chain. */
3106
3107 rtx
3108 emit (x)
3109 rtx x;
3110 {
3111 enum rtx_code code = classify_insn (x);
3112
3113 if (code == CODE_LABEL)
3114 return emit_label (x);
3115 else if (code == INSN)
3116 return emit_insn (x);
3117 else if (code == JUMP_INSN)
3118 {
3119 register rtx insn = emit_jump_insn (x);
3120 if (simplejump_p (insn) || GET_CODE (x) == RETURN)
3121 return emit_barrier ();
3122 return insn;
3123 }
3124 else if (code == CALL_INSN)
3125 return emit_call_insn (x);
3126 else
3127 abort ();
3128 }
3129 \f
3130 /* Begin emitting insns to a sequence which can be packaged in an RTL_EXPR. */
3131
3132 void
3133 start_sequence ()
3134 {
3135 struct sequence_stack *tem;
3136
3137 if (sequence_element_free_list)
3138 {
3139 /* Reuse a previously-saved struct sequence_stack. */
3140 tem = sequence_element_free_list;
3141 sequence_element_free_list = tem->next;
3142 }
3143 else
3144 tem = (struct sequence_stack *) permalloc (sizeof (struct sequence_stack));
3145
3146 tem->next = sequence_stack;
3147 tem->first = first_insn;
3148 tem->last = last_insn;
3149 tem->sequence_rtl_expr = sequence_rtl_expr;
3150
3151 sequence_stack = tem;
3152
3153 first_insn = 0;
3154 last_insn = 0;
3155 }
3156
3157 /* Similarly, but indicate that this sequence will be placed in
3158 T, an RTL_EXPR. */
3159
3160 void
3161 start_sequence_for_rtl_expr (t)
3162 tree t;
3163 {
3164 start_sequence ();
3165
3166 sequence_rtl_expr = t;
3167 }
3168
3169 /* Set up the insn chain starting with FIRST
3170 as the current sequence, saving the previously current one. */
3171
3172 void
3173 push_to_sequence (first)
3174 rtx first;
3175 {
3176 rtx last;
3177
3178 start_sequence ();
3179
3180 for (last = first; last && NEXT_INSN (last); last = NEXT_INSN (last));
3181
3182 first_insn = first;
3183 last_insn = last;
3184 }
3185
3186 /* Set up the outer-level insn chain
3187 as the current sequence, saving the previously current one. */
3188
3189 void
3190 push_topmost_sequence ()
3191 {
3192 struct sequence_stack *stack, *top = NULL;
3193
3194 start_sequence ();
3195
3196 for (stack = sequence_stack; stack; stack = stack->next)
3197 top = stack;
3198
3199 first_insn = top->first;
3200 last_insn = top->last;
3201 sequence_rtl_expr = top->sequence_rtl_expr;
3202 }
3203
3204 /* After emitting to the outer-level insn chain, update the outer-level
3205 insn chain, and restore the previous saved state. */
3206
3207 void
3208 pop_topmost_sequence ()
3209 {
3210 struct sequence_stack *stack, *top = NULL;
3211
3212 for (stack = sequence_stack; stack; stack = stack->next)
3213 top = stack;
3214
3215 top->first = first_insn;
3216 top->last = last_insn;
3217 /* ??? Why don't we save sequence_rtl_expr here? */
3218
3219 end_sequence ();
3220 }
3221
3222 /* After emitting to a sequence, restore previous saved state.
3223
3224 To get the contents of the sequence just made,
3225 you must call `gen_sequence' *before* calling here. */
3226
3227 void
3228 end_sequence ()
3229 {
3230 struct sequence_stack *tem = sequence_stack;
3231
3232 first_insn = tem->first;
3233 last_insn = tem->last;
3234 sequence_rtl_expr = tem->sequence_rtl_expr;
3235 sequence_stack = tem->next;
3236
3237 tem->next = sequence_element_free_list;
3238 sequence_element_free_list = tem;
3239 }
3240
3241 /* Return 1 if currently emitting into a sequence. */
3242
3243 int
3244 in_sequence_p ()
3245 {
3246 return sequence_stack != 0;
3247 }
3248
3249 /* Generate a SEQUENCE rtx containing the insns already emitted
3250 to the current sequence.
3251
3252 This is how the gen_... function from a DEFINE_EXPAND
3253 constructs the SEQUENCE that it returns. */
3254
3255 rtx
3256 gen_sequence ()
3257 {
3258 rtx result;
3259 rtx tem;
3260 int i;
3261 int len;
3262
3263 /* Count the insns in the chain. */
3264 len = 0;
3265 for (tem = first_insn; tem; tem = NEXT_INSN (tem))
3266 len++;
3267
3268 /* If only one insn, return its pattern rather than a SEQUENCE.
3269 (Now that we cache SEQUENCE expressions, it isn't worth special-casing
3270 the case of an empty list.) */
3271 if (len == 1
3272 && ! RTX_FRAME_RELATED_P (first_insn)
3273 && (GET_CODE (first_insn) == INSN
3274 || GET_CODE (first_insn) == JUMP_INSN
3275 /* Don't discard the call usage field. */
3276 || (GET_CODE (first_insn) == CALL_INSN
3277 && CALL_INSN_FUNCTION_USAGE (first_insn) == NULL_RTX)))
3278 {
3279 NEXT_INSN (first_insn) = free_insn;
3280 free_insn = first_insn;
3281 return PATTERN (first_insn);
3282 }
3283
3284 /* Put them in a vector. See if we already have a SEQUENCE of the
3285 appropriate length around. */
3286 if (len < SEQUENCE_RESULT_SIZE && (result = sequence_result[len]) != 0)
3287 sequence_result[len] = 0;
3288 else
3289 {
3290 /* Ensure that this rtl goes in saveable_obstack, since we may
3291 cache it. */
3292 push_obstacks_nochange ();
3293 rtl_in_saveable_obstack ();
3294 result = gen_rtx_SEQUENCE (VOIDmode, rtvec_alloc (len));
3295 pop_obstacks ();
3296 }
3297
3298 for (i = 0, tem = first_insn; tem; tem = NEXT_INSN (tem), i++)
3299 XVECEXP (result, 0, i) = tem;
3300
3301 return result;
3302 }
3303 \f
3304 /* Put the various virtual registers into REGNO_REG_RTX. */
3305
3306 void
3307 init_virtual_regs ()
3308 {
3309 regno_reg_rtx[VIRTUAL_INCOMING_ARGS_REGNUM] = virtual_incoming_args_rtx;
3310 regno_reg_rtx[VIRTUAL_STACK_VARS_REGNUM] = virtual_stack_vars_rtx;
3311 regno_reg_rtx[VIRTUAL_STACK_DYNAMIC_REGNUM] = virtual_stack_dynamic_rtx;
3312 regno_reg_rtx[VIRTUAL_OUTGOING_ARGS_REGNUM] = virtual_outgoing_args_rtx;
3313 regno_reg_rtx[VIRTUAL_CFA_REGNUM] = virtual_cfa_rtx;
3314 }
3315
3316 /* Initialize data structures and variables in this file
3317 before generating rtl for each function. */
3318
3319 void
3320 init_emit ()
3321 {
3322 int i;
3323
3324 first_insn = NULL;
3325 last_insn = NULL;
3326 sequence_rtl_expr = NULL;
3327 cur_insn_uid = 1;
3328 reg_rtx_no = LAST_VIRTUAL_REGISTER + 1;
3329 last_linenum = 0;
3330 last_filename = 0;
3331 first_label_num = label_num;
3332 last_label_num = 0;
3333 sequence_stack = NULL;
3334
3335 /* Clear the start_sequence/gen_sequence cache. */
3336 sequence_element_free_list = 0;
3337 for (i = 0; i < SEQUENCE_RESULT_SIZE; i++)
3338 sequence_result[i] = 0;
3339 free_insn = 0;
3340
3341 /* Init the tables that describe all the pseudo regs. */
3342
3343 regno_pointer_flag_length = LAST_VIRTUAL_REGISTER + 101;
3344
3345 regno_pointer_flag
3346 = (char *) savealloc (regno_pointer_flag_length);
3347 bzero (regno_pointer_flag, regno_pointer_flag_length);
3348
3349 regno_pointer_align
3350 = (char *) savealloc (regno_pointer_flag_length);
3351 bzero (regno_pointer_align, regno_pointer_flag_length);
3352
3353 regno_reg_rtx
3354 = (rtx *) savealloc (regno_pointer_flag_length * sizeof (rtx));
3355 bzero ((char *) regno_reg_rtx, regno_pointer_flag_length * sizeof (rtx));
3356
3357 /* Put copies of all the virtual register rtx into regno_reg_rtx. */
3358 init_virtual_regs ();
3359
3360 /* Indicate that the virtual registers and stack locations are
3361 all pointers. */
3362 REGNO_POINTER_FLAG (STACK_POINTER_REGNUM) = 1;
3363 REGNO_POINTER_FLAG (FRAME_POINTER_REGNUM) = 1;
3364 REGNO_POINTER_FLAG (HARD_FRAME_POINTER_REGNUM) = 1;
3365 REGNO_POINTER_FLAG (ARG_POINTER_REGNUM) = 1;
3366
3367 REGNO_POINTER_FLAG (VIRTUAL_INCOMING_ARGS_REGNUM) = 1;
3368 REGNO_POINTER_FLAG (VIRTUAL_STACK_VARS_REGNUM) = 1;
3369 REGNO_POINTER_FLAG (VIRTUAL_STACK_DYNAMIC_REGNUM) = 1;
3370 REGNO_POINTER_FLAG (VIRTUAL_OUTGOING_ARGS_REGNUM) = 1;
3371 REGNO_POINTER_FLAG (VIRTUAL_CFA_REGNUM) = 1;
3372
3373 #ifdef STACK_BOUNDARY
3374 REGNO_POINTER_ALIGN (STACK_POINTER_REGNUM) = STACK_BOUNDARY / BITS_PER_UNIT;
3375 REGNO_POINTER_ALIGN (FRAME_POINTER_REGNUM) = STACK_BOUNDARY / BITS_PER_UNIT;
3376 REGNO_POINTER_ALIGN (HARD_FRAME_POINTER_REGNUM)
3377 = STACK_BOUNDARY / BITS_PER_UNIT;
3378 REGNO_POINTER_ALIGN (ARG_POINTER_REGNUM) = STACK_BOUNDARY / BITS_PER_UNIT;
3379
3380 REGNO_POINTER_ALIGN (VIRTUAL_INCOMING_ARGS_REGNUM)
3381 = STACK_BOUNDARY / BITS_PER_UNIT;
3382 REGNO_POINTER_ALIGN (VIRTUAL_STACK_VARS_REGNUM)
3383 = STACK_BOUNDARY / BITS_PER_UNIT;
3384 REGNO_POINTER_ALIGN (VIRTUAL_STACK_DYNAMIC_REGNUM)
3385 = STACK_BOUNDARY / BITS_PER_UNIT;
3386 REGNO_POINTER_ALIGN (VIRTUAL_OUTGOING_ARGS_REGNUM)
3387 = STACK_BOUNDARY / BITS_PER_UNIT;
3388 REGNO_POINTER_ALIGN (VIRTUAL_CFA_REGNUM) = UNITS_PER_WORD;
3389 #endif
3390
3391 #ifdef INIT_EXPANDERS
3392 INIT_EXPANDERS;
3393 #endif
3394 }
3395
3396 /* Create some permanent unique rtl objects shared between all functions.
3397 LINE_NUMBERS is nonzero if line numbers are to be generated. */
3398
3399 void
3400 init_emit_once (line_numbers)
3401 int line_numbers;
3402 {
3403 int i;
3404 enum machine_mode mode;
3405 enum machine_mode double_mode;
3406
3407 no_line_numbers = ! line_numbers;
3408
3409 sequence_stack = NULL;
3410
3411 /* Compute the word and byte modes. */
3412
3413 byte_mode = VOIDmode;
3414 word_mode = VOIDmode;
3415 double_mode = VOIDmode;
3416
3417 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
3418 mode = GET_MODE_WIDER_MODE (mode))
3419 {
3420 if (GET_MODE_BITSIZE (mode) == BITS_PER_UNIT
3421 && byte_mode == VOIDmode)
3422 byte_mode = mode;
3423
3424 if (GET_MODE_BITSIZE (mode) == BITS_PER_WORD
3425 && word_mode == VOIDmode)
3426 word_mode = mode;
3427 }
3428
3429 #ifndef DOUBLE_TYPE_SIZE
3430 #define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
3431 #endif
3432
3433 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
3434 mode = GET_MODE_WIDER_MODE (mode))
3435 {
3436 if (GET_MODE_BITSIZE (mode) == DOUBLE_TYPE_SIZE
3437 && double_mode == VOIDmode)
3438 double_mode = mode;
3439 }
3440
3441 ptr_mode = mode_for_size (POINTER_SIZE, GET_MODE_CLASS (Pmode), 0);
3442
3443 /* Create the unique rtx's for certain rtx codes and operand values. */
3444
3445 for (i = - MAX_SAVED_CONST_INT; i <= MAX_SAVED_CONST_INT; i++)
3446 {
3447 PUT_CODE (&const_int_rtx[i + MAX_SAVED_CONST_INT], CONST_INT);
3448 PUT_MODE (&const_int_rtx[i + MAX_SAVED_CONST_INT], VOIDmode);
3449 INTVAL (&const_int_rtx[i + MAX_SAVED_CONST_INT]) = i;
3450 }
3451
3452 if (STORE_FLAG_VALUE >= - MAX_SAVED_CONST_INT
3453 && STORE_FLAG_VALUE <= MAX_SAVED_CONST_INT)
3454 const_true_rtx = &const_int_rtx[STORE_FLAG_VALUE + MAX_SAVED_CONST_INT];
3455 else
3456 const_true_rtx = gen_rtx_CONST_INT (VOIDmode, STORE_FLAG_VALUE);
3457
3458 dconst0 = REAL_VALUE_ATOF ("0", double_mode);
3459 dconst1 = REAL_VALUE_ATOF ("1", double_mode);
3460 dconst2 = REAL_VALUE_ATOF ("2", double_mode);
3461 dconstm1 = REAL_VALUE_ATOF ("-1", double_mode);
3462
3463 for (i = 0; i <= 2; i++)
3464 {
3465 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
3466 mode = GET_MODE_WIDER_MODE (mode))
3467 {
3468 rtx tem = rtx_alloc (CONST_DOUBLE);
3469 union real_extract u;
3470
3471 bzero ((char *) &u, sizeof u); /* Zero any holes in a structure. */
3472 u.d = i == 0 ? dconst0 : i == 1 ? dconst1 : dconst2;
3473
3474 bcopy ((char *) &u, (char *) &CONST_DOUBLE_LOW (tem), sizeof u);
3475 CONST_DOUBLE_MEM (tem) = cc0_rtx;
3476 PUT_MODE (tem, mode);
3477
3478 const_tiny_rtx[i][(int) mode] = tem;
3479 }
3480
3481 const_tiny_rtx[i][(int) VOIDmode] = GEN_INT (i);
3482
3483 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
3484 mode = GET_MODE_WIDER_MODE (mode))
3485 const_tiny_rtx[i][(int) mode] = GEN_INT (i);
3486
3487 for (mode = GET_CLASS_NARROWEST_MODE (MODE_PARTIAL_INT);
3488 mode != VOIDmode;
3489 mode = GET_MODE_WIDER_MODE (mode))
3490 const_tiny_rtx[i][(int) mode] = GEN_INT (i);
3491 }
3492
3493 for (mode = GET_CLASS_NARROWEST_MODE (MODE_CC); mode != VOIDmode;
3494 mode = GET_MODE_WIDER_MODE (mode))
3495 const_tiny_rtx[0][(int) mode] = const0_rtx;
3496
3497
3498 /* Assign register numbers to the globally defined register rtx.
3499 This must be done at runtime because the register number field
3500 is in a union and some compilers can't initialize unions. */
3501
3502 REGNO (stack_pointer_rtx) = STACK_POINTER_REGNUM;
3503 PUT_MODE (stack_pointer_rtx, Pmode);
3504 REGNO (frame_pointer_rtx) = FRAME_POINTER_REGNUM;
3505 PUT_MODE (frame_pointer_rtx, Pmode);
3506 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
3507 REGNO (hard_frame_pointer_rtx) = HARD_FRAME_POINTER_REGNUM;
3508 PUT_MODE (hard_frame_pointer_rtx, Pmode);
3509 #endif
3510 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM && HARD_FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3511 REGNO (arg_pointer_rtx) = ARG_POINTER_REGNUM;
3512 PUT_MODE (arg_pointer_rtx, Pmode);
3513 #endif
3514
3515 REGNO (virtual_incoming_args_rtx) = VIRTUAL_INCOMING_ARGS_REGNUM;
3516 PUT_MODE (virtual_incoming_args_rtx, Pmode);
3517 REGNO (virtual_stack_vars_rtx) = VIRTUAL_STACK_VARS_REGNUM;
3518 PUT_MODE (virtual_stack_vars_rtx, Pmode);
3519 REGNO (virtual_stack_dynamic_rtx) = VIRTUAL_STACK_DYNAMIC_REGNUM;
3520 PUT_MODE (virtual_stack_dynamic_rtx, Pmode);
3521 REGNO (virtual_outgoing_args_rtx) = VIRTUAL_OUTGOING_ARGS_REGNUM;
3522 PUT_MODE (virtual_outgoing_args_rtx, Pmode);
3523 REGNO (virtual_cfa_rtx) = VIRTUAL_CFA_REGNUM;
3524 PUT_MODE (virtual_cfa_rtx, Pmode);
3525
3526 #ifdef RETURN_ADDRESS_POINTER_REGNUM
3527 return_address_pointer_rtx
3528 = gen_rtx_raw_REG (Pmode, RETURN_ADDRESS_POINTER_REGNUM);
3529 #endif
3530
3531 #ifdef STRUCT_VALUE
3532 struct_value_rtx = STRUCT_VALUE;
3533 #else
3534 struct_value_rtx = gen_rtx_REG (Pmode, STRUCT_VALUE_REGNUM);
3535 #endif
3536
3537 #ifdef STRUCT_VALUE_INCOMING
3538 struct_value_incoming_rtx = STRUCT_VALUE_INCOMING;
3539 #else
3540 #ifdef STRUCT_VALUE_INCOMING_REGNUM
3541 struct_value_incoming_rtx
3542 = gen_rtx_REG (Pmode, STRUCT_VALUE_INCOMING_REGNUM);
3543 #else
3544 struct_value_incoming_rtx = struct_value_rtx;
3545 #endif
3546 #endif
3547
3548 #ifdef STATIC_CHAIN_REGNUM
3549 static_chain_rtx = gen_rtx_REG (Pmode, STATIC_CHAIN_REGNUM);
3550
3551 #ifdef STATIC_CHAIN_INCOMING_REGNUM
3552 if (STATIC_CHAIN_INCOMING_REGNUM != STATIC_CHAIN_REGNUM)
3553 static_chain_incoming_rtx = gen_rtx_REG (Pmode, STATIC_CHAIN_INCOMING_REGNUM);
3554 else
3555 #endif
3556 static_chain_incoming_rtx = static_chain_rtx;
3557 #endif
3558
3559 #ifdef STATIC_CHAIN
3560 static_chain_rtx = STATIC_CHAIN;
3561
3562 #ifdef STATIC_CHAIN_INCOMING
3563 static_chain_incoming_rtx = STATIC_CHAIN_INCOMING;
3564 #else
3565 static_chain_incoming_rtx = static_chain_rtx;
3566 #endif
3567 #endif
3568
3569 #ifdef PIC_OFFSET_TABLE_REGNUM
3570 pic_offset_table_rtx = gen_rtx_REG (Pmode, PIC_OFFSET_TABLE_REGNUM);
3571 #endif
3572
3573 #ifdef INIT_EXPANDERS
3574 /* This is to initialize save_machine_status and restore_machine_status before
3575 the first call to push_function_context_to. This is needed by the Chill
3576 front end which calls push_function_context_to before the first cal to
3577 init_function_start. */
3578 INIT_EXPANDERS;
3579 #endif
3580 }
3581 \f
3582 /* Query and clear/ restore no_line_numbers. This is used by the
3583 switch / case handling in stmt.c to give proper line numbers in
3584 warnings about unreachable code. */
3585
3586 int
3587 force_line_numbers ()
3588 {
3589 int old = no_line_numbers;
3590
3591 no_line_numbers = 0;
3592 if (old)
3593 force_next_line_note ();
3594 return old;
3595 }
3596
3597 void
3598 restore_line_number_status (old_value)
3599 int old_value;
3600 {
3601 no_line_numbers = old_value;
3602 }