OSDN Git Service

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