rtl.h (rtx_def): Update documentation.
[platform/upstream/gcc.git] / gcc / final.c
1 /* Convert RTL to assembler code and output it, for GNU compiler.
2    Copyright (C) 1987, 88, 89, 92-98, 1999 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21
22 /* This is the final pass of the compiler.
23    It looks at the rtl code for a function and outputs assembler code.
24
25    Call `final_start_function' to output the assembler code for function entry,
26    `final' to output assembler code for some RTL code,
27    `final_end_function' to output assembler code for function exit.
28    If a function is compiled in several pieces, each piece is
29    output separately with `final'.
30
31    Some optimizations are also done at this level.
32    Move instructions that were made unnecessary by good register allocation
33    are detected and omitted from the output.  (Though most of these
34    are removed by the last jump pass.)
35
36    Instructions to set the condition codes are omitted when it can be
37    seen that the condition codes already had the desired values.
38
39    In some cases it is sufficient if the inherited condition codes
40    have related values, but this may require the following insn
41    (the one that tests the condition codes) to be modified.
42
43    The code for the function prologue and epilogue are generated
44    directly as assembler code by the macros FUNCTION_PROLOGUE and
45    FUNCTION_EPILOGUE.  Those instructions never exist as rtl.  */
46
47 #include "config.h"
48 #include "system.h"
49
50 #include "tree.h"
51 #include "rtl.h"
52 #include "regs.h"
53 #include "insn-config.h"
54 #include "insn-flags.h"
55 #include "insn-attr.h"
56 #include "insn-codes.h"
57 #include "recog.h"
58 #include "conditions.h"
59 #include "flags.h"
60 #include "real.h"
61 #include "hard-reg-set.h"
62 #include "defaults.h"
63 #include "output.h"
64 #include "except.h"
65 #include "toplev.h"
66 #include "reload.h"
67
68 /* Get N_SLINE and N_SOL from stab.h if we can expect the file to exist.  */
69 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
70 #include "dbxout.h"
71 #if defined (USG) || !defined (HAVE_STAB_H)
72 #include "gstab.h"  /* If doing DBX on sysV, use our own stab.h.  */
73 #else
74 #include <stab.h>
75 #endif
76
77 #endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
78
79 #ifdef XCOFF_DEBUGGING_INFO
80 #include "xcoffout.h"
81 #endif
82
83 #ifdef DWARF_DEBUGGING_INFO
84 #include "dwarfout.h"
85 #endif
86
87 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
88 #include "dwarf2out.h"
89 #endif
90
91 #ifdef SDB_DEBUGGING_INFO
92 #include "sdbout.h"
93 #endif
94
95 /* .stabd code for line number.  */
96 #ifndef N_SLINE
97 #define N_SLINE 0x44
98 #endif
99
100 /* .stabs code for included file name.  */
101 #ifndef N_SOL
102 #define N_SOL 0x84
103 #endif
104
105 #ifndef INT_TYPE_SIZE
106 #define INT_TYPE_SIZE BITS_PER_WORD
107 #endif
108
109 #ifndef LONG_TYPE_SIZE
110 #define LONG_TYPE_SIZE BITS_PER_WORD
111 #endif
112
113 /* If we aren't using cc0, CC_STATUS_INIT shouldn't exist.  So define a
114    null default for it to save conditionalization later.  */
115 #ifndef CC_STATUS_INIT
116 #define CC_STATUS_INIT
117 #endif
118
119 /* How to start an assembler comment.  */
120 #ifndef ASM_COMMENT_START
121 #define ASM_COMMENT_START ";#"
122 #endif
123
124 /* Is the given character a logical line separator for the assembler?  */
125 #ifndef IS_ASM_LOGICAL_LINE_SEPARATOR
126 #define IS_ASM_LOGICAL_LINE_SEPARATOR(C) ((C) == ';')
127 #endif
128
129 #ifndef JUMP_TABLES_IN_TEXT_SECTION
130 #define JUMP_TABLES_IN_TEXT_SECTION 0
131 #endif
132
133 /* Nonzero means this function is a leaf function, with no function calls. 
134    This variable exists to be examined in FUNCTION_PROLOGUE
135    and FUNCTION_EPILOGUE.  Always zero, unless set by some action.  */
136 int leaf_function;
137
138 /* Last insn processed by final_scan_insn.  */
139 static rtx debug_insn = 0;
140
141 /* Line number of last NOTE.  */
142 static int last_linenum;
143
144 /* Highest line number in current block.  */
145 static int high_block_linenum;
146
147 /* Likewise for function.  */
148 static int high_function_linenum;
149
150 /* Filename of last NOTE.  */
151 static char *last_filename;
152
153 /* Number of basic blocks seen so far;
154    used if profile_block_flag is set.  */
155 static int count_basic_blocks;
156
157 /* Number of instrumented arcs when profile_arc_flag is set.  */
158 extern int count_instrumented_arcs;
159
160 extern int length_unit_log; /* This is defined in insn-attrtab.c.  */
161
162 /* Nonzero while outputting an `asm' with operands.
163    This means that inconsistencies are the user's fault, so don't abort.
164    The precise value is the insn being output, to pass to error_for_asm.  */
165 static rtx this_is_asm_operands;
166
167 /* Number of operands of this insn, for an `asm' with operands.  */
168 static unsigned int insn_noperands;
169
170 /* Compare optimization flag.  */
171
172 static rtx last_ignored_compare = 0;
173
174 /* Flag indicating this insn is the start of a new basic block.  */
175
176 static int new_block = 1;
177
178 /* All the symbol-blocks (levels of scoping) in the compilation
179    are assigned sequence numbers in order of appearance of the
180    beginnings of the symbol-blocks.  Both final and dbxout do this,
181    and assume that they will both give the same number to each block.
182    Final uses these sequence numbers to generate assembler label names
183    LBBnnn and LBEnnn for the beginning and end of the symbol-block.
184    Dbxout uses the sequence numbers to generate references to the same labels
185    from the dbx debugging information.
186
187    Sdb records this level at the beginning of each function,
188    in order to find the current level when recursing down declarations.
189    It outputs the block beginning and endings
190    at the point in the asm file where the blocks would begin and end.  */
191
192 int next_block_index;
193
194 /* Assign a unique number to each insn that is output.
195    This can be used to generate unique local labels.  */
196
197 static int insn_counter = 0;
198
199 #ifdef HAVE_cc0
200 /* This variable contains machine-dependent flags (defined in tm.h)
201    set and examined by output routines
202    that describe how to interpret the condition codes properly.  */
203
204 CC_STATUS cc_status;
205
206 /* During output of an insn, this contains a copy of cc_status
207    from before the insn.  */
208
209 CC_STATUS cc_prev_status;
210 #endif
211
212 /* Indexed by hardware reg number, is 1 if that register is ever
213    used in the current function.
214
215    In life_analysis, or in stupid_life_analysis, this is set
216    up to record the hard regs used explicitly.  Reload adds
217    in the hard regs used for holding pseudo regs.  Final uses
218    it to generate the code in the function prologue and epilogue
219    to save and restore registers as needed.  */
220
221 char regs_ever_live[FIRST_PSEUDO_REGISTER];
222
223 /* Nonzero means current function must be given a frame pointer.
224    Set in stmt.c if anything is allocated on the stack there.
225    Set in reload1.c if anything is allocated on the stack there.  */
226
227 int frame_pointer_needed;
228
229 /* Assign unique numbers to labels generated for profiling.  */
230
231 int profile_label_no;
232
233 /* Length so far allocated in PENDING_BLOCKS.  */
234
235 static int max_block_depth;
236
237 /* Stack of sequence numbers of symbol-blocks of which we have seen the
238    beginning but not yet the end.  Sequence numbers are assigned at
239    the beginning; this stack allows us to find the sequence number
240    of a block that is ending.  */
241
242 static int *pending_blocks;
243
244 /* Number of elements currently in use in PENDING_BLOCKS.  */
245
246 static int block_depth;
247
248 /* Nonzero if have enabled APP processing of our assembler output.  */
249
250 static int app_on;
251
252 /* If we are outputting an insn sequence, this contains the sequence rtx.
253    Zero otherwise.  */
254
255 rtx final_sequence;
256
257 #ifdef ASSEMBLER_DIALECT
258
259 /* Number of the assembler dialect to use, starting at 0.  */
260 static int dialect_number;
261 #endif
262
263 /* Indexed by line number, nonzero if there is a note for that line.  */
264
265 static char *line_note_exists;
266
267 /* Linked list to hold line numbers for each basic block.  */
268
269 struct bb_list {
270   struct bb_list *next;         /* pointer to next basic block */
271   int line_num;                 /* line number */
272   int file_label_num;           /* LPBC<n> label # for stored filename */
273   int func_label_num;           /* LPBC<n> label # for stored function name */
274 };
275
276 static struct bb_list *bb_head  = 0;            /* Head of basic block list */
277 static struct bb_list **bb_tail = &bb_head;     /* Ptr to store next bb ptr */
278 static int bb_file_label_num    = -1;           /* Current label # for file */
279 static int bb_func_label_num    = -1;           /* Current label # for func */
280
281 /* Linked list to hold the strings for each file and function name output.  */
282
283 struct bb_str {
284   struct bb_str *next;          /* pointer to next string */
285   char *string;                 /* string */
286   int label_num;                /* label number */
287   int length;                   /* string length */
288 };
289
290 extern rtx peephole             PROTO((rtx));
291
292 static struct bb_str *sbb_head  = 0;            /* Head of string list.  */
293 static struct bb_str **sbb_tail = &sbb_head;    /* Ptr to store next bb str */
294 static int sbb_label_num        = 0;            /* Last label used */
295
296 #ifdef HAVE_ATTR_length
297 static int asm_insn_count       PROTO((rtx));
298 #endif
299 static void profile_function    PROTO((FILE *));
300 static void profile_after_prologue PROTO((FILE *));
301 static void add_bb              PROTO((FILE *));
302 static int add_bb_string        PROTO((char *, int));
303 static void output_source_line  PROTO((FILE *, rtx));
304 static rtx walk_alter_subreg    PROTO((rtx));
305 static void output_asm_name     PROTO((void));
306 static void output_operand      PROTO((rtx, int));
307 #ifdef LEAF_REGISTERS
308 static void leaf_renumber_regs  PROTO((rtx));
309 #endif
310 #ifdef HAVE_cc0
311 static int alter_cond           PROTO((rtx));
312 #endif
313
314 extern char *getpwd ();
315 \f
316 /* Initialize data in final at the beginning of a compilation.  */
317
318 void
319 init_final (filename)
320      char *filename;
321 {
322   next_block_index = 2;
323   app_on = 0;
324   max_block_depth = 20;
325   pending_blocks = (int *) xmalloc (20 * sizeof *pending_blocks);
326   final_sequence = 0;
327
328 #ifdef ASSEMBLER_DIALECT
329   dialect_number = ASSEMBLER_DIALECT;
330 #endif
331 }
332
333 /* Called at end of source file,
334    to output the block-profiling table for this entire compilation.  */
335
336 void
337 end_final (filename)
338   const char *filename;
339 {
340   int i;
341
342   if (profile_block_flag || profile_arc_flag)
343     {
344       char name[20];
345       int align = exact_log2 (BIGGEST_ALIGNMENT / BITS_PER_UNIT);
346       int size, rounded;
347       struct bb_list *ptr;
348       struct bb_str *sptr;
349       int long_bytes = LONG_TYPE_SIZE / BITS_PER_UNIT;
350       int pointer_bytes = POINTER_SIZE / BITS_PER_UNIT;
351
352       if (profile_block_flag)
353         size = long_bytes * count_basic_blocks;
354       else
355         size = long_bytes * count_instrumented_arcs;
356       rounded = size;
357
358       rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
359       rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
360                  * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
361
362       data_section ();
363
364       /* Output the main header, of 11 words:
365          0:  1 if this file is initialized, else 0.
366          1:  address of file name (LPBX1).
367          2:  address of table of counts (LPBX2).
368          3:  number of counts in the table.
369          4:  always 0, for compatibility with Sun.
370
371          The following are GNU extensions:
372
373          5:  address of table of start addrs of basic blocks (LPBX3).
374          6:  Number of bytes in this header.
375          7:  address of table of function names (LPBX4).
376          8:  address of table of line numbers (LPBX5) or 0.
377          9:  address of table of file names (LPBX6) or 0.
378         10:  space reserved for basic block profiling.  */
379
380       ASM_OUTPUT_ALIGN (asm_out_file, align);
381
382       ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 0);
383       /* zero word */
384       assemble_integer (const0_rtx, long_bytes, 1);
385
386       /* address of filename */
387       ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 1);
388       assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes, 1);
389
390       /* address of count table */
391       ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 2);
392       assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes, 1);
393
394       /* count of the # of basic blocks or # of instrumented arcs */
395       if (profile_block_flag)
396         assemble_integer (GEN_INT (count_basic_blocks), long_bytes, 1);
397       else
398         assemble_integer (GEN_INT (count_instrumented_arcs), long_bytes,
399                           1);
400
401       /* zero word (link field) */
402       assemble_integer (const0_rtx, pointer_bytes, 1);
403
404       /* address of basic block start address table */
405       if (profile_block_flag)
406         {
407           ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
408           assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes,
409                             1);
410         }
411       else
412         assemble_integer (const0_rtx, pointer_bytes, 1);
413
414       /* byte count for extended structure.  */
415       assemble_integer (GEN_INT (10 * UNITS_PER_WORD), long_bytes, 1);
416
417       /* address of function name table */
418       if (profile_block_flag)
419         {
420           ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 4);
421           assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes,
422                             1);
423         }
424       else
425         assemble_integer (const0_rtx, pointer_bytes, 1);
426
427       /* address of line number and filename tables if debugging.  */
428       if (write_symbols != NO_DEBUG && profile_block_flag)
429         {
430           ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 5);
431           assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes, 1);
432           ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 6);
433           assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes, 1);
434         }
435       else
436         {
437           assemble_integer (const0_rtx, pointer_bytes, 1);
438           assemble_integer (const0_rtx, pointer_bytes, 1);
439         }
440
441       /* space for extension ptr (link field) */
442       assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
443
444       /* Output the file name changing the suffix to .d for Sun tcov
445          compatibility.  */
446       ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 1);
447       {
448         char *cwd = getpwd ();
449         int len = strlen (filename) + strlen (cwd) + 1;
450         char *data_file = (char *) alloca (len + 4);
451
452         strcpy (data_file, cwd);
453         strcat (data_file, "/");
454         strcat (data_file, filename);
455         strip_off_ending (data_file, len);
456         if (profile_block_flag)
457           strcat (data_file, ".d");
458         else
459           strcat (data_file, ".da");
460         assemble_string (data_file, strlen (data_file) + 1);
461       }
462
463       /* Make space for the table of counts.  */
464       if (size == 0)
465         {
466           /* Realign data section.  */
467           ASM_OUTPUT_ALIGN (asm_out_file, align);
468           ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 2);
469           if (size != 0)
470             assemble_zeros (size);
471         }
472       else
473         {
474           ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 2);
475 #ifdef ASM_OUTPUT_SHARED_LOCAL
476           if (flag_shared_data)
477             ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
478           else
479 #endif
480 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
481             ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
482                                               BIGGEST_ALIGNMENT);
483 #else
484 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
485             ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size,
486                                       BIGGEST_ALIGNMENT);
487 #else
488             ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
489 #endif
490 #endif
491         }
492
493       /* Output any basic block strings */
494       if (profile_block_flag)
495         {
496           readonly_data_section ();
497           if (sbb_head)
498             {
499               ASM_OUTPUT_ALIGN (asm_out_file, align);
500               for (sptr = sbb_head; sptr != 0; sptr = sptr->next)
501                 {
502                   ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBC",
503                                              sptr->label_num);
504                   assemble_string (sptr->string, sptr->length);
505                 }
506             }
507         }
508
509       /* Output the table of addresses.  */
510       if (profile_block_flag)
511         {
512           /* Realign in new section */
513           ASM_OUTPUT_ALIGN (asm_out_file, align);
514           ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 3);
515           for (i = 0; i < count_basic_blocks; i++)
516             {
517               ASM_GENERATE_INTERNAL_LABEL (name, "LPB", i);
518               assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
519                                 pointer_bytes, 1);
520             }
521         }
522
523       /* Output the table of function names.  */
524       if (profile_block_flag)
525         {
526           ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 4);
527           for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
528             {
529               if (ptr->func_label_num >= 0)
530                 {
531                   ASM_GENERATE_INTERNAL_LABEL (name, "LPBC",
532                                                ptr->func_label_num);
533                   assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
534                                     pointer_bytes, 1);
535                 }
536               else
537                 assemble_integer (const0_rtx, pointer_bytes, 1);
538             }
539
540           for ( ; i < count_basic_blocks; i++)
541             assemble_integer (const0_rtx, pointer_bytes, 1);
542         }
543
544       if (write_symbols != NO_DEBUG && profile_block_flag)
545         {
546           /* Output the table of line numbers.  */
547           ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 5);
548           for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
549             assemble_integer (GEN_INT (ptr->line_num), long_bytes, 1);
550
551           for ( ; i < count_basic_blocks; i++)
552             assemble_integer (const0_rtx, long_bytes, 1);
553
554           /* Output the table of file names.  */
555           ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 6);
556           for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
557             {
558               if (ptr->file_label_num >= 0)
559                 {
560                   ASM_GENERATE_INTERNAL_LABEL (name, "LPBC",
561                                                ptr->file_label_num);
562                   assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
563                                     pointer_bytes, 1);
564                 }
565               else
566                 assemble_integer (const0_rtx, pointer_bytes, 1);
567             }
568
569           for ( ; i < count_basic_blocks; i++)
570             assemble_integer (const0_rtx, pointer_bytes, 1);
571         }
572
573       /* End with the address of the table of addresses,
574          so we can find it easily, as the last word in the file's text.  */
575       if (profile_block_flag)
576         {
577           ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
578           assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes,
579                             1);
580         }
581     }
582 }
583
584 /* Enable APP processing of subsequent output.
585    Used before the output from an `asm' statement.  */
586
587 void
588 app_enable ()
589 {
590   if (! app_on)
591     {
592       fputs (ASM_APP_ON, asm_out_file);
593       app_on = 1;
594     }
595 }
596
597 /* Disable APP processing of subsequent output.
598    Called from varasm.c before most kinds of output.  */
599
600 void
601 app_disable ()
602 {
603   if (app_on)
604     {
605       fputs (ASM_APP_OFF, asm_out_file);
606       app_on = 0;
607     }
608 }
609 \f
610 /* Return the number of slots filled in the current 
611    delayed branch sequence (we don't count the insn needing the
612    delay slot).   Zero if not in a delayed branch sequence.  */
613
614 #ifdef DELAY_SLOTS
615 int
616 dbr_sequence_length ()
617 {
618   if (final_sequence != 0)
619     return XVECLEN (final_sequence, 0) - 1;
620   else
621     return 0;
622 }
623 #endif
624 \f
625 /* The next two pages contain routines used to compute the length of an insn
626    and to shorten branches.  */
627
628 /* Arrays for insn lengths, and addresses.  The latter is referenced by
629    `insn_current_length'.  */
630
631 static short *insn_lengths;
632 int *insn_addresses;
633
634 /* Address of insn being processed.  Used by `insn_current_length'.  */
635 int insn_current_address;
636
637 /* Address of insn being processed in previous iteration.  */
638 int insn_last_address;
639
640 /* konwn invariant alignment of insn being processed.  */
641 int insn_current_align;
642
643 /* After shorten_branches, for any insn, uid_align[INSN_UID (insn)]
644    gives the next following alignment insn that increases the known
645    alignment, or NULL_RTX if there is no such insn.
646    For any alignment obtained this way, we can again index uid_align with
647    its uid to obtain the next following align that in turn increases the
648    alignment, till we reach NULL_RTX; the sequence obtained this way
649    for each insn we'll call the alignment chain of this insn in the following
650    comments.  */
651
652 struct label_alignment {
653   short alignment;
654   short max_skip;
655 };
656
657 static rtx *uid_align;
658 static int *uid_shuid;
659 static struct label_alignment *label_align;
660
661 /* Indicate that branch shortening hasn't yet been done.  */
662
663 void
664 init_insn_lengths ()
665 {
666   if (label_align)
667     {
668       free (label_align);
669       label_align = 0;
670     }
671   if (uid_shuid)
672     {
673       free (uid_shuid);
674       uid_shuid = 0;
675     }
676   if (insn_lengths)
677     {
678       free (insn_lengths);
679       insn_lengths = 0;
680     }
681   if (insn_addresses)
682     {
683       free (insn_addresses);
684       insn_addresses = 0;
685     }
686   if (uid_align)
687     {
688       free (uid_align);
689       uid_align = 0;
690     }
691 }
692
693 /* Obtain the current length of an insn.  If branch shortening has been done,
694    get its actual length.  Otherwise, get its maximum length.  */
695
696 int
697 get_attr_length (insn)
698      rtx insn;
699 {
700 #ifdef HAVE_ATTR_length
701   rtx body;
702   int i;
703   int length = 0;
704
705   if (insn_lengths)
706     return insn_lengths[INSN_UID (insn)];
707   else
708     switch (GET_CODE (insn))
709       {
710       case NOTE:
711       case BARRIER:
712       case CODE_LABEL:
713         return 0;
714
715       case CALL_INSN:
716         length = insn_default_length (insn);
717         break;
718
719       case JUMP_INSN:
720         body = PATTERN (insn);
721         if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
722           {
723             /* Alignment is machine-dependent and should be handled by
724                ADDR_VEC_ALIGN.  */
725           }
726         else
727           length = insn_default_length (insn);
728         break;
729
730       case INSN:
731         body = PATTERN (insn);
732         if (GET_CODE (body) == USE || GET_CODE (body) == CLOBBER)
733           return 0;
734
735         else if (GET_CODE (body) == ASM_INPUT || asm_noperands (body) >= 0)
736           length = asm_insn_count (body) * insn_default_length (insn);
737         else if (GET_CODE (body) == SEQUENCE)
738           for (i = 0; i < XVECLEN (body, 0); i++)
739             length += get_attr_length (XVECEXP (body, 0, i));
740         else
741           length = insn_default_length (insn);
742         break;
743
744       default:
745         break;
746       }
747
748 #ifdef ADJUST_INSN_LENGTH
749   ADJUST_INSN_LENGTH (insn, length);
750 #endif
751   return length;
752 #else /* not HAVE_ATTR_length */
753   return 0;
754 #endif /* not HAVE_ATTR_length */
755 }
756 \f
757 /* Code to handle alignment inside shorten_branches.  */
758
759 /* Here is an explanation how the algorithm in align_fuzz can give
760    proper results:
761
762    Call a sequence of instructions beginning with alignment point X
763    and continuing until the next alignment point `block X'.  When `X'
764    is used in an expression, it means the alignment value of the 
765    alignment point.
766    
767    Call the distance between the start of the first insn of block X, and
768    the end of the last insn of block X `IX', for the `inner size of X'.
769    This is clearly the sum of the instruction lengths.
770    
771    Likewise with the next alignment-delimited block following X, which we
772    shall call block Y.
773    
774    Call the distance between the start of the first insn of block X, and
775    the start of the first insn of block Y `OX', for the `outer size of X'.
776    
777    The estimated padding is then OX - IX.
778    
779    OX can be safely estimated as
780    
781            if (X >= Y)
782                    OX = round_up(IX, Y)
783            else
784                    OX = round_up(IX, X) + Y - X
785    
786    Clearly est(IX) >= real(IX), because that only depends on the
787    instruction lengths, and those being overestimated is a given.
788    
789    Clearly round_up(foo, Z) >= round_up(bar, Z) if foo >= bar, so
790    we needn't worry about that when thinking about OX.
791    
792    When X >= Y, the alignment provided by Y adds no uncertainty factor
793    for branch ranges starting before X, so we can just round what we have.
794    But when X < Y, we don't know anything about the, so to speak,
795    `middle bits', so we have to assume the worst when aligning up from an
796    address mod X to one mod Y, which is Y - X.  */
797
798 #ifndef LABEL_ALIGN
799 #define LABEL_ALIGN(LABEL) 0
800 #endif
801
802 #ifndef LABEL_ALIGN_MAX_SKIP
803 #define LABEL_ALIGN_MAX_SKIP 0
804 #endif
805
806 #ifndef LOOP_ALIGN
807 #define LOOP_ALIGN(LABEL) 0
808 #endif
809
810 #ifndef LOOP_ALIGN_MAX_SKIP
811 #define LOOP_ALIGN_MAX_SKIP 0
812 #endif
813
814 #ifndef LABEL_ALIGN_AFTER_BARRIER
815 #define LABEL_ALIGN_AFTER_BARRIER(LABEL) 0
816 #endif
817
818 #ifndef LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP
819 #define LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP 0
820 #endif
821
822 #ifndef ADDR_VEC_ALIGN
823 int
824 final_addr_vec_align (addr_vec)
825      rtx addr_vec;
826 {
827   int align = exact_log2 (GET_MODE_SIZE (GET_MODE (PATTERN (addr_vec))));
828
829   if (align > BIGGEST_ALIGNMENT / BITS_PER_UNIT)
830     align = BIGGEST_ALIGNMENT / BITS_PER_UNIT;
831   return align;
832
833 }
834 #define ADDR_VEC_ALIGN(ADDR_VEC) final_addr_vec_align (ADDR_VEC)
835 #endif
836
837 #ifndef INSN_LENGTH_ALIGNMENT
838 #define INSN_LENGTH_ALIGNMENT(INSN) length_unit_log
839 #endif
840
841 #define INSN_SHUID(INSN) (uid_shuid[INSN_UID (INSN)])
842
843 static int min_labelno, max_labelno;
844
845 #define LABEL_TO_ALIGNMENT(LABEL) \
846   (label_align[CODE_LABEL_NUMBER (LABEL) - min_labelno].alignment)
847
848 #define LABEL_TO_MAX_SKIP(LABEL) \
849   (label_align[CODE_LABEL_NUMBER (LABEL) - min_labelno].max_skip)
850
851 /* For the benefit of port specific code do this also as a function.  */
852 int
853 label_to_alignment (label)
854      rtx label;
855 {
856   return LABEL_TO_ALIGNMENT (label);
857 }
858
859 #ifdef HAVE_ATTR_length
860 /* The differences in addresses
861    between a branch and its target might grow or shrink depending on
862    the alignment the start insn of the range (the branch for a forward
863    branch or the label for a backward branch) starts out on; if these
864    differences are used naively, they can even oscillate infinitely.
865    We therefore want to compute a 'worst case' address difference that
866    is independent of the alignment the start insn of the range end
867    up on, and that is at least as large as the actual difference.
868    The function align_fuzz calculates the amount we have to add to the
869    naively computed difference, by traversing the part of the alignment
870    chain of the start insn of the range that is in front of the end insn
871    of the range, and considering for each alignment the maximum amount
872    that it might contribute to a size increase.
873
874    For casesi tables, we also want to know worst case minimum amounts of
875    address difference, in case a machine description wants to introduce
876    some common offset that is added to all offsets in a table.
877    For this purpose, align_fuzz with a growth argument of 0 comuptes the
878    appropriate adjustment.  */
879
880
881 /* Compute the maximum delta by which the difference of the addresses of
882    START and END might grow / shrink due to a different address for start
883    which changes the size of alignment insns between START and END.
884    KNOWN_ALIGN_LOG is the alignment known for START.
885    GROWTH should be ~0 if the objective is to compute potential code size
886    increase, and 0 if the objective is to compute potential shrink.
887    The return value is undefined for any other value of GROWTH.  */
888 int
889 align_fuzz (start, end, known_align_log, growth)
890      rtx start, end;
891      int known_align_log;
892      unsigned growth;
893 {
894   int uid = INSN_UID (start);
895   rtx align_label;
896   int known_align = 1 << known_align_log;
897   int end_shuid = INSN_SHUID (end);
898   int fuzz = 0;
899
900   for (align_label = uid_align[uid]; align_label; align_label = uid_align[uid])
901     {
902       int align_addr, new_align;
903
904       uid = INSN_UID (align_label);
905       align_addr = insn_addresses[uid] - insn_lengths[uid];
906       if (uid_shuid[uid] > end_shuid)
907         break;
908       known_align_log = LABEL_TO_ALIGNMENT (align_label);
909       new_align = 1 << known_align_log;
910       if (new_align < known_align)
911         continue;
912       fuzz += (-align_addr ^ growth) & (new_align - known_align);
913       known_align = new_align;
914     }
915   return fuzz;
916 }
917
918 /* Compute a worst-case reference address of a branch so that it
919    can be safely used in the presence of aligned labels.  Since the
920    size of the branch itself is unknown, the size of the branch is
921    not included in the range.  I.e. for a forward branch, the reference
922    address is the end address of the branch as known from the previous
923    branch shortening pass, minus a value to account for possible size
924    increase due to alignment.  For a backward branch, it is the start
925    address of the branch as known from the current pass, plus a value
926    to account for possible size increase due to alignment.
927    NB.: Therefore, the maximum offset allowed for backward branches needs
928    to exclude the branch size.  */
929 int
930 insn_current_reference_address (branch)
931      rtx branch;
932 {
933   rtx dest;
934   rtx seq = NEXT_INSN (PREV_INSN (branch));
935   int seq_uid = INSN_UID (seq);
936   if (GET_CODE (branch) != JUMP_INSN)
937     /* This can happen for example on the PA; the objective is to know the
938        offset to address something in front of the start of the function.
939        Thus, we can treat it like a backward branch.
940        We assume here that FUNCTION_BOUNDARY / BITS_PER_UNIT is larger than
941        any alignment we'd encounter, so we skip the call to align_fuzz.  */
942     return insn_current_address;
943   dest = JUMP_LABEL (branch);
944   /* BRANCH has no proper alignment chain set, so use SEQ.  */
945   if (INSN_SHUID (branch) < INSN_SHUID (dest))
946     {
947       /* Forward branch. */
948       return (insn_last_address + insn_lengths[seq_uid]
949               - align_fuzz (seq, dest, length_unit_log, ~0));
950     }
951   else
952     {
953       /* Backward branch. */
954       return (insn_current_address
955               + align_fuzz (dest, seq, length_unit_log, ~0));
956     }
957 }
958 #endif /* HAVE_ATTR_length */
959 \f
960 /* Make a pass over all insns and compute their actual lengths by shortening
961    any branches of variable length if possible.  */
962
963 /* Give a default value for the lowest address in a function.  */
964
965 #ifndef FIRST_INSN_ADDRESS
966 #define FIRST_INSN_ADDRESS 0
967 #endif
968
969 /* shorten_branches might be called multiple times:  for example, the SH
970    port splits out-of-range conditional branches in MACHINE_DEPENDENT_REORG.
971    In order to do this, it needs proper length information, which it obtains
972    by calling shorten_branches.  This cannot be collapsed with
973    shorten_branches itself into a single pass unless we also want to intergate
974    reorg.c, since the branch splitting exposes new instructions with delay
975    slots.  */
976
977 void
978 shorten_branches (first)
979      rtx first;
980 {
981   rtx insn;
982   int max_uid;
983   int i;
984   int max_log;
985   int max_skip;
986 #ifdef HAVE_ATTR_length
987 #define MAX_CODE_ALIGN 16
988   rtx seq;
989   int something_changed = 1;
990   char *varying_length;
991   rtx body;
992   int uid;
993   rtx align_tab[MAX_CODE_ALIGN];
994
995   /* In order to make sure that all instructions have valid length info,
996      we must split them before we compute the address/length info.  */
997
998   for (insn = NEXT_INSN (first); insn; insn = NEXT_INSN (insn))
999     if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
1000       {
1001         rtx old = insn;
1002         insn = try_split (PATTERN (old), old, 1);
1003         /* When not optimizing, the old insn will be still left around
1004            with only the 'deleted' bit set.  Transform it into a note
1005            to avoid confusion of subsequent processing.  */
1006         if (INSN_DELETED_P (old))
1007           {
1008             PUT_CODE (old , NOTE);
1009             NOTE_LINE_NUMBER (old) = NOTE_INSN_DELETED;
1010             NOTE_SOURCE_FILE (old) = 0;
1011           }
1012       }
1013 #endif
1014
1015   /* We must do some computations even when not actually shortening, in
1016      order to get the alignment information for the labels.  */
1017
1018   init_insn_lengths ();
1019
1020   /* Compute maximum UID and allocate label_align / uid_shuid.  */
1021   max_uid = get_max_uid ();
1022
1023   max_labelno = max_label_num ();
1024   min_labelno = get_first_label_num ();
1025   label_align = (struct label_alignment *) xmalloc (
1026     (max_labelno - min_labelno + 1) * sizeof (struct label_alignment));
1027   bzero ((char *) label_align,
1028     (max_labelno - min_labelno + 1) * sizeof (struct label_alignment));
1029
1030   uid_shuid = (int *) xmalloc (max_uid * sizeof *uid_shuid);
1031
1032   /* Initialize label_align and set up uid_shuid to be strictly
1033      monotonically rising with insn order.  */
1034   /* We use max_log here to keep track of the maximum alignment we want to
1035      impose on the next CODE_LABEL (or the current one if we are processing
1036      the CODE_LABEL itself).  */
1037      
1038   max_log = 0;
1039   max_skip = 0;
1040
1041   for (insn = get_insns (), i = 1; insn; insn = NEXT_INSN (insn))
1042     {
1043       int log;
1044
1045       INSN_SHUID (insn) = i++;
1046       if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
1047         {
1048           /* reorg might make the first insn of a loop being run once only,
1049              and delete the label in front of it.  Then we want to apply
1050              the loop alignment to the new label created by reorg, which
1051              is separated by the former loop start insn from the
1052              NOTE_INSN_LOOP_BEG.  */
1053         }
1054       else if (GET_CODE (insn) == CODE_LABEL)
1055         {
1056           rtx next;
1057
1058           log = LABEL_ALIGN (insn);
1059           if (max_log < log)
1060             {
1061               max_log = log;
1062               max_skip = LABEL_ALIGN_MAX_SKIP;
1063             }
1064           next = NEXT_INSN (insn);
1065           /* ADDR_VECs only take room if read-only data goes into the text
1066              section.  */
1067           if (JUMP_TABLES_IN_TEXT_SECTION
1068 #if !defined(READONLY_DATA_SECTION)
1069               || 1
1070 #endif
1071               )
1072             if (next && GET_CODE (next) == JUMP_INSN)
1073               {
1074                 rtx nextbody = PATTERN (next);
1075                 if (GET_CODE (nextbody) == ADDR_VEC
1076                     || GET_CODE (nextbody) == ADDR_DIFF_VEC)
1077                   {
1078                     log = ADDR_VEC_ALIGN (next);
1079                     if (max_log < log)
1080                       {
1081                         max_log = log;
1082                         max_skip = LABEL_ALIGN_MAX_SKIP;
1083                       }
1084                   }
1085               }
1086           LABEL_TO_ALIGNMENT (insn) = max_log;
1087           LABEL_TO_MAX_SKIP (insn) = max_skip;
1088           max_log = 0;
1089           max_skip = 0;
1090         }
1091       else if (GET_CODE (insn) == BARRIER)
1092         {
1093           rtx label;
1094
1095           for (label = insn; label && GET_RTX_CLASS (GET_CODE (label)) != 'i';
1096                label = NEXT_INSN (label))
1097             if (GET_CODE (label) == CODE_LABEL)
1098               {
1099                 log = LABEL_ALIGN_AFTER_BARRIER (insn);
1100                 if (max_log < log)
1101                   {
1102                     max_log = log;
1103                     max_skip = LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP;
1104                   }
1105                 break;
1106               }
1107         }
1108       /* Again, we allow NOTE_INSN_LOOP_BEG - INSN - CODE_LABEL
1109          sequences in order to handle reorg output efficiently.  */
1110       else if (GET_CODE (insn) == NOTE
1111                && NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
1112         {
1113           rtx label;
1114
1115           for (label = insn; label; label = NEXT_INSN (label))
1116             if (GET_CODE (label) == CODE_LABEL)
1117               {
1118                 log = LOOP_ALIGN (insn);
1119                 if (max_log < log)
1120                   {
1121                     max_log = log;
1122                     max_skip = LOOP_ALIGN_MAX_SKIP;
1123                   }
1124                 break;
1125               }
1126         }
1127       else
1128         continue;
1129     }
1130 #ifdef HAVE_ATTR_length
1131
1132   /* Allocate the rest of the arrays.  */
1133   insn_lengths = (short *) xmalloc (max_uid * sizeof (short));
1134   insn_addresses = (int *) xmalloc (max_uid * sizeof (int));
1135   /* Syntax errors can lead to labels being outside of the main insn stream.
1136      Initialize insn_addresses, so that we get reproducible results.  */
1137   bzero ((char *)insn_addresses, max_uid * sizeof *insn_addresses);
1138   uid_align = (rtx *) xmalloc (max_uid * sizeof *uid_align);
1139
1140   varying_length = (char *) xmalloc (max_uid * sizeof (char));
1141
1142   bzero (varying_length, max_uid);
1143
1144   /* Initialize uid_align.  We scan instructions
1145      from end to start, and keep in align_tab[n] the last seen insn
1146      that does an alignment of at least n+1, i.e. the successor
1147      in the alignment chain for an insn that does / has a known
1148      alignment of n.  */
1149
1150   bzero ((char *) uid_align, max_uid * sizeof *uid_align);
1151
1152   for (i = MAX_CODE_ALIGN; --i >= 0; )
1153     align_tab[i] = NULL_RTX;
1154   seq = get_last_insn ();
1155   for (; seq; seq = PREV_INSN (seq))
1156     {
1157       int uid = INSN_UID (seq);
1158       int log;
1159       log = (GET_CODE (seq) == CODE_LABEL ? LABEL_TO_ALIGNMENT (seq) : 0);
1160       uid_align[uid] = align_tab[0];
1161       if (log)
1162         {
1163           /* Found an alignment label.  */
1164           uid_align[uid] = align_tab[log];
1165           for (i = log - 1; i >= 0; i--)
1166             align_tab[i] = seq;
1167         }
1168     }
1169 #ifdef CASE_VECTOR_SHORTEN_MODE
1170   if (optimize)
1171     {
1172       /* Look for ADDR_DIFF_VECs, and initialize their minimum and maximum
1173          label fields.  */
1174
1175       int min_shuid = INSN_SHUID (get_insns ()) - 1;
1176       int max_shuid = INSN_SHUID (get_last_insn ()) + 1;
1177       int rel;
1178
1179       for (insn = first; insn != 0; insn = NEXT_INSN (insn))
1180         {
1181           rtx min_lab = NULL_RTX, max_lab = NULL_RTX, pat;
1182           int len, i, min, max, insn_shuid;
1183           int min_align;
1184           addr_diff_vec_flags flags;
1185
1186           if (GET_CODE (insn) != JUMP_INSN
1187               || GET_CODE (PATTERN (insn)) != ADDR_DIFF_VEC)
1188             continue;
1189           pat = PATTERN (insn);
1190           len = XVECLEN (pat, 1);
1191           if (len <= 0)
1192             abort ();
1193           min_align = MAX_CODE_ALIGN;
1194           for (min = max_shuid, max = min_shuid, i = len - 1; i >= 0; i--)
1195             {
1196               rtx lab = XEXP (XVECEXP (pat, 1, i), 0);
1197               int shuid = INSN_SHUID (lab);
1198               if (shuid < min)
1199                 {
1200                   min = shuid;
1201                   min_lab = lab;
1202                 }
1203               if (shuid > max)
1204                 {
1205                   max = shuid;
1206                   max_lab = lab;
1207                 }
1208               if (min_align > LABEL_TO_ALIGNMENT (lab))
1209                 min_align = LABEL_TO_ALIGNMENT (lab);
1210             }
1211           XEXP (pat, 2) = gen_rtx_LABEL_REF (VOIDmode, min_lab);
1212           XEXP (pat, 3) = gen_rtx_LABEL_REF (VOIDmode, max_lab);
1213           insn_shuid = INSN_SHUID (insn);
1214           rel = INSN_SHUID (XEXP (XEXP (pat, 0), 0));
1215           flags.min_align = min_align;
1216           flags.base_after_vec = rel > insn_shuid;
1217           flags.min_after_vec  = min > insn_shuid;
1218           flags.max_after_vec  = max > insn_shuid;
1219           flags.min_after_base = min > rel;
1220           flags.max_after_base = max > rel;
1221           ADDR_DIFF_VEC_FLAGS (pat) = flags;
1222         }
1223     }
1224 #endif /* CASE_VECTOR_SHORTEN_MODE */
1225
1226
1227   /* Compute initial lengths, addresses, and varying flags for each insn.  */
1228   for (insn_current_address = FIRST_INSN_ADDRESS, insn = first;
1229        insn != 0;
1230        insn_current_address += insn_lengths[uid], insn = NEXT_INSN (insn))
1231     {
1232       uid = INSN_UID (insn);
1233
1234       insn_lengths[uid] = 0;
1235
1236       if (GET_CODE (insn) == CODE_LABEL)
1237         {
1238           int log = LABEL_TO_ALIGNMENT (insn);
1239           if (log)
1240             {
1241               int align = 1 << log;
1242               int new_address = (insn_current_address + align - 1) & -align;
1243               insn_lengths[uid] = new_address - insn_current_address;
1244               insn_current_address = new_address;
1245             }
1246         }
1247
1248       insn_addresses[uid] = insn_current_address;
1249       
1250       if (GET_CODE (insn) == NOTE || GET_CODE (insn) == BARRIER
1251           || GET_CODE (insn) == CODE_LABEL)
1252         continue;
1253       if (INSN_DELETED_P (insn))
1254         continue;
1255
1256       body = PATTERN (insn);
1257       if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
1258         {
1259           /* This only takes room if read-only data goes into the text
1260              section.  */
1261           if (JUMP_TABLES_IN_TEXT_SECTION
1262 #if !defined(READONLY_DATA_SECTION)
1263               || 1
1264 #endif
1265               )
1266             insn_lengths[uid] = (XVECLEN (body,
1267                                           GET_CODE (body) == ADDR_DIFF_VEC)
1268                                  * GET_MODE_SIZE (GET_MODE (body)));
1269           /* Alignment is handled by ADDR_VEC_ALIGN.  */
1270         }
1271       else if (asm_noperands (body) >= 0)
1272         insn_lengths[uid] = asm_insn_count (body) * insn_default_length (insn);
1273       else if (GET_CODE (body) == SEQUENCE)
1274         {
1275           int i;
1276           int const_delay_slots;
1277 #ifdef DELAY_SLOTS
1278           const_delay_slots = const_num_delay_slots (XVECEXP (body, 0, 0));
1279 #else
1280           const_delay_slots = 0;
1281 #endif
1282           /* Inside a delay slot sequence, we do not do any branch shortening
1283              if the shortening could change the number of delay slots
1284              of the branch.  */
1285           for (i = 0; i < XVECLEN (body, 0); i++)
1286             {
1287               rtx inner_insn = XVECEXP (body, 0, i);
1288               int inner_uid = INSN_UID (inner_insn);
1289               int inner_length;
1290
1291               if (asm_noperands (PATTERN (XVECEXP (body, 0, i))) >= 0)
1292                 inner_length = (asm_insn_count (PATTERN (inner_insn))
1293                                 * insn_default_length (inner_insn));
1294               else
1295                 inner_length = insn_default_length (inner_insn);
1296               
1297               insn_lengths[inner_uid] = inner_length;
1298               if (const_delay_slots)
1299                 {
1300                   if ((varying_length[inner_uid]
1301                        = insn_variable_length_p (inner_insn)) != 0)
1302                     varying_length[uid] = 1;
1303                   insn_addresses[inner_uid] = (insn_current_address +
1304                                                insn_lengths[uid]);
1305                 }
1306               else
1307                 varying_length[inner_uid] = 0;
1308               insn_lengths[uid] += inner_length;
1309             }
1310         }
1311       else if (GET_CODE (body) != USE && GET_CODE (body) != CLOBBER)
1312         {
1313           insn_lengths[uid] = insn_default_length (insn);
1314           varying_length[uid] = insn_variable_length_p (insn);
1315         }
1316
1317       /* If needed, do any adjustment.  */
1318 #ifdef ADJUST_INSN_LENGTH
1319       ADJUST_INSN_LENGTH (insn, insn_lengths[uid]);
1320 #endif
1321     }
1322
1323   /* Now loop over all the insns finding varying length insns.  For each,
1324      get the current insn length.  If it has changed, reflect the change.
1325      When nothing changes for a full pass, we are done.  */
1326
1327   while (something_changed)
1328     {
1329       something_changed = 0;
1330       insn_current_align = MAX_CODE_ALIGN - 1;
1331       for (insn_current_address = FIRST_INSN_ADDRESS, insn = first;
1332            insn != 0;
1333            insn = NEXT_INSN (insn))
1334         {
1335           int new_length;
1336 #ifdef ADJUST_INSN_LENGTH
1337           int tmp_length;
1338 #endif
1339           int length_align;
1340
1341           uid = INSN_UID (insn);
1342
1343           if (GET_CODE (insn) == CODE_LABEL)
1344             {
1345               int log = LABEL_TO_ALIGNMENT (insn);
1346               if (log > insn_current_align)
1347                 {
1348                   int align = 1 << log;
1349                   int new_address= (insn_current_address + align - 1) & -align;
1350                   insn_lengths[uid] = new_address - insn_current_address;
1351                   insn_current_align = log;
1352                   insn_current_address = new_address;
1353                 }
1354               else
1355                 insn_lengths[uid] = 0;
1356               insn_addresses[uid] = insn_current_address;
1357               continue;
1358             }
1359
1360           length_align = INSN_LENGTH_ALIGNMENT (insn);
1361           if (length_align < insn_current_align)
1362             insn_current_align = length_align;
1363
1364           insn_last_address = insn_addresses[uid];
1365           insn_addresses[uid] = insn_current_address;
1366
1367 #ifdef CASE_VECTOR_SHORTEN_MODE
1368           if (optimize && GET_CODE (insn) == JUMP_INSN
1369               && GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC)
1370             {
1371               rtx body = PATTERN (insn);
1372               int old_length = insn_lengths[uid];
1373               rtx rel_lab = XEXP (XEXP (body, 0), 0);
1374               rtx min_lab = XEXP (XEXP (body, 2), 0);
1375               rtx max_lab = XEXP (XEXP (body, 3), 0);
1376               addr_diff_vec_flags flags = ADDR_DIFF_VEC_FLAGS (body);
1377               int rel_addr = insn_addresses[INSN_UID (rel_lab)];
1378               int min_addr = insn_addresses[INSN_UID (min_lab)];
1379               int max_addr = insn_addresses[INSN_UID (max_lab)];
1380               rtx prev;
1381               int rel_align = 0;
1382
1383               /* Try to find a known alignment for rel_lab.  */
1384               for (prev = rel_lab;
1385                    prev
1386                    && ! insn_lengths[INSN_UID (prev)]
1387                    && ! (varying_length[INSN_UID (prev)] & 1);
1388                    prev = PREV_INSN (prev))
1389                 if (varying_length[INSN_UID (prev)] & 2)
1390                   {
1391                     rel_align = LABEL_TO_ALIGNMENT (prev);
1392                     break;
1393                   }
1394
1395               /* See the comment on addr_diff_vec_flags in rtl.h for the
1396                  meaning of the flags values.  base: REL_LAB   vec: INSN  */
1397               /* Anything after INSN has still addresses from the last
1398                  pass; adjust these so that they reflect our current
1399                  estimate for this pass.  */
1400               if (flags.base_after_vec)
1401                 rel_addr += insn_current_address - insn_last_address;
1402               if (flags.min_after_vec)
1403                 min_addr += insn_current_address - insn_last_address;
1404               if (flags.max_after_vec)
1405                 max_addr += insn_current_address - insn_last_address;
1406               /* We want to know the worst case, i.e. lowest possible value
1407                  for the offset of MIN_LAB.  If MIN_LAB is after REL_LAB,
1408                  its offset is positive, and we have to be wary of code shrink;
1409                  otherwise, it is negative, and we have to be vary of code
1410                  size increase.  */
1411               if (flags.min_after_base)
1412                 {
1413                   /* If INSN is between REL_LAB and MIN_LAB, the size
1414                      changes we are about to make can change the alignment
1415                      within the observed offset, therefore we have to break
1416                      it up into two parts that are independent.  */
1417                   if (! flags.base_after_vec && flags.min_after_vec)
1418                     {
1419                       min_addr -= align_fuzz (rel_lab, insn, rel_align, 0);
1420                       min_addr -= align_fuzz (insn, min_lab, 0, 0);
1421                     }
1422                   else
1423                     min_addr -= align_fuzz (rel_lab, min_lab, rel_align, 0);
1424                 }
1425               else
1426                 {
1427                   if (flags.base_after_vec && ! flags.min_after_vec)
1428                     {
1429                       min_addr -= align_fuzz (min_lab, insn, 0, ~0);
1430                       min_addr -= align_fuzz (insn, rel_lab, 0, ~0);
1431                     }
1432                   else
1433                     min_addr -= align_fuzz (min_lab, rel_lab, 0, ~0);
1434                 }
1435               /* Likewise, determine the highest lowest possible value
1436                  for the offset of MAX_LAB.  */
1437               if (flags.max_after_base)
1438                 {
1439                   if (! flags.base_after_vec && flags.max_after_vec)
1440                     {
1441                       max_addr += align_fuzz (rel_lab, insn, rel_align, ~0);
1442                       max_addr += align_fuzz (insn, max_lab, 0, ~0);
1443                     }
1444                   else
1445                     max_addr += align_fuzz (rel_lab, max_lab, rel_align, ~0);
1446                 }
1447               else
1448                 {
1449                   if (flags.base_after_vec && ! flags.max_after_vec)
1450                     {
1451                       max_addr += align_fuzz (max_lab, insn, 0, 0);
1452                       max_addr += align_fuzz (insn, rel_lab, 0, 0);
1453                     }
1454                   else
1455                     max_addr += align_fuzz (max_lab, rel_lab, 0, 0);
1456                 }
1457               PUT_MODE (body, CASE_VECTOR_SHORTEN_MODE (min_addr - rel_addr,
1458                                                         max_addr - rel_addr,
1459                                                         body));
1460               if (JUMP_TABLES_IN_TEXT_SECTION
1461 #if !defined(READONLY_DATA_SECTION)
1462                   || 1
1463 #endif
1464                   )
1465                 {
1466                   insn_lengths[uid]
1467                     = (XVECLEN (body, 1) * GET_MODE_SIZE (GET_MODE (body)));
1468                   insn_current_address += insn_lengths[uid];
1469                   if (insn_lengths[uid] != old_length)
1470                     something_changed = 1;
1471                 }
1472
1473               continue;
1474             }
1475 #endif /* CASE_VECTOR_SHORTEN_MODE */
1476
1477           if (! (varying_length[uid]))
1478             {
1479               insn_current_address += insn_lengths[uid];
1480               continue;
1481             }
1482           if (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
1483             {
1484               int i;
1485               
1486               body = PATTERN (insn);
1487               new_length = 0;
1488               for (i = 0; i < XVECLEN (body, 0); i++)
1489                 {
1490                   rtx inner_insn = XVECEXP (body, 0, i);
1491                   int inner_uid = INSN_UID (inner_insn);
1492                   int inner_length;
1493
1494                   insn_addresses[inner_uid] = insn_current_address;
1495
1496                   /* insn_current_length returns 0 for insns with a
1497                      non-varying length.  */
1498                   if (! varying_length[inner_uid])
1499                     inner_length = insn_lengths[inner_uid];
1500                   else
1501                     inner_length = insn_current_length (inner_insn);
1502
1503                   if (inner_length != insn_lengths[inner_uid])
1504                     {
1505                       insn_lengths[inner_uid] = inner_length;
1506                       something_changed = 1;
1507                     }
1508                   insn_current_address += insn_lengths[inner_uid];
1509                   new_length += inner_length;
1510                 }
1511             }
1512           else
1513             {
1514               new_length = insn_current_length (insn);
1515               insn_current_address += new_length;
1516             }
1517
1518 #ifdef ADJUST_INSN_LENGTH
1519           /* If needed, do any adjustment.  */
1520           tmp_length = new_length;
1521           ADJUST_INSN_LENGTH (insn, new_length);
1522           insn_current_address += (new_length - tmp_length);
1523 #endif
1524
1525           if (new_length != insn_lengths[uid])
1526             {
1527               insn_lengths[uid] = new_length;
1528               something_changed = 1;
1529             }
1530         }
1531       /* For a non-optimizing compile, do only a single pass.  */
1532       if (!optimize)
1533         break;
1534     }
1535
1536   free (varying_length);
1537
1538 #endif /* HAVE_ATTR_length */
1539 }
1540
1541 #ifdef HAVE_ATTR_length
1542 /* Given the body of an INSN known to be generated by an ASM statement, return
1543    the number of machine instructions likely to be generated for this insn.
1544    This is used to compute its length.  */
1545
1546 static int
1547 asm_insn_count (body)
1548      rtx body;
1549 {
1550   char *template;
1551   int count = 1;
1552
1553   if (GET_CODE (body) == ASM_INPUT)
1554     template = XSTR (body, 0);
1555   else
1556     template = decode_asm_operands (body, NULL_PTR, NULL_PTR,
1557                                     NULL_PTR, NULL_PTR);
1558
1559   for ( ; *template; template++)
1560     if (IS_ASM_LOGICAL_LINE_SEPARATOR(*template) || *template == '\n')
1561       count++;
1562
1563   return count;
1564 }
1565 #endif
1566 \f
1567 /* Output assembler code for the start of a function,
1568    and initialize some of the variables in this file
1569    for the new function.  The label for the function and associated
1570    assembler pseudo-ops have already been output in `assemble_start_function'.
1571
1572    FIRST is the first insn of the rtl for the function being compiled.
1573    FILE is the file to write assembler code to.
1574    OPTIMIZE is nonzero if we should eliminate redundant
1575      test and compare insns.  */
1576
1577 void
1578 final_start_function (first, file, optimize)
1579      rtx first;
1580      FILE *file;
1581      int optimize;
1582 {
1583   block_depth = 0;
1584
1585   this_is_asm_operands = 0;
1586
1587 #ifdef NON_SAVING_SETJMP
1588   /* A function that calls setjmp should save and restore all the
1589      call-saved registers on a system where longjmp clobbers them.  */
1590   if (NON_SAVING_SETJMP && current_function_calls_setjmp)
1591     {
1592       int i;
1593
1594       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1595         if (!call_used_regs[i])
1596           regs_ever_live[i] = 1;
1597     }
1598 #endif
1599   
1600   /* Initial line number is supposed to be output
1601      before the function's prologue and label
1602      so that the function's address will not appear to be
1603      in the last statement of the preceding function.  */
1604   if (NOTE_LINE_NUMBER (first) != NOTE_INSN_DELETED)
1605     last_linenum = high_block_linenum = high_function_linenum
1606       = NOTE_LINE_NUMBER (first);
1607
1608 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
1609   /* Output DWARF definition of the function.  */
1610   if (dwarf2out_do_frame ())
1611     dwarf2out_begin_prologue ();
1612 #endif
1613
1614   /* For SDB and XCOFF, the function beginning must be marked between
1615      the function label and the prologue.  We always need this, even when
1616      -g1 was used.  Defer on MIPS systems so that parameter descriptions
1617      follow function entry.  */
1618 #if defined(SDB_DEBUGGING_INFO) && !defined(MIPS_DEBUGGING_INFO)
1619   if (write_symbols == SDB_DEBUG)
1620     sdbout_begin_function (last_linenum);
1621   else
1622 #endif
1623 #ifdef XCOFF_DEBUGGING_INFO
1624     if (write_symbols == XCOFF_DEBUG)
1625       xcoffout_begin_function (file, last_linenum);
1626     else
1627 #endif    
1628       /* But only output line number for other debug info types if -g2
1629          or better.  */
1630       if (NOTE_LINE_NUMBER (first) != NOTE_INSN_DELETED)
1631         output_source_line (file, first);
1632
1633 #ifdef LEAF_REG_REMAP
1634   if (leaf_function)
1635     leaf_renumber_regs (first);
1636 #endif
1637
1638   /* The Sun386i and perhaps other machines don't work right
1639      if the profiling code comes after the prologue.  */
1640 #ifdef PROFILE_BEFORE_PROLOGUE
1641   if (profile_flag)
1642     profile_function (file);
1643 #endif /* PROFILE_BEFORE_PROLOGUE */
1644
1645 #if defined (DWARF2_UNWIND_INFO) && defined (HAVE_prologue)
1646   if (dwarf2out_do_frame ())
1647     dwarf2out_frame_debug (NULL_RTX);
1648 #endif
1649
1650 #ifdef FUNCTION_PROLOGUE
1651   /* First output the function prologue: code to set up the stack frame.  */
1652   FUNCTION_PROLOGUE (file, get_frame_size ());
1653 #endif
1654
1655 #if defined (SDB_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
1656   if (write_symbols == SDB_DEBUG || write_symbols == XCOFF_DEBUG)
1657     next_block_index = 1;
1658 #endif
1659
1660   /* If the machine represents the prologue as RTL, the profiling code must
1661      be emitted when NOTE_INSN_PROLOGUE_END is scanned.  */
1662 #ifdef HAVE_prologue
1663   if (! HAVE_prologue)
1664 #endif
1665     profile_after_prologue (file);
1666
1667   profile_label_no++;
1668
1669   /* If we are doing basic block profiling, remember a printable version
1670      of the function name.  */
1671   if (profile_block_flag)
1672     {
1673       bb_func_label_num
1674         = add_bb_string ((*decl_printable_name) (current_function_decl, 2), FALSE);
1675     }
1676 }
1677
1678 static void
1679 profile_after_prologue (file)
1680      FILE *file;
1681 {
1682 #ifdef FUNCTION_BLOCK_PROFILER
1683   if (profile_block_flag)
1684     {
1685       FUNCTION_BLOCK_PROFILER (file, count_basic_blocks);
1686     }
1687 #endif /* FUNCTION_BLOCK_PROFILER */
1688
1689 #ifndef PROFILE_BEFORE_PROLOGUE
1690   if (profile_flag)
1691     profile_function (file);
1692 #endif /* not PROFILE_BEFORE_PROLOGUE */
1693 }
1694
1695 static void
1696 profile_function (file)
1697      FILE *file;
1698 {
1699   int align = MIN (BIGGEST_ALIGNMENT, LONG_TYPE_SIZE);
1700 #if defined(ASM_OUTPUT_REG_PUSH)
1701 #if defined(STRUCT_VALUE_INCOMING_REGNUM) || defined(STRUCT_VALUE_REGNUM)
1702   int sval = current_function_returns_struct;
1703 #endif
1704 #if defined(STATIC_CHAIN_INCOMING_REGNUM) || defined(STATIC_CHAIN_REGNUM)
1705   int cxt = current_function_needs_context;
1706 #endif
1707 #endif /* ASM_OUTPUT_REG_PUSH */
1708
1709   data_section ();
1710   ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
1711   ASM_OUTPUT_INTERNAL_LABEL (file, "LP", profile_label_no);
1712   assemble_integer (const0_rtx, LONG_TYPE_SIZE / BITS_PER_UNIT, 1);
1713
1714   function_section (current_function_decl);
1715
1716 #if defined(STRUCT_VALUE_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1717   if (sval)
1718     ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_INCOMING_REGNUM);
1719 #else
1720 #if defined(STRUCT_VALUE_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1721   if (sval)
1722     {
1723       ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_REGNUM);
1724     }
1725 #endif
1726 #endif
1727
1728 #if defined(STATIC_CHAIN_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1729   if (cxt)
1730     ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_INCOMING_REGNUM);
1731 #else
1732 #if defined(STATIC_CHAIN_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1733   if (cxt)
1734     {
1735       ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_REGNUM);
1736     }
1737 #endif
1738 #endif
1739
1740   FUNCTION_PROFILER (file, profile_label_no);
1741
1742 #if defined(STATIC_CHAIN_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1743   if (cxt)
1744     ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_INCOMING_REGNUM);
1745 #else
1746 #if defined(STATIC_CHAIN_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1747   if (cxt)
1748     {
1749       ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_REGNUM);
1750     }
1751 #endif
1752 #endif
1753
1754 #if defined(STRUCT_VALUE_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1755   if (sval)
1756     ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_INCOMING_REGNUM);
1757 #else
1758 #if defined(STRUCT_VALUE_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1759   if (sval)
1760     {
1761       ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_REGNUM);
1762     }
1763 #endif
1764 #endif
1765 }
1766
1767 /* Output assembler code for the end of a function.
1768    For clarity, args are same as those of `final_start_function'
1769    even though not all of them are needed.  */
1770
1771 void
1772 final_end_function (first, file, optimize)
1773      rtx first;
1774      FILE *file;
1775      int optimize;
1776 {
1777   if (app_on)
1778     {
1779       fputs (ASM_APP_OFF, file);
1780       app_on = 0;
1781     }
1782
1783 #ifdef SDB_DEBUGGING_INFO
1784   if (write_symbols == SDB_DEBUG)
1785     sdbout_end_function (high_function_linenum);
1786 #endif
1787
1788 #ifdef DWARF_DEBUGGING_INFO
1789   if (write_symbols == DWARF_DEBUG)
1790     dwarfout_end_function ();
1791 #endif
1792
1793 #ifdef XCOFF_DEBUGGING_INFO
1794   if (write_symbols == XCOFF_DEBUG)
1795     xcoffout_end_function (file, high_function_linenum);
1796 #endif
1797
1798 #ifdef FUNCTION_EPILOGUE
1799   /* Finally, output the function epilogue:
1800      code to restore the stack frame and return to the caller.  */
1801   FUNCTION_EPILOGUE (file, get_frame_size ());
1802 #endif
1803
1804 #ifdef SDB_DEBUGGING_INFO
1805   if (write_symbols == SDB_DEBUG)
1806     sdbout_end_epilogue ();
1807 #endif
1808
1809 #ifdef DWARF_DEBUGGING_INFO
1810   if (write_symbols == DWARF_DEBUG)
1811     dwarfout_end_epilogue ();
1812 #endif
1813
1814 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
1815   if (dwarf2out_do_frame ())
1816     dwarf2out_end_epilogue ();
1817 #endif
1818
1819 #ifdef XCOFF_DEBUGGING_INFO
1820   if (write_symbols == XCOFF_DEBUG)
1821     xcoffout_end_epilogue (file);
1822 #endif
1823
1824   bb_func_label_num = -1;       /* not in function, nuke label # */
1825
1826   /* If FUNCTION_EPILOGUE is not defined, then the function body
1827      itself contains return instructions wherever needed.  */
1828 }
1829 \f
1830 /* Add a block to the linked list that remembers the current line/file/function
1831    for basic block profiling.  Emit the label in front of the basic block and
1832    the instructions that increment the count field.  */
1833
1834 static void
1835 add_bb (file)
1836      FILE *file;
1837 {
1838   struct bb_list *ptr = (struct bb_list *) permalloc (sizeof (struct bb_list));
1839
1840   /* Add basic block to linked list.  */
1841   ptr->next = 0;
1842   ptr->line_num = last_linenum;
1843   ptr->file_label_num = bb_file_label_num;
1844   ptr->func_label_num = bb_func_label_num;
1845   *bb_tail = ptr;
1846   bb_tail = &ptr->next;
1847
1848   /* Enable the table of basic-block use counts
1849      to point at the code it applies to.  */
1850   ASM_OUTPUT_INTERNAL_LABEL (file, "LPB", count_basic_blocks);
1851
1852   /* Before first insn of this basic block, increment the
1853      count of times it was entered.  */
1854 #ifdef BLOCK_PROFILER
1855   BLOCK_PROFILER (file, count_basic_blocks);
1856 #endif
1857 #ifdef HAVE_cc0
1858   CC_STATUS_INIT;
1859 #endif
1860
1861   new_block = 0;
1862   count_basic_blocks++;
1863 }
1864
1865 /* Add a string to be used for basic block profiling.  */
1866
1867 static int
1868 add_bb_string (string, perm_p)
1869      char *string;
1870      int perm_p;
1871 {
1872   int len;
1873   struct bb_str *ptr = 0;
1874
1875   if (!string)
1876     {
1877       string = "<unknown>";
1878       perm_p = TRUE;
1879     }
1880
1881   /* Allocate a new string if the current string isn't permanent.  If
1882      the string is permanent search for the same string in other
1883      allocations.  */
1884
1885   len = strlen (string) + 1;
1886   if (!perm_p)
1887     {
1888       char *p = (char *) permalloc (len);
1889       bcopy (string, p, len);
1890       string = p;
1891     }
1892   else
1893     for (ptr = sbb_head; ptr != (struct bb_str *) 0; ptr = ptr->next)
1894       if (ptr->string == string)
1895         break;
1896
1897   /* Allocate a new string block if we need to.  */
1898   if (!ptr)
1899     {
1900       ptr = (struct bb_str *) permalloc (sizeof (*ptr));
1901       ptr->next = 0;
1902       ptr->length = len;
1903       ptr->label_num = sbb_label_num++;
1904       ptr->string = string;
1905       *sbb_tail = ptr;
1906       sbb_tail = &ptr->next;
1907     }
1908
1909   return ptr->label_num;
1910 }
1911
1912 \f
1913 /* Output assembler code for some insns: all or part of a function.
1914    For description of args, see `final_start_function', above.
1915
1916    PRESCAN is 1 if we are not really outputting,
1917      just scanning as if we were outputting.
1918    Prescanning deletes and rearranges insns just like ordinary output.
1919    PRESCAN is -2 if we are outputting after having prescanned.
1920    In this case, don't try to delete or rearrange insns
1921    because that has already been done.
1922    Prescanning is done only on certain machines.  */
1923
1924 void
1925 final (first, file, optimize, prescan)
1926      rtx first;
1927      FILE *file;
1928      int optimize;
1929      int prescan;
1930 {
1931   register rtx insn;
1932   int max_line = 0;
1933   int max_uid = 0;
1934
1935   last_ignored_compare = 0;
1936   new_block = 1;
1937
1938   check_exception_handler_labels ();
1939
1940   /* Make a map indicating which line numbers appear in this function.
1941      When producing SDB debugging info, delete troublesome line number
1942      notes from inlined functions in other files as well as duplicate
1943      line number notes.  */
1944 #ifdef SDB_DEBUGGING_INFO
1945   if (write_symbols == SDB_DEBUG)
1946     {
1947       rtx last = 0;
1948       for (insn = first; insn; insn = NEXT_INSN (insn))
1949         if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
1950           {
1951             if ((RTX_INTEGRATED_P (insn)
1952                  && strcmp (NOTE_SOURCE_FILE (insn), main_input_filename) != 0)
1953                  || (last != 0
1954                      && NOTE_LINE_NUMBER (insn) == NOTE_LINE_NUMBER (last)
1955                      && NOTE_SOURCE_FILE (insn) == NOTE_SOURCE_FILE (last)))
1956               {
1957                 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
1958                 NOTE_SOURCE_FILE (insn) = 0;
1959                 continue;
1960               }
1961             last = insn;
1962             if (NOTE_LINE_NUMBER (insn) > max_line)
1963               max_line = NOTE_LINE_NUMBER (insn);
1964           }
1965     }
1966   else
1967 #endif
1968     {
1969       for (insn = first; insn; insn = NEXT_INSN (insn))
1970         if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > max_line)
1971           max_line = NOTE_LINE_NUMBER (insn);
1972     }
1973
1974   line_note_exists = (char *) oballoc (max_line + 1);
1975   bzero (line_note_exists, max_line + 1);
1976
1977   for (insn = first; insn; insn = NEXT_INSN (insn))
1978     {
1979       if (INSN_UID (insn) > max_uid)       /* find largest UID */
1980         max_uid = INSN_UID (insn);
1981       if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
1982         line_note_exists[NOTE_LINE_NUMBER (insn)] = 1;
1983 #ifdef HAVE_cc0
1984       /* If CC tracking across branches is enabled, record the insn which
1985          jumps to each branch only reached from one place.  */
1986       if (optimize && GET_CODE (insn) == JUMP_INSN)
1987         {
1988           rtx lab = JUMP_LABEL (insn);
1989           if (lab && LABEL_NUSES (lab) == 1)
1990             {
1991               LABEL_REFS (lab) = insn;
1992             }
1993         }
1994 #endif
1995     }
1996
1997   /* Initialize insn_eh_region table if eh is being used. */
1998   
1999   init_insn_eh_region (first, max_uid);
2000
2001   init_recog ();
2002
2003   CC_STATUS_INIT;
2004
2005   /* Output the insns.  */
2006   for (insn = NEXT_INSN (first); insn;)
2007     {
2008 #ifdef HAVE_ATTR_length
2009       insn_current_address = insn_addresses[INSN_UID (insn)];
2010 #endif
2011       insn = final_scan_insn (insn, file, optimize, prescan, 0);
2012     }
2013
2014   /* Do basic-block profiling here
2015      if the last insn was a conditional branch.  */
2016   if (profile_block_flag && new_block)
2017     add_bb (file);
2018
2019   free_insn_eh_region ();
2020 }
2021 \f
2022 /* The final scan for one insn, INSN.
2023    Args are same as in `final', except that INSN
2024    is the insn being scanned.
2025    Value returned is the next insn to be scanned.
2026
2027    NOPEEPHOLES is the flag to disallow peephole processing (currently
2028    used for within delayed branch sequence output).  */
2029
2030 rtx
2031 final_scan_insn (insn, file, optimize, prescan, nopeepholes)
2032      rtx insn;
2033      FILE *file;
2034      int optimize;
2035      int prescan;
2036      int nopeepholes;
2037 {
2038 #ifdef HAVE_cc0
2039   rtx set;
2040 #endif
2041
2042   insn_counter++;
2043
2044   /* Ignore deleted insns.  These can occur when we split insns (due to a
2045      template of "#") while not optimizing.  */
2046   if (INSN_DELETED_P (insn))
2047     return NEXT_INSN (insn);
2048
2049   switch (GET_CODE (insn))
2050     {
2051     case NOTE:
2052       if (prescan > 0)
2053         break;
2054
2055       /* Align the beginning of a loop, for higher speed
2056          on certain machines.  */
2057
2058       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
2059         break; /* This used to depend on optimize, but that was bogus.  */
2060       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END)
2061         break;
2062
2063       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_BEG
2064           && ! exceptions_via_longjmp)
2065         {
2066           ASM_OUTPUT_INTERNAL_LABEL (file, "LEHB", NOTE_BLOCK_NUMBER (insn));
2067           if (! flag_new_exceptions)
2068             add_eh_table_entry (NOTE_BLOCK_NUMBER (insn));
2069 #ifdef ASM_OUTPUT_EH_REGION_BEG
2070           ASM_OUTPUT_EH_REGION_BEG (file, NOTE_BLOCK_NUMBER (insn));
2071 #endif
2072           break;
2073         }
2074
2075       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_END
2076           && ! exceptions_via_longjmp)
2077         {
2078           ASM_OUTPUT_INTERNAL_LABEL (file, "LEHE", NOTE_BLOCK_NUMBER (insn));
2079           if (flag_new_exceptions)
2080             add_eh_table_entry (NOTE_BLOCK_NUMBER (insn));
2081 #ifdef ASM_OUTPUT_EH_REGION_END
2082           ASM_OUTPUT_EH_REGION_END (file, NOTE_BLOCK_NUMBER (insn));
2083 #endif
2084           break;
2085         }
2086
2087       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_PROLOGUE_END)
2088         {
2089 #ifdef FUNCTION_END_PROLOGUE
2090           FUNCTION_END_PROLOGUE (file);
2091 #endif
2092           profile_after_prologue (file);
2093           break;
2094         }
2095
2096 #ifdef FUNCTION_BEGIN_EPILOGUE
2097       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EPILOGUE_BEG)
2098         {
2099           FUNCTION_BEGIN_EPILOGUE (file);
2100           break;
2101         }
2102 #endif
2103
2104       if (write_symbols == NO_DEBUG)
2105         break;
2106       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_BEG)
2107         {
2108 #if defined(SDB_DEBUGGING_INFO) && defined(MIPS_DEBUGGING_INFO)
2109           /* MIPS stabs require the parameter descriptions to be after the
2110              function entry point rather than before.  */
2111           if (write_symbols == SDB_DEBUG)
2112             sdbout_begin_function (last_linenum);
2113           else
2114 #endif
2115 #ifdef DWARF_DEBUGGING_INFO
2116           /* This outputs a marker where the function body starts, so it
2117              must be after the prologue.  */
2118           if (write_symbols == DWARF_DEBUG)
2119             dwarfout_begin_function ();
2120 #endif
2121           break;
2122         }
2123       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED)
2124         break;                  /* An insn that was "deleted" */
2125       if (app_on)
2126         {
2127           fputs (ASM_APP_OFF, file);
2128           app_on = 0;
2129         }
2130       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2131           && (debug_info_level == DINFO_LEVEL_NORMAL
2132               || debug_info_level == DINFO_LEVEL_VERBOSE
2133               || write_symbols == DWARF_DEBUG
2134               || write_symbols == DWARF2_DEBUG))
2135         {
2136           /* Beginning of a symbol-block.  Assign it a sequence number
2137              and push the number onto the stack PENDING_BLOCKS.  */
2138
2139           if (block_depth == max_block_depth)
2140             {
2141               /* PENDING_BLOCKS is full; make it longer.  */
2142               max_block_depth *= 2;
2143               pending_blocks
2144                 = (int *) xrealloc (pending_blocks,
2145                                     max_block_depth * sizeof (int));
2146             }
2147           pending_blocks[block_depth++] = next_block_index;
2148
2149           high_block_linenum = last_linenum;
2150
2151           /* Output debugging info about the symbol-block beginning.  */
2152
2153 #ifdef SDB_DEBUGGING_INFO
2154           if (write_symbols == SDB_DEBUG)
2155             sdbout_begin_block (file, last_linenum, next_block_index);
2156 #endif
2157 #ifdef XCOFF_DEBUGGING_INFO
2158           if (write_symbols == XCOFF_DEBUG)
2159             xcoffout_begin_block (file, last_linenum, next_block_index);
2160 #endif
2161 #ifdef DBX_DEBUGGING_INFO
2162           if (write_symbols == DBX_DEBUG)
2163             ASM_OUTPUT_INTERNAL_LABEL (file, "LBB", next_block_index);
2164 #endif
2165 #ifdef DWARF_DEBUGGING_INFO
2166           if (write_symbols == DWARF_DEBUG)
2167             dwarfout_begin_block (next_block_index);
2168 #endif
2169 #ifdef DWARF2_DEBUGGING_INFO
2170           if (write_symbols == DWARF2_DEBUG)
2171             dwarf2out_begin_block (next_block_index);
2172 #endif
2173
2174           next_block_index++;
2175         }
2176       else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END
2177                && (debug_info_level == DINFO_LEVEL_NORMAL
2178                    || debug_info_level == DINFO_LEVEL_VERBOSE
2179                    || write_symbols == DWARF_DEBUG
2180                    || write_symbols == DWARF2_DEBUG))
2181         {
2182           /* End of a symbol-block.  Pop its sequence number off
2183              PENDING_BLOCKS and output debugging info based on that.  */
2184
2185           --block_depth;
2186           if (block_depth < 0)
2187             abort ();
2188
2189 #ifdef XCOFF_DEBUGGING_INFO
2190           if (write_symbols == XCOFF_DEBUG)
2191             xcoffout_end_block (file, high_block_linenum,
2192                                 pending_blocks[block_depth]);
2193 #endif
2194 #ifdef DBX_DEBUGGING_INFO
2195           if (write_symbols == DBX_DEBUG)
2196             ASM_OUTPUT_INTERNAL_LABEL (file, "LBE",
2197                                        pending_blocks[block_depth]);
2198 #endif
2199 #ifdef SDB_DEBUGGING_INFO
2200           if (write_symbols == SDB_DEBUG)
2201             sdbout_end_block (file, high_block_linenum,
2202                               pending_blocks[block_depth]);
2203 #endif
2204 #ifdef DWARF_DEBUGGING_INFO
2205           if (write_symbols == DWARF_DEBUG)
2206             dwarfout_end_block (pending_blocks[block_depth]);
2207 #endif
2208 #ifdef DWARF2_DEBUGGING_INFO
2209           if (write_symbols == DWARF2_DEBUG)
2210             dwarf2out_end_block (pending_blocks[block_depth]);
2211 #endif
2212         }
2213       else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED_LABEL
2214                && (debug_info_level == DINFO_LEVEL_NORMAL
2215                    || debug_info_level == DINFO_LEVEL_VERBOSE))
2216         {
2217 #ifdef DWARF_DEBUGGING_INFO
2218           if (write_symbols == DWARF_DEBUG)
2219             dwarfout_label (insn);
2220 #endif
2221 #ifdef DWARF2_DEBUGGING_INFO
2222           if (write_symbols == DWARF2_DEBUG)
2223             dwarf2out_label (insn);
2224 #endif
2225         }
2226       else if (NOTE_LINE_NUMBER (insn) > 0)
2227         /* This note is a line-number.  */
2228         {
2229           register rtx note;
2230
2231 #if 0 /* This is what we used to do.  */
2232           output_source_line (file, insn);
2233 #endif
2234           int note_after = 0;
2235
2236           /* If there is anything real after this note,
2237              output it.  If another line note follows, omit this one.  */
2238           for (note = NEXT_INSN (insn); note; note = NEXT_INSN (note))
2239             {
2240               if (GET_CODE (note) != NOTE && GET_CODE (note) != CODE_LABEL)
2241                 break;
2242               /* These types of notes can be significant
2243                  so make sure the preceding line number stays.  */
2244               else if (GET_CODE (note) == NOTE
2245                        && (NOTE_LINE_NUMBER (note) == NOTE_INSN_BLOCK_BEG
2246                            || NOTE_LINE_NUMBER (note) == NOTE_INSN_BLOCK_END
2247                            || NOTE_LINE_NUMBER (note) == NOTE_INSN_FUNCTION_BEG))
2248                 break;
2249               else if (GET_CODE (note) == NOTE && NOTE_LINE_NUMBER (note) > 0)
2250                 {
2251                   /* Another line note follows; we can delete this note
2252                      if no intervening line numbers have notes elsewhere.  */
2253                   int num;
2254                   for (num = NOTE_LINE_NUMBER (insn) + 1;
2255                        num < NOTE_LINE_NUMBER (note);
2256                        num++)
2257                     if (line_note_exists[num])
2258                       break;
2259
2260                   if (num >= NOTE_LINE_NUMBER (note))
2261                     note_after = 1;
2262                   break;
2263                 }
2264             }
2265
2266           /* Output this line note
2267              if it is the first or the last line note in a row.  */
2268           if (!note_after)
2269             output_source_line (file, insn);
2270         }
2271       break;
2272
2273     case BARRIER:
2274 #if defined (DWARF2_UNWIND_INFO) && !defined (ACCUMULATE_OUTGOING_ARGS)
2275         /* If we push arguments, we need to check all insns for stack
2276            adjustments.  */
2277         if (dwarf2out_do_frame ())
2278           dwarf2out_frame_debug (insn);
2279 #endif
2280       break;
2281
2282     case CODE_LABEL:
2283       /* The target port might emit labels in the output function for
2284          some insn, e.g. sh.c output_branchy_insn.  */
2285       if (CODE_LABEL_NUMBER (insn) <= max_labelno)
2286         {
2287           int align = LABEL_TO_ALIGNMENT (insn);
2288 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
2289           int max_skip = LABEL_TO_MAX_SKIP (insn);
2290 #endif
2291
2292           if (align && NEXT_INSN (insn))
2293 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
2294             ASM_OUTPUT_MAX_SKIP_ALIGN (file, align, max_skip);
2295 #else
2296             ASM_OUTPUT_ALIGN (file, align);
2297 #endif
2298         }
2299 #ifdef HAVE_cc0
2300       CC_STATUS_INIT;
2301       /* If this label is reached from only one place, set the condition
2302          codes from the instruction just before the branch.  */
2303
2304       /* Disabled because some insns set cc_status in the C output code
2305          and NOTICE_UPDATE_CC alone can set incorrect status.  */
2306       if (0 /* optimize && LABEL_NUSES (insn) == 1*/)
2307         {
2308           rtx jump = LABEL_REFS (insn);
2309           rtx barrier = prev_nonnote_insn (insn);
2310           rtx prev;
2311           /* If the LABEL_REFS field of this label has been set to point
2312              at a branch, the predecessor of the branch is a regular
2313              insn, and that branch is the only way to reach this label,
2314              set the condition codes based on the branch and its
2315              predecessor.  */
2316           if (barrier && GET_CODE (barrier) == BARRIER
2317               && jump && GET_CODE (jump) == JUMP_INSN
2318               && (prev = prev_nonnote_insn (jump))
2319               && GET_CODE (prev) == INSN)
2320             {
2321               NOTICE_UPDATE_CC (PATTERN (prev), prev);
2322               NOTICE_UPDATE_CC (PATTERN (jump), jump);
2323             }
2324         }
2325 #endif
2326       if (prescan > 0)
2327         break;
2328       new_block = 1;
2329
2330 #ifdef FINAL_PRESCAN_LABEL
2331       FINAL_PRESCAN_INSN (insn, NULL_PTR, 0);
2332 #endif
2333
2334 #ifdef SDB_DEBUGGING_INFO
2335       if (write_symbols == SDB_DEBUG && LABEL_NAME (insn))
2336         sdbout_label (insn);
2337 #endif
2338 #ifdef DWARF_DEBUGGING_INFO
2339       if (write_symbols == DWARF_DEBUG && LABEL_NAME (insn))
2340         dwarfout_label (insn);
2341 #endif
2342 #ifdef DWARF2_DEBUGGING_INFO
2343       if (write_symbols == DWARF2_DEBUG && LABEL_NAME (insn))
2344         dwarf2out_label (insn);
2345 #endif
2346       if (app_on)
2347         {
2348           fputs (ASM_APP_OFF, file);
2349           app_on = 0;
2350         }
2351       if (NEXT_INSN (insn) != 0
2352           && GET_CODE (NEXT_INSN (insn)) == JUMP_INSN)
2353         {
2354           rtx nextbody = PATTERN (NEXT_INSN (insn));
2355
2356           /* If this label is followed by a jump-table,
2357              make sure we put the label in the read-only section.  Also
2358              possibly write the label and jump table together.  */
2359
2360           if (GET_CODE (nextbody) == ADDR_VEC
2361               || GET_CODE (nextbody) == ADDR_DIFF_VEC)
2362             {
2363 #if defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC)
2364               /* In this case, the case vector is being moved by the
2365                  target, so don't output the label at all.  Leave that
2366                  to the back end macros.  */
2367 #else
2368               if (! JUMP_TABLES_IN_TEXT_SECTION)
2369                 {
2370                   readonly_data_section ();
2371 #ifdef READONLY_DATA_SECTION
2372                   ASM_OUTPUT_ALIGN (file,
2373                                     exact_log2 (BIGGEST_ALIGNMENT
2374                                                 / BITS_PER_UNIT));
2375 #endif /* READONLY_DATA_SECTION */
2376                 }
2377               else
2378                 function_section (current_function_decl);
2379
2380 #ifdef ASM_OUTPUT_CASE_LABEL
2381               ASM_OUTPUT_CASE_LABEL (file, "L", CODE_LABEL_NUMBER (insn),
2382                                      NEXT_INSN (insn));
2383 #else
2384               ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
2385 #endif
2386 #endif
2387               break;
2388             }
2389         }
2390
2391       ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
2392       break;
2393
2394     default:
2395       {
2396         register rtx body = PATTERN (insn);
2397         int insn_code_number;
2398         char *template;
2399 #ifdef HAVE_cc0
2400         rtx note;
2401 #endif
2402
2403         /* An INSN, JUMP_INSN or CALL_INSN.
2404            First check for special kinds that recog doesn't recognize.  */
2405
2406         if (GET_CODE (body) == USE /* These are just declarations */
2407             || GET_CODE (body) == CLOBBER)
2408           break;
2409
2410 #ifdef HAVE_cc0
2411         /* If there is a REG_CC_SETTER note on this insn, it means that
2412            the setting of the condition code was done in the delay slot
2413            of the insn that branched here.  So recover the cc status
2414            from the insn that set it.  */
2415
2416         note = find_reg_note (insn, REG_CC_SETTER, NULL_RTX);
2417         if (note)
2418           {
2419             NOTICE_UPDATE_CC (PATTERN (XEXP (note, 0)), XEXP (note, 0));
2420             cc_prev_status = cc_status;
2421           }
2422 #endif
2423
2424         /* Detect insns that are really jump-tables
2425            and output them as such.  */
2426
2427         if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
2428           {
2429 #if !(defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC))
2430             register int vlen, idx;
2431 #endif
2432
2433             if (prescan > 0)
2434               break;
2435
2436             if (app_on)
2437               {
2438                 fputs (ASM_APP_OFF, file);
2439                 app_on = 0;
2440               }
2441
2442 #if defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC)
2443             if (GET_CODE (body) == ADDR_VEC)
2444               {
2445 #ifdef ASM_OUTPUT_ADDR_VEC
2446                 ASM_OUTPUT_ADDR_VEC (PREV_INSN (insn), body);
2447 #else
2448                 abort();
2449 #endif
2450               }
2451             else
2452               {
2453 #ifdef ASM_OUTPUT_ADDR_DIFF_VEC
2454                 ASM_OUTPUT_ADDR_DIFF_VEC (PREV_INSN (insn), body);
2455 #else
2456                 abort();
2457 #endif
2458               }
2459 #else
2460             vlen = XVECLEN (body, GET_CODE (body) == ADDR_DIFF_VEC);
2461             for (idx = 0; idx < vlen; idx++)
2462               {
2463                 if (GET_CODE (body) == ADDR_VEC)
2464                   {
2465 #ifdef ASM_OUTPUT_ADDR_VEC_ELT
2466                     ASM_OUTPUT_ADDR_VEC_ELT
2467                       (file, CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 0, idx), 0)));
2468 #else
2469                     abort ();
2470 #endif
2471                   }
2472                 else
2473                   {
2474 #ifdef ASM_OUTPUT_ADDR_DIFF_ELT
2475                     ASM_OUTPUT_ADDR_DIFF_ELT
2476                       (file,
2477                        body,
2478                        CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 1, idx), 0)),
2479                        CODE_LABEL_NUMBER (XEXP (XEXP (body, 0), 0)));
2480 #else
2481                     abort ();
2482 #endif
2483                   }
2484               }
2485 #ifdef ASM_OUTPUT_CASE_END
2486             ASM_OUTPUT_CASE_END (file,
2487                                  CODE_LABEL_NUMBER (PREV_INSN (insn)),
2488                                  insn);
2489 #endif
2490 #endif
2491
2492             function_section (current_function_decl);
2493
2494             break;
2495           }
2496
2497         /* Do basic-block profiling when we reach a new block.
2498            Done here to avoid jump tables.  */
2499         if (profile_block_flag && new_block)
2500           add_bb (file);
2501
2502         if (GET_CODE (body) == ASM_INPUT)
2503           {
2504             /* There's no telling what that did to the condition codes.  */
2505             CC_STATUS_INIT;
2506             if (prescan > 0)
2507               break;
2508             if (! app_on)
2509               {
2510                 fputs (ASM_APP_ON, file);
2511                 app_on = 1;
2512               }
2513             fprintf (asm_out_file, "\t%s\n", XSTR (body, 0));
2514             break;
2515           }
2516
2517         /* Detect `asm' construct with operands.  */
2518         if (asm_noperands (body) >= 0)
2519           {
2520             unsigned int noperands = asm_noperands (body);
2521             rtx *ops = (rtx *) alloca (noperands * sizeof (rtx));
2522             char *string;
2523
2524             /* There's no telling what that did to the condition codes.  */
2525             CC_STATUS_INIT;
2526             if (prescan > 0)
2527               break;
2528
2529             if (! app_on)
2530               {
2531                 fputs (ASM_APP_ON, file);
2532                 app_on = 1;
2533               }
2534
2535             /* Get out the operand values.  */
2536             string = decode_asm_operands (body, ops, NULL_PTR,
2537                                           NULL_PTR, NULL_PTR);
2538             /* Inhibit aborts on what would otherwise be compiler bugs.  */
2539             insn_noperands = noperands;
2540             this_is_asm_operands = insn;
2541
2542             /* Output the insn using them.  */
2543             output_asm_insn (string, ops);
2544             this_is_asm_operands = 0;
2545             break;
2546           }
2547
2548         if (prescan <= 0 && app_on)
2549           {
2550             fputs (ASM_APP_OFF, file);
2551             app_on = 0;
2552           }
2553
2554         if (GET_CODE (body) == SEQUENCE)
2555           {
2556             /* A delayed-branch sequence */
2557             register int i;
2558             rtx next;
2559
2560             if (prescan > 0)
2561               break;
2562             final_sequence = body;
2563
2564             /* The first insn in this SEQUENCE might be a JUMP_INSN that will
2565                force the restoration of a comparison that was previously
2566                thought unnecessary.  If that happens, cancel this sequence
2567                and cause that insn to be restored.  */
2568
2569             next = final_scan_insn (XVECEXP (body, 0, 0), file, 0, prescan, 1);
2570             if (next != XVECEXP (body, 0, 1))
2571               {
2572                 final_sequence = 0;
2573                 return next;
2574               }
2575
2576             for (i = 1; i < XVECLEN (body, 0); i++)
2577               {
2578                 rtx insn = XVECEXP (body, 0, i);
2579                 rtx next = NEXT_INSN (insn);
2580                 /* We loop in case any instruction in a delay slot gets
2581                    split.  */
2582                 do
2583                   insn = final_scan_insn (insn, file, 0, prescan, 1);
2584                 while (insn != next);
2585               }
2586 #ifdef DBR_OUTPUT_SEQEND
2587             DBR_OUTPUT_SEQEND (file);
2588 #endif
2589             final_sequence = 0;
2590
2591             /* If the insn requiring the delay slot was a CALL_INSN, the
2592                insns in the delay slot are actually executed before the
2593                called function.  Hence we don't preserve any CC-setting
2594                actions in these insns and the CC must be marked as being
2595                clobbered by the function.  */
2596             if (GET_CODE (XVECEXP (body, 0, 0)) == CALL_INSN)
2597               {
2598                 CC_STATUS_INIT;
2599               }
2600
2601             /* Following a conditional branch sequence, we have a new basic
2602                block.  */
2603             if (profile_block_flag)
2604               {
2605                 rtx insn = XVECEXP (body, 0, 0);
2606                 rtx body = PATTERN (insn);
2607
2608                 if ((GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == SET
2609                      && GET_CODE (SET_SRC (body)) != LABEL_REF)
2610                     || (GET_CODE (insn) == JUMP_INSN
2611                         && GET_CODE (body) == PARALLEL
2612                         && GET_CODE (XVECEXP (body, 0, 0)) == SET
2613                         && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) != LABEL_REF))
2614                   new_block = 1;
2615               }
2616             break;
2617           }
2618
2619         /* We have a real machine instruction as rtl.  */
2620
2621         body = PATTERN (insn);
2622
2623 #ifdef HAVE_cc0
2624         set = single_set(insn);
2625
2626         /* Check for redundant test and compare instructions
2627            (when the condition codes are already set up as desired).
2628            This is done only when optimizing; if not optimizing,
2629            it should be possible for the user to alter a variable
2630            with the debugger in between statements
2631            and the next statement should reexamine the variable
2632            to compute the condition codes.  */
2633
2634         if (optimize)
2635           {
2636 #if 0
2637             rtx set = single_set(insn);
2638 #endif
2639
2640             if (set
2641                 && GET_CODE (SET_DEST (set)) == CC0
2642                 && insn != last_ignored_compare)
2643               {
2644                 if (GET_CODE (SET_SRC (set)) == SUBREG)
2645                   SET_SRC (set) = alter_subreg (SET_SRC (set));
2646                 else if (GET_CODE (SET_SRC (set)) == COMPARE)
2647                   {
2648                     if (GET_CODE (XEXP (SET_SRC (set), 0)) == SUBREG)
2649                       XEXP (SET_SRC (set), 0)
2650                         = alter_subreg (XEXP (SET_SRC (set), 0));
2651                     if (GET_CODE (XEXP (SET_SRC (set), 1)) == SUBREG)
2652                       XEXP (SET_SRC (set), 1)
2653                         = alter_subreg (XEXP (SET_SRC (set), 1));
2654                   }
2655                 if ((cc_status.value1 != 0
2656                      && rtx_equal_p (SET_SRC (set), cc_status.value1))
2657                     || (cc_status.value2 != 0
2658                         && rtx_equal_p (SET_SRC (set), cc_status.value2)))
2659                   {
2660                     /* Don't delete insn if it has an addressing side-effect.  */
2661                     if (! FIND_REG_INC_NOTE (insn, 0)
2662                         /* or if anything in it is volatile.  */
2663                         && ! volatile_refs_p (PATTERN (insn)))
2664                       {
2665                         /* We don't really delete the insn; just ignore it.  */
2666                         last_ignored_compare = insn;
2667                         break;
2668                       }
2669                   }
2670               }
2671           }
2672 #endif
2673
2674         /* Following a conditional branch, we have a new basic block.
2675            But if we are inside a sequence, the new block starts after the
2676            last insn of the sequence.  */
2677         if (profile_block_flag && final_sequence == 0
2678             && ((GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == SET
2679                  && GET_CODE (SET_SRC (body)) != LABEL_REF)
2680                 || (GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == PARALLEL
2681                     && GET_CODE (XVECEXP (body, 0, 0)) == SET
2682                     && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) != LABEL_REF)))
2683           new_block = 1;
2684
2685 #ifndef STACK_REGS
2686         /* Don't bother outputting obvious no-ops, even without -O.
2687            This optimization is fast and doesn't interfere with debugging.
2688            Don't do this if the insn is in a delay slot, since this
2689            will cause an improper number of delay insns to be written.  */
2690         if (final_sequence == 0
2691             && prescan >= 0
2692             && GET_CODE (insn) == INSN && GET_CODE (body) == SET
2693             && GET_CODE (SET_SRC (body)) == REG
2694             && GET_CODE (SET_DEST (body)) == REG
2695             && REGNO (SET_SRC (body)) == REGNO (SET_DEST (body)))
2696           break;
2697 #endif
2698
2699 #ifdef HAVE_cc0
2700         /* If this is a conditional branch, maybe modify it
2701            if the cc's are in a nonstandard state
2702            so that it accomplishes the same thing that it would
2703            do straightforwardly if the cc's were set up normally.  */
2704
2705         if (cc_status.flags != 0
2706             && GET_CODE (insn) == JUMP_INSN
2707             && GET_CODE (body) == SET
2708             && SET_DEST (body) == pc_rtx
2709             && GET_CODE (SET_SRC (body)) == IF_THEN_ELSE
2710             && GET_RTX_CLASS (GET_CODE (XEXP (SET_SRC (body), 0))) == '<'
2711             && XEXP (XEXP (SET_SRC (body), 0), 0) == cc0_rtx
2712             /* This is done during prescan; it is not done again
2713                in final scan when prescan has been done.  */
2714             && prescan >= 0)
2715           {
2716             /* This function may alter the contents of its argument
2717                and clear some of the cc_status.flags bits.
2718                It may also return 1 meaning condition now always true
2719                or -1 meaning condition now always false
2720                or 2 meaning condition nontrivial but altered.  */
2721             register int result = alter_cond (XEXP (SET_SRC (body), 0));
2722             /* If condition now has fixed value, replace the IF_THEN_ELSE
2723                with its then-operand or its else-operand.  */
2724             if (result == 1)
2725               SET_SRC (body) = XEXP (SET_SRC (body), 1);
2726             if (result == -1)
2727               SET_SRC (body) = XEXP (SET_SRC (body), 2);
2728
2729             /* The jump is now either unconditional or a no-op.
2730                If it has become a no-op, don't try to output it.
2731                (It would not be recognized.)  */
2732             if (SET_SRC (body) == pc_rtx)
2733               {
2734                 PUT_CODE (insn, NOTE);
2735                 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
2736                 NOTE_SOURCE_FILE (insn) = 0;
2737                 break;
2738               }
2739             else if (GET_CODE (SET_SRC (body)) == RETURN)
2740               /* Replace (set (pc) (return)) with (return).  */
2741               PATTERN (insn) = body = SET_SRC (body);
2742
2743             /* Rerecognize the instruction if it has changed.  */
2744             if (result != 0)
2745               INSN_CODE (insn) = -1;
2746           }
2747
2748         /* Make same adjustments to instructions that examine the
2749            condition codes without jumping and instructions that
2750            handle conditional moves (if this machine has either one).  */
2751
2752         if (cc_status.flags != 0
2753             && set != 0)
2754           {
2755             rtx cond_rtx, then_rtx, else_rtx;
2756             
2757             if (GET_CODE (insn) != JUMP_INSN
2758                 && GET_CODE (SET_SRC (set)) == IF_THEN_ELSE)
2759               {
2760                 cond_rtx = XEXP (SET_SRC (set), 0);
2761                 then_rtx = XEXP (SET_SRC (set), 1);
2762                 else_rtx = XEXP (SET_SRC (set), 2);
2763               }
2764             else
2765               {
2766                 cond_rtx = SET_SRC (set);
2767                 then_rtx = const_true_rtx;
2768                 else_rtx = const0_rtx;
2769               }
2770             
2771             switch (GET_CODE (cond_rtx))
2772               {
2773               case GTU:
2774               case GT:
2775               case LTU:
2776               case LT:
2777               case GEU:
2778               case GE:
2779               case LEU:
2780               case LE:
2781               case EQ:
2782               case NE:
2783                 {
2784                   register int result;
2785                   if (XEXP (cond_rtx, 0) != cc0_rtx)
2786                     break;
2787                   result = alter_cond (cond_rtx);
2788                   if (result == 1)
2789                     validate_change (insn, &SET_SRC (set), then_rtx, 0);
2790                   else if (result == -1)
2791                     validate_change (insn, &SET_SRC (set), else_rtx, 0);
2792                   else if (result == 2)
2793                     INSN_CODE (insn) = -1;
2794                   if (SET_DEST (set) == SET_SRC (set))
2795                     {
2796                       PUT_CODE (insn, NOTE);
2797                       NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
2798                       NOTE_SOURCE_FILE (insn) = 0;
2799                     }
2800                 }
2801                 break;
2802
2803               default:
2804                 break;
2805               }
2806           }
2807
2808 #endif
2809
2810         /* Do machine-specific peephole optimizations if desired.  */
2811
2812         if (optimize && !flag_no_peephole && !nopeepholes)
2813           {
2814             rtx next = peephole (insn);
2815             /* When peepholing, if there were notes within the peephole,
2816                emit them before the peephole.  */
2817             if (next != 0 && next != NEXT_INSN (insn))
2818               {
2819                 rtx prev = PREV_INSN (insn);
2820                 rtx note;
2821
2822                 for (note = NEXT_INSN (insn); note != next;
2823                      note = NEXT_INSN (note))
2824                   final_scan_insn (note, file, optimize, prescan, nopeepholes);
2825
2826                 /* In case this is prescan, put the notes
2827                    in proper position for later rescan.  */
2828                 note = NEXT_INSN (insn);
2829                 PREV_INSN (note) = prev;
2830                 NEXT_INSN (prev) = note;
2831                 NEXT_INSN (PREV_INSN (next)) = insn;
2832                 PREV_INSN (insn) = PREV_INSN (next);
2833                 NEXT_INSN (insn) = next;
2834                 PREV_INSN (next) = insn;
2835               }
2836
2837             /* PEEPHOLE might have changed this.  */
2838             body = PATTERN (insn);
2839           }
2840
2841         /* Try to recognize the instruction.
2842            If successful, verify that the operands satisfy the
2843            constraints for the instruction.  Crash if they don't,
2844            since `reload' should have changed them so that they do.  */
2845
2846         insn_code_number = recog_memoized (insn);
2847         extract_insn (insn);
2848         cleanup_subreg_operands (insn);
2849
2850 #ifdef REGISTER_CONSTRAINTS
2851         if (! constrain_operands (1))
2852           fatal_insn_not_found (insn);
2853 #endif
2854
2855         /* Some target machines need to prescan each insn before
2856            it is output.  */
2857
2858 #ifdef FINAL_PRESCAN_INSN
2859         FINAL_PRESCAN_INSN (insn, recog_operand, recog_n_operands);
2860 #endif
2861
2862 #ifdef HAVE_cc0
2863         cc_prev_status = cc_status;
2864
2865         /* Update `cc_status' for this instruction.
2866            The instruction's output routine may change it further.
2867            If the output routine for a jump insn needs to depend
2868            on the cc status, it should look at cc_prev_status.  */
2869
2870         NOTICE_UPDATE_CC (body, insn);
2871 #endif
2872
2873         debug_insn = insn;
2874
2875 #if defined (DWARF2_UNWIND_INFO) && !defined (ACCUMULATE_OUTGOING_ARGS)
2876         /* If we push arguments, we want to know where the calls are.  */
2877         if (GET_CODE (insn) == CALL_INSN && dwarf2out_do_frame ())
2878           dwarf2out_frame_debug (insn);
2879 #endif
2880
2881         /* If the proper template needs to be chosen by some C code,
2882            run that code and get the real template.  */
2883
2884         template = insn_template[insn_code_number];
2885         if (template == 0)
2886           {
2887             template = (*insn_outfun[insn_code_number]) (recog_operand, insn);
2888
2889             /* If the C code returns 0, it means that it is a jump insn
2890                which follows a deleted test insn, and that test insn
2891                needs to be reinserted.  */
2892             if (template == 0)
2893               {
2894                 if (prev_nonnote_insn (insn) != last_ignored_compare)
2895                   abort ();
2896                 new_block = 0;
2897                 return prev_nonnote_insn (insn);
2898               }
2899           }
2900
2901         /* If the template is the string "#", it means that this insn must
2902            be split.  */
2903         if (template[0] == '#' && template[1] == '\0')
2904           {
2905             rtx new = try_split (body, insn, 0);
2906
2907             /* If we didn't split the insn, go away.  */
2908             if (new == insn && PATTERN (new) == body)
2909               fatal_insn ("Could not split insn", insn);
2910               
2911 #ifdef HAVE_ATTR_length
2912             /* This instruction should have been split in shorten_branches,
2913                to ensure that we would have valid length info for the
2914                splitees.  */
2915             abort ();
2916 #endif
2917
2918             new_block = 0;
2919             return new;
2920           }
2921         
2922         if (prescan > 0)
2923           break;
2924
2925         /* Output assembler code from the template.  */
2926
2927         output_asm_insn (template, recog_operand);
2928
2929 #if defined (DWARF2_UNWIND_INFO)
2930 #if !defined (ACCUMULATE_OUTGOING_ARGS)
2931         /* If we push arguments, we need to check all insns for stack
2932            adjustments.  */
2933         if (GET_CODE (insn) == INSN && dwarf2out_do_frame ())
2934           dwarf2out_frame_debug (insn);
2935 #else
2936 #if defined (HAVE_prologue)
2937         /* If this insn is part of the prologue, emit DWARF v2
2938            call frame info.  */
2939         if (RTX_FRAME_RELATED_P (insn) && dwarf2out_do_frame ())
2940           dwarf2out_frame_debug (insn);
2941 #endif
2942 #endif
2943 #endif
2944
2945 #if 0
2946         /* It's not at all clear why we did this and doing so interferes
2947            with tests we'd like to do to use REG_WAS_0 notes, so let's try
2948            with this out.  */
2949
2950         /* Mark this insn as having been output.  */
2951         INSN_DELETED_P (insn) = 1;
2952 #endif
2953
2954         debug_insn = 0;
2955       }
2956     }
2957   return NEXT_INSN (insn);
2958 }
2959 \f
2960 /* Output debugging info to the assembler file FILE
2961    based on the NOTE-insn INSN, assumed to be a line number.  */
2962
2963 static void
2964 output_source_line (file, insn)
2965      FILE *file;
2966      rtx insn;
2967 {
2968   register char *filename = NOTE_SOURCE_FILE (insn);
2969
2970   /* Remember filename for basic block profiling.
2971      Filenames are allocated on the permanent obstack
2972      or are passed in ARGV, so we don't have to save
2973      the string.  */
2974
2975   if (profile_block_flag && last_filename != filename)
2976     bb_file_label_num = add_bb_string (filename, TRUE);
2977
2978   last_filename = filename;
2979   last_linenum = NOTE_LINE_NUMBER (insn);
2980   high_block_linenum = MAX (last_linenum, high_block_linenum);
2981   high_function_linenum = MAX (last_linenum, high_function_linenum);
2982
2983   if (write_symbols != NO_DEBUG)
2984     {
2985 #ifdef SDB_DEBUGGING_INFO
2986       if (write_symbols == SDB_DEBUG
2987 #if 0 /* People like having line numbers even in wrong file!  */
2988           /* COFF can't handle multiple source files--lose, lose.  */
2989           && !strcmp (filename, main_input_filename)
2990 #endif
2991           /* COFF relative line numbers must be positive.  */
2992           && last_linenum > sdb_begin_function_line)
2993         {
2994 #ifdef ASM_OUTPUT_SOURCE_LINE
2995           ASM_OUTPUT_SOURCE_LINE (file, last_linenum);
2996 #else
2997           fprintf (file, "\t.ln\t%d\n",
2998                    ((sdb_begin_function_line > -1)
2999                     ? last_linenum - sdb_begin_function_line : 1));
3000 #endif
3001         }
3002 #endif
3003
3004 #if defined (DBX_DEBUGGING_INFO)
3005       if (write_symbols == DBX_DEBUG)
3006         dbxout_source_line (file, filename, NOTE_LINE_NUMBER (insn));
3007 #endif
3008
3009 #if defined (XCOFF_DEBUGGING_INFO)
3010       if (write_symbols == XCOFF_DEBUG)
3011         xcoffout_source_line (file, filename, insn);
3012 #endif
3013
3014 #ifdef DWARF_DEBUGGING_INFO
3015       if (write_symbols == DWARF_DEBUG)
3016         dwarfout_line (filename, NOTE_LINE_NUMBER (insn));
3017 #endif
3018
3019 #ifdef DWARF2_DEBUGGING_INFO
3020       if (write_symbols == DWARF2_DEBUG)
3021         dwarf2out_line (filename, NOTE_LINE_NUMBER (insn));
3022 #endif
3023     }
3024 }
3025 \f
3026
3027 /* For each operand in INSN, simplify (subreg (reg)) so that it refers
3028    directly to the desired hard register.  */
3029 void
3030 cleanup_subreg_operands (insn)
3031      rtx insn;
3032 {
3033   int i;
3034
3035   extract_insn (insn);
3036   for (i = 0; i < recog_n_operands; i++)
3037     {
3038       if (GET_CODE (recog_operand[i]) == SUBREG)
3039         recog_operand[i] = alter_subreg (recog_operand[i]);
3040       else if (GET_CODE (recog_operand[i]) == PLUS
3041                || GET_CODE (recog_operand[i]) == MULT)
3042        recog_operand[i] = walk_alter_subreg (recog_operand[i]);
3043     }
3044
3045   for (i = 0; i < recog_n_dups; i++)
3046     {
3047       if (GET_CODE (*recog_dup_loc[i]) == SUBREG)
3048         *recog_dup_loc[i] = alter_subreg (*recog_dup_loc[i]);
3049       else if (GET_CODE (*recog_dup_loc[i]) == PLUS
3050                || GET_CODE (*recog_dup_loc[i]) == MULT)
3051         *recog_dup_loc[i] = walk_alter_subreg (*recog_dup_loc[i]);
3052     }
3053 }
3054
3055 /* If X is a SUBREG, replace it with a REG or a MEM,
3056    based on the thing it is a subreg of.  */
3057
3058 rtx
3059 alter_subreg (x)
3060      register rtx x;
3061 {
3062   register rtx y = SUBREG_REG (x);
3063
3064   if (GET_CODE (y) == SUBREG)
3065     y = alter_subreg (y);
3066
3067   /* If reload is operating, we may be replacing inside this SUBREG.
3068      Check for that and make a new one if so.  */
3069   if (reload_in_progress && find_replacement (&SUBREG_REG (x)) != 0)
3070     x = copy_rtx (x);
3071
3072   if (GET_CODE (y) == REG)
3073     {
3074       /* If the word size is larger than the size of this register,
3075          adjust the register number to compensate.  */
3076       /* ??? Note that this just catches stragglers created by/for
3077          integrate.  It would be better if we either caught these
3078          earlier, or kept _all_ subregs until now and eliminate
3079          gen_lowpart and friends.  */
3080
3081       PUT_CODE (x, REG);
3082 #ifdef ALTER_HARD_SUBREG
3083       REGNO (x) = ALTER_HARD_SUBREG(GET_MODE (x), SUBREG_WORD (x),
3084                                     GET_MODE (y), REGNO (y));
3085 #else
3086       REGNO (x) = REGNO (y) + SUBREG_WORD (x);
3087 #endif
3088       /* This field has a different meaning for REGs and SUBREGs.  Make sure
3089          to clear it!  */
3090       x->used = 0;
3091     }
3092   else if (GET_CODE (y) == MEM)
3093     {
3094       register int offset = SUBREG_WORD (x) * UNITS_PER_WORD;
3095       if (BYTES_BIG_ENDIAN)
3096         offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x)))
3097                    - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (y))));
3098       PUT_CODE (x, MEM);
3099       MEM_COPY_ATTRIBUTES (x, y);
3100       MEM_ALIAS_SET (x) = MEM_ALIAS_SET (y);
3101       XEXP (x, 0) = plus_constant (XEXP (y, 0), offset);
3102     }
3103
3104   return x;
3105 }
3106
3107 /* Do alter_subreg on all the SUBREGs contained in X.  */
3108
3109 static rtx
3110 walk_alter_subreg (x)
3111      rtx x;
3112 {
3113   switch (GET_CODE (x))
3114     {
3115     case PLUS:
3116     case MULT:
3117       XEXP (x, 0) = walk_alter_subreg (XEXP (x, 0));
3118       XEXP (x, 1) = walk_alter_subreg (XEXP (x, 1));
3119       break;
3120
3121     case MEM:
3122       XEXP (x, 0) = walk_alter_subreg (XEXP (x, 0));
3123       break;
3124
3125     case SUBREG:
3126       return alter_subreg (x);
3127       
3128     default:
3129       break;
3130     }
3131
3132   return x;
3133 }
3134 \f
3135 #ifdef HAVE_cc0
3136
3137 /* Given BODY, the body of a jump instruction, alter the jump condition
3138    as required by the bits that are set in cc_status.flags.
3139    Not all of the bits there can be handled at this level in all cases.
3140
3141    The value is normally 0.
3142    1 means that the condition has become always true.
3143    -1 means that the condition has become always false.
3144    2 means that COND has been altered.  */
3145
3146 static int
3147 alter_cond (cond)
3148      register rtx cond;
3149 {
3150   int value = 0;
3151
3152   if (cc_status.flags & CC_REVERSED)
3153     {
3154       value = 2;
3155       PUT_CODE (cond, swap_condition (GET_CODE (cond)));
3156     }
3157
3158   if (cc_status.flags & CC_INVERTED)
3159     {
3160       value = 2;
3161       PUT_CODE (cond, reverse_condition (GET_CODE (cond)));
3162     }
3163
3164   if (cc_status.flags & CC_NOT_POSITIVE)
3165     switch (GET_CODE (cond))
3166       {
3167       case LE:
3168       case LEU:
3169       case GEU:
3170         /* Jump becomes unconditional.  */
3171         return 1;
3172
3173       case GT:
3174       case GTU:
3175       case LTU:
3176         /* Jump becomes no-op.  */
3177         return -1;
3178
3179       case GE:
3180         PUT_CODE (cond, EQ);
3181         value = 2;
3182         break;
3183
3184       case LT:
3185         PUT_CODE (cond, NE);
3186         value = 2;
3187         break;
3188         
3189       default:
3190         break;
3191       }
3192
3193   if (cc_status.flags & CC_NOT_NEGATIVE)
3194     switch (GET_CODE (cond))
3195       {
3196       case GE:
3197       case GEU:
3198         /* Jump becomes unconditional.  */
3199         return 1;
3200
3201       case LT:
3202       case LTU:
3203         /* Jump becomes no-op.  */
3204         return -1;
3205
3206       case LE:
3207       case LEU:
3208         PUT_CODE (cond, EQ);
3209         value = 2;
3210         break;
3211
3212       case GT:
3213       case GTU:
3214         PUT_CODE (cond, NE);
3215         value = 2;
3216         break;
3217         
3218       default:
3219         break;
3220       }
3221
3222   if (cc_status.flags & CC_NO_OVERFLOW)
3223     switch (GET_CODE (cond))
3224       {
3225       case GEU:
3226         /* Jump becomes unconditional.  */
3227         return 1;
3228
3229       case LEU:
3230         PUT_CODE (cond, EQ);
3231         value = 2;
3232         break;
3233
3234       case GTU:
3235         PUT_CODE (cond, NE);
3236         value = 2;
3237         break;
3238
3239       case LTU:
3240         /* Jump becomes no-op.  */
3241         return -1;
3242         
3243       default:
3244         break;
3245       }
3246
3247   if (cc_status.flags & (CC_Z_IN_NOT_N | CC_Z_IN_N))
3248     switch (GET_CODE (cond))
3249       {
3250       default:
3251         abort ();
3252
3253       case NE:
3254         PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? GE : LT);
3255         value = 2;
3256         break;
3257
3258       case EQ:
3259         PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? LT : GE);
3260         value = 2;
3261         break;
3262       }
3263
3264   if (cc_status.flags & CC_NOT_SIGNED)
3265     /* The flags are valid if signed condition operators are converted
3266        to unsigned.  */
3267     switch (GET_CODE (cond))
3268       {
3269       case LE:
3270         PUT_CODE (cond, LEU);
3271         value = 2;
3272         break;
3273
3274       case LT:
3275         PUT_CODE (cond, LTU);
3276         value = 2;
3277         break;
3278
3279       case GT:
3280         PUT_CODE (cond, GTU);
3281         value = 2;
3282         break;
3283
3284       case GE:
3285         PUT_CODE (cond, GEU);
3286         value = 2;
3287         break;
3288
3289       default:
3290         break;
3291       }
3292
3293   return value;
3294 }
3295 #endif
3296 \f
3297 /* Report inconsistency between the assembler template and the operands.
3298    In an `asm', it's the user's fault; otherwise, the compiler's fault.  */
3299
3300 void
3301 output_operand_lossage (str)
3302   const char *str;
3303 {
3304   if (this_is_asm_operands)
3305     error_for_asm (this_is_asm_operands, "invalid `asm': %s", str);
3306   else
3307     fatal ("Internal compiler error, output_operand_lossage `%s'", str);
3308 }
3309 \f
3310 /* Output of assembler code from a template, and its subroutines.  */
3311
3312 /* Output text from TEMPLATE to the assembler output file,
3313    obeying %-directions to substitute operands taken from
3314    the vector OPERANDS.
3315
3316    %N (for N a digit) means print operand N in usual manner.
3317    %lN means require operand N to be a CODE_LABEL or LABEL_REF
3318       and print the label name with no punctuation.
3319    %cN means require operand N to be a constant
3320       and print the constant expression with no punctuation.
3321    %aN means expect operand N to be a memory address
3322       (not a memory reference!) and print a reference
3323       to that address.
3324    %nN means expect operand N to be a constant
3325       and print a constant expression for minus the value
3326       of the operand, with no other punctuation.  */
3327
3328 static void
3329 output_asm_name ()
3330 {
3331   if (flag_print_asm_name)
3332     {
3333       /* Annotate the assembly with a comment describing the pattern and
3334          alternative used.  */
3335       if (debug_insn)
3336         {
3337           register int num = INSN_CODE (debug_insn);
3338           fprintf (asm_out_file, "\t%s %d\t%s", 
3339                    ASM_COMMENT_START, INSN_UID (debug_insn), insn_name[num]);
3340           if (insn_n_alternatives[num] > 1)
3341             fprintf (asm_out_file, "/%d", which_alternative + 1);
3342 #ifdef HAVE_ATTR_length
3343           fprintf (asm_out_file, "\t[length = %d]", get_attr_length (debug_insn));
3344 #endif
3345           /* Clear this so only the first assembler insn
3346              of any rtl insn will get the special comment for -dp.  */
3347           debug_insn = 0;
3348         }
3349     }
3350 }
3351
3352 void
3353 output_asm_insn (template, operands)
3354      char *template;
3355      rtx *operands;
3356 {
3357   register char *p;
3358   register int c;
3359
3360   /* An insn may return a null string template
3361      in a case where no assembler code is needed.  */
3362   if (*template == 0)
3363     return;
3364
3365   p = template;
3366   putc ('\t', asm_out_file);
3367
3368 #ifdef ASM_OUTPUT_OPCODE
3369   ASM_OUTPUT_OPCODE (asm_out_file, p);
3370 #endif
3371
3372   while ((c = *p++))
3373     switch (c)
3374       {
3375       case '\n':
3376         output_asm_name ();
3377         putc (c, asm_out_file);
3378 #ifdef ASM_OUTPUT_OPCODE
3379         while ((c = *p) == '\t')
3380           {
3381             putc (c, asm_out_file);
3382             p++;
3383           }
3384         ASM_OUTPUT_OPCODE (asm_out_file, p);
3385 #endif
3386         break;
3387
3388 #ifdef ASSEMBLER_DIALECT
3389       case '{':
3390         {
3391           register int i;
3392           
3393           /* If we want the first dialect, do nothing.  Otherwise, skip
3394              DIALECT_NUMBER of strings ending with '|'.  */
3395           for (i = 0; i < dialect_number; i++)
3396             {
3397               while (*p && *p++ != '|')
3398                 ;
3399
3400               if (*p == '|')
3401                 p++;
3402             }
3403         }
3404         break;
3405
3406       case '|':
3407         /* Skip to close brace.  */
3408         while (*p && *p++ != '}')
3409           ;
3410         break;
3411
3412       case '}':
3413         break;
3414 #endif
3415
3416       case '%':
3417         /* %% outputs a single %.  */
3418         if (*p == '%')
3419           {
3420             p++;
3421             putc (c, asm_out_file);
3422           }
3423         /* %= outputs a number which is unique to each insn in the entire
3424            compilation.  This is useful for making local labels that are
3425            referred to more than once in a given insn.  */
3426         else if (*p == '=')
3427           {
3428             p++;
3429             fprintf (asm_out_file, "%d", insn_counter);
3430           }
3431         /* % followed by a letter and some digits
3432            outputs an operand in a special way depending on the letter.
3433            Letters `acln' are implemented directly.
3434            Other letters are passed to `output_operand' so that
3435            the PRINT_OPERAND macro can define them.  */
3436         else if ((*p >= 'a' && *p <= 'z')
3437                  || (*p >= 'A' && *p <= 'Z'))
3438           {
3439             int letter = *p++;
3440             c = atoi (p);
3441
3442             if (! (*p >= '0' && *p <= '9'))
3443               output_operand_lossage ("operand number missing after %-letter");
3444             else if (this_is_asm_operands && (c < 0 || (unsigned int) c >= insn_noperands))
3445               output_operand_lossage ("operand number out of range");
3446             else if (letter == 'l')
3447               output_asm_label (operands[c]);
3448             else if (letter == 'a')
3449               output_address (operands[c]);
3450             else if (letter == 'c')
3451               {
3452                 if (CONSTANT_ADDRESS_P (operands[c]))
3453                   output_addr_const (asm_out_file, operands[c]);
3454                 else
3455                   output_operand (operands[c], 'c');
3456               }
3457             else if (letter == 'n')
3458               {
3459                 if (GET_CODE (operands[c]) == CONST_INT)
3460                   fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC,
3461                            - INTVAL (operands[c]));
3462                 else
3463                   {
3464                     putc ('-', asm_out_file);
3465                     output_addr_const (asm_out_file, operands[c]);
3466                   }
3467               }
3468             else
3469               output_operand (operands[c], letter);
3470             
3471             while ((c = *p) >= '0' && c <= '9') p++;
3472           }
3473         /* % followed by a digit outputs an operand the default way.  */
3474         else if (*p >= '0' && *p <= '9')
3475           {
3476             c = atoi (p);
3477             if (this_is_asm_operands && (c < 0 || (unsigned int) c >= insn_noperands))
3478               output_operand_lossage ("operand number out of range");
3479             else
3480               output_operand (operands[c], 0);
3481             while ((c = *p) >= '0' && c <= '9') p++;
3482           }
3483         /* % followed by punctuation: output something for that
3484            punctuation character alone, with no operand.
3485            The PRINT_OPERAND macro decides what is actually done.  */
3486 #ifdef PRINT_OPERAND_PUNCT_VALID_P
3487         else if (PRINT_OPERAND_PUNCT_VALID_P ((unsigned char)*p))
3488           output_operand (NULL_RTX, *p++);
3489 #endif
3490         else
3491           output_operand_lossage ("invalid %%-code");
3492         break;
3493
3494       default:
3495         putc (c, asm_out_file);
3496       }
3497
3498   output_asm_name ();
3499
3500   putc ('\n', asm_out_file);
3501 }
3502 \f
3503 /* Output a LABEL_REF, or a bare CODE_LABEL, as an assembler symbol.  */
3504
3505 void
3506 output_asm_label (x)
3507      rtx x;
3508 {
3509   char buf[256];
3510
3511   if (GET_CODE (x) == LABEL_REF)
3512     ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (XEXP (x, 0)));
3513   else if (GET_CODE (x) == CODE_LABEL)
3514     ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
3515   else
3516     output_operand_lossage ("`%l' operand isn't a label");
3517
3518   assemble_name (asm_out_file, buf);
3519 }
3520
3521 /* Print operand X using machine-dependent assembler syntax.
3522    The macro PRINT_OPERAND is defined just to control this function.
3523    CODE is a non-digit that preceded the operand-number in the % spec,
3524    such as 'z' if the spec was `%z3'.  CODE is 0 if there was no char
3525    between the % and the digits.
3526    When CODE is a non-letter, X is 0.
3527
3528    The meanings of the letters are machine-dependent and controlled
3529    by PRINT_OPERAND.  */
3530
3531 static void
3532 output_operand (x, code)
3533      rtx x;
3534      int code;
3535 {
3536   if (x && GET_CODE (x) == SUBREG)
3537     x = alter_subreg (x);
3538
3539   /* If X is a pseudo-register, abort now rather than writing trash to the
3540      assembler file.  */
3541
3542   if (x && GET_CODE (x) == REG && REGNO (x) >= FIRST_PSEUDO_REGISTER)
3543     abort ();
3544
3545   PRINT_OPERAND (asm_out_file, x, code);
3546 }
3547
3548 /* Print a memory reference operand for address X
3549    using machine-dependent assembler syntax.
3550    The macro PRINT_OPERAND_ADDRESS exists just to control this function.  */
3551
3552 void
3553 output_address (x)
3554      rtx x;
3555 {
3556   walk_alter_subreg (x);
3557   PRINT_OPERAND_ADDRESS (asm_out_file, x);
3558 }
3559 \f
3560 /* Print an integer constant expression in assembler syntax.
3561    Addition and subtraction are the only arithmetic
3562    that may appear in these expressions.  */
3563
3564 void
3565 output_addr_const (file, x)
3566      FILE *file;
3567      rtx x;
3568 {
3569   char buf[256];
3570
3571  restart:
3572   switch (GET_CODE (x))
3573     {
3574     case PC:
3575       if (flag_pic)
3576         putc ('.', file);
3577       else
3578         abort ();
3579       break;
3580
3581     case SYMBOL_REF:
3582       assemble_name (file, XSTR (x, 0));
3583       break;
3584
3585     case LABEL_REF:
3586       ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (XEXP (x, 0)));
3587       assemble_name (file, buf);
3588       break;
3589
3590     case CODE_LABEL:
3591       ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
3592       assemble_name (file, buf);
3593       break;
3594
3595     case CONST_INT:
3596       fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x));
3597       break;
3598
3599     case CONST:
3600       /* This used to output parentheses around the expression,
3601          but that does not work on the 386 (either ATT or BSD assembler).  */
3602       output_addr_const (file, XEXP (x, 0));
3603       break;
3604
3605     case CONST_DOUBLE:
3606       if (GET_MODE (x) == VOIDmode)
3607         {
3608           /* We can use %d if the number is one word and positive.  */
3609           if (CONST_DOUBLE_HIGH (x))
3610             fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
3611                      CONST_DOUBLE_HIGH (x), CONST_DOUBLE_LOW (x));
3612           else if  (CONST_DOUBLE_LOW (x) < 0)
3613             fprintf (file, HOST_WIDE_INT_PRINT_HEX, CONST_DOUBLE_LOW (x));
3614           else
3615             fprintf (file, HOST_WIDE_INT_PRINT_DEC, CONST_DOUBLE_LOW (x));
3616         }
3617       else
3618         /* We can't handle floating point constants;
3619            PRINT_OPERAND must handle them.  */
3620         output_operand_lossage ("floating constant misused");
3621       break;
3622
3623     case PLUS:
3624       /* Some assemblers need integer constants to appear last (eg masm).  */
3625       if (GET_CODE (XEXP (x, 0)) == CONST_INT)
3626         {
3627           output_addr_const (file, XEXP (x, 1));
3628           if (INTVAL (XEXP (x, 0)) >= 0)
3629             fprintf (file, "+");
3630           output_addr_const (file, XEXP (x, 0));
3631         }
3632       else
3633         {
3634           output_addr_const (file, XEXP (x, 0));
3635           if (INTVAL (XEXP (x, 1)) >= 0)
3636             fprintf (file, "+");
3637           output_addr_const (file, XEXP (x, 1));
3638         }
3639       break;
3640
3641     case MINUS:
3642       /* Avoid outputting things like x-x or x+5-x,
3643          since some assemblers can't handle that.  */
3644       x = simplify_subtraction (x);
3645       if (GET_CODE (x) != MINUS)
3646         goto restart;
3647
3648       output_addr_const (file, XEXP (x, 0));
3649       fprintf (file, "-");
3650       if (GET_CODE (XEXP (x, 1)) == CONST_INT
3651           && INTVAL (XEXP (x, 1)) < 0)
3652         {
3653           fprintf (file, ASM_OPEN_PAREN);
3654           output_addr_const (file, XEXP (x, 1));
3655           fprintf (file, ASM_CLOSE_PAREN);
3656         }
3657       else
3658         output_addr_const (file, XEXP (x, 1));
3659       break;
3660
3661     case ZERO_EXTEND:
3662     case SIGN_EXTEND:
3663       output_addr_const (file, XEXP (x, 0));
3664       break;
3665
3666     default:
3667       output_operand_lossage ("invalid expression as operand");
3668     }
3669 }
3670 \f
3671 /* A poor man's fprintf, with the added features of %I, %R, %L, and %U.
3672    %R prints the value of REGISTER_PREFIX.
3673    %L prints the value of LOCAL_LABEL_PREFIX.
3674    %U prints the value of USER_LABEL_PREFIX.
3675    %I prints the value of IMMEDIATE_PREFIX.
3676    %O runs ASM_OUTPUT_OPCODE to transform what follows in the string.
3677    Also supported are %d, %x, %s, %e, %f, %g and %%.
3678
3679    We handle alternate assembler dialects here, just like output_asm_insn.  */
3680
3681 void
3682 asm_fprintf VPROTO((FILE *file, const char *p, ...))
3683 {
3684 #ifndef ANSI_PROTOTYPES
3685   FILE *file;
3686   const char *p;
3687 #endif
3688   va_list argptr;
3689   char buf[10];
3690   char *q, c;
3691
3692   VA_START (argptr, p);
3693
3694 #ifndef ANSI_PROTOTYPES
3695   file = va_arg (argptr, FILE *);
3696   p = va_arg (argptr, const char *);
3697 #endif
3698
3699   buf[0] = '%';
3700
3701   while ((c = *p++))
3702     switch (c)
3703       {
3704 #ifdef ASSEMBLER_DIALECT
3705       case '{':
3706         {
3707           int i;
3708
3709           /* If we want the first dialect, do nothing.  Otherwise, skip
3710              DIALECT_NUMBER of strings ending with '|'.  */
3711           for (i = 0; i < dialect_number; i++)
3712             {
3713               while (*p && *p++ != '|')
3714                 ;
3715
3716               if (*p == '|')
3717                 p++;
3718           }
3719         }
3720         break;
3721
3722       case '|':
3723         /* Skip to close brace.  */
3724         while (*p && *p++ != '}')
3725           ;
3726         break;
3727
3728       case '}':
3729         break;
3730 #endif
3731
3732       case '%':
3733         c = *p++;
3734         q = &buf[1];
3735         while ((c >= '0' && c <= '9') || c == '.')
3736           {
3737             *q++ = c;
3738             c = *p++;
3739           }
3740         switch (c)
3741           {
3742           case '%':
3743             fprintf (file, "%%");
3744             break;
3745
3746           case 'd':  case 'i':  case 'u':
3747           case 'x':  case 'p':  case 'X':
3748           case 'o':
3749             *q++ = c;
3750             *q = 0;
3751             fprintf (file, buf, va_arg (argptr, int));
3752             break;
3753
3754           case 'w':
3755             /* This is a prefix to the 'd', 'i', 'u', 'x', 'p', and 'X' cases,
3756                but we do not check for those cases.  It means that the value
3757                is a HOST_WIDE_INT, which may be either `int' or `long'.  */
3758
3759 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
3760 #else
3761 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
3762             *q++ = 'l';
3763 #else
3764             *q++ = 'l';
3765             *q++ = 'l';
3766 #endif
3767 #endif
3768
3769             *q++ = *p++;
3770             *q = 0;
3771             fprintf (file, buf, va_arg (argptr, HOST_WIDE_INT));
3772             break;
3773
3774           case 'l':
3775             *q++ = c;
3776             *q++ = *p++;
3777             *q = 0;
3778             fprintf (file, buf, va_arg (argptr, long));
3779             break;
3780
3781           case 'e':
3782           case 'f':
3783           case 'g':
3784             *q++ = c;
3785             *q = 0;
3786             fprintf (file, buf, va_arg (argptr, double));
3787             break;
3788
3789           case 's':
3790             *q++ = c;
3791             *q = 0;
3792             fprintf (file, buf, va_arg (argptr, char *));
3793             break;
3794
3795           case 'O':
3796 #ifdef ASM_OUTPUT_OPCODE
3797             ASM_OUTPUT_OPCODE (asm_out_file, p);
3798 #endif
3799             break;
3800
3801           case 'R':
3802 #ifdef REGISTER_PREFIX
3803             fprintf (file, "%s", REGISTER_PREFIX);
3804 #endif
3805             break;
3806
3807           case 'I':
3808 #ifdef IMMEDIATE_PREFIX
3809             fprintf (file, "%s", IMMEDIATE_PREFIX);
3810 #endif
3811             break;
3812
3813           case 'L':
3814 #ifdef LOCAL_LABEL_PREFIX
3815             fprintf (file, "%s", LOCAL_LABEL_PREFIX);
3816 #endif
3817             break;
3818
3819           case 'U':
3820             fputs (user_label_prefix, file);
3821             break;
3822
3823           default:
3824             abort ();
3825           }
3826         break;
3827
3828       default:
3829         fputc (c, file);
3830       }
3831 }
3832 \f
3833 /* Split up a CONST_DOUBLE or integer constant rtx
3834    into two rtx's for single words,
3835    storing in *FIRST the word that comes first in memory in the target
3836    and in *SECOND the other.  */
3837
3838 void
3839 split_double (value, first, second)
3840      rtx value;
3841      rtx *first, *second;
3842 {
3843   if (GET_CODE (value) == CONST_INT)
3844     {
3845       if (HOST_BITS_PER_WIDE_INT >= (2 * BITS_PER_WORD))
3846         {
3847           /* In this case the CONST_INT holds both target words.
3848              Extract the bits from it into two word-sized pieces.
3849              Sign extend each half to HOST_WIDE_INT.  */
3850           rtx low, high;
3851           /* On machines where HOST_BITS_PER_WIDE_INT == BITS_PER_WORD
3852              the shift below will cause a compiler warning, even though
3853              this code won't be executed.  So put the shift amounts in
3854              variables to avoid the warning.  */
3855           int rshift = HOST_BITS_PER_WIDE_INT - BITS_PER_WORD;
3856           int lshift = HOST_BITS_PER_WIDE_INT - 2 * BITS_PER_WORD;
3857
3858           low = GEN_INT ((INTVAL (value) << rshift) >> rshift);
3859           high = GEN_INT ((INTVAL (value) << lshift) >> rshift);
3860           if (WORDS_BIG_ENDIAN)
3861             {
3862               *first = high;
3863               *second = low;
3864             }
3865           else
3866             {
3867               *first = low;
3868               *second = high;
3869             }
3870         }
3871       else
3872         {
3873           /* The rule for using CONST_INT for a wider mode
3874              is that we regard the value as signed.
3875              So sign-extend it.  */
3876           rtx high = (INTVAL (value) < 0 ? constm1_rtx : const0_rtx);
3877           if (WORDS_BIG_ENDIAN)
3878             {
3879               *first = high;
3880               *second = value;
3881             }
3882           else
3883             {
3884               *first = value;
3885               *second = high;
3886             }
3887         }
3888     }
3889   else if (GET_CODE (value) != CONST_DOUBLE)
3890     {
3891       if (WORDS_BIG_ENDIAN)
3892         {
3893           *first = const0_rtx;
3894           *second = value;
3895         }
3896       else
3897         {
3898           *first = value;
3899           *second = const0_rtx;
3900         }
3901     }
3902   else if (GET_MODE (value) == VOIDmode
3903            /* This is the old way we did CONST_DOUBLE integers.  */
3904            || GET_MODE_CLASS (GET_MODE (value)) == MODE_INT)
3905     {
3906       /* In an integer, the words are defined as most and least significant.
3907          So order them by the target's convention.  */
3908       if (WORDS_BIG_ENDIAN)
3909         {
3910           *first = GEN_INT (CONST_DOUBLE_HIGH (value));
3911           *second = GEN_INT (CONST_DOUBLE_LOW (value));
3912         }
3913       else
3914         {
3915           *first = GEN_INT (CONST_DOUBLE_LOW (value));
3916           *second = GEN_INT (CONST_DOUBLE_HIGH (value));
3917         }
3918     }
3919   else
3920     {
3921 #ifdef REAL_ARITHMETIC
3922       REAL_VALUE_TYPE r; long l[2];
3923       REAL_VALUE_FROM_CONST_DOUBLE (r, value);
3924
3925       /* Note, this converts the REAL_VALUE_TYPE to the target's
3926          format, splits up the floating point double and outputs
3927          exactly 32 bits of it into each of l[0] and l[1] --
3928          not necessarily BITS_PER_WORD bits.  */
3929       REAL_VALUE_TO_TARGET_DOUBLE (r, l);
3930
3931       *first = GEN_INT ((HOST_WIDE_INT) l[0]);
3932       *second = GEN_INT ((HOST_WIDE_INT) l[1]);
3933 #else
3934       if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
3935            || HOST_BITS_PER_WIDE_INT != BITS_PER_WORD)
3936           && ! flag_pretend_float)
3937       abort ();
3938
3939       if (
3940 #ifdef HOST_WORDS_BIG_ENDIAN
3941           WORDS_BIG_ENDIAN
3942 #else
3943           ! WORDS_BIG_ENDIAN
3944 #endif
3945           )
3946         {
3947           /* Host and target agree => no need to swap.  */
3948           *first = GEN_INT (CONST_DOUBLE_LOW (value));
3949           *second = GEN_INT (CONST_DOUBLE_HIGH (value));
3950         }
3951       else
3952         {
3953           *second = GEN_INT (CONST_DOUBLE_LOW (value));
3954           *first = GEN_INT (CONST_DOUBLE_HIGH (value));
3955         }
3956 #endif /* no REAL_ARITHMETIC */
3957     }
3958 }
3959 \f
3960 /* Return nonzero if this function has no function calls.  */
3961
3962 int
3963 leaf_function_p ()
3964 {
3965   rtx insn;
3966
3967   if (profile_flag || profile_block_flag || profile_arc_flag)
3968     return 0;
3969
3970   for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3971     {
3972       if (GET_CODE (insn) == CALL_INSN)
3973         return 0;
3974       if (GET_CODE (insn) == INSN
3975           && GET_CODE (PATTERN (insn)) == SEQUENCE
3976           && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == CALL_INSN)
3977         return 0;
3978     }
3979   for (insn = current_function_epilogue_delay_list; insn; insn = XEXP (insn, 1))
3980     {
3981       if (GET_CODE (XEXP (insn, 0)) == CALL_INSN)
3982         return 0;
3983       if (GET_CODE (XEXP (insn, 0)) == INSN
3984           && GET_CODE (PATTERN (XEXP (insn, 0))) == SEQUENCE
3985           && GET_CODE (XVECEXP (PATTERN (XEXP (insn, 0)), 0, 0)) == CALL_INSN)
3986         return 0;
3987     }
3988
3989   return 1;
3990 }
3991
3992 /* On some machines, a function with no call insns
3993    can run faster if it doesn't create its own register window.
3994    When output, the leaf function should use only the "output"
3995    registers.  Ordinarily, the function would be compiled to use
3996    the "input" registers to find its arguments; it is a candidate
3997    for leaf treatment if it uses only the "input" registers.
3998    Leaf function treatment means renumbering so the function
3999    uses the "output" registers instead.  */
4000
4001 #ifdef LEAF_REGISTERS
4002
4003 static char permitted_reg_in_leaf_functions[] = LEAF_REGISTERS;
4004
4005 /* Return 1 if this function uses only the registers that can be
4006    safely renumbered.  */
4007
4008 int
4009 only_leaf_regs_used ()
4010 {
4011   int i;
4012
4013   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
4014     if ((regs_ever_live[i] || global_regs[i])
4015         && ! permitted_reg_in_leaf_functions[i])
4016       return 0;
4017
4018   if (current_function_uses_pic_offset_table
4019       && pic_offset_table_rtx != 0
4020       && GET_CODE (pic_offset_table_rtx) == REG
4021       && ! permitted_reg_in_leaf_functions[REGNO (pic_offset_table_rtx)])
4022     return 0;
4023
4024   return 1;
4025 }
4026
4027 /* Scan all instructions and renumber all registers into those
4028    available in leaf functions.  */
4029
4030 static void
4031 leaf_renumber_regs (first)
4032      rtx first;
4033 {
4034   rtx insn;
4035
4036   /* Renumber only the actual patterns.
4037      The reg-notes can contain frame pointer refs,
4038      and renumbering them could crash, and should not be needed.  */
4039   for (insn = first; insn; insn = NEXT_INSN (insn))
4040     if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
4041       leaf_renumber_regs_insn (PATTERN (insn));
4042   for (insn = current_function_epilogue_delay_list; insn; insn = XEXP (insn, 1))
4043     if (GET_RTX_CLASS (GET_CODE (XEXP (insn, 0))) == 'i')
4044       leaf_renumber_regs_insn (PATTERN (XEXP (insn, 0)));
4045 }
4046
4047 /* Scan IN_RTX and its subexpressions, and renumber all regs into those
4048    available in leaf functions.  */
4049
4050 void
4051 leaf_renumber_regs_insn (in_rtx)
4052      register rtx in_rtx;
4053 {
4054   register int i, j;
4055   register char *format_ptr;
4056
4057   if (in_rtx == 0)
4058     return;
4059
4060   /* Renumber all input-registers into output-registers.
4061      renumbered_regs would be 1 for an output-register;
4062      they  */
4063
4064   if (GET_CODE (in_rtx) == REG)
4065     {
4066       int newreg;
4067
4068       /* Don't renumber the same reg twice.  */
4069       if (in_rtx->used)
4070         return;
4071
4072       newreg = REGNO (in_rtx);
4073       /* Don't try to renumber pseudo regs.  It is possible for a pseudo reg
4074          to reach here as part of a REG_NOTE.  */
4075       if (newreg >= FIRST_PSEUDO_REGISTER)
4076         {
4077           in_rtx->used = 1;
4078           return;
4079         }
4080       newreg = LEAF_REG_REMAP (newreg);
4081       if (newreg < 0)
4082         abort ();
4083       regs_ever_live[REGNO (in_rtx)] = 0;
4084       regs_ever_live[newreg] = 1;
4085       REGNO (in_rtx) = newreg;
4086       in_rtx->used = 1;
4087     }
4088
4089   if (GET_RTX_CLASS (GET_CODE (in_rtx)) == 'i')
4090     {
4091       /* Inside a SEQUENCE, we find insns.
4092          Renumber just the patterns of these insns,
4093          just as we do for the top-level insns.  */
4094       leaf_renumber_regs_insn (PATTERN (in_rtx));
4095       return;
4096     }
4097
4098   format_ptr = GET_RTX_FORMAT (GET_CODE (in_rtx));
4099
4100   for (i = 0; i < GET_RTX_LENGTH (GET_CODE (in_rtx)); i++)
4101     switch (*format_ptr++)
4102       {
4103       case 'e':
4104         leaf_renumber_regs_insn (XEXP (in_rtx, i));
4105         break;
4106
4107       case 'E':
4108         if (NULL != XVEC (in_rtx, i))
4109           {
4110             for (j = 0; j < XVECLEN (in_rtx, i); j++)
4111               leaf_renumber_regs_insn (XVECEXP (in_rtx, i, j));
4112           }
4113         break;
4114
4115       case 'S':
4116       case 's':
4117       case '0':
4118       case 'i':
4119       case 'w':
4120       case 'n':
4121       case 'u':
4122         break;
4123
4124       default:
4125         abort ();
4126       }
4127 }
4128 #endif