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