* config/alpha/alpha.md (unaligned_extendhidi_be): Fix.
[official-gcc.git] / gcc / final.c
blobec29a45952d77b3dd462d7deb7e68b9a3847f94d
1 /* Convert RTL to assembler code and output it, for GNU compiler.
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 /* This is the final pass of the compiler.
23 It looks at the rtl code for a function and outputs assembler code.
25 Call `final_start_function' to output the assembler code for function entry,
26 `final' to output assembler code for some RTL code,
27 `final_end_function' to output assembler code for function exit.
28 If a function is compiled in several pieces, each piece is
29 output separately with `final'.
31 Some optimizations are also done at this level.
32 Move instructions that were made unnecessary by good register allocation
33 are detected and omitted from the output. (Though most of these
34 are removed by the last jump pass.)
36 Instructions to set the condition codes are omitted when it can be
37 seen that the condition codes already had the desired values.
39 In some cases it is sufficient if the inherited condition codes
40 have related values, but this may require the following insn
41 (the one that tests the condition codes) to be modified.
43 The code for the function prologue and epilogue are generated
44 directly in assembler by the target functions function_prologue and
45 function_epilogue. Those instructions never exist as rtl. */
47 #include "config.h"
48 #include "system.h"
50 #include "tree.h"
51 #include "rtl.h"
52 #include "tm_p.h"
53 #include "regs.h"
54 #include "insn-config.h"
55 #include "insn-attr.h"
56 #include "recog.h"
57 #include "conditions.h"
58 #include "flags.h"
59 #include "real.h"
60 #include "hard-reg-set.h"
61 #include "output.h"
62 #include "except.h"
63 #include "function.h"
64 #include "toplev.h"
65 #include "reload.h"
66 #include "intl.h"
67 #include "basic-block.h"
68 #include "target.h"
69 #include "debug.h"
71 #ifdef XCOFF_DEBUGGING_INFO
72 #include "xcoffout.h" /* Needed for external data
73 declarations for e.g. AIX 4.x. */
74 #endif
76 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
77 #include "dwarf2out.h"
78 #endif
80 /* If we aren't using cc0, CC_STATUS_INIT shouldn't exist. So define a
81 null default for it to save conditionalization later. */
82 #ifndef CC_STATUS_INIT
83 #define CC_STATUS_INIT
84 #endif
86 /* How to start an assembler comment. */
87 #ifndef ASM_COMMENT_START
88 #define ASM_COMMENT_START ";#"
89 #endif
91 /* Is the given character a logical line separator for the assembler? */
92 #ifndef IS_ASM_LOGICAL_LINE_SEPARATOR
93 #define IS_ASM_LOGICAL_LINE_SEPARATOR(C) ((C) == ';')
94 #endif
96 #ifndef JUMP_TABLES_IN_TEXT_SECTION
97 #define JUMP_TABLES_IN_TEXT_SECTION 0
98 #endif
100 /* Last insn processed by final_scan_insn. */
101 static rtx debug_insn;
102 rtx current_output_insn;
104 /* Line number of last NOTE. */
105 static int last_linenum;
107 /* Highest line number in current block. */
108 static int high_block_linenum;
110 /* Likewise for function. */
111 static int high_function_linenum;
113 /* Filename of last NOTE. */
114 static const char *last_filename;
116 /* Number of basic blocks seen so far;
117 used if profile_block_flag is set. */
118 static int count_basic_blocks;
120 /* Number of instrumented arcs when profile_arc_flag is set. */
121 extern int count_instrumented_edges;
123 extern int length_unit_log; /* This is defined in insn-attrtab.c. */
125 /* Nonzero while outputting an `asm' with operands.
126 This means that inconsistencies are the user's fault, so don't abort.
127 The precise value is the insn being output, to pass to error_for_asm. */
128 static rtx this_is_asm_operands;
130 /* Number of operands of this insn, for an `asm' with operands. */
131 static unsigned int insn_noperands;
133 /* Compare optimization flag. */
135 static rtx last_ignored_compare = 0;
137 /* Flag indicating this insn is the start of a new basic block. */
139 static int new_block = 1;
141 /* Assign a unique number to each insn that is output.
142 This can be used to generate unique local labels. */
144 static int insn_counter = 0;
146 #ifdef HAVE_cc0
147 /* This variable contains machine-dependent flags (defined in tm.h)
148 set and examined by output routines
149 that describe how to interpret the condition codes properly. */
151 CC_STATUS cc_status;
153 /* During output of an insn, this contains a copy of cc_status
154 from before the insn. */
156 CC_STATUS cc_prev_status;
157 #endif
159 /* Indexed by hardware reg number, is 1 if that register is ever
160 used in the current function.
162 In life_analysis, or in stupid_life_analysis, this is set
163 up to record the hard regs used explicitly. Reload adds
164 in the hard regs used for holding pseudo regs. Final uses
165 it to generate the code in the function prologue and epilogue
166 to save and restore registers as needed. */
168 char regs_ever_live[FIRST_PSEUDO_REGISTER];
170 /* Nonzero means current function must be given a frame pointer.
171 Set in stmt.c if anything is allocated on the stack there.
172 Set in reload1.c if anything is allocated on the stack there. */
174 int frame_pointer_needed;
176 /* Assign unique numbers to labels generated for profiling. */
178 int profile_label_no;
180 /* Number of unmatched NOTE_INSN_BLOCK_BEG notes we have seen. */
182 static int block_depth;
184 /* Nonzero if have enabled APP processing of our assembler output. */
186 static int app_on;
188 /* If we are outputting an insn sequence, this contains the sequence rtx.
189 Zero otherwise. */
191 rtx final_sequence;
193 #ifdef ASSEMBLER_DIALECT
195 /* Number of the assembler dialect to use, starting at 0. */
196 static int dialect_number;
197 #endif
199 /* Indexed by line number, nonzero if there is a note for that line. */
201 static char *line_note_exists;
203 #ifdef HAVE_conditional_execution
204 /* Nonnull if the insn currently being emitted was a COND_EXEC pattern. */
205 rtx current_insn_predicate;
206 #endif
208 /* Linked list to hold line numbers for each basic block. */
210 struct bb_list
212 struct bb_list *next; /* pointer to next basic block */
213 int line_num; /* line number */
214 int file_label_num; /* LPBC<n> label # for stored filename */
215 int func_label_num; /* LPBC<n> label # for stored function name */
218 static struct bb_list *bb_head = 0; /* Head of basic block list */
219 static struct bb_list **bb_tail = &bb_head; /* Ptr to store next bb ptr */
220 static int bb_file_label_num = -1; /* Current label # for file */
221 static int bb_func_label_num = -1; /* Current label # for func */
223 /* Linked list to hold the strings for each file and function name output. */
225 struct bb_str
227 struct bb_str *next; /* pointer to next string */
228 const char *string; /* string */
229 int label_num; /* label number */
230 int length; /* string length */
233 static struct bb_str *sbb_head = 0; /* Head of string list. */
234 static struct bb_str **sbb_tail = &sbb_head; /* Ptr to store next bb str */
235 static int sbb_label_num = 0; /* Last label used */
237 #ifdef HAVE_ATTR_length
238 static int asm_insn_count PARAMS ((rtx));
239 #endif
240 static void profile_function PARAMS ((FILE *));
241 static void profile_after_prologue PARAMS ((FILE *));
242 static void add_bb PARAMS ((FILE *));
243 static int add_bb_string PARAMS ((const char *, int));
244 static void notice_source_line PARAMS ((rtx));
245 static rtx walk_alter_subreg PARAMS ((rtx));
246 static void output_asm_name PARAMS ((void));
247 static void output_operand PARAMS ((rtx, int));
248 #ifdef LEAF_REGISTERS
249 static void leaf_renumber_regs PARAMS ((rtx));
250 #endif
251 #ifdef HAVE_cc0
252 static int alter_cond PARAMS ((rtx));
253 #endif
254 #ifndef ADDR_VEC_ALIGN
255 static int final_addr_vec_align PARAMS ((rtx));
256 #endif
257 #ifdef HAVE_ATTR_length
258 static int align_fuzz PARAMS ((rtx, rtx, int, unsigned));
259 #endif
261 /* Initialize data in final at the beginning of a compilation. */
263 void
264 init_final (filename)
265 const char *filename ATTRIBUTE_UNUSED;
267 app_on = 0;
268 final_sequence = 0;
270 #ifdef ASSEMBLER_DIALECT
271 dialect_number = ASSEMBLER_DIALECT;
272 #endif
275 /* Called at end of source file,
276 to output the block-profiling table for this entire compilation. */
278 void
279 end_final (filename)
280 const char *filename;
282 int i;
284 if (profile_block_flag || profile_arc_flag)
286 char name[20];
287 int align = exact_log2 (BIGGEST_ALIGNMENT / BITS_PER_UNIT);
288 int size, rounded;
289 struct bb_list *ptr;
290 struct bb_str *sptr;
291 int long_bytes = LONG_TYPE_SIZE / BITS_PER_UNIT;
292 int gcov_type_bytes = GCOV_TYPE_SIZE / BITS_PER_UNIT;
293 int pointer_bytes = POINTER_SIZE / BITS_PER_UNIT;
294 unsigned int align2 = LONG_TYPE_SIZE;
296 if (profile_block_flag)
297 size = long_bytes * count_basic_blocks;
298 else
299 size = gcov_type_bytes * count_instrumented_edges;
300 rounded = size;
302 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
303 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
304 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
306 /* ??? This _really_ ought to be done with a structure layout
307 and with assemble_constructor. If long_bytes != pointer_bytes
308 we'll be emitting unaligned data at some point. */
309 if (long_bytes != pointer_bytes)
310 abort ();
312 data_section ();
314 /* Output the main header, of 11 words:
315 0: 1 if this file is initialized, else 0.
316 1: address of file name (LPBX1).
317 2: address of table of counts (LPBX2).
318 3: number of counts in the table.
319 4: always 0, for compatibility with Sun.
321 The following are GNU extensions:
323 5: address of table of start addrs of basic blocks (LPBX3).
324 6: Number of bytes in this header.
325 7: address of table of function names (LPBX4).
326 8: address of table of line numbers (LPBX5) or 0.
327 9: address of table of file names (LPBX6) or 0.
328 10: space reserved for basic block profiling. */
330 ASM_OUTPUT_ALIGN (asm_out_file, align);
332 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 0);
334 /* Zero word. */
335 assemble_integer (const0_rtx, long_bytes, align2, 1);
337 /* Address of filename. */
338 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 1);
339 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes,
340 align2, 1);
342 /* Address of count table. */
343 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 2);
344 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes,
345 align2, 1);
347 /* Count of the # of basic blocks or # of instrumented arcs. */
348 assemble_integer (GEN_INT (profile_block_flag
349 ? count_basic_blocks
350 : count_instrumented_edges),
351 long_bytes, align2, 1);
353 /* Zero word (link field). */
354 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
356 /* address of basic block start address table */
357 if (profile_block_flag)
359 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
360 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
361 pointer_bytes, align2, 1);
363 else
364 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
366 /* Byte count for extended structure. */
367 assemble_integer (GEN_INT (11 * UNITS_PER_WORD), long_bytes, align2, 1);
369 /* Address of function name table. */
370 if (profile_block_flag)
372 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 4);
373 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
374 pointer_bytes, align2, 1);
376 else
377 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
379 /* Address of line number and filename tables if debugging. */
380 if (write_symbols != NO_DEBUG && profile_block_flag)
382 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 5);
383 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
384 pointer_bytes, align2, 1);
385 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 6);
386 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
387 pointer_bytes, align2, 1);
389 else
391 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
392 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
395 /* Space for extension ptr (link field). */
396 assemble_integer (const0_rtx, UNITS_PER_WORD, align2, 1);
398 /* Output the file name changing the suffix to .d for
399 Sun tcov compatibility. */
400 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 1);
402 char *cwd = getpwd ();
403 int len = strlen (filename) + strlen (cwd) + 1;
404 char *data_file = (char *) alloca (len + 4);
406 strcpy (data_file, cwd);
407 strcat (data_file, "/");
408 strcat (data_file, filename);
409 strip_off_ending (data_file, len);
410 if (profile_block_flag)
411 strcat (data_file, ".d");
412 else
413 strcat (data_file, ".da");
414 assemble_string (data_file, strlen (data_file) + 1);
417 /* Make space for the table of counts. */
418 if (size == 0)
420 /* Realign data section. */
421 ASM_OUTPUT_ALIGN (asm_out_file, align);
422 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 2);
423 if (size != 0)
424 assemble_zeros (size);
426 else
428 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 2);
429 #ifdef ASM_OUTPUT_SHARED_LOCAL
430 if (flag_shared_data)
431 ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
432 else
433 #endif
434 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
435 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name,
436 size, BIGGEST_ALIGNMENT);
437 #else
438 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
439 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size,
440 BIGGEST_ALIGNMENT);
441 #else
442 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
443 #endif
444 #endif
447 /* Output any basic block strings */
448 if (profile_block_flag)
450 readonly_data_section ();
451 if (sbb_head)
453 ASM_OUTPUT_ALIGN (asm_out_file, align);
454 for (sptr = sbb_head; sptr != 0; sptr = sptr->next)
456 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBC",
457 sptr->label_num);
458 assemble_string (sptr->string, sptr->length);
463 /* Output the table of addresses. */
464 if (profile_block_flag)
466 /* Realign in new section */
467 ASM_OUTPUT_ALIGN (asm_out_file, align);
468 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 3);
469 for (i = 0; i < count_basic_blocks; i++)
471 ASM_GENERATE_INTERNAL_LABEL (name, "LPB", i);
472 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
473 pointer_bytes, align2, 1);
477 /* Output the table of function names. */
478 if (profile_block_flag)
480 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 4);
481 for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
483 if (ptr->func_label_num >= 0)
485 ASM_GENERATE_INTERNAL_LABEL (name, "LPBC",
486 ptr->func_label_num);
487 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
488 pointer_bytes, align2, 1);
490 else
491 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
494 for (; i < count_basic_blocks; i++)
495 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
498 if (write_symbols != NO_DEBUG && profile_block_flag)
500 /* Output the table of line numbers. */
501 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 5);
502 for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
503 assemble_integer (GEN_INT (ptr->line_num), long_bytes, align2, 1);
505 for (; i < count_basic_blocks; i++)
506 assemble_integer (const0_rtx, long_bytes, align2, 1);
508 /* Output the table of file names. */
509 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 6);
510 for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
512 if (ptr->file_label_num >= 0)
514 ASM_GENERATE_INTERNAL_LABEL (name, "LPBC",
515 ptr->file_label_num);
516 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
517 pointer_bytes, align2, 1);
519 else
520 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
523 for (; i < count_basic_blocks; i++)
524 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
527 /* End with the address of the table of addresses,
528 so we can find it easily, as the last word in the file's text. */
529 if (profile_block_flag)
531 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
532 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
533 pointer_bytes, align2, 1);
538 /* Default target function prologue and epilogue assembler output.
540 If not overridden for epilogue code, then the function body itself
541 contains return instructions wherever needed. */
542 void
543 default_function_pro_epilogue (file, size)
544 FILE *file ATTRIBUTE_UNUSED;
545 HOST_WIDE_INT size ATTRIBUTE_UNUSED;
549 /* Default target hook that outputs nothing to a stream. */
550 void
551 no_asm_to_stream (file)
552 FILE *file ATTRIBUTE_UNUSED;
556 /* Enable APP processing of subsequent output.
557 Used before the output from an `asm' statement. */
559 void
560 app_enable ()
562 if (! app_on)
564 fputs (ASM_APP_ON, asm_out_file);
565 app_on = 1;
569 /* Disable APP processing of subsequent output.
570 Called from varasm.c before most kinds of output. */
572 void
573 app_disable ()
575 if (app_on)
577 fputs (ASM_APP_OFF, asm_out_file);
578 app_on = 0;
582 /* Return the number of slots filled in the current
583 delayed branch sequence (we don't count the insn needing the
584 delay slot). Zero if not in a delayed branch sequence. */
586 #ifdef DELAY_SLOTS
588 dbr_sequence_length ()
590 if (final_sequence != 0)
591 return XVECLEN (final_sequence, 0) - 1;
592 else
593 return 0;
595 #endif
597 /* The next two pages contain routines used to compute the length of an insn
598 and to shorten branches. */
600 /* Arrays for insn lengths, and addresses. The latter is referenced by
601 `insn_current_length'. */
603 static short *insn_lengths;
605 #ifdef HAVE_ATTR_length
606 varray_type insn_addresses_;
607 #endif
609 /* Max uid for which the above arrays are valid. */
610 static int insn_lengths_max_uid;
612 /* Address of insn being processed. Used by `insn_current_length'. */
613 int insn_current_address;
615 /* Address of insn being processed in previous iteration. */
616 int insn_last_address;
618 /* konwn invariant alignment of insn being processed. */
619 int insn_current_align;
621 /* After shorten_branches, for any insn, uid_align[INSN_UID (insn)]
622 gives the next following alignment insn that increases the known
623 alignment, or NULL_RTX if there is no such insn.
624 For any alignment obtained this way, we can again index uid_align with
625 its uid to obtain the next following align that in turn increases the
626 alignment, till we reach NULL_RTX; the sequence obtained this way
627 for each insn we'll call the alignment chain of this insn in the following
628 comments. */
630 struct label_alignment
632 short alignment;
633 short max_skip;
636 static rtx *uid_align;
637 static int *uid_shuid;
638 static struct label_alignment *label_align;
640 /* Indicate that branch shortening hasn't yet been done. */
642 void
643 init_insn_lengths ()
645 if (uid_shuid)
647 free (uid_shuid);
648 uid_shuid = 0;
650 if (insn_lengths)
652 free (insn_lengths);
653 insn_lengths = 0;
654 insn_lengths_max_uid = 0;
656 #ifdef HAVE_ATTR_length
657 INSN_ADDRESSES_FREE ();
658 #endif
659 if (uid_align)
661 free (uid_align);
662 uid_align = 0;
666 /* Obtain the current length of an insn. If branch shortening has been done,
667 get its actual length. Otherwise, get its maximum length. */
670 get_attr_length (insn)
671 rtx insn ATTRIBUTE_UNUSED;
673 #ifdef HAVE_ATTR_length
674 rtx body;
675 int i;
676 int length = 0;
678 if (insn_lengths_max_uid > INSN_UID (insn))
679 return insn_lengths[INSN_UID (insn)];
680 else
681 switch (GET_CODE (insn))
683 case NOTE:
684 case BARRIER:
685 case CODE_LABEL:
686 return 0;
688 case CALL_INSN:
689 length = insn_default_length (insn);
690 break;
692 case JUMP_INSN:
693 body = PATTERN (insn);
694 if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
696 /* Alignment is machine-dependent and should be handled by
697 ADDR_VEC_ALIGN. */
699 else
700 length = insn_default_length (insn);
701 break;
703 case INSN:
704 body = PATTERN (insn);
705 if (GET_CODE (body) == USE || GET_CODE (body) == CLOBBER)
706 return 0;
708 else if (GET_CODE (body) == ASM_INPUT || asm_noperands (body) >= 0)
709 length = asm_insn_count (body) * insn_default_length (insn);
710 else if (GET_CODE (body) == SEQUENCE)
711 for (i = 0; i < XVECLEN (body, 0); i++)
712 length += get_attr_length (XVECEXP (body, 0, i));
713 else
714 length = insn_default_length (insn);
715 break;
717 default:
718 break;
721 #ifdef ADJUST_INSN_LENGTH
722 ADJUST_INSN_LENGTH (insn, length);
723 #endif
724 return length;
725 #else /* not HAVE_ATTR_length */
726 return 0;
727 #endif /* not HAVE_ATTR_length */
730 /* Code to handle alignment inside shorten_branches. */
732 /* Here is an explanation how the algorithm in align_fuzz can give
733 proper results:
735 Call a sequence of instructions beginning with alignment point X
736 and continuing until the next alignment point `block X'. When `X'
737 is used in an expression, it means the alignment value of the
738 alignment point.
740 Call the distance between the start of the first insn of block X, and
741 the end of the last insn of block X `IX', for the `inner size of X'.
742 This is clearly the sum of the instruction lengths.
744 Likewise with the next alignment-delimited block following X, which we
745 shall call block Y.
747 Call the distance between the start of the first insn of block X, and
748 the start of the first insn of block Y `OX', for the `outer size of X'.
750 The estimated padding is then OX - IX.
752 OX can be safely estimated as
754 if (X >= Y)
755 OX = round_up(IX, Y)
756 else
757 OX = round_up(IX, X) + Y - X
759 Clearly est(IX) >= real(IX), because that only depends on the
760 instruction lengths, and those being overestimated is a given.
762 Clearly round_up(foo, Z) >= round_up(bar, Z) if foo >= bar, so
763 we needn't worry about that when thinking about OX.
765 When X >= Y, the alignment provided by Y adds no uncertainty factor
766 for branch ranges starting before X, so we can just round what we have.
767 But when X < Y, we don't know anything about the, so to speak,
768 `middle bits', so we have to assume the worst when aligning up from an
769 address mod X to one mod Y, which is Y - X. */
771 #ifndef LABEL_ALIGN
772 #define LABEL_ALIGN(LABEL) align_labels_log
773 #endif
775 #ifndef LABEL_ALIGN_MAX_SKIP
776 #define LABEL_ALIGN_MAX_SKIP (align_labels-1)
777 #endif
779 #ifndef LOOP_ALIGN
780 #define LOOP_ALIGN(LABEL) align_loops_log
781 #endif
783 #ifndef LOOP_ALIGN_MAX_SKIP
784 #define LOOP_ALIGN_MAX_SKIP (align_loops-1)
785 #endif
787 #ifndef LABEL_ALIGN_AFTER_BARRIER
788 #define LABEL_ALIGN_AFTER_BARRIER(LABEL) 0
789 #endif
791 #ifndef LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP
792 #define LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP 0
793 #endif
795 #ifndef JUMP_ALIGN
796 #define JUMP_ALIGN(LABEL) align_jumps_log
797 #endif
799 #ifndef JUMP_ALIGN_MAX_SKIP
800 #define JUMP_ALIGN_MAX_SKIP (align_jumps-1)
801 #endif
803 #ifndef ADDR_VEC_ALIGN
804 static int
805 final_addr_vec_align (addr_vec)
806 rtx addr_vec;
808 int align = GET_MODE_SIZE (GET_MODE (PATTERN (addr_vec)));
810 if (align > BIGGEST_ALIGNMENT / BITS_PER_UNIT)
811 align = BIGGEST_ALIGNMENT / BITS_PER_UNIT;
812 return exact_log2 (align);
816 #define ADDR_VEC_ALIGN(ADDR_VEC) final_addr_vec_align (ADDR_VEC)
817 #endif
819 #ifndef INSN_LENGTH_ALIGNMENT
820 #define INSN_LENGTH_ALIGNMENT(INSN) length_unit_log
821 #endif
823 #define INSN_SHUID(INSN) (uid_shuid[INSN_UID (INSN)])
825 static int min_labelno, max_labelno;
827 #define LABEL_TO_ALIGNMENT(LABEL) \
828 (label_align[CODE_LABEL_NUMBER (LABEL) - min_labelno].alignment)
830 #define LABEL_TO_MAX_SKIP(LABEL) \
831 (label_align[CODE_LABEL_NUMBER (LABEL) - min_labelno].max_skip)
833 /* For the benefit of port specific code do this also as a function. */
836 label_to_alignment (label)
837 rtx label;
839 return LABEL_TO_ALIGNMENT (label);
842 #ifdef HAVE_ATTR_length
843 /* The differences in addresses
844 between a branch and its target might grow or shrink depending on
845 the alignment the start insn of the range (the branch for a forward
846 branch or the label for a backward branch) starts out on; if these
847 differences are used naively, they can even oscillate infinitely.
848 We therefore want to compute a 'worst case' address difference that
849 is independent of the alignment the start insn of the range end
850 up on, and that is at least as large as the actual difference.
851 The function align_fuzz calculates the amount we have to add to the
852 naively computed difference, by traversing the part of the alignment
853 chain of the start insn of the range that is in front of the end insn
854 of the range, and considering for each alignment the maximum amount
855 that it might contribute to a size increase.
857 For casesi tables, we also want to know worst case minimum amounts of
858 address difference, in case a machine description wants to introduce
859 some common offset that is added to all offsets in a table.
860 For this purpose, align_fuzz with a growth argument of 0 comuptes the
861 appropriate adjustment. */
863 /* Compute the maximum delta by which the difference of the addresses of
864 START and END might grow / shrink due to a different address for start
865 which changes the size of alignment insns between START and END.
866 KNOWN_ALIGN_LOG is the alignment known for START.
867 GROWTH should be ~0 if the objective is to compute potential code size
868 increase, and 0 if the objective is to compute potential shrink.
869 The return value is undefined for any other value of GROWTH. */
871 static int
872 align_fuzz (start, end, known_align_log, growth)
873 rtx start, end;
874 int known_align_log;
875 unsigned growth;
877 int uid = INSN_UID (start);
878 rtx align_label;
879 int known_align = 1 << known_align_log;
880 int end_shuid = INSN_SHUID (end);
881 int fuzz = 0;
883 for (align_label = uid_align[uid]; align_label; align_label = uid_align[uid])
885 int align_addr, new_align;
887 uid = INSN_UID (align_label);
888 align_addr = INSN_ADDRESSES (uid) - insn_lengths[uid];
889 if (uid_shuid[uid] > end_shuid)
890 break;
891 known_align_log = LABEL_TO_ALIGNMENT (align_label);
892 new_align = 1 << known_align_log;
893 if (new_align < known_align)
894 continue;
895 fuzz += (-align_addr ^ growth) & (new_align - known_align);
896 known_align = new_align;
898 return fuzz;
901 /* Compute a worst-case reference address of a branch so that it
902 can be safely used in the presence of aligned labels. Since the
903 size of the branch itself is unknown, the size of the branch is
904 not included in the range. I.e. for a forward branch, the reference
905 address is the end address of the branch as known from the previous
906 branch shortening pass, minus a value to account for possible size
907 increase due to alignment. For a backward branch, it is the start
908 address of the branch as known from the current pass, plus a value
909 to account for possible size increase due to alignment.
910 NB.: Therefore, the maximum offset allowed for backward branches needs
911 to exclude the branch size. */
914 insn_current_reference_address (branch)
915 rtx branch;
917 rtx dest, seq;
918 int seq_uid;
920 if (! INSN_ADDRESSES_SET_P ())
921 return 0;
923 seq = NEXT_INSN (PREV_INSN (branch));
924 seq_uid = INSN_UID (seq);
925 if (GET_CODE (branch) != JUMP_INSN)
926 /* This can happen for example on the PA; the objective is to know the
927 offset to address something in front of the start of the function.
928 Thus, we can treat it like a backward branch.
929 We assume here that FUNCTION_BOUNDARY / BITS_PER_UNIT is larger than
930 any alignment we'd encounter, so we skip the call to align_fuzz. */
931 return insn_current_address;
932 dest = JUMP_LABEL (branch);
934 /* BRANCH has no proper alignment chain set, so use SEQ.
935 BRANCH also has no INSN_SHUID. */
936 if (INSN_SHUID (seq) < INSN_SHUID (dest))
938 /* Forward branch. */
939 return (insn_last_address + insn_lengths[seq_uid]
940 - align_fuzz (seq, dest, length_unit_log, ~0));
942 else
944 /* Backward branch. */
945 return (insn_current_address
946 + align_fuzz (dest, seq, length_unit_log, ~0));
949 #endif /* HAVE_ATTR_length */
951 void
952 compute_alignments ()
954 int i;
955 int log, max_skip, max_log;
957 if (label_align)
959 free (label_align);
960 label_align = 0;
963 max_labelno = max_label_num ();
964 min_labelno = get_first_label_num ();
965 label_align = (struct label_alignment *)
966 xcalloc (max_labelno - min_labelno + 1, sizeof (struct label_alignment));
968 /* If not optimizing or optimizing for size, don't assign any alignments. */
969 if (! optimize || optimize_size)
970 return;
972 for (i = 0; i < n_basic_blocks; i++)
974 basic_block bb = BASIC_BLOCK (i);
975 rtx label = bb->head;
976 int fallthru_frequency = 0, branch_frequency = 0, has_fallthru = 0;
977 edge e;
979 if (GET_CODE (label) != CODE_LABEL)
980 continue;
981 max_log = LABEL_ALIGN (label);
982 max_skip = LABEL_ALIGN_MAX_SKIP;
984 for (e = bb->pred; e; e = e->pred_next)
986 if (e->flags & EDGE_FALLTHRU)
987 has_fallthru = 1, fallthru_frequency += EDGE_FREQUENCY (e);
988 else
989 branch_frequency += EDGE_FREQUENCY (e);
992 /* There are two purposes to align block with no fallthru incomming edge:
993 1) to avoid fetch stalls when branch destination is near cache boundary
994 2) to improve cache effciency in case the previous block is not executed
995 (so it does not need to be in the cache).
997 We to catch first case, we align frequently executed blocks.
998 To catch the second, we align blocks that are executed more frequently
999 than the predecesor and the predecesor is likely to not be executed
1000 when function is called. */
1002 if (!has_fallthru
1003 && (branch_frequency > BB_FREQ_MAX / 10
1004 || (bb->frequency > BASIC_BLOCK (i - 1)->frequency * 10
1005 && (BASIC_BLOCK (i - 1)->frequency
1006 <= ENTRY_BLOCK_PTR->frequency / 2))))
1008 log = JUMP_ALIGN (label);
1009 if (max_log < log)
1011 max_log = log;
1012 max_skip = JUMP_ALIGN_MAX_SKIP;
1015 /* In case block is frequent and reached mostly by non-fallthru edge,
1016 align it. It is most likely an first block of loop. */
1017 if (has_fallthru
1018 && branch_frequency + fallthru_frequency > BB_FREQ_MAX / 10
1019 && branch_frequency > fallthru_frequency * 5)
1021 log = LOOP_ALIGN (label);
1022 if (max_log < log)
1024 max_log = log;
1025 max_skip = LOOP_ALIGN_MAX_SKIP;
1028 LABEL_TO_ALIGNMENT (label) = max_log;
1029 LABEL_TO_MAX_SKIP (label) = max_skip;
1033 /* Make a pass over all insns and compute their actual lengths by shortening
1034 any branches of variable length if possible. */
1036 /* Give a default value for the lowest address in a function. */
1038 #ifndef FIRST_INSN_ADDRESS
1039 #define FIRST_INSN_ADDRESS 0
1040 #endif
1042 /* shorten_branches might be called multiple times: for example, the SH
1043 port splits out-of-range conditional branches in MACHINE_DEPENDENT_REORG.
1044 In order to do this, it needs proper length information, which it obtains
1045 by calling shorten_branches. This cannot be collapsed with
1046 shorten_branches itself into a single pass unless we also want to intergate
1047 reorg.c, since the branch splitting exposes new instructions with delay
1048 slots. */
1050 void
1051 shorten_branches (first)
1052 rtx first ATTRIBUTE_UNUSED;
1054 rtx insn;
1055 int max_uid;
1056 int i;
1057 int max_log;
1058 int max_skip;
1059 #ifdef HAVE_ATTR_length
1060 #define MAX_CODE_ALIGN 16
1061 rtx seq;
1062 int something_changed = 1;
1063 char *varying_length;
1064 rtx body;
1065 int uid;
1066 rtx align_tab[MAX_CODE_ALIGN];
1068 #endif
1070 /* Compute maximum UID and allocate label_align / uid_shuid. */
1071 max_uid = get_max_uid ();
1073 uid_shuid = (int *) xmalloc (max_uid * sizeof *uid_shuid);
1075 if (max_labelno != max_label_num ())
1077 int old = max_labelno;
1078 int n_labels;
1079 int n_old_labels;
1081 max_labelno = max_label_num ();
1083 n_labels = max_labelno - min_labelno + 1;
1084 n_old_labels = old - min_labelno + 1;
1086 label_align = (struct label_alignment *) xrealloc
1087 (label_align, n_labels * sizeof (struct label_alignment));
1089 /* Range of labels grows monotonically in the function. Abort here
1090 means that the initialization of array got lost. */
1091 if (n_old_labels > n_labels)
1092 abort ();
1094 memset (label_align + n_old_labels, 0,
1095 (n_labels - n_old_labels) * sizeof (struct label_alignment));
1098 /* Initialize label_align and set up uid_shuid to be strictly
1099 monotonically rising with insn order. */
1100 /* We use max_log here to keep track of the maximum alignment we want to
1101 impose on the next CODE_LABEL (or the current one if we are processing
1102 the CODE_LABEL itself). */
1104 max_log = 0;
1105 max_skip = 0;
1107 for (insn = get_insns (), i = 1; insn; insn = NEXT_INSN (insn))
1109 int log;
1111 INSN_SHUID (insn) = i++;
1112 if (INSN_P (insn))
1114 /* reorg might make the first insn of a loop being run once only,
1115 and delete the label in front of it. Then we want to apply
1116 the loop alignment to the new label created by reorg, which
1117 is separated by the former loop start insn from the
1118 NOTE_INSN_LOOP_BEG. */
1120 else if (GET_CODE (insn) == CODE_LABEL)
1122 rtx next;
1124 /* Merge in alignments computed by compute_alignments. */
1125 log = LABEL_TO_ALIGNMENT (insn);
1126 if (max_log < log)
1128 max_log = log;
1129 max_skip = LABEL_TO_MAX_SKIP (insn);
1132 log = LABEL_ALIGN (insn);
1133 if (max_log < log)
1135 max_log = log;
1136 max_skip = LABEL_ALIGN_MAX_SKIP;
1138 next = NEXT_INSN (insn);
1139 /* ADDR_VECs only take room if read-only data goes into the text
1140 section. */
1141 if (JUMP_TABLES_IN_TEXT_SECTION
1142 #if !defined(READONLY_DATA_SECTION)
1143 || 1
1144 #endif
1146 if (next && GET_CODE (next) == JUMP_INSN)
1148 rtx nextbody = PATTERN (next);
1149 if (GET_CODE (nextbody) == ADDR_VEC
1150 || GET_CODE (nextbody) == ADDR_DIFF_VEC)
1152 log = ADDR_VEC_ALIGN (next);
1153 if (max_log < log)
1155 max_log = log;
1156 max_skip = LABEL_ALIGN_MAX_SKIP;
1160 LABEL_TO_ALIGNMENT (insn) = max_log;
1161 LABEL_TO_MAX_SKIP (insn) = max_skip;
1162 max_log = 0;
1163 max_skip = 0;
1165 else if (GET_CODE (insn) == BARRIER)
1167 rtx label;
1169 for (label = insn; label && ! INSN_P (label);
1170 label = NEXT_INSN (label))
1171 if (GET_CODE (label) == CODE_LABEL)
1173 log = LABEL_ALIGN_AFTER_BARRIER (insn);
1174 if (max_log < log)
1176 max_log = log;
1177 max_skip = LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP;
1179 break;
1183 #ifdef HAVE_ATTR_length
1185 /* Allocate the rest of the arrays. */
1186 insn_lengths = (short *) xmalloc (max_uid * sizeof (short));
1187 insn_lengths_max_uid = max_uid;
1188 /* Syntax errors can lead to labels being outside of the main insn stream.
1189 Initialize insn_addresses, so that we get reproducible results. */
1190 INSN_ADDRESSES_ALLOC (max_uid);
1192 varying_length = (char *) xcalloc (max_uid, sizeof (char));
1194 /* Initialize uid_align. We scan instructions
1195 from end to start, and keep in align_tab[n] the last seen insn
1196 that does an alignment of at least n+1, i.e. the successor
1197 in the alignment chain for an insn that does / has a known
1198 alignment of n. */
1199 uid_align = (rtx *) xcalloc (max_uid, sizeof *uid_align);
1201 for (i = MAX_CODE_ALIGN; --i >= 0;)
1202 align_tab[i] = NULL_RTX;
1203 seq = get_last_insn ();
1204 for (; seq; seq = PREV_INSN (seq))
1206 int uid = INSN_UID (seq);
1207 int log;
1208 log = (GET_CODE (seq) == CODE_LABEL ? LABEL_TO_ALIGNMENT (seq) : 0);
1209 uid_align[uid] = align_tab[0];
1210 if (log)
1212 /* Found an alignment label. */
1213 uid_align[uid] = align_tab[log];
1214 for (i = log - 1; i >= 0; i--)
1215 align_tab[i] = seq;
1218 #ifdef CASE_VECTOR_SHORTEN_MODE
1219 if (optimize)
1221 /* Look for ADDR_DIFF_VECs, and initialize their minimum and maximum
1222 label fields. */
1224 int min_shuid = INSN_SHUID (get_insns ()) - 1;
1225 int max_shuid = INSN_SHUID (get_last_insn ()) + 1;
1226 int rel;
1228 for (insn = first; insn != 0; insn = NEXT_INSN (insn))
1230 rtx min_lab = NULL_RTX, max_lab = NULL_RTX, pat;
1231 int len, i, min, max, insn_shuid;
1232 int min_align;
1233 addr_diff_vec_flags flags;
1235 if (GET_CODE (insn) != JUMP_INSN
1236 || GET_CODE (PATTERN (insn)) != ADDR_DIFF_VEC)
1237 continue;
1238 pat = PATTERN (insn);
1239 len = XVECLEN (pat, 1);
1240 if (len <= 0)
1241 abort ();
1242 min_align = MAX_CODE_ALIGN;
1243 for (min = max_shuid, max = min_shuid, i = len - 1; i >= 0; i--)
1245 rtx lab = XEXP (XVECEXP (pat, 1, i), 0);
1246 int shuid = INSN_SHUID (lab);
1247 if (shuid < min)
1249 min = shuid;
1250 min_lab = lab;
1252 if (shuid > max)
1254 max = shuid;
1255 max_lab = lab;
1257 if (min_align > LABEL_TO_ALIGNMENT (lab))
1258 min_align = LABEL_TO_ALIGNMENT (lab);
1260 XEXP (pat, 2) = gen_rtx_LABEL_REF (VOIDmode, min_lab);
1261 XEXP (pat, 3) = gen_rtx_LABEL_REF (VOIDmode, max_lab);
1262 insn_shuid = INSN_SHUID (insn);
1263 rel = INSN_SHUID (XEXP (XEXP (pat, 0), 0));
1264 flags.min_align = min_align;
1265 flags.base_after_vec = rel > insn_shuid;
1266 flags.min_after_vec = min > insn_shuid;
1267 flags.max_after_vec = max > insn_shuid;
1268 flags.min_after_base = min > rel;
1269 flags.max_after_base = max > rel;
1270 ADDR_DIFF_VEC_FLAGS (pat) = flags;
1273 #endif /* CASE_VECTOR_SHORTEN_MODE */
1275 /* Compute initial lengths, addresses, and varying flags for each insn. */
1276 for (insn_current_address = FIRST_INSN_ADDRESS, insn = first;
1277 insn != 0;
1278 insn_current_address += insn_lengths[uid], insn = NEXT_INSN (insn))
1280 uid = INSN_UID (insn);
1282 insn_lengths[uid] = 0;
1284 if (GET_CODE (insn) == CODE_LABEL)
1286 int log = LABEL_TO_ALIGNMENT (insn);
1287 if (log)
1289 int align = 1 << log;
1290 int new_address = (insn_current_address + align - 1) & -align;
1291 insn_lengths[uid] = new_address - insn_current_address;
1295 INSN_ADDRESSES (uid) = insn_current_address;
1297 if (GET_CODE (insn) == NOTE || GET_CODE (insn) == BARRIER
1298 || GET_CODE (insn) == CODE_LABEL)
1299 continue;
1300 if (INSN_DELETED_P (insn))
1301 continue;
1303 body = PATTERN (insn);
1304 if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
1306 /* This only takes room if read-only data goes into the text
1307 section. */
1308 if (JUMP_TABLES_IN_TEXT_SECTION
1309 #if !defined(READONLY_DATA_SECTION)
1310 || 1
1311 #endif
1313 insn_lengths[uid] = (XVECLEN (body,
1314 GET_CODE (body) == ADDR_DIFF_VEC)
1315 * GET_MODE_SIZE (GET_MODE (body)));
1316 /* Alignment is handled by ADDR_VEC_ALIGN. */
1318 else if (GET_CODE (body) == ASM_INPUT || asm_noperands (body) >= 0)
1319 insn_lengths[uid] = asm_insn_count (body) * insn_default_length (insn);
1320 else if (GET_CODE (body) == SEQUENCE)
1322 int i;
1323 int const_delay_slots;
1324 #ifdef DELAY_SLOTS
1325 const_delay_slots = const_num_delay_slots (XVECEXP (body, 0, 0));
1326 #else
1327 const_delay_slots = 0;
1328 #endif
1329 /* Inside a delay slot sequence, we do not do any branch shortening
1330 if the shortening could change the number of delay slots
1331 of the branch. */
1332 for (i = 0; i < XVECLEN (body, 0); i++)
1334 rtx inner_insn = XVECEXP (body, 0, i);
1335 int inner_uid = INSN_UID (inner_insn);
1336 int inner_length;
1338 if (GET_CODE (body) == ASM_INPUT
1339 || asm_noperands (PATTERN (XVECEXP (body, 0, i))) >= 0)
1340 inner_length = (asm_insn_count (PATTERN (inner_insn))
1341 * insn_default_length (inner_insn));
1342 else
1343 inner_length = insn_default_length (inner_insn);
1345 insn_lengths[inner_uid] = inner_length;
1346 if (const_delay_slots)
1348 if ((varying_length[inner_uid]
1349 = insn_variable_length_p (inner_insn)) != 0)
1350 varying_length[uid] = 1;
1351 INSN_ADDRESSES (inner_uid) = (insn_current_address
1352 + insn_lengths[uid]);
1354 else
1355 varying_length[inner_uid] = 0;
1356 insn_lengths[uid] += inner_length;
1359 else if (GET_CODE (body) != USE && GET_CODE (body) != CLOBBER)
1361 insn_lengths[uid] = insn_default_length (insn);
1362 varying_length[uid] = insn_variable_length_p (insn);
1365 /* If needed, do any adjustment. */
1366 #ifdef ADJUST_INSN_LENGTH
1367 ADJUST_INSN_LENGTH (insn, insn_lengths[uid]);
1368 if (insn_lengths[uid] < 0)
1369 fatal_insn ("Negative insn length", insn);
1370 #endif
1373 /* Now loop over all the insns finding varying length insns. For each,
1374 get the current insn length. If it has changed, reflect the change.
1375 When nothing changes for a full pass, we are done. */
1377 while (something_changed)
1379 something_changed = 0;
1380 insn_current_align = MAX_CODE_ALIGN - 1;
1381 for (insn_current_address = FIRST_INSN_ADDRESS, insn = first;
1382 insn != 0;
1383 insn = NEXT_INSN (insn))
1385 int new_length;
1386 #ifdef ADJUST_INSN_LENGTH
1387 int tmp_length;
1388 #endif
1389 int length_align;
1391 uid = INSN_UID (insn);
1393 if (GET_CODE (insn) == CODE_LABEL)
1395 int log = LABEL_TO_ALIGNMENT (insn);
1396 if (log > insn_current_align)
1398 int align = 1 << log;
1399 int new_address= (insn_current_address + align - 1) & -align;
1400 insn_lengths[uid] = new_address - insn_current_address;
1401 insn_current_align = log;
1402 insn_current_address = new_address;
1404 else
1405 insn_lengths[uid] = 0;
1406 INSN_ADDRESSES (uid) = insn_current_address;
1407 continue;
1410 length_align = INSN_LENGTH_ALIGNMENT (insn);
1411 if (length_align < insn_current_align)
1412 insn_current_align = length_align;
1414 insn_last_address = INSN_ADDRESSES (uid);
1415 INSN_ADDRESSES (uid) = insn_current_address;
1417 #ifdef CASE_VECTOR_SHORTEN_MODE
1418 if (optimize && GET_CODE (insn) == JUMP_INSN
1419 && GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC)
1421 rtx body = PATTERN (insn);
1422 int old_length = insn_lengths[uid];
1423 rtx rel_lab = XEXP (XEXP (body, 0), 0);
1424 rtx min_lab = XEXP (XEXP (body, 2), 0);
1425 rtx max_lab = XEXP (XEXP (body, 3), 0);
1426 addr_diff_vec_flags flags = ADDR_DIFF_VEC_FLAGS (body);
1427 int rel_addr = INSN_ADDRESSES (INSN_UID (rel_lab));
1428 int min_addr = INSN_ADDRESSES (INSN_UID (min_lab));
1429 int max_addr = INSN_ADDRESSES (INSN_UID (max_lab));
1430 rtx prev;
1431 int rel_align = 0;
1433 /* Try to find a known alignment for rel_lab. */
1434 for (prev = rel_lab;
1435 prev
1436 && ! insn_lengths[INSN_UID (prev)]
1437 && ! (varying_length[INSN_UID (prev)] & 1);
1438 prev = PREV_INSN (prev))
1439 if (varying_length[INSN_UID (prev)] & 2)
1441 rel_align = LABEL_TO_ALIGNMENT (prev);
1442 break;
1445 /* See the comment on addr_diff_vec_flags in rtl.h for the
1446 meaning of the flags values. base: REL_LAB vec: INSN */
1447 /* Anything after INSN has still addresses from the last
1448 pass; adjust these so that they reflect our current
1449 estimate for this pass. */
1450 if (flags.base_after_vec)
1451 rel_addr += insn_current_address - insn_last_address;
1452 if (flags.min_after_vec)
1453 min_addr += insn_current_address - insn_last_address;
1454 if (flags.max_after_vec)
1455 max_addr += insn_current_address - insn_last_address;
1456 /* We want to know the worst case, i.e. lowest possible value
1457 for the offset of MIN_LAB. If MIN_LAB is after REL_LAB,
1458 its offset is positive, and we have to be wary of code shrink;
1459 otherwise, it is negative, and we have to be vary of code
1460 size increase. */
1461 if (flags.min_after_base)
1463 /* If INSN is between REL_LAB and MIN_LAB, the size
1464 changes we are about to make can change the alignment
1465 within the observed offset, therefore we have to break
1466 it up into two parts that are independent. */
1467 if (! flags.base_after_vec && flags.min_after_vec)
1469 min_addr -= align_fuzz (rel_lab, insn, rel_align, 0);
1470 min_addr -= align_fuzz (insn, min_lab, 0, 0);
1472 else
1473 min_addr -= align_fuzz (rel_lab, min_lab, rel_align, 0);
1475 else
1477 if (flags.base_after_vec && ! flags.min_after_vec)
1479 min_addr -= align_fuzz (min_lab, insn, 0, ~0);
1480 min_addr -= align_fuzz (insn, rel_lab, 0, ~0);
1482 else
1483 min_addr -= align_fuzz (min_lab, rel_lab, 0, ~0);
1485 /* Likewise, determine the highest lowest possible value
1486 for the offset of MAX_LAB. */
1487 if (flags.max_after_base)
1489 if (! flags.base_after_vec && flags.max_after_vec)
1491 max_addr += align_fuzz (rel_lab, insn, rel_align, ~0);
1492 max_addr += align_fuzz (insn, max_lab, 0, ~0);
1494 else
1495 max_addr += align_fuzz (rel_lab, max_lab, rel_align, ~0);
1497 else
1499 if (flags.base_after_vec && ! flags.max_after_vec)
1501 max_addr += align_fuzz (max_lab, insn, 0, 0);
1502 max_addr += align_fuzz (insn, rel_lab, 0, 0);
1504 else
1505 max_addr += align_fuzz (max_lab, rel_lab, 0, 0);
1507 PUT_MODE (body, CASE_VECTOR_SHORTEN_MODE (min_addr - rel_addr,
1508 max_addr - rel_addr,
1509 body));
1510 if (JUMP_TABLES_IN_TEXT_SECTION
1511 #if !defined(READONLY_DATA_SECTION)
1512 || 1
1513 #endif
1516 insn_lengths[uid]
1517 = (XVECLEN (body, 1) * GET_MODE_SIZE (GET_MODE (body)));
1518 insn_current_address += insn_lengths[uid];
1519 if (insn_lengths[uid] != old_length)
1520 something_changed = 1;
1523 continue;
1525 #endif /* CASE_VECTOR_SHORTEN_MODE */
1527 if (! (varying_length[uid]))
1529 if (GET_CODE (insn) == INSN
1530 && GET_CODE (PATTERN (insn)) == SEQUENCE)
1532 int i;
1534 body = PATTERN (insn);
1535 for (i = 0; i < XVECLEN (body, 0); i++)
1537 rtx inner_insn = XVECEXP (body, 0, i);
1538 int inner_uid = INSN_UID (inner_insn);
1540 INSN_ADDRESSES (inner_uid) = insn_current_address;
1542 insn_current_address += insn_lengths[inner_uid];
1545 else
1546 insn_current_address += insn_lengths[uid];
1548 continue;
1551 if (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
1553 int i;
1555 body = PATTERN (insn);
1556 new_length = 0;
1557 for (i = 0; i < XVECLEN (body, 0); i++)
1559 rtx inner_insn = XVECEXP (body, 0, i);
1560 int inner_uid = INSN_UID (inner_insn);
1561 int inner_length;
1563 INSN_ADDRESSES (inner_uid) = insn_current_address;
1565 /* insn_current_length returns 0 for insns with a
1566 non-varying length. */
1567 if (! varying_length[inner_uid])
1568 inner_length = insn_lengths[inner_uid];
1569 else
1570 inner_length = insn_current_length (inner_insn);
1572 if (inner_length != insn_lengths[inner_uid])
1574 insn_lengths[inner_uid] = inner_length;
1575 something_changed = 1;
1577 insn_current_address += insn_lengths[inner_uid];
1578 new_length += inner_length;
1581 else
1583 new_length = insn_current_length (insn);
1584 insn_current_address += new_length;
1587 #ifdef ADJUST_INSN_LENGTH
1588 /* If needed, do any adjustment. */
1589 tmp_length = new_length;
1590 ADJUST_INSN_LENGTH (insn, new_length);
1591 insn_current_address += (new_length - tmp_length);
1592 #endif
1594 if (new_length != insn_lengths[uid])
1596 insn_lengths[uid] = new_length;
1597 something_changed = 1;
1600 /* For a non-optimizing compile, do only a single pass. */
1601 if (!optimize)
1602 break;
1605 free (varying_length);
1607 #endif /* HAVE_ATTR_length */
1610 #ifdef HAVE_ATTR_length
1611 /* Given the body of an INSN known to be generated by an ASM statement, return
1612 the number of machine instructions likely to be generated for this insn.
1613 This is used to compute its length. */
1615 static int
1616 asm_insn_count (body)
1617 rtx body;
1619 const char *template;
1620 int count = 1;
1622 if (GET_CODE (body) == ASM_INPUT)
1623 template = XSTR (body, 0);
1624 else
1625 template = decode_asm_operands (body, NULL, NULL, NULL, NULL);
1627 for (; *template; template++)
1628 if (IS_ASM_LOGICAL_LINE_SEPARATOR (*template) || *template == '\n')
1629 count++;
1631 return count;
1633 #endif
1635 /* Output assembler code for the start of a function,
1636 and initialize some of the variables in this file
1637 for the new function. The label for the function and associated
1638 assembler pseudo-ops have already been output in `assemble_start_function'.
1640 FIRST is the first insn of the rtl for the function being compiled.
1641 FILE is the file to write assembler code to.
1642 OPTIMIZE is nonzero if we should eliminate redundant
1643 test and compare insns. */
1645 void
1646 final_start_function (first, file, optimize)
1647 rtx first;
1648 FILE *file;
1649 int optimize ATTRIBUTE_UNUSED;
1651 block_depth = 0;
1653 this_is_asm_operands = 0;
1655 #ifdef NON_SAVING_SETJMP
1656 /* A function that calls setjmp should save and restore all the
1657 call-saved registers on a system where longjmp clobbers them. */
1658 if (NON_SAVING_SETJMP && current_function_calls_setjmp)
1660 int i;
1662 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1663 if (!call_used_regs[i])
1664 regs_ever_live[i] = 1;
1666 #endif
1668 if (NOTE_LINE_NUMBER (first) != NOTE_INSN_DELETED)
1669 notice_source_line (first);
1670 high_block_linenum = high_function_linenum = last_linenum;
1672 (*debug_hooks->begin_prologue) (last_linenum, last_filename);
1674 #if defined (DWARF2_UNWIND_INFO) || defined (IA64_UNWIND_INFO)
1675 if (write_symbols != DWARF2_DEBUG)
1676 dwarf2out_begin_prologue (0, NULL);
1677 #endif
1679 #ifdef LEAF_REG_REMAP
1680 if (current_function_uses_only_leaf_regs)
1681 leaf_renumber_regs (first);
1682 #endif
1684 /* The Sun386i and perhaps other machines don't work right
1685 if the profiling code comes after the prologue. */
1686 #ifdef PROFILE_BEFORE_PROLOGUE
1687 if (profile_flag)
1688 profile_function (file);
1689 #endif /* PROFILE_BEFORE_PROLOGUE */
1691 #if defined (DWARF2_UNWIND_INFO) && defined (HAVE_prologue)
1692 if (dwarf2out_do_frame ())
1693 dwarf2out_frame_debug (NULL_RTX);
1694 #endif
1696 /* If debugging, assign block numbers to all of the blocks in this
1697 function. */
1698 if (write_symbols)
1700 remove_unnecessary_notes ();
1701 reorder_blocks ();
1702 number_blocks (current_function_decl);
1703 /* We never actually put out begin/end notes for the top-level
1704 block in the function. But, conceptually, that block is
1705 always needed. */
1706 TREE_ASM_WRITTEN (DECL_INITIAL (current_function_decl)) = 1;
1709 /* First output the function prologue: code to set up the stack frame. */
1710 (*targetm.asm_out.function_prologue) (file, get_frame_size ());
1712 /* If the machine represents the prologue as RTL, the profiling code must
1713 be emitted when NOTE_INSN_PROLOGUE_END is scanned. */
1714 #ifdef HAVE_prologue
1715 if (! HAVE_prologue)
1716 #endif
1717 profile_after_prologue (file);
1719 profile_label_no++;
1721 /* If we are doing basic block profiling, remember a printable version
1722 of the function name. */
1723 if (profile_block_flag)
1725 bb_func_label_num =
1726 add_bb_string ((*decl_printable_name) (current_function_decl, 2),
1727 FALSE);
1731 static void
1732 profile_after_prologue (file)
1733 FILE *file ATTRIBUTE_UNUSED;
1735 #ifdef FUNCTION_BLOCK_PROFILER
1736 if (profile_block_flag)
1738 FUNCTION_BLOCK_PROFILER (file, count_basic_blocks);
1740 #endif /* FUNCTION_BLOCK_PROFILER */
1742 #ifndef PROFILE_BEFORE_PROLOGUE
1743 if (profile_flag)
1744 profile_function (file);
1745 #endif /* not PROFILE_BEFORE_PROLOGUE */
1748 static void
1749 profile_function (file)
1750 FILE *file;
1752 #ifndef NO_PROFILE_COUNTERS
1753 int align = MIN (BIGGEST_ALIGNMENT, LONG_TYPE_SIZE);
1754 #endif
1755 #if defined(ASM_OUTPUT_REG_PUSH)
1756 #if defined(STRUCT_VALUE_INCOMING_REGNUM) || defined(STRUCT_VALUE_REGNUM)
1757 int sval = current_function_returns_struct;
1758 #endif
1759 #if defined(STATIC_CHAIN_INCOMING_REGNUM) || defined(STATIC_CHAIN_REGNUM)
1760 int cxt = current_function_needs_context;
1761 #endif
1762 #endif /* ASM_OUTPUT_REG_PUSH */
1764 #ifndef NO_PROFILE_COUNTERS
1765 data_section ();
1766 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
1767 ASM_OUTPUT_INTERNAL_LABEL (file, "LP", profile_label_no);
1768 assemble_integer (const0_rtx, LONG_TYPE_SIZE / BITS_PER_UNIT, align, 1);
1769 #endif
1771 function_section (current_function_decl);
1773 #if defined(STRUCT_VALUE_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1774 if (sval)
1775 ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_INCOMING_REGNUM);
1776 #else
1777 #if defined(STRUCT_VALUE_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1778 if (sval)
1780 ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_REGNUM);
1782 #endif
1783 #endif
1785 #if defined(STATIC_CHAIN_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1786 if (cxt)
1787 ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_INCOMING_REGNUM);
1788 #else
1789 #if defined(STATIC_CHAIN_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1790 if (cxt)
1792 ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_REGNUM);
1794 #endif
1795 #endif
1797 FUNCTION_PROFILER (file, profile_label_no);
1799 #if defined(STATIC_CHAIN_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1800 if (cxt)
1801 ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_INCOMING_REGNUM);
1802 #else
1803 #if defined(STATIC_CHAIN_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1804 if (cxt)
1806 ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_REGNUM);
1808 #endif
1809 #endif
1811 #if defined(STRUCT_VALUE_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1812 if (sval)
1813 ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_INCOMING_REGNUM);
1814 #else
1815 #if defined(STRUCT_VALUE_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1816 if (sval)
1818 ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_REGNUM);
1820 #endif
1821 #endif
1824 /* Output assembler code for the end of a function.
1825 For clarity, args are same as those of `final_start_function'
1826 even though not all of them are needed. */
1828 void
1829 final_end_function ()
1831 app_disable ();
1833 (*debug_hooks->end_function) (high_function_linenum);
1835 /* Finally, output the function epilogue:
1836 code to restore the stack frame and return to the caller. */
1837 (*targetm.asm_out.function_epilogue) (asm_out_file, get_frame_size ());
1839 /* And debug output. */
1840 (*debug_hooks->end_epilogue) ();
1842 #if defined (DWARF2_UNWIND_INFO)
1843 if (write_symbols != DWARF2_DEBUG && dwarf2out_do_frame ())
1844 dwarf2out_end_epilogue ();
1845 #endif
1847 bb_func_label_num = -1; /* not in function, nuke label # */
1850 /* Add a block to the linked list that remembers the current line/file/function
1851 for basic block profiling. Emit the label in front of the basic block and
1852 the instructions that increment the count field. */
1854 static void
1855 add_bb (file)
1856 FILE *file;
1858 struct bb_list *ptr =
1859 (struct bb_list *) permalloc (sizeof (struct bb_list));
1861 /* Add basic block to linked list. */
1862 ptr->next = 0;
1863 ptr->line_num = last_linenum;
1864 ptr->file_label_num = bb_file_label_num;
1865 ptr->func_label_num = bb_func_label_num;
1866 *bb_tail = ptr;
1867 bb_tail = &ptr->next;
1869 /* Enable the table of basic-block use counts
1870 to point at the code it applies to. */
1871 ASM_OUTPUT_INTERNAL_LABEL (file, "LPB", count_basic_blocks);
1873 /* Before first insn of this basic block, increment the
1874 count of times it was entered. */
1875 #ifdef BLOCK_PROFILER
1876 BLOCK_PROFILER (file, count_basic_blocks);
1877 #endif
1878 #ifdef HAVE_cc0
1879 CC_STATUS_INIT;
1880 #endif
1882 new_block = 0;
1883 count_basic_blocks++;
1886 /* Add a string to be used for basic block profiling. */
1888 static int
1889 add_bb_string (string, perm_p)
1890 const char *string;
1891 int perm_p;
1893 int len;
1894 struct bb_str *ptr = 0;
1896 if (!string)
1898 string = "<unknown>";
1899 perm_p = TRUE;
1902 /* Allocate a new string if the current string isn't permanent. If
1903 the string is permanent search for the same string in other
1904 allocations. */
1906 len = strlen (string) + 1;
1907 if (!perm_p)
1909 char *p = (char *) permalloc (len);
1910 memcpy (p, string, len);
1911 string = p;
1913 else
1914 for (ptr = sbb_head; ptr != (struct bb_str *) 0; ptr = ptr->next)
1915 if (ptr->string == string)
1916 break;
1918 /* Allocate a new string block if we need to. */
1919 if (!ptr)
1921 ptr = (struct bb_str *) permalloc (sizeof (*ptr));
1922 ptr->next = 0;
1923 ptr->length = len;
1924 ptr->label_num = sbb_label_num++;
1925 ptr->string = string;
1926 *sbb_tail = ptr;
1927 sbb_tail = &ptr->next;
1930 return ptr->label_num;
1933 /* Output assembler code for some insns: all or part of a function.
1934 For description of args, see `final_start_function', above.
1936 PRESCAN is 1 if we are not really outputting,
1937 just scanning as if we were outputting.
1938 Prescanning deletes and rearranges insns just like ordinary output.
1939 PRESCAN is -2 if we are outputting after having prescanned.
1940 In this case, don't try to delete or rearrange insns
1941 because that has already been done.
1942 Prescanning is done only on certain machines. */
1944 void
1945 final (first, file, optimize, prescan)
1946 rtx first;
1947 FILE *file;
1948 int optimize;
1949 int prescan;
1951 register rtx insn;
1952 int max_line = 0;
1953 int max_uid = 0;
1955 last_ignored_compare = 0;
1956 new_block = 1;
1958 /* Make a map indicating which line numbers appear in this function.
1959 When producing SDB debugging info, delete troublesome line number
1960 notes from inlined functions in other files as well as duplicate
1961 line number notes. */
1962 #ifdef SDB_DEBUGGING_INFO
1963 if (write_symbols == SDB_DEBUG)
1965 rtx last = 0;
1966 for (insn = first; insn; insn = NEXT_INSN (insn))
1967 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
1969 if ((RTX_INTEGRATED_P (insn)
1970 && strcmp (NOTE_SOURCE_FILE (insn), main_input_filename) != 0)
1971 || (last != 0
1972 && NOTE_LINE_NUMBER (insn) == NOTE_LINE_NUMBER (last)
1973 && NOTE_SOURCE_FILE (insn) == NOTE_SOURCE_FILE (last)))
1975 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
1976 NOTE_SOURCE_FILE (insn) = 0;
1977 continue;
1979 last = insn;
1980 if (NOTE_LINE_NUMBER (insn) > max_line)
1981 max_line = NOTE_LINE_NUMBER (insn);
1984 else
1985 #endif
1987 for (insn = first; insn; insn = NEXT_INSN (insn))
1988 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > max_line)
1989 max_line = NOTE_LINE_NUMBER (insn);
1992 line_note_exists = (char *) xcalloc (max_line + 1, sizeof (char));
1994 for (insn = first; insn; insn = NEXT_INSN (insn))
1996 if (INSN_UID (insn) > max_uid) /* find largest UID */
1997 max_uid = INSN_UID (insn);
1998 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
1999 line_note_exists[NOTE_LINE_NUMBER (insn)] = 1;
2000 #ifdef HAVE_cc0
2001 /* If CC tracking across branches is enabled, record the insn which
2002 jumps to each branch only reached from one place. */
2003 if (optimize && GET_CODE (insn) == JUMP_INSN)
2005 rtx lab = JUMP_LABEL (insn);
2006 if (lab && LABEL_NUSES (lab) == 1)
2008 LABEL_REFS (lab) = insn;
2011 #endif
2014 init_recog ();
2016 CC_STATUS_INIT;
2018 /* Output the insns. */
2019 for (insn = NEXT_INSN (first); insn;)
2021 #ifdef HAVE_ATTR_length
2022 if ((unsigned) INSN_UID (insn) >= INSN_ADDRESSES_SIZE ())
2024 #ifdef STACK_REGS
2025 /* Irritatingly, the reg-stack pass is creating new instructions
2026 and because of REG_DEAD note abuse it has to run after
2027 shorten_branches. Fake address of -1 then. */
2028 insn_current_address = -1;
2029 #else
2030 /* This can be triggered by bugs elsewhere in the compiler if
2031 new insns are created after init_insn_lengths is called. */
2032 abort ();
2033 #endif
2035 else
2036 insn_current_address = INSN_ADDRESSES (INSN_UID (insn));
2037 #endif /* HAVE_ATTR_length */
2039 insn = final_scan_insn (insn, file, optimize, prescan, 0);
2042 /* Do basic-block profiling here
2043 if the last insn was a conditional branch. */
2044 if (profile_block_flag && new_block)
2045 add_bb (file);
2047 free (line_note_exists);
2048 line_note_exists = NULL;
2051 const char *
2052 get_insn_template (code, insn)
2053 int code;
2054 rtx insn;
2056 const void *output = insn_data[code].output;
2057 switch (insn_data[code].output_format)
2059 case INSN_OUTPUT_FORMAT_SINGLE:
2060 return (const char *) output;
2061 case INSN_OUTPUT_FORMAT_MULTI:
2062 return ((const char *const *) output)[which_alternative];
2063 case INSN_OUTPUT_FORMAT_FUNCTION:
2064 if (insn == NULL)
2065 abort ();
2066 return (*(insn_output_fn) output) (recog_data.operand, insn);
2068 default:
2069 abort ();
2073 /* The final scan for one insn, INSN.
2074 Args are same as in `final', except that INSN
2075 is the insn being scanned.
2076 Value returned is the next insn to be scanned.
2078 NOPEEPHOLES is the flag to disallow peephole processing (currently
2079 used for within delayed branch sequence output). */
2082 final_scan_insn (insn, file, optimize, prescan, nopeepholes)
2083 rtx insn;
2084 FILE *file;
2085 int optimize ATTRIBUTE_UNUSED;
2086 int prescan;
2087 int nopeepholes ATTRIBUTE_UNUSED;
2089 #ifdef HAVE_cc0
2090 rtx set;
2091 #endif
2093 insn_counter++;
2095 /* Ignore deleted insns. These can occur when we split insns (due to a
2096 template of "#") while not optimizing. */
2097 if (INSN_DELETED_P (insn))
2098 return NEXT_INSN (insn);
2100 switch (GET_CODE (insn))
2102 case NOTE:
2103 if (prescan > 0)
2104 break;
2106 switch (NOTE_LINE_NUMBER (insn))
2108 case NOTE_INSN_DELETED:
2109 case NOTE_INSN_LOOP_BEG:
2110 case NOTE_INSN_LOOP_END:
2111 case NOTE_INSN_LOOP_CONT:
2112 case NOTE_INSN_LOOP_VTOP:
2113 case NOTE_INSN_FUNCTION_END:
2114 case NOTE_INSN_REPEATED_LINE_NUMBER:
2115 case NOTE_INSN_RANGE_BEG:
2116 case NOTE_INSN_RANGE_END:
2117 case NOTE_INSN_LIVE:
2118 case NOTE_INSN_EXPECTED_VALUE:
2119 break;
2121 case NOTE_INSN_BASIC_BLOCK:
2122 #ifdef IA64_UNWIND_INFO
2123 IA64_UNWIND_EMIT (asm_out_file, insn);
2124 #endif
2125 if (flag_debug_asm)
2126 fprintf (asm_out_file, "\t%s basic block %d\n",
2127 ASM_COMMENT_START, NOTE_BASIC_BLOCK (insn)->index);
2128 break;
2130 case NOTE_INSN_EH_REGION_BEG:
2131 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LEHB",
2132 NOTE_EH_HANDLER (insn));
2133 break;
2135 case NOTE_INSN_EH_REGION_END:
2136 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LEHE",
2137 NOTE_EH_HANDLER (insn));
2138 break;
2140 case NOTE_INSN_PROLOGUE_END:
2141 (*targetm.asm_out.function_end_prologue) (file);
2142 profile_after_prologue (file);
2143 break;
2145 case NOTE_INSN_EPILOGUE_BEG:
2146 (*targetm.asm_out.function_begin_epilogue) (file);
2147 break;
2149 case NOTE_INSN_FUNCTION_BEG:
2150 app_disable ();
2151 (*debug_hooks->end_prologue) (last_linenum);
2152 break;
2154 case NOTE_INSN_BLOCK_BEG:
2155 if (debug_info_level == DINFO_LEVEL_NORMAL
2156 || debug_info_level == DINFO_LEVEL_VERBOSE
2157 || write_symbols == DWARF_DEBUG
2158 || write_symbols == DWARF2_DEBUG)
2160 int n = BLOCK_NUMBER (NOTE_BLOCK (insn));
2162 app_disable ();
2163 ++block_depth;
2164 high_block_linenum = last_linenum;
2166 /* Output debugging info about the symbol-block beginning. */
2167 (*debug_hooks->begin_block) (last_linenum, n);
2169 /* Mark this block as output. */
2170 TREE_ASM_WRITTEN (NOTE_BLOCK (insn)) = 1;
2172 break;
2174 case NOTE_INSN_BLOCK_END:
2175 if (debug_info_level == DINFO_LEVEL_NORMAL
2176 || debug_info_level == DINFO_LEVEL_VERBOSE
2177 || write_symbols == DWARF_DEBUG
2178 || write_symbols == DWARF2_DEBUG)
2180 int n = BLOCK_NUMBER (NOTE_BLOCK (insn));
2182 app_disable ();
2184 /* End of a symbol-block. */
2185 --block_depth;
2186 if (block_depth < 0)
2187 abort ();
2189 (*debug_hooks->end_block) (high_block_linenum, n);
2191 break;
2193 case NOTE_INSN_DELETED_LABEL:
2194 /* Emit the label. We may have deleted the CODE_LABEL because
2195 the label could be proved to be unreachable, though still
2196 referenced (in the form of having its address taken. */
2197 ASM_OUTPUT_DEBUG_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
2198 break;
2200 case 0:
2201 break;
2203 default:
2204 if (NOTE_LINE_NUMBER (insn) <= 0)
2205 abort ();
2207 /* This note is a line-number. */
2209 register rtx note;
2210 int note_after = 0;
2212 /* If there is anything real after this note, output it.
2213 If another line note follows, omit this one. */
2214 for (note = NEXT_INSN (insn); note; note = NEXT_INSN (note))
2216 if (GET_CODE (note) != NOTE && GET_CODE (note) != CODE_LABEL)
2217 break;
2219 /* These types of notes can be significant
2220 so make sure the preceding line number stays. */
2221 else if (GET_CODE (note) == NOTE
2222 && (NOTE_LINE_NUMBER (note) == NOTE_INSN_BLOCK_BEG
2223 || NOTE_LINE_NUMBER (note) == NOTE_INSN_BLOCK_END
2224 || NOTE_LINE_NUMBER (note) == NOTE_INSN_FUNCTION_BEG))
2225 break;
2226 else if (GET_CODE (note) == NOTE && NOTE_LINE_NUMBER (note) > 0)
2228 /* Another line note follows; we can delete this note
2229 if no intervening line numbers have notes elsewhere. */
2230 int num;
2231 for (num = NOTE_LINE_NUMBER (insn) + 1;
2232 num < NOTE_LINE_NUMBER (note);
2233 num++)
2234 if (line_note_exists[num])
2235 break;
2237 if (num >= NOTE_LINE_NUMBER (note))
2238 note_after = 1;
2239 break;
2243 /* Output this line note if it is the first or the last line
2244 note in a row. */
2245 if (!note_after)
2247 notice_source_line (insn);
2248 (*debug_hooks->source_line) (last_linenum, last_filename);
2251 break;
2253 break;
2255 case BARRIER:
2256 #if defined (DWARF2_UNWIND_INFO)
2257 if (dwarf2out_do_frame ())
2258 dwarf2out_frame_debug (insn);
2259 #endif
2260 break;
2262 case CODE_LABEL:
2263 /* The target port might emit labels in the output function for
2264 some insn, e.g. sh.c output_branchy_insn. */
2265 if (CODE_LABEL_NUMBER (insn) <= max_labelno)
2267 int align = LABEL_TO_ALIGNMENT (insn);
2268 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
2269 int max_skip = LABEL_TO_MAX_SKIP (insn);
2270 #endif
2272 if (align && NEXT_INSN (insn))
2273 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
2274 ASM_OUTPUT_MAX_SKIP_ALIGN (file, align, max_skip);
2275 #else
2276 ASM_OUTPUT_ALIGN (file, align);
2277 #endif
2279 #ifdef HAVE_cc0
2280 CC_STATUS_INIT;
2281 /* If this label is reached from only one place, set the condition
2282 codes from the instruction just before the branch. */
2284 /* Disabled because some insns set cc_status in the C output code
2285 and NOTICE_UPDATE_CC alone can set incorrect status. */
2286 if (0 /* optimize && LABEL_NUSES (insn) == 1*/)
2288 rtx jump = LABEL_REFS (insn);
2289 rtx barrier = prev_nonnote_insn (insn);
2290 rtx prev;
2291 /* If the LABEL_REFS field of this label has been set to point
2292 at a branch, the predecessor of the branch is a regular
2293 insn, and that branch is the only way to reach this label,
2294 set the condition codes based on the branch and its
2295 predecessor. */
2296 if (barrier && GET_CODE (barrier) == BARRIER
2297 && jump && GET_CODE (jump) == JUMP_INSN
2298 && (prev = prev_nonnote_insn (jump))
2299 && GET_CODE (prev) == INSN)
2301 NOTICE_UPDATE_CC (PATTERN (prev), prev);
2302 NOTICE_UPDATE_CC (PATTERN (jump), jump);
2305 #endif
2306 if (prescan > 0)
2307 break;
2308 new_block = 1;
2310 #ifdef FINAL_PRESCAN_LABEL
2311 FINAL_PRESCAN_INSN (insn, NULL, 0);
2312 #endif
2314 if (LABEL_NAME (insn))
2315 (*debug_hooks->label) (insn);
2317 if (app_on)
2319 fputs (ASM_APP_OFF, file);
2320 app_on = 0;
2322 if (NEXT_INSN (insn) != 0
2323 && GET_CODE (NEXT_INSN (insn)) == JUMP_INSN)
2325 rtx nextbody = PATTERN (NEXT_INSN (insn));
2327 /* If this label is followed by a jump-table,
2328 make sure we put the label in the read-only section. Also
2329 possibly write the label and jump table together. */
2331 if (GET_CODE (nextbody) == ADDR_VEC
2332 || GET_CODE (nextbody) == ADDR_DIFF_VEC)
2334 #if defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC)
2335 /* In this case, the case vector is being moved by the
2336 target, so don't output the label at all. Leave that
2337 to the back end macros. */
2338 #else
2339 if (! JUMP_TABLES_IN_TEXT_SECTION)
2341 int log_align;
2343 readonly_data_section ();
2345 #ifdef ADDR_VEC_ALIGN
2346 log_align = ADDR_VEC_ALIGN (NEXT_INSN (insn));
2347 #else
2348 log_align = exact_log2 (BIGGEST_ALIGNMENT / BITS_PER_UNIT);
2349 #endif
2350 ASM_OUTPUT_ALIGN (file, log_align);
2352 else
2353 function_section (current_function_decl);
2355 #ifdef ASM_OUTPUT_CASE_LABEL
2356 ASM_OUTPUT_CASE_LABEL (file, "L", CODE_LABEL_NUMBER (insn),
2357 NEXT_INSN (insn));
2358 #else
2359 if (LABEL_ALTERNATE_NAME (insn))
2360 ASM_OUTPUT_ALTERNATE_LABEL_NAME (file, insn);
2361 else
2362 ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
2363 #endif
2364 #endif
2365 break;
2368 if (LABEL_ALTERNATE_NAME (insn))
2369 ASM_OUTPUT_ALTERNATE_LABEL_NAME (file, insn);
2370 else
2371 ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
2372 break;
2374 default:
2376 register rtx body = PATTERN (insn);
2377 int insn_code_number;
2378 const char *template;
2379 #ifdef HAVE_cc0
2380 rtx note;
2381 #endif
2383 /* An INSN, JUMP_INSN or CALL_INSN.
2384 First check for special kinds that recog doesn't recognize. */
2386 if (GET_CODE (body) == USE /* These are just declarations */
2387 || GET_CODE (body) == CLOBBER)
2388 break;
2390 #ifdef HAVE_cc0
2391 /* If there is a REG_CC_SETTER note on this insn, it means that
2392 the setting of the condition code was done in the delay slot
2393 of the insn that branched here. So recover the cc status
2394 from the insn that set it. */
2396 note = find_reg_note (insn, REG_CC_SETTER, NULL_RTX);
2397 if (note)
2399 NOTICE_UPDATE_CC (PATTERN (XEXP (note, 0)), XEXP (note, 0));
2400 cc_prev_status = cc_status;
2402 #endif
2404 /* Detect insns that are really jump-tables
2405 and output them as such. */
2407 if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
2409 #if !(defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC))
2410 register int vlen, idx;
2411 #endif
2413 if (prescan > 0)
2414 break;
2416 if (app_on)
2418 fputs (ASM_APP_OFF, file);
2419 app_on = 0;
2422 #if defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC)
2423 if (GET_CODE (body) == ADDR_VEC)
2425 #ifdef ASM_OUTPUT_ADDR_VEC
2426 ASM_OUTPUT_ADDR_VEC (PREV_INSN (insn), body);
2427 #else
2428 abort ();
2429 #endif
2431 else
2433 #ifdef ASM_OUTPUT_ADDR_DIFF_VEC
2434 ASM_OUTPUT_ADDR_DIFF_VEC (PREV_INSN (insn), body);
2435 #else
2436 abort ();
2437 #endif
2439 #else
2440 vlen = XVECLEN (body, GET_CODE (body) == ADDR_DIFF_VEC);
2441 for (idx = 0; idx < vlen; idx++)
2443 if (GET_CODE (body) == ADDR_VEC)
2445 #ifdef ASM_OUTPUT_ADDR_VEC_ELT
2446 ASM_OUTPUT_ADDR_VEC_ELT
2447 (file, CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 0, idx), 0)));
2448 #else
2449 abort ();
2450 #endif
2452 else
2454 #ifdef ASM_OUTPUT_ADDR_DIFF_ELT
2455 ASM_OUTPUT_ADDR_DIFF_ELT
2456 (file,
2457 body,
2458 CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 1, idx), 0)),
2459 CODE_LABEL_NUMBER (XEXP (XEXP (body, 0), 0)));
2460 #else
2461 abort ();
2462 #endif
2465 #ifdef ASM_OUTPUT_CASE_END
2466 ASM_OUTPUT_CASE_END (file,
2467 CODE_LABEL_NUMBER (PREV_INSN (insn)),
2468 insn);
2469 #endif
2470 #endif
2472 function_section (current_function_decl);
2474 break;
2477 /* Do basic-block profiling when we reach a new block.
2478 Done here to avoid jump tables. */
2479 if (profile_block_flag && new_block)
2480 add_bb (file);
2482 if (GET_CODE (body) == ASM_INPUT)
2484 const char *string = XSTR (body, 0);
2486 /* There's no telling what that did to the condition codes. */
2487 CC_STATUS_INIT;
2488 if (prescan > 0)
2489 break;
2491 if (string[0])
2493 if (! app_on)
2495 fputs (ASM_APP_ON, file);
2496 app_on = 1;
2498 fprintf (asm_out_file, "\t%s\n", string);
2500 break;
2503 /* Detect `asm' construct with operands. */
2504 if (asm_noperands (body) >= 0)
2506 unsigned int noperands = asm_noperands (body);
2507 rtx *ops = (rtx *) alloca (noperands * sizeof (rtx));
2508 const char *string;
2510 /* There's no telling what that did to the condition codes. */
2511 CC_STATUS_INIT;
2512 if (prescan > 0)
2513 break;
2515 /* Get out the operand values. */
2516 string = decode_asm_operands (body, ops, NULL, NULL, NULL);
2517 /* Inhibit aborts on what would otherwise be compiler bugs. */
2518 insn_noperands = noperands;
2519 this_is_asm_operands = insn;
2521 /* Output the insn using them. */
2522 if (string[0])
2524 if (! app_on)
2526 fputs (ASM_APP_ON, file);
2527 app_on = 1;
2529 output_asm_insn (string, ops);
2532 this_is_asm_operands = 0;
2533 break;
2536 if (prescan <= 0 && app_on)
2538 fputs (ASM_APP_OFF, file);
2539 app_on = 0;
2542 if (GET_CODE (body) == SEQUENCE)
2544 /* A delayed-branch sequence */
2545 register int i;
2546 rtx next;
2548 if (prescan > 0)
2549 break;
2550 final_sequence = body;
2552 /* The first insn in this SEQUENCE might be a JUMP_INSN that will
2553 force the restoration of a comparison that was previously
2554 thought unnecessary. If that happens, cancel this sequence
2555 and cause that insn to be restored. */
2557 next = final_scan_insn (XVECEXP (body, 0, 0), file, 0, prescan, 1);
2558 if (next != XVECEXP (body, 0, 1))
2560 final_sequence = 0;
2561 return next;
2564 for (i = 1; i < XVECLEN (body, 0); i++)
2566 rtx insn = XVECEXP (body, 0, i);
2567 rtx next = NEXT_INSN (insn);
2568 /* We loop in case any instruction in a delay slot gets
2569 split. */
2571 insn = final_scan_insn (insn, file, 0, prescan, 1);
2572 while (insn != next);
2574 #ifdef DBR_OUTPUT_SEQEND
2575 DBR_OUTPUT_SEQEND (file);
2576 #endif
2577 final_sequence = 0;
2579 /* If the insn requiring the delay slot was a CALL_INSN, the
2580 insns in the delay slot are actually executed before the
2581 called function. Hence we don't preserve any CC-setting
2582 actions in these insns and the CC must be marked as being
2583 clobbered by the function. */
2584 if (GET_CODE (XVECEXP (body, 0, 0)) == CALL_INSN)
2586 CC_STATUS_INIT;
2589 /* Following a conditional branch sequence, we have a new basic
2590 block. */
2591 if (profile_block_flag)
2593 rtx insn = XVECEXP (body, 0, 0);
2594 rtx body = PATTERN (insn);
2596 if ((GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == SET
2597 && GET_CODE (SET_SRC (body)) != LABEL_REF)
2598 || (GET_CODE (insn) == JUMP_INSN
2599 && GET_CODE (body) == PARALLEL
2600 && GET_CODE (XVECEXP (body, 0, 0)) == SET
2601 && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) != LABEL_REF))
2602 new_block = 1;
2604 break;
2607 /* We have a real machine instruction as rtl. */
2609 body = PATTERN (insn);
2611 #ifdef HAVE_cc0
2612 set = single_set (insn);
2614 /* Check for redundant test and compare instructions
2615 (when the condition codes are already set up as desired).
2616 This is done only when optimizing; if not optimizing,
2617 it should be possible for the user to alter a variable
2618 with the debugger in between statements
2619 and the next statement should reexamine the variable
2620 to compute the condition codes. */
2622 if (optimize)
2624 #if 0
2625 rtx set = single_set (insn);
2626 #endif
2628 if (set
2629 && GET_CODE (SET_DEST (set)) == CC0
2630 && insn != last_ignored_compare)
2632 if (GET_CODE (SET_SRC (set)) == SUBREG)
2633 SET_SRC (set) = alter_subreg (SET_SRC (set));
2634 else if (GET_CODE (SET_SRC (set)) == COMPARE)
2636 if (GET_CODE (XEXP (SET_SRC (set), 0)) == SUBREG)
2637 XEXP (SET_SRC (set), 0)
2638 = alter_subreg (XEXP (SET_SRC (set), 0));
2639 if (GET_CODE (XEXP (SET_SRC (set), 1)) == SUBREG)
2640 XEXP (SET_SRC (set), 1)
2641 = alter_subreg (XEXP (SET_SRC (set), 1));
2643 if ((cc_status.value1 != 0
2644 && rtx_equal_p (SET_SRC (set), cc_status.value1))
2645 || (cc_status.value2 != 0
2646 && rtx_equal_p (SET_SRC (set), cc_status.value2)))
2648 /* Don't delete insn if it has an addressing side-effect. */
2649 if (! FIND_REG_INC_NOTE (insn, 0)
2650 /* or if anything in it is volatile. */
2651 && ! volatile_refs_p (PATTERN (insn)))
2653 /* We don't really delete the insn; just ignore it. */
2654 last_ignored_compare = insn;
2655 break;
2660 #endif
2662 /* Following a conditional branch, we have a new basic block.
2663 But if we are inside a sequence, the new block starts after the
2664 last insn of the sequence. */
2665 if (profile_block_flag && final_sequence == 0
2666 && ((GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == SET
2667 && GET_CODE (SET_SRC (body)) != LABEL_REF)
2668 || (GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == PARALLEL
2669 && GET_CODE (XVECEXP (body, 0, 0)) == SET
2670 && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) != LABEL_REF)))
2671 new_block = 1;
2673 #ifndef STACK_REGS
2674 /* Don't bother outputting obvious no-ops, even without -O.
2675 This optimization is fast and doesn't interfere with debugging.
2676 Don't do this if the insn is in a delay slot, since this
2677 will cause an improper number of delay insns to be written. */
2678 if (final_sequence == 0
2679 && prescan >= 0
2680 && GET_CODE (insn) == INSN && GET_CODE (body) == SET
2681 && GET_CODE (SET_SRC (body)) == REG
2682 && GET_CODE (SET_DEST (body)) == REG
2683 && REGNO (SET_SRC (body)) == REGNO (SET_DEST (body)))
2684 break;
2685 #endif
2687 #ifdef HAVE_cc0
2688 /* If this is a conditional branch, maybe modify it
2689 if the cc's are in a nonstandard state
2690 so that it accomplishes the same thing that it would
2691 do straightforwardly if the cc's were set up normally. */
2693 if (cc_status.flags != 0
2694 && GET_CODE (insn) == JUMP_INSN
2695 && GET_CODE (body) == SET
2696 && SET_DEST (body) == pc_rtx
2697 && GET_CODE (SET_SRC (body)) == IF_THEN_ELSE
2698 && GET_RTX_CLASS (GET_CODE (XEXP (SET_SRC (body), 0))) == '<'
2699 && XEXP (XEXP (SET_SRC (body), 0), 0) == cc0_rtx
2700 /* This is done during prescan; it is not done again
2701 in final scan when prescan has been done. */
2702 && prescan >= 0)
2704 /* This function may alter the contents of its argument
2705 and clear some of the cc_status.flags bits.
2706 It may also return 1 meaning condition now always true
2707 or -1 meaning condition now always false
2708 or 2 meaning condition nontrivial but altered. */
2709 register int result = alter_cond (XEXP (SET_SRC (body), 0));
2710 /* If condition now has fixed value, replace the IF_THEN_ELSE
2711 with its then-operand or its else-operand. */
2712 if (result == 1)
2713 SET_SRC (body) = XEXP (SET_SRC (body), 1);
2714 if (result == -1)
2715 SET_SRC (body) = XEXP (SET_SRC (body), 2);
2717 /* The jump is now either unconditional or a no-op.
2718 If it has become a no-op, don't try to output it.
2719 (It would not be recognized.) */
2720 if (SET_SRC (body) == pc_rtx)
2722 PUT_CODE (insn, NOTE);
2723 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
2724 NOTE_SOURCE_FILE (insn) = 0;
2725 break;
2727 else if (GET_CODE (SET_SRC (body)) == RETURN)
2728 /* Replace (set (pc) (return)) with (return). */
2729 PATTERN (insn) = body = SET_SRC (body);
2731 /* Rerecognize the instruction if it has changed. */
2732 if (result != 0)
2733 INSN_CODE (insn) = -1;
2736 /* Make same adjustments to instructions that examine the
2737 condition codes without jumping and instructions that
2738 handle conditional moves (if this machine has either one). */
2740 if (cc_status.flags != 0
2741 && set != 0)
2743 rtx cond_rtx, then_rtx, else_rtx;
2745 if (GET_CODE (insn) != JUMP_INSN
2746 && GET_CODE (SET_SRC (set)) == IF_THEN_ELSE)
2748 cond_rtx = XEXP (SET_SRC (set), 0);
2749 then_rtx = XEXP (SET_SRC (set), 1);
2750 else_rtx = XEXP (SET_SRC (set), 2);
2752 else
2754 cond_rtx = SET_SRC (set);
2755 then_rtx = const_true_rtx;
2756 else_rtx = const0_rtx;
2759 switch (GET_CODE (cond_rtx))
2761 case GTU:
2762 case GT:
2763 case LTU:
2764 case LT:
2765 case GEU:
2766 case GE:
2767 case LEU:
2768 case LE:
2769 case EQ:
2770 case NE:
2772 register int result;
2773 if (XEXP (cond_rtx, 0) != cc0_rtx)
2774 break;
2775 result = alter_cond (cond_rtx);
2776 if (result == 1)
2777 validate_change (insn, &SET_SRC (set), then_rtx, 0);
2778 else if (result == -1)
2779 validate_change (insn, &SET_SRC (set), else_rtx, 0);
2780 else if (result == 2)
2781 INSN_CODE (insn) = -1;
2782 if (SET_DEST (set) == SET_SRC (set))
2784 PUT_CODE (insn, NOTE);
2785 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
2786 NOTE_SOURCE_FILE (insn) = 0;
2789 break;
2791 default:
2792 break;
2796 #endif
2798 #ifdef HAVE_peephole
2799 /* Do machine-specific peephole optimizations if desired. */
2801 if (optimize && !flag_no_peephole && !nopeepholes)
2803 rtx next = peephole (insn);
2804 /* When peepholing, if there were notes within the peephole,
2805 emit them before the peephole. */
2806 if (next != 0 && next != NEXT_INSN (insn))
2808 rtx prev = PREV_INSN (insn);
2809 rtx note;
2811 for (note = NEXT_INSN (insn); note != next;
2812 note = NEXT_INSN (note))
2813 final_scan_insn (note, file, optimize, prescan, nopeepholes);
2815 /* In case this is prescan, put the notes
2816 in proper position for later rescan. */
2817 note = NEXT_INSN (insn);
2818 PREV_INSN (note) = prev;
2819 NEXT_INSN (prev) = note;
2820 NEXT_INSN (PREV_INSN (next)) = insn;
2821 PREV_INSN (insn) = PREV_INSN (next);
2822 NEXT_INSN (insn) = next;
2823 PREV_INSN (next) = insn;
2826 /* PEEPHOLE might have changed this. */
2827 body = PATTERN (insn);
2829 #endif
2831 /* Try to recognize the instruction.
2832 If successful, verify that the operands satisfy the
2833 constraints for the instruction. Crash if they don't,
2834 since `reload' should have changed them so that they do. */
2836 insn_code_number = recog_memoized (insn);
2837 cleanup_subreg_operands (insn);
2839 /* Dump the insn in the assembly for debugging. */
2840 if (flag_dump_rtl_in_asm)
2842 print_rtx_head = ASM_COMMENT_START;
2843 print_rtl_single (asm_out_file, insn);
2844 print_rtx_head = "";
2847 if (! constrain_operands_cached (1))
2848 fatal_insn_not_found (insn);
2850 /* Some target machines need to prescan each insn before
2851 it is output. */
2853 #ifdef FINAL_PRESCAN_INSN
2854 FINAL_PRESCAN_INSN (insn, recog_data.operand, recog_data.n_operands);
2855 #endif
2857 #ifdef HAVE_conditional_execution
2858 if (GET_CODE (PATTERN (insn)) == COND_EXEC)
2859 current_insn_predicate = COND_EXEC_TEST (PATTERN (insn));
2860 else
2861 current_insn_predicate = NULL_RTX;
2862 #endif
2864 #ifdef HAVE_cc0
2865 cc_prev_status = cc_status;
2867 /* Update `cc_status' for this instruction.
2868 The instruction's output routine may change it further.
2869 If the output routine for a jump insn needs to depend
2870 on the cc status, it should look at cc_prev_status. */
2872 NOTICE_UPDATE_CC (body, insn);
2873 #endif
2875 current_output_insn = debug_insn = insn;
2877 #if defined (DWARF2_UNWIND_INFO)
2878 if (GET_CODE (insn) == CALL_INSN && dwarf2out_do_frame ())
2879 dwarf2out_frame_debug (insn);
2880 #endif
2882 /* Find the proper template for this insn. */
2883 template = get_insn_template (insn_code_number, insn);
2885 /* If the C code returns 0, it means that it is a jump insn
2886 which follows a deleted test insn, and that test insn
2887 needs to be reinserted. */
2888 if (template == 0)
2890 rtx prev;
2892 if (prev_nonnote_insn (insn) != last_ignored_compare)
2893 abort ();
2894 new_block = 0;
2896 /* We have already processed the notes between the setter and
2897 the user. Make sure we don't process them again, this is
2898 particularly important if one of the notes is a block
2899 scope note or an EH note. */
2900 for (prev = insn;
2901 prev != last_ignored_compare;
2902 prev = PREV_INSN (prev))
2904 if (GET_CODE (prev) == NOTE)
2906 NOTE_LINE_NUMBER (prev) = NOTE_INSN_DELETED;
2907 NOTE_SOURCE_FILE (prev) = 0;
2911 return prev;
2914 /* If the template is the string "#", it means that this insn must
2915 be split. */
2916 if (template[0] == '#' && template[1] == '\0')
2918 rtx new = try_split (body, insn, 0);
2920 /* If we didn't split the insn, go away. */
2921 if (new == insn && PATTERN (new) == body)
2922 fatal_insn ("Could not split insn", insn);
2924 #ifdef HAVE_ATTR_length
2925 /* This instruction should have been split in shorten_branches,
2926 to ensure that we would have valid length info for the
2927 splitees. */
2928 abort ();
2929 #endif
2931 new_block = 0;
2932 return new;
2935 if (prescan > 0)
2936 break;
2938 #ifdef IA64_UNWIND_INFO
2939 IA64_UNWIND_EMIT (asm_out_file, insn);
2940 #endif
2941 /* Output assembler code from the template. */
2943 output_asm_insn (template, recog_data.operand);
2945 #if defined (DWARF2_UNWIND_INFO)
2946 #if defined (HAVE_prologue)
2947 if (GET_CODE (insn) == INSN && dwarf2out_do_frame ())
2948 dwarf2out_frame_debug (insn);
2949 #else
2950 if (!ACCUMULATE_OUTGOING_ARGS
2951 && GET_CODE (insn) == INSN
2952 && dwarf2out_do_frame ())
2953 dwarf2out_frame_debug (insn);
2954 #endif
2955 #endif
2957 #if 0
2958 /* It's not at all clear why we did this and doing so interferes
2959 with tests we'd like to do to use REG_WAS_0 notes, so let's try
2960 with this out. */
2962 /* Mark this insn as having been output. */
2963 INSN_DELETED_P (insn) = 1;
2964 #endif
2966 current_output_insn = debug_insn = 0;
2969 return NEXT_INSN (insn);
2972 /* Output debugging info to the assembler file FILE
2973 based on the NOTE-insn INSN, assumed to be a line number. */
2975 static void
2976 notice_source_line (insn)
2977 rtx insn;
2979 register const char *filename = NOTE_SOURCE_FILE (insn);
2981 /* Remember filename for basic block profiling.
2982 Filenames are allocated on the permanent obstack
2983 or are passed in ARGV, so we don't have to save
2984 the string. */
2986 if (profile_block_flag && last_filename != filename)
2987 bb_file_label_num = add_bb_string (filename, TRUE);
2989 last_filename = filename;
2990 last_linenum = NOTE_LINE_NUMBER (insn);
2991 high_block_linenum = MAX (last_linenum, high_block_linenum);
2992 high_function_linenum = MAX (last_linenum, high_function_linenum);
2995 /* For each operand in INSN, simplify (subreg (reg)) so that it refers
2996 directly to the desired hard register. */
2998 void
2999 cleanup_subreg_operands (insn)
3000 rtx insn;
3002 int i;
3003 extract_insn_cached (insn);
3004 for (i = 0; i < recog_data.n_operands; i++)
3006 if (GET_CODE (recog_data.operand[i]) == SUBREG)
3007 recog_data.operand[i] = alter_subreg (recog_data.operand[i]);
3008 else if (GET_CODE (recog_data.operand[i]) == PLUS
3009 || GET_CODE (recog_data.operand[i]) == MULT
3010 || GET_CODE (recog_data.operand[i]) == MEM)
3011 recog_data.operand[i] = walk_alter_subreg (recog_data.operand[i]);
3014 for (i = 0; i < recog_data.n_dups; i++)
3016 if (GET_CODE (*recog_data.dup_loc[i]) == SUBREG)
3017 *recog_data.dup_loc[i] = alter_subreg (*recog_data.dup_loc[i]);
3018 else if (GET_CODE (*recog_data.dup_loc[i]) == PLUS
3019 || GET_CODE (*recog_data.dup_loc[i]) == MULT
3020 || GET_CODE (*recog_data.dup_loc[i]) == MEM)
3021 *recog_data.dup_loc[i] = walk_alter_subreg (*recog_data.dup_loc[i]);
3025 /* If X is a SUBREG, replace it with a REG or a MEM,
3026 based on the thing it is a subreg of. */
3029 alter_subreg (x)
3030 register rtx x;
3032 register rtx y = SUBREG_REG (x);
3034 if (GET_CODE (y) == SUBREG)
3035 y = alter_subreg (y);
3037 /* If reload is operating, we may be replacing inside this SUBREG.
3038 Check for that and make a new one if so. */
3039 if (reload_in_progress && find_replacement (&SUBREG_REG (x)) != 0)
3040 x = copy_rtx (x);
3042 if (GET_CODE (y) == REG)
3044 int regno = subreg_hard_regno (x, 1);
3046 PUT_CODE (x, REG);
3047 REGNO (x) = regno;
3048 ORIGINAL_REGNO (x) = ORIGINAL_REGNO (y);
3049 /* This field has a different meaning for REGs and SUBREGs. Make sure
3050 to clear it! */
3051 x->used = 0;
3053 else if (GET_CODE (y) == MEM)
3055 HOST_WIDE_INT offset = SUBREG_BYTE (x);
3057 /* Catch these instead of generating incorrect code. */
3058 if ((offset % GET_MODE_SIZE (GET_MODE (x))) != 0)
3059 abort ();
3061 PUT_CODE (x, MEM);
3062 MEM_COPY_ATTRIBUTES (x, y);
3063 XEXP (x, 0) = plus_constant (XEXP (y, 0), offset);
3066 return x;
3069 /* Do alter_subreg on all the SUBREGs contained in X. */
3071 static rtx
3072 walk_alter_subreg (x)
3073 rtx x;
3075 switch (GET_CODE (x))
3077 case PLUS:
3078 case MULT:
3079 XEXP (x, 0) = walk_alter_subreg (XEXP (x, 0));
3080 XEXP (x, 1) = walk_alter_subreg (XEXP (x, 1));
3081 break;
3083 case MEM:
3084 XEXP (x, 0) = walk_alter_subreg (XEXP (x, 0));
3085 break;
3087 case SUBREG:
3088 return alter_subreg (x);
3090 default:
3091 break;
3094 return x;
3097 #ifdef HAVE_cc0
3099 /* Given BODY, the body of a jump instruction, alter the jump condition
3100 as required by the bits that are set in cc_status.flags.
3101 Not all of the bits there can be handled at this level in all cases.
3103 The value is normally 0.
3104 1 means that the condition has become always true.
3105 -1 means that the condition has become always false.
3106 2 means that COND has been altered. */
3108 static int
3109 alter_cond (cond)
3110 register rtx cond;
3112 int value = 0;
3114 if (cc_status.flags & CC_REVERSED)
3116 value = 2;
3117 PUT_CODE (cond, swap_condition (GET_CODE (cond)));
3120 if (cc_status.flags & CC_INVERTED)
3122 value = 2;
3123 PUT_CODE (cond, reverse_condition (GET_CODE (cond)));
3126 if (cc_status.flags & CC_NOT_POSITIVE)
3127 switch (GET_CODE (cond))
3129 case LE:
3130 case LEU:
3131 case GEU:
3132 /* Jump becomes unconditional. */
3133 return 1;
3135 case GT:
3136 case GTU:
3137 case LTU:
3138 /* Jump becomes no-op. */
3139 return -1;
3141 case GE:
3142 PUT_CODE (cond, EQ);
3143 value = 2;
3144 break;
3146 case LT:
3147 PUT_CODE (cond, NE);
3148 value = 2;
3149 break;
3151 default:
3152 break;
3155 if (cc_status.flags & CC_NOT_NEGATIVE)
3156 switch (GET_CODE (cond))
3158 case GE:
3159 case GEU:
3160 /* Jump becomes unconditional. */
3161 return 1;
3163 case LT:
3164 case LTU:
3165 /* Jump becomes no-op. */
3166 return -1;
3168 case LE:
3169 case LEU:
3170 PUT_CODE (cond, EQ);
3171 value = 2;
3172 break;
3174 case GT:
3175 case GTU:
3176 PUT_CODE (cond, NE);
3177 value = 2;
3178 break;
3180 default:
3181 break;
3184 if (cc_status.flags & CC_NO_OVERFLOW)
3185 switch (GET_CODE (cond))
3187 case GEU:
3188 /* Jump becomes unconditional. */
3189 return 1;
3191 case LEU:
3192 PUT_CODE (cond, EQ);
3193 value = 2;
3194 break;
3196 case GTU:
3197 PUT_CODE (cond, NE);
3198 value = 2;
3199 break;
3201 case LTU:
3202 /* Jump becomes no-op. */
3203 return -1;
3205 default:
3206 break;
3209 if (cc_status.flags & (CC_Z_IN_NOT_N | CC_Z_IN_N))
3210 switch (GET_CODE (cond))
3212 default:
3213 abort ();
3215 case NE:
3216 PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? GE : LT);
3217 value = 2;
3218 break;
3220 case EQ:
3221 PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? LT : GE);
3222 value = 2;
3223 break;
3226 if (cc_status.flags & CC_NOT_SIGNED)
3227 /* The flags are valid if signed condition operators are converted
3228 to unsigned. */
3229 switch (GET_CODE (cond))
3231 case LE:
3232 PUT_CODE (cond, LEU);
3233 value = 2;
3234 break;
3236 case LT:
3237 PUT_CODE (cond, LTU);
3238 value = 2;
3239 break;
3241 case GT:
3242 PUT_CODE (cond, GTU);
3243 value = 2;
3244 break;
3246 case GE:
3247 PUT_CODE (cond, GEU);
3248 value = 2;
3249 break;
3251 default:
3252 break;
3255 return value;
3257 #endif
3259 /* Report inconsistency between the assembler template and the operands.
3260 In an `asm', it's the user's fault; otherwise, the compiler's fault. */
3262 void
3263 output_operand_lossage (msgid)
3264 const char *msgid;
3266 if (this_is_asm_operands)
3267 error_for_asm (this_is_asm_operands, "invalid `asm': %s", _(msgid));
3268 else
3269 internal_error ("output_operand: %s", _(msgid));
3272 /* Output of assembler code from a template, and its subroutines. */
3274 /* Output text from TEMPLATE to the assembler output file,
3275 obeying %-directions to substitute operands taken from
3276 the vector OPERANDS.
3278 %N (for N a digit) means print operand N in usual manner.
3279 %lN means require operand N to be a CODE_LABEL or LABEL_REF
3280 and print the label name with no punctuation.
3281 %cN means require operand N to be a constant
3282 and print the constant expression with no punctuation.
3283 %aN means expect operand N to be a memory address
3284 (not a memory reference!) and print a reference
3285 to that address.
3286 %nN means expect operand N to be a constant
3287 and print a constant expression for minus the value
3288 of the operand, with no other punctuation. */
3290 static void
3291 output_asm_name ()
3293 if (flag_print_asm_name)
3295 /* Annotate the assembly with a comment describing the pattern and
3296 alternative used. */
3297 if (debug_insn)
3299 register int num = INSN_CODE (debug_insn);
3300 fprintf (asm_out_file, "\t%s %d\t%s",
3301 ASM_COMMENT_START, INSN_UID (debug_insn),
3302 insn_data[num].name);
3303 if (insn_data[num].n_alternatives > 1)
3304 fprintf (asm_out_file, "/%d", which_alternative + 1);
3305 #ifdef HAVE_ATTR_length
3306 fprintf (asm_out_file, "\t[length = %d]",
3307 get_attr_length (debug_insn));
3308 #endif
3309 /* Clear this so only the first assembler insn
3310 of any rtl insn will get the special comment for -dp. */
3311 debug_insn = 0;
3316 void
3317 output_asm_insn (template, operands)
3318 const char *template;
3319 rtx *operands;
3321 register const char *p;
3322 register int c;
3324 /* An insn may return a null string template
3325 in a case where no assembler code is needed. */
3326 if (*template == 0)
3327 return;
3329 p = template;
3330 putc ('\t', asm_out_file);
3332 #ifdef ASM_OUTPUT_OPCODE
3333 ASM_OUTPUT_OPCODE (asm_out_file, p);
3334 #endif
3336 while ((c = *p++))
3337 switch (c)
3339 case '\n':
3340 output_asm_name ();
3341 putc (c, asm_out_file);
3342 #ifdef ASM_OUTPUT_OPCODE
3343 while ((c = *p) == '\t')
3345 putc (c, asm_out_file);
3346 p++;
3348 ASM_OUTPUT_OPCODE (asm_out_file, p);
3349 #endif
3350 break;
3352 #ifdef ASSEMBLER_DIALECT
3353 case '{':
3355 register int i;
3357 /* If we want the first dialect, do nothing. Otherwise, skip
3358 DIALECT_NUMBER of strings ending with '|'. */
3359 for (i = 0; i < dialect_number; i++)
3361 while (*p && *p != '}' && *p++ != '|')
3363 if (*p == '}')
3364 break;
3365 if (*p == '|')
3366 p++;
3369 break;
3371 case '|':
3372 /* Skip to close brace. */
3373 while (*p && *p++ != '}')
3375 break;
3377 case '}':
3378 break;
3379 #endif
3381 case '%':
3382 /* %% outputs a single %. */
3383 if (*p == '%')
3385 p++;
3386 putc (c, asm_out_file);
3388 /* %= outputs a number which is unique to each insn in the entire
3389 compilation. This is useful for making local labels that are
3390 referred to more than once in a given insn. */
3391 else if (*p == '=')
3393 p++;
3394 fprintf (asm_out_file, "%d", insn_counter);
3396 /* % followed by a letter and some digits
3397 outputs an operand in a special way depending on the letter.
3398 Letters `acln' are implemented directly.
3399 Other letters are passed to `output_operand' so that
3400 the PRINT_OPERAND macro can define them. */
3401 else if (ISLOWER (*p) || ISUPPER (*p))
3403 int letter = *p++;
3404 c = atoi (p);
3406 if (! (*p >= '0' && *p <= '9'))
3407 output_operand_lossage ("operand number missing after %-letter");
3408 else if (this_is_asm_operands && (c < 0 || (unsigned int) c >= insn_noperands))
3409 output_operand_lossage ("operand number out of range");
3410 else if (letter == 'l')
3411 output_asm_label (operands[c]);
3412 else if (letter == 'a')
3413 output_address (operands[c]);
3414 else if (letter == 'c')
3416 if (CONSTANT_ADDRESS_P (operands[c]))
3417 output_addr_const (asm_out_file, operands[c]);
3418 else
3419 output_operand (operands[c], 'c');
3421 else if (letter == 'n')
3423 if (GET_CODE (operands[c]) == CONST_INT)
3424 fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC,
3425 - INTVAL (operands[c]));
3426 else
3428 putc ('-', asm_out_file);
3429 output_addr_const (asm_out_file, operands[c]);
3432 else
3433 output_operand (operands[c], letter);
3435 while ((c = *p) >= '0' && c <= '9')
3436 p++;
3438 /* % followed by a digit outputs an operand the default way. */
3439 else if (*p >= '0' && *p <= '9')
3441 c = atoi (p);
3442 if (this_is_asm_operands
3443 && (c < 0 || (unsigned int) c >= insn_noperands))
3444 output_operand_lossage ("operand number out of range");
3445 else
3446 output_operand (operands[c], 0);
3447 while ((c = *p) >= '0' && c <= '9')
3448 p++;
3450 /* % followed by punctuation: output something for that
3451 punctuation character alone, with no operand.
3452 The PRINT_OPERAND macro decides what is actually done. */
3453 #ifdef PRINT_OPERAND_PUNCT_VALID_P
3454 else if (PRINT_OPERAND_PUNCT_VALID_P ((unsigned char) *p))
3455 output_operand (NULL_RTX, *p++);
3456 #endif
3457 else
3458 output_operand_lossage ("invalid %%-code");
3459 break;
3461 default:
3462 putc (c, asm_out_file);
3465 output_asm_name ();
3467 putc ('\n', asm_out_file);
3470 /* Output a LABEL_REF, or a bare CODE_LABEL, as an assembler symbol. */
3472 void
3473 output_asm_label (x)
3474 rtx x;
3476 char buf[256];
3478 if (GET_CODE (x) == LABEL_REF)
3479 x = XEXP (x, 0);
3480 if (GET_CODE (x) == CODE_LABEL
3481 || (GET_CODE (x) == NOTE
3482 && NOTE_LINE_NUMBER (x) == NOTE_INSN_DELETED_LABEL))
3483 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
3484 else
3485 output_operand_lossage ("`%l' operand isn't a label");
3487 assemble_name (asm_out_file, buf);
3490 /* Print operand X using machine-dependent assembler syntax.
3491 The macro PRINT_OPERAND is defined just to control this function.
3492 CODE is a non-digit that preceded the operand-number in the % spec,
3493 such as 'z' if the spec was `%z3'. CODE is 0 if there was no char
3494 between the % and the digits.
3495 When CODE is a non-letter, X is 0.
3497 The meanings of the letters are machine-dependent and controlled
3498 by PRINT_OPERAND. */
3500 static void
3501 output_operand (x, code)
3502 rtx x;
3503 int code ATTRIBUTE_UNUSED;
3505 if (x && GET_CODE (x) == SUBREG)
3506 x = alter_subreg (x);
3508 /* If X is a pseudo-register, abort now rather than writing trash to the
3509 assembler file. */
3511 if (x && GET_CODE (x) == REG && REGNO (x) >= FIRST_PSEUDO_REGISTER)
3512 abort ();
3514 PRINT_OPERAND (asm_out_file, x, code);
3517 /* Print a memory reference operand for address X
3518 using machine-dependent assembler syntax.
3519 The macro PRINT_OPERAND_ADDRESS exists just to control this function. */
3521 void
3522 output_address (x)
3523 rtx x;
3525 walk_alter_subreg (x);
3526 PRINT_OPERAND_ADDRESS (asm_out_file, x);
3529 /* Print an integer constant expression in assembler syntax.
3530 Addition and subtraction are the only arithmetic
3531 that may appear in these expressions. */
3533 void
3534 output_addr_const (file, x)
3535 FILE *file;
3536 rtx x;
3538 char buf[256];
3540 restart:
3541 switch (GET_CODE (x))
3543 case PC:
3544 if (flag_pic)
3545 putc ('.', file);
3546 else
3547 abort ();
3548 break;
3550 case SYMBOL_REF:
3551 #ifdef ASM_OUTPUT_SYMBOL_REF
3552 ASM_OUTPUT_SYMBOL_REF (file, x);
3553 #else
3554 assemble_name (file, XSTR (x, 0));
3555 #endif
3556 break;
3558 case LABEL_REF:
3559 x = XEXP (x, 0);
3560 /* Fall through. */
3561 case CODE_LABEL:
3562 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
3563 assemble_name (file, buf);
3564 break;
3566 case CONST_INT:
3567 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x));
3568 break;
3570 case CONST:
3571 /* This used to output parentheses around the expression,
3572 but that does not work on the 386 (either ATT or BSD assembler). */
3573 output_addr_const (file, XEXP (x, 0));
3574 break;
3576 case CONST_DOUBLE:
3577 if (GET_MODE (x) == VOIDmode)
3579 /* We can use %d if the number is one word and positive. */
3580 if (CONST_DOUBLE_HIGH (x))
3581 fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
3582 CONST_DOUBLE_HIGH (x), CONST_DOUBLE_LOW (x));
3583 else if (CONST_DOUBLE_LOW (x) < 0)
3584 fprintf (file, HOST_WIDE_INT_PRINT_HEX, CONST_DOUBLE_LOW (x));
3585 else
3586 fprintf (file, HOST_WIDE_INT_PRINT_DEC, CONST_DOUBLE_LOW (x));
3588 else
3589 /* We can't handle floating point constants;
3590 PRINT_OPERAND must handle them. */
3591 output_operand_lossage ("floating constant misused");
3592 break;
3594 case PLUS:
3595 /* Some assemblers need integer constants to appear last (eg masm). */
3596 if (GET_CODE (XEXP (x, 0)) == CONST_INT)
3598 output_addr_const (file, XEXP (x, 1));
3599 if (INTVAL (XEXP (x, 0)) >= 0)
3600 fprintf (file, "+");
3601 output_addr_const (file, XEXP (x, 0));
3603 else
3605 output_addr_const (file, XEXP (x, 0));
3606 if (GET_CODE (XEXP (x, 1)) != CONST_INT
3607 || INTVAL (XEXP (x, 1)) >= 0)
3608 fprintf (file, "+");
3609 output_addr_const (file, XEXP (x, 1));
3611 break;
3613 case MINUS:
3614 /* Avoid outputting things like x-x or x+5-x,
3615 since some assemblers can't handle that. */
3616 x = simplify_subtraction (x);
3617 if (GET_CODE (x) != MINUS)
3618 goto restart;
3620 output_addr_const (file, XEXP (x, 0));
3621 fprintf (file, "-");
3622 if ((GET_CODE (XEXP (x, 1)) == CONST_INT
3623 && INTVAL (XEXP (x, 1)) < 0)
3624 || GET_CODE (XEXP (x, 1)) != CONST_INT)
3626 fputs (targetm.asm_out.open_paren, file);
3627 output_addr_const (file, XEXP (x, 1));
3628 fputs (targetm.asm_out.close_paren, file);
3630 else
3631 output_addr_const (file, XEXP (x, 1));
3632 break;
3634 case ZERO_EXTEND:
3635 case SIGN_EXTEND:
3636 output_addr_const (file, XEXP (x, 0));
3637 break;
3639 default:
3640 #ifdef OUTPUT_ADDR_CONST_EXTRA
3641 OUTPUT_ADDR_CONST_EXTRA (file, x, fail);
3642 break;
3644 fail:
3645 #endif
3646 output_operand_lossage ("invalid expression as operand");
3650 /* A poor man's fprintf, with the added features of %I, %R, %L, and %U.
3651 %R prints the value of REGISTER_PREFIX.
3652 %L prints the value of LOCAL_LABEL_PREFIX.
3653 %U prints the value of USER_LABEL_PREFIX.
3654 %I prints the value of IMMEDIATE_PREFIX.
3655 %O runs ASM_OUTPUT_OPCODE to transform what follows in the string.
3656 Also supported are %d, %x, %s, %e, %f, %g and %%.
3658 We handle alternate assembler dialects here, just like output_asm_insn. */
3660 void
3661 asm_fprintf VPARAMS ((FILE *file, const char *p, ...))
3663 char buf[10];
3664 char *q, c;
3666 VA_OPEN (argptr, p);
3667 VA_FIXEDARG (argptr, FILE *, file);
3668 VA_FIXEDARG (argptr, const char *, p);
3670 buf[0] = '%';
3672 while ((c = *p++))
3673 switch (c)
3675 #ifdef ASSEMBLER_DIALECT
3676 case '{':
3678 int i;
3680 /* If we want the first dialect, do nothing. Otherwise, skip
3681 DIALECT_NUMBER of strings ending with '|'. */
3682 for (i = 0; i < dialect_number; i++)
3684 while (*p && *p++ != '|')
3687 if (*p == '|')
3688 p++;
3691 break;
3693 case '|':
3694 /* Skip to close brace. */
3695 while (*p && *p++ != '}')
3697 break;
3699 case '}':
3700 break;
3701 #endif
3703 case '%':
3704 c = *p++;
3705 q = &buf[1];
3706 while ((c >= '0' && c <= '9') || c == '.')
3708 *q++ = c;
3709 c = *p++;
3711 switch (c)
3713 case '%':
3714 fprintf (file, "%%");
3715 break;
3717 case 'd': case 'i': case 'u':
3718 case 'x': case 'p': case 'X':
3719 case 'o':
3720 *q++ = c;
3721 *q = 0;
3722 fprintf (file, buf, va_arg (argptr, int));
3723 break;
3725 case 'w':
3726 /* This is a prefix to the 'd', 'i', 'u', 'x', 'p', and 'X' cases,
3727 but we do not check for those cases. It means that the value
3728 is a HOST_WIDE_INT, which may be either `int' or `long'. */
3730 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
3731 #else
3732 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
3733 *q++ = 'l';
3734 #else
3735 *q++ = 'l';
3736 *q++ = 'l';
3737 #endif
3738 #endif
3740 *q++ = *p++;
3741 *q = 0;
3742 fprintf (file, buf, va_arg (argptr, HOST_WIDE_INT));
3743 break;
3745 case 'l':
3746 *q++ = c;
3747 *q++ = *p++;
3748 *q = 0;
3749 fprintf (file, buf, va_arg (argptr, long));
3750 break;
3752 case 'e':
3753 case 'f':
3754 case 'g':
3755 *q++ = c;
3756 *q = 0;
3757 fprintf (file, buf, va_arg (argptr, double));
3758 break;
3760 case 's':
3761 *q++ = c;
3762 *q = 0;
3763 fprintf (file, buf, va_arg (argptr, char *));
3764 break;
3766 case 'O':
3767 #ifdef ASM_OUTPUT_OPCODE
3768 ASM_OUTPUT_OPCODE (asm_out_file, p);
3769 #endif
3770 break;
3772 case 'R':
3773 #ifdef REGISTER_PREFIX
3774 fprintf (file, "%s", REGISTER_PREFIX);
3775 #endif
3776 break;
3778 case 'I':
3779 #ifdef IMMEDIATE_PREFIX
3780 fprintf (file, "%s", IMMEDIATE_PREFIX);
3781 #endif
3782 break;
3784 case 'L':
3785 #ifdef LOCAL_LABEL_PREFIX
3786 fprintf (file, "%s", LOCAL_LABEL_PREFIX);
3787 #endif
3788 break;
3790 case 'U':
3791 fputs (user_label_prefix, file);
3792 break;
3794 #ifdef ASM_FPRINTF_EXTENSIONS
3795 /* Upper case letters are reserved for general use by asm_fprintf
3796 and so are not available to target specific code. In order to
3797 prevent the ASM_FPRINTF_EXTENSIONS macro from using them then,
3798 they are defined here. As they get turned into real extensions
3799 to asm_fprintf they should be removed from this list. */
3800 case 'A': case 'B': case 'C': case 'D': case 'E':
3801 case 'F': case 'G': case 'H': case 'J': case 'K':
3802 case 'M': case 'N': case 'P': case 'Q': case 'S':
3803 case 'T': case 'V': case 'W': case 'Y': case 'Z':
3804 break;
3806 ASM_FPRINTF_EXTENSIONS (file, argptr, p)
3807 #endif
3808 default:
3809 abort ();
3811 break;
3813 default:
3814 fputc (c, file);
3816 VA_CLOSE (argptr);
3819 /* Split up a CONST_DOUBLE or integer constant rtx
3820 into two rtx's for single words,
3821 storing in *FIRST the word that comes first in memory in the target
3822 and in *SECOND the other. */
3824 void
3825 split_double (value, first, second)
3826 rtx value;
3827 rtx *first, *second;
3829 if (GET_CODE (value) == CONST_INT)
3831 if (HOST_BITS_PER_WIDE_INT >= (2 * BITS_PER_WORD))
3833 /* In this case the CONST_INT holds both target words.
3834 Extract the bits from it into two word-sized pieces.
3835 Sign extend each half to HOST_WIDE_INT. */
3836 unsigned HOST_WIDE_INT low, high;
3837 unsigned HOST_WIDE_INT mask, sign_bit, sign_extend;
3839 /* Set sign_bit to the most significant bit of a word. */
3840 sign_bit = 1;
3841 sign_bit <<= BITS_PER_WORD - 1;
3843 /* Set mask so that all bits of the word are set. We could
3844 have used 1 << BITS_PER_WORD instead of basing the
3845 calculation on sign_bit. However, on machines where
3846 HOST_BITS_PER_WIDE_INT == BITS_PER_WORD, it could cause a
3847 compiler warning, even though the code would never be
3848 executed. */
3849 mask = sign_bit << 1;
3850 mask--;
3852 /* Set sign_extend as any remaining bits. */
3853 sign_extend = ~mask;
3855 /* Pick the lower word and sign-extend it. */
3856 low = INTVAL (value);
3857 low &= mask;
3858 if (low & sign_bit)
3859 low |= sign_extend;
3861 /* Pick the higher word, shifted to the least significant
3862 bits, and sign-extend it. */
3863 high = INTVAL (value);
3864 high >>= BITS_PER_WORD - 1;
3865 high >>= 1;
3866 high &= mask;
3867 if (high & sign_bit)
3868 high |= sign_extend;
3870 /* Store the words in the target machine order. */
3871 if (WORDS_BIG_ENDIAN)
3873 *first = GEN_INT (high);
3874 *second = GEN_INT (low);
3876 else
3878 *first = GEN_INT (low);
3879 *second = GEN_INT (high);
3882 else
3884 /* The rule for using CONST_INT for a wider mode
3885 is that we regard the value as signed.
3886 So sign-extend it. */
3887 rtx high = (INTVAL (value) < 0 ? constm1_rtx : const0_rtx);
3888 if (WORDS_BIG_ENDIAN)
3890 *first = high;
3891 *second = value;
3893 else
3895 *first = value;
3896 *second = high;
3900 else if (GET_CODE (value) != CONST_DOUBLE)
3902 if (WORDS_BIG_ENDIAN)
3904 *first = const0_rtx;
3905 *second = value;
3907 else
3909 *first = value;
3910 *second = const0_rtx;
3913 else if (GET_MODE (value) == VOIDmode
3914 /* This is the old way we did CONST_DOUBLE integers. */
3915 || GET_MODE_CLASS (GET_MODE (value)) == MODE_INT)
3917 /* In an integer, the words are defined as most and least significant.
3918 So order them by the target's convention. */
3919 if (WORDS_BIG_ENDIAN)
3921 *first = GEN_INT (CONST_DOUBLE_HIGH (value));
3922 *second = GEN_INT (CONST_DOUBLE_LOW (value));
3924 else
3926 *first = GEN_INT (CONST_DOUBLE_LOW (value));
3927 *second = GEN_INT (CONST_DOUBLE_HIGH (value));
3930 else
3932 #ifdef REAL_ARITHMETIC
3933 REAL_VALUE_TYPE r;
3934 long l[2];
3935 REAL_VALUE_FROM_CONST_DOUBLE (r, value);
3937 /* Note, this converts the REAL_VALUE_TYPE to the target's
3938 format, splits up the floating point double and outputs
3939 exactly 32 bits of it into each of l[0] and l[1] --
3940 not necessarily BITS_PER_WORD bits. */
3941 REAL_VALUE_TO_TARGET_DOUBLE (r, l);
3943 /* If 32 bits is an entire word for the target, but not for the host,
3944 then sign-extend on the host so that the number will look the same
3945 way on the host that it would on the target. See for instance
3946 simplify_unary_operation. The #if is needed to avoid compiler
3947 warnings. */
3949 #if HOST_BITS_PER_LONG > 32
3950 if (BITS_PER_WORD < HOST_BITS_PER_LONG && BITS_PER_WORD == 32)
3952 if (l[0] & ((long) 1 << 31))
3953 l[0] |= ((long) (-1) << 32);
3954 if (l[1] & ((long) 1 << 31))
3955 l[1] |= ((long) (-1) << 32);
3957 #endif
3959 *first = GEN_INT ((HOST_WIDE_INT) l[0]);
3960 *second = GEN_INT ((HOST_WIDE_INT) l[1]);
3961 #else
3962 if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
3963 || HOST_BITS_PER_WIDE_INT != BITS_PER_WORD)
3964 && ! flag_pretend_float)
3965 abort ();
3967 if (
3968 #ifdef HOST_WORDS_BIG_ENDIAN
3969 WORDS_BIG_ENDIAN
3970 #else
3971 ! WORDS_BIG_ENDIAN
3972 #endif
3975 /* Host and target agree => no need to swap. */
3976 *first = GEN_INT (CONST_DOUBLE_LOW (value));
3977 *second = GEN_INT (CONST_DOUBLE_HIGH (value));
3979 else
3981 *second = GEN_INT (CONST_DOUBLE_LOW (value));
3982 *first = GEN_INT (CONST_DOUBLE_HIGH (value));
3984 #endif /* no REAL_ARITHMETIC */
3988 /* Return nonzero if this function has no function calls. */
3991 leaf_function_p ()
3993 rtx insn;
3994 rtx link;
3996 if (profile_flag || profile_block_flag || profile_arc_flag)
3997 return 0;
3999 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
4001 if (GET_CODE (insn) == CALL_INSN
4002 && ! SIBLING_CALL_P (insn))
4003 return 0;
4004 if (GET_CODE (insn) == INSN
4005 && GET_CODE (PATTERN (insn)) == SEQUENCE
4006 && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == CALL_INSN
4007 && ! SIBLING_CALL_P (XVECEXP (PATTERN (insn), 0, 0)))
4008 return 0;
4010 for (link = current_function_epilogue_delay_list;
4011 link;
4012 link = XEXP (link, 1))
4014 insn = XEXP (link, 0);
4016 if (GET_CODE (insn) == CALL_INSN
4017 && ! SIBLING_CALL_P (insn))
4018 return 0;
4019 if (GET_CODE (insn) == INSN
4020 && GET_CODE (PATTERN (insn)) == SEQUENCE
4021 && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == CALL_INSN
4022 && ! SIBLING_CALL_P (XVECEXP (PATTERN (insn), 0, 0)))
4023 return 0;
4026 return 1;
4029 /* Return 1 if branch is an forward branch.
4030 Uses insn_shuid array, so it works only in the final pass. May be used by
4031 output templates to customary add branch prediction hints.
4034 final_forward_branch_p (insn)
4035 rtx insn;
4037 int insn_id, label_id;
4038 if (!uid_shuid)
4039 abort ();
4040 insn_id = INSN_SHUID (insn);
4041 label_id = INSN_SHUID (JUMP_LABEL (insn));
4042 /* We've hit some insns that does not have id information available. */
4043 if (!insn_id || !label_id)
4044 abort ();
4045 return insn_id < label_id;
4048 /* On some machines, a function with no call insns
4049 can run faster if it doesn't create its own register window.
4050 When output, the leaf function should use only the "output"
4051 registers. Ordinarily, the function would be compiled to use
4052 the "input" registers to find its arguments; it is a candidate
4053 for leaf treatment if it uses only the "input" registers.
4054 Leaf function treatment means renumbering so the function
4055 uses the "output" registers instead. */
4057 #ifdef LEAF_REGISTERS
4059 /* Return 1 if this function uses only the registers that can be
4060 safely renumbered. */
4063 only_leaf_regs_used ()
4065 int i;
4066 char *permitted_reg_in_leaf_functions = LEAF_REGISTERS;
4068 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
4069 if ((regs_ever_live[i] || global_regs[i])
4070 && ! permitted_reg_in_leaf_functions[i])
4071 return 0;
4073 if (current_function_uses_pic_offset_table
4074 && pic_offset_table_rtx != 0
4075 && GET_CODE (pic_offset_table_rtx) == REG
4076 && ! permitted_reg_in_leaf_functions[REGNO (pic_offset_table_rtx)])
4077 return 0;
4079 return 1;
4082 /* Scan all instructions and renumber all registers into those
4083 available in leaf functions. */
4085 static void
4086 leaf_renumber_regs (first)
4087 rtx first;
4089 rtx insn;
4091 /* Renumber only the actual patterns.
4092 The reg-notes can contain frame pointer refs,
4093 and renumbering them could crash, and should not be needed. */
4094 for (insn = first; insn; insn = NEXT_INSN (insn))
4095 if (INSN_P (insn))
4096 leaf_renumber_regs_insn (PATTERN (insn));
4097 for (insn = current_function_epilogue_delay_list;
4098 insn;
4099 insn = XEXP (insn, 1))
4100 if (INSN_P (XEXP (insn, 0)))
4101 leaf_renumber_regs_insn (PATTERN (XEXP (insn, 0)));
4104 /* Scan IN_RTX and its subexpressions, and renumber all regs into those
4105 available in leaf functions. */
4107 void
4108 leaf_renumber_regs_insn (in_rtx)
4109 register rtx in_rtx;
4111 register int i, j;
4112 register const char *format_ptr;
4114 if (in_rtx == 0)
4115 return;
4117 /* Renumber all input-registers into output-registers.
4118 renumbered_regs would be 1 for an output-register;
4119 they */
4121 if (GET_CODE (in_rtx) == REG)
4123 int newreg;
4125 /* Don't renumber the same reg twice. */
4126 if (in_rtx->used)
4127 return;
4129 newreg = REGNO (in_rtx);
4130 /* Don't try to renumber pseudo regs. It is possible for a pseudo reg
4131 to reach here as part of a REG_NOTE. */
4132 if (newreg >= FIRST_PSEUDO_REGISTER)
4134 in_rtx->used = 1;
4135 return;
4137 newreg = LEAF_REG_REMAP (newreg);
4138 if (newreg < 0)
4139 abort ();
4140 regs_ever_live[REGNO (in_rtx)] = 0;
4141 regs_ever_live[newreg] = 1;
4142 REGNO (in_rtx) = newreg;
4143 in_rtx->used = 1;
4146 if (INSN_P (in_rtx))
4148 /* Inside a SEQUENCE, we find insns.
4149 Renumber just the patterns of these insns,
4150 just as we do for the top-level insns. */
4151 leaf_renumber_regs_insn (PATTERN (in_rtx));
4152 return;
4155 format_ptr = GET_RTX_FORMAT (GET_CODE (in_rtx));
4157 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (in_rtx)); i++)
4158 switch (*format_ptr++)
4160 case 'e':
4161 leaf_renumber_regs_insn (XEXP (in_rtx, i));
4162 break;
4164 case 'E':
4165 if (NULL != XVEC (in_rtx, i))
4167 for (j = 0; j < XVECLEN (in_rtx, i); j++)
4168 leaf_renumber_regs_insn (XVECEXP (in_rtx, i, j));
4170 break;
4172 case 'S':
4173 case 's':
4174 case '0':
4175 case 'i':
4176 case 'w':
4177 case 'n':
4178 case 'u':
4179 break;
4181 default:
4182 abort ();
4185 #endif