OSDN Git Service

* crontab, doc_exclude, update_branch_version, update_version,
[pf3gnuchains/gcc-fork.git] / gcc / reg-stack.c
1 /* Register to Stack convert for GNU compiler.
2    Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001 Free Software Foundation, Inc.
4
5    This file is part of GNU CC.
6
7    GNU CC is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2, or (at your option)
10    any later version.
11
12    GNU CC is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GNU CC; see the file COPYING.  If not, write to
19    the Free Software Foundation, 59 Temple Place - Suite 330,
20    Boston, MA 02111-1307, USA.  */
21
22 /* This pass converts stack-like registers from the "flat register
23    file" model that gcc uses, to a stack convention that the 387 uses.
24
25    * The form of the input:
26
27    On input, the function consists of insn that have had their
28    registers fully allocated to a set of "virtual" registers.  Note that
29    the word "virtual" is used differently here than elsewhere in gcc: for
30    each virtual stack reg, there is a hard reg, but the mapping between
31    them is not known until this pass is run.  On output, hard register
32    numbers have been substituted, and various pop and exchange insns have
33    been emitted.  The hard register numbers and the virtual register
34    numbers completely overlap - before this pass, all stack register
35    numbers are virtual, and afterward they are all hard.
36
37    The virtual registers can be manipulated normally by gcc, and their
38    semantics are the same as for normal registers.  After the hard
39    register numbers are substituted, the semantics of an insn containing
40    stack-like regs are not the same as for an insn with normal regs: for
41    instance, it is not safe to delete an insn that appears to be a no-op
42    move.  In general, no insn containing hard regs should be changed
43    after this pass is done.
44
45    * The form of the output:
46
47    After this pass, hard register numbers represent the distance from
48    the current top of stack to the desired register.  A reference to
49    FIRST_STACK_REG references the top of stack, FIRST_STACK_REG + 1,
50    represents the register just below that, and so forth.  Also, REG_DEAD
51    notes indicate whether or not a stack register should be popped.
52
53    A "swap" insn looks like a parallel of two patterns, where each
54    pattern is a SET: one sets A to B, the other B to A.
55
56    A "push" or "load" insn is a SET whose SET_DEST is FIRST_STACK_REG
57    and whose SET_DEST is REG or MEM.  Any other SET_DEST, such as PLUS,
58    will replace the existing stack top, not push a new value.
59
60    A store insn is a SET whose SET_DEST is FIRST_STACK_REG, and whose
61    SET_SRC is REG or MEM.
62
63    The case where the SET_SRC and SET_DEST are both FIRST_STACK_REG
64    appears ambiguous.  As a special case, the presence of a REG_DEAD note
65    for FIRST_STACK_REG differentiates between a load insn and a pop.
66
67    If a REG_DEAD is present, the insn represents a "pop" that discards
68    the top of the register stack.  If there is no REG_DEAD note, then the
69    insn represents a "dup" or a push of the current top of stack onto the
70    stack.
71
72    * Methodology:
73
74    Existing REG_DEAD and REG_UNUSED notes for stack registers are
75    deleted and recreated from scratch.  REG_DEAD is never created for a
76    SET_DEST, only REG_UNUSED.
77
78    * asm_operands:
79
80    There are several rules on the usage of stack-like regs in
81    asm_operands insns.  These rules apply only to the operands that are
82    stack-like regs:
83
84    1. Given a set of input regs that die in an asm_operands, it is
85       necessary to know which are implicitly popped by the asm, and
86       which must be explicitly popped by gcc.
87
88         An input reg that is implicitly popped by the asm must be
89         explicitly clobbered, unless it is constrained to match an
90         output operand.
91
92    2. For any input reg that is implicitly popped by an asm, it is
93       necessary to know how to adjust the stack to compensate for the pop.
94       If any non-popped input is closer to the top of the reg-stack than
95       the implicitly popped reg, it would not be possible to know what the
96       stack looked like - it's not clear how the rest of the stack "slides
97       up".
98
99         All implicitly popped input regs must be closer to the top of
100         the reg-stack than any input that is not implicitly popped.
101
102    3. It is possible that if an input dies in an insn, reload might
103       use the input reg for an output reload.  Consider this example:
104
105                 asm ("foo" : "=t" (a) : "f" (b));
106
107       This asm says that input B is not popped by the asm, and that
108       the asm pushes a result onto the reg-stack, ie, the stack is one
109       deeper after the asm than it was before.  But, it is possible that
110       reload will think that it can use the same reg for both the input and
111       the output, if input B dies in this insn.
112
113         If any input operand uses the "f" constraint, all output reg
114         constraints must use the "&" earlyclobber.
115
116       The asm above would be written as
117
118                 asm ("foo" : "=&t" (a) : "f" (b));
119
120    4. Some operands need to be in particular places on the stack.  All
121       output operands fall in this category - there is no other way to
122       know which regs the outputs appear in unless the user indicates
123       this in the constraints.
124
125         Output operands must specifically indicate which reg an output
126         appears in after an asm.  "=f" is not allowed: the operand
127         constraints must select a class with a single reg.
128
129    5. Output operands may not be "inserted" between existing stack regs.
130       Since no 387 opcode uses a read/write operand, all output operands
131       are dead before the asm_operands, and are pushed by the asm_operands.
132       It makes no sense to push anywhere but the top of the reg-stack.
133
134         Output operands must start at the top of the reg-stack: output
135         operands may not "skip" a reg.
136
137    6. Some asm statements may need extra stack space for internal
138       calculations.  This can be guaranteed by clobbering stack registers
139       unrelated to the inputs and outputs.
140
141    Here are a couple of reasonable asms to want to write.  This asm
142    takes one input, which is internally popped, and produces two outputs.
143
144         asm ("fsincos" : "=t" (cos), "=u" (sin) : "0" (inp));
145
146    This asm takes two inputs, which are popped by the fyl2xp1 opcode,
147    and replaces them with one output.  The user must code the "st(1)"
148    clobber for reg-stack.c to know that fyl2xp1 pops both inputs.
149
150         asm ("fyl2xp1" : "=t" (result) : "0" (x), "u" (y) : "st(1)");
151
152 */
153 \f
154 #include "config.h"
155 #include "system.h"
156 #include "tree.h"
157 #include "rtl.h"
158 #include "tm_p.h"
159 #include "function.h"
160 #include "insn-config.h"
161 #include "regs.h"
162 #include "hard-reg-set.h"
163 #include "flags.h"
164 #include "insn-flags.h"
165 #include "toplev.h"
166 #include "recog.h"
167 #include "output.h"
168 #include "basic-block.h"
169 #include "varray.h"
170
171 #ifdef STACK_REGS
172
173 #define REG_STACK_SIZE (LAST_STACK_REG - FIRST_STACK_REG + 1)
174
175 /* This is the basic stack record.  TOP is an index into REG[] such
176    that REG[TOP] is the top of stack.  If TOP is -1 the stack is empty.
177
178    If TOP is -2, REG[] is not yet initialized.  Stack initialization
179    consists of placing each live reg in array `reg' and setting `top'
180    appropriately.
181
182    REG_SET indicates which registers are live.  */
183
184 typedef struct stack_def
185 {
186   int top;                      /* index to top stack element */
187   HARD_REG_SET reg_set;         /* set of live registers */
188   unsigned char reg[REG_STACK_SIZE];/* register - stack mapping */
189 } *stack;
190
191 /* This is used to carry information about basic blocks.  It is 
192    attached to the AUX field of the standard CFG block.  */
193
194 typedef struct block_info_def
195 {
196   struct stack_def stack_in;    /* Input stack configuration.  */
197   HARD_REG_SET out_reg_set;     /* Stack regs live on output.  */
198   int done;                     /* True if block already converted.  */
199 } *block_info;
200
201 #define BLOCK_INFO(B)   ((block_info) (B)->aux)
202
203 /* Passed to change_stack to indicate where to emit insns.  */
204 enum emit_where
205 {
206   EMIT_AFTER,
207   EMIT_BEFORE
208 };
209
210 /* We use this array to cache info about insns, because otherwise we
211    spend too much time in stack_regs_mentioned_p. 
212
213    Indexed by insn UIDs.  A value of zero is uninitialized, one indicates
214    the insn uses stack registers, two indicates the insn does not use
215    stack registers.  */
216 static varray_type stack_regs_mentioned_data;
217
218 /* The block we're currently working on.  */
219 static basic_block current_block;
220
221 /* This is the register file for all register after conversion */
222 static rtx
223   FP_mode_reg[LAST_STACK_REG+1-FIRST_STACK_REG][(int) MAX_MACHINE_MODE];
224
225 #define FP_MODE_REG(regno,mode) \
226   (FP_mode_reg[(regno)-FIRST_STACK_REG][(int)(mode)])
227
228 /* Used to initialize uninitialized registers.  */
229 static rtx nan;
230
231 /* Forward declarations */
232
233 static int stack_regs_mentioned_p       PARAMS ((rtx pat));
234 static void straighten_stack            PARAMS ((rtx, stack));
235 static void pop_stack                   PARAMS ((stack, int));
236 static rtx *get_true_reg                PARAMS ((rtx *));
237
238 static int check_asm_stack_operands     PARAMS ((rtx));
239 static int get_asm_operand_n_inputs     PARAMS ((rtx));
240 static rtx stack_result                 PARAMS ((tree));
241 static void replace_reg                 PARAMS ((rtx *, int));
242 static void remove_regno_note           PARAMS ((rtx, enum reg_note,
243                                                  unsigned int));
244 static int get_hard_regnum              PARAMS ((stack, rtx));
245 static void delete_insn_for_stacker     PARAMS ((rtx));
246 static rtx emit_pop_insn                PARAMS ((rtx, stack, rtx,
247                                                enum emit_where));
248 static void emit_swap_insn              PARAMS ((rtx, stack, rtx));
249 static void move_for_stack_reg          PARAMS ((rtx, stack, rtx));
250 static int swap_rtx_condition_1         PARAMS ((rtx));
251 static int swap_rtx_condition           PARAMS ((rtx));
252 static void compare_for_stack_reg       PARAMS ((rtx, stack, rtx));
253 static void subst_stack_regs_pat        PARAMS ((rtx, stack, rtx));
254 static void subst_asm_stack_regs        PARAMS ((rtx, stack));
255 static void subst_stack_regs            PARAMS ((rtx, stack));
256 static void change_stack                PARAMS ((rtx, stack, stack,
257                                                enum emit_where));
258 static int convert_regs_entry           PARAMS ((void));
259 static void convert_regs_exit           PARAMS ((void));
260 static int convert_regs_1               PARAMS ((FILE *, basic_block));
261 static int convert_regs_2               PARAMS ((FILE *, basic_block));
262 static int convert_regs                 PARAMS ((FILE *));
263 static void print_stack                 PARAMS ((FILE *, stack));
264 static rtx next_flags_user              PARAMS ((rtx));
265 static void record_label_references     PARAMS ((rtx, rtx));
266 \f
267 /* Return non-zero if any stack register is mentioned somewhere within PAT.  */
268
269 static int
270 stack_regs_mentioned_p (pat)
271      rtx pat;
272 {
273   register const char *fmt;
274   register int i;
275
276   if (STACK_REG_P (pat))
277     return 1;
278
279   fmt = GET_RTX_FORMAT (GET_CODE (pat));
280   for (i = GET_RTX_LENGTH (GET_CODE (pat)) - 1; i >= 0; i--)
281     {
282       if (fmt[i] == 'E')
283         {
284           register int j;
285
286           for (j = XVECLEN (pat, i) - 1; j >= 0; j--)
287             if (stack_regs_mentioned_p (XVECEXP (pat, i, j)))
288               return 1;
289         }
290       else if (fmt[i] == 'e' && stack_regs_mentioned_p (XEXP (pat, i)))
291         return 1;
292     }
293
294   return 0;
295 }
296
297 /* Return nonzero if INSN mentions stacked registers, else return zero.  */
298
299 int
300 stack_regs_mentioned (insn)
301      rtx insn;
302 {
303   unsigned int uid, max;
304   int test;
305
306   if (! INSN_P (insn))
307     return 0;
308
309   uid = INSN_UID (insn);
310   max = VARRAY_SIZE (stack_regs_mentioned_data);
311   if (uid >= max)
312     {
313       /* Allocate some extra size to avoid too many reallocs, but
314          do not grow too quickly.  */
315       max = uid + uid / 20;
316       VARRAY_GROW (stack_regs_mentioned_data, max);
317     }
318
319   test = VARRAY_CHAR (stack_regs_mentioned_data, uid);
320   if (test == 0)
321     {
322       /* This insn has yet to be examined.  Do so now.  */
323       test = stack_regs_mentioned_p (PATTERN (insn)) ? 1 : 2;
324       VARRAY_CHAR (stack_regs_mentioned_data, uid) = test;
325     }
326
327   return test == 1;
328 }
329 \f
330 static rtx ix86_flags_rtx;
331
332 static rtx
333 next_flags_user (insn)
334      rtx insn;
335 {
336   /* Search forward looking for the first use of this value. 
337      Stop at block boundaries.  */
338
339   while (insn != current_block->end)
340     {
341       insn = NEXT_INSN (insn);
342
343       if (INSN_P (insn) && reg_mentioned_p (ix86_flags_rtx, PATTERN (insn)))
344         return insn;
345
346       if (GET_CODE (insn) == CALL_INSN)
347         return NULL_RTX;
348     }
349   return NULL_RTX;
350 }
351 \f
352 /* Reorganise the stack into ascending numbers,
353    after this insn.  */
354
355 static void
356 straighten_stack (insn, regstack)
357      rtx insn;
358      stack regstack;
359 {
360   struct stack_def temp_stack;
361   int top;
362
363   /* If there is only a single register on the stack, then the stack is
364      already in increasing order and no reorganization is needed.
365
366      Similarly if the stack is empty.  */
367   if (regstack->top <= 0)
368     return;
369
370   COPY_HARD_REG_SET (temp_stack.reg_set, regstack->reg_set);
371
372   for (top = temp_stack.top = regstack->top; top >= 0; top--)
373     temp_stack.reg[top] = FIRST_STACK_REG + temp_stack.top - top;
374   
375   change_stack (insn, regstack, &temp_stack, EMIT_AFTER);
376 }
377
378 /* Pop a register from the stack */
379
380 static void
381 pop_stack (regstack, regno)
382      stack regstack;
383      int   regno;
384 {
385   int top = regstack->top;
386
387   CLEAR_HARD_REG_BIT (regstack->reg_set, regno);
388   regstack->top--;
389   /* If regno was not at the top of stack then adjust stack */
390   if (regstack->reg [top] != regno)
391     {
392       int i;
393       for (i = regstack->top; i >= 0; i--)
394         if (regstack->reg [i] == regno)
395           {
396             int j;
397             for (j = i; j < top; j++)
398               regstack->reg [j] = regstack->reg [j + 1];
399             break;
400           }
401     }
402 }
403 \f
404 /* Convert register usage from "flat" register file usage to a "stack
405    register file.  FIRST is the first insn in the function, FILE is the
406    dump file, if used.
407
408    Construct a CFG and run life analysis.  Then convert each insn one
409    by one.  Run a last jump_optimize pass, if optimizing, to eliminate
410    code duplication created when the converter inserts pop insns on
411    the edges.  */
412
413 void
414 reg_to_stack (first, file)
415      rtx first;
416      FILE *file;
417 {
418   int i;
419   int max_uid;
420   block_info bi;
421
422   /* See if there is something to do.  Flow analysis is quite
423      expensive so we might save some compilation time.  */
424   for (i = FIRST_STACK_REG; i <= LAST_STACK_REG; i++)
425     if (regs_ever_live[i])
426       break;
427   if (i > LAST_STACK_REG)
428     return;
429
430   /* Ok, floating point instructions exist.  If not optimizing, 
431      build the CFG and run life analysis.  */
432   find_basic_blocks (first, max_reg_num (), file);
433   count_or_remove_death_notes (NULL, 1);
434   life_analysis (first, file, PROP_DEATH_NOTES);
435
436   /* Set up block info for each basic block.  */
437   bi = (block_info) xcalloc ((n_basic_blocks + 1), sizeof (*bi));
438   for (i = n_basic_blocks - 1; i >= 0; --i)
439     BASIC_BLOCK (i)->aux = bi + i;
440   EXIT_BLOCK_PTR->aux = bi + n_basic_blocks;
441
442   /* Create the replacement registers up front.  */
443   for (i = FIRST_STACK_REG; i <= LAST_STACK_REG; i++)
444     {
445       enum machine_mode mode;
446       for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT);
447            mode != VOIDmode;
448            mode = GET_MODE_WIDER_MODE (mode))
449         FP_MODE_REG (i, mode) = gen_rtx_REG (mode, i);
450       for (mode = GET_CLASS_NARROWEST_MODE (MODE_COMPLEX_FLOAT);
451            mode != VOIDmode;
452            mode = GET_MODE_WIDER_MODE (mode))
453         FP_MODE_REG (i, mode) = gen_rtx_REG (mode, i);
454     }
455
456   ix86_flags_rtx = gen_rtx_REG (CCmode, FLAGS_REG);
457
458   /* A QNaN for initializing uninitialized variables.  
459
460      ??? We can't load from constant memory in PIC mode, because
461      we're insertting these instructions before the prologue and
462      the PIC register hasn't been set up.  In that case, fall back
463      on zero, which we can get from `ldz'.  */
464
465   if (flag_pic)
466     nan = CONST0_RTX (SFmode);
467   else
468     {
469       nan = gen_lowpart (SFmode, GEN_INT (0x7fc00000));
470       nan = force_const_mem (SFmode, nan);
471     }
472
473   /* Allocate a cache for stack_regs_mentioned.  */
474   max_uid = get_max_uid ();
475   VARRAY_CHAR_INIT (stack_regs_mentioned_data, max_uid + 1,
476                     "stack_regs_mentioned cache");
477
478   if (convert_regs (file) && optimize)
479     {
480       jump_optimize (first, JUMP_CROSS_JUMP_DEATH_MATTERS,
481                      !JUMP_NOOP_MOVES, !JUMP_AFTER_REGSCAN);
482     }
483
484   /* Clean up.  */
485   VARRAY_FREE (stack_regs_mentioned_data);
486   free (bi);
487 }
488 \f
489 /* Check PAT, which is in INSN, for LABEL_REFs.  Add INSN to the
490    label's chain of references, and note which insn contains each
491    reference.  */
492
493 static void
494 record_label_references (insn, pat)
495      rtx insn, pat;
496 {
497   register enum rtx_code code = GET_CODE (pat);
498   register int i;
499   register const char *fmt;
500
501   if (code == LABEL_REF)
502     {
503       register rtx label = XEXP (pat, 0);
504       register rtx ref;
505
506       if (GET_CODE (label) != CODE_LABEL)
507         abort ();
508
509       /* If this is an undefined label, LABEL_REFS (label) contains
510          garbage.  */
511       if (INSN_UID (label) == 0)
512         return;
513
514       /* Don't make a duplicate in the code_label's chain.  */
515
516       for (ref = LABEL_REFS (label);
517            ref && ref != label;
518            ref = LABEL_NEXTREF (ref))
519         if (CONTAINING_INSN (ref) == insn)
520           return;
521
522       CONTAINING_INSN (pat) = insn;
523       LABEL_NEXTREF (pat) = LABEL_REFS (label);
524       LABEL_REFS (label) = pat;
525
526       return;
527     }
528
529   fmt = GET_RTX_FORMAT (code);
530   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
531     {
532       if (fmt[i] == 'e')
533         record_label_references (insn, XEXP (pat, i));
534       if (fmt[i] == 'E')
535         {
536           register int j;
537           for (j = 0; j < XVECLEN (pat, i); j++)
538             record_label_references (insn, XVECEXP (pat, i, j));
539         }
540     }
541 }
542 \f
543 /* Return a pointer to the REG expression within PAT.  If PAT is not a
544    REG, possible enclosed by a conversion rtx, return the inner part of
545    PAT that stopped the search.  */
546
547 static rtx *
548 get_true_reg (pat)
549      rtx *pat;
550 {
551   for (;;)
552     switch (GET_CODE (*pat))
553       {
554       case SUBREG:
555         /* Eliminate FP subregister accesses in favour of the
556            actual FP register in use.  */
557         {
558           rtx subreg;
559           if (FP_REG_P (subreg = SUBREG_REG (*pat)))
560             {
561               *pat = FP_MODE_REG (REGNO (subreg) + SUBREG_WORD (*pat),
562                                   GET_MODE (subreg));
563             default:
564               return pat;
565             }
566         }
567       case FLOAT:
568       case FIX:
569       case FLOAT_EXTEND:
570         pat = & XEXP (*pat, 0);
571       }
572 }
573 \f
574 /* There are many rules that an asm statement for stack-like regs must
575    follow.  Those rules are explained at the top of this file: the rule
576    numbers below refer to that explanation.  */
577
578 static int
579 check_asm_stack_operands (insn)
580      rtx insn;
581 {
582   int i;
583   int n_clobbers;
584   int malformed_asm = 0;
585   rtx body = PATTERN (insn);
586
587   char reg_used_as_output[FIRST_PSEUDO_REGISTER];
588   char implicitly_dies[FIRST_PSEUDO_REGISTER];
589   int alt;
590
591   rtx *clobber_reg = 0;
592   int n_inputs, n_outputs;
593
594   /* Find out what the constraints require.  If no constraint
595      alternative matches, this asm is malformed.  */
596   extract_insn (insn);
597   constrain_operands (1);
598   alt = which_alternative;
599
600   preprocess_constraints ();
601
602   n_inputs = get_asm_operand_n_inputs (body);
603   n_outputs = recog_data.n_operands - n_inputs;
604
605   if (alt < 0)
606     {
607       malformed_asm = 1;
608       /* Avoid further trouble with this insn.  */
609       PATTERN (insn) = gen_rtx_USE (VOIDmode, const0_rtx);
610       return 0;
611     }
612
613   /* Strip SUBREGs here to make the following code simpler.  */
614   for (i = 0; i < recog_data.n_operands; i++)
615     if (GET_CODE (recog_data.operand[i]) == SUBREG
616         && GET_CODE (SUBREG_REG (recog_data.operand[i])) == REG)
617       recog_data.operand[i] = SUBREG_REG (recog_data.operand[i]);
618
619   /* Set up CLOBBER_REG.  */
620
621   n_clobbers = 0;
622
623   if (GET_CODE (body) == PARALLEL)
624     {
625       clobber_reg = (rtx *) alloca (XVECLEN (body, 0) * sizeof (rtx));
626
627       for (i = 0; i < XVECLEN (body, 0); i++)
628         if (GET_CODE (XVECEXP (body, 0, i)) == CLOBBER)
629           {
630             rtx clobber = XVECEXP (body, 0, i);
631             rtx reg = XEXP (clobber, 0);
632
633             if (GET_CODE (reg) == SUBREG && GET_CODE (SUBREG_REG (reg)) == REG)
634               reg = SUBREG_REG (reg);
635
636             if (STACK_REG_P (reg))
637               {
638                 clobber_reg[n_clobbers] = reg;
639                 n_clobbers++;
640               }
641           }
642     }
643
644   /* Enforce rule #4: Output operands must specifically indicate which
645      reg an output appears in after an asm.  "=f" is not allowed: the
646      operand constraints must select a class with a single reg.
647
648      Also enforce rule #5: Output operands must start at the top of
649      the reg-stack: output operands may not "skip" a reg.  */
650
651   memset (reg_used_as_output, 0, sizeof (reg_used_as_output));
652   for (i = 0; i < n_outputs; i++)
653     if (STACK_REG_P (recog_data.operand[i]))
654       {
655         if (reg_class_size[(int) recog_op_alt[i][alt].class] != 1)
656           {
657             error_for_asm (insn, "Output constraint %d must specify a single register", i);
658             malformed_asm = 1;
659           }
660         else
661           reg_used_as_output[REGNO (recog_data.operand[i])] = 1;
662       }
663
664
665   /* Search for first non-popped reg.  */
666   for (i = FIRST_STACK_REG; i < LAST_STACK_REG + 1; i++)
667     if (! reg_used_as_output[i])
668       break;
669
670   /* If there are any other popped regs, that's an error.  */
671   for (; i < LAST_STACK_REG + 1; i++)
672     if (reg_used_as_output[i])
673       break;
674
675   if (i != LAST_STACK_REG + 1)
676     {
677       error_for_asm (insn, "Output regs must be grouped at top of stack");
678       malformed_asm = 1;
679     }
680
681   /* Enforce rule #2: All implicitly popped input regs must be closer
682      to the top of the reg-stack than any input that is not implicitly
683      popped.  */
684
685   memset (implicitly_dies, 0, sizeof (implicitly_dies));
686   for (i = n_outputs; i < n_outputs + n_inputs; i++)
687     if (STACK_REG_P (recog_data.operand[i]))
688       {
689         /* An input reg is implicitly popped if it is tied to an
690            output, or if there is a CLOBBER for it.  */
691         int j;
692
693         for (j = 0; j < n_clobbers; j++)
694           if (operands_match_p (clobber_reg[j], recog_data.operand[i]))
695             break;
696
697         if (j < n_clobbers || recog_op_alt[i][alt].matches >= 0)
698           implicitly_dies[REGNO (recog_data.operand[i])] = 1;
699       }
700
701   /* Search for first non-popped reg.  */
702   for (i = FIRST_STACK_REG; i < LAST_STACK_REG + 1; i++)
703     if (! implicitly_dies[i])
704       break;
705
706   /* If there are any other popped regs, that's an error.  */
707   for (; i < LAST_STACK_REG + 1; i++)
708     if (implicitly_dies[i])
709       break;
710
711   if (i != LAST_STACK_REG + 1)
712     {
713       error_for_asm (insn,
714                      "Implicitly popped regs must be grouped at top of stack");
715       malformed_asm = 1;
716     }
717
718   /* Enfore rule #3: If any input operand uses the "f" constraint, all
719      output constraints must use the "&" earlyclobber.
720
721      ??? Detect this more deterministically by having constrain_asm_operands
722      record any earlyclobber.  */
723
724   for (i = n_outputs; i < n_outputs + n_inputs; i++)
725     if (recog_op_alt[i][alt].matches == -1)
726       {
727         int j;
728
729         for (j = 0; j < n_outputs; j++)
730           if (operands_match_p (recog_data.operand[j], recog_data.operand[i]))
731             {
732               error_for_asm (insn,
733                              "Output operand %d must use `&' constraint", j);
734               malformed_asm = 1;
735             }
736       }
737
738   if (malformed_asm)
739     {
740       /* Avoid further trouble with this insn.  */
741       PATTERN (insn) = gen_rtx_USE (VOIDmode, const0_rtx);
742       return 0;
743     }
744
745   return 1;
746 }
747 \f
748 /* Calculate the number of inputs and outputs in BODY, an
749    asm_operands.  N_OPERANDS is the total number of operands, and
750    N_INPUTS and N_OUTPUTS are pointers to ints into which the results are
751    placed.  */
752
753 static int
754 get_asm_operand_n_inputs (body)
755      rtx body;
756 {
757   if (GET_CODE (body) == SET && GET_CODE (SET_SRC (body)) == ASM_OPERANDS)
758     return ASM_OPERANDS_INPUT_LENGTH (SET_SRC (body));
759
760   else if (GET_CODE (body) == ASM_OPERANDS)
761     return ASM_OPERANDS_INPUT_LENGTH (body);
762
763   else if (GET_CODE (body) == PARALLEL
764            && GET_CODE (XVECEXP (body, 0, 0)) == SET)
765     return ASM_OPERANDS_INPUT_LENGTH (SET_SRC (XVECEXP (body, 0, 0)));
766
767   else if (GET_CODE (body) == PARALLEL
768            && GET_CODE (XVECEXP (body, 0, 0)) == ASM_OPERANDS)
769     return ASM_OPERANDS_INPUT_LENGTH (XVECEXP (body, 0, 0));
770
771   abort ();
772 }
773
774 /* If current function returns its result in an fp stack register,
775    return the REG.  Otherwise, return 0.  */
776
777 static rtx
778 stack_result (decl)
779      tree decl;
780 {
781   rtx result;
782
783   /* If the value is supposed to be returned in memory, then clearly
784      it is not returned in a stack register.  */
785   if (aggregate_value_p (DECL_RESULT (decl)))
786     return 0;
787
788   result = DECL_RTL (DECL_RESULT (decl));
789   /* ?!?  What is this code supposed to do?  Can this code actually
790      trigger if we kick out aggregates above?  */
791   if (result != 0
792       && ! (GET_CODE (result) == REG
793             && REGNO (result) < FIRST_PSEUDO_REGISTER))
794     {
795 #ifdef FUNCTION_OUTGOING_VALUE
796       result
797         = FUNCTION_OUTGOING_VALUE (TREE_TYPE (DECL_RESULT (decl)), decl);
798 #else
799       result = FUNCTION_VALUE (TREE_TYPE (DECL_RESULT (decl)), decl);
800 #endif
801     }
802
803   return result != 0 && STACK_REG_P (result) ? result : 0;
804 }
805 \f
806
807 /*
808  * This section deals with stack register substitution, and forms the second
809  * pass over the RTL.
810  */
811
812 /* Replace REG, which is a pointer to a stack reg RTX, with an RTX for
813    the desired hard REGNO.  */
814
815 static void
816 replace_reg (reg, regno)
817      rtx *reg;
818      int regno;
819 {
820   if (regno < FIRST_STACK_REG || regno > LAST_STACK_REG
821       || ! STACK_REG_P (*reg))
822     abort ();
823
824   switch (GET_MODE_CLASS (GET_MODE (*reg)))
825     {
826     default: abort ();
827     case MODE_FLOAT:
828     case MODE_COMPLEX_FLOAT:;
829     }
830
831   *reg = FP_MODE_REG (regno, GET_MODE (*reg));
832 }
833
834 /* Remove a note of type NOTE, which must be found, for register
835    number REGNO from INSN.  Remove only one such note.  */
836
837 static void
838 remove_regno_note (insn, note, regno)
839      rtx insn;
840      enum reg_note note;
841      unsigned int regno;
842 {
843   register rtx *note_link, this;
844
845   note_link = &REG_NOTES(insn);
846   for (this = *note_link; this; this = XEXP (this, 1))
847     if (REG_NOTE_KIND (this) == note
848         && REG_P (XEXP (this, 0)) && REGNO (XEXP (this, 0)) == regno)
849       {
850         *note_link = XEXP (this, 1);
851         return;
852       }
853     else
854       note_link = &XEXP (this, 1);
855
856   abort ();
857 }
858
859 /* Find the hard register number of virtual register REG in REGSTACK.
860    The hard register number is relative to the top of the stack.  -1 is
861    returned if the register is not found.  */
862
863 static int
864 get_hard_regnum (regstack, reg)
865      stack regstack;
866      rtx reg;
867 {
868   int i;
869
870   if (! STACK_REG_P (reg))
871     abort ();
872
873   for (i = regstack->top; i >= 0; i--)
874     if (regstack->reg[i] == REGNO (reg))
875       break;
876
877   return i >= 0 ? (FIRST_STACK_REG + regstack->top - i) : -1;
878 }
879
880 /* Delete INSN from the RTL.  Mark the insn, but don't remove it from
881    the chain of insns.  Doing so could confuse block_begin and block_end
882    if this were the only insn in the block.  */
883
884 static void
885 delete_insn_for_stacker (insn)
886      rtx insn;
887 {
888   PUT_CODE (insn, NOTE);
889   NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
890   NOTE_SOURCE_FILE (insn) = 0;
891 }
892 \f
893 /* Emit an insn to pop virtual register REG before or after INSN.
894    REGSTACK is the stack state after INSN and is updated to reflect this
895    pop.  WHEN is either emit_insn_before or emit_insn_after.  A pop insn
896    is represented as a SET whose destination is the register to be popped
897    and source is the top of stack.  A death note for the top of stack
898    cases the movdf pattern to pop.  */
899
900 static rtx
901 emit_pop_insn (insn, regstack, reg, where)
902      rtx insn;
903      stack regstack;
904      rtx reg;
905      enum emit_where where;
906 {
907   rtx pop_insn, pop_rtx;
908   int hard_regno;
909
910   hard_regno = get_hard_regnum (regstack, reg);
911
912   if (hard_regno < FIRST_STACK_REG)
913     abort ();
914
915   pop_rtx = gen_rtx_SET (VOIDmode, FP_MODE_REG (hard_regno, DFmode),
916                          FP_MODE_REG (FIRST_STACK_REG, DFmode));
917
918   if (where == EMIT_AFTER)
919     pop_insn = emit_block_insn_after (pop_rtx, insn, current_block);
920   else
921     pop_insn = emit_block_insn_before (pop_rtx, insn, current_block);
922
923   REG_NOTES (pop_insn)
924     = gen_rtx_EXPR_LIST (REG_DEAD, FP_MODE_REG (FIRST_STACK_REG, DFmode),
925                          REG_NOTES (pop_insn));
926
927   regstack->reg[regstack->top - (hard_regno - FIRST_STACK_REG)]
928     = regstack->reg[regstack->top];
929   regstack->top -= 1;
930   CLEAR_HARD_REG_BIT (regstack->reg_set, REGNO (reg));
931
932   return pop_insn;
933 }
934 \f
935 /* Emit an insn before or after INSN to swap virtual register REG with
936    the top of stack.  REGSTACK is the stack state before the swap, and
937    is updated to reflect the swap.  A swap insn is represented as a
938    PARALLEL of two patterns: each pattern moves one reg to the other.
939
940    If REG is already at the top of the stack, no insn is emitted.  */
941
942 static void
943 emit_swap_insn (insn, regstack, reg)
944      rtx insn;
945      stack regstack;
946      rtx reg;
947 {
948   int hard_regno;
949   rtx swap_rtx;
950   int tmp, other_reg;           /* swap regno temps */
951   rtx i1;                       /* the stack-reg insn prior to INSN */
952   rtx i1set = NULL_RTX;         /* the SET rtx within I1 */
953
954   hard_regno = get_hard_regnum (regstack, reg);
955
956   if (hard_regno < FIRST_STACK_REG)
957     abort ();
958   if (hard_regno == FIRST_STACK_REG)
959     return;
960
961   other_reg = regstack->top - (hard_regno - FIRST_STACK_REG);
962
963   tmp = regstack->reg[other_reg];
964   regstack->reg[other_reg] = regstack->reg[regstack->top];
965   regstack->reg[regstack->top] = tmp;
966
967   /* Find the previous insn involving stack regs, but don't pass a
968      block boundary.  */
969   i1 = NULL;
970   if (current_block && insn != current_block->head)
971     {
972       rtx tmp = PREV_INSN (insn);
973       rtx limit = PREV_INSN (current_block->head);
974       while (tmp != limit)
975         {
976           if (GET_CODE (tmp) == CODE_LABEL
977               || NOTE_INSN_BASIC_BLOCK_P (tmp)
978               || (GET_CODE (tmp) == INSN
979                   && stack_regs_mentioned (tmp)))
980             {
981               i1 = tmp;
982               break;
983             }
984           tmp = PREV_INSN (tmp);
985         }
986     }
987
988   if (i1 != NULL_RTX
989       && (i1set = single_set (i1)) != NULL_RTX)
990     {
991       rtx i1src = *get_true_reg (&SET_SRC (i1set));
992       rtx i1dest = *get_true_reg (&SET_DEST (i1set));
993
994       /* If the previous register stack push was from the reg we are to
995          swap with, omit the swap.  */
996
997       if (GET_CODE (i1dest) == REG && REGNO (i1dest) == FIRST_STACK_REG
998           && GET_CODE (i1src) == REG && REGNO (i1src) == hard_regno - 1
999           && find_regno_note (i1, REG_DEAD, FIRST_STACK_REG) == NULL_RTX)
1000         return;
1001
1002       /* If the previous insn wrote to the reg we are to swap with,
1003          omit the swap.  */
1004
1005       if (GET_CODE (i1dest) == REG && REGNO (i1dest) == hard_regno
1006           && GET_CODE (i1src) == REG && REGNO (i1src) == FIRST_STACK_REG
1007           && find_regno_note (i1, REG_DEAD, FIRST_STACK_REG) == NULL_RTX)
1008         return;
1009     }
1010
1011   swap_rtx = gen_swapxf (FP_MODE_REG (hard_regno, XFmode),
1012                          FP_MODE_REG (FIRST_STACK_REG, XFmode));
1013
1014   if (i1)
1015     emit_block_insn_after (swap_rtx, i1, current_block);
1016   else if (current_block)
1017     emit_block_insn_before (swap_rtx, current_block->head, current_block);
1018   else
1019     emit_insn_before (swap_rtx, insn);
1020 }
1021 \f
1022 /* Handle a move to or from a stack register in PAT, which is in INSN.
1023    REGSTACK is the current stack.  */
1024
1025 static void
1026 move_for_stack_reg (insn, regstack, pat)
1027      rtx insn;
1028      stack regstack;
1029      rtx pat;
1030 {
1031   rtx *psrc =  get_true_reg (&SET_SRC (pat));
1032   rtx *pdest = get_true_reg (&SET_DEST (pat));
1033   rtx src, dest;
1034   rtx note;
1035
1036   src = *psrc; dest = *pdest;
1037
1038   if (STACK_REG_P (src) && STACK_REG_P (dest))
1039     {
1040       /* Write from one stack reg to another.  If SRC dies here, then
1041          just change the register mapping and delete the insn.  */
1042
1043       note = find_regno_note (insn, REG_DEAD, REGNO (src));
1044       if (note)
1045         {
1046           int i;
1047
1048           /* If this is a no-op move, there must not be a REG_DEAD note.  */
1049           if (REGNO (src) == REGNO (dest))
1050             abort ();
1051
1052           for (i = regstack->top; i >= 0; i--)
1053             if (regstack->reg[i] == REGNO (src))
1054               break;
1055
1056           /* The source must be live, and the dest must be dead.  */
1057           if (i < 0 || get_hard_regnum (regstack, dest) >= FIRST_STACK_REG)
1058             abort ();
1059
1060           /* It is possible that the dest is unused after this insn.
1061              If so, just pop the src.  */
1062
1063           if (find_regno_note (insn, REG_UNUSED, REGNO (dest)))
1064             {
1065               emit_pop_insn (insn, regstack, src, EMIT_AFTER);
1066
1067               delete_insn_for_stacker (insn);
1068               return;
1069             }
1070
1071           regstack->reg[i] = REGNO (dest);
1072
1073           SET_HARD_REG_BIT (regstack->reg_set, REGNO (dest));
1074           CLEAR_HARD_REG_BIT (regstack->reg_set, REGNO (src));
1075
1076           delete_insn_for_stacker (insn);
1077
1078           return;
1079         }
1080
1081       /* The source reg does not die.  */
1082
1083       /* If this appears to be a no-op move, delete it, or else it
1084          will confuse the machine description output patterns. But if
1085          it is REG_UNUSED, we must pop the reg now, as per-insn processing
1086          for REG_UNUSED will not work for deleted insns.  */
1087
1088       if (REGNO (src) == REGNO (dest))
1089         {
1090           if (find_regno_note (insn, REG_UNUSED, REGNO (dest)))
1091             emit_pop_insn (insn, regstack, dest, EMIT_AFTER);
1092
1093           delete_insn_for_stacker (insn);
1094           return;
1095         }
1096
1097       /* The destination ought to be dead */
1098       if (get_hard_regnum (regstack, dest) >= FIRST_STACK_REG)
1099         abort ();
1100
1101       replace_reg (psrc, get_hard_regnum (regstack, src));
1102
1103       regstack->reg[++regstack->top] = REGNO (dest);
1104       SET_HARD_REG_BIT (regstack->reg_set, REGNO (dest));
1105       replace_reg (pdest, FIRST_STACK_REG);
1106     }
1107   else if (STACK_REG_P (src))
1108     {
1109       /* Save from a stack reg to MEM, or possibly integer reg.  Since
1110          only top of stack may be saved, emit an exchange first if
1111          needs be.  */
1112
1113       emit_swap_insn (insn, regstack, src);
1114
1115       note = find_regno_note (insn, REG_DEAD, REGNO (src));
1116       if (note)
1117         {
1118           replace_reg (&XEXP (note, 0), FIRST_STACK_REG);
1119           regstack->top--;
1120           CLEAR_HARD_REG_BIT (regstack->reg_set, REGNO (src));
1121         }
1122       else if ((GET_MODE (src) == XFmode || GET_MODE (src) == TFmode)
1123                && regstack->top < REG_STACK_SIZE - 1)
1124         {
1125           /* A 387 cannot write an XFmode value to a MEM without
1126              clobbering the source reg.  The output code can handle
1127              this by reading back the value from the MEM.
1128              But it is more efficient to use a temp register if one is
1129              available.  Push the source value here if the register
1130              stack is not full, and then write the value to memory via
1131              a pop.  */
1132           rtx push_rtx, push_insn;
1133           rtx top_stack_reg = FP_MODE_REG (FIRST_STACK_REG, XFmode);
1134
1135           push_rtx = gen_movxf (top_stack_reg, top_stack_reg);
1136           push_insn = emit_insn_before (push_rtx, insn);
1137           REG_NOTES (insn) = gen_rtx_EXPR_LIST (REG_DEAD, top_stack_reg,
1138                                                 REG_NOTES (insn));
1139         }
1140
1141       replace_reg (psrc, FIRST_STACK_REG);
1142     }
1143   else if (STACK_REG_P (dest))
1144     {
1145       /* Load from MEM, or possibly integer REG or constant, into the
1146          stack regs.  The actual target is always the top of the
1147          stack. The stack mapping is changed to reflect that DEST is
1148          now at top of stack.  */
1149
1150       /* The destination ought to be dead */
1151       if (get_hard_regnum (regstack, dest) >= FIRST_STACK_REG)
1152         abort ();
1153
1154       if (regstack->top >= REG_STACK_SIZE)
1155         abort ();
1156
1157       regstack->reg[++regstack->top] = REGNO (dest);
1158       SET_HARD_REG_BIT (regstack->reg_set, REGNO (dest));
1159       replace_reg (pdest, FIRST_STACK_REG);
1160     }
1161   else
1162     abort ();
1163 }
1164 \f
1165 /* Swap the condition on a branch, if there is one.  Return true if we
1166    found a condition to swap.  False if the condition was not used as
1167    such. */
1168
1169 static int
1170 swap_rtx_condition_1 (pat)
1171      rtx pat;
1172 {
1173   register const char *fmt;
1174   register int i, r = 0;
1175
1176   if (GET_RTX_CLASS (GET_CODE (pat)) == '<')
1177     {
1178       PUT_CODE (pat, swap_condition (GET_CODE (pat)));
1179       r = 1;
1180     }
1181   else
1182     {
1183       fmt = GET_RTX_FORMAT (GET_CODE (pat));
1184       for (i = GET_RTX_LENGTH (GET_CODE (pat)) - 1; i >= 0; i--)
1185         {
1186           if (fmt[i] == 'E')
1187             {
1188               register int j;
1189
1190               for (j = XVECLEN (pat, i) - 1; j >= 0; j--)
1191                 r |= swap_rtx_condition_1 (XVECEXP (pat, i, j));
1192             }
1193           else if (fmt[i] == 'e')
1194             r |= swap_rtx_condition_1 (XEXP (pat, i));
1195         }
1196     }
1197
1198   return r;
1199 }
1200
1201 static int
1202 swap_rtx_condition (insn)
1203      rtx insn;
1204 {
1205   rtx pat = PATTERN (insn);
1206
1207   /* We're looking for a single set to cc0 or an HImode temporary.  */
1208
1209   if (GET_CODE (pat) == SET
1210       && GET_CODE (SET_DEST (pat)) == REG
1211       && REGNO (SET_DEST (pat)) == FLAGS_REG)
1212     {
1213       insn = next_flags_user (insn);
1214       if (insn == NULL_RTX)
1215         return 0;
1216       pat = PATTERN (insn);
1217     }
1218
1219   /* See if this is, or ends in, a fnstsw, aka unspec 9.  If so, we're
1220      not doing anything with the cc value right now.  We may be able to
1221      search for one though.  */
1222
1223   if (GET_CODE (pat) == SET
1224       && GET_CODE (SET_SRC (pat)) == UNSPEC
1225       && XINT (SET_SRC (pat), 1) == 9)
1226     {
1227       rtx dest = SET_DEST (pat);
1228
1229       /* Search forward looking for the first use of this value. 
1230          Stop at block boundaries.  */
1231       while (insn != current_block->end)
1232         {
1233           insn = NEXT_INSN (insn);
1234           if (INSN_P (insn) && reg_mentioned_p (dest, insn))
1235             break;
1236           if (GET_CODE (insn) == CALL_INSN)
1237             return 0;
1238         }
1239
1240       /* So we've found the insn using this value.  If it is anything
1241          other than sahf, aka unspec 10, or the value does not die
1242          (meaning we'd have to search further), then we must give up.  */
1243       pat = PATTERN (insn);
1244       if (GET_CODE (pat) != SET
1245           || GET_CODE (SET_SRC (pat)) != UNSPEC
1246           || XINT (SET_SRC (pat), 1) != 10
1247           || ! dead_or_set_p (insn, dest))
1248         return 0;
1249
1250       /* Now we are prepared to handle this as a normal cc0 setter.  */
1251       insn = next_flags_user (insn);
1252       if (insn == NULL_RTX)
1253         return 0;
1254       pat = PATTERN (insn);
1255     }
1256
1257   if (swap_rtx_condition_1 (pat))
1258     {
1259       int fail = 0;
1260       INSN_CODE (insn) = -1;
1261       if (recog_memoized (insn) == -1)
1262         fail = 1;
1263       /* In case the flags don't die here, recurse to try fix
1264          following user too.  */
1265       else if (! dead_or_set_p (insn, ix86_flags_rtx))
1266         {
1267           insn = next_flags_user (insn);
1268           if (!insn || !swap_rtx_condition (insn))
1269             fail = 1;
1270         }
1271       if (fail)
1272         {
1273           swap_rtx_condition_1 (pat);
1274           return 0;
1275         }
1276       return 1;
1277     }
1278   return 0;
1279 }
1280
1281 /* Handle a comparison.  Special care needs to be taken to avoid
1282    causing comparisons that a 387 cannot do correctly, such as EQ.
1283
1284    Also, a pop insn may need to be emitted.  The 387 does have an
1285    `fcompp' insn that can pop two regs, but it is sometimes too expensive
1286    to do this - a `fcomp' followed by a `fstpl %st(0)' may be easier to
1287    set up.  */
1288
1289 static void
1290 compare_for_stack_reg (insn, regstack, pat_src)
1291      rtx insn;
1292      stack regstack;
1293      rtx pat_src;
1294 {
1295   rtx *src1, *src2;
1296   rtx src1_note, src2_note;
1297   rtx flags_user;
1298
1299   src1 = get_true_reg (&XEXP (pat_src, 0));
1300   src2 = get_true_reg (&XEXP (pat_src, 1));
1301   flags_user = next_flags_user (insn);
1302
1303   /* ??? If fxch turns out to be cheaper than fstp, give priority to
1304      registers that die in this insn - move those to stack top first.  */
1305   if ((! STACK_REG_P (*src1)
1306        || (STACK_REG_P (*src2)
1307            && get_hard_regnum (regstack, *src2) == FIRST_STACK_REG))
1308       && swap_rtx_condition (insn))
1309     {
1310       rtx temp;
1311       temp = XEXP (pat_src, 0);
1312       XEXP (pat_src, 0) = XEXP (pat_src, 1);
1313       XEXP (pat_src, 1) = temp;
1314
1315       src1 = get_true_reg (&XEXP (pat_src, 0));
1316       src2 = get_true_reg (&XEXP (pat_src, 1));
1317
1318       INSN_CODE (insn) = -1;
1319     }
1320
1321   /* We will fix any death note later.  */
1322
1323   src1_note = find_regno_note (insn, REG_DEAD, REGNO (*src1));
1324
1325   if (STACK_REG_P (*src2))
1326     src2_note = find_regno_note (insn, REG_DEAD, REGNO (*src2));
1327   else
1328     src2_note = NULL_RTX;
1329
1330   emit_swap_insn (insn, regstack, *src1);
1331
1332   replace_reg (src1, FIRST_STACK_REG);
1333
1334   if (STACK_REG_P (*src2))
1335     replace_reg (src2, get_hard_regnum (regstack, *src2));
1336
1337   if (src1_note)
1338     {
1339       pop_stack (regstack, REGNO (XEXP (src1_note, 0)));
1340       replace_reg (&XEXP (src1_note, 0), FIRST_STACK_REG);
1341     }
1342
1343   /* If the second operand dies, handle that.  But if the operands are
1344      the same stack register, don't bother, because only one death is
1345      needed, and it was just handled.  */
1346
1347   if (src2_note
1348       && ! (STACK_REG_P (*src1) && STACK_REG_P (*src2)
1349             && REGNO (*src1) == REGNO (*src2)))
1350     {
1351       /* As a special case, two regs may die in this insn if src2 is
1352          next to top of stack and the top of stack also dies.  Since
1353          we have already popped src1, "next to top of stack" is really
1354          at top (FIRST_STACK_REG) now.  */
1355
1356       if (get_hard_regnum (regstack, XEXP (src2_note, 0)) == FIRST_STACK_REG
1357           && src1_note)
1358         {
1359           pop_stack (regstack, REGNO (XEXP (src2_note, 0)));
1360           replace_reg (&XEXP (src2_note, 0), FIRST_STACK_REG + 1);
1361         }
1362       else
1363         {
1364           /* The 386 can only represent death of the first operand in
1365              the case handled above.  In all other cases, emit a separate
1366              pop and remove the death note from here.  */
1367
1368           /* link_cc0_insns (insn); */
1369
1370           remove_regno_note (insn, REG_DEAD, REGNO (XEXP (src2_note, 0)));
1371
1372           emit_pop_insn (insn, regstack, XEXP (src2_note, 0),
1373                          EMIT_AFTER);
1374         }
1375     }
1376 }
1377 \f
1378 /* Substitute new registers in PAT, which is part of INSN.  REGSTACK
1379    is the current register layout.  */
1380
1381 static void
1382 subst_stack_regs_pat (insn, regstack, pat)
1383      rtx insn;
1384      stack regstack;
1385      rtx pat;
1386 {
1387   rtx *dest, *src;
1388
1389   switch (GET_CODE (pat))
1390     {
1391     case USE:
1392       /* Deaths in USE insns can happen in non optimizing compilation.
1393          Handle them by popping the dying register.  */
1394       src = get_true_reg (&XEXP (pat, 0));
1395       if (STACK_REG_P (*src) 
1396           && find_regno_note (insn, REG_DEAD, REGNO (*src)))
1397         {
1398            emit_pop_insn (insn, regstack, *src, EMIT_AFTER);
1399            return;
1400         }
1401       /* ??? Uninitialized USE should not happen.  */
1402       else if (get_hard_regnum (regstack, *src) == -1)
1403         abort();
1404       break;
1405
1406     case CLOBBER:
1407       {
1408         rtx note;
1409
1410         dest = get_true_reg (&XEXP (pat, 0));
1411         if (STACK_REG_P (*dest))
1412           {
1413             note = find_reg_note (insn, REG_DEAD, *dest);
1414
1415             if (pat != PATTERN (insn))
1416               {
1417                 /* The fix_truncdi_1 pattern wants to be able to allocate
1418                    it's own scratch register.  It does this by clobbering
1419                    an fp reg so that it is assured of an empty reg-stack
1420                    register.  If the register is live, kill it now. 
1421                    Remove the DEAD/UNUSED note so we don't try to kill it
1422                    later too.  */
1423
1424                 if (note)
1425                   emit_pop_insn (insn, regstack, *dest, EMIT_BEFORE);
1426                 else
1427                   {
1428                     note = find_reg_note (insn, REG_UNUSED, *dest);
1429                     if (!note)
1430                       abort ();
1431                   }
1432                 remove_note (insn, note);
1433                 replace_reg (dest, LAST_STACK_REG);
1434               }
1435             else
1436               {
1437                 /* A top-level clobber with no REG_DEAD, and no hard-regnum
1438                    indicates an uninitialized value.  Because reload removed
1439                    all other clobbers, this must be due to a function 
1440                    returning without a value.  Load up a NaN.  */
1441
1442                 if (! note
1443                     && get_hard_regnum (regstack, *dest) == -1)
1444                   {
1445                     pat = gen_rtx_SET (VOIDmode,
1446                                        FP_MODE_REG (REGNO (*dest), SFmode),
1447                                        nan);
1448                     PATTERN (insn) = pat;
1449                     move_for_stack_reg (insn, regstack, pat);
1450                   }
1451               }
1452           }
1453         break;
1454       }
1455
1456     case SET:
1457       {
1458         rtx *src1 = (rtx *) NULL_PTR, *src2;
1459         rtx src1_note, src2_note;
1460         rtx pat_src;
1461
1462         dest = get_true_reg (&SET_DEST (pat));
1463         src  = get_true_reg (&SET_SRC (pat));
1464         pat_src = SET_SRC (pat);
1465
1466         /* See if this is a `movM' pattern, and handle elsewhere if so.  */
1467         if (STACK_REG_P (*src)
1468             || (STACK_REG_P (*dest)
1469                 && (GET_CODE (*src) == REG || GET_CODE (*src) == MEM
1470                     || GET_CODE (*src) == CONST_DOUBLE)))
1471           {
1472             move_for_stack_reg (insn, regstack, pat);
1473             break;
1474           }
1475
1476         switch (GET_CODE (pat_src))
1477           {
1478           case COMPARE:
1479             compare_for_stack_reg (insn, regstack, pat_src);
1480             break;
1481
1482           case CALL:
1483             {
1484               int count;
1485               for (count = HARD_REGNO_NREGS (REGNO (*dest), GET_MODE (*dest));
1486                    --count >= 0;)
1487                 {
1488                   regstack->reg[++regstack->top] = REGNO (*dest) + count;
1489                   SET_HARD_REG_BIT (regstack->reg_set, REGNO (*dest) + count);
1490                 }
1491             }
1492             replace_reg (dest, FIRST_STACK_REG);
1493             break;
1494
1495           case REG:
1496             /* This is a `tstM2' case.  */
1497             if (*dest != cc0_rtx)
1498               abort ();
1499             src1 = src;
1500
1501             /* Fall through.  */
1502
1503           case FLOAT_TRUNCATE:
1504           case SQRT:
1505           case ABS:
1506           case NEG:
1507             /* These insns only operate on the top of the stack. DEST might
1508                be cc0_rtx if we're processing a tstM pattern. Also, it's
1509                possible that the tstM case results in a REG_DEAD note on the
1510                source.  */
1511
1512             if (src1 == 0)
1513               src1 = get_true_reg (&XEXP (pat_src, 0));
1514
1515             emit_swap_insn (insn, regstack, *src1);
1516
1517             src1_note = find_regno_note (insn, REG_DEAD, REGNO (*src1));
1518
1519             if (STACK_REG_P (*dest))
1520               replace_reg (dest, FIRST_STACK_REG);
1521
1522             if (src1_note)
1523               {
1524                 replace_reg (&XEXP (src1_note, 0), FIRST_STACK_REG);
1525                 regstack->top--;
1526                 CLEAR_HARD_REG_BIT (regstack->reg_set, REGNO (*src1));
1527               }
1528
1529             replace_reg (src1, FIRST_STACK_REG);
1530             break;
1531
1532           case MINUS:
1533           case DIV:
1534             /* On i386, reversed forms of subM3 and divM3 exist for
1535                MODE_FLOAT, so the same code that works for addM3 and mulM3
1536                can be used.  */
1537           case MULT:
1538           case PLUS:
1539             /* These insns can accept the top of stack as a destination
1540                from a stack reg or mem, or can use the top of stack as a
1541                source and some other stack register (possibly top of stack)
1542                as a destination.  */
1543
1544             src1 = get_true_reg (&XEXP (pat_src, 0));
1545             src2 = get_true_reg (&XEXP (pat_src, 1));
1546
1547             /* We will fix any death note later.  */
1548
1549             if (STACK_REG_P (*src1))
1550               src1_note = find_regno_note (insn, REG_DEAD, REGNO (*src1));
1551             else
1552               src1_note = NULL_RTX;
1553             if (STACK_REG_P (*src2))
1554               src2_note = find_regno_note (insn, REG_DEAD, REGNO (*src2));
1555             else
1556               src2_note = NULL_RTX;
1557
1558             /* If either operand is not a stack register, then the dest
1559                must be top of stack.  */
1560
1561             if (! STACK_REG_P (*src1) || ! STACK_REG_P (*src2))
1562               emit_swap_insn (insn, regstack, *dest);
1563             else
1564               {
1565                 /* Both operands are REG.  If neither operand is already
1566                    at the top of stack, choose to make the one that is the dest
1567                    the new top of stack.  */
1568
1569                 int src1_hard_regnum, src2_hard_regnum;
1570
1571                 src1_hard_regnum = get_hard_regnum (regstack, *src1);
1572                 src2_hard_regnum = get_hard_regnum (regstack, *src2);
1573                 if (src1_hard_regnum == -1 || src2_hard_regnum == -1)
1574                   abort ();
1575
1576                 if (src1_hard_regnum != FIRST_STACK_REG
1577                     && src2_hard_regnum != FIRST_STACK_REG)
1578                   emit_swap_insn (insn, regstack, *dest);
1579               }
1580
1581             if (STACK_REG_P (*src1))
1582               replace_reg (src1, get_hard_regnum (regstack, *src1));
1583             if (STACK_REG_P (*src2))
1584               replace_reg (src2, get_hard_regnum (regstack, *src2));
1585
1586             if (src1_note)
1587               {
1588                 rtx src1_reg = XEXP (src1_note, 0);
1589
1590                 /* If the register that dies is at the top of stack, then
1591                    the destination is somewhere else - merely substitute it.
1592                    But if the reg that dies is not at top of stack, then
1593                    move the top of stack to the dead reg, as though we had
1594                    done the insn and then a store-with-pop.  */
1595
1596                 if (REGNO (src1_reg) == regstack->reg[regstack->top])
1597                   {
1598                     SET_HARD_REG_BIT (regstack->reg_set, REGNO (*dest));
1599                     replace_reg (dest, get_hard_regnum (regstack, *dest));
1600                   }
1601                 else
1602                   {
1603                     int regno = get_hard_regnum (regstack, src1_reg);
1604
1605                     SET_HARD_REG_BIT (regstack->reg_set, REGNO (*dest));
1606                     replace_reg (dest, regno);
1607
1608                     regstack->reg[regstack->top - (regno - FIRST_STACK_REG)]
1609                       = regstack->reg[regstack->top];
1610                   }
1611
1612                 CLEAR_HARD_REG_BIT (regstack->reg_set,
1613                                     REGNO (XEXP (src1_note, 0)));
1614                 replace_reg (&XEXP (src1_note, 0), FIRST_STACK_REG);
1615                 regstack->top--;
1616               }
1617             else if (src2_note)
1618               {
1619                 rtx src2_reg = XEXP (src2_note, 0);
1620                 if (REGNO (src2_reg) == regstack->reg[regstack->top])
1621                   {
1622                     SET_HARD_REG_BIT (regstack->reg_set, REGNO (*dest));
1623                     replace_reg (dest, get_hard_regnum (regstack, *dest));
1624                   }
1625                 else
1626                   {
1627                     int regno = get_hard_regnum (regstack, src2_reg);
1628
1629                     SET_HARD_REG_BIT (regstack->reg_set, REGNO (*dest));
1630                     replace_reg (dest, regno);
1631
1632                     regstack->reg[regstack->top - (regno - FIRST_STACK_REG)]
1633                       = regstack->reg[regstack->top];
1634                   }
1635
1636                 CLEAR_HARD_REG_BIT (regstack->reg_set,
1637                                     REGNO (XEXP (src2_note, 0)));
1638                 replace_reg (&XEXP (src2_note, 0), FIRST_STACK_REG);
1639                 regstack->top--;
1640               }
1641             else
1642               {
1643                 SET_HARD_REG_BIT (regstack->reg_set, REGNO (*dest));
1644                 replace_reg (dest, get_hard_regnum (regstack, *dest));
1645               }
1646
1647             /* Keep operand 1 maching with destination.  */
1648             if (GET_RTX_CLASS (GET_CODE (pat_src)) == 'c'
1649                 && REG_P (*src1) && REG_P (*src2)
1650                 && REGNO (*src1) != REGNO (*dest))
1651              {
1652                 int tmp = REGNO (*src1);
1653                 replace_reg (src1, REGNO (*src2));
1654                 replace_reg (src2, tmp);
1655              }
1656             break;
1657
1658           case UNSPEC:
1659             switch (XINT (pat_src, 1))
1660               {
1661               case 1: /* sin */
1662               case 2: /* cos */
1663                 /* These insns only operate on the top of the stack.  */
1664
1665                 src1 = get_true_reg (&XVECEXP (pat_src, 0, 0));
1666
1667                 emit_swap_insn (insn, regstack, *src1);
1668
1669                 src1_note = find_regno_note (insn, REG_DEAD, REGNO (*src1));
1670
1671                 if (STACK_REG_P (*dest))
1672                   replace_reg (dest, FIRST_STACK_REG);
1673
1674                 if (src1_note)
1675                   {
1676                     replace_reg (&XEXP (src1_note, 0), FIRST_STACK_REG);
1677                     regstack->top--;
1678                     CLEAR_HARD_REG_BIT (regstack->reg_set, REGNO (*src1));
1679                   }
1680
1681                 replace_reg (src1, FIRST_STACK_REG);
1682                 break;
1683
1684               case 10:
1685                 /* (unspec [(unspec [(compare ..)] 9)] 10)
1686                    Unspec 9 is fnstsw; unspec 10 is sahf.  The combination
1687                    matches the PPRO fcomi instruction.  */
1688
1689                 pat_src = XVECEXP (pat_src, 0, 0);
1690                 if (GET_CODE (pat_src) != UNSPEC
1691                     || XINT (pat_src, 1) != 9)
1692                   abort ();
1693                 /* FALLTHRU */
1694
1695               case 9:
1696                 /* (unspec [(compare ..)] 9) */
1697                 /* Combined fcomp+fnstsw generated for doing well with
1698                    CSE.  When optimizing this would have been broken
1699                    up before now.  */
1700
1701                 pat_src = XVECEXP (pat_src, 0, 0);
1702                 if (GET_CODE (pat_src) != COMPARE)
1703                   abort ();
1704
1705                 compare_for_stack_reg (insn, regstack, pat_src);
1706                 break;
1707
1708               default:
1709                 abort ();
1710               }
1711             break;
1712
1713           case IF_THEN_ELSE:
1714             /* This insn requires the top of stack to be the destination. */
1715
1716             /* If the comparison operator is an FP comparison operator,
1717                it is handled correctly by compare_for_stack_reg () who
1718                will move the destination to the top of stack. But if the
1719                comparison operator is not an FP comparison operator, we
1720                have to handle it here. */
1721             if (get_hard_regnum (regstack, *dest) >= FIRST_STACK_REG
1722                 && REGNO (*dest) != regstack->reg[regstack->top])
1723               emit_swap_insn (insn, regstack, *dest);   
1724
1725             src1 = get_true_reg (&XEXP (pat_src, 1));
1726             src2 = get_true_reg (&XEXP (pat_src, 2));
1727
1728             src1_note = find_regno_note (insn, REG_DEAD, REGNO (*src1));
1729             src2_note = find_regno_note (insn, REG_DEAD, REGNO (*src2));
1730
1731             {
1732               rtx src_note [3];
1733               int i;
1734
1735               src_note[0] = 0;
1736               src_note[1] = src1_note;
1737               src_note[2] = src2_note;
1738
1739               if (STACK_REG_P (*src1))
1740                 replace_reg (src1, get_hard_regnum (regstack, *src1));
1741               if (STACK_REG_P (*src2))
1742                 replace_reg (src2, get_hard_regnum (regstack, *src2));
1743
1744               for (i = 1; i <= 2; i++)
1745                 if (src_note [i])
1746                   {
1747                     int regno = REGNO (XEXP (src_note[i], 0));
1748
1749                     /* If the register that dies is not at the top of
1750                        stack, then move the top of stack to the dead reg */
1751                     if (regno != regstack->reg[regstack->top])
1752                       {
1753                         remove_regno_note (insn, REG_DEAD, regno);
1754                         emit_pop_insn (insn, regstack, XEXP (src_note[i], 0),
1755                                        EMIT_AFTER);
1756                       }
1757                     else
1758                       {
1759                         CLEAR_HARD_REG_BIT (regstack->reg_set, regno);
1760                         replace_reg (&XEXP (src_note[i], 0), FIRST_STACK_REG);
1761                         regstack->top--;
1762                       }
1763                   }
1764             }
1765
1766             /* Make dest the top of stack.  Add dest to regstack if
1767                not present. */
1768             if (get_hard_regnum (regstack, *dest) < FIRST_STACK_REG)
1769               regstack->reg[++regstack->top] = REGNO (*dest);   
1770             SET_HARD_REG_BIT (regstack->reg_set, REGNO (*dest));
1771             replace_reg (dest, FIRST_STACK_REG);
1772             break;
1773
1774           default:
1775             abort ();
1776           }
1777         break;
1778       }
1779
1780     default:
1781       break;
1782     }
1783 }
1784 \f
1785 /* Substitute hard regnums for any stack regs in INSN, which has
1786    N_INPUTS inputs and N_OUTPUTS outputs.  REGSTACK is the stack info
1787    before the insn, and is updated with changes made here.
1788
1789    There are several requirements and assumptions about the use of
1790    stack-like regs in asm statements.  These rules are enforced by
1791    record_asm_stack_regs; see comments there for details.  Any
1792    asm_operands left in the RTL at this point may be assume to meet the
1793    requirements, since record_asm_stack_regs removes any problem asm.  */
1794
1795 static void
1796 subst_asm_stack_regs (insn, regstack)
1797      rtx insn;
1798      stack regstack;
1799 {
1800   rtx body = PATTERN (insn);
1801   int alt;
1802
1803   rtx *note_reg;                /* Array of note contents */
1804   rtx **note_loc;               /* Address of REG field of each note */
1805   enum reg_note *note_kind;     /* The type of each note */
1806
1807   rtx *clobber_reg = 0;
1808   rtx **clobber_loc = 0;
1809
1810   struct stack_def temp_stack;
1811   int n_notes;
1812   int n_clobbers;
1813   rtx note;
1814   int i;
1815   int n_inputs, n_outputs;
1816
1817   if (! check_asm_stack_operands (insn))
1818     return;
1819
1820   /* Find out what the constraints required.  If no constraint
1821      alternative matches, that is a compiler bug: we should have caught
1822      such an insn in check_asm_stack_operands.  */
1823   extract_insn (insn);
1824   constrain_operands (1);
1825   alt = which_alternative;
1826
1827   preprocess_constraints ();
1828
1829   n_inputs = get_asm_operand_n_inputs (body);
1830   n_outputs = recog_data.n_operands - n_inputs;
1831   
1832   if (alt < 0)
1833     abort ();
1834
1835   /* Strip SUBREGs here to make the following code simpler.  */
1836   for (i = 0; i < recog_data.n_operands; i++)
1837     if (GET_CODE (recog_data.operand[i]) == SUBREG
1838         && GET_CODE (SUBREG_REG (recog_data.operand[i])) == REG)
1839       {
1840         recog_data.operand_loc[i] = & SUBREG_REG (recog_data.operand[i]);
1841         recog_data.operand[i] = SUBREG_REG (recog_data.operand[i]);
1842       }
1843
1844   /* Set up NOTE_REG, NOTE_LOC and NOTE_KIND.  */
1845
1846   for (i = 0, note = REG_NOTES (insn); note; note = XEXP (note, 1))
1847     i++;
1848
1849   note_reg = (rtx *) alloca (i * sizeof (rtx));
1850   note_loc = (rtx **) alloca (i * sizeof (rtx *));
1851   note_kind = (enum reg_note *) alloca (i * sizeof (enum reg_note));
1852
1853   n_notes = 0;
1854   for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
1855     {
1856       rtx reg = XEXP (note, 0);
1857       rtx *loc = & XEXP (note, 0);
1858
1859       if (GET_CODE (reg) == SUBREG && GET_CODE (SUBREG_REG (reg)) == REG)
1860         {
1861           loc = & SUBREG_REG (reg);
1862           reg = SUBREG_REG (reg);
1863         }
1864
1865       if (STACK_REG_P (reg)
1866           && (REG_NOTE_KIND (note) == REG_DEAD
1867               || REG_NOTE_KIND (note) == REG_UNUSED))
1868         {
1869           note_reg[n_notes] = reg;
1870           note_loc[n_notes] = loc;
1871           note_kind[n_notes] = REG_NOTE_KIND (note);
1872           n_notes++;
1873         }
1874     }
1875
1876   /* Set up CLOBBER_REG and CLOBBER_LOC.  */
1877
1878   n_clobbers = 0;
1879
1880   if (GET_CODE (body) == PARALLEL)
1881     {
1882       clobber_reg = (rtx *) alloca (XVECLEN (body, 0) * sizeof (rtx));
1883       clobber_loc = (rtx **) alloca (XVECLEN (body, 0) * sizeof (rtx *));
1884
1885       for (i = 0; i < XVECLEN (body, 0); i++)
1886         if (GET_CODE (XVECEXP (body, 0, i)) == CLOBBER)
1887           {
1888             rtx clobber = XVECEXP (body, 0, i);
1889             rtx reg = XEXP (clobber, 0);
1890             rtx *loc = & XEXP (clobber, 0);
1891
1892             if (GET_CODE (reg) == SUBREG && GET_CODE (SUBREG_REG (reg)) == REG)
1893               {
1894                 loc = & SUBREG_REG (reg);
1895                 reg = SUBREG_REG (reg);
1896               }
1897
1898             if (STACK_REG_P (reg))
1899               {
1900                 clobber_reg[n_clobbers] = reg;
1901                 clobber_loc[n_clobbers] = loc;
1902                 n_clobbers++;
1903               }
1904           }
1905     }
1906
1907   temp_stack = *regstack;
1908
1909   /* Put the input regs into the desired place in TEMP_STACK.  */
1910
1911   for (i = n_outputs; i < n_outputs + n_inputs; i++)
1912     if (STACK_REG_P (recog_data.operand[i])
1913         && reg_class_subset_p (recog_op_alt[i][alt].class,
1914                                FLOAT_REGS)
1915         && recog_op_alt[i][alt].class != FLOAT_REGS)
1916       {
1917         /* If an operand needs to be in a particular reg in
1918            FLOAT_REGS, the constraint was either 't' or 'u'.  Since
1919            these constraints are for single register classes, and
1920            reload guaranteed that operand[i] is already in that class,
1921            we can just use REGNO (recog_data.operand[i]) to know which
1922            actual reg this operand needs to be in.  */
1923
1924         int regno = get_hard_regnum (&temp_stack, recog_data.operand[i]);
1925
1926         if (regno < 0)
1927           abort ();
1928
1929         if (regno != REGNO (recog_data.operand[i]))
1930           {
1931             /* recog_data.operand[i] is not in the right place.  Find
1932                it and swap it with whatever is already in I's place.
1933                K is where recog_data.operand[i] is now.  J is where it
1934                should be.  */
1935             int j, k, temp;
1936
1937             k = temp_stack.top - (regno - FIRST_STACK_REG);
1938             j = (temp_stack.top
1939                  - (REGNO (recog_data.operand[i]) - FIRST_STACK_REG));
1940
1941             temp = temp_stack.reg[k];
1942             temp_stack.reg[k] = temp_stack.reg[j];
1943             temp_stack.reg[j] = temp;
1944           }
1945       }
1946
1947   /* Emit insns before INSN to make sure the reg-stack is in the right
1948      order.  */
1949
1950   change_stack (insn, regstack, &temp_stack, EMIT_BEFORE);
1951
1952   /* Make the needed input register substitutions.  Do death notes and
1953      clobbers too, because these are for inputs, not outputs.  */
1954
1955   for (i = n_outputs; i < n_outputs + n_inputs; i++)
1956     if (STACK_REG_P (recog_data.operand[i]))
1957       {
1958         int regnum = get_hard_regnum (regstack, recog_data.operand[i]);
1959
1960         if (regnum < 0)
1961           abort ();
1962
1963         replace_reg (recog_data.operand_loc[i], regnum);
1964       }
1965
1966   for (i = 0; i < n_notes; i++)
1967     if (note_kind[i] == REG_DEAD)
1968       {
1969         int regnum = get_hard_regnum (regstack, note_reg[i]);
1970
1971         if (regnum < 0)
1972           abort ();
1973
1974         replace_reg (note_loc[i], regnum);
1975       }
1976
1977   for (i = 0; i < n_clobbers; i++)
1978     {
1979       /* It's OK for a CLOBBER to reference a reg that is not live.
1980          Don't try to replace it in that case.  */
1981       int regnum = get_hard_regnum (regstack, clobber_reg[i]);
1982
1983       if (regnum >= 0)
1984         {
1985           /* Sigh - clobbers always have QImode.  But replace_reg knows
1986              that these regs can't be MODE_INT and will abort.  Just put
1987              the right reg there without calling replace_reg.  */
1988
1989           *clobber_loc[i] = FP_MODE_REG (regnum, DFmode);
1990         }
1991     }
1992
1993   /* Now remove from REGSTACK any inputs that the asm implicitly popped.  */
1994
1995   for (i = n_outputs; i < n_outputs + n_inputs; i++)
1996     if (STACK_REG_P (recog_data.operand[i]))
1997       {
1998         /* An input reg is implicitly popped if it is tied to an
1999            output, or if there is a CLOBBER for it.  */
2000         int j;
2001
2002         for (j = 0; j < n_clobbers; j++)
2003           if (operands_match_p (clobber_reg[j], recog_data.operand[i]))
2004             break;
2005
2006         if (j < n_clobbers || recog_op_alt[i][alt].matches >= 0)
2007           {
2008             /* recog_data.operand[i] might not be at the top of stack.
2009                But that's OK, because all we need to do is pop the
2010                right number of regs off of the top of the reg-stack.
2011                record_asm_stack_regs guaranteed that all implicitly
2012                popped regs were grouped at the top of the reg-stack.  */
2013
2014             CLEAR_HARD_REG_BIT (regstack->reg_set,
2015                                 regstack->reg[regstack->top]);
2016             regstack->top--;
2017           }
2018       }
2019
2020   /* Now add to REGSTACK any outputs that the asm implicitly pushed.
2021      Note that there isn't any need to substitute register numbers.
2022      ???  Explain why this is true.  */
2023
2024   for (i = LAST_STACK_REG; i >= FIRST_STACK_REG; i--)
2025     {
2026       /* See if there is an output for this hard reg.  */
2027       int j;
2028
2029       for (j = 0; j < n_outputs; j++)
2030         if (STACK_REG_P (recog_data.operand[j])
2031             && REGNO (recog_data.operand[j]) == i)
2032           {
2033             regstack->reg[++regstack->top] = i;
2034             SET_HARD_REG_BIT (regstack->reg_set, i);
2035             break;
2036           }
2037     }
2038
2039   /* Now emit a pop insn for any REG_UNUSED output, or any REG_DEAD
2040      input that the asm didn't implicitly pop.  If the asm didn't
2041      implicitly pop an input reg, that reg will still be live.
2042
2043      Note that we can't use find_regno_note here: the register numbers
2044      in the death notes have already been substituted.  */
2045
2046   for (i = 0; i < n_outputs; i++)
2047     if (STACK_REG_P (recog_data.operand[i]))
2048       {
2049         int j;
2050
2051         for (j = 0; j < n_notes; j++)
2052           if (REGNO (recog_data.operand[i]) == REGNO (note_reg[j])
2053               && note_kind[j] == REG_UNUSED)
2054             {
2055               insn = emit_pop_insn (insn, regstack, recog_data.operand[i],
2056                                     EMIT_AFTER);
2057               break;
2058             }
2059       }
2060
2061   for (i = n_outputs; i < n_outputs + n_inputs; i++)
2062     if (STACK_REG_P (recog_data.operand[i]))
2063       {
2064         int j;
2065
2066         for (j = 0; j < n_notes; j++)
2067           if (REGNO (recog_data.operand[i]) == REGNO (note_reg[j])
2068               && note_kind[j] == REG_DEAD
2069               && TEST_HARD_REG_BIT (regstack->reg_set,
2070                                     REGNO (recog_data.operand[i])))
2071             {
2072               insn = emit_pop_insn (insn, regstack, recog_data.operand[i],
2073                                     EMIT_AFTER);
2074               break;
2075             }
2076       }
2077 }
2078 \f
2079 /* Substitute stack hard reg numbers for stack virtual registers in
2080    INSN.  Non-stack register numbers are not changed.  REGSTACK is the
2081    current stack content.  Insns may be emitted as needed to arrange the
2082    stack for the 387 based on the contents of the insn.  */
2083
2084 static void
2085 subst_stack_regs (insn, regstack)
2086      rtx insn;
2087      stack regstack;
2088 {
2089   register rtx *note_link, note;
2090   register int i;
2091
2092   if (GET_CODE (insn) == CALL_INSN)
2093     {
2094       int top = regstack->top;
2095
2096       /* If there are any floating point parameters to be passed in
2097          registers for this call, make sure they are in the right
2098          order.  */
2099
2100       if (top >= 0)
2101         {
2102           straighten_stack (PREV_INSN (insn), regstack);
2103
2104           /* Now mark the arguments as dead after the call.  */
2105
2106           while (regstack->top >= 0)
2107             {
2108               CLEAR_HARD_REG_BIT (regstack->reg_set, FIRST_STACK_REG + regstack->top);
2109               regstack->top--;
2110             }
2111         }
2112     }
2113
2114   /* Do the actual substitution if any stack regs are mentioned.
2115      Since we only record whether entire insn mentions stack regs, and
2116      subst_stack_regs_pat only works for patterns that contain stack regs,
2117      we must check each pattern in a parallel here.  A call_value_pop could
2118      fail otherwise.  */
2119
2120   if (stack_regs_mentioned (insn))
2121     {
2122       int n_operands = asm_noperands (PATTERN (insn));
2123       if (n_operands >= 0)
2124         {
2125           /* This insn is an `asm' with operands.  Decode the operands,
2126              decide how many are inputs, and do register substitution.
2127              Any REG_UNUSED notes will be handled by subst_asm_stack_regs.  */
2128
2129           subst_asm_stack_regs (insn, regstack);
2130           return;
2131         }
2132
2133       if (GET_CODE (PATTERN (insn)) == PARALLEL)
2134         for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
2135           {
2136             if (stack_regs_mentioned_p (XVECEXP (PATTERN (insn), 0, i)))
2137               subst_stack_regs_pat (insn, regstack,
2138                                     XVECEXP (PATTERN (insn), 0, i));
2139           }
2140       else
2141         subst_stack_regs_pat (insn, regstack, PATTERN (insn));
2142     }
2143
2144   /* subst_stack_regs_pat may have deleted a no-op insn.  If so, any
2145      REG_UNUSED will already have been dealt with, so just return.  */
2146
2147   if (GET_CODE (insn) == NOTE)
2148     return;
2149
2150   /* If there is a REG_UNUSED note on a stack register on this insn,
2151      the indicated reg must be popped.  The REG_UNUSED note is removed,
2152      since the form of the newly emitted pop insn references the reg,
2153      making it no longer `unset'.  */
2154
2155   note_link = &REG_NOTES(insn);
2156   for (note = *note_link; note; note = XEXP (note, 1))
2157     if (REG_NOTE_KIND (note) == REG_UNUSED && STACK_REG_P (XEXP (note, 0)))
2158       {
2159         *note_link = XEXP (note, 1);
2160         insn = emit_pop_insn (insn, regstack, XEXP (note, 0), EMIT_AFTER);
2161       }
2162     else
2163       note_link = &XEXP (note, 1);
2164 }
2165 \f
2166 /* Change the organization of the stack so that it fits a new basic
2167    block.  Some registers might have to be popped, but there can never be
2168    a register live in the new block that is not now live.
2169
2170    Insert any needed insns before or after INSN, as indicated by
2171    WHERE.  OLD is the original stack layout, and NEW is the desired
2172    form.  OLD is updated to reflect the code emitted, ie, it will be
2173    the same as NEW upon return.
2174
2175    This function will not preserve block_end[].  But that information
2176    is no longer needed once this has executed.  */
2177
2178 static void
2179 change_stack (insn, old, new, where)
2180      rtx insn;
2181      stack old;
2182      stack new;
2183      enum emit_where where;
2184 {
2185   int reg;
2186   int update_end = 0;
2187
2188   /* We will be inserting new insns "backwards".  If we are to insert
2189      after INSN, find the next insn, and insert before it.  */
2190
2191   if (where == EMIT_AFTER)
2192     {
2193       if (current_block && current_block->end == insn)
2194         update_end = 1;
2195       insn = NEXT_INSN (insn);
2196     }
2197
2198   /* Pop any registers that are not needed in the new block.  */
2199
2200   for (reg = old->top; reg >= 0; reg--)
2201     if (! TEST_HARD_REG_BIT (new->reg_set, old->reg[reg]))
2202       emit_pop_insn (insn, old, FP_MODE_REG (old->reg[reg], DFmode),
2203                      EMIT_BEFORE);
2204
2205   if (new->top == -2)
2206     {
2207       /* If the new block has never been processed, then it can inherit
2208          the old stack order.  */
2209
2210       new->top = old->top;
2211       memcpy (new->reg, old->reg, sizeof (new->reg));
2212     }
2213   else
2214     {
2215       /* This block has been entered before, and we must match the
2216          previously selected stack order.  */
2217
2218       /* By now, the only difference should be the order of the stack,
2219          not their depth or liveliness.  */
2220
2221       GO_IF_HARD_REG_EQUAL (old->reg_set, new->reg_set, win);
2222       abort ();
2223     win:
2224       if (old->top != new->top)
2225         abort ();
2226
2227       /* If the stack is not empty (new->top != -1), loop here emitting
2228          swaps until the stack is correct. 
2229
2230          The worst case number of swaps emitted is N + 2, where N is the
2231          depth of the stack.  In some cases, the reg at the top of
2232          stack may be correct, but swapped anyway in order to fix
2233          other regs.  But since we never swap any other reg away from
2234          its correct slot, this algorithm will converge.  */
2235
2236       if (new->top != -1)
2237         do
2238           {
2239             /* Swap the reg at top of stack into the position it is
2240                supposed to be in, until the correct top of stack appears.  */
2241
2242             while (old->reg[old->top] != new->reg[new->top])
2243               {
2244                 for (reg = new->top; reg >= 0; reg--)
2245                   if (new->reg[reg] == old->reg[old->top])
2246                     break;
2247
2248                 if (reg == -1)
2249                   abort ();
2250
2251                 emit_swap_insn (insn, old,
2252                                 FP_MODE_REG (old->reg[reg], DFmode));
2253               }
2254
2255             /* See if any regs remain incorrect.  If so, bring an
2256              incorrect reg to the top of stack, and let the while loop
2257              above fix it.  */
2258
2259             for (reg = new->top; reg >= 0; reg--)
2260               if (new->reg[reg] != old->reg[reg])
2261                 {
2262                   emit_swap_insn (insn, old,
2263                                   FP_MODE_REG (old->reg[reg], DFmode));
2264                   break;
2265                 }
2266           } while (reg >= 0);
2267
2268       /* At this point there must be no differences.  */
2269
2270       for (reg = old->top; reg >= 0; reg--)
2271         if (old->reg[reg] != new->reg[reg])
2272           abort ();
2273     }
2274
2275   if (update_end)
2276     current_block->end = PREV_INSN (insn);
2277 }
2278 \f
2279 /* Print stack configuration.  */
2280
2281 static void
2282 print_stack (file, s)
2283      FILE *file;
2284      stack s;
2285 {
2286   if (! file)
2287     return;
2288
2289   if (s->top == -2)
2290     fprintf (file, "uninitialized\n");
2291   else if (s->top == -1)
2292     fprintf (file, "empty\n");
2293   else
2294     {
2295       int i;
2296       fputs ("[ ", file);
2297       for (i = 0; i <= s->top; ++i)
2298         fprintf (file, "%d ", s->reg[i]);
2299       fputs ("]\n", file);
2300     }
2301 }
2302 \f
2303 /* This function was doing life analysis.  We now let the regular live
2304    code do it's job, so we only need to check some extra invariants 
2305    that reg-stack expects.  Primary among these being that all registers
2306    are initialized before use.
2307
2308    The function returns true when code was emitted to CFG edges and
2309    commit_edge_insertions needs to be called.  */
2310
2311 static int
2312 convert_regs_entry ()
2313 {
2314   int inserted = 0, i;
2315   edge e;
2316
2317   for (i = n_basic_blocks - 1; i >= 0; --i)
2318     {
2319       basic_block block = BASIC_BLOCK (i);
2320       block_info bi = BLOCK_INFO (block);
2321       int reg;
2322       
2323       /* Set current register status at last instruction `uninitialized'.  */
2324       bi->stack_in.top = -2;
2325   
2326       /* Copy live_at_end and live_at_start into temporaries.  */
2327       for (reg = FIRST_STACK_REG; reg <= LAST_STACK_REG; reg++)
2328         {
2329           if (REGNO_REG_SET_P (block->global_live_at_end, reg))
2330             SET_HARD_REG_BIT (bi->out_reg_set, reg);
2331           if (REGNO_REG_SET_P (block->global_live_at_start, reg))
2332             SET_HARD_REG_BIT (bi->stack_in.reg_set, reg);
2333         }
2334     }
2335
2336   /* Load something into each stack register live at function entry. 
2337      Such live registers can be caused by uninitialized variables or
2338      functions not returning values on all paths.  In order to keep 
2339      the push/pop code happy, and to not scrog the register stack, we
2340      must put something in these registers.  Use a QNaN.  
2341
2342      Note that we are insertting converted code here.  This code is
2343      never seen by the convert_regs pass.  */
2344
2345   for (e = ENTRY_BLOCK_PTR->succ; e ; e = e->succ_next)
2346     {
2347       basic_block block = e->dest;
2348       block_info bi = BLOCK_INFO (block);
2349       int reg, top = -1;
2350
2351       for (reg = LAST_STACK_REG; reg >= FIRST_STACK_REG; --reg)
2352         if (TEST_HARD_REG_BIT (bi->stack_in.reg_set, reg))
2353           {
2354             rtx init;
2355
2356             bi->stack_in.reg[++top] = reg;
2357
2358             init = gen_rtx_SET (VOIDmode,
2359                                 FP_MODE_REG (FIRST_STACK_REG, SFmode),
2360                                 nan);
2361             insert_insn_on_edge (init, e);
2362             inserted = 1;
2363           }
2364
2365       bi->stack_in.top = top;
2366     }
2367
2368   return inserted;
2369 }
2370
2371 /* Construct the desired stack for function exit.  This will either
2372    be `empty', or the function return value at top-of-stack.  */
2373
2374 static void
2375 convert_regs_exit ()
2376 {
2377   int value_reg_low, value_reg_high;
2378   stack output_stack;
2379   rtx retvalue;
2380
2381   retvalue = stack_result (current_function_decl);
2382   value_reg_low = value_reg_high = -1;
2383   if (retvalue)
2384     {
2385       value_reg_low = REGNO (retvalue);
2386       value_reg_high = value_reg_low
2387         + HARD_REGNO_NREGS (value_reg_low, GET_MODE (retvalue)) - 1;
2388     }
2389
2390   output_stack = &BLOCK_INFO (EXIT_BLOCK_PTR)->stack_in;
2391   if (value_reg_low == -1)
2392     output_stack->top = -1;
2393   else
2394     {
2395       int reg;
2396
2397       output_stack->top = value_reg_high - value_reg_low;
2398       for (reg = value_reg_low; reg <= value_reg_high; ++reg)
2399         {
2400           output_stack->reg[reg - value_reg_low] = reg;
2401           SET_HARD_REG_BIT (output_stack->reg_set, reg);
2402         }
2403     }
2404 }
2405
2406 /* Convert stack register references in one block.  */
2407
2408 static int
2409 convert_regs_1 (file, block)
2410      FILE *file;
2411      basic_block block;
2412 {
2413   struct stack_def regstack, tmpstack;
2414   block_info bi = BLOCK_INFO (block);
2415   int inserted, reg;
2416   rtx insn, next;
2417   edge e;
2418
2419   current_block = block;
2420   
2421   if (file)
2422     {
2423       fprintf (file, "\nBasic block %d\nInput stack: ", block->index);
2424       print_stack (file, &bi->stack_in);
2425     }
2426
2427   /* Process all insns in this block.  Keep track of NEXT so that we
2428      don't process insns emitted while substituting in INSN.  */
2429   next = block->head;
2430   regstack = bi->stack_in;
2431   do
2432     {
2433       insn = next;
2434       next = NEXT_INSN (insn);
2435
2436       /* Ensure we have not missed a block boundary.  */
2437       if (next == NULL)
2438         abort ();
2439       if (insn == block->end)
2440         next = NULL;
2441
2442       /* Don't bother processing unless there is a stack reg
2443          mentioned or if it's a CALL_INSN.  */
2444       if (stack_regs_mentioned (insn)
2445           || GET_CODE (insn) == CALL_INSN)
2446         {
2447           if (file)
2448             {
2449               fprintf (file, "  insn %d input stack: ",
2450                        INSN_UID (insn));
2451               print_stack (file, &regstack);
2452             }
2453           subst_stack_regs (insn, &regstack);
2454         }
2455     }
2456   while (next);
2457
2458   if (file)
2459     {
2460       fprintf (file, "Expected live registers [");
2461       for (reg = FIRST_STACK_REG; reg <= LAST_STACK_REG; ++reg)
2462         if (TEST_HARD_REG_BIT (bi->out_reg_set, reg))
2463           fprintf (file, " %d", reg);
2464       fprintf (file, " ]\nOutput stack: ");
2465       print_stack (file, &regstack);
2466     }
2467
2468   insn = block->end;
2469   if (GET_CODE (insn) == JUMP_INSN)
2470     insn = PREV_INSN (insn);
2471
2472   /* If the function is declared to return a value, but it returns one
2473      in only some cases, some registers might come live here.  Emit
2474      necessary moves for them.  */
2475
2476   for (reg = FIRST_STACK_REG; reg <= LAST_STACK_REG; ++reg)
2477     {
2478       if (TEST_HARD_REG_BIT (bi->out_reg_set, reg)
2479           && ! TEST_HARD_REG_BIT (regstack.reg_set, reg))
2480         {
2481           rtx set;
2482
2483           if (file)
2484             {
2485               fprintf (file, "Emitting insn initializing reg %d\n",
2486                        reg);
2487             }
2488
2489           set = gen_rtx_SET (VOIDmode, FP_MODE_REG (reg, SFmode),
2490                              nan);
2491           insn = emit_block_insn_after (set, insn, block);
2492           subst_stack_regs (insn, &regstack);
2493         }
2494     }
2495
2496   /* Something failed if the stack lives don't match.  */
2497   GO_IF_HARD_REG_EQUAL (regstack.reg_set, bi->out_reg_set, win);
2498   abort ();
2499  win:
2500
2501   /* Adjust the stack of this block on exit to match the stack of the
2502      target block, or copy stack info into the stack of the successor
2503      of the successor hasn't been processed yet.  */
2504   inserted = 0;
2505   for (e = block->succ; e ; e = e->succ_next)
2506     {
2507       basic_block target = e->dest;
2508       stack target_stack = &BLOCK_INFO (target)->stack_in;
2509
2510       if (file)
2511         fprintf (file, "Edge to block %d: ", target->index);
2512
2513       if (target_stack->top == -2)
2514         {
2515           /* The target block hasn't had a stack order selected.
2516              We need merely ensure that no pops are needed.  */
2517           for (reg = regstack.top; reg >= 0; --reg)
2518             if (! TEST_HARD_REG_BIT (target_stack->reg_set,
2519                                      regstack.reg[reg]))
2520               break;
2521
2522           if (reg == -1)
2523             {
2524               if (file)
2525                 fprintf (file, "new block; copying stack position\n");
2526
2527               /* change_stack kills values in regstack.  */
2528               tmpstack = regstack;
2529
2530               change_stack (block->end, &tmpstack,
2531                             target_stack, EMIT_AFTER);
2532               continue;
2533             }
2534
2535           if (file)
2536             fprintf (file, "new block; pops needed\n");
2537         }
2538       else
2539         {
2540           if (target_stack->top == regstack.top)
2541             {
2542               for (reg = target_stack->top; reg >= 0; --reg)
2543                 if (target_stack->reg[reg] != regstack.reg[reg])
2544                   break;
2545
2546               if (reg == -1)
2547                 {
2548                   if (file)
2549                     fprintf (file, "no changes needed\n");
2550                   continue;
2551                 }
2552             }
2553
2554           if (file)
2555             {
2556               fprintf (file, "correcting stack to ");
2557               print_stack (file, target_stack);
2558             }
2559         }
2560
2561       /* Care for EH edges specially.  The normal return path may return
2562          a value in st(0), but the EH path will not, and there's no need
2563          to add popping code to the edge.  */
2564       if (e->flags & (EDGE_EH | EDGE_ABNORMAL_CALL))
2565         {
2566           /* Assert that the lifetimes are as we expect -- one value
2567              live at st(0) on the end of the source block, and no
2568              values live at the beginning of the destination block.  */
2569           HARD_REG_SET tmp;
2570
2571           CLEAR_HARD_REG_SET (tmp);
2572           GO_IF_HARD_REG_EQUAL (target_stack->reg_set, tmp, eh1);
2573           abort();
2574         eh1:
2575
2576           SET_HARD_REG_BIT (tmp, FIRST_STACK_REG);
2577           GO_IF_HARD_REG_EQUAL (regstack.reg_set, tmp, eh2);
2578           abort();
2579         eh2:
2580
2581           target_stack->top = -1;
2582         }
2583
2584       /* It is better to output directly to the end of the block
2585          instead of to the edge, because emit_swap can do minimal
2586          insn scheduling.  We can do this when there is only one
2587          edge out, and it is not abnormal.  */
2588       else if (block->succ->succ_next == NULL
2589                && ! (e->flags & EDGE_ABNORMAL))
2590         {
2591           /* change_stack kills values in regstack.  */
2592           tmpstack = regstack;
2593
2594           change_stack (block->end, &tmpstack, target_stack,
2595                         (GET_CODE (block->end) == JUMP_INSN
2596                          ? EMIT_BEFORE : EMIT_AFTER));
2597         }
2598       else
2599         {
2600           rtx seq, after;
2601
2602           /* We don't support abnormal edges.  Global takes care to
2603              avoid any live register across them, so we should never
2604              have to insert instructions on such edges.  */
2605           if (e->flags & EDGE_ABNORMAL)
2606             abort ();
2607
2608           current_block = NULL;
2609           start_sequence ();
2610                   
2611           /* ??? change_stack needs some point to emit insns after. 
2612              Also needed to keep gen_sequence from returning a 
2613              pattern as opposed to a sequence, which would lose
2614              REG_DEAD notes.  */
2615           after = emit_note (NULL, NOTE_INSN_DELETED);
2616
2617           tmpstack = regstack;
2618           change_stack (after, &tmpstack, target_stack, EMIT_BEFORE);
2619
2620           seq = gen_sequence ();
2621           end_sequence ();
2622
2623           insert_insn_on_edge (seq, e);
2624           inserted = 1;
2625           current_block = block;
2626         }
2627     }
2628
2629   return inserted;
2630 }
2631
2632 /* Convert registers in all blocks reachable from BLOCK.  */
2633
2634 static int
2635 convert_regs_2 (file, block)
2636      FILE *file;
2637      basic_block block;
2638 {
2639   basic_block *stack, *sp;
2640   int inserted;
2641
2642   stack = (basic_block *) xmalloc (sizeof (*stack) * n_basic_blocks);
2643   sp = stack;
2644
2645   *sp++ = block;
2646   BLOCK_INFO (block)->done = 1;
2647
2648   inserted = 0;
2649   do
2650     {
2651       edge e;
2652
2653       block = *--sp;
2654       inserted |= convert_regs_1 (file, block);
2655
2656       for (e = block->succ; e ; e = e->succ_next)
2657         if (! BLOCK_INFO (e->dest)->done)
2658           {
2659             *sp++ = e->dest;
2660             BLOCK_INFO (e->dest)->done = 1;
2661           }
2662     }
2663   while (sp != stack);
2664
2665   return inserted;
2666 }
2667
2668 /* Traverse all basic blocks in a function, converting the register
2669    references in each insn from the "flat" register file that gcc uses,
2670    to the stack-like registers the 387 uses.  */
2671
2672 static int
2673 convert_regs (file)
2674      FILE *file;
2675 {
2676   int inserted, i;
2677   edge e;
2678
2679   /* Initialize uninitialized registers on function entry.  */
2680   inserted = convert_regs_entry ();
2681
2682   /* Construct the desired stack for function exit.  */
2683   convert_regs_exit ();
2684   BLOCK_INFO (EXIT_BLOCK_PTR)->done = 1;
2685
2686   /* ??? Future: process inner loops first, and give them arbitrary
2687      initial stacks which emit_swap_insn can modify.  This ought to
2688      prevent double fxch that aften appears at the head of a loop.  */
2689
2690   /* Process all blocks reachable from all entry points.  */
2691   for (e = ENTRY_BLOCK_PTR->succ; e ; e = e->succ_next)
2692     inserted |= convert_regs_2 (file, e->dest);
2693   
2694   /* ??? Process all unreachable blocks.  Though there's no excuse 
2695      for keeping these even when not optimizing.  */
2696   for (i = 0; i < n_basic_blocks; ++i)
2697     {
2698       basic_block b = BASIC_BLOCK (i);
2699       block_info bi = BLOCK_INFO (b);
2700
2701       if (! bi->done)
2702         {
2703           int reg;
2704
2705           /* Create an arbitrary input stack.  */
2706           bi->stack_in.top = -1;
2707           for (reg = LAST_STACK_REG; reg >= FIRST_STACK_REG; --reg)
2708             if (TEST_HARD_REG_BIT (bi->stack_in.reg_set, reg))
2709               bi->stack_in.reg[++bi->stack_in.top] = reg;
2710
2711           inserted |= convert_regs_2 (file, b);
2712         }
2713     }
2714
2715   if (inserted)
2716     commit_edge_insertions ();
2717
2718   if (file)
2719     fputc ('\n', file);
2720
2721   return inserted;
2722 }
2723 #endif /* STACK_REGS */