* c-decl.c (duplicate_decls): Conditionalize DECL_SAVED_TREE copy.
[official-gcc.git] / gcc / final.c
blob158da0b858bd6c527230e9d1507d14a09201e227
1 /* Convert RTL to assembler code and output it, for GNU compiler.
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 /* This is the final pass of the compiler.
23 It looks at the rtl code for a function and outputs assembler code.
25 Call `final_start_function' to output the assembler code for function entry,
26 `final' to output assembler code for some RTL code,
27 `final_end_function' to output assembler code for function exit.
28 If a function is compiled in several pieces, each piece is
29 output separately with `final'.
31 Some optimizations are also done at this level.
32 Move instructions that were made unnecessary by good register allocation
33 are detected and omitted from the output. (Though most of these
34 are removed by the last jump pass.)
36 Instructions to set the condition codes are omitted when it can be
37 seen that the condition codes already had the desired values.
39 In some cases it is sufficient if the inherited condition codes
40 have related values, but this may require the following insn
41 (the one that tests the condition codes) to be modified.
43 The code for the function prologue and epilogue are generated
44 directly in assembler by the target functions function_prologue and
45 function_epilogue. Those instructions never exist as rtl. */
47 #include "config.h"
48 #include "system.h"
50 #include "tree.h"
51 #include "rtl.h"
52 #include "tm_p.h"
53 #include "regs.h"
54 #include "insn-config.h"
55 #include "insn-attr.h"
56 #include "recog.h"
57 #include "conditions.h"
58 #include "flags.h"
59 #include "real.h"
60 #include "hard-reg-set.h"
61 #include "output.h"
62 #include "except.h"
63 #include "function.h"
64 #include "toplev.h"
65 #include "reload.h"
66 #include "intl.h"
67 #include "basic-block.h"
68 #include "target.h"
69 #include "debug.h"
70 #include "expr.h"
72 #ifdef XCOFF_DEBUGGING_INFO
73 #include "xcoffout.h" /* Needed for external data
74 declarations for e.g. AIX 4.x. */
75 #endif
77 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
78 #include "dwarf2out.h"
79 #endif
81 /* If we aren't using cc0, CC_STATUS_INIT shouldn't exist. So define a
82 null default for it to save conditionalization later. */
83 #ifndef CC_STATUS_INIT
84 #define CC_STATUS_INIT
85 #endif
87 /* How to start an assembler comment. */
88 #ifndef ASM_COMMENT_START
89 #define ASM_COMMENT_START ";#"
90 #endif
92 /* Is the given character a logical line separator for the assembler? */
93 #ifndef IS_ASM_LOGICAL_LINE_SEPARATOR
94 #define IS_ASM_LOGICAL_LINE_SEPARATOR(C) ((C) == ';')
95 #endif
97 #ifndef JUMP_TABLES_IN_TEXT_SECTION
98 #define JUMP_TABLES_IN_TEXT_SECTION 0
99 #endif
101 /* Last insn processed by final_scan_insn. */
102 static rtx debug_insn;
103 rtx current_output_insn;
105 /* Line number of last NOTE. */
106 static int last_linenum;
108 /* Highest line number in current block. */
109 static int high_block_linenum;
111 /* Likewise for function. */
112 static int high_function_linenum;
114 /* Filename of last NOTE. */
115 static const char *last_filename;
117 /* Number of basic blocks seen so far;
118 used if profile_block_flag is set. */
119 static int count_basic_blocks;
121 /* Number of instrumented arcs when profile_arc_flag is set. */
122 extern int count_instrumented_edges;
124 extern int length_unit_log; /* This is defined in insn-attrtab.c. */
126 /* Nonzero while outputting an `asm' with operands.
127 This means that inconsistencies are the user's fault, so don't abort.
128 The precise value is the insn being output, to pass to error_for_asm. */
129 static rtx this_is_asm_operands;
131 /* Number of operands of this insn, for an `asm' with operands. */
132 static unsigned int insn_noperands;
134 /* Compare optimization flag. */
136 static rtx last_ignored_compare = 0;
138 /* Flag indicating this insn is the start of a new basic block. */
140 static int new_block = 1;
142 /* Assign a unique number to each insn that is output.
143 This can be used to generate unique local labels. */
145 static int insn_counter = 0;
147 #ifdef HAVE_cc0
148 /* This variable contains machine-dependent flags (defined in tm.h)
149 set and examined by output routines
150 that describe how to interpret the condition codes properly. */
152 CC_STATUS cc_status;
154 /* During output of an insn, this contains a copy of cc_status
155 from before the insn. */
157 CC_STATUS cc_prev_status;
158 #endif
160 /* Indexed by hardware reg number, is 1 if that register is ever
161 used in the current function.
163 In life_analysis, or in stupid_life_analysis, this is set
164 up to record the hard regs used explicitly. Reload adds
165 in the hard regs used for holding pseudo regs. Final uses
166 it to generate the code in the function prologue and epilogue
167 to save and restore registers as needed. */
169 char regs_ever_live[FIRST_PSEUDO_REGISTER];
171 /* Nonzero means current function must be given a frame pointer.
172 Set in stmt.c if anything is allocated on the stack there.
173 Set in reload1.c if anything is allocated on the stack there. */
175 int frame_pointer_needed;
177 /* Assign unique numbers to labels generated for profiling. */
179 int profile_label_no;
181 /* Number of unmatched NOTE_INSN_BLOCK_BEG notes we have seen. */
183 static int block_depth;
185 /* Nonzero if have enabled APP processing of our assembler output. */
187 static int app_on;
189 /* If we are outputting an insn sequence, this contains the sequence rtx.
190 Zero otherwise. */
192 rtx final_sequence;
194 #ifdef ASSEMBLER_DIALECT
196 /* Number of the assembler dialect to use, starting at 0. */
197 static int dialect_number;
198 #endif
200 /* Indexed by line number, nonzero if there is a note for that line. */
202 static char *line_note_exists;
204 #ifdef HAVE_conditional_execution
205 /* Nonnull if the insn currently being emitted was a COND_EXEC pattern. */
206 rtx current_insn_predicate;
207 #endif
209 /* Linked list to hold line numbers for each basic block. */
211 struct bb_list
213 struct bb_list *next; /* pointer to next basic block */
214 int line_num; /* line number */
215 int file_label_num; /* LPBC<n> label # for stored filename */
216 int func_label_num; /* LPBC<n> label # for stored function name */
219 static struct bb_list *bb_head = 0; /* Head of basic block list */
220 static struct bb_list **bb_tail = &bb_head; /* Ptr to store next bb ptr */
221 static int bb_file_label_num = -1; /* Current label # for file */
222 static int bb_func_label_num = -1; /* Current label # for func */
224 /* Linked list to hold the strings for each file and function name output. */
226 struct bb_str
228 struct bb_str *next; /* pointer to next string */
229 const char *string; /* string */
230 int label_num; /* label number */
231 int length; /* string length */
234 static struct bb_str *sbb_head = 0; /* Head of string list. */
235 static struct bb_str **sbb_tail = &sbb_head; /* Ptr to store next bb str */
236 static int sbb_label_num = 0; /* Last label used */
238 #ifdef HAVE_ATTR_length
239 static int asm_insn_count PARAMS ((rtx));
240 #endif
241 static void profile_function PARAMS ((FILE *));
242 static void profile_after_prologue PARAMS ((FILE *));
243 static void add_bb PARAMS ((FILE *));
244 static int add_bb_string PARAMS ((const char *, int));
245 static void notice_source_line PARAMS ((rtx));
246 static rtx walk_alter_subreg PARAMS ((rtx *));
247 static void output_asm_name PARAMS ((void));
248 static tree get_mem_expr_from_op PARAMS ((rtx, int *));
249 static void output_asm_operand_names PARAMS ((rtx *, int *, int));
250 static void output_operand PARAMS ((rtx, int));
251 #ifdef LEAF_REGISTERS
252 static void leaf_renumber_regs PARAMS ((rtx));
253 #endif
254 #ifdef HAVE_cc0
255 static int alter_cond PARAMS ((rtx));
256 #endif
257 #ifndef ADDR_VEC_ALIGN
258 static int final_addr_vec_align PARAMS ((rtx));
259 #endif
260 #ifdef HAVE_ATTR_length
261 static int align_fuzz PARAMS ((rtx, rtx, int, unsigned));
262 #endif
264 /* Initialize data in final at the beginning of a compilation. */
266 void
267 init_final (filename)
268 const char *filename ATTRIBUTE_UNUSED;
270 app_on = 0;
271 final_sequence = 0;
273 #ifdef ASSEMBLER_DIALECT
274 dialect_number = ASSEMBLER_DIALECT;
275 #endif
278 /* Called at end of source file,
279 to output the block-profiling table for this entire compilation. */
281 void
282 end_final (filename)
283 const char *filename;
285 int i;
287 if (profile_block_flag || profile_arc_flag)
289 char name[20];
290 int align = exact_log2 (BIGGEST_ALIGNMENT / BITS_PER_UNIT);
291 int size, rounded;
292 struct bb_list *ptr;
293 struct bb_str *sptr;
294 int long_bytes = LONG_TYPE_SIZE / BITS_PER_UNIT;
295 int gcov_type_bytes = GCOV_TYPE_SIZE / BITS_PER_UNIT;
296 int pointer_bytes = POINTER_SIZE / BITS_PER_UNIT;
297 unsigned int align2 = LONG_TYPE_SIZE;
299 if (profile_block_flag)
300 size = long_bytes * count_basic_blocks;
301 else
302 size = gcov_type_bytes * count_instrumented_edges;
303 rounded = size;
305 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
306 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
307 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
309 /* ??? This _really_ ought to be done with a structure layout
310 and with assemble_constructor. If long_bytes != pointer_bytes
311 we'll be emitting unaligned data at some point. */
312 if (long_bytes != pointer_bytes)
313 abort ();
315 data_section ();
317 /* Output the main header, of 11 words:
318 0: 1 if this file is initialized, else 0.
319 1: address of file name (LPBX1).
320 2: address of table of counts (LPBX2).
321 3: number of counts in the table.
322 4: always 0, for compatibility with Sun.
324 The following are GNU extensions:
326 5: address of table of start addrs of basic blocks (LPBX3).
327 6: Number of bytes in this header.
328 7: address of table of function names (LPBX4).
329 8: address of table of line numbers (LPBX5) or 0.
330 9: address of table of file names (LPBX6) or 0.
331 10: space reserved for basic block profiling. */
333 ASM_OUTPUT_ALIGN (asm_out_file, align);
335 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 0);
337 /* Zero word. */
338 assemble_integer (const0_rtx, long_bytes, align2, 1);
340 /* Address of filename. */
341 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 1);
342 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes,
343 align2, 1);
345 /* Address of count table. */
346 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 2);
347 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes,
348 align2, 1);
350 /* Count of the # of basic blocks or # of instrumented arcs. */
351 assemble_integer (GEN_INT (profile_block_flag
352 ? count_basic_blocks
353 : count_instrumented_edges),
354 long_bytes, align2, 1);
356 /* Zero word (link field). */
357 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
359 /* address of basic block start address table */
360 if (profile_block_flag)
362 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
363 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
364 pointer_bytes, align2, 1);
366 else
367 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
369 /* Byte count for extended structure. */
370 assemble_integer (GEN_INT (11 * UNITS_PER_WORD), long_bytes, align2, 1);
372 /* Address of function name table. */
373 if (profile_block_flag)
375 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 4);
376 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
377 pointer_bytes, align2, 1);
379 else
380 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
382 /* Address of line number and filename tables if debugging. */
383 if (write_symbols != NO_DEBUG && profile_block_flag)
385 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 5);
386 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
387 pointer_bytes, align2, 1);
388 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 6);
389 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
390 pointer_bytes, align2, 1);
392 else
394 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
395 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
398 /* Space for extension ptr (link field). */
399 assemble_integer (const0_rtx, UNITS_PER_WORD, align2, 1);
401 /* Output the file name changing the suffix to .d for
402 Sun tcov compatibility. */
403 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 1);
405 char *cwd = getpwd ();
406 int len = strlen (filename) + strlen (cwd) + 1;
407 char *data_file = (char *) alloca (len + 4);
409 strcpy (data_file, cwd);
410 strcat (data_file, "/");
411 strcat (data_file, filename);
412 strip_off_ending (data_file, len);
413 if (profile_block_flag)
414 strcat (data_file, ".d");
415 else
416 strcat (data_file, ".da");
417 assemble_string (data_file, strlen (data_file) + 1);
420 /* Make space for the table of counts. */
421 if (size == 0)
423 /* Realign data section. */
424 ASM_OUTPUT_ALIGN (asm_out_file, align);
425 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 2);
426 if (size != 0)
427 assemble_zeros (size);
429 else
431 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 2);
432 #ifdef ASM_OUTPUT_SHARED_LOCAL
433 if (flag_shared_data)
434 ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
435 else
436 #endif
437 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
438 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name,
439 size, BIGGEST_ALIGNMENT);
440 #else
441 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
442 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size,
443 BIGGEST_ALIGNMENT);
444 #else
445 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
446 #endif
447 #endif
450 /* Output any basic block strings */
451 if (profile_block_flag)
453 readonly_data_section ();
454 if (sbb_head)
456 ASM_OUTPUT_ALIGN (asm_out_file, align);
457 for (sptr = sbb_head; sptr != 0; sptr = sptr->next)
459 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBC",
460 sptr->label_num);
461 assemble_string (sptr->string, sptr->length);
466 /* Output the table of addresses. */
467 if (profile_block_flag)
469 /* Realign in new section */
470 ASM_OUTPUT_ALIGN (asm_out_file, align);
471 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 3);
472 for (i = 0; i < count_basic_blocks; i++)
474 ASM_GENERATE_INTERNAL_LABEL (name, "LPB", i);
475 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
476 pointer_bytes, align2, 1);
480 /* Output the table of function names. */
481 if (profile_block_flag)
483 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 4);
484 for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
486 if (ptr->func_label_num >= 0)
488 ASM_GENERATE_INTERNAL_LABEL (name, "LPBC",
489 ptr->func_label_num);
490 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
491 pointer_bytes, align2, 1);
493 else
494 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
497 for (; i < count_basic_blocks; i++)
498 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
501 if (write_symbols != NO_DEBUG && profile_block_flag)
503 /* Output the table of line numbers. */
504 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 5);
505 for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
506 assemble_integer (GEN_INT (ptr->line_num), long_bytes, align2, 1);
508 for (; i < count_basic_blocks; i++)
509 assemble_integer (const0_rtx, long_bytes, align2, 1);
511 /* Output the table of file names. */
512 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 6);
513 for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
515 if (ptr->file_label_num >= 0)
517 ASM_GENERATE_INTERNAL_LABEL (name, "LPBC",
518 ptr->file_label_num);
519 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
520 pointer_bytes, align2, 1);
522 else
523 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
526 for (; i < count_basic_blocks; i++)
527 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
530 /* End with the address of the table of addresses,
531 so we can find it easily, as the last word in the file's text. */
532 if (profile_block_flag)
534 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
535 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
536 pointer_bytes, align2, 1);
541 /* Default target function prologue and epilogue assembler output.
543 If not overridden for epilogue code, then the function body itself
544 contains return instructions wherever needed. */
545 void
546 default_function_pro_epilogue (file, size)
547 FILE *file ATTRIBUTE_UNUSED;
548 HOST_WIDE_INT size ATTRIBUTE_UNUSED;
552 /* Default target hook that outputs nothing to a stream. */
553 void
554 no_asm_to_stream (file)
555 FILE *file ATTRIBUTE_UNUSED;
559 /* Enable APP processing of subsequent output.
560 Used before the output from an `asm' statement. */
562 void
563 app_enable ()
565 if (! app_on)
567 fputs (ASM_APP_ON, asm_out_file);
568 app_on = 1;
572 /* Disable APP processing of subsequent output.
573 Called from varasm.c before most kinds of output. */
575 void
576 app_disable ()
578 if (app_on)
580 fputs (ASM_APP_OFF, asm_out_file);
581 app_on = 0;
585 /* Return the number of slots filled in the current
586 delayed branch sequence (we don't count the insn needing the
587 delay slot). Zero if not in a delayed branch sequence. */
589 #ifdef DELAY_SLOTS
591 dbr_sequence_length ()
593 if (final_sequence != 0)
594 return XVECLEN (final_sequence, 0) - 1;
595 else
596 return 0;
598 #endif
600 /* The next two pages contain routines used to compute the length of an insn
601 and to shorten branches. */
603 /* Arrays for insn lengths, and addresses. The latter is referenced by
604 `insn_current_length'. */
606 static int *insn_lengths;
608 #ifdef HAVE_ATTR_length
609 varray_type insn_addresses_;
610 #endif
612 /* Max uid for which the above arrays are valid. */
613 static int insn_lengths_max_uid;
615 /* Address of insn being processed. Used by `insn_current_length'. */
616 int insn_current_address;
618 /* Address of insn being processed in previous iteration. */
619 int insn_last_address;
621 /* konwn invariant alignment of insn being processed. */
622 int insn_current_align;
624 /* After shorten_branches, for any insn, uid_align[INSN_UID (insn)]
625 gives the next following alignment insn that increases the known
626 alignment, or NULL_RTX if there is no such insn.
627 For any alignment obtained this way, we can again index uid_align with
628 its uid to obtain the next following align that in turn increases the
629 alignment, till we reach NULL_RTX; the sequence obtained this way
630 for each insn we'll call the alignment chain of this insn in the following
631 comments. */
633 struct label_alignment
635 short alignment;
636 short max_skip;
639 static rtx *uid_align;
640 static int *uid_shuid;
641 static struct label_alignment *label_align;
643 /* Indicate that branch shortening hasn't yet been done. */
645 void
646 init_insn_lengths ()
648 if (uid_shuid)
650 free (uid_shuid);
651 uid_shuid = 0;
653 if (insn_lengths)
655 free (insn_lengths);
656 insn_lengths = 0;
657 insn_lengths_max_uid = 0;
659 #ifdef HAVE_ATTR_length
660 INSN_ADDRESSES_FREE ();
661 #endif
662 if (uid_align)
664 free (uid_align);
665 uid_align = 0;
669 /* Obtain the current length of an insn. If branch shortening has been done,
670 get its actual length. Otherwise, get its maximum length. */
673 get_attr_length (insn)
674 rtx insn ATTRIBUTE_UNUSED;
676 #ifdef HAVE_ATTR_length
677 rtx body;
678 int i;
679 int length = 0;
681 if (insn_lengths_max_uid > INSN_UID (insn))
682 return insn_lengths[INSN_UID (insn)];
683 else
684 switch (GET_CODE (insn))
686 case NOTE:
687 case BARRIER:
688 case CODE_LABEL:
689 return 0;
691 case CALL_INSN:
692 length = insn_default_length (insn);
693 break;
695 case JUMP_INSN:
696 body = PATTERN (insn);
697 if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
699 /* Alignment is machine-dependent and should be handled by
700 ADDR_VEC_ALIGN. */
702 else
703 length = insn_default_length (insn);
704 break;
706 case INSN:
707 body = PATTERN (insn);
708 if (GET_CODE (body) == USE || GET_CODE (body) == CLOBBER)
709 return 0;
711 else if (GET_CODE (body) == ASM_INPUT || asm_noperands (body) >= 0)
712 length = asm_insn_count (body) * insn_default_length (insn);
713 else if (GET_CODE (body) == SEQUENCE)
714 for (i = 0; i < XVECLEN (body, 0); i++)
715 length += get_attr_length (XVECEXP (body, 0, i));
716 else
717 length = insn_default_length (insn);
718 break;
720 default:
721 break;
724 #ifdef ADJUST_INSN_LENGTH
725 ADJUST_INSN_LENGTH (insn, length);
726 #endif
727 return length;
728 #else /* not HAVE_ATTR_length */
729 return 0;
730 #endif /* not HAVE_ATTR_length */
733 /* Code to handle alignment inside shorten_branches. */
735 /* Here is an explanation how the algorithm in align_fuzz can give
736 proper results:
738 Call a sequence of instructions beginning with alignment point X
739 and continuing until the next alignment point `block X'. When `X'
740 is used in an expression, it means the alignment value of the
741 alignment point.
743 Call the distance between the start of the first insn of block X, and
744 the end of the last insn of block X `IX', for the `inner size of X'.
745 This is clearly the sum of the instruction lengths.
747 Likewise with the next alignment-delimited block following X, which we
748 shall call block Y.
750 Call the distance between the start of the first insn of block X, and
751 the start of the first insn of block Y `OX', for the `outer size of X'.
753 The estimated padding is then OX - IX.
755 OX can be safely estimated as
757 if (X >= Y)
758 OX = round_up(IX, Y)
759 else
760 OX = round_up(IX, X) + Y - X
762 Clearly est(IX) >= real(IX), because that only depends on the
763 instruction lengths, and those being overestimated is a given.
765 Clearly round_up(foo, Z) >= round_up(bar, Z) if foo >= bar, so
766 we needn't worry about that when thinking about OX.
768 When X >= Y, the alignment provided by Y adds no uncertainty factor
769 for branch ranges starting before X, so we can just round what we have.
770 But when X < Y, we don't know anything about the, so to speak,
771 `middle bits', so we have to assume the worst when aligning up from an
772 address mod X to one mod Y, which is Y - X. */
774 #ifndef LABEL_ALIGN
775 #define LABEL_ALIGN(LABEL) align_labels_log
776 #endif
778 #ifndef LABEL_ALIGN_MAX_SKIP
779 #define LABEL_ALIGN_MAX_SKIP align_labels_max_skip
780 #endif
782 #ifndef LOOP_ALIGN
783 #define LOOP_ALIGN(LABEL) align_loops_log
784 #endif
786 #ifndef LOOP_ALIGN_MAX_SKIP
787 #define LOOP_ALIGN_MAX_SKIP align_loops_max_skip
788 #endif
790 #ifndef LABEL_ALIGN_AFTER_BARRIER
791 #define LABEL_ALIGN_AFTER_BARRIER(LABEL) 0
792 #endif
794 #ifndef LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP
795 #define LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP 0
796 #endif
798 #ifndef JUMP_ALIGN
799 #define JUMP_ALIGN(LABEL) align_jumps_log
800 #endif
802 #ifndef JUMP_ALIGN_MAX_SKIP
803 #define JUMP_ALIGN_MAX_SKIP align_jumps_max_skip
804 #endif
806 #ifndef ADDR_VEC_ALIGN
807 static int
808 final_addr_vec_align (addr_vec)
809 rtx addr_vec;
811 int align = GET_MODE_SIZE (GET_MODE (PATTERN (addr_vec)));
813 if (align > BIGGEST_ALIGNMENT / BITS_PER_UNIT)
814 align = BIGGEST_ALIGNMENT / BITS_PER_UNIT;
815 return exact_log2 (align);
819 #define ADDR_VEC_ALIGN(ADDR_VEC) final_addr_vec_align (ADDR_VEC)
820 #endif
822 #ifndef INSN_LENGTH_ALIGNMENT
823 #define INSN_LENGTH_ALIGNMENT(INSN) length_unit_log
824 #endif
826 #define INSN_SHUID(INSN) (uid_shuid[INSN_UID (INSN)])
828 static int min_labelno, max_labelno;
830 #define LABEL_TO_ALIGNMENT(LABEL) \
831 (label_align[CODE_LABEL_NUMBER (LABEL) - min_labelno].alignment)
833 #define LABEL_TO_MAX_SKIP(LABEL) \
834 (label_align[CODE_LABEL_NUMBER (LABEL) - min_labelno].max_skip)
836 /* For the benefit of port specific code do this also as a function. */
839 label_to_alignment (label)
840 rtx label;
842 return LABEL_TO_ALIGNMENT (label);
845 #ifdef HAVE_ATTR_length
846 /* The differences in addresses
847 between a branch and its target might grow or shrink depending on
848 the alignment the start insn of the range (the branch for a forward
849 branch or the label for a backward branch) starts out on; if these
850 differences are used naively, they can even oscillate infinitely.
851 We therefore want to compute a 'worst case' address difference that
852 is independent of the alignment the start insn of the range end
853 up on, and that is at least as large as the actual difference.
854 The function align_fuzz calculates the amount we have to add to the
855 naively computed difference, by traversing the part of the alignment
856 chain of the start insn of the range that is in front of the end insn
857 of the range, and considering for each alignment the maximum amount
858 that it might contribute to a size increase.
860 For casesi tables, we also want to know worst case minimum amounts of
861 address difference, in case a machine description wants to introduce
862 some common offset that is added to all offsets in a table.
863 For this purpose, align_fuzz with a growth argument of 0 comuptes the
864 appropriate adjustment. */
866 /* Compute the maximum delta by which the difference of the addresses of
867 START and END might grow / shrink due to a different address for start
868 which changes the size of alignment insns between START and END.
869 KNOWN_ALIGN_LOG is the alignment known for START.
870 GROWTH should be ~0 if the objective is to compute potential code size
871 increase, and 0 if the objective is to compute potential shrink.
872 The return value is undefined for any other value of GROWTH. */
874 static int
875 align_fuzz (start, end, known_align_log, growth)
876 rtx start, end;
877 int known_align_log;
878 unsigned growth;
880 int uid = INSN_UID (start);
881 rtx align_label;
882 int known_align = 1 << known_align_log;
883 int end_shuid = INSN_SHUID (end);
884 int fuzz = 0;
886 for (align_label = uid_align[uid]; align_label; align_label = uid_align[uid])
888 int align_addr, new_align;
890 uid = INSN_UID (align_label);
891 align_addr = INSN_ADDRESSES (uid) - insn_lengths[uid];
892 if (uid_shuid[uid] > end_shuid)
893 break;
894 known_align_log = LABEL_TO_ALIGNMENT (align_label);
895 new_align = 1 << known_align_log;
896 if (new_align < known_align)
897 continue;
898 fuzz += (-align_addr ^ growth) & (new_align - known_align);
899 known_align = new_align;
901 return fuzz;
904 /* Compute a worst-case reference address of a branch so that it
905 can be safely used in the presence of aligned labels. Since the
906 size of the branch itself is unknown, the size of the branch is
907 not included in the range. I.e. for a forward branch, the reference
908 address is the end address of the branch as known from the previous
909 branch shortening pass, minus a value to account for possible size
910 increase due to alignment. For a backward branch, it is the start
911 address of the branch as known from the current pass, plus a value
912 to account for possible size increase due to alignment.
913 NB.: Therefore, the maximum offset allowed for backward branches needs
914 to exclude the branch size. */
917 insn_current_reference_address (branch)
918 rtx branch;
920 rtx dest, seq;
921 int seq_uid;
923 if (! INSN_ADDRESSES_SET_P ())
924 return 0;
926 seq = NEXT_INSN (PREV_INSN (branch));
927 seq_uid = INSN_UID (seq);
928 if (GET_CODE (branch) != JUMP_INSN)
929 /* This can happen for example on the PA; the objective is to know the
930 offset to address something in front of the start of the function.
931 Thus, we can treat it like a backward branch.
932 We assume here that FUNCTION_BOUNDARY / BITS_PER_UNIT is larger than
933 any alignment we'd encounter, so we skip the call to align_fuzz. */
934 return insn_current_address;
935 dest = JUMP_LABEL (branch);
937 /* BRANCH has no proper alignment chain set, so use SEQ.
938 BRANCH also has no INSN_SHUID. */
939 if (INSN_SHUID (seq) < INSN_SHUID (dest))
941 /* Forward branch. */
942 return (insn_last_address + insn_lengths[seq_uid]
943 - align_fuzz (seq, dest, length_unit_log, ~0));
945 else
947 /* Backward branch. */
948 return (insn_current_address
949 + align_fuzz (dest, seq, length_unit_log, ~0));
952 #endif /* HAVE_ATTR_length */
954 void
955 compute_alignments ()
957 int i;
958 int log, max_skip, max_log;
960 if (label_align)
962 free (label_align);
963 label_align = 0;
966 max_labelno = max_label_num ();
967 min_labelno = get_first_label_num ();
968 label_align = (struct label_alignment *)
969 xcalloc (max_labelno - min_labelno + 1, sizeof (struct label_alignment));
971 /* If not optimizing or optimizing for size, don't assign any alignments. */
972 if (! optimize || optimize_size)
973 return;
975 for (i = 0; i < n_basic_blocks; i++)
977 basic_block bb = BASIC_BLOCK (i);
978 rtx label = bb->head;
979 int fallthru_frequency = 0, branch_frequency = 0, has_fallthru = 0;
980 edge e;
982 if (GET_CODE (label) != CODE_LABEL)
983 continue;
984 max_log = LABEL_ALIGN (label);
985 max_skip = LABEL_ALIGN_MAX_SKIP;
987 for (e = bb->pred; e; e = e->pred_next)
989 if (e->flags & EDGE_FALLTHRU)
990 has_fallthru = 1, fallthru_frequency += EDGE_FREQUENCY (e);
991 else
992 branch_frequency += EDGE_FREQUENCY (e);
995 /* There are two purposes to align block with no fallthru incoming edge:
996 1) to avoid fetch stalls when branch destination is near cache boundary
997 2) to improve cache effciency in case the previous block is not executed
998 (so it does not need to be in the cache).
1000 We to catch first case, we align frequently executed blocks.
1001 To catch the second, we align blocks that are executed more frequently
1002 than the predecessor and the predecessor is likely to not be executed
1003 when function is called. */
1005 if (!has_fallthru
1006 && (branch_frequency > BB_FREQ_MAX / 10
1007 || (bb->frequency > BASIC_BLOCK (i - 1)->frequency * 10
1008 && (BASIC_BLOCK (i - 1)->frequency
1009 <= ENTRY_BLOCK_PTR->frequency / 2))))
1011 log = JUMP_ALIGN (label);
1012 if (max_log < log)
1014 max_log = log;
1015 max_skip = JUMP_ALIGN_MAX_SKIP;
1018 /* In case block is frequent and reached mostly by non-fallthru edge,
1019 align it. It is most likely an first block of loop. */
1020 if (has_fallthru
1021 && branch_frequency + fallthru_frequency > BB_FREQ_MAX / 10
1022 && branch_frequency > fallthru_frequency * 5)
1024 log = LOOP_ALIGN (label);
1025 if (max_log < log)
1027 max_log = log;
1028 max_skip = LOOP_ALIGN_MAX_SKIP;
1031 LABEL_TO_ALIGNMENT (label) = max_log;
1032 LABEL_TO_MAX_SKIP (label) = max_skip;
1036 /* Make a pass over all insns and compute their actual lengths by shortening
1037 any branches of variable length if possible. */
1039 /* Give a default value for the lowest address in a function. */
1041 #ifndef FIRST_INSN_ADDRESS
1042 #define FIRST_INSN_ADDRESS 0
1043 #endif
1045 /* shorten_branches might be called multiple times: for example, the SH
1046 port splits out-of-range conditional branches in MACHINE_DEPENDENT_REORG.
1047 In order to do this, it needs proper length information, which it obtains
1048 by calling shorten_branches. This cannot be collapsed with
1049 shorten_branches itself into a single pass unless we also want to intergate
1050 reorg.c, since the branch splitting exposes new instructions with delay
1051 slots. */
1053 void
1054 shorten_branches (first)
1055 rtx first ATTRIBUTE_UNUSED;
1057 rtx insn;
1058 int max_uid;
1059 int i;
1060 int max_log;
1061 int max_skip;
1062 #ifdef HAVE_ATTR_length
1063 #define MAX_CODE_ALIGN 16
1064 rtx seq;
1065 int something_changed = 1;
1066 char *varying_length;
1067 rtx body;
1068 int uid;
1069 rtx align_tab[MAX_CODE_ALIGN];
1071 #endif
1073 /* Compute maximum UID and allocate label_align / uid_shuid. */
1074 max_uid = get_max_uid ();
1076 uid_shuid = (int *) xmalloc (max_uid * sizeof *uid_shuid);
1078 if (max_labelno != max_label_num ())
1080 int old = max_labelno;
1081 int n_labels;
1082 int n_old_labels;
1084 max_labelno = max_label_num ();
1086 n_labels = max_labelno - min_labelno + 1;
1087 n_old_labels = old - min_labelno + 1;
1089 label_align = (struct label_alignment *) xrealloc
1090 (label_align, n_labels * sizeof (struct label_alignment));
1092 /* Range of labels grows monotonically in the function. Abort here
1093 means that the initialization of array got lost. */
1094 if (n_old_labels > n_labels)
1095 abort ();
1097 memset (label_align + n_old_labels, 0,
1098 (n_labels - n_old_labels) * sizeof (struct label_alignment));
1101 /* Initialize label_align and set up uid_shuid to be strictly
1102 monotonically rising with insn order. */
1103 /* We use max_log here to keep track of the maximum alignment we want to
1104 impose on the next CODE_LABEL (or the current one if we are processing
1105 the CODE_LABEL itself). */
1107 max_log = 0;
1108 max_skip = 0;
1110 for (insn = get_insns (), i = 1; insn; insn = NEXT_INSN (insn))
1112 int log;
1114 INSN_SHUID (insn) = i++;
1115 if (INSN_P (insn))
1117 /* reorg might make the first insn of a loop being run once only,
1118 and delete the label in front of it. Then we want to apply
1119 the loop alignment to the new label created by reorg, which
1120 is separated by the former loop start insn from the
1121 NOTE_INSN_LOOP_BEG. */
1123 else if (GET_CODE (insn) == CODE_LABEL)
1125 rtx next;
1127 /* Merge in alignments computed by compute_alignments. */
1128 log = LABEL_TO_ALIGNMENT (insn);
1129 if (max_log < log)
1131 max_log = log;
1132 max_skip = LABEL_TO_MAX_SKIP (insn);
1135 log = LABEL_ALIGN (insn);
1136 if (max_log < log)
1138 max_log = log;
1139 max_skip = LABEL_ALIGN_MAX_SKIP;
1141 next = NEXT_INSN (insn);
1142 /* ADDR_VECs only take room if read-only data goes into the text
1143 section. */
1144 if (JUMP_TABLES_IN_TEXT_SECTION
1145 #if !defined(READONLY_DATA_SECTION)
1146 || 1
1147 #endif
1149 if (next && GET_CODE (next) == JUMP_INSN)
1151 rtx nextbody = PATTERN (next);
1152 if (GET_CODE (nextbody) == ADDR_VEC
1153 || GET_CODE (nextbody) == ADDR_DIFF_VEC)
1155 log = ADDR_VEC_ALIGN (next);
1156 if (max_log < log)
1158 max_log = log;
1159 max_skip = LABEL_ALIGN_MAX_SKIP;
1163 LABEL_TO_ALIGNMENT (insn) = max_log;
1164 LABEL_TO_MAX_SKIP (insn) = max_skip;
1165 max_log = 0;
1166 max_skip = 0;
1168 else if (GET_CODE (insn) == BARRIER)
1170 rtx label;
1172 for (label = insn; label && ! INSN_P (label);
1173 label = NEXT_INSN (label))
1174 if (GET_CODE (label) == CODE_LABEL)
1176 log = LABEL_ALIGN_AFTER_BARRIER (insn);
1177 if (max_log < log)
1179 max_log = log;
1180 max_skip = LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP;
1182 break;
1186 #ifdef HAVE_ATTR_length
1188 /* Allocate the rest of the arrays. */
1189 insn_lengths = (int *) xmalloc (max_uid * sizeof (*insn_lengths));
1190 insn_lengths_max_uid = max_uid;
1191 /* Syntax errors can lead to labels being outside of the main insn stream.
1192 Initialize insn_addresses, so that we get reproducible results. */
1193 INSN_ADDRESSES_ALLOC (max_uid);
1195 varying_length = (char *) xcalloc (max_uid, sizeof (char));
1197 /* Initialize uid_align. We scan instructions
1198 from end to start, and keep in align_tab[n] the last seen insn
1199 that does an alignment of at least n+1, i.e. the successor
1200 in the alignment chain for an insn that does / has a known
1201 alignment of n. */
1202 uid_align = (rtx *) xcalloc (max_uid, sizeof *uid_align);
1204 for (i = MAX_CODE_ALIGN; --i >= 0;)
1205 align_tab[i] = NULL_RTX;
1206 seq = get_last_insn ();
1207 for (; seq; seq = PREV_INSN (seq))
1209 int uid = INSN_UID (seq);
1210 int log;
1211 log = (GET_CODE (seq) == CODE_LABEL ? LABEL_TO_ALIGNMENT (seq) : 0);
1212 uid_align[uid] = align_tab[0];
1213 if (log)
1215 /* Found an alignment label. */
1216 uid_align[uid] = align_tab[log];
1217 for (i = log - 1; i >= 0; i--)
1218 align_tab[i] = seq;
1221 #ifdef CASE_VECTOR_SHORTEN_MODE
1222 if (optimize)
1224 /* Look for ADDR_DIFF_VECs, and initialize their minimum and maximum
1225 label fields. */
1227 int min_shuid = INSN_SHUID (get_insns ()) - 1;
1228 int max_shuid = INSN_SHUID (get_last_insn ()) + 1;
1229 int rel;
1231 for (insn = first; insn != 0; insn = NEXT_INSN (insn))
1233 rtx min_lab = NULL_RTX, max_lab = NULL_RTX, pat;
1234 int len, i, min, max, insn_shuid;
1235 int min_align;
1236 addr_diff_vec_flags flags;
1238 if (GET_CODE (insn) != JUMP_INSN
1239 || GET_CODE (PATTERN (insn)) != ADDR_DIFF_VEC)
1240 continue;
1241 pat = PATTERN (insn);
1242 len = XVECLEN (pat, 1);
1243 if (len <= 0)
1244 abort ();
1245 min_align = MAX_CODE_ALIGN;
1246 for (min = max_shuid, max = min_shuid, i = len - 1; i >= 0; i--)
1248 rtx lab = XEXP (XVECEXP (pat, 1, i), 0);
1249 int shuid = INSN_SHUID (lab);
1250 if (shuid < min)
1252 min = shuid;
1253 min_lab = lab;
1255 if (shuid > max)
1257 max = shuid;
1258 max_lab = lab;
1260 if (min_align > LABEL_TO_ALIGNMENT (lab))
1261 min_align = LABEL_TO_ALIGNMENT (lab);
1263 XEXP (pat, 2) = gen_rtx_LABEL_REF (VOIDmode, min_lab);
1264 XEXP (pat, 3) = gen_rtx_LABEL_REF (VOIDmode, max_lab);
1265 insn_shuid = INSN_SHUID (insn);
1266 rel = INSN_SHUID (XEXP (XEXP (pat, 0), 0));
1267 flags.min_align = min_align;
1268 flags.base_after_vec = rel > insn_shuid;
1269 flags.min_after_vec = min > insn_shuid;
1270 flags.max_after_vec = max > insn_shuid;
1271 flags.min_after_base = min > rel;
1272 flags.max_after_base = max > rel;
1273 ADDR_DIFF_VEC_FLAGS (pat) = flags;
1276 #endif /* CASE_VECTOR_SHORTEN_MODE */
1278 /* Compute initial lengths, addresses, and varying flags for each insn. */
1279 for (insn_current_address = FIRST_INSN_ADDRESS, insn = first;
1280 insn != 0;
1281 insn_current_address += insn_lengths[uid], insn = NEXT_INSN (insn))
1283 uid = INSN_UID (insn);
1285 insn_lengths[uid] = 0;
1287 if (GET_CODE (insn) == CODE_LABEL)
1289 int log = LABEL_TO_ALIGNMENT (insn);
1290 if (log)
1292 int align = 1 << log;
1293 int new_address = (insn_current_address + align - 1) & -align;
1294 insn_lengths[uid] = new_address - insn_current_address;
1298 INSN_ADDRESSES (uid) = insn_current_address;
1300 if (GET_CODE (insn) == NOTE || GET_CODE (insn) == BARRIER
1301 || GET_CODE (insn) == CODE_LABEL)
1302 continue;
1303 if (INSN_DELETED_P (insn))
1304 continue;
1306 body = PATTERN (insn);
1307 if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
1309 /* This only takes room if read-only data goes into the text
1310 section. */
1311 if (JUMP_TABLES_IN_TEXT_SECTION
1312 #if !defined(READONLY_DATA_SECTION)
1313 || 1
1314 #endif
1316 insn_lengths[uid] = (XVECLEN (body,
1317 GET_CODE (body) == ADDR_DIFF_VEC)
1318 * GET_MODE_SIZE (GET_MODE (body)));
1319 /* Alignment is handled by ADDR_VEC_ALIGN. */
1321 else if (GET_CODE (body) == ASM_INPUT || asm_noperands (body) >= 0)
1322 insn_lengths[uid] = asm_insn_count (body) * insn_default_length (insn);
1323 else if (GET_CODE (body) == SEQUENCE)
1325 int i;
1326 int const_delay_slots;
1327 #ifdef DELAY_SLOTS
1328 const_delay_slots = const_num_delay_slots (XVECEXP (body, 0, 0));
1329 #else
1330 const_delay_slots = 0;
1331 #endif
1332 /* Inside a delay slot sequence, we do not do any branch shortening
1333 if the shortening could change the number of delay slots
1334 of the branch. */
1335 for (i = 0; i < XVECLEN (body, 0); i++)
1337 rtx inner_insn = XVECEXP (body, 0, i);
1338 int inner_uid = INSN_UID (inner_insn);
1339 int inner_length;
1341 if (GET_CODE (body) == ASM_INPUT
1342 || asm_noperands (PATTERN (XVECEXP (body, 0, i))) >= 0)
1343 inner_length = (asm_insn_count (PATTERN (inner_insn))
1344 * insn_default_length (inner_insn));
1345 else
1346 inner_length = insn_default_length (inner_insn);
1348 insn_lengths[inner_uid] = inner_length;
1349 if (const_delay_slots)
1351 if ((varying_length[inner_uid]
1352 = insn_variable_length_p (inner_insn)) != 0)
1353 varying_length[uid] = 1;
1354 INSN_ADDRESSES (inner_uid) = (insn_current_address
1355 + insn_lengths[uid]);
1357 else
1358 varying_length[inner_uid] = 0;
1359 insn_lengths[uid] += inner_length;
1362 else if (GET_CODE (body) != USE && GET_CODE (body) != CLOBBER)
1364 insn_lengths[uid] = insn_default_length (insn);
1365 varying_length[uid] = insn_variable_length_p (insn);
1368 /* If needed, do any adjustment. */
1369 #ifdef ADJUST_INSN_LENGTH
1370 ADJUST_INSN_LENGTH (insn, insn_lengths[uid]);
1371 if (insn_lengths[uid] < 0)
1372 fatal_insn ("Negative insn length", insn);
1373 #endif
1376 /* Now loop over all the insns finding varying length insns. For each,
1377 get the current insn length. If it has changed, reflect the change.
1378 When nothing changes for a full pass, we are done. */
1380 while (something_changed)
1382 something_changed = 0;
1383 insn_current_align = MAX_CODE_ALIGN - 1;
1384 for (insn_current_address = FIRST_INSN_ADDRESS, insn = first;
1385 insn != 0;
1386 insn = NEXT_INSN (insn))
1388 int new_length;
1389 #ifdef ADJUST_INSN_LENGTH
1390 int tmp_length;
1391 #endif
1392 int length_align;
1394 uid = INSN_UID (insn);
1396 if (GET_CODE (insn) == CODE_LABEL)
1398 int log = LABEL_TO_ALIGNMENT (insn);
1399 if (log > insn_current_align)
1401 int align = 1 << log;
1402 int new_address= (insn_current_address + align - 1) & -align;
1403 insn_lengths[uid] = new_address - insn_current_address;
1404 insn_current_align = log;
1405 insn_current_address = new_address;
1407 else
1408 insn_lengths[uid] = 0;
1409 INSN_ADDRESSES (uid) = insn_current_address;
1410 continue;
1413 length_align = INSN_LENGTH_ALIGNMENT (insn);
1414 if (length_align < insn_current_align)
1415 insn_current_align = length_align;
1417 insn_last_address = INSN_ADDRESSES (uid);
1418 INSN_ADDRESSES (uid) = insn_current_address;
1420 #ifdef CASE_VECTOR_SHORTEN_MODE
1421 if (optimize && GET_CODE (insn) == JUMP_INSN
1422 && GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC)
1424 rtx body = PATTERN (insn);
1425 int old_length = insn_lengths[uid];
1426 rtx rel_lab = XEXP (XEXP (body, 0), 0);
1427 rtx min_lab = XEXP (XEXP (body, 2), 0);
1428 rtx max_lab = XEXP (XEXP (body, 3), 0);
1429 int rel_addr = INSN_ADDRESSES (INSN_UID (rel_lab));
1430 int min_addr = INSN_ADDRESSES (INSN_UID (min_lab));
1431 int max_addr = INSN_ADDRESSES (INSN_UID (max_lab));
1432 rtx prev;
1433 int rel_align = 0;
1434 addr_diff_vec_flags flags;
1436 /* Avoid automatic aggregate initialization. */
1437 flags = ADDR_DIFF_VEC_FLAGS (body);
1439 /* Try to find a known alignment for rel_lab. */
1440 for (prev = rel_lab;
1441 prev
1442 && ! insn_lengths[INSN_UID (prev)]
1443 && ! (varying_length[INSN_UID (prev)] & 1);
1444 prev = PREV_INSN (prev))
1445 if (varying_length[INSN_UID (prev)] & 2)
1447 rel_align = LABEL_TO_ALIGNMENT (prev);
1448 break;
1451 /* See the comment on addr_diff_vec_flags in rtl.h for the
1452 meaning of the flags values. base: REL_LAB vec: INSN */
1453 /* Anything after INSN has still addresses from the last
1454 pass; adjust these so that they reflect our current
1455 estimate for this pass. */
1456 if (flags.base_after_vec)
1457 rel_addr += insn_current_address - insn_last_address;
1458 if (flags.min_after_vec)
1459 min_addr += insn_current_address - insn_last_address;
1460 if (flags.max_after_vec)
1461 max_addr += insn_current_address - insn_last_address;
1462 /* We want to know the worst case, i.e. lowest possible value
1463 for the offset of MIN_LAB. If MIN_LAB is after REL_LAB,
1464 its offset is positive, and we have to be wary of code shrink;
1465 otherwise, it is negative, and we have to be vary of code
1466 size increase. */
1467 if (flags.min_after_base)
1469 /* If INSN is between REL_LAB and MIN_LAB, the size
1470 changes we are about to make can change the alignment
1471 within the observed offset, therefore we have to break
1472 it up into two parts that are independent. */
1473 if (! flags.base_after_vec && flags.min_after_vec)
1475 min_addr -= align_fuzz (rel_lab, insn, rel_align, 0);
1476 min_addr -= align_fuzz (insn, min_lab, 0, 0);
1478 else
1479 min_addr -= align_fuzz (rel_lab, min_lab, rel_align, 0);
1481 else
1483 if (flags.base_after_vec && ! flags.min_after_vec)
1485 min_addr -= align_fuzz (min_lab, insn, 0, ~0);
1486 min_addr -= align_fuzz (insn, rel_lab, 0, ~0);
1488 else
1489 min_addr -= align_fuzz (min_lab, rel_lab, 0, ~0);
1491 /* Likewise, determine the highest lowest possible value
1492 for the offset of MAX_LAB. */
1493 if (flags.max_after_base)
1495 if (! flags.base_after_vec && flags.max_after_vec)
1497 max_addr += align_fuzz (rel_lab, insn, rel_align, ~0);
1498 max_addr += align_fuzz (insn, max_lab, 0, ~0);
1500 else
1501 max_addr += align_fuzz (rel_lab, max_lab, rel_align, ~0);
1503 else
1505 if (flags.base_after_vec && ! flags.max_after_vec)
1507 max_addr += align_fuzz (max_lab, insn, 0, 0);
1508 max_addr += align_fuzz (insn, rel_lab, 0, 0);
1510 else
1511 max_addr += align_fuzz (max_lab, rel_lab, 0, 0);
1513 PUT_MODE (body, CASE_VECTOR_SHORTEN_MODE (min_addr - rel_addr,
1514 max_addr - rel_addr,
1515 body));
1516 if (JUMP_TABLES_IN_TEXT_SECTION
1517 #if !defined(READONLY_DATA_SECTION)
1518 || 1
1519 #endif
1522 insn_lengths[uid]
1523 = (XVECLEN (body, 1) * GET_MODE_SIZE (GET_MODE (body)));
1524 insn_current_address += insn_lengths[uid];
1525 if (insn_lengths[uid] != old_length)
1526 something_changed = 1;
1529 continue;
1531 #endif /* CASE_VECTOR_SHORTEN_MODE */
1533 if (! (varying_length[uid]))
1535 if (GET_CODE (insn) == INSN
1536 && GET_CODE (PATTERN (insn)) == SEQUENCE)
1538 int i;
1540 body = PATTERN (insn);
1541 for (i = 0; i < XVECLEN (body, 0); i++)
1543 rtx inner_insn = XVECEXP (body, 0, i);
1544 int inner_uid = INSN_UID (inner_insn);
1546 INSN_ADDRESSES (inner_uid) = insn_current_address;
1548 insn_current_address += insn_lengths[inner_uid];
1551 else
1552 insn_current_address += insn_lengths[uid];
1554 continue;
1557 if (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
1559 int i;
1561 body = PATTERN (insn);
1562 new_length = 0;
1563 for (i = 0; i < XVECLEN (body, 0); i++)
1565 rtx inner_insn = XVECEXP (body, 0, i);
1566 int inner_uid = INSN_UID (inner_insn);
1567 int inner_length;
1569 INSN_ADDRESSES (inner_uid) = insn_current_address;
1571 /* insn_current_length returns 0 for insns with a
1572 non-varying length. */
1573 if (! varying_length[inner_uid])
1574 inner_length = insn_lengths[inner_uid];
1575 else
1576 inner_length = insn_current_length (inner_insn);
1578 if (inner_length != insn_lengths[inner_uid])
1580 insn_lengths[inner_uid] = inner_length;
1581 something_changed = 1;
1583 insn_current_address += insn_lengths[inner_uid];
1584 new_length += inner_length;
1587 else
1589 new_length = insn_current_length (insn);
1590 insn_current_address += new_length;
1593 #ifdef ADJUST_INSN_LENGTH
1594 /* If needed, do any adjustment. */
1595 tmp_length = new_length;
1596 ADJUST_INSN_LENGTH (insn, new_length);
1597 insn_current_address += (new_length - tmp_length);
1598 #endif
1600 if (new_length != insn_lengths[uid])
1602 insn_lengths[uid] = new_length;
1603 something_changed = 1;
1606 /* For a non-optimizing compile, do only a single pass. */
1607 if (!optimize)
1608 break;
1611 free (varying_length);
1613 #endif /* HAVE_ATTR_length */
1616 #ifdef HAVE_ATTR_length
1617 /* Given the body of an INSN known to be generated by an ASM statement, return
1618 the number of machine instructions likely to be generated for this insn.
1619 This is used to compute its length. */
1621 static int
1622 asm_insn_count (body)
1623 rtx body;
1625 const char *template;
1626 int count = 1;
1628 if (GET_CODE (body) == ASM_INPUT)
1629 template = XSTR (body, 0);
1630 else
1631 template = decode_asm_operands (body, NULL, NULL, NULL, NULL);
1633 for (; *template; template++)
1634 if (IS_ASM_LOGICAL_LINE_SEPARATOR (*template) || *template == '\n')
1635 count++;
1637 return count;
1639 #endif
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'.
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 is nonzero if we should eliminate redundant
1649 test and compare insns. */
1651 void
1652 final_start_function (first, file, optimize)
1653 rtx first;
1654 FILE *file;
1655 int optimize ATTRIBUTE_UNUSED;
1657 block_depth = 0;
1659 this_is_asm_operands = 0;
1661 #ifdef NON_SAVING_SETJMP
1662 /* A function that calls setjmp should save and restore all the
1663 call-saved registers on a system where longjmp clobbers them. */
1664 if (NON_SAVING_SETJMP && current_function_calls_setjmp)
1666 int i;
1668 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1669 if (!call_used_regs[i])
1670 regs_ever_live[i] = 1;
1672 #endif
1674 if (NOTE_LINE_NUMBER (first) != NOTE_INSN_DELETED)
1675 notice_source_line (first);
1676 high_block_linenum = high_function_linenum = last_linenum;
1678 (*debug_hooks->begin_prologue) (last_linenum, last_filename);
1680 #if defined (DWARF2_UNWIND_INFO) || defined (IA64_UNWIND_INFO)
1681 if (write_symbols != DWARF2_DEBUG && write_symbols != VMS_AND_DWARF2_DEBUG)
1682 dwarf2out_begin_prologue (0, NULL);
1683 #endif
1685 #ifdef LEAF_REG_REMAP
1686 if (current_function_uses_only_leaf_regs)
1687 leaf_renumber_regs (first);
1688 #endif
1690 /* The Sun386i and perhaps other machines don't work right
1691 if the profiling code comes after the prologue. */
1692 #ifdef PROFILE_BEFORE_PROLOGUE
1693 if (profile_flag)
1694 profile_function (file);
1695 #endif /* PROFILE_BEFORE_PROLOGUE */
1697 #if defined (DWARF2_UNWIND_INFO) && defined (HAVE_prologue)
1698 if (dwarf2out_do_frame ())
1699 dwarf2out_frame_debug (NULL_RTX);
1700 #endif
1702 /* If debugging, assign block numbers to all of the blocks in this
1703 function. */
1704 if (write_symbols)
1706 remove_unnecessary_notes ();
1707 reorder_blocks ();
1708 number_blocks (current_function_decl);
1709 /* We never actually put out begin/end notes for the top-level
1710 block in the function. But, conceptually, that block is
1711 always needed. */
1712 TREE_ASM_WRITTEN (DECL_INITIAL (current_function_decl)) = 1;
1715 /* First output the function prologue: code to set up the stack frame. */
1716 (*targetm.asm_out.function_prologue) (file, get_frame_size ());
1718 #ifdef VMS_DEBUGGING_INFO
1719 /* Output label after the prologue of the function. */
1720 if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1721 vmsdbgout_after_prologue ();
1722 #endif
1724 /* If the machine represents the prologue as RTL, the profiling code must
1725 be emitted when NOTE_INSN_PROLOGUE_END is scanned. */
1726 #ifdef HAVE_prologue
1727 if (! HAVE_prologue)
1728 #endif
1729 profile_after_prologue (file);
1731 profile_label_no++;
1733 /* If we are doing basic block profiling, remember a printable version
1734 of the function name. */
1735 if (profile_block_flag)
1737 bb_func_label_num =
1738 add_bb_string ((*decl_printable_name) (current_function_decl, 2),
1739 FALSE);
1743 static void
1744 profile_after_prologue (file)
1745 FILE *file ATTRIBUTE_UNUSED;
1747 #ifdef FUNCTION_BLOCK_PROFILER
1748 if (profile_block_flag)
1750 FUNCTION_BLOCK_PROFILER (file, count_basic_blocks);
1752 #endif /* FUNCTION_BLOCK_PROFILER */
1754 #ifndef PROFILE_BEFORE_PROLOGUE
1755 if (profile_flag)
1756 profile_function (file);
1757 #endif /* not PROFILE_BEFORE_PROLOGUE */
1760 static void
1761 profile_function (file)
1762 FILE *file;
1764 #ifndef NO_PROFILE_COUNTERS
1765 int align = MIN (BIGGEST_ALIGNMENT, LONG_TYPE_SIZE);
1766 #endif
1767 #if defined(ASM_OUTPUT_REG_PUSH)
1768 #if defined(STRUCT_VALUE_INCOMING_REGNUM) || defined(STRUCT_VALUE_REGNUM)
1769 int sval = current_function_returns_struct;
1770 #endif
1771 #if defined(STATIC_CHAIN_INCOMING_REGNUM) || defined(STATIC_CHAIN_REGNUM)
1772 int cxt = current_function_needs_context;
1773 #endif
1774 #endif /* ASM_OUTPUT_REG_PUSH */
1776 #ifndef NO_PROFILE_COUNTERS
1777 data_section ();
1778 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
1779 ASM_OUTPUT_INTERNAL_LABEL (file, "LP", profile_label_no);
1780 assemble_integer (const0_rtx, LONG_TYPE_SIZE / BITS_PER_UNIT, align, 1);
1781 #endif
1783 function_section (current_function_decl);
1785 #if defined(STRUCT_VALUE_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1786 if (sval)
1787 ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_INCOMING_REGNUM);
1788 #else
1789 #if defined(STRUCT_VALUE_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1790 if (sval)
1792 ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_REGNUM);
1794 #endif
1795 #endif
1797 #if defined(STATIC_CHAIN_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1798 if (cxt)
1799 ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_INCOMING_REGNUM);
1800 #else
1801 #if defined(STATIC_CHAIN_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1802 if (cxt)
1804 ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_REGNUM);
1806 #endif
1807 #endif
1809 FUNCTION_PROFILER (file, profile_label_no);
1811 #if defined(STATIC_CHAIN_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1812 if (cxt)
1813 ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_INCOMING_REGNUM);
1814 #else
1815 #if defined(STATIC_CHAIN_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1816 if (cxt)
1818 ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_REGNUM);
1820 #endif
1821 #endif
1823 #if defined(STRUCT_VALUE_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1824 if (sval)
1825 ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_INCOMING_REGNUM);
1826 #else
1827 #if defined(STRUCT_VALUE_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1828 if (sval)
1830 ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_REGNUM);
1832 #endif
1833 #endif
1836 /* Output assembler code for the end of a function.
1837 For clarity, args are same as those of `final_start_function'
1838 even though not all of them are needed. */
1840 void
1841 final_end_function ()
1843 app_disable ();
1845 (*debug_hooks->end_function) (high_function_linenum);
1847 /* Finally, output the function epilogue:
1848 code to restore the stack frame and return to the caller. */
1849 (*targetm.asm_out.function_epilogue) (asm_out_file, get_frame_size ());
1851 /* And debug output. */
1852 (*debug_hooks->end_epilogue) ();
1854 #if defined (DWARF2_UNWIND_INFO)
1855 if (write_symbols != DWARF2_DEBUG && write_symbols != VMS_AND_DWARF2_DEBUG
1856 && dwarf2out_do_frame ())
1857 dwarf2out_end_epilogue ();
1858 #endif
1860 bb_func_label_num = -1; /* not in function, nuke label # */
1863 /* Add a block to the linked list that remembers the current line/file/function
1864 for basic block profiling. Emit the label in front of the basic block and
1865 the instructions that increment the count field. */
1867 static void
1868 add_bb (file)
1869 FILE *file;
1871 struct bb_list *ptr =
1872 (struct bb_list *) permalloc (sizeof (struct bb_list));
1874 /* Add basic block to linked list. */
1875 ptr->next = 0;
1876 ptr->line_num = last_linenum;
1877 ptr->file_label_num = bb_file_label_num;
1878 ptr->func_label_num = bb_func_label_num;
1879 *bb_tail = ptr;
1880 bb_tail = &ptr->next;
1882 /* Enable the table of basic-block use counts
1883 to point at the code it applies to. */
1884 ASM_OUTPUT_INTERNAL_LABEL (file, "LPB", count_basic_blocks);
1886 /* Before first insn of this basic block, increment the
1887 count of times it was entered. */
1888 #ifdef BLOCK_PROFILER
1889 BLOCK_PROFILER (file, count_basic_blocks);
1890 #endif
1891 #ifdef HAVE_cc0
1892 CC_STATUS_INIT;
1893 #endif
1895 new_block = 0;
1896 count_basic_blocks++;
1899 /* Add a string to be used for basic block profiling. */
1901 static int
1902 add_bb_string (string, perm_p)
1903 const char *string;
1904 int perm_p;
1906 int len;
1907 struct bb_str *ptr = 0;
1909 if (!string)
1911 string = "<unknown>";
1912 perm_p = TRUE;
1915 /* Allocate a new string if the current string isn't permanent. If
1916 the string is permanent search for the same string in other
1917 allocations. */
1919 len = strlen (string) + 1;
1920 if (!perm_p)
1922 char *p = (char *) permalloc (len);
1923 memcpy (p, string, len);
1924 string = p;
1926 else
1927 for (ptr = sbb_head; ptr != (struct bb_str *) 0; ptr = ptr->next)
1928 if (ptr->string == string)
1929 break;
1931 /* Allocate a new string block if we need to. */
1932 if (!ptr)
1934 ptr = (struct bb_str *) permalloc (sizeof (*ptr));
1935 ptr->next = 0;
1936 ptr->length = len;
1937 ptr->label_num = sbb_label_num++;
1938 ptr->string = string;
1939 *sbb_tail = ptr;
1940 sbb_tail = &ptr->next;
1943 return ptr->label_num;
1946 /* Output assembler code for some insns: all or part of a function.
1947 For description of args, see `final_start_function', above.
1949 PRESCAN is 1 if we are not really outputting,
1950 just scanning as if we were outputting.
1951 Prescanning deletes and rearranges insns just like ordinary output.
1952 PRESCAN is -2 if we are outputting after having prescanned.
1953 In this case, don't try to delete or rearrange insns
1954 because that has already been done.
1955 Prescanning is done only on certain machines. */
1957 void
1958 final (first, file, optimize, prescan)
1959 rtx first;
1960 FILE *file;
1961 int optimize;
1962 int prescan;
1964 rtx insn;
1965 int max_line = 0;
1966 int max_uid = 0;
1968 last_ignored_compare = 0;
1969 new_block = 1;
1971 /* Make a map indicating which line numbers appear in this function.
1972 When producing SDB debugging info, delete troublesome line number
1973 notes from inlined functions in other files as well as duplicate
1974 line number notes. */
1975 #ifdef SDB_DEBUGGING_INFO
1976 if (write_symbols == SDB_DEBUG)
1978 rtx last = 0;
1979 for (insn = first; insn; insn = NEXT_INSN (insn))
1980 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
1982 if ((RTX_INTEGRATED_P (insn)
1983 && strcmp (NOTE_SOURCE_FILE (insn), main_input_filename) != 0)
1984 || (last != 0
1985 && NOTE_LINE_NUMBER (insn) == NOTE_LINE_NUMBER (last)
1986 && NOTE_SOURCE_FILE (insn) == NOTE_SOURCE_FILE (last)))
1988 delete_insn (insn); /* Use delete_note. */
1989 continue;
1991 last = insn;
1992 if (NOTE_LINE_NUMBER (insn) > max_line)
1993 max_line = NOTE_LINE_NUMBER (insn);
1996 else
1997 #endif
1999 for (insn = first; insn; insn = NEXT_INSN (insn))
2000 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > max_line)
2001 max_line = NOTE_LINE_NUMBER (insn);
2004 line_note_exists = (char *) xcalloc (max_line + 1, sizeof (char));
2006 for (insn = first; insn; insn = NEXT_INSN (insn))
2008 if (INSN_UID (insn) > max_uid) /* find largest UID */
2009 max_uid = INSN_UID (insn);
2010 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
2011 line_note_exists[NOTE_LINE_NUMBER (insn)] = 1;
2012 #ifdef HAVE_cc0
2013 /* If CC tracking across branches is enabled, record the insn which
2014 jumps to each branch only reached from one place. */
2015 if (optimize && GET_CODE (insn) == JUMP_INSN)
2017 rtx lab = JUMP_LABEL (insn);
2018 if (lab && LABEL_NUSES (lab) == 1)
2020 LABEL_REFS (lab) = insn;
2023 #endif
2026 init_recog ();
2028 CC_STATUS_INIT;
2030 /* Output the insns. */
2031 for (insn = NEXT_INSN (first); insn;)
2033 #ifdef HAVE_ATTR_length
2034 if ((unsigned) INSN_UID (insn) >= INSN_ADDRESSES_SIZE ())
2036 #ifdef STACK_REGS
2037 /* Irritatingly, the reg-stack pass is creating new instructions
2038 and because of REG_DEAD note abuse it has to run after
2039 shorten_branches. Fake address of -1 then. */
2040 insn_current_address = -1;
2041 #else
2042 /* This can be triggered by bugs elsewhere in the compiler if
2043 new insns are created after init_insn_lengths is called. */
2044 abort ();
2045 #endif
2047 else
2048 insn_current_address = INSN_ADDRESSES (INSN_UID (insn));
2049 #endif /* HAVE_ATTR_length */
2051 insn = final_scan_insn (insn, file, optimize, prescan, 0);
2054 /* Do basic-block profiling here
2055 if the last insn was a conditional branch. */
2056 if (profile_block_flag && new_block)
2057 add_bb (file);
2059 free (line_note_exists);
2060 line_note_exists = NULL;
2063 const char *
2064 get_insn_template (code, insn)
2065 int code;
2066 rtx insn;
2068 const void *output = insn_data[code].output;
2069 switch (insn_data[code].output_format)
2071 case INSN_OUTPUT_FORMAT_SINGLE:
2072 return (const char *) output;
2073 case INSN_OUTPUT_FORMAT_MULTI:
2074 return ((const char *const *) output)[which_alternative];
2075 case INSN_OUTPUT_FORMAT_FUNCTION:
2076 if (insn == NULL)
2077 abort ();
2078 return (*(insn_output_fn) output) (recog_data.operand, insn);
2080 default:
2081 abort ();
2085 /* The final scan for one insn, INSN.
2086 Args are same as in `final', except that INSN
2087 is the insn being scanned.
2088 Value returned is the next insn to be scanned.
2090 NOPEEPHOLES is the flag to disallow peephole processing (currently
2091 used for within delayed branch sequence output). */
2094 final_scan_insn (insn, file, optimize, prescan, nopeepholes)
2095 rtx insn;
2096 FILE *file;
2097 int optimize ATTRIBUTE_UNUSED;
2098 int prescan;
2099 int nopeepholes ATTRIBUTE_UNUSED;
2101 #ifdef HAVE_cc0
2102 rtx set;
2103 #endif
2105 insn_counter++;
2107 /* Ignore deleted insns. These can occur when we split insns (due to a
2108 template of "#") while not optimizing. */
2109 if (INSN_DELETED_P (insn))
2110 return NEXT_INSN (insn);
2112 switch (GET_CODE (insn))
2114 case NOTE:
2115 if (prescan > 0)
2116 break;
2118 switch (NOTE_LINE_NUMBER (insn))
2120 case NOTE_INSN_DELETED:
2121 case NOTE_INSN_LOOP_BEG:
2122 case NOTE_INSN_LOOP_END:
2123 case NOTE_INSN_LOOP_CONT:
2124 case NOTE_INSN_LOOP_VTOP:
2125 case NOTE_INSN_FUNCTION_END:
2126 case NOTE_INSN_REPEATED_LINE_NUMBER:
2127 case NOTE_INSN_RANGE_BEG:
2128 case NOTE_INSN_RANGE_END:
2129 case NOTE_INSN_LIVE:
2130 case NOTE_INSN_EXPECTED_VALUE:
2131 break;
2133 case NOTE_INSN_BASIC_BLOCK:
2134 #ifdef IA64_UNWIND_INFO
2135 IA64_UNWIND_EMIT (asm_out_file, insn);
2136 #endif
2137 if (flag_debug_asm)
2138 fprintf (asm_out_file, "\t%s basic block %d\n",
2139 ASM_COMMENT_START, NOTE_BASIC_BLOCK (insn)->index);
2140 break;
2142 case NOTE_INSN_EH_REGION_BEG:
2143 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LEHB",
2144 NOTE_EH_HANDLER (insn));
2145 break;
2147 case NOTE_INSN_EH_REGION_END:
2148 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LEHE",
2149 NOTE_EH_HANDLER (insn));
2150 break;
2152 case NOTE_INSN_PROLOGUE_END:
2153 (*targetm.asm_out.function_end_prologue) (file);
2154 profile_after_prologue (file);
2155 break;
2157 case NOTE_INSN_EPILOGUE_BEG:
2158 (*targetm.asm_out.function_begin_epilogue) (file);
2159 break;
2161 case NOTE_INSN_FUNCTION_BEG:
2162 app_disable ();
2163 (*debug_hooks->end_prologue) (last_linenum);
2164 break;
2166 case NOTE_INSN_BLOCK_BEG:
2167 if (debug_info_level == DINFO_LEVEL_NORMAL
2168 || debug_info_level == DINFO_LEVEL_VERBOSE
2169 || write_symbols == DWARF_DEBUG
2170 || write_symbols == DWARF2_DEBUG
2171 || write_symbols == VMS_AND_DWARF2_DEBUG
2172 || write_symbols == VMS_DEBUG)
2174 int n = BLOCK_NUMBER (NOTE_BLOCK (insn));
2176 app_disable ();
2177 ++block_depth;
2178 high_block_linenum = last_linenum;
2180 /* Output debugging info about the symbol-block beginning. */
2181 (*debug_hooks->begin_block) (last_linenum, n);
2183 /* Mark this block as output. */
2184 TREE_ASM_WRITTEN (NOTE_BLOCK (insn)) = 1;
2186 break;
2188 case NOTE_INSN_BLOCK_END:
2189 if (debug_info_level == DINFO_LEVEL_NORMAL
2190 || debug_info_level == DINFO_LEVEL_VERBOSE
2191 || write_symbols == DWARF_DEBUG
2192 || write_symbols == DWARF2_DEBUG
2193 || write_symbols == VMS_AND_DWARF2_DEBUG
2194 || write_symbols == VMS_DEBUG)
2196 int n = BLOCK_NUMBER (NOTE_BLOCK (insn));
2198 app_disable ();
2200 /* End of a symbol-block. */
2201 --block_depth;
2202 if (block_depth < 0)
2203 abort ();
2205 (*debug_hooks->end_block) (high_block_linenum, n);
2207 break;
2209 case NOTE_INSN_DELETED_LABEL:
2210 /* Emit the label. We may have deleted the CODE_LABEL because
2211 the label could be proved to be unreachable, though still
2212 referenced (in the form of having its address taken. */
2213 ASM_OUTPUT_DEBUG_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
2214 break;
2216 case 0:
2217 break;
2219 default:
2220 if (NOTE_LINE_NUMBER (insn) <= 0)
2221 abort ();
2223 /* This note is a line-number. */
2225 rtx note;
2226 int note_after = 0;
2228 /* If there is anything real after this note, output it.
2229 If another line note follows, omit this one. */
2230 for (note = NEXT_INSN (insn); note; note = NEXT_INSN (note))
2232 if (GET_CODE (note) != NOTE && GET_CODE (note) != CODE_LABEL)
2233 break;
2235 /* These types of notes can be significant
2236 so make sure the preceding line number stays. */
2237 else if (GET_CODE (note) == NOTE
2238 && (NOTE_LINE_NUMBER (note) == NOTE_INSN_BLOCK_BEG
2239 || NOTE_LINE_NUMBER (note) == NOTE_INSN_BLOCK_END
2240 || NOTE_LINE_NUMBER (note) == NOTE_INSN_FUNCTION_BEG))
2241 break;
2242 else if (GET_CODE (note) == NOTE && NOTE_LINE_NUMBER (note) > 0)
2244 /* Another line note follows; we can delete this note
2245 if no intervening line numbers have notes elsewhere. */
2246 int num;
2247 for (num = NOTE_LINE_NUMBER (insn) + 1;
2248 num < NOTE_LINE_NUMBER (note);
2249 num++)
2250 if (line_note_exists[num])
2251 break;
2253 if (num >= NOTE_LINE_NUMBER (note))
2254 note_after = 1;
2255 break;
2259 /* Output this line note if it is the first or the last line
2260 note in a row. */
2261 if (!note_after)
2263 notice_source_line (insn);
2264 (*debug_hooks->source_line) (last_linenum, last_filename);
2267 break;
2269 break;
2271 case BARRIER:
2272 #if defined (DWARF2_UNWIND_INFO)
2273 if (dwarf2out_do_frame ())
2274 dwarf2out_frame_debug (insn);
2275 #endif
2276 break;
2278 case CODE_LABEL:
2279 /* The target port might emit labels in the output function for
2280 some insn, e.g. sh.c output_branchy_insn. */
2281 if (CODE_LABEL_NUMBER (insn) <= max_labelno)
2283 int align = LABEL_TO_ALIGNMENT (insn);
2284 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
2285 int max_skip = LABEL_TO_MAX_SKIP (insn);
2286 #endif
2288 if (align && NEXT_INSN (insn))
2290 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
2291 ASM_OUTPUT_MAX_SKIP_ALIGN (file, align, max_skip);
2292 #else
2293 ASM_OUTPUT_ALIGN (file, align);
2294 #endif
2297 #ifdef HAVE_cc0
2298 CC_STATUS_INIT;
2299 /* If this label is reached from only one place, set the condition
2300 codes from the instruction just before the branch. */
2302 /* Disabled because some insns set cc_status in the C output code
2303 and NOTICE_UPDATE_CC alone can set incorrect status. */
2304 if (0 /* optimize && LABEL_NUSES (insn) == 1*/)
2306 rtx jump = LABEL_REFS (insn);
2307 rtx barrier = prev_nonnote_insn (insn);
2308 rtx prev;
2309 /* If the LABEL_REFS field of this label has been set to point
2310 at a branch, the predecessor of the branch is a regular
2311 insn, and that branch is the only way to reach this label,
2312 set the condition codes based on the branch and its
2313 predecessor. */
2314 if (barrier && GET_CODE (barrier) == BARRIER
2315 && jump && GET_CODE (jump) == JUMP_INSN
2316 && (prev = prev_nonnote_insn (jump))
2317 && GET_CODE (prev) == INSN)
2319 NOTICE_UPDATE_CC (PATTERN (prev), prev);
2320 NOTICE_UPDATE_CC (PATTERN (jump), jump);
2323 #endif
2324 if (prescan > 0)
2325 break;
2326 new_block = 1;
2328 #ifdef FINAL_PRESCAN_LABEL
2329 FINAL_PRESCAN_INSN (insn, NULL, 0);
2330 #endif
2332 if (LABEL_NAME (insn))
2333 (*debug_hooks->label) (insn);
2335 if (app_on)
2337 fputs (ASM_APP_OFF, file);
2338 app_on = 0;
2340 if (NEXT_INSN (insn) != 0
2341 && GET_CODE (NEXT_INSN (insn)) == JUMP_INSN)
2343 rtx nextbody = PATTERN (NEXT_INSN (insn));
2345 /* If this label is followed by a jump-table,
2346 make sure we put the label in the read-only section. Also
2347 possibly write the label and jump table together. */
2349 if (GET_CODE (nextbody) == ADDR_VEC
2350 || GET_CODE (nextbody) == ADDR_DIFF_VEC)
2352 #if defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC)
2353 /* In this case, the case vector is being moved by the
2354 target, so don't output the label at all. Leave that
2355 to the back end macros. */
2356 #else
2357 if (! JUMP_TABLES_IN_TEXT_SECTION)
2359 int log_align;
2361 readonly_data_section ();
2363 #ifdef ADDR_VEC_ALIGN
2364 log_align = ADDR_VEC_ALIGN (NEXT_INSN (insn));
2365 #else
2366 log_align = exact_log2 (BIGGEST_ALIGNMENT / BITS_PER_UNIT);
2367 #endif
2368 ASM_OUTPUT_ALIGN (file, log_align);
2370 else
2371 function_section (current_function_decl);
2373 #ifdef ASM_OUTPUT_CASE_LABEL
2374 ASM_OUTPUT_CASE_LABEL (file, "L", CODE_LABEL_NUMBER (insn),
2375 NEXT_INSN (insn));
2376 #else
2377 if (LABEL_ALTERNATE_NAME (insn))
2378 ASM_OUTPUT_ALTERNATE_LABEL_NAME (file, insn);
2379 else
2380 ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
2381 #endif
2382 #endif
2383 break;
2386 if (LABEL_ALTERNATE_NAME (insn))
2387 ASM_OUTPUT_ALTERNATE_LABEL_NAME (file, insn);
2388 else
2389 ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
2390 break;
2392 default:
2394 rtx body = PATTERN (insn);
2395 int insn_code_number;
2396 const char *template;
2397 rtx note;
2399 /* An INSN, JUMP_INSN or CALL_INSN.
2400 First check for special kinds that recog doesn't recognize. */
2402 if (GET_CODE (body) == USE /* These are just declarations */
2403 || GET_CODE (body) == CLOBBER)
2404 break;
2406 #ifdef HAVE_cc0
2407 /* If there is a REG_CC_SETTER note on this insn, it means that
2408 the setting of the condition code was done in the delay slot
2409 of the insn that branched here. So recover the cc status
2410 from the insn that set it. */
2412 note = find_reg_note (insn, REG_CC_SETTER, NULL_RTX);
2413 if (note)
2415 NOTICE_UPDATE_CC (PATTERN (XEXP (note, 0)), XEXP (note, 0));
2416 cc_prev_status = cc_status;
2418 #endif
2420 /* Detect insns that are really jump-tables
2421 and output them as such. */
2423 if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
2425 #if !(defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC))
2426 int vlen, idx;
2427 #endif
2429 if (prescan > 0)
2430 break;
2432 if (app_on)
2434 fputs (ASM_APP_OFF, file);
2435 app_on = 0;
2438 #if defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC)
2439 if (GET_CODE (body) == ADDR_VEC)
2441 #ifdef ASM_OUTPUT_ADDR_VEC
2442 ASM_OUTPUT_ADDR_VEC (PREV_INSN (insn), body);
2443 #else
2444 abort ();
2445 #endif
2447 else
2449 #ifdef ASM_OUTPUT_ADDR_DIFF_VEC
2450 ASM_OUTPUT_ADDR_DIFF_VEC (PREV_INSN (insn), body);
2451 #else
2452 abort ();
2453 #endif
2455 #else
2456 vlen = XVECLEN (body, GET_CODE (body) == ADDR_DIFF_VEC);
2457 for (idx = 0; idx < vlen; idx++)
2459 if (GET_CODE (body) == ADDR_VEC)
2461 #ifdef ASM_OUTPUT_ADDR_VEC_ELT
2462 ASM_OUTPUT_ADDR_VEC_ELT
2463 (file, CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 0, idx), 0)));
2464 #else
2465 abort ();
2466 #endif
2468 else
2470 #ifdef ASM_OUTPUT_ADDR_DIFF_ELT
2471 ASM_OUTPUT_ADDR_DIFF_ELT
2472 (file,
2473 body,
2474 CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 1, idx), 0)),
2475 CODE_LABEL_NUMBER (XEXP (XEXP (body, 0), 0)));
2476 #else
2477 abort ();
2478 #endif
2481 #ifdef ASM_OUTPUT_CASE_END
2482 ASM_OUTPUT_CASE_END (file,
2483 CODE_LABEL_NUMBER (PREV_INSN (insn)),
2484 insn);
2485 #endif
2486 #endif
2488 function_section (current_function_decl);
2490 break;
2493 /* Do basic-block profiling when we reach a new block.
2494 Done here to avoid jump tables. */
2495 if (profile_block_flag && new_block)
2496 add_bb (file);
2498 if (GET_CODE (body) == ASM_INPUT)
2500 const char *string = XSTR (body, 0);
2502 /* There's no telling what that did to the condition codes. */
2503 CC_STATUS_INIT;
2504 if (prescan > 0)
2505 break;
2507 if (string[0])
2509 if (! app_on)
2511 fputs (ASM_APP_ON, file);
2512 app_on = 1;
2514 fprintf (asm_out_file, "\t%s\n", string);
2516 break;
2519 /* Detect `asm' construct with operands. */
2520 if (asm_noperands (body) >= 0)
2522 unsigned int noperands = asm_noperands (body);
2523 rtx *ops = (rtx *) alloca (noperands * sizeof (rtx));
2524 const char *string;
2526 /* There's no telling what that did to the condition codes. */
2527 CC_STATUS_INIT;
2528 if (prescan > 0)
2529 break;
2531 /* Get out the operand values. */
2532 string = decode_asm_operands (body, ops, NULL, NULL, NULL);
2533 /* Inhibit aborts on what would otherwise be compiler bugs. */
2534 insn_noperands = noperands;
2535 this_is_asm_operands = insn;
2537 /* Output the insn using them. */
2538 if (string[0])
2540 if (! app_on)
2542 fputs (ASM_APP_ON, file);
2543 app_on = 1;
2545 output_asm_insn (string, ops);
2548 this_is_asm_operands = 0;
2549 break;
2552 if (prescan <= 0 && app_on)
2554 fputs (ASM_APP_OFF, file);
2555 app_on = 0;
2558 if (GET_CODE (body) == SEQUENCE)
2560 /* A delayed-branch sequence */
2561 int i;
2562 rtx next;
2564 if (prescan > 0)
2565 break;
2566 final_sequence = body;
2568 /* The first insn in this SEQUENCE might be a JUMP_INSN that will
2569 force the restoration of a comparison that was previously
2570 thought unnecessary. If that happens, cancel this sequence
2571 and cause that insn to be restored. */
2573 next = final_scan_insn (XVECEXP (body, 0, 0), file, 0, prescan, 1);
2574 if (next != XVECEXP (body, 0, 1))
2576 final_sequence = 0;
2577 return next;
2580 for (i = 1; i < XVECLEN (body, 0); i++)
2582 rtx insn = XVECEXP (body, 0, i);
2583 rtx next = NEXT_INSN (insn);
2584 /* We loop in case any instruction in a delay slot gets
2585 split. */
2587 insn = final_scan_insn (insn, file, 0, prescan, 1);
2588 while (insn != next);
2590 #ifdef DBR_OUTPUT_SEQEND
2591 DBR_OUTPUT_SEQEND (file);
2592 #endif
2593 final_sequence = 0;
2595 /* If the insn requiring the delay slot was a CALL_INSN, the
2596 insns in the delay slot are actually executed before the
2597 called function. Hence we don't preserve any CC-setting
2598 actions in these insns and the CC must be marked as being
2599 clobbered by the function. */
2600 if (GET_CODE (XVECEXP (body, 0, 0)) == CALL_INSN)
2602 CC_STATUS_INIT;
2605 /* Following a conditional branch sequence, we have a new basic
2606 block. */
2607 if (profile_block_flag)
2609 rtx insn = XVECEXP (body, 0, 0);
2610 rtx body = PATTERN (insn);
2612 if ((GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == SET
2613 && GET_CODE (SET_SRC (body)) != LABEL_REF)
2614 || (GET_CODE (insn) == JUMP_INSN
2615 && GET_CODE (body) == PARALLEL
2616 && GET_CODE (XVECEXP (body, 0, 0)) == SET
2617 && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) != LABEL_REF))
2618 new_block = 1;
2620 break;
2623 /* We have a real machine instruction as rtl. */
2625 body = PATTERN (insn);
2627 #ifdef HAVE_cc0
2628 set = single_set (insn);
2630 /* Check for redundant test and compare instructions
2631 (when the condition codes are already set up as desired).
2632 This is done only when optimizing; if not optimizing,
2633 it should be possible for the user to alter a variable
2634 with the debugger in between statements
2635 and the next statement should reexamine the variable
2636 to compute the condition codes. */
2638 if (optimize)
2640 #if 0
2641 rtx set = single_set (insn);
2642 #endif
2644 if (set
2645 && GET_CODE (SET_DEST (set)) == CC0
2646 && insn != last_ignored_compare)
2648 if (GET_CODE (SET_SRC (set)) == SUBREG)
2649 SET_SRC (set) = alter_subreg (&SET_SRC (set));
2650 else if (GET_CODE (SET_SRC (set)) == COMPARE)
2652 if (GET_CODE (XEXP (SET_SRC (set), 0)) == SUBREG)
2653 XEXP (SET_SRC (set), 0)
2654 = alter_subreg (&XEXP (SET_SRC (set), 0));
2655 if (GET_CODE (XEXP (SET_SRC (set), 1)) == SUBREG)
2656 XEXP (SET_SRC (set), 1)
2657 = alter_subreg (&XEXP (SET_SRC (set), 1));
2659 if ((cc_status.value1 != 0
2660 && rtx_equal_p (SET_SRC (set), cc_status.value1))
2661 || (cc_status.value2 != 0
2662 && rtx_equal_p (SET_SRC (set), cc_status.value2)))
2664 /* Don't delete insn if it has an addressing side-effect. */
2665 if (! FIND_REG_INC_NOTE (insn, 0)
2666 /* or if anything in it is volatile. */
2667 && ! volatile_refs_p (PATTERN (insn)))
2669 /* We don't really delete the insn; just ignore it. */
2670 last_ignored_compare = insn;
2671 break;
2676 #endif
2678 /* Following a conditional branch, we have a new basic block.
2679 But if we are inside a sequence, the new block starts after the
2680 last insn of the sequence. */
2681 if (profile_block_flag && final_sequence == 0
2682 && ((GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == SET
2683 && GET_CODE (SET_SRC (body)) != LABEL_REF)
2684 || (GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == PARALLEL
2685 && GET_CODE (XVECEXP (body, 0, 0)) == SET
2686 && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) != LABEL_REF)))
2687 new_block = 1;
2689 #ifndef STACK_REGS
2690 /* Don't bother outputting obvious no-ops, even without -O.
2691 This optimization is fast and doesn't interfere with debugging.
2692 Don't do this if the insn is in a delay slot, since this
2693 will cause an improper number of delay insns to be written. */
2694 if (final_sequence == 0
2695 && prescan >= 0
2696 && GET_CODE (insn) == INSN && GET_CODE (body) == SET
2697 && GET_CODE (SET_SRC (body)) == REG
2698 && GET_CODE (SET_DEST (body)) == REG
2699 && REGNO (SET_SRC (body)) == REGNO (SET_DEST (body)))
2700 break;
2701 #endif
2703 #ifdef HAVE_cc0
2704 /* If this is a conditional branch, maybe modify it
2705 if the cc's are in a nonstandard state
2706 so that it accomplishes the same thing that it would
2707 do straightforwardly if the cc's were set up normally. */
2709 if (cc_status.flags != 0
2710 && GET_CODE (insn) == JUMP_INSN
2711 && GET_CODE (body) == SET
2712 && SET_DEST (body) == pc_rtx
2713 && GET_CODE (SET_SRC (body)) == IF_THEN_ELSE
2714 && GET_RTX_CLASS (GET_CODE (XEXP (SET_SRC (body), 0))) == '<'
2715 && XEXP (XEXP (SET_SRC (body), 0), 0) == cc0_rtx
2716 /* This is done during prescan; it is not done again
2717 in final scan when prescan has been done. */
2718 && prescan >= 0)
2720 /* This function may alter the contents of its argument
2721 and clear some of the cc_status.flags bits.
2722 It may also return 1 meaning condition now always true
2723 or -1 meaning condition now always false
2724 or 2 meaning condition nontrivial but altered. */
2725 int result = alter_cond (XEXP (SET_SRC (body), 0));
2726 /* If condition now has fixed value, replace the IF_THEN_ELSE
2727 with its then-operand or its else-operand. */
2728 if (result == 1)
2729 SET_SRC (body) = XEXP (SET_SRC (body), 1);
2730 if (result == -1)
2731 SET_SRC (body) = XEXP (SET_SRC (body), 2);
2733 /* The jump is now either unconditional or a no-op.
2734 If it has become a no-op, don't try to output it.
2735 (It would not be recognized.) */
2736 if (SET_SRC (body) == pc_rtx)
2738 delete_insn (insn);
2739 break;
2741 else if (GET_CODE (SET_SRC (body)) == RETURN)
2742 /* Replace (set (pc) (return)) with (return). */
2743 PATTERN (insn) = body = SET_SRC (body);
2745 /* Rerecognize the instruction if it has changed. */
2746 if (result != 0)
2747 INSN_CODE (insn) = -1;
2750 /* Make same adjustments to instructions that examine the
2751 condition codes without jumping and instructions that
2752 handle conditional moves (if this machine has either one). */
2754 if (cc_status.flags != 0
2755 && set != 0)
2757 rtx cond_rtx, then_rtx, else_rtx;
2759 if (GET_CODE (insn) != JUMP_INSN
2760 && GET_CODE (SET_SRC (set)) == IF_THEN_ELSE)
2762 cond_rtx = XEXP (SET_SRC (set), 0);
2763 then_rtx = XEXP (SET_SRC (set), 1);
2764 else_rtx = XEXP (SET_SRC (set), 2);
2766 else
2768 cond_rtx = SET_SRC (set);
2769 then_rtx = const_true_rtx;
2770 else_rtx = const0_rtx;
2773 switch (GET_CODE (cond_rtx))
2775 case GTU:
2776 case GT:
2777 case LTU:
2778 case LT:
2779 case GEU:
2780 case GE:
2781 case LEU:
2782 case LE:
2783 case EQ:
2784 case NE:
2786 int result;
2787 if (XEXP (cond_rtx, 0) != cc0_rtx)
2788 break;
2789 result = alter_cond (cond_rtx);
2790 if (result == 1)
2791 validate_change (insn, &SET_SRC (set), then_rtx, 0);
2792 else if (result == -1)
2793 validate_change (insn, &SET_SRC (set), else_rtx, 0);
2794 else if (result == 2)
2795 INSN_CODE (insn) = -1;
2796 if (SET_DEST (set) == SET_SRC (set))
2797 delete_insn (insn);
2799 break;
2801 default:
2802 break;
2806 #endif
2808 #ifdef HAVE_peephole
2809 /* Do machine-specific peephole optimizations if desired. */
2811 if (optimize && !flag_no_peephole && !nopeepholes)
2813 rtx next = peephole (insn);
2814 /* When peepholing, if there were notes within the peephole,
2815 emit them before the peephole. */
2816 if (next != 0 && next != NEXT_INSN (insn))
2818 rtx prev = PREV_INSN (insn);
2820 for (note = NEXT_INSN (insn); note != next;
2821 note = NEXT_INSN (note))
2822 final_scan_insn (note, file, optimize, prescan, nopeepholes);
2824 /* In case this is prescan, put the notes
2825 in proper position for later rescan. */
2826 note = NEXT_INSN (insn);
2827 PREV_INSN (note) = prev;
2828 NEXT_INSN (prev) = note;
2829 NEXT_INSN (PREV_INSN (next)) = insn;
2830 PREV_INSN (insn) = PREV_INSN (next);
2831 NEXT_INSN (insn) = next;
2832 PREV_INSN (next) = insn;
2835 /* PEEPHOLE might have changed this. */
2836 body = PATTERN (insn);
2838 #endif
2840 /* Try to recognize the instruction.
2841 If successful, verify that the operands satisfy the
2842 constraints for the instruction. Crash if they don't,
2843 since `reload' should have changed them so that they do. */
2845 insn_code_number = recog_memoized (insn);
2846 cleanup_subreg_operands (insn);
2848 /* Dump the insn in the assembly for debugging. */
2849 if (flag_dump_rtl_in_asm)
2851 print_rtx_head = ASM_COMMENT_START;
2852 print_rtl_single (asm_out_file, insn);
2853 print_rtx_head = "";
2856 if (! constrain_operands_cached (1))
2857 fatal_insn_not_found (insn);
2859 /* Some target machines need to prescan each insn before
2860 it is output. */
2862 #ifdef FINAL_PRESCAN_INSN
2863 FINAL_PRESCAN_INSN (insn, recog_data.operand, recog_data.n_operands);
2864 #endif
2866 #ifdef HAVE_conditional_execution
2867 if (GET_CODE (PATTERN (insn)) == COND_EXEC)
2868 current_insn_predicate = COND_EXEC_TEST (PATTERN (insn));
2869 else
2870 current_insn_predicate = NULL_RTX;
2871 #endif
2873 #ifdef HAVE_cc0
2874 cc_prev_status = cc_status;
2876 /* Update `cc_status' for this instruction.
2877 The instruction's output routine may change it further.
2878 If the output routine for a jump insn needs to depend
2879 on the cc status, it should look at cc_prev_status. */
2881 NOTICE_UPDATE_CC (body, insn);
2882 #endif
2884 current_output_insn = debug_insn = insn;
2886 #if defined (DWARF2_UNWIND_INFO)
2887 if (GET_CODE (insn) == CALL_INSN && dwarf2out_do_frame ())
2888 dwarf2out_frame_debug (insn);
2889 #endif
2891 /* Find the proper template for this insn. */
2892 template = get_insn_template (insn_code_number, insn);
2894 /* If the C code returns 0, it means that it is a jump insn
2895 which follows a deleted test insn, and that test insn
2896 needs to be reinserted. */
2897 if (template == 0)
2899 rtx prev;
2901 if (prev_nonnote_insn (insn) != last_ignored_compare)
2902 abort ();
2903 new_block = 0;
2905 /* We have already processed the notes between the setter and
2906 the user. Make sure we don't process them again, this is
2907 particularly important if one of the notes is a block
2908 scope note or an EH note. */
2909 for (prev = insn;
2910 prev != last_ignored_compare;
2911 prev = PREV_INSN (prev))
2913 if (GET_CODE (prev) == NOTE)
2914 delete_insn (prev); /* Use delete_note. */
2917 return prev;
2920 /* If the template is the string "#", it means that this insn must
2921 be split. */
2922 if (template[0] == '#' && template[1] == '\0')
2924 rtx new = try_split (body, insn, 0);
2926 /* If we didn't split the insn, go away. */
2927 if (new == insn && PATTERN (new) == body)
2928 fatal_insn ("Could not split insn", insn);
2930 #ifdef HAVE_ATTR_length
2931 /* This instruction should have been split in shorten_branches,
2932 to ensure that we would have valid length info for the
2933 splitees. */
2934 abort ();
2935 #endif
2937 new_block = 0;
2938 return new;
2941 if (prescan > 0)
2942 break;
2944 #ifdef IA64_UNWIND_INFO
2945 IA64_UNWIND_EMIT (asm_out_file, insn);
2946 #endif
2947 /* Output assembler code from the template. */
2949 output_asm_insn (template, recog_data.operand);
2951 #if defined (DWARF2_UNWIND_INFO)
2952 #if defined (HAVE_prologue)
2953 if (GET_CODE (insn) == INSN && dwarf2out_do_frame ())
2954 dwarf2out_frame_debug (insn);
2955 #else
2956 if (!ACCUMULATE_OUTGOING_ARGS
2957 && GET_CODE (insn) == INSN
2958 && dwarf2out_do_frame ())
2959 dwarf2out_frame_debug (insn);
2960 #endif
2961 #endif
2963 #if 0
2964 /* It's not at all clear why we did this and doing so interferes
2965 with tests we'd like to do to use REG_WAS_0 notes, so let's try
2966 with this out. */
2968 /* Mark this insn as having been output. */
2969 INSN_DELETED_P (insn) = 1;
2970 #endif
2972 /* Emit information for vtable gc. */
2973 note = find_reg_note (insn, REG_VTABLE_REF, NULL_RTX);
2974 if (note)
2975 assemble_vtable_entry (XEXP (XEXP (note, 0), 0),
2976 INTVAL (XEXP (XEXP (note, 0), 1)));
2978 current_output_insn = debug_insn = 0;
2981 return NEXT_INSN (insn);
2984 /* Output debugging info to the assembler file FILE
2985 based on the NOTE-insn INSN, assumed to be a line number. */
2987 static void
2988 notice_source_line (insn)
2989 rtx insn;
2991 const char *filename = NOTE_SOURCE_FILE (insn);
2993 /* Remember filename for basic block profiling.
2994 Filenames are allocated on the permanent obstack
2995 or are passed in ARGV, so we don't have to save
2996 the string. */
2998 if (profile_block_flag && last_filename != filename)
2999 bb_file_label_num = add_bb_string (filename, TRUE);
3001 last_filename = filename;
3002 last_linenum = NOTE_LINE_NUMBER (insn);
3003 high_block_linenum = MAX (last_linenum, high_block_linenum);
3004 high_function_linenum = MAX (last_linenum, high_function_linenum);
3007 /* For each operand in INSN, simplify (subreg (reg)) so that it refers
3008 directly to the desired hard register. */
3010 void
3011 cleanup_subreg_operands (insn)
3012 rtx insn;
3014 int i;
3015 extract_insn_cached (insn);
3016 for (i = 0; i < recog_data.n_operands; i++)
3018 if (GET_CODE (recog_data.operand[i]) == SUBREG)
3019 recog_data.operand[i] = alter_subreg (recog_data.operand_loc[i]);
3020 else if (GET_CODE (recog_data.operand[i]) == PLUS
3021 || GET_CODE (recog_data.operand[i]) == MULT
3022 || GET_CODE (recog_data.operand[i]) == MEM)
3023 recog_data.operand[i] = walk_alter_subreg (recog_data.operand_loc[i]);
3026 for (i = 0; i < recog_data.n_dups; i++)
3028 if (GET_CODE (*recog_data.dup_loc[i]) == SUBREG)
3029 *recog_data.dup_loc[i] = alter_subreg (recog_data.dup_loc[i]);
3030 else if (GET_CODE (*recog_data.dup_loc[i]) == PLUS
3031 || GET_CODE (*recog_data.dup_loc[i]) == MULT
3032 || GET_CODE (*recog_data.dup_loc[i]) == MEM)
3033 *recog_data.dup_loc[i] = walk_alter_subreg (recog_data.dup_loc[i]);
3037 /* If X is a SUBREG, replace it with a REG or a MEM,
3038 based on the thing it is a subreg of. */
3041 alter_subreg (xp)
3042 rtx *xp;
3044 rtx x = *xp;
3045 rtx y = SUBREG_REG (x);
3047 /* simplify_subreg does not remove subreg from volatile references.
3048 We are required to. */
3049 if (GET_CODE (y) == MEM)
3050 *xp = adjust_address (y, GET_MODE (x), SUBREG_BYTE (x));
3051 else
3053 rtx new = simplify_subreg (GET_MODE (x), y, GET_MODE (y),
3054 SUBREG_BYTE (x));
3056 if (new != 0)
3057 *xp = new;
3058 /* Simplify_subreg can't handle some REG cases, but we have to. */
3059 else if (GET_CODE (y) == REG)
3061 REGNO (x) = subreg_hard_regno (x, 1);
3062 PUT_CODE (x, REG);
3063 ORIGINAL_REGNO (x) = ORIGINAL_REGNO (y);
3064 /* This field has a different meaning for REGs and SUBREGs. Make
3065 sure to clear it! */
3066 x->used = 0;
3068 else
3069 abort ();
3072 return *xp;
3075 /* Do alter_subreg on all the SUBREGs contained in X. */
3077 static rtx
3078 walk_alter_subreg (xp)
3079 rtx *xp;
3081 rtx x = *xp;
3082 switch (GET_CODE (x))
3084 case PLUS:
3085 case MULT:
3086 XEXP (x, 0) = walk_alter_subreg (&XEXP (x, 0));
3087 XEXP (x, 1) = walk_alter_subreg (&XEXP (x, 1));
3088 break;
3090 case MEM:
3091 XEXP (x, 0) = walk_alter_subreg (&XEXP (x, 0));
3092 break;
3094 case SUBREG:
3095 return alter_subreg (xp);
3097 default:
3098 break;
3101 return *xp;
3104 #ifdef HAVE_cc0
3106 /* Given BODY, the body of a jump instruction, alter the jump condition
3107 as required by the bits that are set in cc_status.flags.
3108 Not all of the bits there can be handled at this level in all cases.
3110 The value is normally 0.
3111 1 means that the condition has become always true.
3112 -1 means that the condition has become always false.
3113 2 means that COND has been altered. */
3115 static int
3116 alter_cond (cond)
3117 rtx cond;
3119 int value = 0;
3121 if (cc_status.flags & CC_REVERSED)
3123 value = 2;
3124 PUT_CODE (cond, swap_condition (GET_CODE (cond)));
3127 if (cc_status.flags & CC_INVERTED)
3129 value = 2;
3130 PUT_CODE (cond, reverse_condition (GET_CODE (cond)));
3133 if (cc_status.flags & CC_NOT_POSITIVE)
3134 switch (GET_CODE (cond))
3136 case LE:
3137 case LEU:
3138 case GEU:
3139 /* Jump becomes unconditional. */
3140 return 1;
3142 case GT:
3143 case GTU:
3144 case LTU:
3145 /* Jump becomes no-op. */
3146 return -1;
3148 case GE:
3149 PUT_CODE (cond, EQ);
3150 value = 2;
3151 break;
3153 case LT:
3154 PUT_CODE (cond, NE);
3155 value = 2;
3156 break;
3158 default:
3159 break;
3162 if (cc_status.flags & CC_NOT_NEGATIVE)
3163 switch (GET_CODE (cond))
3165 case GE:
3166 case GEU:
3167 /* Jump becomes unconditional. */
3168 return 1;
3170 case LT:
3171 case LTU:
3172 /* Jump becomes no-op. */
3173 return -1;
3175 case LE:
3176 case LEU:
3177 PUT_CODE (cond, EQ);
3178 value = 2;
3179 break;
3181 case GT:
3182 case GTU:
3183 PUT_CODE (cond, NE);
3184 value = 2;
3185 break;
3187 default:
3188 break;
3191 if (cc_status.flags & CC_NO_OVERFLOW)
3192 switch (GET_CODE (cond))
3194 case GEU:
3195 /* Jump becomes unconditional. */
3196 return 1;
3198 case LEU:
3199 PUT_CODE (cond, EQ);
3200 value = 2;
3201 break;
3203 case GTU:
3204 PUT_CODE (cond, NE);
3205 value = 2;
3206 break;
3208 case LTU:
3209 /* Jump becomes no-op. */
3210 return -1;
3212 default:
3213 break;
3216 if (cc_status.flags & (CC_Z_IN_NOT_N | CC_Z_IN_N))
3217 switch (GET_CODE (cond))
3219 default:
3220 abort ();
3222 case NE:
3223 PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? GE : LT);
3224 value = 2;
3225 break;
3227 case EQ:
3228 PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? LT : GE);
3229 value = 2;
3230 break;
3233 if (cc_status.flags & CC_NOT_SIGNED)
3234 /* The flags are valid if signed condition operators are converted
3235 to unsigned. */
3236 switch (GET_CODE (cond))
3238 case LE:
3239 PUT_CODE (cond, LEU);
3240 value = 2;
3241 break;
3243 case LT:
3244 PUT_CODE (cond, LTU);
3245 value = 2;
3246 break;
3248 case GT:
3249 PUT_CODE (cond, GTU);
3250 value = 2;
3251 break;
3253 case GE:
3254 PUT_CODE (cond, GEU);
3255 value = 2;
3256 break;
3258 default:
3259 break;
3262 return value;
3264 #endif
3266 /* Report inconsistency between the assembler template and the operands.
3267 In an `asm', it's the user's fault; otherwise, the compiler's fault. */
3269 void
3270 output_operand_lossage (msgid)
3271 const char *msgid;
3273 if (this_is_asm_operands)
3274 error_for_asm (this_is_asm_operands, "invalid `asm': %s", _(msgid));
3275 else
3276 internal_error ("output_operand: %s", _(msgid));
3279 /* Output of assembler code from a template, and its subroutines. */
3281 /* Annotate the assembly with a comment describing the pattern and
3282 alternative used. */
3284 static void
3285 output_asm_name ()
3287 if (debug_insn)
3289 int num = INSN_CODE (debug_insn);
3290 fprintf (asm_out_file, "\t%s %d\t%s",
3291 ASM_COMMENT_START, INSN_UID (debug_insn),
3292 insn_data[num].name);
3293 if (insn_data[num].n_alternatives > 1)
3294 fprintf (asm_out_file, "/%d", which_alternative + 1);
3295 #ifdef HAVE_ATTR_length
3296 fprintf (asm_out_file, "\t[length = %d]",
3297 get_attr_length (debug_insn));
3298 #endif
3299 /* Clear this so only the first assembler insn
3300 of any rtl insn will get the special comment for -dp. */
3301 debug_insn = 0;
3305 /* If OP is a REG or MEM and we can find a MEM_EXPR corresponding to it
3306 or its address, return that expr . Set *PADDRESSP to 1 if the expr
3307 corresponds to the address of the object and 0 if to the object. */
3309 static tree
3310 get_mem_expr_from_op (op, paddressp)
3311 rtx op;
3312 int *paddressp;
3314 tree expr;
3315 int inner_addressp;
3317 *paddressp = 0;
3319 if (GET_CODE (op) == REG && ORIGINAL_REGNO (op) >= FIRST_PSEUDO_REGISTER)
3320 return REGNO_DECL (ORIGINAL_REGNO (op));
3321 else if (GET_CODE (op) != MEM)
3322 return 0;
3324 if (MEM_EXPR (op) != 0)
3325 return MEM_EXPR (op);
3327 /* Otherwise we have an address, so indicate it and look at the address. */
3328 *paddressp = 1;
3329 op = XEXP (op, 0);
3331 /* First check if we have a decl for the address, then look at the right side
3332 if it is a PLUS. Otherwise, strip off arithmetic and keep looking.
3333 But don't allow the address to itself be indirect. */
3334 if ((expr = get_mem_expr_from_op (op, &inner_addressp)) && ! inner_addressp)
3335 return expr;
3336 else if (GET_CODE (op) == PLUS
3337 && (expr = get_mem_expr_from_op (XEXP (op, 1), &inner_addressp)))
3338 return expr;
3340 while (GET_RTX_CLASS (GET_CODE (op)) == '1'
3341 || GET_RTX_CLASS (GET_CODE (op)) == '2')
3342 op = XEXP (op, 0);
3344 expr = get_mem_expr_from_op (op, &inner_addressp);
3345 return inner_addressp ? 0 : expr;
3348 /* Output operand names for assembler instructions. OPERANDS is the
3349 operand vector, OPORDER is the order to write the operands, and NOPS
3350 is the number of operands to write. */
3352 static void
3353 output_asm_operand_names (operands, oporder, nops)
3354 rtx *operands;
3355 int *oporder;
3356 int nops;
3358 int wrote = 0;
3359 int i;
3361 for (i = 0; i < nops; i++)
3363 int addressp;
3364 tree expr = get_mem_expr_from_op (operands[oporder[i]], &addressp);
3366 if (expr)
3368 fprintf (asm_out_file, "%c%s %s",
3369 wrote ? ',' : '\t', wrote ? "" : ASM_COMMENT_START,
3370 addressp ? "*" : "");
3371 print_mem_expr (asm_out_file, expr);
3372 wrote = 1;
3377 /* Output text from TEMPLATE to the assembler output file,
3378 obeying %-directions to substitute operands taken from
3379 the vector OPERANDS.
3381 %N (for N a digit) means print operand N in usual manner.
3382 %lN means require operand N to be a CODE_LABEL or LABEL_REF
3383 and print the label name with no punctuation.
3384 %cN means require operand N to be a constant
3385 and print the constant expression with no punctuation.
3386 %aN means expect operand N to be a memory address
3387 (not a memory reference!) and print a reference
3388 to that address.
3389 %nN means expect operand N to be a constant
3390 and print a constant expression for minus the value
3391 of the operand, with no other punctuation. */
3393 void
3394 output_asm_insn (template, operands)
3395 const char *template;
3396 rtx *operands;
3398 const char *p;
3399 int c;
3400 #ifdef ASSEMBLER_DIALECT
3401 int dialect = 0;
3402 #endif
3403 int oporder[MAX_RECOG_OPERANDS];
3404 char opoutput[MAX_RECOG_OPERANDS];
3405 int ops = 0;
3407 /* An insn may return a null string template
3408 in a case where no assembler code is needed. */
3409 if (*template == 0)
3410 return;
3412 memset (opoutput, 0, sizeof opoutput);
3413 p = template;
3414 putc ('\t', asm_out_file);
3416 #ifdef ASM_OUTPUT_OPCODE
3417 ASM_OUTPUT_OPCODE (asm_out_file, p);
3418 #endif
3420 while ((c = *p++))
3421 switch (c)
3423 case '\n':
3424 if (flag_verbose_asm)
3425 output_asm_operand_names (operands, oporder, ops);
3426 if (flag_print_asm_name)
3427 output_asm_name ();
3429 ops = 0;
3430 memset (opoutput, 0, sizeof opoutput);
3432 putc (c, asm_out_file);
3433 #ifdef ASM_OUTPUT_OPCODE
3434 while ((c = *p) == '\t')
3436 putc (c, asm_out_file);
3437 p++;
3439 ASM_OUTPUT_OPCODE (asm_out_file, p);
3440 #endif
3441 break;
3443 #ifdef ASSEMBLER_DIALECT
3444 case '{':
3446 int i;
3448 if (dialect)
3449 output_operand_lossage ("nested assembly dialect alternatives");
3450 else
3451 dialect = 1;
3453 /* If we want the first dialect, do nothing. Otherwise, skip
3454 DIALECT_NUMBER of strings ending with '|'. */
3455 for (i = 0; i < dialect_number; i++)
3457 while (*p && *p != '}' && *p++ != '|')
3459 if (*p == '}')
3460 break;
3461 if (*p == '|')
3462 p++;
3465 if (*p == '\0')
3466 output_operand_lossage ("unterminated assembly dialect alternative");
3468 break;
3470 case '|':
3471 if (dialect)
3473 /* Skip to close brace. */
3476 if (*p == '\0')
3478 output_operand_lossage ("unterminated assembly dialect alternative");
3479 break;
3482 while (*p++ != '}');
3483 dialect = 0;
3485 else
3486 putc (c, asm_out_file);
3487 break;
3489 case '}':
3490 if (! dialect)
3491 putc (c, asm_out_file);
3492 dialect = 0;
3493 break;
3494 #endif
3496 case '%':
3497 /* %% outputs a single %. */
3498 if (*p == '%')
3500 p++;
3501 putc (c, asm_out_file);
3503 /* %= outputs a number which is unique to each insn in the entire
3504 compilation. This is useful for making local labels that are
3505 referred to more than once in a given insn. */
3506 else if (*p == '=')
3508 p++;
3509 fprintf (asm_out_file, "%d", insn_counter);
3511 /* % followed by a letter and some digits
3512 outputs an operand in a special way depending on the letter.
3513 Letters `acln' are implemented directly.
3514 Other letters are passed to `output_operand' so that
3515 the PRINT_OPERAND macro can define them. */
3516 else if (ISALPHA (*p))
3518 int letter = *p++;
3519 c = atoi (p);
3521 if (! ISDIGIT (*p))
3522 output_operand_lossage ("operand number missing after %-letter");
3523 else if (this_is_asm_operands
3524 && (c < 0 || (unsigned int) c >= insn_noperands))
3525 output_operand_lossage ("operand number out of range");
3526 else if (letter == 'l')
3527 output_asm_label (operands[c]);
3528 else if (letter == 'a')
3529 output_address (operands[c]);
3530 else if (letter == 'c')
3532 if (CONSTANT_ADDRESS_P (operands[c]))
3533 output_addr_const (asm_out_file, operands[c]);
3534 else
3535 output_operand (operands[c], 'c');
3537 else if (letter == 'n')
3539 if (GET_CODE (operands[c]) == CONST_INT)
3540 fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC,
3541 - INTVAL (operands[c]));
3542 else
3544 putc ('-', asm_out_file);
3545 output_addr_const (asm_out_file, operands[c]);
3548 else
3549 output_operand (operands[c], letter);
3551 if (!opoutput[c])
3552 oporder[ops++] = c;
3553 opoutput[c] = 1;
3555 while (ISDIGIT (c = *p))
3556 p++;
3558 /* % followed by a digit outputs an operand the default way. */
3559 else if (ISDIGIT (*p))
3561 c = atoi (p);
3562 if (this_is_asm_operands
3563 && (c < 0 || (unsigned int) c >= insn_noperands))
3564 output_operand_lossage ("operand number out of range");
3565 else
3566 output_operand (operands[c], 0);
3568 if (!opoutput[c])
3569 oporder[ops++] = c;
3570 opoutput[c] = 1;
3572 while (ISDIGIT (c = *p))
3573 p++;
3575 /* % followed by punctuation: output something for that
3576 punctuation character alone, with no operand.
3577 The PRINT_OPERAND macro decides what is actually done. */
3578 #ifdef PRINT_OPERAND_PUNCT_VALID_P
3579 else if (PRINT_OPERAND_PUNCT_VALID_P ((unsigned char) *p))
3580 output_operand (NULL_RTX, *p++);
3581 #endif
3582 else
3583 output_operand_lossage ("invalid %%-code");
3584 break;
3586 default:
3587 putc (c, asm_out_file);
3590 /* Write out the variable names for operands, if we know them. */
3591 if (flag_verbose_asm)
3592 output_asm_operand_names (operands, oporder, ops);
3593 if (flag_print_asm_name)
3594 output_asm_name ();
3596 putc ('\n', asm_out_file);
3599 /* Output a LABEL_REF, or a bare CODE_LABEL, as an assembler symbol. */
3601 void
3602 output_asm_label (x)
3603 rtx x;
3605 char buf[256];
3607 if (GET_CODE (x) == LABEL_REF)
3608 x = XEXP (x, 0);
3609 if (GET_CODE (x) == CODE_LABEL
3610 || (GET_CODE (x) == NOTE
3611 && NOTE_LINE_NUMBER (x) == NOTE_INSN_DELETED_LABEL))
3612 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
3613 else
3614 output_operand_lossage ("`%l' operand isn't a label");
3616 assemble_name (asm_out_file, buf);
3619 /* Print operand X using machine-dependent assembler syntax.
3620 The macro PRINT_OPERAND is defined just to control this function.
3621 CODE is a non-digit that preceded the operand-number in the % spec,
3622 such as 'z' if the spec was `%z3'. CODE is 0 if there was no char
3623 between the % and the digits.
3624 When CODE is a non-letter, X is 0.
3626 The meanings of the letters are machine-dependent and controlled
3627 by PRINT_OPERAND. */
3629 static void
3630 output_operand (x, code)
3631 rtx x;
3632 int code ATTRIBUTE_UNUSED;
3634 if (x && GET_CODE (x) == SUBREG)
3635 x = alter_subreg (&x);
3637 /* If X is a pseudo-register, abort now rather than writing trash to the
3638 assembler file. */
3640 if (x && GET_CODE (x) == REG && REGNO (x) >= FIRST_PSEUDO_REGISTER)
3641 abort ();
3643 PRINT_OPERAND (asm_out_file, x, code);
3646 /* Print a memory reference operand for address X
3647 using machine-dependent assembler syntax.
3648 The macro PRINT_OPERAND_ADDRESS exists just to control this function. */
3650 void
3651 output_address (x)
3652 rtx x;
3654 walk_alter_subreg (&x);
3655 PRINT_OPERAND_ADDRESS (asm_out_file, x);
3658 /* Print an integer constant expression in assembler syntax.
3659 Addition and subtraction are the only arithmetic
3660 that may appear in these expressions. */
3662 void
3663 output_addr_const (file, x)
3664 FILE *file;
3665 rtx x;
3667 char buf[256];
3669 restart:
3670 switch (GET_CODE (x))
3672 case PC:
3673 putc ('.', file);
3674 break;
3676 case SYMBOL_REF:
3677 #ifdef ASM_OUTPUT_SYMBOL_REF
3678 ASM_OUTPUT_SYMBOL_REF (file, x);
3679 #else
3680 assemble_name (file, XSTR (x, 0));
3681 #endif
3682 break;
3684 case LABEL_REF:
3685 x = XEXP (x, 0);
3686 /* Fall through. */
3687 case CODE_LABEL:
3688 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
3689 #ifdef ASM_OUTPUT_LABEL_REF
3690 ASM_OUTPUT_LABEL_REF (file, buf);
3691 #else
3692 assemble_name (file, buf);
3693 #endif
3694 break;
3696 case CONST_INT:
3697 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x));
3698 break;
3700 case CONST:
3701 /* This used to output parentheses around the expression,
3702 but that does not work on the 386 (either ATT or BSD assembler). */
3703 output_addr_const (file, XEXP (x, 0));
3704 break;
3706 case CONST_DOUBLE:
3707 if (GET_MODE (x) == VOIDmode)
3709 /* We can use %d if the number is one word and positive. */
3710 if (CONST_DOUBLE_HIGH (x))
3711 fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
3712 CONST_DOUBLE_HIGH (x), CONST_DOUBLE_LOW (x));
3713 else if (CONST_DOUBLE_LOW (x) < 0)
3714 fprintf (file, HOST_WIDE_INT_PRINT_HEX, CONST_DOUBLE_LOW (x));
3715 else
3716 fprintf (file, HOST_WIDE_INT_PRINT_DEC, CONST_DOUBLE_LOW (x));
3718 else
3719 /* We can't handle floating point constants;
3720 PRINT_OPERAND must handle them. */
3721 output_operand_lossage ("floating constant misused");
3722 break;
3724 case PLUS:
3725 /* Some assemblers need integer constants to appear last (eg masm). */
3726 if (GET_CODE (XEXP (x, 0)) == CONST_INT)
3728 output_addr_const (file, XEXP (x, 1));
3729 if (INTVAL (XEXP (x, 0)) >= 0)
3730 fprintf (file, "+");
3731 output_addr_const (file, XEXP (x, 0));
3733 else
3735 output_addr_const (file, XEXP (x, 0));
3736 if (GET_CODE (XEXP (x, 1)) != CONST_INT
3737 || INTVAL (XEXP (x, 1)) >= 0)
3738 fprintf (file, "+");
3739 output_addr_const (file, XEXP (x, 1));
3741 break;
3743 case MINUS:
3744 /* Avoid outputting things like x-x or x+5-x,
3745 since some assemblers can't handle that. */
3746 x = simplify_subtraction (x);
3747 if (GET_CODE (x) != MINUS)
3748 goto restart;
3750 output_addr_const (file, XEXP (x, 0));
3751 fprintf (file, "-");
3752 if ((GET_CODE (XEXP (x, 1)) == CONST_INT
3753 && INTVAL (XEXP (x, 1)) < 0)
3754 || GET_CODE (XEXP (x, 1)) != CONST_INT)
3756 fputs (targetm.asm_out.open_paren, file);
3757 output_addr_const (file, XEXP (x, 1));
3758 fputs (targetm.asm_out.close_paren, file);
3760 else
3761 output_addr_const (file, XEXP (x, 1));
3762 break;
3764 case ZERO_EXTEND:
3765 case SIGN_EXTEND:
3766 output_addr_const (file, XEXP (x, 0));
3767 break;
3769 default:
3770 #ifdef OUTPUT_ADDR_CONST_EXTRA
3771 OUTPUT_ADDR_CONST_EXTRA (file, x, fail);
3772 break;
3774 fail:
3775 #endif
3776 output_operand_lossage ("invalid expression as operand");
3780 /* A poor man's fprintf, with the added features of %I, %R, %L, and %U.
3781 %R prints the value of REGISTER_PREFIX.
3782 %L prints the value of LOCAL_LABEL_PREFIX.
3783 %U prints the value of USER_LABEL_PREFIX.
3784 %I prints the value of IMMEDIATE_PREFIX.
3785 %O runs ASM_OUTPUT_OPCODE to transform what follows in the string.
3786 Also supported are %d, %x, %s, %e, %f, %g and %%.
3788 We handle alternate assembler dialects here, just like output_asm_insn. */
3790 void
3791 asm_fprintf VPARAMS ((FILE *file, const char *p, ...))
3793 char buf[10];
3794 char *q, c;
3796 VA_OPEN (argptr, p);
3797 VA_FIXEDARG (argptr, FILE *, file);
3798 VA_FIXEDARG (argptr, const char *, p);
3800 buf[0] = '%';
3802 while ((c = *p++))
3803 switch (c)
3805 #ifdef ASSEMBLER_DIALECT
3806 case '{':
3808 int i;
3810 /* If we want the first dialect, do nothing. Otherwise, skip
3811 DIALECT_NUMBER of strings ending with '|'. */
3812 for (i = 0; i < dialect_number; i++)
3814 while (*p && *p++ != '|')
3817 if (*p == '|')
3818 p++;
3821 break;
3823 case '|':
3824 /* Skip to close brace. */
3825 while (*p && *p++ != '}')
3827 break;
3829 case '}':
3830 break;
3831 #endif
3833 case '%':
3834 c = *p++;
3835 q = &buf[1];
3836 while (ISDIGIT (c) || c == '.')
3838 *q++ = c;
3839 c = *p++;
3841 switch (c)
3843 case '%':
3844 fprintf (file, "%%");
3845 break;
3847 case 'd': case 'i': case 'u':
3848 case 'x': case 'p': case 'X':
3849 case 'o':
3850 *q++ = c;
3851 *q = 0;
3852 fprintf (file, buf, va_arg (argptr, int));
3853 break;
3855 case 'w':
3856 /* This is a prefix to the 'd', 'i', 'u', 'x', 'p', and 'X' cases,
3857 but we do not check for those cases. It means that the value
3858 is a HOST_WIDE_INT, which may be either `int' or `long'. */
3860 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
3861 #else
3862 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
3863 *q++ = 'l';
3864 #else
3865 *q++ = 'l';
3866 *q++ = 'l';
3867 #endif
3868 #endif
3870 *q++ = *p++;
3871 *q = 0;
3872 fprintf (file, buf, va_arg (argptr, HOST_WIDE_INT));
3873 break;
3875 case 'l':
3876 *q++ = c;
3877 *q++ = *p++;
3878 *q = 0;
3879 fprintf (file, buf, va_arg (argptr, long));
3880 break;
3882 case 'e':
3883 case 'f':
3884 case 'g':
3885 *q++ = c;
3886 *q = 0;
3887 fprintf (file, buf, va_arg (argptr, double));
3888 break;
3890 case 's':
3891 *q++ = c;
3892 *q = 0;
3893 fprintf (file, buf, va_arg (argptr, char *));
3894 break;
3896 case 'O':
3897 #ifdef ASM_OUTPUT_OPCODE
3898 ASM_OUTPUT_OPCODE (asm_out_file, p);
3899 #endif
3900 break;
3902 case 'R':
3903 #ifdef REGISTER_PREFIX
3904 fprintf (file, "%s", REGISTER_PREFIX);
3905 #endif
3906 break;
3908 case 'I':
3909 #ifdef IMMEDIATE_PREFIX
3910 fprintf (file, "%s", IMMEDIATE_PREFIX);
3911 #endif
3912 break;
3914 case 'L':
3915 #ifdef LOCAL_LABEL_PREFIX
3916 fprintf (file, "%s", LOCAL_LABEL_PREFIX);
3917 #endif
3918 break;
3920 case 'U':
3921 fputs (user_label_prefix, file);
3922 break;
3924 #ifdef ASM_FPRINTF_EXTENSIONS
3925 /* Upper case letters are reserved for general use by asm_fprintf
3926 and so are not available to target specific code. In order to
3927 prevent the ASM_FPRINTF_EXTENSIONS macro from using them then,
3928 they are defined here. As they get turned into real extensions
3929 to asm_fprintf they should be removed from this list. */
3930 case 'A': case 'B': case 'C': case 'D': case 'E':
3931 case 'F': case 'G': case 'H': case 'J': case 'K':
3932 case 'M': case 'N': case 'P': case 'Q': case 'S':
3933 case 'T': case 'V': case 'W': case 'Y': case 'Z':
3934 break;
3936 ASM_FPRINTF_EXTENSIONS (file, argptr, p)
3937 #endif
3938 default:
3939 abort ();
3941 break;
3943 default:
3944 fputc (c, file);
3946 VA_CLOSE (argptr);
3949 /* Split up a CONST_DOUBLE or integer constant rtx
3950 into two rtx's for single words,
3951 storing in *FIRST the word that comes first in memory in the target
3952 and in *SECOND the other. */
3954 void
3955 split_double (value, first, second)
3956 rtx value;
3957 rtx *first, *second;
3959 if (GET_CODE (value) == CONST_INT)
3961 if (HOST_BITS_PER_WIDE_INT >= (2 * BITS_PER_WORD))
3963 /* In this case the CONST_INT holds both target words.
3964 Extract the bits from it into two word-sized pieces.
3965 Sign extend each half to HOST_WIDE_INT. */
3966 unsigned HOST_WIDE_INT low, high;
3967 unsigned HOST_WIDE_INT mask, sign_bit, sign_extend;
3969 /* Set sign_bit to the most significant bit of a word. */
3970 sign_bit = 1;
3971 sign_bit <<= BITS_PER_WORD - 1;
3973 /* Set mask so that all bits of the word are set. We could
3974 have used 1 << BITS_PER_WORD instead of basing the
3975 calculation on sign_bit. However, on machines where
3976 HOST_BITS_PER_WIDE_INT == BITS_PER_WORD, it could cause a
3977 compiler warning, even though the code would never be
3978 executed. */
3979 mask = sign_bit << 1;
3980 mask--;
3982 /* Set sign_extend as any remaining bits. */
3983 sign_extend = ~mask;
3985 /* Pick the lower word and sign-extend it. */
3986 low = INTVAL (value);
3987 low &= mask;
3988 if (low & sign_bit)
3989 low |= sign_extend;
3991 /* Pick the higher word, shifted to the least significant
3992 bits, and sign-extend it. */
3993 high = INTVAL (value);
3994 high >>= BITS_PER_WORD - 1;
3995 high >>= 1;
3996 high &= mask;
3997 if (high & sign_bit)
3998 high |= sign_extend;
4000 /* Store the words in the target machine order. */
4001 if (WORDS_BIG_ENDIAN)
4003 *first = GEN_INT (high);
4004 *second = GEN_INT (low);
4006 else
4008 *first = GEN_INT (low);
4009 *second = GEN_INT (high);
4012 else
4014 /* The rule for using CONST_INT for a wider mode
4015 is that we regard the value as signed.
4016 So sign-extend it. */
4017 rtx high = (INTVAL (value) < 0 ? constm1_rtx : const0_rtx);
4018 if (WORDS_BIG_ENDIAN)
4020 *first = high;
4021 *second = value;
4023 else
4025 *first = value;
4026 *second = high;
4030 else if (GET_CODE (value) != CONST_DOUBLE)
4032 if (WORDS_BIG_ENDIAN)
4034 *first = const0_rtx;
4035 *second = value;
4037 else
4039 *first = value;
4040 *second = const0_rtx;
4043 else if (GET_MODE (value) == VOIDmode
4044 /* This is the old way we did CONST_DOUBLE integers. */
4045 || GET_MODE_CLASS (GET_MODE (value)) == MODE_INT)
4047 /* In an integer, the words are defined as most and least significant.
4048 So order them by the target's convention. */
4049 if (WORDS_BIG_ENDIAN)
4051 *first = GEN_INT (CONST_DOUBLE_HIGH (value));
4052 *second = GEN_INT (CONST_DOUBLE_LOW (value));
4054 else
4056 *first = GEN_INT (CONST_DOUBLE_LOW (value));
4057 *second = GEN_INT (CONST_DOUBLE_HIGH (value));
4060 else
4062 #ifdef REAL_ARITHMETIC
4063 REAL_VALUE_TYPE r;
4064 long l[2];
4065 REAL_VALUE_FROM_CONST_DOUBLE (r, value);
4067 /* Note, this converts the REAL_VALUE_TYPE to the target's
4068 format, splits up the floating point double and outputs
4069 exactly 32 bits of it into each of l[0] and l[1] --
4070 not necessarily BITS_PER_WORD bits. */
4071 REAL_VALUE_TO_TARGET_DOUBLE (r, l);
4073 /* If 32 bits is an entire word for the target, but not for the host,
4074 then sign-extend on the host so that the number will look the same
4075 way on the host that it would on the target. See for instance
4076 simplify_unary_operation. The #if is needed to avoid compiler
4077 warnings. */
4079 #if HOST_BITS_PER_LONG > 32
4080 if (BITS_PER_WORD < HOST_BITS_PER_LONG && BITS_PER_WORD == 32)
4082 if (l[0] & ((long) 1 << 31))
4083 l[0] |= ((long) (-1) << 32);
4084 if (l[1] & ((long) 1 << 31))
4085 l[1] |= ((long) (-1) << 32);
4087 #endif
4089 *first = GEN_INT ((HOST_WIDE_INT) l[0]);
4090 *second = GEN_INT ((HOST_WIDE_INT) l[1]);
4091 #else
4092 if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
4093 || HOST_BITS_PER_WIDE_INT != BITS_PER_WORD)
4094 && ! flag_pretend_float)
4095 abort ();
4097 if (
4098 #ifdef HOST_WORDS_BIG_ENDIAN
4099 WORDS_BIG_ENDIAN
4100 #else
4101 ! WORDS_BIG_ENDIAN
4102 #endif
4105 /* Host and target agree => no need to swap. */
4106 *first = GEN_INT (CONST_DOUBLE_LOW (value));
4107 *second = GEN_INT (CONST_DOUBLE_HIGH (value));
4109 else
4111 *second = GEN_INT (CONST_DOUBLE_LOW (value));
4112 *first = GEN_INT (CONST_DOUBLE_HIGH (value));
4114 #endif /* no REAL_ARITHMETIC */
4118 /* Return nonzero if this function has no function calls. */
4121 leaf_function_p ()
4123 rtx insn;
4124 rtx link;
4126 if (profile_flag || profile_block_flag || profile_arc_flag)
4127 return 0;
4129 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
4131 if (GET_CODE (insn) == CALL_INSN
4132 && ! SIBLING_CALL_P (insn))
4133 return 0;
4134 if (GET_CODE (insn) == INSN
4135 && GET_CODE (PATTERN (insn)) == SEQUENCE
4136 && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == CALL_INSN
4137 && ! SIBLING_CALL_P (XVECEXP (PATTERN (insn), 0, 0)))
4138 return 0;
4140 for (link = current_function_epilogue_delay_list;
4141 link;
4142 link = XEXP (link, 1))
4144 insn = XEXP (link, 0);
4146 if (GET_CODE (insn) == CALL_INSN
4147 && ! SIBLING_CALL_P (insn))
4148 return 0;
4149 if (GET_CODE (insn) == INSN
4150 && GET_CODE (PATTERN (insn)) == SEQUENCE
4151 && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == CALL_INSN
4152 && ! SIBLING_CALL_P (XVECEXP (PATTERN (insn), 0, 0)))
4153 return 0;
4156 return 1;
4159 /* Return 1 if branch is an forward branch.
4160 Uses insn_shuid array, so it works only in the final pass. May be used by
4161 output templates to customary add branch prediction hints.
4164 final_forward_branch_p (insn)
4165 rtx insn;
4167 int insn_id, label_id;
4168 if (!uid_shuid)
4169 abort ();
4170 insn_id = INSN_SHUID (insn);
4171 label_id = INSN_SHUID (JUMP_LABEL (insn));
4172 /* We've hit some insns that does not have id information available. */
4173 if (!insn_id || !label_id)
4174 abort ();
4175 return insn_id < label_id;
4178 /* On some machines, a function with no call insns
4179 can run faster if it doesn't create its own register window.
4180 When output, the leaf function should use only the "output"
4181 registers. Ordinarily, the function would be compiled to use
4182 the "input" registers to find its arguments; it is a candidate
4183 for leaf treatment if it uses only the "input" registers.
4184 Leaf function treatment means renumbering so the function
4185 uses the "output" registers instead. */
4187 #ifdef LEAF_REGISTERS
4189 /* Return 1 if this function uses only the registers that can be
4190 safely renumbered. */
4193 only_leaf_regs_used ()
4195 int i;
4196 char *permitted_reg_in_leaf_functions = LEAF_REGISTERS;
4198 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
4199 if ((regs_ever_live[i] || global_regs[i])
4200 && ! permitted_reg_in_leaf_functions[i])
4201 return 0;
4203 if (current_function_uses_pic_offset_table
4204 && pic_offset_table_rtx != 0
4205 && GET_CODE (pic_offset_table_rtx) == REG
4206 && ! permitted_reg_in_leaf_functions[REGNO (pic_offset_table_rtx)])
4207 return 0;
4209 return 1;
4212 /* Scan all instructions and renumber all registers into those
4213 available in leaf functions. */
4215 static void
4216 leaf_renumber_regs (first)
4217 rtx first;
4219 rtx insn;
4221 /* Renumber only the actual patterns.
4222 The reg-notes can contain frame pointer refs,
4223 and renumbering them could crash, and should not be needed. */
4224 for (insn = first; insn; insn = NEXT_INSN (insn))
4225 if (INSN_P (insn))
4226 leaf_renumber_regs_insn (PATTERN (insn));
4227 for (insn = current_function_epilogue_delay_list;
4228 insn;
4229 insn = XEXP (insn, 1))
4230 if (INSN_P (XEXP (insn, 0)))
4231 leaf_renumber_regs_insn (PATTERN (XEXP (insn, 0)));
4234 /* Scan IN_RTX and its subexpressions, and renumber all regs into those
4235 available in leaf functions. */
4237 void
4238 leaf_renumber_regs_insn (in_rtx)
4239 rtx in_rtx;
4241 int i, j;
4242 const char *format_ptr;
4244 if (in_rtx == 0)
4245 return;
4247 /* Renumber all input-registers into output-registers.
4248 renumbered_regs would be 1 for an output-register;
4249 they */
4251 if (GET_CODE (in_rtx) == REG)
4253 int newreg;
4255 /* Don't renumber the same reg twice. */
4256 if (in_rtx->used)
4257 return;
4259 newreg = REGNO (in_rtx);
4260 /* Don't try to renumber pseudo regs. It is possible for a pseudo reg
4261 to reach here as part of a REG_NOTE. */
4262 if (newreg >= FIRST_PSEUDO_REGISTER)
4264 in_rtx->used = 1;
4265 return;
4267 newreg = LEAF_REG_REMAP (newreg);
4268 if (newreg < 0)
4269 abort ();
4270 regs_ever_live[REGNO (in_rtx)] = 0;
4271 regs_ever_live[newreg] = 1;
4272 REGNO (in_rtx) = newreg;
4273 in_rtx->used = 1;
4276 if (INSN_P (in_rtx))
4278 /* Inside a SEQUENCE, we find insns.
4279 Renumber just the patterns of these insns,
4280 just as we do for the top-level insns. */
4281 leaf_renumber_regs_insn (PATTERN (in_rtx));
4282 return;
4285 format_ptr = GET_RTX_FORMAT (GET_CODE (in_rtx));
4287 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (in_rtx)); i++)
4288 switch (*format_ptr++)
4290 case 'e':
4291 leaf_renumber_regs_insn (XEXP (in_rtx, i));
4292 break;
4294 case 'E':
4295 if (NULL != XVEC (in_rtx, i))
4297 for (j = 0; j < XVECLEN (in_rtx, i); j++)
4298 leaf_renumber_regs_insn (XVECEXP (in_rtx, i, j));
4300 break;
4302 case 'S':
4303 case 's':
4304 case '0':
4305 case 'i':
4306 case 'w':
4307 case 'n':
4308 case 'u':
4309 break;
4311 default:
4312 abort ();
4315 #endif