1 /* Convert RTL to assembler code and output it, for GNU compiler.
2 Copyright (C) 1987, 88, 89, 92, 93, 94, 1995 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 /* This is the final pass of the compiler.
22 It looks at the rtl code for a function and outputs assembler code.
24 Call `final_start_function' to output the assembler code for function entry,
25 `final' to output assembler code for some RTL code,
26 `final_end_function' to output assembler code for function exit.
27 If a function is compiled in several pieces, each piece is
28 output separately with `final'.
30 Some optimizations are also done at this level.
31 Move instructions that were made unnecessary by good register allocation
32 are detected and omitted from the output. (Though most of these
33 are removed by the last jump pass.)
35 Instructions to set the condition codes are omitted when it can be
36 seen that the condition codes already had the desired values.
38 In some cases it is sufficient if the inherited condition codes
39 have related values, but this may require the following insn
40 (the one that tests the condition codes) to be modified.
42 The code for the function prologue and epilogue are generated
43 directly as assembler code by the macros FUNCTION_PROLOGUE and
44 FUNCTION_EPILOGUE. Those instructions never exist as rtl. */
58 #include "insn-config.h"
59 #include "insn-flags.h"
60 #include "insn-attr.h"
61 #include "insn-codes.h"
63 #include "conditions.h"
66 #include "hard-reg-set.h"
70 /* Get N_SLINE and N_SOL from stab.h if we can expect the file to exist. */
71 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
72 #if defined (USG) || defined (NO_STAB_H)
73 #include "gstab.h" /* If doing DBX on sysV, use our own stab.h. */
75 #include <stab.h> /* On BSD, use the system's stab.h. */
77 #endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
79 #ifdef XCOFF_DEBUGGING_INFO
83 /* .stabd code for line number. */
88 /* .stabs code for included file name. */
94 #define INT_TYPE_SIZE BITS_PER_WORD
97 /* If we aren't using cc0, CC_STATUS_INIT shouldn't exist. So define a
98 null default for it to save conditionalization later. */
99 #ifndef CC_STATUS_INIT
100 #define CC_STATUS_INIT
103 /* How to start an assembler comment. */
104 #ifndef ASM_COMMENT_START
105 #define ASM_COMMENT_START ";#"
108 /* Is the given character a logical line separator for the assembler? */
109 #ifndef IS_ASM_LOGICAL_LINE_SEPARATOR
110 #define IS_ASM_LOGICAL_LINE_SEPARATOR(C) ((C) == ';')
113 /* Nonzero means this function is a leaf function, with no function calls.
114 This variable exists to be examined in FUNCTION_PROLOGUE
115 and FUNCTION_EPILOGUE. Always zero, unless set by some action. */
118 /* Last insn processed by final_scan_insn. */
119 static rtx debug_insn
= 0;
121 /* Line number of last NOTE. */
122 static int last_linenum
;
124 /* Highest line number in current block. */
125 static int high_block_linenum
;
127 /* Likewise for function. */
128 static int high_function_linenum
;
130 /* Filename of last NOTE. */
131 static char *last_filename
;
133 /* Number of basic blocks seen so far;
134 used if profile_block_flag is set. */
135 static int count_basic_blocks
;
137 /* Nonzero while outputting an `asm' with operands.
138 This means that inconsistencies are the user's fault, so don't abort.
139 The precise value is the insn being output, to pass to error_for_asm. */
140 static rtx this_is_asm_operands
;
142 /* Number of operands of this insn, for an `asm' with operands. */
143 static int insn_noperands
;
145 /* Compare optimization flag. */
147 static rtx last_ignored_compare
= 0;
149 /* Flag indicating this insn is the start of a new basic block. */
151 static int new_block
= 1;
153 /* All the symbol-blocks (levels of scoping) in the compilation
154 are assigned sequence numbers in order of appearance of the
155 beginnings of the symbol-blocks. Both final and dbxout do this,
156 and assume that they will both give the same number to each block.
157 Final uses these sequence numbers to generate assembler label names
158 LBBnnn and LBEnnn for the beginning and end of the symbol-block.
159 Dbxout uses the sequence numbers to generate references to the same labels
160 from the dbx debugging information.
162 Sdb records this level at the beginning of each function,
163 in order to find the current level when recursing down declarations.
164 It outputs the block beginning and endings
165 at the point in the asm file where the blocks would begin and end. */
167 int next_block_index
;
169 /* Assign a unique number to each insn that is output.
170 This can be used to generate unique local labels. */
172 static int insn_counter
= 0;
175 /* This variable contains machine-dependent flags (defined in tm.h)
176 set and examined by output routines
177 that describe how to interpret the condition codes properly. */
181 /* During output of an insn, this contains a copy of cc_status
182 from before the insn. */
184 CC_STATUS cc_prev_status
;
187 /* Indexed by hardware reg number, is 1 if that register is ever
188 used in the current function.
190 In life_analysis, or in stupid_life_analysis, this is set
191 up to record the hard regs used explicitly. Reload adds
192 in the hard regs used for holding pseudo regs. Final uses
193 it to generate the code in the function prologue and epilogue
194 to save and restore registers as needed. */
196 char regs_ever_live
[FIRST_PSEUDO_REGISTER
];
198 /* Nonzero means current function must be given a frame pointer.
199 Set in stmt.c if anything is allocated on the stack there.
200 Set in reload1.c if anything is allocated on the stack there. */
202 int frame_pointer_needed
;
204 /* Assign unique numbers to labels generated for profiling. */
206 int profile_label_no
;
208 /* Length so far allocated in PENDING_BLOCKS. */
210 static int max_block_depth
;
212 /* Stack of sequence numbers of symbol-blocks of which we have seen the
213 beginning but not yet the end. Sequence numbers are assigned at
214 the beginning; this stack allows us to find the sequence number
215 of a block that is ending. */
217 static int *pending_blocks
;
219 /* Number of elements currently in use in PENDING_BLOCKS. */
221 static int block_depth
;
223 /* Nonzero if have enabled APP processing of our assembler output. */
227 /* If we are outputting an insn sequence, this contains the sequence rtx.
232 #ifdef ASSEMBLER_DIALECT
234 /* Number of the assembler dialect to use, starting at 0. */
235 static int dialect_number
;
238 /* Indexed by line number, nonzero if there is a note for that line. */
240 static char *line_note_exists
;
242 /* Linked list to hold line numbers for each basic block. */
245 struct bb_list
*next
; /* pointer to next basic block */
246 int line_num
; /* line number */
247 int file_label_num
; /* LPBC<n> label # for stored filename */
248 int func_label_num
; /* LPBC<n> label # for stored function name */
251 static struct bb_list
*bb_head
= 0; /* Head of basic block list */
252 static struct bb_list
**bb_tail
= &bb_head
; /* Ptr to store next bb ptr */
253 static int bb_file_label_num
= -1; /* Current label # for file */
254 static int bb_func_label_num
= -1; /* Current label # for func */
256 /* Linked list to hold the strings for each file and function name output. */
259 struct bb_str
*next
; /* pointer to next string */
260 char *string
; /* string */
261 int label_num
; /* label number */
262 int length
; /* string length */
265 extern rtx peephole
PROTO((rtx
));
267 static struct bb_str
*sbb_head
= 0; /* Head of string list. */
268 static struct bb_str
**sbb_tail
= &sbb_head
; /* Ptr to store next bb str */
269 static int sbb_label_num
= 0; /* Last label used */
271 static int asm_insn_count
PROTO((rtx
));
272 static void profile_function
PROTO((FILE *));
273 static void profile_after_prologue
PROTO((FILE *));
274 static void add_bb
PROTO((FILE *));
275 static int add_bb_string
PROTO((char *, int));
276 static void output_source_line
PROTO((FILE *, rtx
));
277 static rtx walk_alter_subreg
PROTO((rtx
));
278 static int alter_cond
PROTO((rtx
));
279 static void output_operand
PROTO((rtx
, int));
280 static void leaf_renumber_regs
PROTO((rtx
));
282 extern char *getpwd ();
284 /* Initialize data in final at the beginning of a compilation. */
287 init_final (filename
)
290 next_block_index
= 2;
292 max_block_depth
= 20;
293 pending_blocks
= (int *) xmalloc (20 * sizeof *pending_blocks
);
296 #ifdef ASSEMBLER_DIALECT
297 dialect_number
= ASSEMBLER_DIALECT
;
301 /* Called at end of source file,
302 to output the block-profiling table for this entire compilation. */
310 if (profile_block_flag
)
313 int align
= exact_log2 (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
);
314 int size
= (POINTER_SIZE
/ BITS_PER_UNIT
) * count_basic_blocks
;
319 rounded
+= (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1;
320 rounded
= (rounded
/ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
321 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
325 /* Output the main header, of 10 words:
326 0: 1 if this file's initialized, else 0.
327 1: address of file name (LPBX1).
328 2: address of table of counts (LPBX2).
329 3: number of counts in the table.
330 4: always 0, for compatibility with Sun.
332 The following are GNU extensions:
334 5: address of table of start addrs of basic blocks (LPBX3).
335 6: Number of bytes in this header.
336 7: address of table of function names (LPBX4).
337 8: address of table of line numbers (LPBX5) or 0.
338 9: address of table of file names (LPBX6) or 0. */
340 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
342 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBX", 0);
344 assemble_integer (const0_rtx
, UNITS_PER_WORD
, 1);
346 /* address of filename */
347 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 1);
348 assemble_integer (gen_rtx (SYMBOL_REF
, Pmode
, name
), UNITS_PER_WORD
, 1);
350 /* address of count table */
351 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 2);
352 assemble_integer (gen_rtx (SYMBOL_REF
, Pmode
, name
), UNITS_PER_WORD
, 1);
354 /* count of the # of basic blocks */
355 assemble_integer (GEN_INT (count_basic_blocks
), UNITS_PER_WORD
, 1);
357 /* zero word (link field) */
358 assemble_integer (const0_rtx
, UNITS_PER_WORD
, 1);
360 /* address of basic block start address table */
361 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 3);
362 assemble_integer (gen_rtx (SYMBOL_REF
, Pmode
, name
), UNITS_PER_WORD
, 1);
364 /* byte count for extended structure. */
365 assemble_integer (GEN_INT (10 * UNITS_PER_WORD
), UNITS_PER_WORD
, 1);
367 /* address of function name table */
368 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 4);
369 assemble_integer (gen_rtx (SYMBOL_REF
, Pmode
, name
), UNITS_PER_WORD
, 1);
371 /* address of line number and filename tables if debugging. */
372 if (write_symbols
!= NO_DEBUG
)
374 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 5);
375 assemble_integer (gen_rtx (SYMBOL_REF
, Pmode
, name
), UNITS_PER_WORD
, 1);
376 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 6);
377 assemble_integer (gen_rtx (SYMBOL_REF
, Pmode
, name
), UNITS_PER_WORD
, 1);
381 assemble_integer (const0_rtx
, UNITS_PER_WORD
, 1);
382 assemble_integer (const0_rtx
, UNITS_PER_WORD
, 1);
385 /* Output the file name changing the suffix to .d for Sun tcov
387 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBX", 1);
389 char *cwd
= getpwd ();
390 int len
= strlen (filename
) + strlen (cwd
) + 1;
391 char *data_file
= (char *) alloca (len
+ 4);
393 strcpy (data_file
, cwd
);
394 strcat (data_file
, "/");
395 strcat (data_file
, filename
);
396 strip_off_ending (data_file
, len
);
397 strcat (data_file
, ".d");
398 assemble_string (data_file
, strlen (data_file
) + 1);
401 /* Make space for the table of counts. */
402 if (flag_no_common
|| size
== 0)
404 /* Realign data section. */
405 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
406 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBX", 2);
408 assemble_zeros (size
);
412 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 2);
413 #ifdef ASM_OUTPUT_SHARED_LOCAL
414 if (flag_shared_data
)
415 ASM_OUTPUT_SHARED_LOCAL (asm_out_file
, name
, size
, rounded
);
418 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
419 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
,
422 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
426 /* Output any basic block strings */
427 readonly_data_section ();
430 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
431 for (sptr
= sbb_head
; sptr
!= 0; sptr
= sptr
->next
)
433 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBC", sptr
->label_num
);
434 assemble_string (sptr
->string
, sptr
->length
);
438 /* Output the table of addresses. */
439 /* Realign in new section */
440 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
441 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBX", 3);
442 for (i
= 0; i
< count_basic_blocks
; i
++)
444 ASM_GENERATE_INTERNAL_LABEL (name
, "LPB", i
);
445 assemble_integer (gen_rtx (SYMBOL_REF
, Pmode
, name
),
449 /* Output the table of function names. */
450 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBX", 4);
451 for ((ptr
= bb_head
), (i
= 0); ptr
!= 0; (ptr
= ptr
->next
), i
++)
453 if (ptr
->func_label_num
>= 0)
455 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBC", ptr
->func_label_num
);
456 assemble_integer (gen_rtx (SYMBOL_REF
, Pmode
, name
),
460 assemble_integer (const0_rtx
, UNITS_PER_WORD
, 1);
463 for ( ; i
< count_basic_blocks
; i
++)
464 assemble_integer (const0_rtx
, UNITS_PER_WORD
, 1);
466 if (write_symbols
!= NO_DEBUG
)
468 /* Output the table of line numbers. */
469 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBX", 5);
470 for ((ptr
= bb_head
), (i
= 0); ptr
!= 0; (ptr
= ptr
->next
), i
++)
471 assemble_integer (GEN_INT (ptr
->line_num
), UNITS_PER_WORD
, 1);
473 for ( ; i
< count_basic_blocks
; i
++)
474 assemble_integer (const0_rtx
, UNITS_PER_WORD
, 1);
476 /* Output the table of file names. */
477 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBX", 6);
478 for ((ptr
= bb_head
), (i
= 0); ptr
!= 0; (ptr
= ptr
->next
), i
++)
480 if (ptr
->file_label_num
>= 0)
482 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBC", ptr
->file_label_num
);
483 assemble_integer (gen_rtx (SYMBOL_REF
, Pmode
, name
),
487 assemble_integer (const0_rtx
, UNITS_PER_WORD
, 1);
490 for ( ; i
< count_basic_blocks
; i
++)
491 assemble_integer (const0_rtx
, UNITS_PER_WORD
, 1);
494 /* End with the address of the table of addresses,
495 so we can find it easily, as the last word in the file's text. */
496 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 3);
497 assemble_integer (gen_rtx (SYMBOL_REF
, Pmode
, name
), UNITS_PER_WORD
, 1);
501 /* Enable APP processing of subsequent output.
502 Used before the output from an `asm' statement. */
509 fprintf (asm_out_file
, ASM_APP_ON
);
514 /* Disable APP processing of subsequent output.
515 Called from varasm.c before most kinds of output. */
522 fprintf (asm_out_file
, ASM_APP_OFF
);
527 /* Return the number of slots filled in the current
528 delayed branch sequence (we don't count the insn needing the
529 delay slot). Zero if not in a delayed branch sequence. */
533 dbr_sequence_length ()
535 if (final_sequence
!= 0)
536 return XVECLEN (final_sequence
, 0) - 1;
542 /* The next two pages contain routines used to compute the length of an insn
543 and to shorten branches. */
545 /* Arrays for insn lengths, and addresses. The latter is referenced by
546 `insn_current_length'. */
548 static short *insn_lengths
;
551 /* Address of insn being processed. Used by `insn_current_length'. */
552 int insn_current_address
;
554 /* Indicate that branch shortening hasn't yet been done. */
562 /* Obtain the current length of an insn. If branch shortening has been done,
563 get its actual length. Otherwise, get its maximum length. */
566 get_attr_length (insn
)
569 #ifdef HAVE_ATTR_length
575 return insn_lengths
[INSN_UID (insn
)];
577 switch (GET_CODE (insn
))
585 length
= insn_default_length (insn
);
589 body
= PATTERN (insn
);
590 if (GET_CODE (body
) == ADDR_VEC
|| GET_CODE (body
) == ADDR_DIFF_VEC
)
592 /* This only takes room if jump tables go into the text section. */
593 #if !defined(READONLY_DATA_SECTION) || defined(JUMP_TABLES_IN_TEXT_SECTION)
594 length
= (XVECLEN (body
, GET_CODE (body
) == ADDR_DIFF_VEC
)
595 * GET_MODE_SIZE (GET_MODE (body
)));
597 /* Be pessimistic and assume worst-case alignment. */
598 length
+= (GET_MODE_SIZE (GET_MODE (body
)) - 1);
604 length
= insn_default_length (insn
);
608 body
= PATTERN (insn
);
609 if (GET_CODE (body
) == USE
|| GET_CODE (body
) == CLOBBER
)
612 else if (GET_CODE (body
) == ASM_INPUT
|| asm_noperands (body
) >= 0)
613 length
= asm_insn_count (body
) * insn_default_length (insn
);
614 else if (GET_CODE (body
) == SEQUENCE
)
615 for (i
= 0; i
< XVECLEN (body
, 0); i
++)
616 length
+= get_attr_length (XVECEXP (body
, 0, i
));
618 length
= insn_default_length (insn
);
621 #ifdef ADJUST_INSN_LENGTH
622 ADJUST_INSN_LENGTH (insn
, length
);
625 #else /* not HAVE_ATTR_length */
627 #endif /* not HAVE_ATTR_length */
630 /* Make a pass over all insns and compute their actual lengths by shortening
631 any branches of variable length if possible. */
633 /* Give a default value for the lowest address in a function. */
635 #ifndef FIRST_INSN_ADDRESS
636 #define FIRST_INSN_ADDRESS 0
640 shorten_branches (first
)
643 #ifdef HAVE_ATTR_length
645 int something_changed
= 1;
647 char *varying_length
;
651 /* Compute maximum UID and allocate arrays. */
652 for (insn
= first
; insn
; insn
= NEXT_INSN (insn
))
653 if (INSN_UID (insn
) > max_uid
)
654 max_uid
= INSN_UID (insn
);
657 insn_lengths
= (short *) oballoc (max_uid
* sizeof (short));
658 insn_addresses
= (int *) oballoc (max_uid
* sizeof (int));
659 varying_length
= (char *) oballoc (max_uid
* sizeof (char));
661 /* Compute initial lengths, addresses, and varying flags for each insn. */
662 for (insn_current_address
= FIRST_INSN_ADDRESS
, insn
= first
;
664 insn_current_address
+= insn_lengths
[uid
], insn
= NEXT_INSN (insn
))
666 uid
= INSN_UID (insn
);
667 insn_addresses
[uid
] = insn_current_address
;
668 insn_lengths
[uid
] = 0;
669 varying_length
[uid
] = 0;
671 if (GET_CODE (insn
) == NOTE
|| GET_CODE (insn
) == BARRIER
672 || GET_CODE (insn
) == CODE_LABEL
)
675 body
= PATTERN (insn
);
676 if (GET_CODE (body
) == ADDR_VEC
|| GET_CODE (body
) == ADDR_DIFF_VEC
)
678 /* This only takes room if read-only data goes into the text
680 #if !defined(READONLY_DATA_SECTION) || defined(JUMP_TABLES_IN_TEXT_SECTION)
681 int unitsize
= GET_MODE_SIZE (GET_MODE (body
));
683 insn_lengths
[uid
] = (XVECLEN (body
, GET_CODE (body
) == ADDR_DIFF_VEC
)
684 * GET_MODE_SIZE (GET_MODE (body
)));
686 /* Account for possible alignment. */
688 += unitsize
- (insn_current_address
& (unitsize
- 1));
693 else if (asm_noperands (body
) >= 0)
694 insn_lengths
[uid
] = asm_insn_count (body
) * insn_default_length (insn
);
695 else if (GET_CODE (body
) == SEQUENCE
)
698 int const_delay_slots
;
700 const_delay_slots
= const_num_delay_slots (XVECEXP (body
, 0, 0));
702 const_delay_slots
= 0;
704 /* Inside a delay slot sequence, we do not do any branch shortening
705 if the shortening could change the number of delay slots
707 for (i
= 0; i
< XVECLEN (body
, 0); i
++)
709 rtx inner_insn
= XVECEXP (body
, 0, i
);
710 int inner_uid
= INSN_UID (inner_insn
);
713 if (asm_noperands (PATTERN (XVECEXP (body
, 0, i
))) >= 0)
714 inner_length
= (asm_insn_count (PATTERN (inner_insn
))
715 * insn_default_length (inner_insn
));
717 inner_length
= insn_default_length (inner_insn
);
719 insn_lengths
[inner_uid
] = inner_length
;
720 if (const_delay_slots
)
722 if ((varying_length
[inner_uid
]
723 = insn_variable_length_p (inner_insn
)) != 0)
724 varying_length
[uid
] = 1;
725 insn_addresses
[inner_uid
] = (insn_current_address
+
729 varying_length
[inner_uid
] = 0;
730 insn_lengths
[uid
] += inner_length
;
733 else if (GET_CODE (body
) != USE
&& GET_CODE (body
) != CLOBBER
)
735 insn_lengths
[uid
] = insn_default_length (insn
);
736 varying_length
[uid
] = insn_variable_length_p (insn
);
739 /* If needed, do any adjustment. */
740 #ifdef ADJUST_INSN_LENGTH
741 ADJUST_INSN_LENGTH (insn
, insn_lengths
[uid
]);
745 /* Now loop over all the insns finding varying length insns. For each,
746 get the current insn length. If it has changed, reflect the change.
747 When nothing changes for a full pass, we are done. */
749 while (something_changed
)
751 something_changed
= 0;
752 for (insn_current_address
= FIRST_INSN_ADDRESS
, insn
= first
;
754 insn
= NEXT_INSN (insn
))
759 uid
= INSN_UID (insn
);
760 insn_addresses
[uid
] = insn_current_address
;
761 if (! varying_length
[uid
])
763 insn_current_address
+= insn_lengths
[uid
];
766 if (GET_CODE (insn
) == INSN
&& GET_CODE (PATTERN (insn
)) == SEQUENCE
)
770 body
= PATTERN (insn
);
772 for (i
= 0; i
< XVECLEN (body
, 0); i
++)
774 rtx inner_insn
= XVECEXP (body
, 0, i
);
775 int inner_uid
= INSN_UID (inner_insn
);
778 insn_addresses
[inner_uid
] = insn_current_address
;
780 /* insn_current_length returns 0 for insns with a
781 non-varying length. */
782 if (! varying_length
[inner_uid
])
783 inner_length
= insn_lengths
[inner_uid
];
785 inner_length
= insn_current_length (inner_insn
);
787 if (inner_length
!= insn_lengths
[inner_uid
])
789 insn_lengths
[inner_uid
] = inner_length
;
790 something_changed
= 1;
792 insn_current_address
+= insn_lengths
[inner_uid
];
793 new_length
+= inner_length
;
798 new_length
= insn_current_length (insn
);
799 insn_current_address
+= new_length
;
802 #ifdef SHORTEN_WITH_ADJUST_INSN_LENGTH
803 #ifdef ADJUST_INSN_LENGTH
804 /* If needed, do any adjustment. */
805 tmp_length
= new_length
;
806 ADJUST_INSN_LENGTH (insn
, new_length
);
807 insn_current_address
+= (new_length
- tmp_length
);
811 if (new_length
!= insn_lengths
[uid
])
813 insn_lengths
[uid
] = new_length
;
814 something_changed
= 1;
818 #endif /* HAVE_ATTR_length */
821 #ifdef HAVE_ATTR_length
822 /* Given the body of an INSN known to be generated by an ASM statement, return
823 the number of machine instructions likely to be generated for this insn.
824 This is used to compute its length. */
827 asm_insn_count (body
)
833 if (GET_CODE (body
) == ASM_INPUT
)
834 template = XSTR (body
, 0);
836 template = decode_asm_operands (body
, NULL_PTR
, NULL_PTR
,
839 for ( ; *template; template++)
840 if (IS_ASM_LOGICAL_LINE_SEPARATOR(*template) || *template == '\n')
847 /* Output assembler code for the start of a function,
848 and initialize some of the variables in this file
849 for the new function. The label for the function and associated
850 assembler pseudo-ops have already been output in `assemble_start_function'.
852 FIRST is the first insn of the rtl for the function being compiled.
853 FILE is the file to write assembler code to.
854 OPTIMIZE is nonzero if we should eliminate redundant
855 test and compare insns. */
858 final_start_function (first
, file
, optimize
)
865 this_is_asm_operands
= 0;
867 #ifdef NON_SAVING_SETJMP
868 /* A function that calls setjmp should save and restore all the
869 call-saved registers on a system where longjmp clobbers them. */
870 if (NON_SAVING_SETJMP
&& current_function_calls_setjmp
)
874 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
875 if (!call_used_regs
[i
] && !call_fixed_regs
[i
])
876 regs_ever_live
[i
] = 1;
880 /* Initial line number is supposed to be output
881 before the function's prologue and label
882 so that the function's address will not appear to be
883 in the last statement of the preceding function. */
884 if (NOTE_LINE_NUMBER (first
) != NOTE_INSN_DELETED
)
886 last_linenum
= high_block_linenum
= high_function_linenum
887 = NOTE_LINE_NUMBER (first
);
889 if (write_symbols
== SDB_DEBUG
)
890 /* For sdb, let's not, but say we did.
891 We need to set last_linenum for sdbout_function_begin,
892 but we can't have an actual line number before the .bf symbol.
893 (sdb_begin_function_line is not set,
894 and other compilers don't do it.) */
896 #ifdef XCOFF_DEBUGGING_INFO
897 else if (write_symbols
== XCOFF_DEBUG
)
898 xcoffout_output_first_source_line (file
, last_linenum
);
901 output_source_line (file
, first
);
904 #ifdef LEAF_REG_REMAP
906 leaf_renumber_regs (first
);
909 /* The Sun386i and perhaps other machines don't work right
910 if the profiling code comes after the prologue. */
911 #ifdef PROFILE_BEFORE_PROLOGUE
913 profile_function (file
);
914 #endif /* PROFILE_BEFORE_PROLOGUE */
916 #ifdef FUNCTION_PROLOGUE
917 /* First output the function prologue: code to set up the stack frame. */
918 FUNCTION_PROLOGUE (file
, get_frame_size ());
921 #if defined (SDB_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
922 if (write_symbols
== SDB_DEBUG
|| write_symbols
== XCOFF_DEBUG
)
923 next_block_index
= 1;
926 /* If the machine represents the prologue as RTL, the profiling code must
927 be emitted when NOTE_INSN_PROLOGUE_END is scanned. */
931 profile_after_prologue (file
);
935 /* If we are doing basic block profiling, remember a printable version
936 of the function name. */
937 if (profile_block_flag
)
939 char *junk
= "function";
941 add_bb_string ((*decl_printable_name
) (current_function_decl
, &junk
), FALSE
);
946 profile_after_prologue (file
)
949 #ifdef FUNCTION_BLOCK_PROFILER
950 if (profile_block_flag
)
952 FUNCTION_BLOCK_PROFILER (file
, profile_label_no
);
954 #endif /* FUNCTION_BLOCK_PROFILER */
956 #ifndef PROFILE_BEFORE_PROLOGUE
958 profile_function (file
);
959 #endif /* not PROFILE_BEFORE_PROLOGUE */
963 profile_function (file
)
966 int align
= MIN (BIGGEST_ALIGNMENT
, POINTER_SIZE
);
967 int sval
= current_function_returns_struct
;
968 int cxt
= current_function_needs_context
;
971 ASM_OUTPUT_ALIGN (file
, floor_log2 (align
/ BITS_PER_UNIT
));
972 ASM_OUTPUT_INTERNAL_LABEL (file
, "LP", profile_label_no
);
973 assemble_integer (const0_rtx
, POINTER_SIZE
/ BITS_PER_UNIT
, 1);
977 #ifdef STRUCT_VALUE_INCOMING_REGNUM
979 ASM_OUTPUT_REG_PUSH (file
, STRUCT_VALUE_INCOMING_REGNUM
);
981 #ifdef STRUCT_VALUE_REGNUM
983 ASM_OUTPUT_REG_PUSH (file
, STRUCT_VALUE_REGNUM
);
988 #ifdef STATIC_CHAIN_INCOMING_REGNUM
990 ASM_OUTPUT_REG_PUSH (file
, STATIC_CHAIN_INCOMING_REGNUM
);
992 #ifdef STATIC_CHAIN_REGNUM
994 ASM_OUTPUT_REG_PUSH (file
, STATIC_CHAIN_REGNUM
);
999 FUNCTION_PROFILER (file
, profile_label_no
);
1002 #ifdef STATIC_CHAIN_INCOMING_REGNUM
1004 ASM_OUTPUT_REG_POP (file
, STATIC_CHAIN_INCOMING_REGNUM
);
1006 #ifdef STATIC_CHAIN_REGNUM
1008 ASM_OUTPUT_REG_POP (file
, STATIC_CHAIN_REGNUM
);
1013 #ifdef STRUCT_VALUE_INCOMING_REGNUM
1015 ASM_OUTPUT_REG_POP (file
, STRUCT_VALUE_INCOMING_REGNUM
);
1017 #ifdef STRUCT_VALUE_REGNUM
1019 ASM_OUTPUT_REG_POP (file
, STRUCT_VALUE_REGNUM
);
1024 /* Output assembler code for the end of a function.
1025 For clarity, args are same as those of `final_start_function'
1026 even though not all of them are needed. */
1029 final_end_function (first
, file
, optimize
)
1036 fprintf (file
, ASM_APP_OFF
);
1040 #ifdef SDB_DEBUGGING_INFO
1041 if (write_symbols
== SDB_DEBUG
)
1042 sdbout_end_function (high_function_linenum
);
1045 #ifdef DWARF_DEBUGGING_INFO
1046 if (write_symbols
== DWARF_DEBUG
)
1047 dwarfout_end_function ();
1050 #ifdef XCOFF_DEBUGGING_INFO
1051 if (write_symbols
== XCOFF_DEBUG
)
1052 xcoffout_end_function (file
, high_function_linenum
);
1055 #ifdef FUNCTION_EPILOGUE
1056 /* Finally, output the function epilogue:
1057 code to restore the stack frame and return to the caller. */
1058 FUNCTION_EPILOGUE (file
, get_frame_size ());
1061 #ifdef SDB_DEBUGGING_INFO
1062 if (write_symbols
== SDB_DEBUG
)
1063 sdbout_end_epilogue ();
1066 #ifdef DWARF_DEBUGGING_INFO
1067 if (write_symbols
== DWARF_DEBUG
)
1068 dwarfout_end_epilogue ();
1071 #ifdef XCOFF_DEBUGGING_INFO
1072 if (write_symbols
== XCOFF_DEBUG
)
1073 xcoffout_end_epilogue (file
);
1076 bb_func_label_num
= -1; /* not in function, nuke label # */
1078 /* If FUNCTION_EPILOGUE is not defined, then the function body
1079 itself contains return instructions wherever needed. */
1082 /* Add a block to the linked list that remembers the current line/file/function
1083 for basic block profiling. Emit the label in front of the basic block and
1084 the instructions that increment the count field. */
1090 struct bb_list
*ptr
= (struct bb_list
*) permalloc (sizeof (struct bb_list
));
1092 /* Add basic block to linked list. */
1094 ptr
->line_num
= last_linenum
;
1095 ptr
->file_label_num
= bb_file_label_num
;
1096 ptr
->func_label_num
= bb_func_label_num
;
1098 bb_tail
= &ptr
->next
;
1100 /* Enable the table of basic-block use counts
1101 to point at the code it applies to. */
1102 ASM_OUTPUT_INTERNAL_LABEL (file
, "LPB", count_basic_blocks
);
1104 /* Before first insn of this basic block, increment the
1105 count of times it was entered. */
1106 #ifdef BLOCK_PROFILER
1107 BLOCK_PROFILER (file
, count_basic_blocks
);
1112 count_basic_blocks
++;
1115 /* Add a string to be used for basic block profiling. */
1118 add_bb_string (string
, perm_p
)
1123 struct bb_str
*ptr
= 0;
1127 string
= "<unknown>";
1131 /* Allocate a new string if the current string isn't permanent. If
1132 the string is permanent search for the same string in other
1135 len
= strlen (string
) + 1;
1138 char *p
= (char *) permalloc (len
);
1139 bcopy (string
, p
, len
);
1143 for (ptr
= sbb_head
; ptr
!= (struct bb_str
*)0; ptr
= ptr
->next
)
1144 if (ptr
->string
== string
)
1147 /* Allocate a new string block if we need to. */
1150 ptr
= (struct bb_str
*) permalloc (sizeof (*ptr
));
1153 ptr
->label_num
= sbb_label_num
++;
1154 ptr
->string
= string
;
1156 sbb_tail
= &ptr
->next
;
1159 return ptr
->label_num
;
1163 /* Output assembler code for some insns: all or part of a function.
1164 For description of args, see `final_start_function', above.
1166 PRESCAN is 1 if we are not really outputting,
1167 just scanning as if we were outputting.
1168 Prescanning deletes and rearranges insns just like ordinary output.
1169 PRESCAN is -2 if we are outputting after having prescanned.
1170 In this case, don't try to delete or rearrange insns
1171 because that has already been done.
1172 Prescanning is done only on certain machines. */
1175 final (first
, file
, optimize
, prescan
)
1184 last_ignored_compare
= 0;
1187 /* Make a map indicating which line numbers appear in this function.
1188 When producing SDB debugging info, delete troublesome line number
1189 notes from inlined functions in other files as well as duplicate
1190 line number notes. */
1191 #ifdef SDB_DEBUGGING_INFO
1192 if (write_symbols
== SDB_DEBUG
)
1195 for (insn
= first
; insn
; insn
= NEXT_INSN (insn
))
1196 if (GET_CODE (insn
) == NOTE
&& NOTE_LINE_NUMBER (insn
) > 0)
1198 if ((RTX_INTEGRATED_P (insn
)
1199 && strcmp (NOTE_SOURCE_FILE (insn
), main_input_filename
) != 0)
1201 && NOTE_LINE_NUMBER (insn
) == NOTE_LINE_NUMBER (last
)
1202 && NOTE_SOURCE_FILE (insn
) == NOTE_SOURCE_FILE (last
)))
1204 NOTE_LINE_NUMBER (insn
) = NOTE_INSN_DELETED
;
1205 NOTE_SOURCE_FILE (insn
) = 0;
1209 if (NOTE_LINE_NUMBER (insn
) > max_line
)
1210 max_line
= NOTE_LINE_NUMBER (insn
);
1216 for (insn
= first
; insn
; insn
= NEXT_INSN (insn
))
1217 if (GET_CODE (insn
) == NOTE
&& NOTE_LINE_NUMBER (insn
) > max_line
)
1218 max_line
= NOTE_LINE_NUMBER (insn
);
1221 line_note_exists
= (char *) oballoc (max_line
+ 1);
1222 bzero (line_note_exists
, max_line
+ 1);
1224 for (insn
= first
; insn
; insn
= NEXT_INSN (insn
))
1225 if (GET_CODE (insn
) == NOTE
&& NOTE_LINE_NUMBER (insn
) > 0)
1226 line_note_exists
[NOTE_LINE_NUMBER (insn
)] = 1;
1232 /* Output the insns. */
1233 for (insn
= NEXT_INSN (first
); insn
;)
1234 insn
= final_scan_insn (insn
, file
, optimize
, prescan
, 0);
1236 /* Do basic-block profiling here
1237 if the last insn was a conditional branch. */
1238 if (profile_block_flag
&& new_block
)
1242 /* The final scan for one insn, INSN.
1243 Args are same as in `final', except that INSN
1244 is the insn being scanned.
1245 Value returned is the next insn to be scanned.
1247 NOPEEPHOLES is the flag to disallow peephole processing (currently
1248 used for within delayed branch sequence output). */
1251 final_scan_insn (insn
, file
, optimize
, prescan
, nopeepholes
)
1261 /* Ignore deleted insns. These can occur when we split insns (due to a
1262 template of "#") while not optimizing. */
1263 if (INSN_DELETED_P (insn
))
1264 return NEXT_INSN (insn
);
1266 switch (GET_CODE (insn
))
1272 /* Align the beginning of a loop, for higher speed
1273 on certain machines. */
1275 if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_BEG
&& optimize
> 0)
1277 #ifdef ASM_OUTPUT_LOOP_ALIGN
1278 rtx next
= next_nonnote_insn (insn
);
1279 if (next
&& GET_CODE (next
) == CODE_LABEL
)
1281 ASM_OUTPUT_LOOP_ALIGN (asm_out_file
);
1286 if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_END
)
1289 if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_PROLOGUE_END
)
1291 #ifdef FUNCTION_END_PROLOGUE
1292 FUNCTION_END_PROLOGUE (file
);
1294 profile_after_prologue (file
);
1298 #ifdef FUNCTION_BEGIN_EPILOGUE
1299 if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_EPILOGUE_BEG
)
1301 FUNCTION_BEGIN_EPILOGUE (file
);
1306 if (write_symbols
== NO_DEBUG
)
1308 if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_FUNCTION_BEG
)
1310 #ifdef SDB_DEBUGGING_INFO
1311 if (write_symbols
== SDB_DEBUG
)
1312 sdbout_begin_function (last_linenum
);
1314 #ifdef XCOFF_DEBUGGING_INFO
1315 if (write_symbols
== XCOFF_DEBUG
)
1316 xcoffout_begin_function (file
, last_linenum
);
1318 #ifdef DWARF_DEBUGGING_INFO
1319 if (write_symbols
== DWARF_DEBUG
)
1320 dwarfout_begin_function ();
1324 if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_DELETED
)
1325 break; /* An insn that was "deleted" */
1328 fprintf (file
, ASM_APP_OFF
);
1331 if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_BLOCK_BEG
1332 && (debug_info_level
== DINFO_LEVEL_NORMAL
1333 || debug_info_level
== DINFO_LEVEL_VERBOSE
1334 #ifdef DWARF_DEBUGGING_INFO
1335 || write_symbols
== DWARF_DEBUG
1340 /* Beginning of a symbol-block. Assign it a sequence number
1341 and push the number onto the stack PENDING_BLOCKS. */
1343 if (block_depth
== max_block_depth
)
1345 /* PENDING_BLOCKS is full; make it longer. */
1346 max_block_depth
*= 2;
1348 = (int *) xrealloc (pending_blocks
,
1349 max_block_depth
* sizeof (int));
1351 pending_blocks
[block_depth
++] = next_block_index
;
1353 high_block_linenum
= last_linenum
;
1355 /* Output debugging info about the symbol-block beginning. */
1357 #ifdef SDB_DEBUGGING_INFO
1358 if (write_symbols
== SDB_DEBUG
)
1359 sdbout_begin_block (file
, last_linenum
, next_block_index
);
1361 #ifdef XCOFF_DEBUGGING_INFO
1362 if (write_symbols
== XCOFF_DEBUG
)
1363 xcoffout_begin_block (file
, last_linenum
, next_block_index
);
1365 #ifdef DBX_DEBUGGING_INFO
1366 if (write_symbols
== DBX_DEBUG
)
1367 ASM_OUTPUT_INTERNAL_LABEL (file
, "LBB", next_block_index
);
1369 #ifdef DWARF_DEBUGGING_INFO
1370 if (write_symbols
== DWARF_DEBUG
&& block_depth
> 1)
1371 dwarfout_begin_block (next_block_index
);
1376 else if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_BLOCK_END
1377 && (debug_info_level
== DINFO_LEVEL_NORMAL
1378 || debug_info_level
== DINFO_LEVEL_VERBOSE
1379 #ifdef DWARF_DEBUGGING_INFO
1380 || write_symbols
== DWARF_DEBUG
1385 /* End of a symbol-block. Pop its sequence number off
1386 PENDING_BLOCKS and output debugging info based on that. */
1390 #ifdef XCOFF_DEBUGGING_INFO
1391 if (write_symbols
== XCOFF_DEBUG
&& block_depth
>= 0)
1392 xcoffout_end_block (file
, high_block_linenum
,
1393 pending_blocks
[block_depth
]);
1395 #ifdef DBX_DEBUGGING_INFO
1396 if (write_symbols
== DBX_DEBUG
&& block_depth
>= 0)
1397 ASM_OUTPUT_INTERNAL_LABEL (file
, "LBE",
1398 pending_blocks
[block_depth
]);
1400 #ifdef SDB_DEBUGGING_INFO
1401 if (write_symbols
== SDB_DEBUG
&& block_depth
>= 0)
1402 sdbout_end_block (file
, high_block_linenum
,
1403 pending_blocks
[block_depth
]);
1405 #ifdef DWARF_DEBUGGING_INFO
1406 if (write_symbols
== DWARF_DEBUG
&& block_depth
>= 1)
1407 dwarfout_end_block (pending_blocks
[block_depth
]);
1410 else if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_DELETED_LABEL
1411 && (debug_info_level
== DINFO_LEVEL_NORMAL
1412 || debug_info_level
== DINFO_LEVEL_VERBOSE
))
1414 #ifdef DWARF_DEBUGGING_INFO
1415 if (write_symbols
== DWARF_DEBUG
)
1416 dwarfout_label (insn
);
1419 else if (NOTE_LINE_NUMBER (insn
) > 0)
1420 /* This note is a line-number. */
1424 #if 0 /* This is what we used to do. */
1425 output_source_line (file
, insn
);
1429 /* If there is anything real after this note,
1430 output it. If another line note follows, omit this one. */
1431 for (note
= NEXT_INSN (insn
); note
; note
= NEXT_INSN (note
))
1433 if (GET_CODE (note
) != NOTE
&& GET_CODE (note
) != CODE_LABEL
)
1435 /* These types of notes can be significant
1436 so make sure the preceding line number stays. */
1437 else if (GET_CODE (note
) == NOTE
1438 && (NOTE_LINE_NUMBER (note
) == NOTE_INSN_BLOCK_BEG
1439 || NOTE_LINE_NUMBER (note
) == NOTE_INSN_BLOCK_END
1440 || NOTE_LINE_NUMBER (note
) == NOTE_INSN_FUNCTION_BEG
))
1442 else if (GET_CODE (note
) == NOTE
&& NOTE_LINE_NUMBER (note
) > 0)
1444 /* Another line note follows; we can delete this note
1445 if no intervening line numbers have notes elsewhere. */
1447 for (num
= NOTE_LINE_NUMBER (insn
) + 1;
1448 num
< NOTE_LINE_NUMBER (note
);
1450 if (line_note_exists
[num
])
1453 if (num
>= NOTE_LINE_NUMBER (note
))
1459 /* Output this line note
1460 if it is the first or the last line note in a row. */
1462 output_source_line (file
, insn
);
1467 #ifdef ASM_OUTPUT_ALIGN_CODE
1468 /* Don't litter the assembler output with needless alignments. A
1469 BARRIER will be placed at the end of every function if HAVE_epilogue
1471 if (NEXT_INSN (insn
))
1472 ASM_OUTPUT_ALIGN_CODE (file
);
1481 #ifdef SDB_DEBUGGING_INFO
1482 if (write_symbols
== SDB_DEBUG
&& LABEL_NAME (insn
))
1483 sdbout_label (insn
);
1485 #ifdef DWARF_DEBUGGING_INFO
1486 if (write_symbols
== DWARF_DEBUG
&& LABEL_NAME (insn
))
1487 dwarfout_label (insn
);
1491 fprintf (file
, ASM_APP_OFF
);
1494 if (NEXT_INSN (insn
) != 0
1495 && GET_CODE (NEXT_INSN (insn
)) == JUMP_INSN
)
1497 rtx nextbody
= PATTERN (NEXT_INSN (insn
));
1499 /* If this label is followed by a jump-table,
1500 make sure we put the label in the read-only section. Also
1501 possibly write the label and jump table together. */
1503 if (GET_CODE (nextbody
) == ADDR_VEC
1504 || GET_CODE (nextbody
) == ADDR_DIFF_VEC
)
1506 #ifndef JUMP_TABLES_IN_TEXT_SECTION
1507 readonly_data_section ();
1508 #ifdef READONLY_DATA_SECTION
1509 ASM_OUTPUT_ALIGN (file
,
1510 exact_log2 (BIGGEST_ALIGNMENT
1512 #endif /* READONLY_DATA_SECTION */
1513 #else /* JUMP_TABLES_IN_TEXT_SECTION */
1515 #endif /* JUMP_TABLES_IN_TEXT_SECTION */
1516 #ifdef ASM_OUTPUT_CASE_LABEL
1517 ASM_OUTPUT_CASE_LABEL (file
, "L", CODE_LABEL_NUMBER (insn
),
1520 ASM_OUTPUT_INTERNAL_LABEL (file
, "L", CODE_LABEL_NUMBER (insn
));
1526 ASM_OUTPUT_INTERNAL_LABEL (file
, "L", CODE_LABEL_NUMBER (insn
));
1531 register rtx body
= PATTERN (insn
);
1532 int insn_code_number
;
1536 /* An INSN, JUMP_INSN or CALL_INSN.
1537 First check for special kinds that recog doesn't recognize. */
1539 if (GET_CODE (body
) == USE
/* These are just declarations */
1540 || GET_CODE (body
) == CLOBBER
)
1544 /* If there is a REG_CC_SETTER note on this insn, it means that
1545 the setting of the condition code was done in the delay slot
1546 of the insn that branched here. So recover the cc status
1547 from the insn that set it. */
1549 note
= find_reg_note (insn
, REG_CC_SETTER
, NULL_RTX
);
1552 NOTICE_UPDATE_CC (PATTERN (XEXP (note
, 0)), XEXP (note
, 0));
1553 cc_prev_status
= cc_status
;
1557 /* Detect insns that are really jump-tables
1558 and output them as such. */
1560 if (GET_CODE (body
) == ADDR_VEC
|| GET_CODE (body
) == ADDR_DIFF_VEC
)
1562 register int vlen
, idx
;
1569 fprintf (file
, ASM_APP_OFF
);
1573 vlen
= XVECLEN (body
, GET_CODE (body
) == ADDR_DIFF_VEC
);
1574 for (idx
= 0; idx
< vlen
; idx
++)
1576 if (GET_CODE (body
) == ADDR_VEC
)
1578 #ifdef ASM_OUTPUT_ADDR_VEC_ELT
1579 ASM_OUTPUT_ADDR_VEC_ELT
1580 (file
, CODE_LABEL_NUMBER (XEXP (XVECEXP (body
, 0, idx
), 0)));
1587 #ifdef ASM_OUTPUT_ADDR_DIFF_ELT
1588 ASM_OUTPUT_ADDR_DIFF_ELT
1590 CODE_LABEL_NUMBER (XEXP (XVECEXP (body
, 1, idx
), 0)),
1591 CODE_LABEL_NUMBER (XEXP (XEXP (body
, 0), 0)));
1597 #ifdef ASM_OUTPUT_CASE_END
1598 ASM_OUTPUT_CASE_END (file
,
1599 CODE_LABEL_NUMBER (PREV_INSN (insn
)),
1608 /* Do basic-block profiling when we reach a new block.
1609 Done here to avoid jump tables. */
1610 if (profile_block_flag
&& new_block
)
1613 if (GET_CODE (body
) == ASM_INPUT
)
1615 /* There's no telling what that did to the condition codes. */
1621 fprintf (file
, ASM_APP_ON
);
1624 fprintf (asm_out_file
, "\t%s\n", XSTR (body
, 0));
1628 /* Detect `asm' construct with operands. */
1629 if (asm_noperands (body
) >= 0)
1631 int noperands
= asm_noperands (body
);
1632 rtx
*ops
= (rtx
*) alloca (noperands
* sizeof (rtx
));
1635 /* There's no telling what that did to the condition codes. */
1642 fprintf (file
, ASM_APP_ON
);
1646 /* Get out the operand values. */
1647 string
= decode_asm_operands (body
, ops
, NULL_PTR
,
1648 NULL_PTR
, NULL_PTR
);
1649 /* Inhibit aborts on what would otherwise be compiler bugs. */
1650 insn_noperands
= noperands
;
1651 this_is_asm_operands
= insn
;
1653 /* Output the insn using them. */
1654 output_asm_insn (string
, ops
);
1655 this_is_asm_operands
= 0;
1659 if (prescan
<= 0 && app_on
)
1661 fprintf (file
, ASM_APP_OFF
);
1665 if (GET_CODE (body
) == SEQUENCE
)
1667 /* A delayed-branch sequence */
1673 final_sequence
= body
;
1675 /* The first insn in this SEQUENCE might be a JUMP_INSN that will
1676 force the restoration of a comparison that was previously
1677 thought unnecessary. If that happens, cancel this sequence
1678 and cause that insn to be restored. */
1680 next
= final_scan_insn (XVECEXP (body
, 0, 0), file
, 0, prescan
, 1);
1681 if (next
!= XVECEXP (body
, 0, 1))
1687 for (i
= 1; i
< XVECLEN (body
, 0); i
++)
1688 final_scan_insn (XVECEXP (body
, 0, i
), file
, 0, prescan
, 1);
1689 #ifdef DBR_OUTPUT_SEQEND
1690 DBR_OUTPUT_SEQEND (file
);
1694 /* If the insn requiring the delay slot was a CALL_INSN, the
1695 insns in the delay slot are actually executed before the
1696 called function. Hence we don't preserve any CC-setting
1697 actions in these insns and the CC must be marked as being
1698 clobbered by the function. */
1699 if (GET_CODE (XVECEXP (body
, 0, 0)) == CALL_INSN
)
1702 /* Following a conditional branch sequence, we have a new basic
1704 if (profile_block_flag
)
1706 rtx insn
= XVECEXP (body
, 0, 0);
1707 rtx body
= PATTERN (insn
);
1709 if ((GET_CODE (insn
) == JUMP_INSN
&& GET_CODE (body
) == SET
1710 && GET_CODE (SET_SRC (body
)) != LABEL_REF
)
1711 || (GET_CODE (insn
) == JUMP_INSN
1712 && GET_CODE (body
) == PARALLEL
1713 && GET_CODE (XVECEXP (body
, 0, 0)) == SET
1714 && GET_CODE (SET_SRC (XVECEXP (body
, 0, 0))) != LABEL_REF
))
1720 /* We have a real machine instruction as rtl. */
1722 body
= PATTERN (insn
);
1725 /* Check for redundant test and compare instructions
1726 (when the condition codes are already set up as desired).
1727 This is done only when optimizing; if not optimizing,
1728 it should be possible for the user to alter a variable
1729 with the debugger in between statements
1730 and the next statement should reexamine the variable
1731 to compute the condition codes. */
1734 && GET_CODE (body
) == SET
1735 && GET_CODE (SET_DEST (body
)) == CC0
1736 && insn
!= last_ignored_compare
)
1738 if (GET_CODE (SET_SRC (body
)) == SUBREG
)
1739 SET_SRC (body
) = alter_subreg (SET_SRC (body
));
1740 else if (GET_CODE (SET_SRC (body
)) == COMPARE
)
1742 if (GET_CODE (XEXP (SET_SRC (body
), 0)) == SUBREG
)
1743 XEXP (SET_SRC (body
), 0)
1744 = alter_subreg (XEXP (SET_SRC (body
), 0));
1745 if (GET_CODE (XEXP (SET_SRC (body
), 1)) == SUBREG
)
1746 XEXP (SET_SRC (body
), 1)
1747 = alter_subreg (XEXP (SET_SRC (body
), 1));
1749 if ((cc_status
.value1
!= 0
1750 && rtx_equal_p (SET_SRC (body
), cc_status
.value1
))
1751 || (cc_status
.value2
!= 0
1752 && rtx_equal_p (SET_SRC (body
), cc_status
.value2
)))
1754 /* Don't delete insn if it has an addressing side-effect. */
1755 if (! FIND_REG_INC_NOTE (insn
, 0)
1756 /* or if anything in it is volatile. */
1757 && ! volatile_refs_p (PATTERN (insn
)))
1759 /* We don't really delete the insn; just ignore it. */
1760 last_ignored_compare
= insn
;
1767 /* Following a conditional branch, we have a new basic block.
1768 But if we are inside a sequence, the new block starts after the
1769 last insn of the sequence. */
1770 if (profile_block_flag
&& final_sequence
== 0
1771 && ((GET_CODE (insn
) == JUMP_INSN
&& GET_CODE (body
) == SET
1772 && GET_CODE (SET_SRC (body
)) != LABEL_REF
)
1773 || (GET_CODE (insn
) == JUMP_INSN
&& GET_CODE (body
) == PARALLEL
1774 && GET_CODE (XVECEXP (body
, 0, 0)) == SET
1775 && GET_CODE (SET_SRC (XVECEXP (body
, 0, 0))) != LABEL_REF
)))
1779 /* Don't bother outputting obvious no-ops, even without -O.
1780 This optimization is fast and doesn't interfere with debugging.
1781 Don't do this if the insn is in a delay slot, since this
1782 will cause an improper number of delay insns to be written. */
1783 if (final_sequence
== 0
1785 && GET_CODE (insn
) == INSN
&& GET_CODE (body
) == SET
1786 && GET_CODE (SET_SRC (body
)) == REG
1787 && GET_CODE (SET_DEST (body
)) == REG
1788 && REGNO (SET_SRC (body
)) == REGNO (SET_DEST (body
)))
1793 /* If this is a conditional branch, maybe modify it
1794 if the cc's are in a nonstandard state
1795 so that it accomplishes the same thing that it would
1796 do straightforwardly if the cc's were set up normally. */
1798 if (cc_status
.flags
!= 0
1799 && GET_CODE (insn
) == JUMP_INSN
1800 && GET_CODE (body
) == SET
1801 && SET_DEST (body
) == pc_rtx
1802 && GET_CODE (SET_SRC (body
)) == IF_THEN_ELSE
1803 /* This is done during prescan; it is not done again
1804 in final scan when prescan has been done. */
1807 /* This function may alter the contents of its argument
1808 and clear some of the cc_status.flags bits.
1809 It may also return 1 meaning condition now always true
1810 or -1 meaning condition now always false
1811 or 2 meaning condition nontrivial but altered. */
1812 register int result
= alter_cond (XEXP (SET_SRC (body
), 0));
1813 /* If condition now has fixed value, replace the IF_THEN_ELSE
1814 with its then-operand or its else-operand. */
1816 SET_SRC (body
) = XEXP (SET_SRC (body
), 1);
1818 SET_SRC (body
) = XEXP (SET_SRC (body
), 2);
1820 /* The jump is now either unconditional or a no-op.
1821 If it has become a no-op, don't try to output it.
1822 (It would not be recognized.) */
1823 if (SET_SRC (body
) == pc_rtx
)
1825 PUT_CODE (insn
, NOTE
);
1826 NOTE_LINE_NUMBER (insn
) = NOTE_INSN_DELETED
;
1827 NOTE_SOURCE_FILE (insn
) = 0;
1830 else if (GET_CODE (SET_SRC (body
)) == RETURN
)
1831 /* Replace (set (pc) (return)) with (return). */
1832 PATTERN (insn
) = body
= SET_SRC (body
);
1834 /* Rerecognize the instruction if it has changed. */
1836 INSN_CODE (insn
) = -1;
1839 /* Make same adjustments to instructions that examine the
1840 condition codes without jumping (if this machine has them). */
1842 if (cc_status
.flags
!= 0
1843 && GET_CODE (body
) == SET
)
1845 switch (GET_CODE (SET_SRC (body
)))
1858 register int result
;
1859 if (XEXP (SET_SRC (body
), 0) != cc0_rtx
)
1861 result
= alter_cond (SET_SRC (body
));
1863 validate_change (insn
, &SET_SRC (body
), const_true_rtx
, 0);
1864 else if (result
== -1)
1865 validate_change (insn
, &SET_SRC (body
), const0_rtx
, 0);
1866 else if (result
== 2)
1867 INSN_CODE (insn
) = -1;
1873 /* Do machine-specific peephole optimizations if desired. */
1875 if (optimize
&& !flag_no_peephole
&& !nopeepholes
)
1877 rtx next
= peephole (insn
);
1878 /* When peepholing, if there were notes within the peephole,
1879 emit them before the peephole. */
1880 if (next
!= 0 && next
!= NEXT_INSN (insn
))
1882 rtx prev
= PREV_INSN (insn
);
1885 for (note
= NEXT_INSN (insn
); note
!= next
;
1886 note
= NEXT_INSN (note
))
1887 final_scan_insn (note
, file
, optimize
, prescan
, nopeepholes
);
1889 /* In case this is prescan, put the notes
1890 in proper position for later rescan. */
1891 note
= NEXT_INSN (insn
);
1892 PREV_INSN (note
) = prev
;
1893 NEXT_INSN (prev
) = note
;
1894 NEXT_INSN (PREV_INSN (next
)) = insn
;
1895 PREV_INSN (insn
) = PREV_INSN (next
);
1896 NEXT_INSN (insn
) = next
;
1897 PREV_INSN (next
) = insn
;
1900 /* PEEPHOLE might have changed this. */
1901 body
= PATTERN (insn
);
1904 /* Try to recognize the instruction.
1905 If successful, verify that the operands satisfy the
1906 constraints for the instruction. Crash if they don't,
1907 since `reload' should have changed them so that they do. */
1909 insn_code_number
= recog_memoized (insn
);
1910 insn_extract (insn
);
1911 for (i
= 0; i
< insn_n_operands
[insn_code_number
]; i
++)
1913 if (GET_CODE (recog_operand
[i
]) == SUBREG
)
1914 recog_operand
[i
] = alter_subreg (recog_operand
[i
]);
1915 else if (GET_CODE (recog_operand
[i
]) == PLUS
1916 || GET_CODE (recog_operand
[i
]) == MULT
)
1917 recog_operand
[i
] = walk_alter_subreg (recog_operand
[i
]);
1920 for (i
= 0; i
< insn_n_dups
[insn_code_number
]; i
++)
1922 if (GET_CODE (*recog_dup_loc
[i
]) == SUBREG
)
1923 *recog_dup_loc
[i
] = alter_subreg (*recog_dup_loc
[i
]);
1924 else if (GET_CODE (*recog_dup_loc
[i
]) == PLUS
1925 || GET_CODE (*recog_dup_loc
[i
]) == MULT
)
1926 *recog_dup_loc
[i
] = walk_alter_subreg (*recog_dup_loc
[i
]);
1929 #ifdef REGISTER_CONSTRAINTS
1930 if (! constrain_operands (insn_code_number
, 1))
1931 fatal_insn_not_found (insn
);
1934 /* Some target machines need to prescan each insn before
1937 #ifdef FINAL_PRESCAN_INSN
1938 FINAL_PRESCAN_INSN (insn
, recog_operand
,
1939 insn_n_operands
[insn_code_number
]);
1943 cc_prev_status
= cc_status
;
1945 /* Update `cc_status' for this instruction.
1946 The instruction's output routine may change it further.
1947 If the output routine for a jump insn needs to depend
1948 on the cc status, it should look at cc_prev_status. */
1950 NOTICE_UPDATE_CC (body
, insn
);
1955 /* If the proper template needs to be chosen by some C code,
1956 run that code and get the real template. */
1958 template = insn_template
[insn_code_number
];
1961 template = (*insn_outfun
[insn_code_number
]) (recog_operand
, insn
);
1963 /* If the C code returns 0, it means that it is a jump insn
1964 which follows a deleted test insn, and that test insn
1965 needs to be reinserted. */
1968 if (prev_nonnote_insn (insn
) != last_ignored_compare
)
1971 return prev_nonnote_insn (insn
);
1975 /* If the template is the string "#", it means that this insn must
1977 if (template[0] == '#' && template[1] == '\0')
1979 rtx
new = try_split (body
, insn
, 0);
1981 /* If we didn't split the insn, go away. */
1982 if (new == insn
&& PATTERN (new) == body
)
1992 /* Output assembler code from the template. */
1994 output_asm_insn (template, recog_operand
);
1997 /* It's not at all clear why we did this and doing so interferes
1998 with tests we'd like to do to use REG_WAS_0 notes, so let's try
2001 /* Mark this insn as having been output. */
2002 INSN_DELETED_P (insn
) = 1;
2008 return NEXT_INSN (insn
);
2011 /* Output debugging info to the assembler file FILE
2012 based on the NOTE-insn INSN, assumed to be a line number. */
2015 output_source_line (file
, insn
)
2019 register char *filename
= NOTE_SOURCE_FILE (insn
);
2021 /* Remember filename for basic block profiling.
2022 Filenames are allocated on the permanent obstack
2023 or are passed in ARGV, so we don't have to save
2026 if (profile_block_flag
&& last_filename
!= filename
)
2027 bb_file_label_num
= add_bb_string (filename
, TRUE
);
2029 last_filename
= filename
;
2030 last_linenum
= NOTE_LINE_NUMBER (insn
);
2031 high_block_linenum
= MAX (last_linenum
, high_block_linenum
);
2032 high_function_linenum
= MAX (last_linenum
, high_function_linenum
);
2034 if (write_symbols
!= NO_DEBUG
)
2036 #ifdef SDB_DEBUGGING_INFO
2037 if (write_symbols
== SDB_DEBUG
2038 #if 0 /* People like having line numbers even in wrong file! */
2039 /* COFF can't handle multiple source files--lose, lose. */
2040 && !strcmp (filename
, main_input_filename
)
2042 /* COFF relative line numbers must be positive. */
2043 && last_linenum
> sdb_begin_function_line
)
2045 #ifdef ASM_OUTPUT_SOURCE_LINE
2046 ASM_OUTPUT_SOURCE_LINE (file
, last_linenum
);
2048 fprintf (file
, "\t.ln\t%d\n",
2049 ((sdb_begin_function_line
> -1)
2050 ? last_linenum
- sdb_begin_function_line
: 1));
2055 #if defined (DBX_DEBUGGING_INFO)
2056 if (write_symbols
== DBX_DEBUG
)
2057 dbxout_source_line (file
, filename
, NOTE_LINE_NUMBER (insn
));
2060 #if defined (XCOFF_DEBUGGING_INFO)
2061 if (write_symbols
== XCOFF_DEBUG
)
2062 xcoffout_source_line (file
, filename
, insn
);
2065 #ifdef DWARF_DEBUGGING_INFO
2066 if (write_symbols
== DWARF_DEBUG
)
2067 dwarfout_line (filename
, NOTE_LINE_NUMBER (insn
));
2072 /* If X is a SUBREG, replace it with a REG or a MEM,
2073 based on the thing it is a subreg of. */
2079 register rtx y
= SUBREG_REG (x
);
2080 if (GET_CODE (y
) == SUBREG
)
2081 y
= alter_subreg (y
);
2083 if (GET_CODE (y
) == REG
)
2085 /* If the containing reg really gets a hard reg, so do we. */
2087 REGNO (x
) = REGNO (y
) + SUBREG_WORD (x
);
2089 else if (GET_CODE (y
) == MEM
)
2091 register int offset
= SUBREG_WORD (x
) * UNITS_PER_WORD
;
2092 if (BYTES_BIG_ENDIAN
)
2093 offset
-= (MIN (UNITS_PER_WORD
, GET_MODE_SIZE (GET_MODE (x
)))
2094 - MIN (UNITS_PER_WORD
, GET_MODE_SIZE (GET_MODE (y
))));
2096 MEM_VOLATILE_P (x
) = MEM_VOLATILE_P (y
);
2097 XEXP (x
, 0) = plus_constant (XEXP (y
, 0), offset
);
2103 /* Do alter_subreg on all the SUBREGs contained in X. */
2106 walk_alter_subreg (x
)
2109 switch (GET_CODE (x
))
2113 XEXP (x
, 0) = walk_alter_subreg (XEXP (x
, 0));
2114 XEXP (x
, 1) = walk_alter_subreg (XEXP (x
, 1));
2118 XEXP (x
, 0) = walk_alter_subreg (XEXP (x
, 0));
2122 return alter_subreg (x
);
2130 /* Given BODY, the body of a jump instruction, alter the jump condition
2131 as required by the bits that are set in cc_status.flags.
2132 Not all of the bits there can be handled at this level in all cases.
2134 The value is normally 0.
2135 1 means that the condition has become always true.
2136 -1 means that the condition has become always false.
2137 2 means that COND has been altered. */
2145 if (cc_status
.flags
& CC_REVERSED
)
2148 PUT_CODE (cond
, swap_condition (GET_CODE (cond
)));
2151 if (cc_status
.flags
& CC_INVERTED
)
2154 PUT_CODE (cond
, reverse_condition (GET_CODE (cond
)));
2157 if (cc_status
.flags
& CC_NOT_POSITIVE
)
2158 switch (GET_CODE (cond
))
2163 /* Jump becomes unconditional. */
2169 /* Jump becomes no-op. */
2173 PUT_CODE (cond
, EQ
);
2178 PUT_CODE (cond
, NE
);
2183 if (cc_status
.flags
& CC_NOT_NEGATIVE
)
2184 switch (GET_CODE (cond
))
2188 /* Jump becomes unconditional. */
2193 /* Jump becomes no-op. */
2198 PUT_CODE (cond
, EQ
);
2204 PUT_CODE (cond
, NE
);
2209 if (cc_status
.flags
& CC_NO_OVERFLOW
)
2210 switch (GET_CODE (cond
))
2213 /* Jump becomes unconditional. */
2217 PUT_CODE (cond
, EQ
);
2222 PUT_CODE (cond
, NE
);
2227 /* Jump becomes no-op. */
2231 if (cc_status
.flags
& (CC_Z_IN_NOT_N
| CC_Z_IN_N
))
2232 switch (GET_CODE (cond
))
2245 PUT_CODE (cond
, cc_status
.flags
& CC_Z_IN_N
? GE
: LT
);
2250 PUT_CODE (cond
, cc_status
.flags
& CC_Z_IN_N
? LT
: GE
);
2255 if (cc_status
.flags
& CC_NOT_SIGNED
)
2256 /* The flags are valid if signed condition operators are converted
2258 switch (GET_CODE (cond
))
2261 PUT_CODE (cond
, LEU
);
2266 PUT_CODE (cond
, LTU
);
2271 PUT_CODE (cond
, GTU
);
2276 PUT_CODE (cond
, GEU
);
2285 /* Report inconsistency between the assembler template and the operands.
2286 In an `asm', it's the user's fault; otherwise, the compiler's fault. */
2289 output_operand_lossage (str
)
2292 if (this_is_asm_operands
)
2293 error_for_asm (this_is_asm_operands
, "invalid `asm': %s", str
);
2298 /* Output of assembler code from a template, and its subroutines. */
2300 /* Output text from TEMPLATE to the assembler output file,
2301 obeying %-directions to substitute operands taken from
2302 the vector OPERANDS.
2304 %N (for N a digit) means print operand N in usual manner.
2305 %lN means require operand N to be a CODE_LABEL or LABEL_REF
2306 and print the label name with no punctuation.
2307 %cN means require operand N to be a constant
2308 and print the constant expression with no punctuation.
2309 %aN means expect operand N to be a memory address
2310 (not a memory reference!) and print a reference
2312 %nN means expect operand N to be a constant
2313 and print a constant expression for minus the value
2314 of the operand, with no other punctuation. */
2317 output_asm_insn (template, operands
)
2324 /* An insn may return a null string template
2325 in a case where no assembler code is needed. */
2330 putc ('\t', asm_out_file
);
2332 #ifdef ASM_OUTPUT_OPCODE
2333 ASM_OUTPUT_OPCODE (asm_out_file
, p
);
2339 #ifdef ASM_OUTPUT_OPCODE
2341 putc (c
, asm_out_file
);
2342 while ((c
= *p
) == '\t')
2344 putc (c
, asm_out_file
);
2347 ASM_OUTPUT_OPCODE (asm_out_file
, p
);
2351 #ifdef ASSEMBLER_DIALECT
2353 /* If we want the first dialect, do nothing. Otherwise, skip
2354 DIALECT_NUMBER of strings ending with '|'. */
2355 for (i
= 0; i
< dialect_number
; i
++)
2357 while (*p
&& *p
++ != '|')
2366 /* Skip to close brace. */
2367 while (*p
&& *p
++ != '}')
2376 /* %% outputs a single %. */
2380 putc (c
, asm_out_file
);
2382 /* %= outputs a number which is unique to each insn in the entire
2383 compilation. This is useful for making local labels that are
2384 referred to more than once in a given insn. */
2388 fprintf (asm_out_file
, "%d", insn_counter
);
2390 /* % followed by a letter and some digits
2391 outputs an operand in a special way depending on the letter.
2392 Letters `acln' are implemented directly.
2393 Other letters are passed to `output_operand' so that
2394 the PRINT_OPERAND macro can define them. */
2395 else if ((*p
>= 'a' && *p
<= 'z')
2396 || (*p
>= 'A' && *p
<= 'Z'))
2401 if (! (*p
>= '0' && *p
<= '9'))
2402 output_operand_lossage ("operand number missing after %-letter");
2403 else if (this_is_asm_operands
&& c
>= (unsigned) insn_noperands
)
2404 output_operand_lossage ("operand number out of range");
2405 else if (letter
== 'l')
2406 output_asm_label (operands
[c
]);
2407 else if (letter
== 'a')
2408 output_address (operands
[c
]);
2409 else if (letter
== 'c')
2411 if (CONSTANT_ADDRESS_P (operands
[c
]))
2412 output_addr_const (asm_out_file
, operands
[c
]);
2414 output_operand (operands
[c
], 'c');
2416 else if (letter
== 'n')
2418 if (GET_CODE (operands
[c
]) == CONST_INT
)
2419 fprintf (asm_out_file
,
2420 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
2425 - INTVAL (operands
[c
]));
2428 putc ('-', asm_out_file
);
2429 output_addr_const (asm_out_file
, operands
[c
]);
2433 output_operand (operands
[c
], letter
);
2435 while ((c
= *p
) >= '0' && c
<= '9') p
++;
2437 /* % followed by a digit outputs an operand the default way. */
2438 else if (*p
>= '0' && *p
<= '9')
2441 if (this_is_asm_operands
&& c
>= (unsigned) insn_noperands
)
2442 output_operand_lossage ("operand number out of range");
2444 output_operand (operands
[c
], 0);
2445 while ((c
= *p
) >= '0' && c
<= '9') p
++;
2447 /* % followed by punctuation: output something for that
2448 punctuation character alone, with no operand.
2449 The PRINT_OPERAND macro decides what is actually done. */
2450 #ifdef PRINT_OPERAND_PUNCT_VALID_P
2451 else if (PRINT_OPERAND_PUNCT_VALID_P (*p
))
2452 output_operand (NULL_RTX
, *p
++);
2455 output_operand_lossage ("invalid %%-code");
2459 putc (c
, asm_out_file
);
2462 if (flag_print_asm_name
)
2464 /* Annotate the assembly with a comment describing the pattern and
2465 alternative used. */
2468 register int num
= INSN_CODE (debug_insn
);
2469 fprintf (asm_out_file
, " %s %d %s",
2470 ASM_COMMENT_START
, INSN_UID (debug_insn
), insn_name
[num
]);
2471 if (insn_n_alternatives
[num
] > 1)
2472 fprintf (asm_out_file
, "/%d", which_alternative
+ 1);
2474 /* Clear this so only the first assembler insn
2475 of any rtl insn will get the special comment for -dp. */
2480 putc ('\n', asm_out_file
);
2483 /* Output a LABEL_REF, or a bare CODE_LABEL, as an assembler symbol. */
2486 output_asm_label (x
)
2491 if (GET_CODE (x
) == LABEL_REF
)
2492 ASM_GENERATE_INTERNAL_LABEL (buf
, "L", CODE_LABEL_NUMBER (XEXP (x
, 0)));
2493 else if (GET_CODE (x
) == CODE_LABEL
)
2494 ASM_GENERATE_INTERNAL_LABEL (buf
, "L", CODE_LABEL_NUMBER (x
));
2496 output_operand_lossage ("`%l' operand isn't a label");
2498 assemble_name (asm_out_file
, buf
);
2501 /* Print operand X using machine-dependent assembler syntax.
2502 The macro PRINT_OPERAND is defined just to control this function.
2503 CODE is a non-digit that preceded the operand-number in the % spec,
2504 such as 'z' if the spec was `%z3'. CODE is 0 if there was no char
2505 between the % and the digits.
2506 When CODE is a non-letter, X is 0.
2508 The meanings of the letters are machine-dependent and controlled
2509 by PRINT_OPERAND. */
2512 output_operand (x
, code
)
2516 if (x
&& GET_CODE (x
) == SUBREG
)
2517 x
= alter_subreg (x
);
2519 /* If X is a pseudo-register, abort now rather than writing trash to the
2522 if (x
&& GET_CODE (x
) == REG
&& REGNO (x
) >= FIRST_PSEUDO_REGISTER
)
2525 PRINT_OPERAND (asm_out_file
, x
, code
);
2528 /* Print a memory reference operand for address X
2529 using machine-dependent assembler syntax.
2530 The macro PRINT_OPERAND_ADDRESS exists just to control this function. */
2536 walk_alter_subreg (x
);
2537 PRINT_OPERAND_ADDRESS (asm_out_file
, x
);
2540 /* Print an integer constant expression in assembler syntax.
2541 Addition and subtraction are the only arithmetic
2542 that may appear in these expressions. */
2545 output_addr_const (file
, x
)
2552 switch (GET_CODE (x
))
2562 assemble_name (file
, XSTR (x
, 0));
2566 ASM_GENERATE_INTERNAL_LABEL (buf
, "L", CODE_LABEL_NUMBER (XEXP (x
, 0)));
2567 assemble_name (file
, buf
);
2571 ASM_GENERATE_INTERNAL_LABEL (buf
, "L", CODE_LABEL_NUMBER (x
));
2572 assemble_name (file
, buf
);
2577 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
2586 /* This used to output parentheses around the expression,
2587 but that does not work on the 386 (either ATT or BSD assembler). */
2588 output_addr_const (file
, XEXP (x
, 0));
2592 if (GET_MODE (x
) == VOIDmode
)
2594 /* We can use %d if the number is one word and positive. */
2595 if (CONST_DOUBLE_HIGH (x
))
2597 #if HOST_BITS_PER_WIDE_INT == 64
2598 #if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
2604 #if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
2610 CONST_DOUBLE_HIGH (x
), CONST_DOUBLE_LOW (x
));
2611 else if (CONST_DOUBLE_LOW (x
) < 0)
2613 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
2618 CONST_DOUBLE_LOW (x
));
2621 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
2626 CONST_DOUBLE_LOW (x
));
2629 /* We can't handle floating point constants;
2630 PRINT_OPERAND must handle them. */
2631 output_operand_lossage ("floating constant misused");
2635 /* Some assemblers need integer constants to appear last (eg masm). */
2636 if (GET_CODE (XEXP (x
, 0)) == CONST_INT
)
2638 output_addr_const (file
, XEXP (x
, 1));
2639 if (INTVAL (XEXP (x
, 0)) >= 0)
2640 fprintf (file
, "+");
2641 output_addr_const (file
, XEXP (x
, 0));
2645 output_addr_const (file
, XEXP (x
, 0));
2646 if (INTVAL (XEXP (x
, 1)) >= 0)
2647 fprintf (file
, "+");
2648 output_addr_const (file
, XEXP (x
, 1));
2653 /* Avoid outputting things like x-x or x+5-x,
2654 since some assemblers can't handle that. */
2655 x
= simplify_subtraction (x
);
2656 if (GET_CODE (x
) != MINUS
)
2659 output_addr_const (file
, XEXP (x
, 0));
2660 fprintf (file
, "-");
2661 if (GET_CODE (XEXP (x
, 1)) == CONST_INT
2662 && INTVAL (XEXP (x
, 1)) < 0)
2664 fprintf (file
, ASM_OPEN_PAREN
);
2665 output_addr_const (file
, XEXP (x
, 1));
2666 fprintf (file
, ASM_CLOSE_PAREN
);
2669 output_addr_const (file
, XEXP (x
, 1));
2674 output_addr_const (file
, XEXP (x
, 0));
2678 output_operand_lossage ("invalid expression as operand");
2682 /* A poor man's fprintf, with the added features of %I, %R, %L, and %U.
2683 %R prints the value of REGISTER_PREFIX.
2684 %L prints the value of LOCAL_LABEL_PREFIX.
2685 %U prints the value of USER_LABEL_PREFIX.
2686 %I prints the value of IMMEDIATE_PREFIX.
2687 %O runs ASM_OUTPUT_OPCODE to transform what follows in the string.
2688 Also supported are %d, %x, %s, %e, %f, %g and %%.
2690 We handle alternate assembler dialects here, just like output_asm_insn. */
2693 asm_fprintf
VPROTO((FILE *file
, char *p
, ...))
2704 VA_START (argptr
, p
);
2707 file
= va_arg (argptr
, FILE*);
2708 p
= va_arg (argptr
, char*);
2716 #ifdef ASSEMBLER_DIALECT
2718 /* If we want the first dialect, do nothing. Otherwise, skip
2719 DIALECT_NUMBER of strings ending with '|'. */
2720 for (i
= 0; i
< dialect_number
; i
++)
2722 while (*p
&& *p
++ != '|')
2731 /* Skip to close brace. */
2732 while (*p
&& *p
++ != '}')
2743 while ((c
>= '0' && c
<= '9') || c
== '.')
2751 fprintf (file
, "%%");
2754 case 'd': case 'i': case 'u':
2755 case 'x': case 'p': case 'X':
2759 fprintf (file
, buf
, va_arg (argptr
, int));
2763 /* This is a prefix to the 'd', 'i', 'u', 'x', 'p', and 'X' cases,
2764 but we do not check for those cases. It means that the value
2765 is a HOST_WIDE_INT, which may be either `int' or `long'. */
2767 #if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
2773 fprintf (file
, buf
, va_arg (argptr
, HOST_WIDE_INT
));
2780 fprintf (file
, buf
, va_arg (argptr
, long));
2788 fprintf (file
, buf
, va_arg (argptr
, double));
2794 fprintf (file
, buf
, va_arg (argptr
, char *));
2798 #ifdef ASM_OUTPUT_OPCODE
2799 ASM_OUTPUT_OPCODE (asm_out_file
, p
);
2804 #ifdef REGISTER_PREFIX
2805 fprintf (file
, "%s", REGISTER_PREFIX
);
2810 #ifdef IMMEDIATE_PREFIX
2811 fprintf (file
, "%s", IMMEDIATE_PREFIX
);
2816 #ifdef LOCAL_LABEL_PREFIX
2817 fprintf (file
, "%s", LOCAL_LABEL_PREFIX
);
2822 #ifdef USER_LABEL_PREFIX
2823 fprintf (file
, "%s", USER_LABEL_PREFIX
);
2837 /* Split up a CONST_DOUBLE or integer constant rtx
2838 into two rtx's for single words,
2839 storing in *FIRST the word that comes first in memory in the target
2840 and in *SECOND the other. */
2843 split_double (value
, first
, second
)
2845 rtx
*first
, *second
;
2847 if (GET_CODE (value
) == CONST_INT
)
2849 /* The rule for using CONST_INT for a wider mode
2850 is that we regard the value as signed.
2851 So sign-extend it. */
2852 rtx high
= (INTVAL (value
) < 0 ? constm1_rtx
: const0_rtx
);
2853 if (WORDS_BIG_ENDIAN
)
2864 else if (GET_CODE (value
) != CONST_DOUBLE
)
2866 if (WORDS_BIG_ENDIAN
)
2868 *first
= const0_rtx
;
2874 *second
= const0_rtx
;
2877 else if (GET_MODE (value
) == VOIDmode
2878 /* This is the old way we did CONST_DOUBLE integers. */
2879 || GET_MODE_CLASS (GET_MODE (value
)) == MODE_INT
)
2881 /* In an integer, the words are defined as most and least significant.
2882 So order them by the target's convention. */
2883 if (WORDS_BIG_ENDIAN
)
2885 *first
= GEN_INT (CONST_DOUBLE_HIGH (value
));
2886 *second
= GEN_INT (CONST_DOUBLE_LOW (value
));
2890 *first
= GEN_INT (CONST_DOUBLE_LOW (value
));
2891 *second
= GEN_INT (CONST_DOUBLE_HIGH (value
));
2896 #ifdef REAL_ARITHMETIC
2897 REAL_VALUE_TYPE r
; long l
[2];
2898 REAL_VALUE_FROM_CONST_DOUBLE (r
, value
);
2900 /* Note, this converts the REAL_VALUE_TYPE to the target's
2901 format, splits up the floating point double and outputs
2902 exactly 32 bits of it into each of l[0] and l[1] --
2903 not necessarily BITS_PER_WORD bits. */
2904 REAL_VALUE_TO_TARGET_DOUBLE (r
, l
);
2906 *first
= GEN_INT ((HOST_WIDE_INT
) l
[0]);
2907 *second
= GEN_INT ((HOST_WIDE_INT
) l
[1]);
2909 if ((HOST_FLOAT_FORMAT
!= TARGET_FLOAT_FORMAT
2910 || HOST_BITS_PER_WIDE_INT
!= BITS_PER_WORD
)
2911 && ! flag_pretend_float
)
2915 #ifdef HOST_WORDS_BIG_ENDIAN
2922 /* Host and target agree => no need to swap. */
2923 *first
= GEN_INT (CONST_DOUBLE_LOW (value
));
2924 *second
= GEN_INT (CONST_DOUBLE_HIGH (value
));
2928 *second
= GEN_INT (CONST_DOUBLE_LOW (value
));
2929 *first
= GEN_INT (CONST_DOUBLE_HIGH (value
));
2931 #endif /* no REAL_ARITHMETIC */
2935 /* Return nonzero if this function has no function calls. */
2942 if (profile_flag
|| profile_block_flag
)
2945 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
2947 if (GET_CODE (insn
) == CALL_INSN
)
2949 if (GET_CODE (insn
) == INSN
2950 && GET_CODE (PATTERN (insn
)) == SEQUENCE
2951 && GET_CODE (XVECEXP (PATTERN (insn
), 0, 0)) == CALL_INSN
)
2954 for (insn
= current_function_epilogue_delay_list
; insn
; insn
= XEXP (insn
, 1))
2956 if (GET_CODE (XEXP (insn
, 0)) == CALL_INSN
)
2958 if (GET_CODE (XEXP (insn
, 0)) == INSN
2959 && GET_CODE (PATTERN (XEXP (insn
, 0))) == SEQUENCE
2960 && GET_CODE (XVECEXP (PATTERN (XEXP (insn
, 0)), 0, 0)) == CALL_INSN
)
2967 /* On some machines, a function with no call insns
2968 can run faster if it doesn't create its own register window.
2969 When output, the leaf function should use only the "output"
2970 registers. Ordinarily, the function would be compiled to use
2971 the "input" registers to find its arguments; it is a candidate
2972 for leaf treatment if it uses only the "input" registers.
2973 Leaf function treatment means renumbering so the function
2974 uses the "output" registers instead. */
2976 #ifdef LEAF_REGISTERS
2978 static char permitted_reg_in_leaf_functions
[] = LEAF_REGISTERS
;
2980 /* Return 1 if this function uses only the registers that can be
2981 safely renumbered. */
2984 only_leaf_regs_used ()
2988 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
2990 if ((regs_ever_live
[i
] || global_regs
[i
])
2991 && ! permitted_reg_in_leaf_functions
[i
])
2997 /* Scan all instructions and renumber all registers into those
2998 available in leaf functions. */
3001 leaf_renumber_regs (first
)
3006 /* Renumber only the actual patterns.
3007 The reg-notes can contain frame pointer refs,
3008 and renumbering them could crash, and should not be needed. */
3009 for (insn
= first
; insn
; insn
= NEXT_INSN (insn
))
3010 if (GET_RTX_CLASS (GET_CODE (insn
)) == 'i')
3011 leaf_renumber_regs_insn (PATTERN (insn
));
3012 for (insn
= current_function_epilogue_delay_list
; insn
; insn
= XEXP (insn
, 1))
3013 if (GET_RTX_CLASS (GET_CODE (XEXP (insn
, 0))) == 'i')
3014 leaf_renumber_regs_insn (PATTERN (XEXP (insn
, 0)));
3017 /* Scan IN_RTX and its subexpressions, and renumber all regs into those
3018 available in leaf functions. */
3021 leaf_renumber_regs_insn (in_rtx
)
3022 register rtx in_rtx
;
3025 register char *format_ptr
;
3030 /* Renumber all input-registers into output-registers.
3031 renumbered_regs would be 1 for an output-register;
3034 if (GET_CODE (in_rtx
) == REG
)
3038 /* Don't renumber the same reg twice. */
3042 newreg
= REGNO (in_rtx
);
3043 /* Don't try to renumber pseudo regs. It is possible for a pseudo reg
3044 to reach here as part of a REG_NOTE. */
3045 if (newreg
>= FIRST_PSEUDO_REGISTER
)
3050 newreg
= LEAF_REG_REMAP (newreg
);
3053 regs_ever_live
[REGNO (in_rtx
)] = 0;
3054 regs_ever_live
[newreg
] = 1;
3055 REGNO (in_rtx
) = newreg
;
3059 if (GET_RTX_CLASS (GET_CODE (in_rtx
)) == 'i')
3061 /* Inside a SEQUENCE, we find insns.
3062 Renumber just the patterns of these insns,
3063 just as we do for the top-level insns. */
3064 leaf_renumber_regs_insn (PATTERN (in_rtx
));
3068 format_ptr
= GET_RTX_FORMAT (GET_CODE (in_rtx
));
3070 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (in_rtx
)); i
++)
3071 switch (*format_ptr
++)
3074 leaf_renumber_regs_insn (XEXP (in_rtx
, i
));
3078 if (NULL
!= XVEC (in_rtx
, i
))
3080 for (j
= 0; j
< XVECLEN (in_rtx
, i
); j
++)
3081 leaf_renumber_regs_insn (XVECEXP (in_rtx
, i
, j
));