configure.in: Remove ENABLE_STD_NAMESPACE.
[official-gcc.git] / gcc / final.c
blob88519bd73bfa128a75faa3c6028df9ca3aa939cb
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 GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
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 as assembler code by the macros 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"
69 /* Get N_SLINE and N_SOL from stab.h if we can expect the file to exist. */
70 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
71 #include "dbxout.h"
72 #if defined (USG) || !defined (HAVE_STAB_H)
73 #include "gstab.h" /* If doing DBX on sysV, use our own stab.h. */
74 #else
75 #include <stab.h>
76 #endif
78 #endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
80 #ifdef XCOFF_DEBUGGING_INFO
81 #include "xcoffout.h"
82 #endif
84 #ifdef DWARF_DEBUGGING_INFO
85 #include "dwarfout.h"
86 #endif
88 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
89 #include "dwarf2out.h"
90 #endif
92 #ifdef SDB_DEBUGGING_INFO
93 #include "sdbout.h"
94 #endif
96 /* .stabd code for line number. */
97 #ifndef N_SLINE
98 #define N_SLINE 0x44
99 #endif
101 /* .stabs code for included file name. */
102 #ifndef N_SOL
103 #define N_SOL 0x84
104 #endif
106 /* If we aren't using cc0, CC_STATUS_INIT shouldn't exist. So define a
107 null default for it to save conditionalization later. */
108 #ifndef CC_STATUS_INIT
109 #define CC_STATUS_INIT
110 #endif
112 /* How to start an assembler comment. */
113 #ifndef ASM_COMMENT_START
114 #define ASM_COMMENT_START ";#"
115 #endif
117 /* Is the given character a logical line separator for the assembler? */
118 #ifndef IS_ASM_LOGICAL_LINE_SEPARATOR
119 #define IS_ASM_LOGICAL_LINE_SEPARATOR(C) ((C) == ';')
120 #endif
122 #ifndef JUMP_TABLES_IN_TEXT_SECTION
123 #define JUMP_TABLES_IN_TEXT_SECTION 0
124 #endif
126 /* Last insn processed by final_scan_insn. */
127 static rtx debug_insn;
128 rtx current_output_insn;
130 /* Line number of last NOTE. */
131 static int last_linenum;
133 /* Highest line number in current block. */
134 static int high_block_linenum;
136 /* Likewise for function. */
137 static int high_function_linenum;
139 /* Filename of last NOTE. */
140 static const char *last_filename;
142 /* Number of basic blocks seen so far;
143 used if profile_block_flag is set. */
144 static int count_basic_blocks;
146 /* Number of instrumented arcs when profile_arc_flag is set. */
147 extern int count_instrumented_edges;
149 extern int length_unit_log; /* This is defined in insn-attrtab.c. */
151 /* Nonzero while outputting an `asm' with operands.
152 This means that inconsistencies are the user's fault, so don't abort.
153 The precise value is the insn being output, to pass to error_for_asm. */
154 static rtx this_is_asm_operands;
156 /* Number of operands of this insn, for an `asm' with operands. */
157 static unsigned int insn_noperands;
159 /* Compare optimization flag. */
161 static rtx last_ignored_compare = 0;
163 /* Flag indicating this insn is the start of a new basic block. */
165 static int new_block = 1;
167 /* Assign a unique number to each insn that is output.
168 This can be used to generate unique local labels. */
170 static int insn_counter = 0;
172 #ifdef HAVE_cc0
173 /* This variable contains machine-dependent flags (defined in tm.h)
174 set and examined by output routines
175 that describe how to interpret the condition codes properly. */
177 CC_STATUS cc_status;
179 /* During output of an insn, this contains a copy of cc_status
180 from before the insn. */
182 CC_STATUS cc_prev_status;
183 #endif
185 /* Indexed by hardware reg number, is 1 if that register is ever
186 used in the current function.
188 In life_analysis, or in stupid_life_analysis, this is set
189 up to record the hard regs used explicitly. Reload adds
190 in the hard regs used for holding pseudo regs. Final uses
191 it to generate the code in the function prologue and epilogue
192 to save and restore registers as needed. */
194 char regs_ever_live[FIRST_PSEUDO_REGISTER];
196 /* Nonzero means current function must be given a frame pointer.
197 Set in stmt.c if anything is allocated on the stack there.
198 Set in reload1.c if anything is allocated on the stack there. */
200 int frame_pointer_needed;
202 /* Assign unique numbers to labels generated for profiling. */
204 int profile_label_no;
206 /* Number of unmatched NOTE_INSN_BLOCK_BEG notes we have seen. */
208 static int block_depth;
210 /* Nonzero if have enabled APP processing of our assembler output. */
212 static int app_on;
214 /* If we are outputting an insn sequence, this contains the sequence rtx.
215 Zero otherwise. */
217 rtx final_sequence;
219 #ifdef ASSEMBLER_DIALECT
221 /* Number of the assembler dialect to use, starting at 0. */
222 static int dialect_number;
223 #endif
225 /* Indexed by line number, nonzero if there is a note for that line. */
227 static char *line_note_exists;
229 #ifdef HAVE_conditional_execution
230 /* Nonnull if the insn currently being emitted was a COND_EXEC pattern. */
231 rtx current_insn_predicate;
232 #endif
234 /* Linked list to hold line numbers for each basic block. */
236 struct bb_list
238 struct bb_list *next; /* pointer to next basic block */
239 int line_num; /* line number */
240 int file_label_num; /* LPBC<n> label # for stored filename */
241 int func_label_num; /* LPBC<n> label # for stored function name */
244 static struct bb_list *bb_head = 0; /* Head of basic block list */
245 static struct bb_list **bb_tail = &bb_head; /* Ptr to store next bb ptr */
246 static int bb_file_label_num = -1; /* Current label # for file */
247 static int bb_func_label_num = -1; /* Current label # for func */
249 /* Linked list to hold the strings for each file and function name output. */
251 struct bb_str
253 struct bb_str *next; /* pointer to next string */
254 const char *string; /* string */
255 int label_num; /* label number */
256 int length; /* string length */
259 static struct bb_str *sbb_head = 0; /* Head of string list. */
260 static struct bb_str **sbb_tail = &sbb_head; /* Ptr to store next bb str */
261 static int sbb_label_num = 0; /* Last label used */
263 #ifdef HAVE_ATTR_length
264 static int asm_insn_count PARAMS ((rtx));
265 #endif
266 static void profile_function PARAMS ((FILE *));
267 static void profile_after_prologue PARAMS ((FILE *));
268 static void add_bb PARAMS ((FILE *));
269 static int add_bb_string PARAMS ((const char *, int));
270 static void output_source_line PARAMS ((FILE *, rtx));
271 static rtx walk_alter_subreg PARAMS ((rtx));
272 static void output_asm_name PARAMS ((void));
273 static void output_operand PARAMS ((rtx, int));
274 #ifdef LEAF_REGISTERS
275 static void leaf_renumber_regs PARAMS ((rtx));
276 #endif
277 #ifdef HAVE_cc0
278 static int alter_cond PARAMS ((rtx));
279 #endif
280 #ifndef ADDR_VEC_ALIGN
281 static int final_addr_vec_align PARAMS ((rtx));
282 #endif
283 #ifdef HAVE_ATTR_length
284 static int align_fuzz PARAMS ((rtx, rtx, int, unsigned));
285 #endif
287 /* Initialize data in final at the beginning of a compilation. */
289 void
290 init_final (filename)
291 const char *filename ATTRIBUTE_UNUSED;
293 app_on = 0;
294 final_sequence = 0;
296 #ifdef ASSEMBLER_DIALECT
297 dialect_number = ASSEMBLER_DIALECT;
298 #endif
301 /* Called at end of source file,
302 to output the block-profiling table for this entire compilation. */
304 void
305 end_final (filename)
306 const char *filename;
308 int i;
310 if (profile_block_flag || profile_arc_flag)
312 char name[20];
313 int align = exact_log2 (BIGGEST_ALIGNMENT / BITS_PER_UNIT);
314 int size, rounded;
315 struct bb_list *ptr;
316 struct bb_str *sptr;
317 int long_bytes = LONG_TYPE_SIZE / BITS_PER_UNIT;
318 int pointer_bytes = POINTER_SIZE / BITS_PER_UNIT;
320 if (profile_block_flag)
321 size = long_bytes * count_basic_blocks;
322 else
323 size = long_bytes * count_instrumented_edges;
324 rounded = size;
326 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
327 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
328 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
330 data_section ();
332 /* Output the main header, of 11 words:
333 0: 1 if this file is initialized, else 0.
334 1: address of file name (LPBX1).
335 2: address of table of counts (LPBX2).
336 3: number of counts in the table.
337 4: always 0, for compatibility with Sun.
339 The following are GNU extensions:
341 5: address of table of start addrs of basic blocks (LPBX3).
342 6: Number of bytes in this header.
343 7: address of table of function names (LPBX4).
344 8: address of table of line numbers (LPBX5) or 0.
345 9: address of table of file names (LPBX6) or 0.
346 10: space reserved for basic block profiling. */
348 ASM_OUTPUT_ALIGN (asm_out_file, align);
350 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 0);
351 /* zero word */
352 assemble_integer (const0_rtx, long_bytes, 1);
354 /* address of filename */
355 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 1);
356 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes, 1);
358 /* address of count table */
359 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 2);
360 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes, 1);
362 /* count of the # of basic blocks or # of instrumented arcs */
363 if (profile_block_flag)
364 assemble_integer (GEN_INT (count_basic_blocks), long_bytes, 1);
365 else
366 assemble_integer (GEN_INT (count_instrumented_edges), long_bytes, 1);
368 /* zero word (link field) */
369 assemble_integer (const0_rtx, pointer_bytes, 1);
371 /* address of basic block start address table */
372 if (profile_block_flag)
374 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
375 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes,
378 else
379 assemble_integer (const0_rtx, pointer_bytes, 1);
381 /* byte count for extended structure. */
382 assemble_integer (GEN_INT (11 * UNITS_PER_WORD), long_bytes, 1);
384 /* address of function name table */
385 if (profile_block_flag)
387 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 4);
388 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes,
391 else
392 assemble_integer (const0_rtx, pointer_bytes, 1);
394 /* address of line number and filename tables if debugging. */
395 if (write_symbols != NO_DEBUG && profile_block_flag)
397 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 5);
398 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
399 pointer_bytes, 1);
400 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 6);
401 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
402 pointer_bytes, 1);
404 else
406 assemble_integer (const0_rtx, pointer_bytes, 1);
407 assemble_integer (const0_rtx, pointer_bytes, 1);
410 /* space for extension ptr (link field) */
411 assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
413 /* Output the file name changing the suffix to .d for Sun tcov
414 compatibility. */
415 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 1);
417 char *cwd = getpwd ();
418 int len = strlen (filename) + strlen (cwd) + 1;
419 char *data_file = (char *) alloca (len + 4);
421 strcpy (data_file, cwd);
422 strcat (data_file, "/");
423 strcat (data_file, filename);
424 strip_off_ending (data_file, len);
425 if (profile_block_flag)
426 strcat (data_file, ".d");
427 else
428 strcat (data_file, ".da");
429 assemble_string (data_file, strlen (data_file) + 1);
432 /* Make space for the table of counts. */
433 if (size == 0)
435 /* Realign data section. */
436 ASM_OUTPUT_ALIGN (asm_out_file, align);
437 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 2);
438 if (size != 0)
439 assemble_zeros (size);
441 else
443 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 2);
444 #ifdef ASM_OUTPUT_SHARED_LOCAL
445 if (flag_shared_data)
446 ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
447 else
448 #endif
449 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
450 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name,
451 size, BIGGEST_ALIGNMENT);
452 #else
453 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
454 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size,
455 BIGGEST_ALIGNMENT);
456 #else
457 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
458 #endif
459 #endif
462 /* Output any basic block strings */
463 if (profile_block_flag)
465 readonly_data_section ();
466 if (sbb_head)
468 ASM_OUTPUT_ALIGN (asm_out_file, align);
469 for (sptr = sbb_head; sptr != 0; sptr = sptr->next)
471 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBC",
472 sptr->label_num);
473 assemble_string (sptr->string, sptr->length);
478 /* Output the table of addresses. */
479 if (profile_block_flag)
481 /* Realign in new section */
482 ASM_OUTPUT_ALIGN (asm_out_file, align);
483 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 3);
484 for (i = 0; i < count_basic_blocks; i++)
486 ASM_GENERATE_INTERNAL_LABEL (name, "LPB", i);
487 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
488 pointer_bytes, 1);
492 /* Output the table of function names. */
493 if (profile_block_flag)
495 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 4);
496 for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
498 if (ptr->func_label_num >= 0)
500 ASM_GENERATE_INTERNAL_LABEL (name, "LPBC",
501 ptr->func_label_num);
502 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
503 pointer_bytes, 1);
505 else
506 assemble_integer (const0_rtx, pointer_bytes, 1);
509 for (; i < count_basic_blocks; i++)
510 assemble_integer (const0_rtx, pointer_bytes, 1);
513 if (write_symbols != NO_DEBUG && profile_block_flag)
515 /* Output the table of line numbers. */
516 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 5);
517 for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
518 assemble_integer (GEN_INT (ptr->line_num), long_bytes, 1);
520 for (; i < count_basic_blocks; i++)
521 assemble_integer (const0_rtx, long_bytes, 1);
523 /* Output the table of file names. */
524 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 6);
525 for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
527 if (ptr->file_label_num >= 0)
529 ASM_GENERATE_INTERNAL_LABEL (name, "LPBC",
530 ptr->file_label_num);
531 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
532 pointer_bytes, 1);
534 else
535 assemble_integer (const0_rtx, pointer_bytes, 1);
538 for (; i < count_basic_blocks; i++)
539 assemble_integer (const0_rtx, pointer_bytes, 1);
542 /* End with the address of the table of addresses,
543 so we can find it easily, as the last word in the file's text. */
544 if (profile_block_flag)
546 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
547 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes,
553 /* Enable APP processing of subsequent output.
554 Used before the output from an `asm' statement. */
556 void
557 app_enable ()
559 if (! app_on)
561 fputs (ASM_APP_ON, asm_out_file);
562 app_on = 1;
566 /* Disable APP processing of subsequent output.
567 Called from varasm.c before most kinds of output. */
569 void
570 app_disable ()
572 if (app_on)
574 fputs (ASM_APP_OFF, asm_out_file);
575 app_on = 0;
579 /* Return the number of slots filled in the current
580 delayed branch sequence (we don't count the insn needing the
581 delay slot). Zero if not in a delayed branch sequence. */
583 #ifdef DELAY_SLOTS
585 dbr_sequence_length ()
587 if (final_sequence != 0)
588 return XVECLEN (final_sequence, 0) - 1;
589 else
590 return 0;
592 #endif
594 /* The next two pages contain routines used to compute the length of an insn
595 and to shorten branches. */
597 /* Arrays for insn lengths, and addresses. The latter is referenced by
598 `insn_current_length'. */
600 static short *insn_lengths;
602 #ifdef HAVE_ATTR_length
603 varray_type insn_addresses_;
604 #endif
606 /* Max uid for which the above arrays are valid. */
607 static int insn_lengths_max_uid;
609 /* Address of insn being processed. Used by `insn_current_length'. */
610 int insn_current_address;
612 /* Address of insn being processed in previous iteration. */
613 int insn_last_address;
615 /* konwn invariant alignment of insn being processed. */
616 int insn_current_align;
618 /* After shorten_branches, for any insn, uid_align[INSN_UID (insn)]
619 gives the next following alignment insn that increases the known
620 alignment, or NULL_RTX if there is no such insn.
621 For any alignment obtained this way, we can again index uid_align with
622 its uid to obtain the next following align that in turn increases the
623 alignment, till we reach NULL_RTX; the sequence obtained this way
624 for each insn we'll call the alignment chain of this insn in the following
625 comments. */
627 struct label_alignment
629 short alignment;
630 short max_skip;
633 static rtx *uid_align;
634 static int *uid_shuid;
635 static struct label_alignment *label_align;
637 /* Indicate that branch shortening hasn't yet been done. */
639 void
640 init_insn_lengths ()
642 if (label_align)
644 free (label_align);
645 label_align = 0;
647 if (uid_shuid)
649 free (uid_shuid);
650 uid_shuid = 0;
652 if (insn_lengths)
654 free (insn_lengths);
655 insn_lengths = 0;
656 insn_lengths_max_uid = 0;
658 #ifdef HAVE_ATTR_length
659 INSN_ADDRESSES_FREE ();
660 #endif
661 if (uid_align)
663 free (uid_align);
664 uid_align = 0;
668 /* Obtain the current length of an insn. If branch shortening has been done,
669 get its actual length. Otherwise, get its maximum length. */
672 get_attr_length (insn)
673 rtx insn ATTRIBUTE_UNUSED;
675 #ifdef HAVE_ATTR_length
676 rtx body;
677 int i;
678 int length = 0;
680 if (insn_lengths_max_uid > INSN_UID (insn))
681 return insn_lengths[INSN_UID (insn)];
682 else
683 switch (GET_CODE (insn))
685 case NOTE:
686 case BARRIER:
687 case CODE_LABEL:
688 return 0;
690 case CALL_INSN:
691 length = insn_default_length (insn);
692 break;
694 case JUMP_INSN:
695 body = PATTERN (insn);
696 if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
698 /* Alignment is machine-dependent and should be handled by
699 ADDR_VEC_ALIGN. */
701 else
702 length = insn_default_length (insn);
703 break;
705 case INSN:
706 body = PATTERN (insn);
707 if (GET_CODE (body) == USE || GET_CODE (body) == CLOBBER)
708 return 0;
710 else if (GET_CODE (body) == ASM_INPUT || asm_noperands (body) >= 0)
711 length = asm_insn_count (body) * insn_default_length (insn);
712 else if (GET_CODE (body) == SEQUENCE)
713 for (i = 0; i < XVECLEN (body, 0); i++)
714 length += get_attr_length (XVECEXP (body, 0, i));
715 else
716 length = insn_default_length (insn);
717 break;
719 default:
720 break;
723 #ifdef ADJUST_INSN_LENGTH
724 ADJUST_INSN_LENGTH (insn, length);
725 #endif
726 return length;
727 #else /* not HAVE_ATTR_length */
728 return 0;
729 #endif /* not HAVE_ATTR_length */
732 /* Code to handle alignment inside shorten_branches. */
734 /* Here is an explanation how the algorithm in align_fuzz can give
735 proper results:
737 Call a sequence of instructions beginning with alignment point X
738 and continuing until the next alignment point `block X'. When `X'
739 is used in an expression, it means the alignment value of the
740 alignment point.
742 Call the distance between the start of the first insn of block X, and
743 the end of the last insn of block X `IX', for the `inner size of X'.
744 This is clearly the sum of the instruction lengths.
746 Likewise with the next alignment-delimited block following X, which we
747 shall call block Y.
749 Call the distance between the start of the first insn of block X, and
750 the start of the first insn of block Y `OX', for the `outer size of X'.
752 The estimated padding is then OX - IX.
754 OX can be safely estimated as
756 if (X >= Y)
757 OX = round_up(IX, Y)
758 else
759 OX = round_up(IX, X) + Y - X
761 Clearly est(IX) >= real(IX), because that only depends on the
762 instruction lengths, and those being overestimated is a given.
764 Clearly round_up(foo, Z) >= round_up(bar, Z) if foo >= bar, so
765 we needn't worry about that when thinking about OX.
767 When X >= Y, the alignment provided by Y adds no uncertainty factor
768 for branch ranges starting before X, so we can just round what we have.
769 But when X < Y, we don't know anything about the, so to speak,
770 `middle bits', so we have to assume the worst when aligning up from an
771 address mod X to one mod Y, which is Y - X. */
773 #ifndef LABEL_ALIGN
774 #define LABEL_ALIGN(LABEL) align_labels_log
775 #endif
777 #ifndef LABEL_ALIGN_MAX_SKIP
778 #define LABEL_ALIGN_MAX_SKIP (align_labels-1)
779 #endif
781 #ifndef LOOP_ALIGN
782 #define LOOP_ALIGN(LABEL) align_loops_log
783 #endif
785 #ifndef LOOP_ALIGN_MAX_SKIP
786 #define LOOP_ALIGN_MAX_SKIP (align_loops-1)
787 #endif
789 #ifndef LABEL_ALIGN_AFTER_BARRIER
790 #define LABEL_ALIGN_AFTER_BARRIER(LABEL) align_jumps_log
791 #endif
793 #ifndef LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP
794 #define LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP (align_jumps-1)
795 #endif
797 #ifndef ADDR_VEC_ALIGN
798 static int
799 final_addr_vec_align (addr_vec)
800 rtx addr_vec;
802 int align = GET_MODE_SIZE (GET_MODE (PATTERN (addr_vec)));
804 if (align > BIGGEST_ALIGNMENT / BITS_PER_UNIT)
805 align = BIGGEST_ALIGNMENT / BITS_PER_UNIT;
806 return exact_log2 (align);
810 #define ADDR_VEC_ALIGN(ADDR_VEC) final_addr_vec_align (ADDR_VEC)
811 #endif
813 #ifndef INSN_LENGTH_ALIGNMENT
814 #define INSN_LENGTH_ALIGNMENT(INSN) length_unit_log
815 #endif
817 #define INSN_SHUID(INSN) (uid_shuid[INSN_UID (INSN)])
819 static int min_labelno, max_labelno;
821 #define LABEL_TO_ALIGNMENT(LABEL) \
822 (label_align[CODE_LABEL_NUMBER (LABEL) - min_labelno].alignment)
824 #define LABEL_TO_MAX_SKIP(LABEL) \
825 (label_align[CODE_LABEL_NUMBER (LABEL) - min_labelno].max_skip)
827 /* For the benefit of port specific code do this also as a function. */
830 label_to_alignment (label)
831 rtx label;
833 return LABEL_TO_ALIGNMENT (label);
836 #ifdef HAVE_ATTR_length
837 /* The differences in addresses
838 between a branch and its target might grow or shrink depending on
839 the alignment the start insn of the range (the branch for a forward
840 branch or the label for a backward branch) starts out on; if these
841 differences are used naively, they can even oscillate infinitely.
842 We therefore want to compute a 'worst case' address difference that
843 is independent of the alignment the start insn of the range end
844 up on, and that is at least as large as the actual difference.
845 The function align_fuzz calculates the amount we have to add to the
846 naively computed difference, by traversing the part of the alignment
847 chain of the start insn of the range that is in front of the end insn
848 of the range, and considering for each alignment the maximum amount
849 that it might contribute to a size increase.
851 For casesi tables, we also want to know worst case minimum amounts of
852 address difference, in case a machine description wants to introduce
853 some common offset that is added to all offsets in a table.
854 For this purpose, align_fuzz with a growth argument of 0 comuptes the
855 appropriate adjustment. */
857 /* Compute the maximum delta by which the difference of the addresses of
858 START and END might grow / shrink due to a different address for start
859 which changes the size of alignment insns between START and END.
860 KNOWN_ALIGN_LOG is the alignment known for START.
861 GROWTH should be ~0 if the objective is to compute potential code size
862 increase, and 0 if the objective is to compute potential shrink.
863 The return value is undefined for any other value of GROWTH. */
865 static int
866 align_fuzz (start, end, known_align_log, growth)
867 rtx start, end;
868 int known_align_log;
869 unsigned growth;
871 int uid = INSN_UID (start);
872 rtx align_label;
873 int known_align = 1 << known_align_log;
874 int end_shuid = INSN_SHUID (end);
875 int fuzz = 0;
877 for (align_label = uid_align[uid]; align_label; align_label = uid_align[uid])
879 int align_addr, new_align;
881 uid = INSN_UID (align_label);
882 align_addr = INSN_ADDRESSES (uid) - insn_lengths[uid];
883 if (uid_shuid[uid] > end_shuid)
884 break;
885 known_align_log = LABEL_TO_ALIGNMENT (align_label);
886 new_align = 1 << known_align_log;
887 if (new_align < known_align)
888 continue;
889 fuzz += (-align_addr ^ growth) & (new_align - known_align);
890 known_align = new_align;
892 return fuzz;
895 /* Compute a worst-case reference address of a branch so that it
896 can be safely used in the presence of aligned labels. Since the
897 size of the branch itself is unknown, the size of the branch is
898 not included in the range. I.e. for a forward branch, the reference
899 address is the end address of the branch as known from the previous
900 branch shortening pass, minus a value to account for possible size
901 increase due to alignment. For a backward branch, it is the start
902 address of the branch as known from the current pass, plus a value
903 to account for possible size increase due to alignment.
904 NB.: Therefore, the maximum offset allowed for backward branches needs
905 to exclude the branch size. */
908 insn_current_reference_address (branch)
909 rtx branch;
911 rtx dest, seq;
912 int seq_uid;
914 if (! INSN_ADDRESSES_SET_P ())
915 return 0;
917 seq = NEXT_INSN (PREV_INSN (branch));
918 seq_uid = INSN_UID (seq);
919 if (GET_CODE (branch) != JUMP_INSN)
920 /* This can happen for example on the PA; the objective is to know the
921 offset to address something in front of the start of the function.
922 Thus, we can treat it like a backward branch.
923 We assume here that FUNCTION_BOUNDARY / BITS_PER_UNIT is larger than
924 any alignment we'd encounter, so we skip the call to align_fuzz. */
925 return insn_current_address;
926 dest = JUMP_LABEL (branch);
928 /* BRANCH has no proper alignment chain set, so use SEQ.
929 BRANCH also has no INSN_SHUID. */
930 if (INSN_SHUID (seq) < INSN_SHUID (dest))
932 /* Forward branch. */
933 return (insn_last_address + insn_lengths[seq_uid]
934 - align_fuzz (seq, dest, length_unit_log, ~0));
936 else
938 /* Backward branch. */
939 return (insn_current_address
940 + align_fuzz (dest, seq, length_unit_log, ~0));
943 #endif /* HAVE_ATTR_length */
945 /* Make a pass over all insns and compute their actual lengths by shortening
946 any branches of variable length if possible. */
948 /* Give a default value for the lowest address in a function. */
950 #ifndef FIRST_INSN_ADDRESS
951 #define FIRST_INSN_ADDRESS 0
952 #endif
954 /* shorten_branches might be called multiple times: for example, the SH
955 port splits out-of-range conditional branches in MACHINE_DEPENDENT_REORG.
956 In order to do this, it needs proper length information, which it obtains
957 by calling shorten_branches. This cannot be collapsed with
958 shorten_branches itself into a single pass unless we also want to intergate
959 reorg.c, since the branch splitting exposes new instructions with delay
960 slots. */
962 void
963 shorten_branches (first)
964 rtx first ATTRIBUTE_UNUSED;
966 rtx insn;
967 int max_uid;
968 int i;
969 int max_log;
970 int max_skip;
971 #ifdef HAVE_ATTR_length
972 #define MAX_CODE_ALIGN 16
973 rtx seq;
974 int something_changed = 1;
975 char *varying_length;
976 rtx body;
977 int uid;
978 rtx align_tab[MAX_CODE_ALIGN];
980 /* In order to make sure that all instructions have valid length info,
981 we must split them before we compute the address/length info. */
983 for (insn = NEXT_INSN (first); insn; insn = NEXT_INSN (insn))
984 if (INSN_P (insn))
986 rtx old = insn;
987 /* Don't split the insn if it has been deleted. */
988 if (! INSN_DELETED_P (old))
989 insn = try_split (PATTERN (old), old, 1);
990 /* When not optimizing, the old insn will be still left around
991 with only the 'deleted' bit set. Transform it into a note
992 to avoid confusion of subsequent processing. */
993 if (INSN_DELETED_P (old))
995 PUT_CODE (old, NOTE);
996 NOTE_LINE_NUMBER (old) = NOTE_INSN_DELETED;
997 NOTE_SOURCE_FILE (old) = 0;
1000 #endif
1002 /* We must do some computations even when not actually shortening, in
1003 order to get the alignment information for the labels. */
1005 init_insn_lengths ();
1007 /* Compute maximum UID and allocate label_align / uid_shuid. */
1008 max_uid = get_max_uid ();
1010 max_labelno = max_label_num ();
1011 min_labelno = get_first_label_num ();
1012 label_align = (struct label_alignment *)
1013 xcalloc ((max_labelno - min_labelno + 1), sizeof (struct label_alignment));
1015 uid_shuid = (int *) xmalloc (max_uid * sizeof *uid_shuid);
1017 /* Initialize label_align and set up uid_shuid to be strictly
1018 monotonically rising with insn order. */
1019 /* We use max_log here to keep track of the maximum alignment we want to
1020 impose on the next CODE_LABEL (or the current one if we are processing
1021 the CODE_LABEL itself). */
1023 max_log = 0;
1024 max_skip = 0;
1026 for (insn = get_insns (), i = 1; insn; insn = NEXT_INSN (insn))
1028 int log;
1030 INSN_SHUID (insn) = i++;
1031 if (INSN_P (insn))
1033 /* reorg might make the first insn of a loop being run once only,
1034 and delete the label in front of it. Then we want to apply
1035 the loop alignment to the new label created by reorg, which
1036 is separated by the former loop start insn from the
1037 NOTE_INSN_LOOP_BEG. */
1039 else if (GET_CODE (insn) == CODE_LABEL)
1041 rtx next;
1043 log = LABEL_ALIGN (insn);
1044 if (max_log < log)
1046 max_log = log;
1047 max_skip = LABEL_ALIGN_MAX_SKIP;
1049 next = NEXT_INSN (insn);
1050 /* ADDR_VECs only take room if read-only data goes into the text
1051 section. */
1052 if (JUMP_TABLES_IN_TEXT_SECTION
1053 #if !defined(READONLY_DATA_SECTION)
1054 || 1
1055 #endif
1057 if (next && GET_CODE (next) == JUMP_INSN)
1059 rtx nextbody = PATTERN (next);
1060 if (GET_CODE (nextbody) == ADDR_VEC
1061 || GET_CODE (nextbody) == ADDR_DIFF_VEC)
1063 log = ADDR_VEC_ALIGN (next);
1064 if (max_log < log)
1066 max_log = log;
1067 max_skip = LABEL_ALIGN_MAX_SKIP;
1071 LABEL_TO_ALIGNMENT (insn) = max_log;
1072 LABEL_TO_MAX_SKIP (insn) = max_skip;
1073 max_log = 0;
1074 max_skip = 0;
1076 else if (GET_CODE (insn) == BARRIER)
1078 rtx label;
1080 for (label = insn; label && ! INSN_P (label);
1081 label = NEXT_INSN (label))
1082 if (GET_CODE (label) == CODE_LABEL)
1084 log = LABEL_ALIGN_AFTER_BARRIER (insn);
1085 if (max_log < log)
1087 max_log = log;
1088 max_skip = LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP;
1090 break;
1093 /* Again, we allow NOTE_INSN_LOOP_BEG - INSN - CODE_LABEL
1094 sequences in order to handle reorg output efficiently. */
1095 else if (GET_CODE (insn) == NOTE
1096 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
1098 rtx label;
1099 int nest = 0;
1101 /* Search for the label that starts the loop.
1102 Don't skip past the end of the loop, since that could
1103 lead to putting an alignment where it does not belong.
1104 However, a label after a nested (non-)loop would be OK. */
1105 for (label = insn; label; label = NEXT_INSN (label))
1107 if (GET_CODE (label) == NOTE
1108 && NOTE_LINE_NUMBER (label) == NOTE_INSN_LOOP_BEG)
1109 nest++;
1110 else if (GET_CODE (label) == NOTE
1111 && NOTE_LINE_NUMBER (label) == NOTE_INSN_LOOP_END
1112 && --nest == 0)
1113 break;
1114 else if (GET_CODE (label) == CODE_LABEL)
1116 log = LOOP_ALIGN (label);
1117 if (max_log < log)
1119 max_log = log;
1120 max_skip = LOOP_ALIGN_MAX_SKIP;
1122 break;
1126 else
1127 continue;
1129 #ifdef HAVE_ATTR_length
1131 /* Allocate the rest of the arrays. */
1132 insn_lengths = (short *) xmalloc (max_uid * sizeof (short));
1133 insn_lengths_max_uid = max_uid;
1134 /* Syntax errors can lead to labels being outside of the main insn stream.
1135 Initialize insn_addresses, so that we get reproducible results. */
1136 INSN_ADDRESSES_ALLOC (max_uid);
1138 varying_length = (char *) xcalloc (max_uid, sizeof (char));
1140 /* Initialize uid_align. We scan instructions
1141 from end to start, and keep in align_tab[n] the last seen insn
1142 that does an alignment of at least n+1, i.e. the successor
1143 in the alignment chain for an insn that does / has a known
1144 alignment of n. */
1145 uid_align = (rtx *) xcalloc (max_uid, sizeof *uid_align);
1147 for (i = MAX_CODE_ALIGN; --i >= 0;)
1148 align_tab[i] = NULL_RTX;
1149 seq = get_last_insn ();
1150 for (; seq; seq = PREV_INSN (seq))
1152 int uid = INSN_UID (seq);
1153 int log;
1154 log = (GET_CODE (seq) == CODE_LABEL ? LABEL_TO_ALIGNMENT (seq) : 0);
1155 uid_align[uid] = align_tab[0];
1156 if (log)
1158 /* Found an alignment label. */
1159 uid_align[uid] = align_tab[log];
1160 for (i = log - 1; i >= 0; i--)
1161 align_tab[i] = seq;
1164 #ifdef CASE_VECTOR_SHORTEN_MODE
1165 if (optimize)
1167 /* Look for ADDR_DIFF_VECs, and initialize their minimum and maximum
1168 label fields. */
1170 int min_shuid = INSN_SHUID (get_insns ()) - 1;
1171 int max_shuid = INSN_SHUID (get_last_insn ()) + 1;
1172 int rel;
1174 for (insn = first; insn != 0; insn = NEXT_INSN (insn))
1176 rtx min_lab = NULL_RTX, max_lab = NULL_RTX, pat;
1177 int len, i, min, max, insn_shuid;
1178 int min_align;
1179 addr_diff_vec_flags flags;
1181 if (GET_CODE (insn) != JUMP_INSN
1182 || GET_CODE (PATTERN (insn)) != ADDR_DIFF_VEC)
1183 continue;
1184 pat = PATTERN (insn);
1185 len = XVECLEN (pat, 1);
1186 if (len <= 0)
1187 abort ();
1188 min_align = MAX_CODE_ALIGN;
1189 for (min = max_shuid, max = min_shuid, i = len - 1; i >= 0; i--)
1191 rtx lab = XEXP (XVECEXP (pat, 1, i), 0);
1192 int shuid = INSN_SHUID (lab);
1193 if (shuid < min)
1195 min = shuid;
1196 min_lab = lab;
1198 if (shuid > max)
1200 max = shuid;
1201 max_lab = lab;
1203 if (min_align > LABEL_TO_ALIGNMENT (lab))
1204 min_align = LABEL_TO_ALIGNMENT (lab);
1206 XEXP (pat, 2) = gen_rtx_LABEL_REF (VOIDmode, min_lab);
1207 XEXP (pat, 3) = gen_rtx_LABEL_REF (VOIDmode, max_lab);
1208 insn_shuid = INSN_SHUID (insn);
1209 rel = INSN_SHUID (XEXP (XEXP (pat, 0), 0));
1210 flags.min_align = min_align;
1211 flags.base_after_vec = rel > insn_shuid;
1212 flags.min_after_vec = min > insn_shuid;
1213 flags.max_after_vec = max > insn_shuid;
1214 flags.min_after_base = min > rel;
1215 flags.max_after_base = max > rel;
1216 ADDR_DIFF_VEC_FLAGS (pat) = flags;
1219 #endif /* CASE_VECTOR_SHORTEN_MODE */
1221 /* Compute initial lengths, addresses, and varying flags for each insn. */
1222 for (insn_current_address = FIRST_INSN_ADDRESS, insn = first;
1223 insn != 0;
1224 insn_current_address += insn_lengths[uid], insn = NEXT_INSN (insn))
1226 uid = INSN_UID (insn);
1228 insn_lengths[uid] = 0;
1230 if (GET_CODE (insn) == CODE_LABEL)
1232 int log = LABEL_TO_ALIGNMENT (insn);
1233 if (log)
1235 int align = 1 << log;
1236 int new_address = (insn_current_address + align - 1) & -align;
1237 insn_lengths[uid] = new_address - insn_current_address;
1241 INSN_ADDRESSES (uid) = insn_current_address;
1243 if (GET_CODE (insn) == NOTE || GET_CODE (insn) == BARRIER
1244 || GET_CODE (insn) == CODE_LABEL)
1245 continue;
1246 if (INSN_DELETED_P (insn))
1247 continue;
1249 body = PATTERN (insn);
1250 if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
1252 /* This only takes room if read-only data goes into the text
1253 section. */
1254 if (JUMP_TABLES_IN_TEXT_SECTION
1255 #if !defined(READONLY_DATA_SECTION)
1256 || 1
1257 #endif
1259 insn_lengths[uid] = (XVECLEN (body,
1260 GET_CODE (body) == ADDR_DIFF_VEC)
1261 * GET_MODE_SIZE (GET_MODE (body)));
1262 /* Alignment is handled by ADDR_VEC_ALIGN. */
1264 else if (GET_CODE (body) == ASM_INPUT || asm_noperands (body) >= 0)
1265 insn_lengths[uid] = asm_insn_count (body) * insn_default_length (insn);
1266 else if (GET_CODE (body) == SEQUENCE)
1268 int i;
1269 int const_delay_slots;
1270 #ifdef DELAY_SLOTS
1271 const_delay_slots = const_num_delay_slots (XVECEXP (body, 0, 0));
1272 #else
1273 const_delay_slots = 0;
1274 #endif
1275 /* Inside a delay slot sequence, we do not do any branch shortening
1276 if the shortening could change the number of delay slots
1277 of the branch. */
1278 for (i = 0; i < XVECLEN (body, 0); i++)
1280 rtx inner_insn = XVECEXP (body, 0, i);
1281 int inner_uid = INSN_UID (inner_insn);
1282 int inner_length;
1284 if (GET_CODE (body) == ASM_INPUT
1285 || asm_noperands (PATTERN (XVECEXP (body, 0, i))) >= 0)
1286 inner_length = (asm_insn_count (PATTERN (inner_insn))
1287 * insn_default_length (inner_insn));
1288 else
1289 inner_length = insn_default_length (inner_insn);
1291 insn_lengths[inner_uid] = inner_length;
1292 if (const_delay_slots)
1294 if ((varying_length[inner_uid]
1295 = insn_variable_length_p (inner_insn)) != 0)
1296 varying_length[uid] = 1;
1297 INSN_ADDRESSES (inner_uid) = (insn_current_address
1298 + insn_lengths[uid]);
1300 else
1301 varying_length[inner_uid] = 0;
1302 insn_lengths[uid] += inner_length;
1305 else if (GET_CODE (body) != USE && GET_CODE (body) != CLOBBER)
1307 insn_lengths[uid] = insn_default_length (insn);
1308 varying_length[uid] = insn_variable_length_p (insn);
1311 /* If needed, do any adjustment. */
1312 #ifdef ADJUST_INSN_LENGTH
1313 ADJUST_INSN_LENGTH (insn, insn_lengths[uid]);
1314 if (insn_lengths[uid] < 0)
1315 fatal_insn ("Negative insn length", insn);
1316 #endif
1319 /* Now loop over all the insns finding varying length insns. For each,
1320 get the current insn length. If it has changed, reflect the change.
1321 When nothing changes for a full pass, we are done. */
1323 while (something_changed)
1325 something_changed = 0;
1326 insn_current_align = MAX_CODE_ALIGN - 1;
1327 for (insn_current_address = FIRST_INSN_ADDRESS, insn = first;
1328 insn != 0;
1329 insn = NEXT_INSN (insn))
1331 int new_length;
1332 #ifdef ADJUST_INSN_LENGTH
1333 int tmp_length;
1334 #endif
1335 int length_align;
1337 uid = INSN_UID (insn);
1339 if (GET_CODE (insn) == CODE_LABEL)
1341 int log = LABEL_TO_ALIGNMENT (insn);
1342 if (log > insn_current_align)
1344 int align = 1 << log;
1345 int new_address= (insn_current_address + align - 1) & -align;
1346 insn_lengths[uid] = new_address - insn_current_address;
1347 insn_current_align = log;
1348 insn_current_address = new_address;
1350 else
1351 insn_lengths[uid] = 0;
1352 INSN_ADDRESSES (uid) = insn_current_address;
1353 continue;
1356 length_align = INSN_LENGTH_ALIGNMENT (insn);
1357 if (length_align < insn_current_align)
1358 insn_current_align = length_align;
1360 insn_last_address = INSN_ADDRESSES (uid);
1361 INSN_ADDRESSES (uid) = insn_current_address;
1363 #ifdef CASE_VECTOR_SHORTEN_MODE
1364 if (optimize && GET_CODE (insn) == JUMP_INSN
1365 && GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC)
1367 rtx body = PATTERN (insn);
1368 int old_length = insn_lengths[uid];
1369 rtx rel_lab = XEXP (XEXP (body, 0), 0);
1370 rtx min_lab = XEXP (XEXP (body, 2), 0);
1371 rtx max_lab = XEXP (XEXP (body, 3), 0);
1372 addr_diff_vec_flags flags = ADDR_DIFF_VEC_FLAGS (body);
1373 int rel_addr = INSN_ADDRESSES (INSN_UID (rel_lab));
1374 int min_addr = INSN_ADDRESSES (INSN_UID (min_lab));
1375 int max_addr = INSN_ADDRESSES (INSN_UID (max_lab));
1376 rtx prev;
1377 int rel_align = 0;
1379 /* Try to find a known alignment for rel_lab. */
1380 for (prev = rel_lab;
1381 prev
1382 && ! insn_lengths[INSN_UID (prev)]
1383 && ! (varying_length[INSN_UID (prev)] & 1);
1384 prev = PREV_INSN (prev))
1385 if (varying_length[INSN_UID (prev)] & 2)
1387 rel_align = LABEL_TO_ALIGNMENT (prev);
1388 break;
1391 /* See the comment on addr_diff_vec_flags in rtl.h for the
1392 meaning of the flags values. base: REL_LAB vec: INSN */
1393 /* Anything after INSN has still addresses from the last
1394 pass; adjust these so that they reflect our current
1395 estimate for this pass. */
1396 if (flags.base_after_vec)
1397 rel_addr += insn_current_address - insn_last_address;
1398 if (flags.min_after_vec)
1399 min_addr += insn_current_address - insn_last_address;
1400 if (flags.max_after_vec)
1401 max_addr += insn_current_address - insn_last_address;
1402 /* We want to know the worst case, i.e. lowest possible value
1403 for the offset of MIN_LAB. If MIN_LAB is after REL_LAB,
1404 its offset is positive, and we have to be wary of code shrink;
1405 otherwise, it is negative, and we have to be vary of code
1406 size increase. */
1407 if (flags.min_after_base)
1409 /* If INSN is between REL_LAB and MIN_LAB, the size
1410 changes we are about to make can change the alignment
1411 within the observed offset, therefore we have to break
1412 it up into two parts that are independent. */
1413 if (! flags.base_after_vec && flags.min_after_vec)
1415 min_addr -= align_fuzz (rel_lab, insn, rel_align, 0);
1416 min_addr -= align_fuzz (insn, min_lab, 0, 0);
1418 else
1419 min_addr -= align_fuzz (rel_lab, min_lab, rel_align, 0);
1421 else
1423 if (flags.base_after_vec && ! flags.min_after_vec)
1425 min_addr -= align_fuzz (min_lab, insn, 0, ~0);
1426 min_addr -= align_fuzz (insn, rel_lab, 0, ~0);
1428 else
1429 min_addr -= align_fuzz (min_lab, rel_lab, 0, ~0);
1431 /* Likewise, determine the highest lowest possible value
1432 for the offset of MAX_LAB. */
1433 if (flags.max_after_base)
1435 if (! flags.base_after_vec && flags.max_after_vec)
1437 max_addr += align_fuzz (rel_lab, insn, rel_align, ~0);
1438 max_addr += align_fuzz (insn, max_lab, 0, ~0);
1440 else
1441 max_addr += align_fuzz (rel_lab, max_lab, rel_align, ~0);
1443 else
1445 if (flags.base_after_vec && ! flags.max_after_vec)
1447 max_addr += align_fuzz (max_lab, insn, 0, 0);
1448 max_addr += align_fuzz (insn, rel_lab, 0, 0);
1450 else
1451 max_addr += align_fuzz (max_lab, rel_lab, 0, 0);
1453 PUT_MODE (body, CASE_VECTOR_SHORTEN_MODE (min_addr - rel_addr,
1454 max_addr - rel_addr,
1455 body));
1456 if (JUMP_TABLES_IN_TEXT_SECTION
1457 #if !defined(READONLY_DATA_SECTION)
1458 || 1
1459 #endif
1462 insn_lengths[uid]
1463 = (XVECLEN (body, 1) * GET_MODE_SIZE (GET_MODE (body)));
1464 insn_current_address += insn_lengths[uid];
1465 if (insn_lengths[uid] != old_length)
1466 something_changed = 1;
1469 continue;
1471 #endif /* CASE_VECTOR_SHORTEN_MODE */
1473 if (! (varying_length[uid]))
1475 insn_current_address += insn_lengths[uid];
1476 continue;
1478 if (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
1480 int i;
1482 body = PATTERN (insn);
1483 new_length = 0;
1484 for (i = 0; i < XVECLEN (body, 0); i++)
1486 rtx inner_insn = XVECEXP (body, 0, i);
1487 int inner_uid = INSN_UID (inner_insn);
1488 int inner_length;
1490 INSN_ADDRESSES (inner_uid) = insn_current_address;
1492 /* insn_current_length returns 0 for insns with a
1493 non-varying length. */
1494 if (! varying_length[inner_uid])
1495 inner_length = insn_lengths[inner_uid];
1496 else
1497 inner_length = insn_current_length (inner_insn);
1499 if (inner_length != insn_lengths[inner_uid])
1501 insn_lengths[inner_uid] = inner_length;
1502 something_changed = 1;
1504 insn_current_address += insn_lengths[inner_uid];
1505 new_length += inner_length;
1508 else
1510 new_length = insn_current_length (insn);
1511 insn_current_address += new_length;
1514 #ifdef ADJUST_INSN_LENGTH
1515 /* If needed, do any adjustment. */
1516 tmp_length = new_length;
1517 ADJUST_INSN_LENGTH (insn, new_length);
1518 insn_current_address += (new_length - tmp_length);
1519 #endif
1521 if (new_length != insn_lengths[uid])
1523 insn_lengths[uid] = new_length;
1524 something_changed = 1;
1527 /* For a non-optimizing compile, do only a single pass. */
1528 if (!optimize)
1529 break;
1532 free (varying_length);
1534 #endif /* HAVE_ATTR_length */
1537 #ifdef HAVE_ATTR_length
1538 /* Given the body of an INSN known to be generated by an ASM statement, return
1539 the number of machine instructions likely to be generated for this insn.
1540 This is used to compute its length. */
1542 static int
1543 asm_insn_count (body)
1544 rtx body;
1546 const char *template;
1547 int count = 1;
1549 if (GET_CODE (body) == ASM_INPUT)
1550 template = XSTR (body, 0);
1551 else
1552 template = decode_asm_operands (body, NULL_PTR, NULL_PTR,
1553 NULL_PTR, NULL_PTR);
1555 for (; *template; template++)
1556 if (IS_ASM_LOGICAL_LINE_SEPARATOR (*template) || *template == '\n')
1557 count++;
1559 return count;
1561 #endif
1563 /* Output assembler code for the start of a function,
1564 and initialize some of the variables in this file
1565 for the new function. The label for the function and associated
1566 assembler pseudo-ops have already been output in `assemble_start_function'.
1568 FIRST is the first insn of the rtl for the function being compiled.
1569 FILE is the file to write assembler code to.
1570 OPTIMIZE is nonzero if we should eliminate redundant
1571 test and compare insns. */
1573 void
1574 final_start_function (first, file, optimize)
1575 rtx first;
1576 FILE *file;
1577 int optimize ATTRIBUTE_UNUSED;
1579 block_depth = 0;
1581 this_is_asm_operands = 0;
1583 #ifdef NON_SAVING_SETJMP
1584 /* A function that calls setjmp should save and restore all the
1585 call-saved registers on a system where longjmp clobbers them. */
1586 if (NON_SAVING_SETJMP && current_function_calls_setjmp)
1588 int i;
1590 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1591 if (!call_used_regs[i])
1592 regs_ever_live[i] = 1;
1594 #endif
1596 /* Initial line number is supposed to be output
1597 before the function's prologue and label
1598 so that the function's address will not appear to be
1599 in the last statement of the preceding function. */
1600 if (NOTE_LINE_NUMBER (first) != NOTE_INSN_DELETED)
1601 last_linenum = high_block_linenum = high_function_linenum
1602 = NOTE_LINE_NUMBER (first);
1604 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
1605 /* Output DWARF definition of the function. */
1606 if (dwarf2out_do_frame ())
1607 dwarf2out_begin_prologue ();
1608 else
1609 current_function_func_begin_label = 0;
1610 #endif
1612 /* For SDB and XCOFF, the function beginning must be marked between
1613 the function label and the prologue. We always need this, even when
1614 -g1 was used. Defer on MIPS systems so that parameter descriptions
1615 follow function entry. */
1616 #if defined(SDB_DEBUGGING_INFO) && !defined(MIPS_DEBUGGING_INFO)
1617 if (write_symbols == SDB_DEBUG)
1618 sdbout_begin_function (last_linenum);
1619 else
1620 #endif
1621 #ifdef XCOFF_DEBUGGING_INFO
1622 if (write_symbols == XCOFF_DEBUG)
1623 xcoffout_begin_function (file, last_linenum);
1624 else
1625 #endif
1626 /* But only output line number for other debug info types if -g2
1627 or better. */
1628 if (NOTE_LINE_NUMBER (first) != NOTE_INSN_DELETED)
1629 output_source_line (file, first);
1631 #ifdef LEAF_REG_REMAP
1632 if (current_function_uses_only_leaf_regs)
1633 leaf_renumber_regs (first);
1634 #endif
1636 /* The Sun386i and perhaps other machines don't work right
1637 if the profiling code comes after the prologue. */
1638 #ifdef PROFILE_BEFORE_PROLOGUE
1639 if (profile_flag)
1640 profile_function (file);
1641 #endif /* PROFILE_BEFORE_PROLOGUE */
1643 #if defined (DWARF2_UNWIND_INFO) && defined (HAVE_prologue)
1644 if (dwarf2out_do_frame ())
1645 dwarf2out_frame_debug (NULL_RTX);
1646 #endif
1648 /* If debugging, assign block numbers to all of the blocks in this
1649 function. */
1650 if (write_symbols)
1652 number_blocks (current_function_decl);
1653 remove_unnecessary_notes ();
1654 /* We never actually put out begin/end notes for the top-level
1655 block in the function. But, conceptually, that block is
1656 always needed. */
1657 TREE_ASM_WRITTEN (DECL_INITIAL (current_function_decl)) = 1;
1660 #ifdef FUNCTION_PROLOGUE
1661 /* First output the function prologue: code to set up the stack frame. */
1662 FUNCTION_PROLOGUE (file, get_frame_size ());
1663 #endif
1665 /* If the machine represents the prologue as RTL, the profiling code must
1666 be emitted when NOTE_INSN_PROLOGUE_END is scanned. */
1667 #ifdef HAVE_prologue
1668 if (! HAVE_prologue)
1669 #endif
1670 profile_after_prologue (file);
1672 profile_label_no++;
1674 /* If we are doing basic block profiling, remember a printable version
1675 of the function name. */
1676 if (profile_block_flag)
1678 bb_func_label_num =
1679 add_bb_string ((*decl_printable_name) (current_function_decl, 2),
1680 FALSE);
1684 static void
1685 profile_after_prologue (file)
1686 FILE *file ATTRIBUTE_UNUSED;
1688 #ifdef FUNCTION_BLOCK_PROFILER
1689 if (profile_block_flag)
1691 FUNCTION_BLOCK_PROFILER (file, count_basic_blocks);
1693 #endif /* FUNCTION_BLOCK_PROFILER */
1695 #ifndef PROFILE_BEFORE_PROLOGUE
1696 if (profile_flag)
1697 profile_function (file);
1698 #endif /* not PROFILE_BEFORE_PROLOGUE */
1701 static void
1702 profile_function (file)
1703 FILE *file;
1705 #ifndef NO_PROFILE_COUNTERS
1706 int align = MIN (BIGGEST_ALIGNMENT, LONG_TYPE_SIZE);
1707 #endif
1708 #if defined(ASM_OUTPUT_REG_PUSH)
1709 #if defined(STRUCT_VALUE_INCOMING_REGNUM) || defined(STRUCT_VALUE_REGNUM)
1710 int sval = current_function_returns_struct;
1711 #endif
1712 #if defined(STATIC_CHAIN_INCOMING_REGNUM) || defined(STATIC_CHAIN_REGNUM)
1713 int cxt = current_function_needs_context;
1714 #endif
1715 #endif /* ASM_OUTPUT_REG_PUSH */
1717 #ifndef NO_PROFILE_COUNTERS
1718 data_section ();
1719 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
1720 ASM_OUTPUT_INTERNAL_LABEL (file, "LP", profile_label_no);
1721 assemble_integer (const0_rtx, LONG_TYPE_SIZE / BITS_PER_UNIT, 1);
1722 #endif
1724 function_section (current_function_decl);
1726 #if defined(STRUCT_VALUE_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1727 if (sval)
1728 ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_INCOMING_REGNUM);
1729 #else
1730 #if defined(STRUCT_VALUE_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1731 if (sval)
1733 ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_REGNUM);
1735 #endif
1736 #endif
1738 #if defined(STATIC_CHAIN_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1739 if (cxt)
1740 ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_INCOMING_REGNUM);
1741 #else
1742 #if defined(STATIC_CHAIN_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1743 if (cxt)
1745 ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_REGNUM);
1747 #endif
1748 #endif
1750 FUNCTION_PROFILER (file, profile_label_no);
1752 #if defined(STATIC_CHAIN_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1753 if (cxt)
1754 ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_INCOMING_REGNUM);
1755 #else
1756 #if defined(STATIC_CHAIN_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1757 if (cxt)
1759 ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_REGNUM);
1761 #endif
1762 #endif
1764 #if defined(STRUCT_VALUE_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1765 if (sval)
1766 ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_INCOMING_REGNUM);
1767 #else
1768 #if defined(STRUCT_VALUE_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1769 if (sval)
1771 ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_REGNUM);
1773 #endif
1774 #endif
1777 /* Output assembler code for the end of a function.
1778 For clarity, args are same as those of `final_start_function'
1779 even though not all of them are needed. */
1781 void
1782 final_end_function (first, file, optimize)
1783 rtx first ATTRIBUTE_UNUSED;
1784 FILE *file ATTRIBUTE_UNUSED;
1785 int optimize ATTRIBUTE_UNUSED;
1787 app_disable ();
1789 #ifdef SDB_DEBUGGING_INFO
1790 if (write_symbols == SDB_DEBUG)
1791 sdbout_end_function (high_function_linenum);
1792 #endif
1794 #ifdef DWARF_DEBUGGING_INFO
1795 if (write_symbols == DWARF_DEBUG)
1796 dwarfout_end_function ();
1797 #endif
1799 #ifdef XCOFF_DEBUGGING_INFO
1800 if (write_symbols == XCOFF_DEBUG)
1801 xcoffout_end_function (file, high_function_linenum);
1802 #endif
1804 #ifdef FUNCTION_EPILOGUE
1805 /* Finally, output the function epilogue:
1806 code to restore the stack frame and return to the caller. */
1807 FUNCTION_EPILOGUE (file, get_frame_size ());
1808 #endif
1810 #ifdef SDB_DEBUGGING_INFO
1811 if (write_symbols == SDB_DEBUG)
1812 sdbout_end_epilogue ();
1813 #endif
1815 #ifdef DWARF_DEBUGGING_INFO
1816 if (write_symbols == DWARF_DEBUG)
1817 dwarfout_end_epilogue ();
1818 #endif
1820 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
1821 if (dwarf2out_do_frame ())
1822 dwarf2out_end_epilogue ();
1823 #endif
1825 #ifdef XCOFF_DEBUGGING_INFO
1826 if (write_symbols == XCOFF_DEBUG)
1827 xcoffout_end_epilogue (file);
1828 #endif
1830 bb_func_label_num = -1; /* not in function, nuke label # */
1832 #ifdef IA64_UNWIND_INFO
1833 output_function_exception_table ();
1834 #endif
1836 /* If FUNCTION_EPILOGUE is not defined, then the function body
1837 itself contains return instructions wherever needed. */
1840 /* Add a block to the linked list that remembers the current line/file/function
1841 for basic block profiling. Emit the label in front of the basic block and
1842 the instructions that increment the count field. */
1844 static void
1845 add_bb (file)
1846 FILE *file;
1848 struct bb_list *ptr =
1849 (struct bb_list *) permalloc (sizeof (struct bb_list));
1851 /* Add basic block to linked list. */
1852 ptr->next = 0;
1853 ptr->line_num = last_linenum;
1854 ptr->file_label_num = bb_file_label_num;
1855 ptr->func_label_num = bb_func_label_num;
1856 *bb_tail = ptr;
1857 bb_tail = &ptr->next;
1859 /* Enable the table of basic-block use counts
1860 to point at the code it applies to. */
1861 ASM_OUTPUT_INTERNAL_LABEL (file, "LPB", count_basic_blocks);
1863 /* Before first insn of this basic block, increment the
1864 count of times it was entered. */
1865 #ifdef BLOCK_PROFILER
1866 BLOCK_PROFILER (file, count_basic_blocks);
1867 #endif
1868 #ifdef HAVE_cc0
1869 CC_STATUS_INIT;
1870 #endif
1872 new_block = 0;
1873 count_basic_blocks++;
1876 /* Add a string to be used for basic block profiling. */
1878 static int
1879 add_bb_string (string, perm_p)
1880 const char *string;
1881 int perm_p;
1883 int len;
1884 struct bb_str *ptr = 0;
1886 if (!string)
1888 string = "<unknown>";
1889 perm_p = TRUE;
1892 /* Allocate a new string if the current string isn't permanent. If
1893 the string is permanent search for the same string in other
1894 allocations. */
1896 len = strlen (string) + 1;
1897 if (!perm_p)
1899 char *p = (char *) permalloc (len);
1900 memcpy (p, string, len);
1901 string = p;
1903 else
1904 for (ptr = sbb_head; ptr != (struct bb_str *) 0; ptr = ptr->next)
1905 if (ptr->string == string)
1906 break;
1908 /* Allocate a new string block if we need to. */
1909 if (!ptr)
1911 ptr = (struct bb_str *) permalloc (sizeof (*ptr));
1912 ptr->next = 0;
1913 ptr->length = len;
1914 ptr->label_num = sbb_label_num++;
1915 ptr->string = string;
1916 *sbb_tail = ptr;
1917 sbb_tail = &ptr->next;
1920 return ptr->label_num;
1923 /* Output assembler code for some insns: all or part of a function.
1924 For description of args, see `final_start_function', above.
1926 PRESCAN is 1 if we are not really outputting,
1927 just scanning as if we were outputting.
1928 Prescanning deletes and rearranges insns just like ordinary output.
1929 PRESCAN is -2 if we are outputting after having prescanned.
1930 In this case, don't try to delete or rearrange insns
1931 because that has already been done.
1932 Prescanning is done only on certain machines. */
1934 void
1935 final (first, file, optimize, prescan)
1936 rtx first;
1937 FILE *file;
1938 int optimize;
1939 int prescan;
1941 register rtx insn;
1942 int max_line = 0;
1943 int max_uid = 0;
1945 last_ignored_compare = 0;
1946 new_block = 1;
1948 /* Make a map indicating which line numbers appear in this function.
1949 When producing SDB debugging info, delete troublesome line number
1950 notes from inlined functions in other files as well as duplicate
1951 line number notes. */
1952 #ifdef SDB_DEBUGGING_INFO
1953 if (write_symbols == SDB_DEBUG)
1955 rtx last = 0;
1956 for (insn = first; insn; insn = NEXT_INSN (insn))
1957 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
1959 if ((RTX_INTEGRATED_P (insn)
1960 && strcmp (NOTE_SOURCE_FILE (insn), main_input_filename) != 0)
1961 || (last != 0
1962 && NOTE_LINE_NUMBER (insn) == NOTE_LINE_NUMBER (last)
1963 && NOTE_SOURCE_FILE (insn) == NOTE_SOURCE_FILE (last)))
1965 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
1966 NOTE_SOURCE_FILE (insn) = 0;
1967 continue;
1969 last = insn;
1970 if (NOTE_LINE_NUMBER (insn) > max_line)
1971 max_line = NOTE_LINE_NUMBER (insn);
1974 else
1975 #endif
1977 for (insn = first; insn; insn = NEXT_INSN (insn))
1978 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > max_line)
1979 max_line = NOTE_LINE_NUMBER (insn);
1982 line_note_exists = (char *) xcalloc (max_line + 1, sizeof (char));
1984 for (insn = first; insn; insn = NEXT_INSN (insn))
1986 if (INSN_UID (insn) > max_uid) /* find largest UID */
1987 max_uid = INSN_UID (insn);
1988 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
1989 line_note_exists[NOTE_LINE_NUMBER (insn)] = 1;
1990 #ifdef HAVE_cc0
1991 /* If CC tracking across branches is enabled, record the insn which
1992 jumps to each branch only reached from one place. */
1993 if (optimize && GET_CODE (insn) == JUMP_INSN)
1995 rtx lab = JUMP_LABEL (insn);
1996 if (lab && LABEL_NUSES (lab) == 1)
1998 LABEL_REFS (lab) = insn;
2001 #endif
2004 init_recog ();
2006 CC_STATUS_INIT;
2008 /* Output the insns. */
2009 for (insn = NEXT_INSN (first); insn;)
2011 #ifdef HAVE_ATTR_length
2012 if (INSN_UID (insn) >= INSN_ADDRESSES_SIZE ())
2014 #ifdef STACK_REGS
2015 /* Irritatingly, the reg-stack pass is creating new instructions
2016 and because of REG_DEAD note abuse it has to run after
2017 shorten_branches. Fake address of -1 then. */
2018 insn_current_address = -1;
2019 #else
2020 /* This can be triggered by bugs elsewhere in the compiler if
2021 new insns are created after init_insn_lengths is called. */
2022 abort ();
2023 #endif
2025 else
2026 insn_current_address = INSN_ADDRESSES (INSN_UID (insn));
2027 #endif /* HAVE_ATTR_length */
2029 insn = final_scan_insn (insn, file, optimize, prescan, 0);
2032 /* Do basic-block profiling here
2033 if the last insn was a conditional branch. */
2034 if (profile_block_flag && new_block)
2035 add_bb (file);
2037 free (line_note_exists);
2038 line_note_exists = NULL;
2041 const char *
2042 get_insn_template (code, insn)
2043 int code;
2044 rtx insn;
2046 const void *output = insn_data[code].output;
2047 switch (insn_data[code].output_format)
2049 case INSN_OUTPUT_FORMAT_SINGLE:
2050 return (const char *) output;
2051 case INSN_OUTPUT_FORMAT_MULTI:
2052 return ((const char *const *) output)[which_alternative];
2053 case INSN_OUTPUT_FORMAT_FUNCTION:
2054 if (insn == NULL)
2055 abort ();
2056 return (*(insn_output_fn) output) (recog_data.operand, insn);
2058 default:
2059 abort ();
2063 /* The final scan for one insn, INSN.
2064 Args are same as in `final', except that INSN
2065 is the insn being scanned.
2066 Value returned is the next insn to be scanned.
2068 NOPEEPHOLES is the flag to disallow peephole processing (currently
2069 used for within delayed branch sequence output). */
2072 final_scan_insn (insn, file, optimize, prescan, nopeepholes)
2073 rtx insn;
2074 FILE *file;
2075 int optimize ATTRIBUTE_UNUSED;
2076 int prescan;
2077 int nopeepholes ATTRIBUTE_UNUSED;
2079 #ifdef HAVE_cc0
2080 rtx set;
2081 #endif
2083 insn_counter++;
2085 /* Ignore deleted insns. These can occur when we split insns (due to a
2086 template of "#") while not optimizing. */
2087 if (INSN_DELETED_P (insn))
2088 return NEXT_INSN (insn);
2090 switch (GET_CODE (insn))
2092 case NOTE:
2093 if (prescan > 0)
2094 break;
2096 switch (NOTE_LINE_NUMBER (insn))
2098 case NOTE_INSN_DELETED:
2099 case NOTE_INSN_LOOP_BEG:
2100 case NOTE_INSN_LOOP_END:
2101 case NOTE_INSN_LOOP_CONT:
2102 case NOTE_INSN_LOOP_VTOP:
2103 case NOTE_INSN_FUNCTION_END:
2104 case NOTE_INSN_SETJMP:
2105 case NOTE_INSN_REPEATED_LINE_NUMBER:
2106 case NOTE_INSN_RANGE_BEG:
2107 case NOTE_INSN_RANGE_END:
2108 case NOTE_INSN_LIVE:
2109 case NOTE_INSN_EXPECTED_VALUE:
2110 break;
2112 case NOTE_INSN_BASIC_BLOCK:
2113 #ifdef IA64_UNWIND_INFO
2114 IA64_UNWIND_EMIT (asm_out_file, insn);
2115 #endif
2116 if (flag_debug_asm)
2117 fprintf (asm_out_file, "\t%s basic block %d\n",
2118 ASM_COMMENT_START, NOTE_BASIC_BLOCK (insn)->index);
2119 break;
2121 case NOTE_INSN_EH_REGION_BEG:
2122 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LEHB",
2123 NOTE_EH_HANDLER (insn));
2124 break;
2126 case NOTE_INSN_EH_REGION_END:
2127 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LEHE",
2128 NOTE_EH_HANDLER (insn));
2129 break;
2131 case NOTE_INSN_PROLOGUE_END:
2132 #ifdef FUNCTION_END_PROLOGUE
2133 FUNCTION_END_PROLOGUE (file);
2134 #endif
2135 profile_after_prologue (file);
2136 break;
2138 case NOTE_INSN_EPILOGUE_BEG:
2139 #ifdef FUNCTION_BEGIN_EPILOGUE
2140 FUNCTION_BEGIN_EPILOGUE (file);
2141 #endif
2142 break;
2144 case NOTE_INSN_FUNCTION_BEG:
2145 #if defined(SDB_DEBUGGING_INFO) && defined(MIPS_DEBUGGING_INFO)
2146 /* MIPS stabs require the parameter descriptions to be after the
2147 function entry point rather than before. */
2148 if (write_symbols == SDB_DEBUG)
2150 app_disable ();
2151 sdbout_begin_function (last_linenum);
2153 #endif
2154 #ifdef DWARF_DEBUGGING_INFO
2155 /* This outputs a marker where the function body starts, so it
2156 must be after the prologue. */
2157 if (write_symbols == DWARF_DEBUG)
2159 app_disable ();
2160 dwarfout_begin_function ();
2162 #endif
2163 break;
2165 case NOTE_INSN_BLOCK_BEG:
2166 if (debug_info_level == DINFO_LEVEL_NORMAL
2167 || debug_info_level == DINFO_LEVEL_VERBOSE
2168 || write_symbols == DWARF_DEBUG
2169 || write_symbols == DWARF2_DEBUG)
2171 int n = BLOCK_NUMBER (NOTE_BLOCK (insn));
2173 app_disable ();
2174 ++block_depth;
2175 high_block_linenum = last_linenum;
2177 /* Output debugging info about the symbol-block beginning. */
2178 #ifdef SDB_DEBUGGING_INFO
2179 if (write_symbols == SDB_DEBUG)
2180 sdbout_begin_block (file, last_linenum, n);
2181 #endif
2182 #ifdef XCOFF_DEBUGGING_INFO
2183 if (write_symbols == XCOFF_DEBUG)
2184 xcoffout_begin_block (file, last_linenum, n);
2185 #endif
2186 #ifdef DBX_DEBUGGING_INFO
2187 if (write_symbols == DBX_DEBUG)
2188 ASM_OUTPUT_INTERNAL_LABEL (file, "LBB", n);
2189 #endif
2190 #ifdef DWARF_DEBUGGING_INFO
2191 if (write_symbols == DWARF_DEBUG)
2192 dwarfout_begin_block (n);
2193 #endif
2194 #ifdef DWARF2_DEBUGGING_INFO
2195 if (write_symbols == DWARF2_DEBUG)
2196 dwarf2out_begin_block (n);
2197 #endif
2199 /* Mark this block as output. */
2200 TREE_ASM_WRITTEN (NOTE_BLOCK (insn)) = 1;
2202 break;
2204 case NOTE_INSN_BLOCK_END:
2205 if (debug_info_level == DINFO_LEVEL_NORMAL
2206 || debug_info_level == DINFO_LEVEL_VERBOSE
2207 || write_symbols == DWARF_DEBUG
2208 || write_symbols == DWARF2_DEBUG)
2210 int n = BLOCK_NUMBER (NOTE_BLOCK (insn));
2212 app_disable ();
2214 /* End of a symbol-block. */
2215 --block_depth;
2216 if (block_depth < 0)
2217 abort ();
2219 #ifdef XCOFF_DEBUGGING_INFO
2220 if (write_symbols == XCOFF_DEBUG)
2221 xcoffout_end_block (file, high_block_linenum, n);
2222 #endif
2223 #ifdef DBX_DEBUGGING_INFO
2224 if (write_symbols == DBX_DEBUG)
2225 ASM_OUTPUT_INTERNAL_LABEL (file, "LBE", n);
2226 #endif
2227 #ifdef SDB_DEBUGGING_INFO
2228 if (write_symbols == SDB_DEBUG)
2229 sdbout_end_block (file, high_block_linenum, n);
2230 #endif
2231 #ifdef DWARF_DEBUGGING_INFO
2232 if (write_symbols == DWARF_DEBUG)
2233 dwarfout_end_block (n);
2234 #endif
2235 #ifdef DWARF2_DEBUGGING_INFO
2236 if (write_symbols == DWARF2_DEBUG)
2237 dwarf2out_end_block (n);
2238 #endif
2240 break;
2242 case NOTE_INSN_DELETED_LABEL:
2243 /* Emit the label. We may have deleted the CODE_LABEL because
2244 the label could be proved to be unreachable, though still
2245 referenced (in the form of having its address taken. */
2246 ASM_OUTPUT_DEBUG_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
2247 break;
2249 case 0:
2250 break;
2252 default:
2253 if (NOTE_LINE_NUMBER (insn) <= 0)
2254 abort ();
2256 /* This note is a line-number. */
2258 register rtx note;
2259 int note_after = 0;
2261 /* If there is anything real after this note, output it.
2262 If another line note follows, omit this one. */
2263 for (note = NEXT_INSN (insn); note; note = NEXT_INSN (note))
2265 if (GET_CODE (note) != NOTE && GET_CODE (note) != CODE_LABEL)
2266 break;
2268 /* These types of notes can be significant
2269 so make sure the preceding line number stays. */
2270 else if (GET_CODE (note) == NOTE
2271 && (NOTE_LINE_NUMBER (note) == NOTE_INSN_BLOCK_BEG
2272 || NOTE_LINE_NUMBER (note) == NOTE_INSN_BLOCK_END
2273 || NOTE_LINE_NUMBER (note) == NOTE_INSN_FUNCTION_BEG))
2274 break;
2275 else if (GET_CODE (note) == NOTE && NOTE_LINE_NUMBER (note) > 0)
2277 /* Another line note follows; we can delete this note
2278 if no intervening line numbers have notes elsewhere. */
2279 int num;
2280 for (num = NOTE_LINE_NUMBER (insn) + 1;
2281 num < NOTE_LINE_NUMBER (note);
2282 num++)
2283 if (line_note_exists[num])
2284 break;
2286 if (num >= NOTE_LINE_NUMBER (note))
2287 note_after = 1;
2288 break;
2292 /* Output this line note if it is the first or the last line
2293 note in a row. */
2294 if (!note_after)
2295 output_source_line (file, insn);
2297 break;
2299 break;
2301 case BARRIER:
2302 #if defined (DWARF2_UNWIND_INFO)
2303 if (dwarf2out_do_frame ())
2304 dwarf2out_frame_debug (insn);
2305 #endif
2306 break;
2308 case CODE_LABEL:
2309 /* The target port might emit labels in the output function for
2310 some insn, e.g. sh.c output_branchy_insn. */
2311 if (CODE_LABEL_NUMBER (insn) <= max_labelno)
2313 int align = LABEL_TO_ALIGNMENT (insn);
2314 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
2315 int max_skip = LABEL_TO_MAX_SKIP (insn);
2316 #endif
2318 if (align && NEXT_INSN (insn))
2319 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
2320 ASM_OUTPUT_MAX_SKIP_ALIGN (file, align, max_skip);
2321 #else
2322 ASM_OUTPUT_ALIGN (file, align);
2323 #endif
2325 #ifdef HAVE_cc0
2326 CC_STATUS_INIT;
2327 /* If this label is reached from only one place, set the condition
2328 codes from the instruction just before the branch. */
2330 /* Disabled because some insns set cc_status in the C output code
2331 and NOTICE_UPDATE_CC alone can set incorrect status. */
2332 if (0 /* optimize && LABEL_NUSES (insn) == 1*/)
2334 rtx jump = LABEL_REFS (insn);
2335 rtx barrier = prev_nonnote_insn (insn);
2336 rtx prev;
2337 /* If the LABEL_REFS field of this label has been set to point
2338 at a branch, the predecessor of the branch is a regular
2339 insn, and that branch is the only way to reach this label,
2340 set the condition codes based on the branch and its
2341 predecessor. */
2342 if (barrier && GET_CODE (barrier) == BARRIER
2343 && jump && GET_CODE (jump) == JUMP_INSN
2344 && (prev = prev_nonnote_insn (jump))
2345 && GET_CODE (prev) == INSN)
2347 NOTICE_UPDATE_CC (PATTERN (prev), prev);
2348 NOTICE_UPDATE_CC (PATTERN (jump), jump);
2351 #endif
2352 if (prescan > 0)
2353 break;
2354 new_block = 1;
2356 #ifdef FINAL_PRESCAN_LABEL
2357 FINAL_PRESCAN_INSN (insn, NULL_PTR, 0);
2358 #endif
2360 #ifdef SDB_DEBUGGING_INFO
2361 if (write_symbols == SDB_DEBUG && LABEL_NAME (insn))
2362 sdbout_label (insn);
2363 #endif
2364 if (app_on)
2366 fputs (ASM_APP_OFF, file);
2367 app_on = 0;
2369 if (NEXT_INSN (insn) != 0
2370 && GET_CODE (NEXT_INSN (insn)) == JUMP_INSN)
2372 rtx nextbody = PATTERN (NEXT_INSN (insn));
2374 /* If this label is followed by a jump-table,
2375 make sure we put the label in the read-only section. Also
2376 possibly write the label and jump table together. */
2378 if (GET_CODE (nextbody) == ADDR_VEC
2379 || GET_CODE (nextbody) == ADDR_DIFF_VEC)
2381 #if defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC)
2382 /* In this case, the case vector is being moved by the
2383 target, so don't output the label at all. Leave that
2384 to the back end macros. */
2385 #else
2386 if (! JUMP_TABLES_IN_TEXT_SECTION)
2388 readonly_data_section ();
2389 #ifdef READONLY_DATA_SECTION
2390 ASM_OUTPUT_ALIGN (file,
2391 exact_log2 (BIGGEST_ALIGNMENT
2392 / BITS_PER_UNIT));
2393 #endif /* READONLY_DATA_SECTION */
2395 else
2396 function_section (current_function_decl);
2398 #ifdef ASM_OUTPUT_CASE_LABEL
2399 ASM_OUTPUT_CASE_LABEL (file, "L", CODE_LABEL_NUMBER (insn),
2400 NEXT_INSN (insn));
2401 #else
2402 if (LABEL_ALTERNATE_NAME (insn))
2403 ASM_OUTPUT_ALTERNATE_LABEL_NAME (file, insn);
2404 else
2405 ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
2406 #endif
2407 #endif
2408 break;
2411 if (LABEL_ALTERNATE_NAME (insn))
2412 ASM_OUTPUT_ALTERNATE_LABEL_NAME (file, insn);
2413 else
2414 ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
2415 break;
2417 default:
2419 register rtx body = PATTERN (insn);
2420 int insn_code_number;
2421 const char *template;
2422 #ifdef HAVE_cc0
2423 rtx note;
2424 #endif
2426 /* An INSN, JUMP_INSN or CALL_INSN.
2427 First check for special kinds that recog doesn't recognize. */
2429 if (GET_CODE (body) == USE /* These are just declarations */
2430 || GET_CODE (body) == CLOBBER)
2431 break;
2433 #ifdef HAVE_cc0
2434 /* If there is a REG_CC_SETTER note on this insn, it means that
2435 the setting of the condition code was done in the delay slot
2436 of the insn that branched here. So recover the cc status
2437 from the insn that set it. */
2439 note = find_reg_note (insn, REG_CC_SETTER, NULL_RTX);
2440 if (note)
2442 NOTICE_UPDATE_CC (PATTERN (XEXP (note, 0)), XEXP (note, 0));
2443 cc_prev_status = cc_status;
2445 #endif
2447 /* Detect insns that are really jump-tables
2448 and output them as such. */
2450 if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
2452 #if !(defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC))
2453 register int vlen, idx;
2454 #endif
2456 if (prescan > 0)
2457 break;
2459 if (app_on)
2461 fputs (ASM_APP_OFF, file);
2462 app_on = 0;
2465 #if defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC)
2466 if (GET_CODE (body) == ADDR_VEC)
2468 #ifdef ASM_OUTPUT_ADDR_VEC
2469 ASM_OUTPUT_ADDR_VEC (PREV_INSN (insn), body);
2470 #else
2471 abort ();
2472 #endif
2474 else
2476 #ifdef ASM_OUTPUT_ADDR_DIFF_VEC
2477 ASM_OUTPUT_ADDR_DIFF_VEC (PREV_INSN (insn), body);
2478 #else
2479 abort ();
2480 #endif
2482 #else
2483 vlen = XVECLEN (body, GET_CODE (body) == ADDR_DIFF_VEC);
2484 for (idx = 0; idx < vlen; idx++)
2486 if (GET_CODE (body) == ADDR_VEC)
2488 #ifdef ASM_OUTPUT_ADDR_VEC_ELT
2489 ASM_OUTPUT_ADDR_VEC_ELT
2490 (file, CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 0, idx), 0)));
2491 #else
2492 abort ();
2493 #endif
2495 else
2497 #ifdef ASM_OUTPUT_ADDR_DIFF_ELT
2498 ASM_OUTPUT_ADDR_DIFF_ELT
2499 (file,
2500 body,
2501 CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 1, idx), 0)),
2502 CODE_LABEL_NUMBER (XEXP (XEXP (body, 0), 0)));
2503 #else
2504 abort ();
2505 #endif
2508 #ifdef ASM_OUTPUT_CASE_END
2509 ASM_OUTPUT_CASE_END (file,
2510 CODE_LABEL_NUMBER (PREV_INSN (insn)),
2511 insn);
2512 #endif
2513 #endif
2515 function_section (current_function_decl);
2517 break;
2520 /* Do basic-block profiling when we reach a new block.
2521 Done here to avoid jump tables. */
2522 if (profile_block_flag && new_block)
2523 add_bb (file);
2525 if (GET_CODE (body) == ASM_INPUT)
2527 /* There's no telling what that did to the condition codes. */
2528 CC_STATUS_INIT;
2529 if (prescan > 0)
2530 break;
2531 if (! app_on)
2533 fputs (ASM_APP_ON, file);
2534 app_on = 1;
2536 fprintf (asm_out_file, "\t%s\n", XSTR (body, 0));
2537 break;
2540 /* Detect `asm' construct with operands. */
2541 if (asm_noperands (body) >= 0)
2543 unsigned int noperands = asm_noperands (body);
2544 rtx *ops = (rtx *) alloca (noperands * sizeof (rtx));
2545 const char *string;
2547 /* There's no telling what that did to the condition codes. */
2548 CC_STATUS_INIT;
2549 if (prescan > 0)
2550 break;
2552 if (! app_on)
2554 fputs (ASM_APP_ON, file);
2555 app_on = 1;
2558 /* Get out the operand values. */
2559 string = decode_asm_operands (body, ops, NULL_PTR,
2560 NULL_PTR, NULL_PTR);
2561 /* Inhibit aborts on what would otherwise be compiler bugs. */
2562 insn_noperands = noperands;
2563 this_is_asm_operands = insn;
2565 /* Output the insn using them. */
2566 output_asm_insn (string, ops);
2567 this_is_asm_operands = 0;
2568 break;
2571 if (prescan <= 0 && app_on)
2573 fputs (ASM_APP_OFF, file);
2574 app_on = 0;
2577 if (GET_CODE (body) == SEQUENCE)
2579 /* A delayed-branch sequence */
2580 register int i;
2581 rtx next;
2583 if (prescan > 0)
2584 break;
2585 final_sequence = body;
2587 /* The first insn in this SEQUENCE might be a JUMP_INSN that will
2588 force the restoration of a comparison that was previously
2589 thought unnecessary. If that happens, cancel this sequence
2590 and cause that insn to be restored. */
2592 next = final_scan_insn (XVECEXP (body, 0, 0), file, 0, prescan, 1);
2593 if (next != XVECEXP (body, 0, 1))
2595 final_sequence = 0;
2596 return next;
2599 for (i = 1; i < XVECLEN (body, 0); i++)
2601 rtx insn = XVECEXP (body, 0, i);
2602 rtx next = NEXT_INSN (insn);
2603 /* We loop in case any instruction in a delay slot gets
2604 split. */
2606 insn = final_scan_insn (insn, file, 0, prescan, 1);
2607 while (insn != next);
2609 #ifdef DBR_OUTPUT_SEQEND
2610 DBR_OUTPUT_SEQEND (file);
2611 #endif
2612 final_sequence = 0;
2614 /* If the insn requiring the delay slot was a CALL_INSN, the
2615 insns in the delay slot are actually executed before the
2616 called function. Hence we don't preserve any CC-setting
2617 actions in these insns and the CC must be marked as being
2618 clobbered by the function. */
2619 if (GET_CODE (XVECEXP (body, 0, 0)) == CALL_INSN)
2621 CC_STATUS_INIT;
2624 /* Following a conditional branch sequence, we have a new basic
2625 block. */
2626 if (profile_block_flag)
2628 rtx insn = XVECEXP (body, 0, 0);
2629 rtx body = PATTERN (insn);
2631 if ((GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == SET
2632 && GET_CODE (SET_SRC (body)) != LABEL_REF)
2633 || (GET_CODE (insn) == JUMP_INSN
2634 && GET_CODE (body) == PARALLEL
2635 && GET_CODE (XVECEXP (body, 0, 0)) == SET
2636 && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) != LABEL_REF))
2637 new_block = 1;
2639 break;
2642 /* We have a real machine instruction as rtl. */
2644 body = PATTERN (insn);
2646 #ifdef HAVE_cc0
2647 set = single_set (insn);
2649 /* Check for redundant test and compare instructions
2650 (when the condition codes are already set up as desired).
2651 This is done only when optimizing; if not optimizing,
2652 it should be possible for the user to alter a variable
2653 with the debugger in between statements
2654 and the next statement should reexamine the variable
2655 to compute the condition codes. */
2657 if (optimize)
2659 #if 0
2660 rtx set = single_set (insn);
2661 #endif
2663 if (set
2664 && GET_CODE (SET_DEST (set)) == CC0
2665 && insn != last_ignored_compare)
2667 if (GET_CODE (SET_SRC (set)) == SUBREG)
2668 SET_SRC (set) = alter_subreg (SET_SRC (set));
2669 else if (GET_CODE (SET_SRC (set)) == COMPARE)
2671 if (GET_CODE (XEXP (SET_SRC (set), 0)) == SUBREG)
2672 XEXP (SET_SRC (set), 0)
2673 = alter_subreg (XEXP (SET_SRC (set), 0));
2674 if (GET_CODE (XEXP (SET_SRC (set), 1)) == SUBREG)
2675 XEXP (SET_SRC (set), 1)
2676 = alter_subreg (XEXP (SET_SRC (set), 1));
2678 if ((cc_status.value1 != 0
2679 && rtx_equal_p (SET_SRC (set), cc_status.value1))
2680 || (cc_status.value2 != 0
2681 && rtx_equal_p (SET_SRC (set), cc_status.value2)))
2683 /* Don't delete insn if it has an addressing side-effect. */
2684 if (! FIND_REG_INC_NOTE (insn, 0)
2685 /* or if anything in it is volatile. */
2686 && ! volatile_refs_p (PATTERN (insn)))
2688 /* We don't really delete the insn; just ignore it. */
2689 last_ignored_compare = insn;
2690 break;
2695 #endif
2697 /* Following a conditional branch, we have a new basic block.
2698 But if we are inside a sequence, the new block starts after the
2699 last insn of the sequence. */
2700 if (profile_block_flag && final_sequence == 0
2701 && ((GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == SET
2702 && GET_CODE (SET_SRC (body)) != LABEL_REF)
2703 || (GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == PARALLEL
2704 && GET_CODE (XVECEXP (body, 0, 0)) == SET
2705 && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) != LABEL_REF)))
2706 new_block = 1;
2708 #ifndef STACK_REGS
2709 /* Don't bother outputting obvious no-ops, even without -O.
2710 This optimization is fast and doesn't interfere with debugging.
2711 Don't do this if the insn is in a delay slot, since this
2712 will cause an improper number of delay insns to be written. */
2713 if (final_sequence == 0
2714 && prescan >= 0
2715 && GET_CODE (insn) == INSN && GET_CODE (body) == SET
2716 && GET_CODE (SET_SRC (body)) == REG
2717 && GET_CODE (SET_DEST (body)) == REG
2718 && REGNO (SET_SRC (body)) == REGNO (SET_DEST (body)))
2719 break;
2720 #endif
2722 #ifdef HAVE_cc0
2723 /* If this is a conditional branch, maybe modify it
2724 if the cc's are in a nonstandard state
2725 so that it accomplishes the same thing that it would
2726 do straightforwardly if the cc's were set up normally. */
2728 if (cc_status.flags != 0
2729 && GET_CODE (insn) == JUMP_INSN
2730 && GET_CODE (body) == SET
2731 && SET_DEST (body) == pc_rtx
2732 && GET_CODE (SET_SRC (body)) == IF_THEN_ELSE
2733 && GET_RTX_CLASS (GET_CODE (XEXP (SET_SRC (body), 0))) == '<'
2734 && XEXP (XEXP (SET_SRC (body), 0), 0) == cc0_rtx
2735 /* This is done during prescan; it is not done again
2736 in final scan when prescan has been done. */
2737 && prescan >= 0)
2739 /* This function may alter the contents of its argument
2740 and clear some of the cc_status.flags bits.
2741 It may also return 1 meaning condition now always true
2742 or -1 meaning condition now always false
2743 or 2 meaning condition nontrivial but altered. */
2744 register int result = alter_cond (XEXP (SET_SRC (body), 0));
2745 /* If condition now has fixed value, replace the IF_THEN_ELSE
2746 with its then-operand or its else-operand. */
2747 if (result == 1)
2748 SET_SRC (body) = XEXP (SET_SRC (body), 1);
2749 if (result == -1)
2750 SET_SRC (body) = XEXP (SET_SRC (body), 2);
2752 /* The jump is now either unconditional or a no-op.
2753 If it has become a no-op, don't try to output it.
2754 (It would not be recognized.) */
2755 if (SET_SRC (body) == pc_rtx)
2757 PUT_CODE (insn, NOTE);
2758 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
2759 NOTE_SOURCE_FILE (insn) = 0;
2760 break;
2762 else if (GET_CODE (SET_SRC (body)) == RETURN)
2763 /* Replace (set (pc) (return)) with (return). */
2764 PATTERN (insn) = body = SET_SRC (body);
2766 /* Rerecognize the instruction if it has changed. */
2767 if (result != 0)
2768 INSN_CODE (insn) = -1;
2771 /* Make same adjustments to instructions that examine the
2772 condition codes without jumping and instructions that
2773 handle conditional moves (if this machine has either one). */
2775 if (cc_status.flags != 0
2776 && set != 0)
2778 rtx cond_rtx, then_rtx, else_rtx;
2780 if (GET_CODE (insn) != JUMP_INSN
2781 && GET_CODE (SET_SRC (set)) == IF_THEN_ELSE)
2783 cond_rtx = XEXP (SET_SRC (set), 0);
2784 then_rtx = XEXP (SET_SRC (set), 1);
2785 else_rtx = XEXP (SET_SRC (set), 2);
2787 else
2789 cond_rtx = SET_SRC (set);
2790 then_rtx = const_true_rtx;
2791 else_rtx = const0_rtx;
2794 switch (GET_CODE (cond_rtx))
2796 case GTU:
2797 case GT:
2798 case LTU:
2799 case LT:
2800 case GEU:
2801 case GE:
2802 case LEU:
2803 case LE:
2804 case EQ:
2805 case NE:
2807 register int result;
2808 if (XEXP (cond_rtx, 0) != cc0_rtx)
2809 break;
2810 result = alter_cond (cond_rtx);
2811 if (result == 1)
2812 validate_change (insn, &SET_SRC (set), then_rtx, 0);
2813 else if (result == -1)
2814 validate_change (insn, &SET_SRC (set), else_rtx, 0);
2815 else if (result == 2)
2816 INSN_CODE (insn) = -1;
2817 if (SET_DEST (set) == SET_SRC (set))
2819 PUT_CODE (insn, NOTE);
2820 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
2821 NOTE_SOURCE_FILE (insn) = 0;
2824 break;
2826 default:
2827 break;
2831 #endif
2833 #ifdef HAVE_peephole
2834 /* Do machine-specific peephole optimizations if desired. */
2836 if (optimize && !flag_no_peephole && !nopeepholes)
2838 rtx next = peephole (insn);
2839 /* When peepholing, if there were notes within the peephole,
2840 emit them before the peephole. */
2841 if (next != 0 && next != NEXT_INSN (insn))
2843 rtx prev = PREV_INSN (insn);
2844 rtx note;
2846 for (note = NEXT_INSN (insn); note != next;
2847 note = NEXT_INSN (note))
2848 final_scan_insn (note, file, optimize, prescan, nopeepholes);
2850 /* In case this is prescan, put the notes
2851 in proper position for later rescan. */
2852 note = NEXT_INSN (insn);
2853 PREV_INSN (note) = prev;
2854 NEXT_INSN (prev) = note;
2855 NEXT_INSN (PREV_INSN (next)) = insn;
2856 PREV_INSN (insn) = PREV_INSN (next);
2857 NEXT_INSN (insn) = next;
2858 PREV_INSN (next) = insn;
2861 /* PEEPHOLE might have changed this. */
2862 body = PATTERN (insn);
2864 #endif
2866 /* Try to recognize the instruction.
2867 If successful, verify that the operands satisfy the
2868 constraints for the instruction. Crash if they don't,
2869 since `reload' should have changed them so that they do. */
2871 insn_code_number = recog_memoized (insn);
2872 cleanup_subreg_operands (insn);
2874 /* Dump the insn in the assembly for debugging. */
2875 if (flag_dump_rtl_in_asm)
2877 print_rtx_head = ASM_COMMENT_START;
2878 print_rtl_single (asm_out_file, insn);
2879 print_rtx_head = "";
2882 if (! constrain_operands_cached (1))
2883 fatal_insn_not_found (insn);
2885 /* Some target machines need to prescan each insn before
2886 it is output. */
2888 #ifdef FINAL_PRESCAN_INSN
2889 FINAL_PRESCAN_INSN (insn, recog_data.operand, recog_data.n_operands);
2890 #endif
2892 #ifdef HAVE_conditional_execution
2893 if (GET_CODE (PATTERN (insn)) == COND_EXEC)
2894 current_insn_predicate = COND_EXEC_TEST (PATTERN (insn));
2895 else
2896 current_insn_predicate = NULL_RTX;
2897 #endif
2899 #ifdef HAVE_cc0
2900 cc_prev_status = cc_status;
2902 /* Update `cc_status' for this instruction.
2903 The instruction's output routine may change it further.
2904 If the output routine for a jump insn needs to depend
2905 on the cc status, it should look at cc_prev_status. */
2907 NOTICE_UPDATE_CC (body, insn);
2908 #endif
2910 current_output_insn = debug_insn = insn;
2912 #if defined (DWARF2_UNWIND_INFO)
2913 if (GET_CODE (insn) == CALL_INSN && dwarf2out_do_frame ())
2914 dwarf2out_frame_debug (insn);
2915 #endif
2917 /* Find the proper template for this insn. */
2918 template = get_insn_template (insn_code_number, insn);
2920 /* If the C code returns 0, it means that it is a jump insn
2921 which follows a deleted test insn, and that test insn
2922 needs to be reinserted. */
2923 if (template == 0)
2925 rtx prev;
2927 if (prev_nonnote_insn (insn) != last_ignored_compare)
2928 abort ();
2929 new_block = 0;
2931 /* We have already processed the notes between the setter and
2932 the user. Make sure we don't process them again, this is
2933 particularly important if one of the notes is a block
2934 scope note or an EH note. */
2935 for (prev = insn;
2936 prev != last_ignored_compare;
2937 prev = PREV_INSN (prev))
2939 if (GET_CODE (prev) == NOTE)
2941 NOTE_LINE_NUMBER (prev) = NOTE_INSN_DELETED;
2942 NOTE_SOURCE_FILE (prev) = 0;
2946 return prev;
2949 /* If the template is the string "#", it means that this insn must
2950 be split. */
2951 if (template[0] == '#' && template[1] == '\0')
2953 rtx new = try_split (body, insn, 0);
2955 /* If we didn't split the insn, go away. */
2956 if (new == insn && PATTERN (new) == body)
2957 fatal_insn ("Could not split insn", insn);
2959 #ifdef HAVE_ATTR_length
2960 /* This instruction should have been split in shorten_branches,
2961 to ensure that we would have valid length info for the
2962 splitees. */
2963 abort ();
2964 #endif
2966 new_block = 0;
2967 return new;
2970 if (prescan > 0)
2971 break;
2973 #ifdef IA64_UNWIND_INFO
2974 IA64_UNWIND_EMIT (asm_out_file, insn);
2975 #endif
2976 /* Output assembler code from the template. */
2978 output_asm_insn (template, recog_data.operand);
2980 #if defined (DWARF2_UNWIND_INFO)
2981 #if defined (HAVE_prologue)
2982 if (GET_CODE (insn) == INSN && dwarf2out_do_frame ())
2983 dwarf2out_frame_debug (insn);
2984 #else
2985 if (!ACCUMULATE_OUTGOING_ARGS
2986 && GET_CODE (insn) == INSN
2987 && dwarf2out_do_frame ())
2988 dwarf2out_frame_debug (insn);
2989 #endif
2990 #endif
2992 #if 0
2993 /* It's not at all clear why we did this and doing so interferes
2994 with tests we'd like to do to use REG_WAS_0 notes, so let's try
2995 with this out. */
2997 /* Mark this insn as having been output. */
2998 INSN_DELETED_P (insn) = 1;
2999 #endif
3001 current_output_insn = debug_insn = 0;
3004 return NEXT_INSN (insn);
3007 /* Output debugging info to the assembler file FILE
3008 based on the NOTE-insn INSN, assumed to be a line number. */
3010 static void
3011 output_source_line (file, insn)
3012 FILE *file ATTRIBUTE_UNUSED;
3013 rtx insn;
3015 register const char *filename = NOTE_SOURCE_FILE (insn);
3017 /* Remember filename for basic block profiling.
3018 Filenames are allocated on the permanent obstack
3019 or are passed in ARGV, so we don't have to save
3020 the string. */
3022 if (profile_block_flag && last_filename != filename)
3023 bb_file_label_num = add_bb_string (filename, TRUE);
3025 last_filename = filename;
3026 last_linenum = NOTE_LINE_NUMBER (insn);
3027 high_block_linenum = MAX (last_linenum, high_block_linenum);
3028 high_function_linenum = MAX (last_linenum, high_function_linenum);
3030 if (write_symbols != NO_DEBUG)
3032 #ifdef SDB_DEBUGGING_INFO
3033 if (write_symbols == SDB_DEBUG
3034 #if 0 /* People like having line numbers even in wrong file! */
3035 /* COFF can't handle multiple source files--lose, lose. */
3036 && !strcmp (filename, main_input_filename)
3037 #endif
3038 /* COFF relative line numbers must be positive. */
3039 && last_linenum > sdb_begin_function_line)
3041 #ifdef ASM_OUTPUT_SOURCE_LINE
3042 ASM_OUTPUT_SOURCE_LINE (file, last_linenum);
3043 #else
3044 fprintf (file, "\t.ln\t%d\n",
3045 ((sdb_begin_function_line > -1)
3046 ? last_linenum - sdb_begin_function_line : 1));
3047 #endif
3049 #endif
3051 #if defined (DBX_DEBUGGING_INFO)
3052 if (write_symbols == DBX_DEBUG)
3053 dbxout_source_line (file, filename, NOTE_LINE_NUMBER (insn));
3054 #endif
3056 #if defined (XCOFF_DEBUGGING_INFO)
3057 if (write_symbols == XCOFF_DEBUG)
3058 xcoffout_source_line (file, filename, insn);
3059 #endif
3061 #ifdef DWARF_DEBUGGING_INFO
3062 if (write_symbols == DWARF_DEBUG)
3063 dwarfout_line (filename, NOTE_LINE_NUMBER (insn));
3064 #endif
3066 #ifdef DWARF2_DEBUGGING_INFO
3067 if (write_symbols == DWARF2_DEBUG)
3068 dwarf2out_line (filename, NOTE_LINE_NUMBER (insn));
3069 #endif
3073 /* For each operand in INSN, simplify (subreg (reg)) so that it refers
3074 directly to the desired hard register. */
3076 void
3077 cleanup_subreg_operands (insn)
3078 rtx insn;
3080 int i;
3081 extract_insn_cached (insn);
3082 for (i = 0; i < recog_data.n_operands; i++)
3084 if (GET_CODE (recog_data.operand[i]) == SUBREG)
3085 recog_data.operand[i] = alter_subreg (recog_data.operand[i]);
3086 else if (GET_CODE (recog_data.operand[i]) == PLUS
3087 || GET_CODE (recog_data.operand[i]) == MULT
3088 || GET_CODE (recog_data.operand[i]) == MEM)
3089 recog_data.operand[i] = walk_alter_subreg (recog_data.operand[i]);
3092 for (i = 0; i < recog_data.n_dups; i++)
3094 if (GET_CODE (*recog_data.dup_loc[i]) == SUBREG)
3095 *recog_data.dup_loc[i] = alter_subreg (*recog_data.dup_loc[i]);
3096 else if (GET_CODE (*recog_data.dup_loc[i]) == PLUS
3097 || GET_CODE (*recog_data.dup_loc[i]) == MULT
3098 || GET_CODE (*recog_data.dup_loc[i]) == MEM)
3099 *recog_data.dup_loc[i] = walk_alter_subreg (*recog_data.dup_loc[i]);
3103 /* If X is a SUBREG, replace it with a REG or a MEM,
3104 based on the thing it is a subreg of. */
3107 alter_subreg (x)
3108 register rtx x;
3110 register rtx y = SUBREG_REG (x);
3112 if (GET_CODE (y) == SUBREG)
3113 y = alter_subreg (y);
3115 /* If reload is operating, we may be replacing inside this SUBREG.
3116 Check for that and make a new one if so. */
3117 if (reload_in_progress && find_replacement (&SUBREG_REG (x)) != 0)
3118 x = copy_rtx (x);
3120 if (GET_CODE (y) == REG)
3122 int regno = subreg_hard_regno (x, 1);
3124 PUT_CODE (x, REG);
3125 REGNO (x) = regno;
3126 ORIGINAL_REGNO (x) = ORIGINAL_REGNO (y);
3127 /* This field has a different meaning for REGs and SUBREGs. Make sure
3128 to clear it! */
3129 x->used = 0;
3131 else if (GET_CODE (y) == MEM)
3133 register int offset = SUBREG_BYTE (x);
3135 /* Catch these instead of generating incorrect code. */
3136 if ((offset % GET_MODE_SIZE (GET_MODE (x))) != 0)
3137 abort ();
3139 PUT_CODE (x, MEM);
3140 MEM_COPY_ATTRIBUTES (x, y);
3141 XEXP (x, 0) = plus_constant (XEXP (y, 0), offset);
3144 return x;
3147 /* Do alter_subreg on all the SUBREGs contained in X. */
3149 static rtx
3150 walk_alter_subreg (x)
3151 rtx x;
3153 switch (GET_CODE (x))
3155 case PLUS:
3156 case MULT:
3157 XEXP (x, 0) = walk_alter_subreg (XEXP (x, 0));
3158 XEXP (x, 1) = walk_alter_subreg (XEXP (x, 1));
3159 break;
3161 case MEM:
3162 XEXP (x, 0) = walk_alter_subreg (XEXP (x, 0));
3163 break;
3165 case SUBREG:
3166 return alter_subreg (x);
3168 default:
3169 break;
3172 return x;
3175 #ifdef HAVE_cc0
3177 /* Given BODY, the body of a jump instruction, alter the jump condition
3178 as required by the bits that are set in cc_status.flags.
3179 Not all of the bits there can be handled at this level in all cases.
3181 The value is normally 0.
3182 1 means that the condition has become always true.
3183 -1 means that the condition has become always false.
3184 2 means that COND has been altered. */
3186 static int
3187 alter_cond (cond)
3188 register rtx cond;
3190 int value = 0;
3192 if (cc_status.flags & CC_REVERSED)
3194 value = 2;
3195 PUT_CODE (cond, swap_condition (GET_CODE (cond)));
3198 if (cc_status.flags & CC_INVERTED)
3200 value = 2;
3201 PUT_CODE (cond, reverse_condition (GET_CODE (cond)));
3204 if (cc_status.flags & CC_NOT_POSITIVE)
3205 switch (GET_CODE (cond))
3207 case LE:
3208 case LEU:
3209 case GEU:
3210 /* Jump becomes unconditional. */
3211 return 1;
3213 case GT:
3214 case GTU:
3215 case LTU:
3216 /* Jump becomes no-op. */
3217 return -1;
3219 case GE:
3220 PUT_CODE (cond, EQ);
3221 value = 2;
3222 break;
3224 case LT:
3225 PUT_CODE (cond, NE);
3226 value = 2;
3227 break;
3229 default:
3230 break;
3233 if (cc_status.flags & CC_NOT_NEGATIVE)
3234 switch (GET_CODE (cond))
3236 case GE:
3237 case GEU:
3238 /* Jump becomes unconditional. */
3239 return 1;
3241 case LT:
3242 case LTU:
3243 /* Jump becomes no-op. */
3244 return -1;
3246 case LE:
3247 case LEU:
3248 PUT_CODE (cond, EQ);
3249 value = 2;
3250 break;
3252 case GT:
3253 case GTU:
3254 PUT_CODE (cond, NE);
3255 value = 2;
3256 break;
3258 default:
3259 break;
3262 if (cc_status.flags & CC_NO_OVERFLOW)
3263 switch (GET_CODE (cond))
3265 case GEU:
3266 /* Jump becomes unconditional. */
3267 return 1;
3269 case LEU:
3270 PUT_CODE (cond, EQ);
3271 value = 2;
3272 break;
3274 case GTU:
3275 PUT_CODE (cond, NE);
3276 value = 2;
3277 break;
3279 case LTU:
3280 /* Jump becomes no-op. */
3281 return -1;
3283 default:
3284 break;
3287 if (cc_status.flags & (CC_Z_IN_NOT_N | CC_Z_IN_N))
3288 switch (GET_CODE (cond))
3290 default:
3291 abort ();
3293 case NE:
3294 PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? GE : LT);
3295 value = 2;
3296 break;
3298 case EQ:
3299 PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? LT : GE);
3300 value = 2;
3301 break;
3304 if (cc_status.flags & CC_NOT_SIGNED)
3305 /* The flags are valid if signed condition operators are converted
3306 to unsigned. */
3307 switch (GET_CODE (cond))
3309 case LE:
3310 PUT_CODE (cond, LEU);
3311 value = 2;
3312 break;
3314 case LT:
3315 PUT_CODE (cond, LTU);
3316 value = 2;
3317 break;
3319 case GT:
3320 PUT_CODE (cond, GTU);
3321 value = 2;
3322 break;
3324 case GE:
3325 PUT_CODE (cond, GEU);
3326 value = 2;
3327 break;
3329 default:
3330 break;
3333 return value;
3335 #endif
3337 /* Report inconsistency between the assembler template and the operands.
3338 In an `asm', it's the user's fault; otherwise, the compiler's fault. */
3340 void
3341 output_operand_lossage (msgid)
3342 const char *msgid;
3344 if (this_is_asm_operands)
3345 error_for_asm (this_is_asm_operands, "invalid `asm': %s", _(msgid));
3346 else
3347 internal_error ("output_operand: %s", _(msgid));
3350 /* Output of assembler code from a template, and its subroutines. */
3352 /* Output text from TEMPLATE to the assembler output file,
3353 obeying %-directions to substitute operands taken from
3354 the vector OPERANDS.
3356 %N (for N a digit) means print operand N in usual manner.
3357 %lN means require operand N to be a CODE_LABEL or LABEL_REF
3358 and print the label name with no punctuation.
3359 %cN means require operand N to be a constant
3360 and print the constant expression with no punctuation.
3361 %aN means expect operand N to be a memory address
3362 (not a memory reference!) and print a reference
3363 to that address.
3364 %nN means expect operand N to be a constant
3365 and print a constant expression for minus the value
3366 of the operand, with no other punctuation. */
3368 static void
3369 output_asm_name ()
3371 if (flag_print_asm_name)
3373 /* Annotate the assembly with a comment describing the pattern and
3374 alternative used. */
3375 if (debug_insn)
3377 register int num = INSN_CODE (debug_insn);
3378 fprintf (asm_out_file, "\t%s %d\t%s",
3379 ASM_COMMENT_START, INSN_UID (debug_insn),
3380 insn_data[num].name);
3381 if (insn_data[num].n_alternatives > 1)
3382 fprintf (asm_out_file, "/%d", which_alternative + 1);
3383 #ifdef HAVE_ATTR_length
3384 fprintf (asm_out_file, "\t[length = %d]",
3385 get_attr_length (debug_insn));
3386 #endif
3387 /* Clear this so only the first assembler insn
3388 of any rtl insn will get the special comment for -dp. */
3389 debug_insn = 0;
3394 void
3395 output_asm_insn (template, operands)
3396 const char *template;
3397 rtx *operands;
3399 register const char *p;
3400 register int c;
3402 /* An insn may return a null string template
3403 in a case where no assembler code is needed. */
3404 if (*template == 0)
3405 return;
3407 p = template;
3408 putc ('\t', asm_out_file);
3410 #ifdef ASM_OUTPUT_OPCODE
3411 ASM_OUTPUT_OPCODE (asm_out_file, p);
3412 #endif
3414 while ((c = *p++))
3415 switch (c)
3417 case '\n':
3418 output_asm_name ();
3419 putc (c, asm_out_file);
3420 #ifdef ASM_OUTPUT_OPCODE
3421 while ((c = *p) == '\t')
3423 putc (c, asm_out_file);
3424 p++;
3426 ASM_OUTPUT_OPCODE (asm_out_file, p);
3427 #endif
3428 break;
3430 #ifdef ASSEMBLER_DIALECT
3431 case '{':
3433 register int i;
3435 /* If we want the first dialect, do nothing. Otherwise, skip
3436 DIALECT_NUMBER of strings ending with '|'. */
3437 for (i = 0; i < dialect_number; i++)
3439 while (*p && *p != '}' && *p++ != '|')
3441 if (*p == '}')
3442 break;
3443 if (*p == '|')
3444 p++;
3447 break;
3449 case '|':
3450 /* Skip to close brace. */
3451 while (*p && *p++ != '}')
3453 break;
3455 case '}':
3456 break;
3457 #endif
3459 case '%':
3460 /* %% outputs a single %. */
3461 if (*p == '%')
3463 p++;
3464 putc (c, asm_out_file);
3466 /* %= outputs a number which is unique to each insn in the entire
3467 compilation. This is useful for making local labels that are
3468 referred to more than once in a given insn. */
3469 else if (*p == '=')
3471 p++;
3472 fprintf (asm_out_file, "%d", insn_counter);
3474 /* % followed by a letter and some digits
3475 outputs an operand in a special way depending on the letter.
3476 Letters `acln' are implemented directly.
3477 Other letters are passed to `output_operand' so that
3478 the PRINT_OPERAND macro can define them. */
3479 else if (ISLOWER (*p) || ISUPPER (*p))
3481 int letter = *p++;
3482 c = atoi (p);
3484 if (! (*p >= '0' && *p <= '9'))
3485 output_operand_lossage ("operand number missing after %-letter");
3486 else if (this_is_asm_operands && (c < 0 || (unsigned int) c >= insn_noperands))
3487 output_operand_lossage ("operand number out of range");
3488 else if (letter == 'l')
3489 output_asm_label (operands[c]);
3490 else if (letter == 'a')
3491 output_address (operands[c]);
3492 else if (letter == 'c')
3494 if (CONSTANT_ADDRESS_P (operands[c]))
3495 output_addr_const (asm_out_file, operands[c]);
3496 else
3497 output_operand (operands[c], 'c');
3499 else if (letter == 'n')
3501 if (GET_CODE (operands[c]) == CONST_INT)
3502 fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC,
3503 - INTVAL (operands[c]));
3504 else
3506 putc ('-', asm_out_file);
3507 output_addr_const (asm_out_file, operands[c]);
3510 else
3511 output_operand (operands[c], letter);
3513 while ((c = *p) >= '0' && c <= '9')
3514 p++;
3516 /* % followed by a digit outputs an operand the default way. */
3517 else if (*p >= '0' && *p <= '9')
3519 c = atoi (p);
3520 if (this_is_asm_operands
3521 && (c < 0 || (unsigned int) c >= insn_noperands))
3522 output_operand_lossage ("operand number out of range");
3523 else
3524 output_operand (operands[c], 0);
3525 while ((c = *p) >= '0' && c <= '9')
3526 p++;
3528 /* % followed by punctuation: output something for that
3529 punctuation character alone, with no operand.
3530 The PRINT_OPERAND macro decides what is actually done. */
3531 #ifdef PRINT_OPERAND_PUNCT_VALID_P
3532 else if (PRINT_OPERAND_PUNCT_VALID_P ((unsigned char) *p))
3533 output_operand (NULL_RTX, *p++);
3534 #endif
3535 else
3536 output_operand_lossage ("invalid %%-code");
3537 break;
3539 default:
3540 putc (c, asm_out_file);
3543 output_asm_name ();
3545 putc ('\n', asm_out_file);
3548 /* Output a LABEL_REF, or a bare CODE_LABEL, as an assembler symbol. */
3550 void
3551 output_asm_label (x)
3552 rtx x;
3554 char buf[256];
3556 if (GET_CODE (x) == LABEL_REF)
3557 x = XEXP (x, 0);
3558 if (GET_CODE (x) == CODE_LABEL
3559 || (GET_CODE (x) == NOTE
3560 && NOTE_LINE_NUMBER (x) == NOTE_INSN_DELETED_LABEL))
3561 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
3562 else
3563 output_operand_lossage ("`%l' operand isn't a label");
3565 assemble_name (asm_out_file, buf);
3568 /* Print operand X using machine-dependent assembler syntax.
3569 The macro PRINT_OPERAND is defined just to control this function.
3570 CODE is a non-digit that preceded the operand-number in the % spec,
3571 such as 'z' if the spec was `%z3'. CODE is 0 if there was no char
3572 between the % and the digits.
3573 When CODE is a non-letter, X is 0.
3575 The meanings of the letters are machine-dependent and controlled
3576 by PRINT_OPERAND. */
3578 static void
3579 output_operand (x, code)
3580 rtx x;
3581 int code ATTRIBUTE_UNUSED;
3583 if (x && GET_CODE (x) == SUBREG)
3584 x = alter_subreg (x);
3586 /* If X is a pseudo-register, abort now rather than writing trash to the
3587 assembler file. */
3589 if (x && GET_CODE (x) == REG && REGNO (x) >= FIRST_PSEUDO_REGISTER)
3590 abort ();
3592 PRINT_OPERAND (asm_out_file, x, code);
3595 /* Print a memory reference operand for address X
3596 using machine-dependent assembler syntax.
3597 The macro PRINT_OPERAND_ADDRESS exists just to control this function. */
3599 void
3600 output_address (x)
3601 rtx x;
3603 walk_alter_subreg (x);
3604 PRINT_OPERAND_ADDRESS (asm_out_file, x);
3607 /* Print an integer constant expression in assembler syntax.
3608 Addition and subtraction are the only arithmetic
3609 that may appear in these expressions. */
3611 void
3612 output_addr_const (file, x)
3613 FILE *file;
3614 rtx x;
3616 char buf[256];
3618 restart:
3619 switch (GET_CODE (x))
3621 case PC:
3622 if (flag_pic)
3623 putc ('.', file);
3624 else
3625 abort ();
3626 break;
3628 case SYMBOL_REF:
3629 #ifdef ASM_OUTPUT_SYMBOL_REF
3630 ASM_OUTPUT_SYMBOL_REF (file, x);
3631 #else
3632 assemble_name (file, XSTR (x, 0));
3633 #endif
3634 break;
3636 case LABEL_REF:
3637 x = XEXP (x, 0);
3638 /* Fall through. */
3639 case CODE_LABEL:
3640 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
3641 assemble_name (file, buf);
3642 break;
3644 case CONST_INT:
3645 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x));
3646 break;
3648 case CONST:
3649 /* This used to output parentheses around the expression,
3650 but that does not work on the 386 (either ATT or BSD assembler). */
3651 output_addr_const (file, XEXP (x, 0));
3652 break;
3654 case CONST_DOUBLE:
3655 if (GET_MODE (x) == VOIDmode)
3657 /* We can use %d if the number is one word and positive. */
3658 if (CONST_DOUBLE_HIGH (x))
3659 fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
3660 CONST_DOUBLE_HIGH (x), CONST_DOUBLE_LOW (x));
3661 else if (CONST_DOUBLE_LOW (x) < 0)
3662 fprintf (file, HOST_WIDE_INT_PRINT_HEX, CONST_DOUBLE_LOW (x));
3663 else
3664 fprintf (file, HOST_WIDE_INT_PRINT_DEC, CONST_DOUBLE_LOW (x));
3666 else
3667 /* We can't handle floating point constants;
3668 PRINT_OPERAND must handle them. */
3669 output_operand_lossage ("floating constant misused");
3670 break;
3672 case PLUS:
3673 /* Some assemblers need integer constants to appear last (eg masm). */
3674 if (GET_CODE (XEXP (x, 0)) == CONST_INT)
3676 output_addr_const (file, XEXP (x, 1));
3677 if (INTVAL (XEXP (x, 0)) >= 0)
3678 fprintf (file, "+");
3679 output_addr_const (file, XEXP (x, 0));
3681 else
3683 output_addr_const (file, XEXP (x, 0));
3684 if (GET_CODE (XEXP (x, 1)) != CONST_INT
3685 || INTVAL (XEXP (x, 1)) >= 0)
3686 fprintf (file, "+");
3687 output_addr_const (file, XEXP (x, 1));
3689 break;
3691 case MINUS:
3692 /* Avoid outputting things like x-x or x+5-x,
3693 since some assemblers can't handle that. */
3694 x = simplify_subtraction (x);
3695 if (GET_CODE (x) != MINUS)
3696 goto restart;
3698 output_addr_const (file, XEXP (x, 0));
3699 fprintf (file, "-");
3700 if ((GET_CODE (XEXP (x, 1)) == CONST_INT
3701 && INTVAL (XEXP (x, 1)) < 0)
3702 || GET_CODE (XEXP (x, 1)) != CONST_INT)
3704 fprintf (file, "%s", ASM_OPEN_PAREN);
3705 output_addr_const (file, XEXP (x, 1));
3706 fprintf (file, "%s", ASM_CLOSE_PAREN);
3708 else
3709 output_addr_const (file, XEXP (x, 1));
3710 break;
3712 case ZERO_EXTEND:
3713 case SIGN_EXTEND:
3714 output_addr_const (file, XEXP (x, 0));
3715 break;
3717 default:
3718 #ifdef OUTPUT_ADDR_CONST_EXTRA
3719 OUTPUT_ADDR_CONST_EXTRA (file, x, fail);
3720 break;
3722 fail:
3723 #endif
3724 output_operand_lossage ("invalid expression as operand");
3728 /* A poor man's fprintf, with the added features of %I, %R, %L, and %U.
3729 %R prints the value of REGISTER_PREFIX.
3730 %L prints the value of LOCAL_LABEL_PREFIX.
3731 %U prints the value of USER_LABEL_PREFIX.
3732 %I prints the value of IMMEDIATE_PREFIX.
3733 %O runs ASM_OUTPUT_OPCODE to transform what follows in the string.
3734 Also supported are %d, %x, %s, %e, %f, %g and %%.
3736 We handle alternate assembler dialects here, just like output_asm_insn. */
3738 void
3739 asm_fprintf VPARAMS ((FILE *file, const char *p, ...))
3741 #ifndef ANSI_PROTOTYPES
3742 FILE *file;
3743 const char *p;
3744 #endif
3745 va_list argptr;
3746 char buf[10];
3747 char *q, c;
3749 VA_START (argptr, p);
3751 #ifndef ANSI_PROTOTYPES
3752 file = va_arg (argptr, FILE *);
3753 p = va_arg (argptr, const char *);
3754 #endif
3756 buf[0] = '%';
3758 while ((c = *p++))
3759 switch (c)
3761 #ifdef ASSEMBLER_DIALECT
3762 case '{':
3764 int i;
3766 /* If we want the first dialect, do nothing. Otherwise, skip
3767 DIALECT_NUMBER of strings ending with '|'. */
3768 for (i = 0; i < dialect_number; i++)
3770 while (*p && *p++ != '|')
3773 if (*p == '|')
3774 p++;
3777 break;
3779 case '|':
3780 /* Skip to close brace. */
3781 while (*p && *p++ != '}')
3783 break;
3785 case '}':
3786 break;
3787 #endif
3789 case '%':
3790 c = *p++;
3791 q = &buf[1];
3792 while ((c >= '0' && c <= '9') || c == '.')
3794 *q++ = c;
3795 c = *p++;
3797 switch (c)
3799 case '%':
3800 fprintf (file, "%%");
3801 break;
3803 case 'd': case 'i': case 'u':
3804 case 'x': case 'p': case 'X':
3805 case 'o':
3806 *q++ = c;
3807 *q = 0;
3808 fprintf (file, buf, va_arg (argptr, int));
3809 break;
3811 case 'w':
3812 /* This is a prefix to the 'd', 'i', 'u', 'x', 'p', and 'X' cases,
3813 but we do not check for those cases. It means that the value
3814 is a HOST_WIDE_INT, which may be either `int' or `long'. */
3816 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
3817 #else
3818 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
3819 *q++ = 'l';
3820 #else
3821 *q++ = 'l';
3822 *q++ = 'l';
3823 #endif
3824 #endif
3826 *q++ = *p++;
3827 *q = 0;
3828 fprintf (file, buf, va_arg (argptr, HOST_WIDE_INT));
3829 break;
3831 case 'l':
3832 *q++ = c;
3833 *q++ = *p++;
3834 *q = 0;
3835 fprintf (file, buf, va_arg (argptr, long));
3836 break;
3838 case 'e':
3839 case 'f':
3840 case 'g':
3841 *q++ = c;
3842 *q = 0;
3843 fprintf (file, buf, va_arg (argptr, double));
3844 break;
3846 case 's':
3847 *q++ = c;
3848 *q = 0;
3849 fprintf (file, buf, va_arg (argptr, char *));
3850 break;
3852 case 'O':
3853 #ifdef ASM_OUTPUT_OPCODE
3854 ASM_OUTPUT_OPCODE (asm_out_file, p);
3855 #endif
3856 break;
3858 case 'R':
3859 #ifdef REGISTER_PREFIX
3860 fprintf (file, "%s", REGISTER_PREFIX);
3861 #endif
3862 break;
3864 case 'I':
3865 #ifdef IMMEDIATE_PREFIX
3866 fprintf (file, "%s", IMMEDIATE_PREFIX);
3867 #endif
3868 break;
3870 case 'L':
3871 #ifdef LOCAL_LABEL_PREFIX
3872 fprintf (file, "%s", LOCAL_LABEL_PREFIX);
3873 #endif
3874 break;
3876 case 'U':
3877 fputs (user_label_prefix, file);
3878 break;
3880 #ifdef ASM_FPRINTF_EXTENSIONS
3881 /* Upper case letters are reserved for general use by asm_fprintf
3882 and so are not available to target specific code. In order to
3883 prevent the ASM_FPRINTF_EXTENSIONS macro from using them then,
3884 they are defined here. As they get turned into real extensions
3885 to asm_fprintf they should be removed from this list. */
3886 case 'A': case 'B': case 'C': case 'D': case 'E':
3887 case 'F': case 'G': case 'H': case 'J': case 'K':
3888 case 'M': case 'N': case 'P': case 'Q': case 'S':
3889 case 'T': case 'V': case 'W': case 'Y': case 'Z':
3890 break;
3892 ASM_FPRINTF_EXTENSIONS (file, argptr, p)
3893 #endif
3894 default:
3895 abort ();
3897 break;
3899 default:
3900 fputc (c, file);
3902 va_end (argptr);
3905 /* Split up a CONST_DOUBLE or integer constant rtx
3906 into two rtx's for single words,
3907 storing in *FIRST the word that comes first in memory in the target
3908 and in *SECOND the other. */
3910 void
3911 split_double (value, first, second)
3912 rtx value;
3913 rtx *first, *second;
3915 if (GET_CODE (value) == CONST_INT)
3917 if (HOST_BITS_PER_WIDE_INT >= (2 * BITS_PER_WORD))
3919 /* In this case the CONST_INT holds both target words.
3920 Extract the bits from it into two word-sized pieces.
3921 Sign extend each half to HOST_WIDE_INT. */
3922 unsigned HOST_WIDE_INT low, high;
3923 unsigned HOST_WIDE_INT mask, sign_bit, sign_extend;
3925 /* Set sign_bit to the most significant bit of a word. */
3926 sign_bit = 1;
3927 sign_bit <<= BITS_PER_WORD - 1;
3929 /* Set mask so that all bits of the word are set. We could
3930 have used 1 << BITS_PER_WORD instead of basing the
3931 calculation on sign_bit. However, on machines where
3932 HOST_BITS_PER_WIDE_INT == BITS_PER_WORD, it could cause a
3933 compiler warning, even though the code would never be
3934 executed. */
3935 mask = sign_bit << 1;
3936 mask--;
3938 /* Set sign_extend as any remaining bits. */
3939 sign_extend = ~mask;
3941 /* Pick the lower word and sign-extend it. */
3942 low = INTVAL (value);
3943 low &= mask;
3944 if (low & sign_bit)
3945 low |= sign_extend;
3947 /* Pick the higher word, shifted to the least significant
3948 bits, and sign-extend it. */
3949 high = INTVAL (value);
3950 high >>= BITS_PER_WORD - 1;
3951 high >>= 1;
3952 high &= mask;
3953 if (high & sign_bit)
3954 high |= sign_extend;
3956 /* Store the words in the target machine order. */
3957 if (WORDS_BIG_ENDIAN)
3959 *first = GEN_INT (high);
3960 *second = GEN_INT (low);
3962 else
3964 *first = GEN_INT (low);
3965 *second = GEN_INT (high);
3968 else
3970 /* The rule for using CONST_INT for a wider mode
3971 is that we regard the value as signed.
3972 So sign-extend it. */
3973 rtx high = (INTVAL (value) < 0 ? constm1_rtx : const0_rtx);
3974 if (WORDS_BIG_ENDIAN)
3976 *first = high;
3977 *second = value;
3979 else
3981 *first = value;
3982 *second = high;
3986 else if (GET_CODE (value) != CONST_DOUBLE)
3988 if (WORDS_BIG_ENDIAN)
3990 *first = const0_rtx;
3991 *second = value;
3993 else
3995 *first = value;
3996 *second = const0_rtx;
3999 else if (GET_MODE (value) == VOIDmode
4000 /* This is the old way we did CONST_DOUBLE integers. */
4001 || GET_MODE_CLASS (GET_MODE (value)) == MODE_INT)
4003 /* In an integer, the words are defined as most and least significant.
4004 So order them by the target's convention. */
4005 if (WORDS_BIG_ENDIAN)
4007 *first = GEN_INT (CONST_DOUBLE_HIGH (value));
4008 *second = GEN_INT (CONST_DOUBLE_LOW (value));
4010 else
4012 *first = GEN_INT (CONST_DOUBLE_LOW (value));
4013 *second = GEN_INT (CONST_DOUBLE_HIGH (value));
4016 else
4018 #ifdef REAL_ARITHMETIC
4019 REAL_VALUE_TYPE r;
4020 long l[2];
4021 REAL_VALUE_FROM_CONST_DOUBLE (r, value);
4023 /* Note, this converts the REAL_VALUE_TYPE to the target's
4024 format, splits up the floating point double and outputs
4025 exactly 32 bits of it into each of l[0] and l[1] --
4026 not necessarily BITS_PER_WORD bits. */
4027 REAL_VALUE_TO_TARGET_DOUBLE (r, l);
4029 /* If 32 bits is an entire word for the target, but not for the host,
4030 then sign-extend on the host so that the number will look the same
4031 way on the host that it would on the target. See for instance
4032 simplify_unary_operation. The #if is needed to avoid compiler
4033 warnings. */
4035 #if HOST_BITS_PER_LONG > 32
4036 if (BITS_PER_WORD < HOST_BITS_PER_LONG && BITS_PER_WORD == 32)
4038 if (l[0] & ((long) 1 << 31))
4039 l[0] |= ((long) (-1) << 32);
4040 if (l[1] & ((long) 1 << 31))
4041 l[1] |= ((long) (-1) << 32);
4043 #endif
4045 *first = GEN_INT ((HOST_WIDE_INT) l[0]);
4046 *second = GEN_INT ((HOST_WIDE_INT) l[1]);
4047 #else
4048 if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
4049 || HOST_BITS_PER_WIDE_INT != BITS_PER_WORD)
4050 && ! flag_pretend_float)
4051 abort ();
4053 if (
4054 #ifdef HOST_WORDS_BIG_ENDIAN
4055 WORDS_BIG_ENDIAN
4056 #else
4057 ! WORDS_BIG_ENDIAN
4058 #endif
4061 /* Host and target agree => no need to swap. */
4062 *first = GEN_INT (CONST_DOUBLE_LOW (value));
4063 *second = GEN_INT (CONST_DOUBLE_HIGH (value));
4065 else
4067 *second = GEN_INT (CONST_DOUBLE_LOW (value));
4068 *first = GEN_INT (CONST_DOUBLE_HIGH (value));
4070 #endif /* no REAL_ARITHMETIC */
4074 /* Return nonzero if this function has no function calls. */
4077 leaf_function_p ()
4079 rtx insn;
4080 rtx link;
4082 if (profile_flag || profile_block_flag || profile_arc_flag)
4083 return 0;
4085 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
4087 if (GET_CODE (insn) == CALL_INSN
4088 && ! SIBLING_CALL_P (insn))
4089 return 0;
4090 if (GET_CODE (insn) == INSN
4091 && GET_CODE (PATTERN (insn)) == SEQUENCE
4092 && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == CALL_INSN
4093 && ! SIBLING_CALL_P (XVECEXP (PATTERN (insn), 0, 0)))
4094 return 0;
4096 for (link = current_function_epilogue_delay_list;
4097 link;
4098 link = XEXP (link, 1))
4100 insn = XEXP (link, 0);
4102 if (GET_CODE (insn) == CALL_INSN
4103 && ! SIBLING_CALL_P (insn))
4104 return 0;
4105 if (GET_CODE (insn) == INSN
4106 && GET_CODE (PATTERN (insn)) == SEQUENCE
4107 && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == CALL_INSN
4108 && ! SIBLING_CALL_P (XVECEXP (PATTERN (insn), 0, 0)))
4109 return 0;
4112 return 1;
4115 /* On some machines, a function with no call insns
4116 can run faster if it doesn't create its own register window.
4117 When output, the leaf function should use only the "output"
4118 registers. Ordinarily, the function would be compiled to use
4119 the "input" registers to find its arguments; it is a candidate
4120 for leaf treatment if it uses only the "input" registers.
4121 Leaf function treatment means renumbering so the function
4122 uses the "output" registers instead. */
4124 #ifdef LEAF_REGISTERS
4126 /* Return 1 if this function uses only the registers that can be
4127 safely renumbered. */
4130 only_leaf_regs_used ()
4132 int i;
4133 char *permitted_reg_in_leaf_functions = LEAF_REGISTERS;
4135 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
4136 if ((regs_ever_live[i] || global_regs[i])
4137 && ! permitted_reg_in_leaf_functions[i])
4138 return 0;
4140 if (current_function_uses_pic_offset_table
4141 && pic_offset_table_rtx != 0
4142 && GET_CODE (pic_offset_table_rtx) == REG
4143 && ! permitted_reg_in_leaf_functions[REGNO (pic_offset_table_rtx)])
4144 return 0;
4146 return 1;
4149 /* Scan all instructions and renumber all registers into those
4150 available in leaf functions. */
4152 static void
4153 leaf_renumber_regs (first)
4154 rtx first;
4156 rtx insn;
4158 /* Renumber only the actual patterns.
4159 The reg-notes can contain frame pointer refs,
4160 and renumbering them could crash, and should not be needed. */
4161 for (insn = first; insn; insn = NEXT_INSN (insn))
4162 if (INSN_P (insn))
4163 leaf_renumber_regs_insn (PATTERN (insn));
4164 for (insn = current_function_epilogue_delay_list;
4165 insn;
4166 insn = XEXP (insn, 1))
4167 if (INSN_P (XEXP (insn, 0)))
4168 leaf_renumber_regs_insn (PATTERN (XEXP (insn, 0)));
4171 /* Scan IN_RTX and its subexpressions, and renumber all regs into those
4172 available in leaf functions. */
4174 void
4175 leaf_renumber_regs_insn (in_rtx)
4176 register rtx in_rtx;
4178 register int i, j;
4179 register const char *format_ptr;
4181 if (in_rtx == 0)
4182 return;
4184 /* Renumber all input-registers into output-registers.
4185 renumbered_regs would be 1 for an output-register;
4186 they */
4188 if (GET_CODE (in_rtx) == REG)
4190 int newreg;
4192 /* Don't renumber the same reg twice. */
4193 if (in_rtx->used)
4194 return;
4196 newreg = REGNO (in_rtx);
4197 /* Don't try to renumber pseudo regs. It is possible for a pseudo reg
4198 to reach here as part of a REG_NOTE. */
4199 if (newreg >= FIRST_PSEUDO_REGISTER)
4201 in_rtx->used = 1;
4202 return;
4204 newreg = LEAF_REG_REMAP (newreg);
4205 if (newreg < 0)
4206 abort ();
4207 regs_ever_live[REGNO (in_rtx)] = 0;
4208 regs_ever_live[newreg] = 1;
4209 REGNO (in_rtx) = newreg;
4210 in_rtx->used = 1;
4213 if (INSN_P (in_rtx))
4215 /* Inside a SEQUENCE, we find insns.
4216 Renumber just the patterns of these insns,
4217 just as we do for the top-level insns. */
4218 leaf_renumber_regs_insn (PATTERN (in_rtx));
4219 return;
4222 format_ptr = GET_RTX_FORMAT (GET_CODE (in_rtx));
4224 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (in_rtx)); i++)
4225 switch (*format_ptr++)
4227 case 'e':
4228 leaf_renumber_regs_insn (XEXP (in_rtx, i));
4229 break;
4231 case 'E':
4232 if (NULL != XVEC (in_rtx, i))
4234 for (j = 0; j < XVECLEN (in_rtx, i); j++)
4235 leaf_renumber_regs_insn (XVECEXP (in_rtx, i, j));
4237 break;
4239 case 'S':
4240 case 's':
4241 case '0':
4242 case 'i':
4243 case 'w':
4244 case 'n':
4245 case 'u':
4246 break;
4248 default:
4249 abort ();
4252 #endif