OSDN Git Service

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