OSDN Git Service

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