1 /* Convert RTL to assembler code and output it, for GNU compiler.
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* This is the final pass of the compiler.
23 It looks at the rtl code for a function and outputs assembler code.
25 Call `final_start_function' to output the assembler code for function entry,
26 `final' to output assembler code for some RTL code,
27 `final_end_function' to output assembler code for function exit.
28 If a function is compiled in several pieces, each piece is
29 output separately with `final'.
31 Some optimizations are also done at this level.
32 Move instructions that were made unnecessary by good register allocation
33 are detected and omitted from the output. (Though most of these
34 are removed by the last jump pass.)
36 Instructions to set the condition codes are omitted when it can be
37 seen that the condition codes already had the desired values.
39 In some cases it is sufficient if the inherited condition codes
40 have related values, but this may require the following insn
41 (the one that tests the condition codes) to be modified.
43 The code for the function prologue and epilogue are generated
44 directly as assembler code by the macros FUNCTION_PROLOGUE and
45 FUNCTION_EPILOGUE. Those instructions never exist as rtl. */
54 #include "insn-config.h"
55 #include "insn-flags.h"
56 #include "insn-attr.h"
57 #include "insn-codes.h"
59 #include "conditions.h"
62 #include "hard-reg-set.h"
69 #include "basic-block.h"
71 /* Get N_SLINE and N_SOL from stab.h if we can expect the file to exist. */
72 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
74 #if defined (USG) || !defined (HAVE_STAB_H)
75 #include "gstab.h" /* If doing DBX on sysV, use our own stab.h. */
80 #endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
82 #ifndef ACCUMULATE_OUTGOING_ARGS
83 #define ACCUMULATE_OUTGOING_ARGS 0
86 #ifdef XCOFF_DEBUGGING_INFO
90 #ifdef DWARF_DEBUGGING_INFO
94 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
95 #include "dwarf2out.h"
98 #ifdef SDB_DEBUGGING_INFO
102 /* .stabd code for line number. */
107 /* .stabs code for included file name. */
112 /* If we aren't using cc0, CC_STATUS_INIT shouldn't exist. So define a
113 null default for it to save conditionalization later. */
114 #ifndef CC_STATUS_INIT
115 #define CC_STATUS_INIT
118 /* How to start an assembler comment. */
119 #ifndef ASM_COMMENT_START
120 #define ASM_COMMENT_START ";#"
123 /* Is the given character a logical line separator for the assembler? */
124 #ifndef IS_ASM_LOGICAL_LINE_SEPARATOR
125 #define IS_ASM_LOGICAL_LINE_SEPARATOR(C) ((C) == ';')
128 #ifndef JUMP_TABLES_IN_TEXT_SECTION
129 #define JUMP_TABLES_IN_TEXT_SECTION 0
132 /* Last insn processed by final_scan_insn. */
133 static rtx debug_insn
;
134 rtx current_output_insn
;
136 /* Line number of last NOTE. */
137 static int last_linenum
;
139 /* Highest line number in current block. */
140 static int high_block_linenum
;
142 /* Likewise for function. */
143 static int high_function_linenum
;
145 /* Filename of last NOTE. */
146 static const char *last_filename
;
148 /* Number of basic blocks seen so far;
149 used if profile_block_flag is set. */
150 static int count_basic_blocks
;
152 /* Number of instrumented arcs when profile_arc_flag is set. */
153 extern int count_instrumented_edges
;
155 extern int length_unit_log
; /* This is defined in insn-attrtab.c. */
157 /* Nonzero while outputting an `asm' with operands.
158 This means that inconsistencies are the user's fault, so don't abort.
159 The precise value is the insn being output, to pass to error_for_asm. */
160 static rtx this_is_asm_operands
;
162 /* Number of operands of this insn, for an `asm' with operands. */
163 static unsigned int insn_noperands
;
165 /* Compare optimization flag. */
167 static rtx last_ignored_compare
= 0;
169 /* Flag indicating this insn is the start of a new basic block. */
171 static int new_block
= 1;
173 /* Assign a unique number to each insn that is output.
174 This can be used to generate unique local labels. */
176 static int insn_counter
= 0;
179 /* This variable contains machine-dependent flags (defined in tm.h)
180 set and examined by output routines
181 that describe how to interpret the condition codes properly. */
185 /* During output of an insn, this contains a copy of cc_status
186 from before the insn. */
188 CC_STATUS cc_prev_status
;
191 /* Indexed by hardware reg number, is 1 if that register is ever
192 used in the current function.
194 In life_analysis, or in stupid_life_analysis, this is set
195 up to record the hard regs used explicitly. Reload adds
196 in the hard regs used for holding pseudo regs. Final uses
197 it to generate the code in the function prologue and epilogue
198 to save and restore registers as needed. */
200 char regs_ever_live
[FIRST_PSEUDO_REGISTER
];
202 /* Nonzero means current function must be given a frame pointer.
203 Set in stmt.c if anything is allocated on the stack there.
204 Set in reload1.c if anything is allocated on the stack there. */
206 int frame_pointer_needed
;
208 /* Assign unique numbers to labels generated for profiling. */
210 int profile_label_no
;
212 /* Number of unmatched NOTE_INSN_BLOCK_BEG notes we have seen. */
214 static int block_depth
;
216 /* Nonzero if have enabled APP processing of our assembler output. */
220 /* If we are outputting an insn sequence, this contains the sequence rtx.
225 #ifdef ASSEMBLER_DIALECT
227 /* Number of the assembler dialect to use, starting at 0. */
228 static int dialect_number
;
231 /* Indexed by line number, nonzero if there is a note for that line. */
233 static char *line_note_exists
;
235 #ifdef HAVE_conditional_execution
236 /* Nonnull if the insn currently being emitted was a COND_EXEC pattern. */
237 rtx current_insn_predicate
;
240 /* Linked list to hold line numbers for each basic block. */
244 struct bb_list
*next
; /* pointer to next basic block */
245 int line_num
; /* line number */
246 int file_label_num
; /* LPBC<n> label # for stored filename */
247 int func_label_num
; /* LPBC<n> label # for stored function name */
250 static struct bb_list
*bb_head
= 0; /* Head of basic block list */
251 static struct bb_list
**bb_tail
= &bb_head
; /* Ptr to store next bb ptr */
252 static int bb_file_label_num
= -1; /* Current label # for file */
253 static int bb_func_label_num
= -1; /* Current label # for func */
255 /* Linked list to hold the strings for each file and function name output. */
259 struct bb_str
*next
; /* pointer to next string */
260 const char *string
; /* string */
261 int label_num
; /* label number */
262 int length
; /* string length */
265 static struct bb_str
*sbb_head
= 0; /* Head of string list. */
266 static struct bb_str
**sbb_tail
= &sbb_head
; /* Ptr to store next bb str */
267 static int sbb_label_num
= 0; /* Last label used */
269 #ifdef HAVE_ATTR_length
270 static int asm_insn_count
PARAMS ((rtx
));
272 static void profile_function
PARAMS ((FILE *));
273 static void profile_after_prologue
PARAMS ((FILE *));
274 static void add_bb
PARAMS ((FILE *));
275 static int add_bb_string
PARAMS ((const char *, int));
276 static void output_source_line
PARAMS ((FILE *, rtx
));
277 static rtx walk_alter_subreg
PARAMS ((rtx
));
278 static void output_asm_name
PARAMS ((void));
279 static void output_operand
PARAMS ((rtx
, int));
280 #ifdef LEAF_REGISTERS
281 static void leaf_renumber_regs
PARAMS ((rtx
));
284 static int alter_cond
PARAMS ((rtx
));
286 #ifndef ADDR_VEC_ALIGN
287 static int final_addr_vec_align
PARAMS ((rtx
));
289 #ifdef HAVE_ATTR_length
290 static int align_fuzz
PARAMS ((rtx
, rtx
, int, unsigned));
293 /* Initialize data in final at the beginning of a compilation. */
296 init_final (filename
)
297 const char *filename ATTRIBUTE_UNUSED
;
302 #ifdef ASSEMBLER_DIALECT
303 dialect_number
= ASSEMBLER_DIALECT
;
307 /* Called at end of source file,
308 to output the block-profiling table for this entire compilation. */
312 const char *filename
;
316 if (profile_block_flag
|| profile_arc_flag
)
319 int align
= exact_log2 (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
);
323 int long_bytes
= LONG_TYPE_SIZE
/ BITS_PER_UNIT
;
324 int pointer_bytes
= POINTER_SIZE
/ BITS_PER_UNIT
;
326 if (profile_block_flag
)
327 size
= long_bytes
* count_basic_blocks
;
329 size
= long_bytes
* count_instrumented_edges
;
332 rounded
+= (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1;
333 rounded
= (rounded
/ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
334 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
338 /* Output the main header, of 11 words:
339 0: 1 if this file is initialized, else 0.
340 1: address of file name (LPBX1).
341 2: address of table of counts (LPBX2).
342 3: number of counts in the table.
343 4: always 0, for compatibility with Sun.
345 The following are GNU extensions:
347 5: address of table of start addrs of basic blocks (LPBX3).
348 6: Number of bytes in this header.
349 7: address of table of function names (LPBX4).
350 8: address of table of line numbers (LPBX5) or 0.
351 9: address of table of file names (LPBX6) or 0.
352 10: space reserved for basic block profiling. */
354 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
356 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBX", 0);
358 assemble_integer (const0_rtx
, long_bytes
, 1);
360 /* address of filename */
361 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 1);
362 assemble_integer (gen_rtx_SYMBOL_REF (Pmode
, name
), pointer_bytes
, 1);
364 /* address of count table */
365 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 2);
366 assemble_integer (gen_rtx_SYMBOL_REF (Pmode
, name
), pointer_bytes
, 1);
368 /* count of the # of basic blocks or # of instrumented arcs */
369 if (profile_block_flag
)
370 assemble_integer (GEN_INT (count_basic_blocks
), long_bytes
, 1);
372 assemble_integer (GEN_INT (count_instrumented_edges
), long_bytes
, 1);
374 /* zero word (link field) */
375 assemble_integer (const0_rtx
, pointer_bytes
, 1);
377 /* address of basic block start address table */
378 if (profile_block_flag
)
380 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 3);
381 assemble_integer (gen_rtx_SYMBOL_REF (Pmode
, name
), pointer_bytes
,
385 assemble_integer (const0_rtx
, pointer_bytes
, 1);
387 /* byte count for extended structure. */
388 assemble_integer (GEN_INT (11 * UNITS_PER_WORD
), long_bytes
, 1);
390 /* address of function name table */
391 if (profile_block_flag
)
393 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 4);
394 assemble_integer (gen_rtx_SYMBOL_REF (Pmode
, name
), pointer_bytes
,
398 assemble_integer (const0_rtx
, pointer_bytes
, 1);
400 /* address of line number and filename tables if debugging. */
401 if (write_symbols
!= NO_DEBUG
&& profile_block_flag
)
403 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 5);
404 assemble_integer (gen_rtx_SYMBOL_REF (Pmode
, name
),
406 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 6);
407 assemble_integer (gen_rtx_SYMBOL_REF (Pmode
, name
),
412 assemble_integer (const0_rtx
, pointer_bytes
, 1);
413 assemble_integer (const0_rtx
, pointer_bytes
, 1);
416 /* space for extension ptr (link field) */
417 assemble_integer (const0_rtx
, UNITS_PER_WORD
, 1);
419 /* Output the file name changing the suffix to .d for Sun tcov
421 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBX", 1);
423 char *cwd
= getpwd ();
424 int len
= strlen (filename
) + strlen (cwd
) + 1;
425 char *data_file
= (char *) alloca (len
+ 4);
427 strcpy (data_file
, cwd
);
428 strcat (data_file
, "/");
429 strcat (data_file
, filename
);
430 strip_off_ending (data_file
, len
);
431 if (profile_block_flag
)
432 strcat (data_file
, ".d");
434 strcat (data_file
, ".da");
435 assemble_string (data_file
, strlen (data_file
) + 1);
438 /* Make space for the table of counts. */
441 /* Realign data section. */
442 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
443 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBX", 2);
445 assemble_zeros (size
);
449 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 2);
450 #ifdef ASM_OUTPUT_SHARED_LOCAL
451 if (flag_shared_data
)
452 ASM_OUTPUT_SHARED_LOCAL (asm_out_file
, name
, size
, rounded
);
455 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
456 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, NULL_TREE
, name
,
457 size
, BIGGEST_ALIGNMENT
);
459 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
460 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
,
463 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
468 /* Output any basic block strings */
469 if (profile_block_flag
)
471 readonly_data_section ();
474 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
475 for (sptr
= sbb_head
; sptr
!= 0; sptr
= sptr
->next
)
477 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBC",
479 assemble_string (sptr
->string
, sptr
->length
);
484 /* Output the table of addresses. */
485 if (profile_block_flag
)
487 /* Realign in new section */
488 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
489 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBX", 3);
490 for (i
= 0; i
< count_basic_blocks
; i
++)
492 ASM_GENERATE_INTERNAL_LABEL (name
, "LPB", i
);
493 assemble_integer (gen_rtx_SYMBOL_REF (Pmode
, name
),
498 /* Output the table of function names. */
499 if (profile_block_flag
)
501 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBX", 4);
502 for ((ptr
= bb_head
), (i
= 0); ptr
!= 0; (ptr
= ptr
->next
), i
++)
504 if (ptr
->func_label_num
>= 0)
506 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBC",
507 ptr
->func_label_num
);
508 assemble_integer (gen_rtx_SYMBOL_REF (Pmode
, name
),
512 assemble_integer (const0_rtx
, pointer_bytes
, 1);
515 for (; i
< count_basic_blocks
; i
++)
516 assemble_integer (const0_rtx
, pointer_bytes
, 1);
519 if (write_symbols
!= NO_DEBUG
&& profile_block_flag
)
521 /* Output the table of line numbers. */
522 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBX", 5);
523 for ((ptr
= bb_head
), (i
= 0); ptr
!= 0; (ptr
= ptr
->next
), i
++)
524 assemble_integer (GEN_INT (ptr
->line_num
), long_bytes
, 1);
526 for (; i
< count_basic_blocks
; i
++)
527 assemble_integer (const0_rtx
, long_bytes
, 1);
529 /* Output the table of file names. */
530 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LPBX", 6);
531 for ((ptr
= bb_head
), (i
= 0); ptr
!= 0; (ptr
= ptr
->next
), i
++)
533 if (ptr
->file_label_num
>= 0)
535 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBC",
536 ptr
->file_label_num
);
537 assemble_integer (gen_rtx_SYMBOL_REF (Pmode
, name
),
541 assemble_integer (const0_rtx
, pointer_bytes
, 1);
544 for (; i
< count_basic_blocks
; i
++)
545 assemble_integer (const0_rtx
, pointer_bytes
, 1);
548 /* End with the address of the table of addresses,
549 so we can find it easily, as the last word in the file's text. */
550 if (profile_block_flag
)
552 ASM_GENERATE_INTERNAL_LABEL (name
, "LPBX", 3);
553 assemble_integer (gen_rtx_SYMBOL_REF (Pmode
, name
), pointer_bytes
,
559 /* Enable APP processing of subsequent output.
560 Used before the output from an `asm' statement. */
567 fputs (ASM_APP_ON
, asm_out_file
);
572 /* Disable APP processing of subsequent output.
573 Called from varasm.c before most kinds of output. */
580 fputs (ASM_APP_OFF
, asm_out_file
);
585 /* Return the number of slots filled in the current
586 delayed branch sequence (we don't count the insn needing the
587 delay slot). Zero if not in a delayed branch sequence. */
591 dbr_sequence_length ()
593 if (final_sequence
!= 0)
594 return XVECLEN (final_sequence
, 0) - 1;
600 /* The next two pages contain routines used to compute the length of an insn
601 and to shorten branches. */
603 /* Arrays for insn lengths, and addresses. The latter is referenced by
604 `insn_current_length'. */
606 static short *insn_lengths
;
608 #ifdef HAVE_ATTR_length
609 varray_type insn_addresses_
;
612 /* Max uid for which the above arrays are valid. */
613 static int insn_lengths_max_uid
;
615 /* Address of insn being processed. Used by `insn_current_length'. */
616 int insn_current_address
;
618 /* Address of insn being processed in previous iteration. */
619 int insn_last_address
;
621 /* konwn invariant alignment of insn being processed. */
622 int insn_current_align
;
624 /* After shorten_branches, for any insn, uid_align[INSN_UID (insn)]
625 gives the next following alignment insn that increases the known
626 alignment, or NULL_RTX if there is no such insn.
627 For any alignment obtained this way, we can again index uid_align with
628 its uid to obtain the next following align that in turn increases the
629 alignment, till we reach NULL_RTX; the sequence obtained this way
630 for each insn we'll call the alignment chain of this insn in the following
633 struct label_alignment
639 static rtx
*uid_align
;
640 static int *uid_shuid
;
641 static struct label_alignment
*label_align
;
643 /* Indicate that branch shortening hasn't yet been done. */
662 insn_lengths_max_uid
= 0;
664 #ifdef HAVE_ATTR_length
665 INSN_ADDRESSES_FREE ();
674 /* Obtain the current length of an insn. If branch shortening has been done,
675 get its actual length. Otherwise, get its maximum length. */
678 get_attr_length (insn
)
679 rtx insn ATTRIBUTE_UNUSED
;
681 #ifdef HAVE_ATTR_length
686 if (insn_lengths_max_uid
> INSN_UID (insn
))
687 return insn_lengths
[INSN_UID (insn
)];
689 switch (GET_CODE (insn
))
697 length
= insn_default_length (insn
);
701 body
= PATTERN (insn
);
702 if (GET_CODE (body
) == ADDR_VEC
|| GET_CODE (body
) == ADDR_DIFF_VEC
)
704 /* Alignment is machine-dependent and should be handled by
708 length
= insn_default_length (insn
);
712 body
= PATTERN (insn
);
713 if (GET_CODE (body
) == USE
|| GET_CODE (body
) == CLOBBER
)
716 else if (GET_CODE (body
) == ASM_INPUT
|| asm_noperands (body
) >= 0)
717 length
= asm_insn_count (body
) * insn_default_length (insn
);
718 else if (GET_CODE (body
) == SEQUENCE
)
719 for (i
= 0; i
< XVECLEN (body
, 0); i
++)
720 length
+= get_attr_length (XVECEXP (body
, 0, i
));
722 length
= insn_default_length (insn
);
729 #ifdef ADJUST_INSN_LENGTH
730 ADJUST_INSN_LENGTH (insn
, length
);
733 #else /* not HAVE_ATTR_length */
735 #endif /* not HAVE_ATTR_length */
738 /* Code to handle alignment inside shorten_branches. */
740 /* Here is an explanation how the algorithm in align_fuzz can give
743 Call a sequence of instructions beginning with alignment point X
744 and continuing until the next alignment point `block X'. When `X'
745 is used in an expression, it means the alignment value of the
748 Call the distance between the start of the first insn of block X, and
749 the end of the last insn of block X `IX', for the `inner size of X'.
750 This is clearly the sum of the instruction lengths.
752 Likewise with the next alignment-delimited block following X, which we
755 Call the distance between the start of the first insn of block X, and
756 the start of the first insn of block Y `OX', for the `outer size of X'.
758 The estimated padding is then OX - IX.
760 OX can be safely estimated as
765 OX = round_up(IX, X) + Y - X
767 Clearly est(IX) >= real(IX), because that only depends on the
768 instruction lengths, and those being overestimated is a given.
770 Clearly round_up(foo, Z) >= round_up(bar, Z) if foo >= bar, so
771 we needn't worry about that when thinking about OX.
773 When X >= Y, the alignment provided by Y adds no uncertainty factor
774 for branch ranges starting before X, so we can just round what we have.
775 But when X < Y, we don't know anything about the, so to speak,
776 `middle bits', so we have to assume the worst when aligning up from an
777 address mod X to one mod Y, which is Y - X. */
780 #define LABEL_ALIGN(LABEL) align_labels_log
783 #ifndef LABEL_ALIGN_MAX_SKIP
784 #define LABEL_ALIGN_MAX_SKIP (align_labels-1)
788 #define LOOP_ALIGN(LABEL) align_loops_log
791 #ifndef LOOP_ALIGN_MAX_SKIP
792 #define LOOP_ALIGN_MAX_SKIP (align_loops-1)
795 #ifndef LABEL_ALIGN_AFTER_BARRIER
796 #define LABEL_ALIGN_AFTER_BARRIER(LABEL) align_jumps_log
799 #ifndef LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP
800 #define LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP (align_jumps-1)
803 #ifndef ADDR_VEC_ALIGN
805 final_addr_vec_align (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)
819 #ifndef INSN_LENGTH_ALIGNMENT
820 #define INSN_LENGTH_ALIGNMENT(INSN) length_unit_log
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
)
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. */
872 align_fuzz (start
, end
, known_align_log
, growth
)
877 int uid
= INSN_UID (start
);
879 int known_align
= 1 << known_align_log
;
880 int end_shuid
= INSN_SHUID (end
);
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
)
891 known_align_log
= LABEL_TO_ALIGNMENT (align_label
);
892 new_align
= 1 << known_align_log
;
893 if (new_align
< known_align
)
895 fuzz
+= (-align_addr
^ growth
) & (new_align
- known_align
);
896 known_align
= new_align
;
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
)
920 if (! INSN_ADDRESSES_SET_P ())
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));
944 /* Backward branch. */
945 return (insn_current_address
946 + align_fuzz (dest
, seq
, length_unit_log
, ~0));
949 #endif /* HAVE_ATTR_length */
951 /* Make a pass over all insns and compute their actual lengths by shortening
952 any branches of variable length if possible. */
954 /* Give a default value for the lowest address in a function. */
956 #ifndef FIRST_INSN_ADDRESS
957 #define FIRST_INSN_ADDRESS 0
960 /* shorten_branches might be called multiple times: for example, the SH
961 port splits out-of-range conditional branches in MACHINE_DEPENDENT_REORG.
962 In order to do this, it needs proper length information, which it obtains
963 by calling shorten_branches. This cannot be collapsed with
964 shorten_branches itself into a single pass unless we also want to intergate
965 reorg.c, since the branch splitting exposes new instructions with delay
969 shorten_branches (first
)
970 rtx first ATTRIBUTE_UNUSED
;
977 #ifdef HAVE_ATTR_length
978 #define MAX_CODE_ALIGN 16
980 int something_changed
= 1;
981 char *varying_length
;
984 rtx align_tab
[MAX_CODE_ALIGN
];
986 /* In order to make sure that all instructions have valid length info,
987 we must split them before we compute the address/length info. */
989 for (insn
= NEXT_INSN (first
); insn
; insn
= NEXT_INSN (insn
))
993 /* Don't split the insn if it has been deleted. */
994 if (! INSN_DELETED_P (old
))
995 insn
= try_split (PATTERN (old
), old
, 1);
996 /* When not optimizing, the old insn will be still left around
997 with only the 'deleted' bit set. Transform it into a note
998 to avoid confusion of subsequent processing. */
999 if (INSN_DELETED_P (old
))
1001 PUT_CODE (old
, NOTE
);
1002 NOTE_LINE_NUMBER (old
) = NOTE_INSN_DELETED
;
1003 NOTE_SOURCE_FILE (old
) = 0;
1008 /* We must do some computations even when not actually shortening, in
1009 order to get the alignment information for the labels. */
1011 init_insn_lengths ();
1013 /* Compute maximum UID and allocate label_align / uid_shuid. */
1014 max_uid
= get_max_uid ();
1016 max_labelno
= max_label_num ();
1017 min_labelno
= get_first_label_num ();
1018 label_align
= (struct label_alignment
*)
1019 xcalloc ((max_labelno
- min_labelno
+ 1), sizeof (struct label_alignment
));
1021 uid_shuid
= (int *) xmalloc (max_uid
* sizeof *uid_shuid
);
1023 /* Initialize label_align and set up uid_shuid to be strictly
1024 monotonically rising with insn order. */
1025 /* We use max_log here to keep track of the maximum alignment we want to
1026 impose on the next CODE_LABEL (or the current one if we are processing
1027 the CODE_LABEL itself). */
1032 for (insn
= get_insns (), i
= 1; insn
; insn
= NEXT_INSN (insn
))
1036 INSN_SHUID (insn
) = i
++;
1039 /* reorg might make the first insn of a loop being run once only,
1040 and delete the label in front of it. Then we want to apply
1041 the loop alignment to the new label created by reorg, which
1042 is separated by the former loop start insn from the
1043 NOTE_INSN_LOOP_BEG. */
1045 else if (GET_CODE (insn
) == CODE_LABEL
)
1049 log
= LABEL_ALIGN (insn
);
1053 max_skip
= LABEL_ALIGN_MAX_SKIP
;
1055 next
= NEXT_INSN (insn
);
1056 /* ADDR_VECs only take room if read-only data goes into the text
1058 if (JUMP_TABLES_IN_TEXT_SECTION
1059 #if !defined(READONLY_DATA_SECTION)
1063 if (next
&& GET_CODE (next
) == JUMP_INSN
)
1065 rtx nextbody
= PATTERN (next
);
1066 if (GET_CODE (nextbody
) == ADDR_VEC
1067 || GET_CODE (nextbody
) == ADDR_DIFF_VEC
)
1069 log
= ADDR_VEC_ALIGN (next
);
1073 max_skip
= LABEL_ALIGN_MAX_SKIP
;
1077 LABEL_TO_ALIGNMENT (insn
) = max_log
;
1078 LABEL_TO_MAX_SKIP (insn
) = max_skip
;
1082 else if (GET_CODE (insn
) == BARRIER
)
1086 for (label
= insn
; label
&& ! INSN_P (label
);
1087 label
= NEXT_INSN (label
))
1088 if (GET_CODE (label
) == CODE_LABEL
)
1090 log
= LABEL_ALIGN_AFTER_BARRIER (insn
);
1094 max_skip
= LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP
;
1099 /* Again, we allow NOTE_INSN_LOOP_BEG - INSN - CODE_LABEL
1100 sequences in order to handle reorg output efficiently. */
1101 else if (GET_CODE (insn
) == NOTE
1102 && NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_BEG
)
1107 /* Search for the label that starts the loop.
1108 Don't skip past the end of the loop, since that could
1109 lead to putting an alignment where it does not belong.
1110 However, a label after a nested (non-)loop would be OK. */
1111 for (label
= insn
; label
; label
= NEXT_INSN (label
))
1113 if (GET_CODE (label
) == NOTE
1114 && NOTE_LINE_NUMBER (label
) == NOTE_INSN_LOOP_BEG
)
1116 else if (GET_CODE (label
) == NOTE
1117 && NOTE_LINE_NUMBER (label
) == NOTE_INSN_LOOP_END
1120 else if (GET_CODE (label
) == CODE_LABEL
)
1122 log
= LOOP_ALIGN (label
);
1126 max_skip
= LOOP_ALIGN_MAX_SKIP
;
1135 #ifdef HAVE_ATTR_length
1137 /* Allocate the rest of the arrays. */
1138 insn_lengths
= (short *) xmalloc (max_uid
* sizeof (short));
1139 insn_lengths_max_uid
= max_uid
;
1140 /* Syntax errors can lead to labels being outside of the main insn stream.
1141 Initialize insn_addresses, so that we get reproducible results. */
1142 INSN_ADDRESSES_ALLOC (max_uid
);
1144 varying_length
= (char *) xcalloc (max_uid
, sizeof (char));
1146 /* Initialize uid_align. We scan instructions
1147 from end to start, and keep in align_tab[n] the last seen insn
1148 that does an alignment of at least n+1, i.e. the successor
1149 in the alignment chain for an insn that does / has a known
1151 uid_align
= (rtx
*) xcalloc (max_uid
, sizeof *uid_align
);
1153 for (i
= MAX_CODE_ALIGN
; --i
>= 0;)
1154 align_tab
[i
] = NULL_RTX
;
1155 seq
= get_last_insn ();
1156 for (; seq
; seq
= PREV_INSN (seq
))
1158 int uid
= INSN_UID (seq
);
1160 log
= (GET_CODE (seq
) == CODE_LABEL
? LABEL_TO_ALIGNMENT (seq
) : 0);
1161 uid_align
[uid
] = align_tab
[0];
1164 /* Found an alignment label. */
1165 uid_align
[uid
] = align_tab
[log
];
1166 for (i
= log
- 1; i
>= 0; i
--)
1170 #ifdef CASE_VECTOR_SHORTEN_MODE
1173 /* Look for ADDR_DIFF_VECs, and initialize their minimum and maximum
1176 int min_shuid
= INSN_SHUID (get_insns ()) - 1;
1177 int max_shuid
= INSN_SHUID (get_last_insn ()) + 1;
1180 for (insn
= first
; insn
!= 0; insn
= NEXT_INSN (insn
))
1182 rtx min_lab
= NULL_RTX
, max_lab
= NULL_RTX
, pat
;
1183 int len
, i
, min
, max
, insn_shuid
;
1185 addr_diff_vec_flags flags
;
1187 if (GET_CODE (insn
) != JUMP_INSN
1188 || GET_CODE (PATTERN (insn
)) != ADDR_DIFF_VEC
)
1190 pat
= PATTERN (insn
);
1191 len
= XVECLEN (pat
, 1);
1194 min_align
= MAX_CODE_ALIGN
;
1195 for (min
= max_shuid
, max
= min_shuid
, i
= len
- 1; i
>= 0; i
--)
1197 rtx lab
= XEXP (XVECEXP (pat
, 1, i
), 0);
1198 int shuid
= INSN_SHUID (lab
);
1209 if (min_align
> LABEL_TO_ALIGNMENT (lab
))
1210 min_align
= LABEL_TO_ALIGNMENT (lab
);
1212 XEXP (pat
, 2) = gen_rtx_LABEL_REF (VOIDmode
, min_lab
);
1213 XEXP (pat
, 3) = gen_rtx_LABEL_REF (VOIDmode
, max_lab
);
1214 insn_shuid
= INSN_SHUID (insn
);
1215 rel
= INSN_SHUID (XEXP (XEXP (pat
, 0), 0));
1216 flags
.min_align
= min_align
;
1217 flags
.base_after_vec
= rel
> insn_shuid
;
1218 flags
.min_after_vec
= min
> insn_shuid
;
1219 flags
.max_after_vec
= max
> insn_shuid
;
1220 flags
.min_after_base
= min
> rel
;
1221 flags
.max_after_base
= max
> rel
;
1222 ADDR_DIFF_VEC_FLAGS (pat
) = flags
;
1225 #endif /* CASE_VECTOR_SHORTEN_MODE */
1227 /* Compute initial lengths, addresses, and varying flags for each insn. */
1228 for (insn_current_address
= FIRST_INSN_ADDRESS
, insn
= first
;
1230 insn_current_address
+= insn_lengths
[uid
], insn
= NEXT_INSN (insn
))
1232 uid
= INSN_UID (insn
);
1234 insn_lengths
[uid
] = 0;
1236 if (GET_CODE (insn
) == CODE_LABEL
)
1238 int log
= LABEL_TO_ALIGNMENT (insn
);
1241 int align
= 1 << log
;
1242 int new_address
= (insn_current_address
+ align
- 1) & -align
;
1243 insn_lengths
[uid
] = new_address
- insn_current_address
;
1247 INSN_ADDRESSES (uid
) = insn_current_address
;
1249 if (GET_CODE (insn
) == NOTE
|| GET_CODE (insn
) == BARRIER
1250 || GET_CODE (insn
) == CODE_LABEL
)
1252 if (INSN_DELETED_P (insn
))
1255 body
= PATTERN (insn
);
1256 if (GET_CODE (body
) == ADDR_VEC
|| GET_CODE (body
) == ADDR_DIFF_VEC
)
1258 /* This only takes room if read-only data goes into the text
1260 if (JUMP_TABLES_IN_TEXT_SECTION
1261 #if !defined(READONLY_DATA_SECTION)
1265 insn_lengths
[uid
] = (XVECLEN (body
,
1266 GET_CODE (body
) == ADDR_DIFF_VEC
)
1267 * GET_MODE_SIZE (GET_MODE (body
)));
1268 /* Alignment is handled by ADDR_VEC_ALIGN. */
1270 else if (GET_CODE (body
) == ASM_INPUT
|| asm_noperands (body
) >= 0)
1271 insn_lengths
[uid
] = asm_insn_count (body
) * insn_default_length (insn
);
1272 else if (GET_CODE (body
) == SEQUENCE
)
1275 int const_delay_slots
;
1277 const_delay_slots
= const_num_delay_slots (XVECEXP (body
, 0, 0));
1279 const_delay_slots
= 0;
1281 /* Inside a delay slot sequence, we do not do any branch shortening
1282 if the shortening could change the number of delay slots
1284 for (i
= 0; i
< XVECLEN (body
, 0); i
++)
1286 rtx inner_insn
= XVECEXP (body
, 0, i
);
1287 int inner_uid
= INSN_UID (inner_insn
);
1290 if (GET_CODE (body
) == ASM_INPUT
1291 || asm_noperands (PATTERN (XVECEXP (body
, 0, i
))) >= 0)
1292 inner_length
= (asm_insn_count (PATTERN (inner_insn
))
1293 * insn_default_length (inner_insn
));
1295 inner_length
= insn_default_length (inner_insn
);
1297 insn_lengths
[inner_uid
] = inner_length
;
1298 if (const_delay_slots
)
1300 if ((varying_length
[inner_uid
]
1301 = insn_variable_length_p (inner_insn
)) != 0)
1302 varying_length
[uid
] = 1;
1303 INSN_ADDRESSES (inner_uid
) = (insn_current_address
1304 + insn_lengths
[uid
]);
1307 varying_length
[inner_uid
] = 0;
1308 insn_lengths
[uid
] += inner_length
;
1311 else if (GET_CODE (body
) != USE
&& GET_CODE (body
) != CLOBBER
)
1313 insn_lengths
[uid
] = insn_default_length (insn
);
1314 varying_length
[uid
] = insn_variable_length_p (insn
);
1317 /* If needed, do any adjustment. */
1318 #ifdef ADJUST_INSN_LENGTH
1319 ADJUST_INSN_LENGTH (insn
, insn_lengths
[uid
]);
1320 if (insn_lengths
[uid
] < 0)
1321 fatal_insn ("Negative insn length", insn
);
1325 /* Now loop over all the insns finding varying length insns. For each,
1326 get the current insn length. If it has changed, reflect the change.
1327 When nothing changes for a full pass, we are done. */
1329 while (something_changed
)
1331 something_changed
= 0;
1332 insn_current_align
= MAX_CODE_ALIGN
- 1;
1333 for (insn_current_address
= FIRST_INSN_ADDRESS
, insn
= first
;
1335 insn
= NEXT_INSN (insn
))
1338 #ifdef ADJUST_INSN_LENGTH
1343 uid
= INSN_UID (insn
);
1345 if (GET_CODE (insn
) == CODE_LABEL
)
1347 int log
= LABEL_TO_ALIGNMENT (insn
);
1348 if (log
> insn_current_align
)
1350 int align
= 1 << log
;
1351 int new_address
= (insn_current_address
+ align
- 1) & -align
;
1352 insn_lengths
[uid
] = new_address
- insn_current_address
;
1353 insn_current_align
= log
;
1354 insn_current_address
= new_address
;
1357 insn_lengths
[uid
] = 0;
1358 INSN_ADDRESSES (uid
) = insn_current_address
;
1362 length_align
= INSN_LENGTH_ALIGNMENT (insn
);
1363 if (length_align
< insn_current_align
)
1364 insn_current_align
= length_align
;
1366 insn_last_address
= INSN_ADDRESSES (uid
);
1367 INSN_ADDRESSES (uid
) = insn_current_address
;
1369 #ifdef CASE_VECTOR_SHORTEN_MODE
1370 if (optimize
&& GET_CODE (insn
) == JUMP_INSN
1371 && GET_CODE (PATTERN (insn
)) == ADDR_DIFF_VEC
)
1373 rtx body
= PATTERN (insn
);
1374 int old_length
= insn_lengths
[uid
];
1375 rtx rel_lab
= XEXP (XEXP (body
, 0), 0);
1376 rtx min_lab
= XEXP (XEXP (body
, 2), 0);
1377 rtx max_lab
= XEXP (XEXP (body
, 3), 0);
1378 addr_diff_vec_flags flags
= ADDR_DIFF_VEC_FLAGS (body
);
1379 int rel_addr
= INSN_ADDRESSES (INSN_UID (rel_lab
));
1380 int min_addr
= INSN_ADDRESSES (INSN_UID (min_lab
));
1381 int max_addr
= INSN_ADDRESSES (INSN_UID (max_lab
));
1385 /* Try to find a known alignment for rel_lab. */
1386 for (prev
= rel_lab
;
1388 && ! insn_lengths
[INSN_UID (prev
)]
1389 && ! (varying_length
[INSN_UID (prev
)] & 1);
1390 prev
= PREV_INSN (prev
))
1391 if (varying_length
[INSN_UID (prev
)] & 2)
1393 rel_align
= LABEL_TO_ALIGNMENT (prev
);
1397 /* See the comment on addr_diff_vec_flags in rtl.h for the
1398 meaning of the flags values. base: REL_LAB vec: INSN */
1399 /* Anything after INSN has still addresses from the last
1400 pass; adjust these so that they reflect our current
1401 estimate for this pass. */
1402 if (flags
.base_after_vec
)
1403 rel_addr
+= insn_current_address
- insn_last_address
;
1404 if (flags
.min_after_vec
)
1405 min_addr
+= insn_current_address
- insn_last_address
;
1406 if (flags
.max_after_vec
)
1407 max_addr
+= insn_current_address
- insn_last_address
;
1408 /* We want to know the worst case, i.e. lowest possible value
1409 for the offset of MIN_LAB. If MIN_LAB is after REL_LAB,
1410 its offset is positive, and we have to be wary of code shrink;
1411 otherwise, it is negative, and we have to be vary of code
1413 if (flags
.min_after_base
)
1415 /* If INSN is between REL_LAB and MIN_LAB, the size
1416 changes we are about to make can change the alignment
1417 within the observed offset, therefore we have to break
1418 it up into two parts that are independent. */
1419 if (! flags
.base_after_vec
&& flags
.min_after_vec
)
1421 min_addr
-= align_fuzz (rel_lab
, insn
, rel_align
, 0);
1422 min_addr
-= align_fuzz (insn
, min_lab
, 0, 0);
1425 min_addr
-= align_fuzz (rel_lab
, min_lab
, rel_align
, 0);
1429 if (flags
.base_after_vec
&& ! flags
.min_after_vec
)
1431 min_addr
-= align_fuzz (min_lab
, insn
, 0, ~0);
1432 min_addr
-= align_fuzz (insn
, rel_lab
, 0, ~0);
1435 min_addr
-= align_fuzz (min_lab
, rel_lab
, 0, ~0);
1437 /* Likewise, determine the highest lowest possible value
1438 for the offset of MAX_LAB. */
1439 if (flags
.max_after_base
)
1441 if (! flags
.base_after_vec
&& flags
.max_after_vec
)
1443 max_addr
+= align_fuzz (rel_lab
, insn
, rel_align
, ~0);
1444 max_addr
+= align_fuzz (insn
, max_lab
, 0, ~0);
1447 max_addr
+= align_fuzz (rel_lab
, max_lab
, rel_align
, ~0);
1451 if (flags
.base_after_vec
&& ! flags
.max_after_vec
)
1453 max_addr
+= align_fuzz (max_lab
, insn
, 0, 0);
1454 max_addr
+= align_fuzz (insn
, rel_lab
, 0, 0);
1457 max_addr
+= align_fuzz (max_lab
, rel_lab
, 0, 0);
1459 PUT_MODE (body
, CASE_VECTOR_SHORTEN_MODE (min_addr
- rel_addr
,
1460 max_addr
- rel_addr
,
1462 if (JUMP_TABLES_IN_TEXT_SECTION
1463 #if !defined(READONLY_DATA_SECTION)
1469 = (XVECLEN (body
, 1) * GET_MODE_SIZE (GET_MODE (body
)));
1470 insn_current_address
+= insn_lengths
[uid
];
1471 if (insn_lengths
[uid
] != old_length
)
1472 something_changed
= 1;
1477 #endif /* CASE_VECTOR_SHORTEN_MODE */
1479 if (! (varying_length
[uid
]))
1481 insn_current_address
+= insn_lengths
[uid
];
1484 if (GET_CODE (insn
) == INSN
&& GET_CODE (PATTERN (insn
)) == SEQUENCE
)
1488 body
= PATTERN (insn
);
1490 for (i
= 0; i
< XVECLEN (body
, 0); i
++)
1492 rtx inner_insn
= XVECEXP (body
, 0, i
);
1493 int inner_uid
= INSN_UID (inner_insn
);
1496 INSN_ADDRESSES (inner_uid
) = insn_current_address
;
1498 /* insn_current_length returns 0 for insns with a
1499 non-varying length. */
1500 if (! varying_length
[inner_uid
])
1501 inner_length
= insn_lengths
[inner_uid
];
1503 inner_length
= insn_current_length (inner_insn
);
1505 if (inner_length
!= insn_lengths
[inner_uid
])
1507 insn_lengths
[inner_uid
] = inner_length
;
1508 something_changed
= 1;
1510 insn_current_address
+= insn_lengths
[inner_uid
];
1511 new_length
+= inner_length
;
1516 new_length
= insn_current_length (insn
);
1517 insn_current_address
+= new_length
;
1520 #ifdef ADJUST_INSN_LENGTH
1521 /* If needed, do any adjustment. */
1522 tmp_length
= new_length
;
1523 ADJUST_INSN_LENGTH (insn
, new_length
);
1524 insn_current_address
+= (new_length
- tmp_length
);
1527 if (new_length
!= insn_lengths
[uid
])
1529 insn_lengths
[uid
] = new_length
;
1530 something_changed
= 1;
1533 /* For a non-optimizing compile, do only a single pass. */
1538 free (varying_length
);
1540 #endif /* HAVE_ATTR_length */
1543 #ifdef HAVE_ATTR_length
1544 /* Given the body of an INSN known to be generated by an ASM statement, return
1545 the number of machine instructions likely to be generated for this insn.
1546 This is used to compute its length. */
1549 asm_insn_count (body
)
1552 const char *template;
1555 if (GET_CODE (body
) == ASM_INPUT
)
1556 template = XSTR (body
, 0);
1558 template = decode_asm_operands (body
, NULL_PTR
, NULL_PTR
,
1559 NULL_PTR
, NULL_PTR
);
1561 for (; *template; template++)
1562 if (IS_ASM_LOGICAL_LINE_SEPARATOR (*template) || *template == '\n')
1569 /* Output assembler code for the start of a function,
1570 and initialize some of the variables in this file
1571 for the new function. The label for the function and associated
1572 assembler pseudo-ops have already been output in `assemble_start_function'.
1574 FIRST is the first insn of the rtl for the function being compiled.
1575 FILE is the file to write assembler code to.
1576 OPTIMIZE is nonzero if we should eliminate redundant
1577 test and compare insns. */
1580 final_start_function (first
, file
, optimize
)
1583 int optimize ATTRIBUTE_UNUSED
;
1587 this_is_asm_operands
= 0;
1589 #ifdef NON_SAVING_SETJMP
1590 /* A function that calls setjmp should save and restore all the
1591 call-saved registers on a system where longjmp clobbers them. */
1592 if (NON_SAVING_SETJMP
&& current_function_calls_setjmp
)
1596 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
1597 if (!call_used_regs
[i
])
1598 regs_ever_live
[i
] = 1;
1602 /* Initial line number is supposed to be output
1603 before the function's prologue and label
1604 so that the function's address will not appear to be
1605 in the last statement of the preceding function. */
1606 if (NOTE_LINE_NUMBER (first
) != NOTE_INSN_DELETED
)
1607 last_linenum
= high_block_linenum
= high_function_linenum
1608 = NOTE_LINE_NUMBER (first
);
1610 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
1611 /* Output DWARF definition of the function. */
1612 if (dwarf2out_do_frame ())
1613 dwarf2out_begin_prologue ();
1615 current_function_func_begin_label
= 0;
1618 /* For SDB and XCOFF, the function beginning must be marked between
1619 the function label and the prologue. We always need this, even when
1620 -g1 was used. Defer on MIPS systems so that parameter descriptions
1621 follow function entry. */
1622 #if defined(SDB_DEBUGGING_INFO) && !defined(MIPS_DEBUGGING_INFO)
1623 if (write_symbols
== SDB_DEBUG
)
1624 sdbout_begin_function (last_linenum
);
1627 #ifdef XCOFF_DEBUGGING_INFO
1628 if (write_symbols
== XCOFF_DEBUG
)
1629 xcoffout_begin_function (file
, last_linenum
);
1632 /* But only output line number for other debug info types if -g2
1634 if (NOTE_LINE_NUMBER (first
) != NOTE_INSN_DELETED
)
1635 output_source_line (file
, first
);
1637 #ifdef LEAF_REG_REMAP
1638 if (current_function_uses_only_leaf_regs
)
1639 leaf_renumber_regs (first
);
1642 /* The Sun386i and perhaps other machines don't work right
1643 if the profiling code comes after the prologue. */
1644 #ifdef PROFILE_BEFORE_PROLOGUE
1646 profile_function (file
);
1647 #endif /* PROFILE_BEFORE_PROLOGUE */
1649 #if defined (DWARF2_UNWIND_INFO) && defined (HAVE_prologue)
1650 if (dwarf2out_do_frame ())
1651 dwarf2out_frame_debug (NULL_RTX
);
1654 /* If debugging, assign block numbers to all of the blocks in this
1658 number_blocks (current_function_decl
);
1659 remove_unnecessary_notes ();
1660 /* We never actually put out begin/end notes for the top-level
1661 block in the function. But, conceptually, that block is
1663 TREE_ASM_WRITTEN (DECL_INITIAL (current_function_decl
)) = 1;
1666 #ifdef FUNCTION_PROLOGUE
1667 /* First output the function prologue: code to set up the stack frame. */
1668 FUNCTION_PROLOGUE (file
, get_frame_size ());
1671 /* If the machine represents the prologue as RTL, the profiling code must
1672 be emitted when NOTE_INSN_PROLOGUE_END is scanned. */
1673 #ifdef HAVE_prologue
1674 if (! HAVE_prologue
)
1676 profile_after_prologue (file
);
1680 /* If we are doing basic block profiling, remember a printable version
1681 of the function name. */
1682 if (profile_block_flag
)
1685 add_bb_string ((*decl_printable_name
) (current_function_decl
, 2),
1691 profile_after_prologue (file
)
1692 FILE *file ATTRIBUTE_UNUSED
;
1694 #ifdef FUNCTION_BLOCK_PROFILER
1695 if (profile_block_flag
)
1697 FUNCTION_BLOCK_PROFILER (file
, count_basic_blocks
);
1699 #endif /* FUNCTION_BLOCK_PROFILER */
1701 #ifndef PROFILE_BEFORE_PROLOGUE
1703 profile_function (file
);
1704 #endif /* not PROFILE_BEFORE_PROLOGUE */
1708 profile_function (file
)
1711 #ifndef NO_PROFILE_COUNTERS
1712 int align
= MIN (BIGGEST_ALIGNMENT
, LONG_TYPE_SIZE
);
1714 #if defined(ASM_OUTPUT_REG_PUSH)
1715 #if defined(STRUCT_VALUE_INCOMING_REGNUM) || defined(STRUCT_VALUE_REGNUM)
1716 int sval
= current_function_returns_struct
;
1718 #if defined(STATIC_CHAIN_INCOMING_REGNUM) || defined(STATIC_CHAIN_REGNUM)
1719 int cxt
= current_function_needs_context
;
1721 #endif /* ASM_OUTPUT_REG_PUSH */
1723 #ifndef NO_PROFILE_COUNTERS
1725 ASM_OUTPUT_ALIGN (file
, floor_log2 (align
/ BITS_PER_UNIT
));
1726 ASM_OUTPUT_INTERNAL_LABEL (file
, "LP", profile_label_no
);
1727 assemble_integer (const0_rtx
, LONG_TYPE_SIZE
/ BITS_PER_UNIT
, 1);
1730 function_section (current_function_decl
);
1732 #if defined(STRUCT_VALUE_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1734 ASM_OUTPUT_REG_PUSH (file
, STRUCT_VALUE_INCOMING_REGNUM
);
1736 #if defined(STRUCT_VALUE_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1739 ASM_OUTPUT_REG_PUSH (file
, STRUCT_VALUE_REGNUM
);
1744 #if defined(STATIC_CHAIN_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1746 ASM_OUTPUT_REG_PUSH (file
, STATIC_CHAIN_INCOMING_REGNUM
);
1748 #if defined(STATIC_CHAIN_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1751 ASM_OUTPUT_REG_PUSH (file
, STATIC_CHAIN_REGNUM
);
1756 FUNCTION_PROFILER (file
, profile_label_no
);
1758 #if defined(STATIC_CHAIN_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1760 ASM_OUTPUT_REG_POP (file
, STATIC_CHAIN_INCOMING_REGNUM
);
1762 #if defined(STATIC_CHAIN_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1765 ASM_OUTPUT_REG_POP (file
, STATIC_CHAIN_REGNUM
);
1770 #if defined(STRUCT_VALUE_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1772 ASM_OUTPUT_REG_POP (file
, STRUCT_VALUE_INCOMING_REGNUM
);
1774 #if defined(STRUCT_VALUE_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
1777 ASM_OUTPUT_REG_POP (file
, STRUCT_VALUE_REGNUM
);
1783 /* Output assembler code for the end of a function.
1784 For clarity, args are same as those of `final_start_function'
1785 even though not all of them are needed. */
1788 final_end_function (first
, file
, optimize
)
1789 rtx first ATTRIBUTE_UNUSED
;
1790 FILE *file ATTRIBUTE_UNUSED
;
1791 int optimize ATTRIBUTE_UNUSED
;
1795 #ifdef SDB_DEBUGGING_INFO
1796 if (write_symbols
== SDB_DEBUG
)
1797 sdbout_end_function (high_function_linenum
);
1800 #ifdef DWARF_DEBUGGING_INFO
1801 if (write_symbols
== DWARF_DEBUG
)
1802 dwarfout_end_function ();
1805 #ifdef XCOFF_DEBUGGING_INFO
1806 if (write_symbols
== XCOFF_DEBUG
)
1807 xcoffout_end_function (file
, high_function_linenum
);
1810 #ifdef FUNCTION_EPILOGUE
1811 /* Finally, output the function epilogue:
1812 code to restore the stack frame and return to the caller. */
1813 FUNCTION_EPILOGUE (file
, get_frame_size ());
1816 #ifdef SDB_DEBUGGING_INFO
1817 if (write_symbols
== SDB_DEBUG
)
1818 sdbout_end_epilogue ();
1821 #ifdef DWARF_DEBUGGING_INFO
1822 if (write_symbols
== DWARF_DEBUG
)
1823 dwarfout_end_epilogue ();
1826 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
1827 if (dwarf2out_do_frame ())
1828 dwarf2out_end_epilogue ();
1831 #ifdef XCOFF_DEBUGGING_INFO
1832 if (write_symbols
== XCOFF_DEBUG
)
1833 xcoffout_end_epilogue (file
);
1836 bb_func_label_num
= -1; /* not in function, nuke label # */
1838 #ifdef IA64_UNWIND_INFO
1839 output_function_exception_table ();
1842 /* If FUNCTION_EPILOGUE is not defined, then the function body
1843 itself contains return instructions wherever needed. */
1846 /* Add a block to the linked list that remembers the current line/file/function
1847 for basic block profiling. Emit the label in front of the basic block and
1848 the instructions that increment the count field. */
1854 struct bb_list
*ptr
=
1855 (struct bb_list
*) permalloc (sizeof (struct bb_list
));
1857 /* Add basic block to linked list. */
1859 ptr
->line_num
= last_linenum
;
1860 ptr
->file_label_num
= bb_file_label_num
;
1861 ptr
->func_label_num
= bb_func_label_num
;
1863 bb_tail
= &ptr
->next
;
1865 /* Enable the table of basic-block use counts
1866 to point at the code it applies to. */
1867 ASM_OUTPUT_INTERNAL_LABEL (file
, "LPB", count_basic_blocks
);
1869 /* Before first insn of this basic block, increment the
1870 count of times it was entered. */
1871 #ifdef BLOCK_PROFILER
1872 BLOCK_PROFILER (file
, count_basic_blocks
);
1879 count_basic_blocks
++;
1882 /* Add a string to be used for basic block profiling. */
1885 add_bb_string (string
, perm_p
)
1890 struct bb_str
*ptr
= 0;
1894 string
= "<unknown>";
1898 /* Allocate a new string if the current string isn't permanent. If
1899 the string is permanent search for the same string in other
1902 len
= strlen (string
) + 1;
1905 char *p
= (char *) permalloc (len
);
1906 memcpy (p
, string
, len
);
1910 for (ptr
= sbb_head
; ptr
!= (struct bb_str
*) 0; ptr
= ptr
->next
)
1911 if (ptr
->string
== string
)
1914 /* Allocate a new string block if we need to. */
1917 ptr
= (struct bb_str
*) permalloc (sizeof (*ptr
));
1920 ptr
->label_num
= sbb_label_num
++;
1921 ptr
->string
= string
;
1923 sbb_tail
= &ptr
->next
;
1926 return ptr
->label_num
;
1929 /* Output assembler code for some insns: all or part of a function.
1930 For description of args, see `final_start_function', above.
1932 PRESCAN is 1 if we are not really outputting,
1933 just scanning as if we were outputting.
1934 Prescanning deletes and rearranges insns just like ordinary output.
1935 PRESCAN is -2 if we are outputting after having prescanned.
1936 In this case, don't try to delete or rearrange insns
1937 because that has already been done.
1938 Prescanning is done only on certain machines. */
1941 final (first
, file
, optimize
, prescan
)
1951 last_ignored_compare
= 0;
1954 check_exception_handler_labels ();
1956 /* Make a map indicating which line numbers appear in this function.
1957 When producing SDB debugging info, delete troublesome line number
1958 notes from inlined functions in other files as well as duplicate
1959 line number notes. */
1960 #ifdef SDB_DEBUGGING_INFO
1961 if (write_symbols
== SDB_DEBUG
)
1964 for (insn
= first
; insn
; insn
= NEXT_INSN (insn
))
1965 if (GET_CODE (insn
) == NOTE
&& NOTE_LINE_NUMBER (insn
) > 0)
1967 if ((RTX_INTEGRATED_P (insn
)
1968 && strcmp (NOTE_SOURCE_FILE (insn
), main_input_filename
) != 0)
1970 && NOTE_LINE_NUMBER (insn
) == NOTE_LINE_NUMBER (last
)
1971 && NOTE_SOURCE_FILE (insn
) == NOTE_SOURCE_FILE (last
)))
1973 NOTE_LINE_NUMBER (insn
) = NOTE_INSN_DELETED
;
1974 NOTE_SOURCE_FILE (insn
) = 0;
1978 if (NOTE_LINE_NUMBER (insn
) > max_line
)
1979 max_line
= NOTE_LINE_NUMBER (insn
);
1985 for (insn
= first
; insn
; insn
= NEXT_INSN (insn
))
1986 if (GET_CODE (insn
) == NOTE
&& NOTE_LINE_NUMBER (insn
) > max_line
)
1987 max_line
= NOTE_LINE_NUMBER (insn
);
1990 line_note_exists
= (char *) xcalloc (max_line
+ 1, sizeof (char));
1992 for (insn
= first
; insn
; insn
= NEXT_INSN (insn
))
1994 if (INSN_UID (insn
) > max_uid
) /* find largest UID */
1995 max_uid
= INSN_UID (insn
);
1996 if (GET_CODE (insn
) == NOTE
&& NOTE_LINE_NUMBER (insn
) > 0)
1997 line_note_exists
[NOTE_LINE_NUMBER (insn
)] = 1;
1999 /* If CC tracking across branches is enabled, record the insn which
2000 jumps to each branch only reached from one place. */
2001 if (optimize
&& GET_CODE (insn
) == JUMP_INSN
)
2003 rtx lab
= JUMP_LABEL (insn
);
2004 if (lab
&& LABEL_NUSES (lab
) == 1)
2006 LABEL_REFS (lab
) = insn
;
2012 /* Initialize insn_eh_region table if eh is being used. */
2014 init_insn_eh_region (first
, max_uid
);
2020 /* Output the insns. */
2021 for (insn
= NEXT_INSN (first
); insn
;)
2023 #ifdef HAVE_ATTR_length
2024 if (INSN_UID (insn
) >= INSN_ADDRESSES_SIZE ())
2027 /* Irritatingly, the reg-stack pass is creating new instructions
2028 and because of REG_DEAD note abuse it has to run after
2029 shorten_branches. Fake address of -1 then. */
2030 insn_current_address
= -1;
2032 /* This can be triggered by bugs elsewhere in the compiler if
2033 new insns are created after init_insn_lengths is called. */
2038 insn_current_address
= INSN_ADDRESSES (INSN_UID (insn
));
2039 #endif /* HAVE_ATTR_length */
2041 insn
= final_scan_insn (insn
, file
, optimize
, prescan
, 0);
2044 /* Do basic-block profiling here
2045 if the last insn was a conditional branch. */
2046 if (profile_block_flag
&& new_block
)
2049 free_insn_eh_region ();
2050 free (line_note_exists
);
2051 line_note_exists
= NULL
;
2055 get_insn_template (code
, insn
)
2059 const void *output
= insn_data
[code
].output
;
2060 switch (insn_data
[code
].output_format
)
2062 case INSN_OUTPUT_FORMAT_SINGLE
:
2063 return (const char *) output
;
2064 case INSN_OUTPUT_FORMAT_MULTI
:
2065 return ((const char *const *) output
)[which_alternative
];
2066 case INSN_OUTPUT_FORMAT_FUNCTION
:
2069 return (*(insn_output_fn
) output
) (recog_data
.operand
, insn
);
2076 /* The final scan for one insn, INSN.
2077 Args are same as in `final', except that INSN
2078 is the insn being scanned.
2079 Value returned is the next insn to be scanned.
2081 NOPEEPHOLES is the flag to disallow peephole processing (currently
2082 used for within delayed branch sequence output). */
2085 final_scan_insn (insn
, file
, optimize
, prescan
, nopeepholes
)
2088 int optimize ATTRIBUTE_UNUSED
;
2090 int nopeepholes ATTRIBUTE_UNUSED
;
2098 /* Ignore deleted insns. These can occur when we split insns (due to a
2099 template of "#") while not optimizing. */
2100 if (INSN_DELETED_P (insn
))
2101 return NEXT_INSN (insn
);
2103 switch (GET_CODE (insn
))
2109 switch (NOTE_LINE_NUMBER (insn
))
2111 case NOTE_INSN_DELETED
:
2112 case NOTE_INSN_LOOP_BEG
:
2113 case NOTE_INSN_LOOP_END
:
2114 case NOTE_INSN_LOOP_CONT
:
2115 case NOTE_INSN_LOOP_VTOP
:
2116 case NOTE_INSN_FUNCTION_END
:
2117 case NOTE_INSN_SETJMP
:
2118 case NOTE_INSN_REPEATED_LINE_NUMBER
:
2119 case NOTE_INSN_RANGE_BEG
:
2120 case NOTE_INSN_RANGE_END
:
2121 case NOTE_INSN_LIVE
:
2122 case NOTE_INSN_EXPECTED_VALUE
:
2125 case NOTE_INSN_BASIC_BLOCK
:
2126 #ifdef IA64_UNWIND_INFO
2127 IA64_UNWIND_EMIT (asm_out_file
, insn
);
2130 fprintf (asm_out_file
, "\t%s basic block %d\n",
2131 ASM_COMMENT_START
, NOTE_BASIC_BLOCK (insn
)->index
);
2134 case NOTE_INSN_EH_REGION_BEG
:
2135 if (! exceptions_via_longjmp
)
2137 ASM_OUTPUT_INTERNAL_LABEL (file
, "LEHB", NOTE_EH_HANDLER (insn
));
2138 if (! flag_new_exceptions
)
2139 add_eh_table_entry (NOTE_EH_HANDLER (insn
));
2140 #ifdef ASM_OUTPUT_EH_REGION_BEG
2141 ASM_OUTPUT_EH_REGION_BEG (file
, NOTE_EH_HANDLER (insn
));
2146 case NOTE_INSN_EH_REGION_END
:
2147 if (! exceptions_via_longjmp
)
2149 ASM_OUTPUT_INTERNAL_LABEL (file
, "LEHE", NOTE_EH_HANDLER (insn
));
2150 if (flag_new_exceptions
)
2151 add_eh_table_entry (NOTE_EH_HANDLER (insn
));
2152 #ifdef ASM_OUTPUT_EH_REGION_END
2153 ASM_OUTPUT_EH_REGION_END (file
, NOTE_EH_HANDLER (insn
));
2158 case NOTE_INSN_PROLOGUE_END
:
2159 #ifdef FUNCTION_END_PROLOGUE
2160 FUNCTION_END_PROLOGUE (file
);
2162 profile_after_prologue (file
);
2165 case NOTE_INSN_EPILOGUE_BEG
:
2166 #ifdef FUNCTION_BEGIN_EPILOGUE
2167 FUNCTION_BEGIN_EPILOGUE (file
);
2171 case NOTE_INSN_FUNCTION_BEG
:
2172 #if defined(SDB_DEBUGGING_INFO) && defined(MIPS_DEBUGGING_INFO)
2173 /* MIPS stabs require the parameter descriptions to be after the
2174 function entry point rather than before. */
2175 if (write_symbols
== SDB_DEBUG
)
2178 sdbout_begin_function (last_linenum
);
2181 #ifdef DWARF_DEBUGGING_INFO
2182 /* This outputs a marker where the function body starts, so it
2183 must be after the prologue. */
2184 if (write_symbols
== DWARF_DEBUG
)
2187 dwarfout_begin_function ();
2192 case NOTE_INSN_BLOCK_BEG
:
2193 if (debug_info_level
== DINFO_LEVEL_NORMAL
2194 || debug_info_level
== DINFO_LEVEL_VERBOSE
2195 || write_symbols
== DWARF_DEBUG
2196 || write_symbols
== DWARF2_DEBUG
)
2198 int n
= BLOCK_NUMBER (NOTE_BLOCK (insn
));
2202 high_block_linenum
= last_linenum
;
2204 /* Output debugging info about the symbol-block beginning. */
2205 #ifdef SDB_DEBUGGING_INFO
2206 if (write_symbols
== SDB_DEBUG
)
2207 sdbout_begin_block (file
, last_linenum
, n
);
2209 #ifdef XCOFF_DEBUGGING_INFO
2210 if (write_symbols
== XCOFF_DEBUG
)
2211 xcoffout_begin_block (file
, last_linenum
, n
);
2213 #ifdef DBX_DEBUGGING_INFO
2214 if (write_symbols
== DBX_DEBUG
)
2215 ASM_OUTPUT_INTERNAL_LABEL (file
, "LBB", n
);
2217 #ifdef DWARF_DEBUGGING_INFO
2218 if (write_symbols
== DWARF_DEBUG
)
2219 dwarfout_begin_block (n
);
2221 #ifdef DWARF2_DEBUGGING_INFO
2222 if (write_symbols
== DWARF2_DEBUG
)
2223 dwarf2out_begin_block (n
);
2226 /* Mark this block as output. */
2227 TREE_ASM_WRITTEN (NOTE_BLOCK (insn
)) = 1;
2231 case NOTE_INSN_BLOCK_END
:
2232 if (debug_info_level
== DINFO_LEVEL_NORMAL
2233 || debug_info_level
== DINFO_LEVEL_VERBOSE
2234 || write_symbols
== DWARF_DEBUG
2235 || write_symbols
== DWARF2_DEBUG
)
2237 int n
= BLOCK_NUMBER (NOTE_BLOCK (insn
));
2241 /* End of a symbol-block. */
2243 if (block_depth
< 0)
2246 #ifdef XCOFF_DEBUGGING_INFO
2247 if (write_symbols
== XCOFF_DEBUG
)
2248 xcoffout_end_block (file
, high_block_linenum
, n
);
2250 #ifdef DBX_DEBUGGING_INFO
2251 if (write_symbols
== DBX_DEBUG
)
2252 ASM_OUTPUT_INTERNAL_LABEL (file
, "LBE", n
);
2254 #ifdef SDB_DEBUGGING_INFO
2255 if (write_symbols
== SDB_DEBUG
)
2256 sdbout_end_block (file
, high_block_linenum
, n
);
2258 #ifdef DWARF_DEBUGGING_INFO
2259 if (write_symbols
== DWARF_DEBUG
)
2260 dwarfout_end_block (n
);
2262 #ifdef DWARF2_DEBUGGING_INFO
2263 if (write_symbols
== DWARF2_DEBUG
)
2264 dwarf2out_end_block (n
);
2269 case NOTE_INSN_DELETED_LABEL
:
2270 /* Emit the label. We may have deleted the CODE_LABEL because
2271 the label could be proved to be unreachable, though still
2272 referenced (in the form of having its address taken. */
2273 ASM_OUTPUT_DEBUG_LABEL (file
, "L", CODE_LABEL_NUMBER (insn
));
2280 if (NOTE_LINE_NUMBER (insn
) <= 0)
2283 /* This note is a line-number. */
2288 /* If there is anything real after this note, output it.
2289 If another line note follows, omit this one. */
2290 for (note
= NEXT_INSN (insn
); note
; note
= NEXT_INSN (note
))
2292 if (GET_CODE (note
) != NOTE
&& GET_CODE (note
) != CODE_LABEL
)
2295 /* These types of notes can be significant
2296 so make sure the preceding line number stays. */
2297 else if (GET_CODE (note
) == NOTE
2298 && (NOTE_LINE_NUMBER (note
) == NOTE_INSN_BLOCK_BEG
2299 || NOTE_LINE_NUMBER (note
) == NOTE_INSN_BLOCK_END
2300 || NOTE_LINE_NUMBER (note
) == NOTE_INSN_FUNCTION_BEG
))
2302 else if (GET_CODE (note
) == NOTE
&& NOTE_LINE_NUMBER (note
) > 0)
2304 /* Another line note follows; we can delete this note
2305 if no intervening line numbers have notes elsewhere. */
2307 for (num
= NOTE_LINE_NUMBER (insn
) + 1;
2308 num
< NOTE_LINE_NUMBER (note
);
2310 if (line_note_exists
[num
])
2313 if (num
>= NOTE_LINE_NUMBER (note
))
2319 /* Output this line note if it is the first or the last line
2322 output_source_line (file
, insn
);
2329 #if defined (DWARF2_UNWIND_INFO)
2330 /* If we push arguments, we need to check all insns for stack
2332 if (!ACCUMULATE_OUTGOING_ARGS
&& dwarf2out_do_frame ())
2333 dwarf2out_frame_debug (insn
);
2338 /* The target port might emit labels in the output function for
2339 some insn, e.g. sh.c output_branchy_insn. */
2340 if (CODE_LABEL_NUMBER (insn
) <= max_labelno
)
2342 int align
= LABEL_TO_ALIGNMENT (insn
);
2343 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
2344 int max_skip
= LABEL_TO_MAX_SKIP (insn
);
2347 if (align
&& NEXT_INSN (insn
))
2348 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
2349 ASM_OUTPUT_MAX_SKIP_ALIGN (file
, align
, max_skip
);
2351 ASM_OUTPUT_ALIGN (file
, align
);
2356 /* If this label is reached from only one place, set the condition
2357 codes from the instruction just before the branch. */
2359 /* Disabled because some insns set cc_status in the C output code
2360 and NOTICE_UPDATE_CC alone can set incorrect status. */
2361 if (0 /* optimize && LABEL_NUSES (insn) == 1*/)
2363 rtx jump
= LABEL_REFS (insn
);
2364 rtx barrier
= prev_nonnote_insn (insn
);
2366 /* If the LABEL_REFS field of this label has been set to point
2367 at a branch, the predecessor of the branch is a regular
2368 insn, and that branch is the only way to reach this label,
2369 set the condition codes based on the branch and its
2371 if (barrier
&& GET_CODE (barrier
) == BARRIER
2372 && jump
&& GET_CODE (jump
) == JUMP_INSN
2373 && (prev
= prev_nonnote_insn (jump
))
2374 && GET_CODE (prev
) == INSN
)
2376 NOTICE_UPDATE_CC (PATTERN (prev
), prev
);
2377 NOTICE_UPDATE_CC (PATTERN (jump
), jump
);
2385 #ifdef FINAL_PRESCAN_LABEL
2386 FINAL_PRESCAN_INSN (insn
, NULL_PTR
, 0);
2389 #ifdef SDB_DEBUGGING_INFO
2390 if (write_symbols
== SDB_DEBUG
&& LABEL_NAME (insn
))
2391 sdbout_label (insn
);
2395 fputs (ASM_APP_OFF
, file
);
2398 if (NEXT_INSN (insn
) != 0
2399 && GET_CODE (NEXT_INSN (insn
)) == JUMP_INSN
)
2401 rtx nextbody
= PATTERN (NEXT_INSN (insn
));
2403 /* If this label is followed by a jump-table,
2404 make sure we put the label in the read-only section. Also
2405 possibly write the label and jump table together. */
2407 if (GET_CODE (nextbody
) == ADDR_VEC
2408 || GET_CODE (nextbody
) == ADDR_DIFF_VEC
)
2410 #if defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC)
2411 /* In this case, the case vector is being moved by the
2412 target, so don't output the label at all. Leave that
2413 to the back end macros. */
2415 if (! JUMP_TABLES_IN_TEXT_SECTION
)
2417 readonly_data_section ();
2418 #ifdef READONLY_DATA_SECTION
2419 ASM_OUTPUT_ALIGN (file
,
2420 exact_log2 (BIGGEST_ALIGNMENT
2422 #endif /* READONLY_DATA_SECTION */
2425 function_section (current_function_decl
);
2427 #ifdef ASM_OUTPUT_CASE_LABEL
2428 ASM_OUTPUT_CASE_LABEL (file
, "L", CODE_LABEL_NUMBER (insn
),
2431 if (LABEL_ALTERNATE_NAME (insn
))
2432 ASM_OUTPUT_ALTERNATE_LABEL_NAME (file
, insn
);
2434 ASM_OUTPUT_INTERNAL_LABEL (file
, "L", CODE_LABEL_NUMBER (insn
));
2440 if (LABEL_ALTERNATE_NAME (insn
))
2441 ASM_OUTPUT_ALTERNATE_LABEL_NAME (file
, insn
);
2443 ASM_OUTPUT_INTERNAL_LABEL (file
, "L", CODE_LABEL_NUMBER (insn
));
2448 register rtx body
= PATTERN (insn
);
2449 int insn_code_number
;
2450 const char *template;
2455 /* An INSN, JUMP_INSN or CALL_INSN.
2456 First check for special kinds that recog doesn't recognize. */
2458 if (GET_CODE (body
) == USE
/* These are just declarations */
2459 || GET_CODE (body
) == CLOBBER
)
2463 /* If there is a REG_CC_SETTER note on this insn, it means that
2464 the setting of the condition code was done in the delay slot
2465 of the insn that branched here. So recover the cc status
2466 from the insn that set it. */
2468 note
= find_reg_note (insn
, REG_CC_SETTER
, NULL_RTX
);
2471 NOTICE_UPDATE_CC (PATTERN (XEXP (note
, 0)), XEXP (note
, 0));
2472 cc_prev_status
= cc_status
;
2476 /* Detect insns that are really jump-tables
2477 and output them as such. */
2479 if (GET_CODE (body
) == ADDR_VEC
|| GET_CODE (body
) == ADDR_DIFF_VEC
)
2481 #if !(defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC))
2482 register int vlen
, idx
;
2490 fputs (ASM_APP_OFF
, file
);
2494 #if defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC)
2495 if (GET_CODE (body
) == ADDR_VEC
)
2497 #ifdef ASM_OUTPUT_ADDR_VEC
2498 ASM_OUTPUT_ADDR_VEC (PREV_INSN (insn
), body
);
2505 #ifdef ASM_OUTPUT_ADDR_DIFF_VEC
2506 ASM_OUTPUT_ADDR_DIFF_VEC (PREV_INSN (insn
), body
);
2512 vlen
= XVECLEN (body
, GET_CODE (body
) == ADDR_DIFF_VEC
);
2513 for (idx
= 0; idx
< vlen
; idx
++)
2515 if (GET_CODE (body
) == ADDR_VEC
)
2517 #ifdef ASM_OUTPUT_ADDR_VEC_ELT
2518 ASM_OUTPUT_ADDR_VEC_ELT
2519 (file
, CODE_LABEL_NUMBER (XEXP (XVECEXP (body
, 0, idx
), 0)));
2526 #ifdef ASM_OUTPUT_ADDR_DIFF_ELT
2527 ASM_OUTPUT_ADDR_DIFF_ELT
2530 CODE_LABEL_NUMBER (XEXP (XVECEXP (body
, 1, idx
), 0)),
2531 CODE_LABEL_NUMBER (XEXP (XEXP (body
, 0), 0)));
2537 #ifdef ASM_OUTPUT_CASE_END
2538 ASM_OUTPUT_CASE_END (file
,
2539 CODE_LABEL_NUMBER (PREV_INSN (insn
)),
2544 function_section (current_function_decl
);
2549 /* Do basic-block profiling when we reach a new block.
2550 Done here to avoid jump tables. */
2551 if (profile_block_flag
&& new_block
)
2554 if (GET_CODE (body
) == ASM_INPUT
)
2556 /* There's no telling what that did to the condition codes. */
2562 fputs (ASM_APP_ON
, file
);
2565 fprintf (asm_out_file
, "\t%s\n", XSTR (body
, 0));
2569 /* Detect `asm' construct with operands. */
2570 if (asm_noperands (body
) >= 0)
2572 unsigned int noperands
= asm_noperands (body
);
2573 rtx
*ops
= (rtx
*) alloca (noperands
* sizeof (rtx
));
2576 /* There's no telling what that did to the condition codes. */
2583 fputs (ASM_APP_ON
, file
);
2587 /* Get out the operand values. */
2588 string
= decode_asm_operands (body
, ops
, NULL_PTR
,
2589 NULL_PTR
, NULL_PTR
);
2590 /* Inhibit aborts on what would otherwise be compiler bugs. */
2591 insn_noperands
= noperands
;
2592 this_is_asm_operands
= insn
;
2594 /* Output the insn using them. */
2595 output_asm_insn (string
, ops
);
2596 this_is_asm_operands
= 0;
2600 if (prescan
<= 0 && app_on
)
2602 fputs (ASM_APP_OFF
, file
);
2606 if (GET_CODE (body
) == SEQUENCE
)
2608 /* A delayed-branch sequence */
2614 final_sequence
= body
;
2616 /* The first insn in this SEQUENCE might be a JUMP_INSN that will
2617 force the restoration of a comparison that was previously
2618 thought unnecessary. If that happens, cancel this sequence
2619 and cause that insn to be restored. */
2621 next
= final_scan_insn (XVECEXP (body
, 0, 0), file
, 0, prescan
, 1);
2622 if (next
!= XVECEXP (body
, 0, 1))
2628 for (i
= 1; i
< XVECLEN (body
, 0); i
++)
2630 rtx insn
= XVECEXP (body
, 0, i
);
2631 rtx next
= NEXT_INSN (insn
);
2632 /* We loop in case any instruction in a delay slot gets
2635 insn
= final_scan_insn (insn
, file
, 0, prescan
, 1);
2636 while (insn
!= next
);
2638 #ifdef DBR_OUTPUT_SEQEND
2639 DBR_OUTPUT_SEQEND (file
);
2643 /* If the insn requiring the delay slot was a CALL_INSN, the
2644 insns in the delay slot are actually executed before the
2645 called function. Hence we don't preserve any CC-setting
2646 actions in these insns and the CC must be marked as being
2647 clobbered by the function. */
2648 if (GET_CODE (XVECEXP (body
, 0, 0)) == CALL_INSN
)
2653 /* Following a conditional branch sequence, we have a new basic
2655 if (profile_block_flag
)
2657 rtx insn
= XVECEXP (body
, 0, 0);
2658 rtx body
= PATTERN (insn
);
2660 if ((GET_CODE (insn
) == JUMP_INSN
&& GET_CODE (body
) == SET
2661 && GET_CODE (SET_SRC (body
)) != LABEL_REF
)
2662 || (GET_CODE (insn
) == JUMP_INSN
2663 && GET_CODE (body
) == PARALLEL
2664 && GET_CODE (XVECEXP (body
, 0, 0)) == SET
2665 && GET_CODE (SET_SRC (XVECEXP (body
, 0, 0))) != LABEL_REF
))
2671 /* We have a real machine instruction as rtl. */
2673 body
= PATTERN (insn
);
2676 set
= single_set (insn
);
2678 /* Check for redundant test and compare instructions
2679 (when the condition codes are already set up as desired).
2680 This is done only when optimizing; if not optimizing,
2681 it should be possible for the user to alter a variable
2682 with the debugger in between statements
2683 and the next statement should reexamine the variable
2684 to compute the condition codes. */
2689 rtx set
= single_set (insn
);
2693 && GET_CODE (SET_DEST (set
)) == CC0
2694 && insn
!= last_ignored_compare
)
2696 if (GET_CODE (SET_SRC (set
)) == SUBREG
)
2697 SET_SRC (set
) = alter_subreg (SET_SRC (set
));
2698 else if (GET_CODE (SET_SRC (set
)) == COMPARE
)
2700 if (GET_CODE (XEXP (SET_SRC (set
), 0)) == SUBREG
)
2701 XEXP (SET_SRC (set
), 0)
2702 = alter_subreg (XEXP (SET_SRC (set
), 0));
2703 if (GET_CODE (XEXP (SET_SRC (set
), 1)) == SUBREG
)
2704 XEXP (SET_SRC (set
), 1)
2705 = alter_subreg (XEXP (SET_SRC (set
), 1));
2707 if ((cc_status
.value1
!= 0
2708 && rtx_equal_p (SET_SRC (set
), cc_status
.value1
))
2709 || (cc_status
.value2
!= 0
2710 && rtx_equal_p (SET_SRC (set
), cc_status
.value2
)))
2712 /* Don't delete insn if it has an addressing side-effect. */
2713 if (! FIND_REG_INC_NOTE (insn
, 0)
2714 /* or if anything in it is volatile. */
2715 && ! volatile_refs_p (PATTERN (insn
)))
2717 /* We don't really delete the insn; just ignore it. */
2718 last_ignored_compare
= insn
;
2726 /* Following a conditional branch, we have a new basic block.
2727 But if we are inside a sequence, the new block starts after the
2728 last insn of the sequence. */
2729 if (profile_block_flag
&& final_sequence
== 0
2730 && ((GET_CODE (insn
) == JUMP_INSN
&& GET_CODE (body
) == SET
2731 && GET_CODE (SET_SRC (body
)) != LABEL_REF
)
2732 || (GET_CODE (insn
) == JUMP_INSN
&& GET_CODE (body
) == PARALLEL
2733 && GET_CODE (XVECEXP (body
, 0, 0)) == SET
2734 && GET_CODE (SET_SRC (XVECEXP (body
, 0, 0))) != LABEL_REF
)))
2738 /* Don't bother outputting obvious no-ops, even without -O.
2739 This optimization is fast and doesn't interfere with debugging.
2740 Don't do this if the insn is in a delay slot, since this
2741 will cause an improper number of delay insns to be written. */
2742 if (final_sequence
== 0
2744 && GET_CODE (insn
) == INSN
&& GET_CODE (body
) == SET
2745 && GET_CODE (SET_SRC (body
)) == REG
2746 && GET_CODE (SET_DEST (body
)) == REG
2747 && REGNO (SET_SRC (body
)) == REGNO (SET_DEST (body
)))
2752 /* If this is a conditional branch, maybe modify it
2753 if the cc's are in a nonstandard state
2754 so that it accomplishes the same thing that it would
2755 do straightforwardly if the cc's were set up normally. */
2757 if (cc_status
.flags
!= 0
2758 && GET_CODE (insn
) == JUMP_INSN
2759 && GET_CODE (body
) == SET
2760 && SET_DEST (body
) == pc_rtx
2761 && GET_CODE (SET_SRC (body
)) == IF_THEN_ELSE
2762 && GET_RTX_CLASS (GET_CODE (XEXP (SET_SRC (body
), 0))) == '<'
2763 && XEXP (XEXP (SET_SRC (body
), 0), 0) == cc0_rtx
2764 /* This is done during prescan; it is not done again
2765 in final scan when prescan has been done. */
2768 /* This function may alter the contents of its argument
2769 and clear some of the cc_status.flags bits.
2770 It may also return 1 meaning condition now always true
2771 or -1 meaning condition now always false
2772 or 2 meaning condition nontrivial but altered. */
2773 register int result
= alter_cond (XEXP (SET_SRC (body
), 0));
2774 /* If condition now has fixed value, replace the IF_THEN_ELSE
2775 with its then-operand or its else-operand. */
2777 SET_SRC (body
) = XEXP (SET_SRC (body
), 1);
2779 SET_SRC (body
) = XEXP (SET_SRC (body
), 2);
2781 /* The jump is now either unconditional or a no-op.
2782 If it has become a no-op, don't try to output it.
2783 (It would not be recognized.) */
2784 if (SET_SRC (body
) == pc_rtx
)
2786 PUT_CODE (insn
, NOTE
);
2787 NOTE_LINE_NUMBER (insn
) = NOTE_INSN_DELETED
;
2788 NOTE_SOURCE_FILE (insn
) = 0;
2791 else if (GET_CODE (SET_SRC (body
)) == RETURN
)
2792 /* Replace (set (pc) (return)) with (return). */
2793 PATTERN (insn
) = body
= SET_SRC (body
);
2795 /* Rerecognize the instruction if it has changed. */
2797 INSN_CODE (insn
) = -1;
2800 /* Make same adjustments to instructions that examine the
2801 condition codes without jumping and instructions that
2802 handle conditional moves (if this machine has either one). */
2804 if (cc_status
.flags
!= 0
2807 rtx cond_rtx
, then_rtx
, else_rtx
;
2809 if (GET_CODE (insn
) != JUMP_INSN
2810 && GET_CODE (SET_SRC (set
)) == IF_THEN_ELSE
)
2812 cond_rtx
= XEXP (SET_SRC (set
), 0);
2813 then_rtx
= XEXP (SET_SRC (set
), 1);
2814 else_rtx
= XEXP (SET_SRC (set
), 2);
2818 cond_rtx
= SET_SRC (set
);
2819 then_rtx
= const_true_rtx
;
2820 else_rtx
= const0_rtx
;
2823 switch (GET_CODE (cond_rtx
))
2836 register int result
;
2837 if (XEXP (cond_rtx
, 0) != cc0_rtx
)
2839 result
= alter_cond (cond_rtx
);
2841 validate_change (insn
, &SET_SRC (set
), then_rtx
, 0);
2842 else if (result
== -1)
2843 validate_change (insn
, &SET_SRC (set
), else_rtx
, 0);
2844 else if (result
== 2)
2845 INSN_CODE (insn
) = -1;
2846 if (SET_DEST (set
) == SET_SRC (set
))
2848 PUT_CODE (insn
, NOTE
);
2849 NOTE_LINE_NUMBER (insn
) = NOTE_INSN_DELETED
;
2850 NOTE_SOURCE_FILE (insn
) = 0;
2862 #ifdef HAVE_peephole
2863 /* Do machine-specific peephole optimizations if desired. */
2865 if (optimize
&& !flag_no_peephole
&& !nopeepholes
)
2867 rtx next
= peephole (insn
);
2868 /* When peepholing, if there were notes within the peephole,
2869 emit them before the peephole. */
2870 if (next
!= 0 && next
!= NEXT_INSN (insn
))
2872 rtx prev
= PREV_INSN (insn
);
2875 for (note
= NEXT_INSN (insn
); note
!= next
;
2876 note
= NEXT_INSN (note
))
2877 final_scan_insn (note
, file
, optimize
, prescan
, nopeepholes
);
2879 /* In case this is prescan, put the notes
2880 in proper position for later rescan. */
2881 note
= NEXT_INSN (insn
);
2882 PREV_INSN (note
) = prev
;
2883 NEXT_INSN (prev
) = note
;
2884 NEXT_INSN (PREV_INSN (next
)) = insn
;
2885 PREV_INSN (insn
) = PREV_INSN (next
);
2886 NEXT_INSN (insn
) = next
;
2887 PREV_INSN (next
) = insn
;
2890 /* PEEPHOLE might have changed this. */
2891 body
= PATTERN (insn
);
2895 /* Try to recognize the instruction.
2896 If successful, verify that the operands satisfy the
2897 constraints for the instruction. Crash if they don't,
2898 since `reload' should have changed them so that they do. */
2900 insn_code_number
= recog_memoized (insn
);
2901 cleanup_subreg_operands (insn
);
2903 /* Dump the insn in the assembly for debugging. */
2904 if (flag_dump_rtl_in_asm
)
2906 print_rtx_head
= ASM_COMMENT_START
;
2907 print_rtl_single (asm_out_file
, insn
);
2908 print_rtx_head
= "";
2911 if (! constrain_operands_cached (1))
2912 fatal_insn_not_found (insn
);
2914 /* Some target machines need to prescan each insn before
2917 #ifdef FINAL_PRESCAN_INSN
2918 FINAL_PRESCAN_INSN (insn
, recog_data
.operand
, recog_data
.n_operands
);
2921 #ifdef HAVE_conditional_execution
2922 if (GET_CODE (PATTERN (insn
)) == COND_EXEC
)
2923 current_insn_predicate
= COND_EXEC_TEST (PATTERN (insn
));
2925 current_insn_predicate
= NULL_RTX
;
2929 cc_prev_status
= cc_status
;
2931 /* Update `cc_status' for this instruction.
2932 The instruction's output routine may change it further.
2933 If the output routine for a jump insn needs to depend
2934 on the cc status, it should look at cc_prev_status. */
2936 NOTICE_UPDATE_CC (body
, insn
);
2939 current_output_insn
= debug_insn
= insn
;
2941 #if defined (DWARF2_UNWIND_INFO)
2942 /* If we push arguments, we want to know where the calls are. */
2943 if (!ACCUMULATE_OUTGOING_ARGS
&& GET_CODE (insn
) == CALL_INSN
2944 && dwarf2out_do_frame ())
2945 dwarf2out_frame_debug (insn
);
2948 /* Find the proper template for this insn. */
2949 template = get_insn_template (insn_code_number
, insn
);
2951 /* If the C code returns 0, it means that it is a jump insn
2952 which follows a deleted test insn, and that test insn
2953 needs to be reinserted. */
2958 if (prev_nonnote_insn (insn
) != last_ignored_compare
)
2962 /* We have already processed the notes between the setter and
2963 the user. Make sure we don't process them again, this is
2964 particularly important if one of the notes is a block
2965 scope note or an EH note. */
2967 prev
!= last_ignored_compare
;
2968 prev
= PREV_INSN (prev
))
2970 if (GET_CODE (prev
) == NOTE
)
2972 NOTE_LINE_NUMBER (prev
) = NOTE_INSN_DELETED
;
2973 NOTE_SOURCE_FILE (prev
) = 0;
2980 /* If the template is the string "#", it means that this insn must
2982 if (template[0] == '#' && template[1] == '\0')
2984 rtx
new = try_split (body
, insn
, 0);
2986 /* If we didn't split the insn, go away. */
2987 if (new == insn
&& PATTERN (new) == body
)
2988 fatal_insn ("Could not split insn", insn
);
2990 #ifdef HAVE_ATTR_length
2991 /* This instruction should have been split in shorten_branches,
2992 to ensure that we would have valid length info for the
3004 #ifdef IA64_UNWIND_INFO
3005 IA64_UNWIND_EMIT (asm_out_file
, insn
);
3007 /* Output assembler code from the template. */
3009 output_asm_insn (template, recog_data
.operand
);
3011 #if defined (DWARF2_UNWIND_INFO)
3012 /* If we push arguments, we need to check all insns for stack
3014 if (!ACCUMULATE_OUTGOING_ARGS
)
3016 if (GET_CODE (insn
) == INSN
&& dwarf2out_do_frame ())
3017 dwarf2out_frame_debug (insn
);
3021 #if defined (HAVE_prologue)
3022 /* If this insn is part of the prologue, emit DWARF v2
3024 if (RTX_FRAME_RELATED_P (insn
) && dwarf2out_do_frame ())
3025 dwarf2out_frame_debug (insn
);
3031 /* It's not at all clear why we did this and doing so interferes
3032 with tests we'd like to do to use REG_WAS_0 notes, so let's try
3035 /* Mark this insn as having been output. */
3036 INSN_DELETED_P (insn
) = 1;
3039 current_output_insn
= debug_insn
= 0;
3042 return NEXT_INSN (insn
);
3045 /* Output debugging info to the assembler file FILE
3046 based on the NOTE-insn INSN, assumed to be a line number. */
3049 output_source_line (file
, insn
)
3050 FILE *file ATTRIBUTE_UNUSED
;
3053 register const char *filename
= NOTE_SOURCE_FILE (insn
);
3055 /* Remember filename for basic block profiling.
3056 Filenames are allocated on the permanent obstack
3057 or are passed in ARGV, so we don't have to save
3060 if (profile_block_flag
&& last_filename
!= filename
)
3061 bb_file_label_num
= add_bb_string (filename
, TRUE
);
3063 last_filename
= filename
;
3064 last_linenum
= NOTE_LINE_NUMBER (insn
);
3065 high_block_linenum
= MAX (last_linenum
, high_block_linenum
);
3066 high_function_linenum
= MAX (last_linenum
, high_function_linenum
);
3068 if (write_symbols
!= NO_DEBUG
)
3070 #ifdef SDB_DEBUGGING_INFO
3071 if (write_symbols
== SDB_DEBUG
3072 #if 0 /* People like having line numbers even in wrong file! */
3073 /* COFF can't handle multiple source files--lose, lose. */
3074 && !strcmp (filename
, main_input_filename
)
3076 /* COFF relative line numbers must be positive. */
3077 && last_linenum
> sdb_begin_function_line
)
3079 #ifdef ASM_OUTPUT_SOURCE_LINE
3080 ASM_OUTPUT_SOURCE_LINE (file
, last_linenum
);
3082 fprintf (file
, "\t.ln\t%d\n",
3083 ((sdb_begin_function_line
> -1)
3084 ? last_linenum
- sdb_begin_function_line
: 1));
3089 #if defined (DBX_DEBUGGING_INFO)
3090 if (write_symbols
== DBX_DEBUG
)
3091 dbxout_source_line (file
, filename
, NOTE_LINE_NUMBER (insn
));
3094 #if defined (XCOFF_DEBUGGING_INFO)
3095 if (write_symbols
== XCOFF_DEBUG
)
3096 xcoffout_source_line (file
, filename
, insn
);
3099 #ifdef DWARF_DEBUGGING_INFO
3100 if (write_symbols
== DWARF_DEBUG
)
3101 dwarfout_line (filename
, NOTE_LINE_NUMBER (insn
));
3104 #ifdef DWARF2_DEBUGGING_INFO
3105 if (write_symbols
== DWARF2_DEBUG
)
3106 dwarf2out_line (filename
, NOTE_LINE_NUMBER (insn
));
3111 /* For each operand in INSN, simplify (subreg (reg)) so that it refers
3112 directly to the desired hard register. */
3115 cleanup_subreg_operands (insn
)
3119 extract_insn_cached (insn
);
3120 for (i
= 0; i
< recog_data
.n_operands
; i
++)
3122 if (GET_CODE (recog_data
.operand
[i
]) == SUBREG
)
3123 recog_data
.operand
[i
] = alter_subreg (recog_data
.operand
[i
]);
3124 else if (GET_CODE (recog_data
.operand
[i
]) == PLUS
3125 || GET_CODE (recog_data
.operand
[i
]) == MULT
3126 || GET_CODE (recog_data
.operand
[i
]) == MEM
)
3127 recog_data
.operand
[i
] = walk_alter_subreg (recog_data
.operand
[i
]);
3130 for (i
= 0; i
< recog_data
.n_dups
; i
++)
3132 if (GET_CODE (*recog_data
.dup_loc
[i
]) == SUBREG
)
3133 *recog_data
.dup_loc
[i
] = alter_subreg (*recog_data
.dup_loc
[i
]);
3134 else if (GET_CODE (*recog_data
.dup_loc
[i
]) == PLUS
3135 || GET_CODE (*recog_data
.dup_loc
[i
]) == MULT
3136 || GET_CODE (*recog_data
.dup_loc
[i
]) == MEM
)
3137 *recog_data
.dup_loc
[i
] = walk_alter_subreg (*recog_data
.dup_loc
[i
]);
3141 /* If X is a SUBREG, replace it with a REG or a MEM,
3142 based on the thing it is a subreg of. */
3148 register rtx y
= SUBREG_REG (x
);
3150 if (GET_CODE (y
) == SUBREG
)
3151 y
= alter_subreg (y
);
3153 /* If reload is operating, we may be replacing inside this SUBREG.
3154 Check for that and make a new one if so. */
3155 if (reload_in_progress
&& find_replacement (&SUBREG_REG (x
)) != 0)
3158 if (GET_CODE (y
) == REG
)
3161 /* If the word size is larger than the size of this register,
3162 adjust the register number to compensate. */
3163 /* ??? Note that this just catches stragglers created by/for
3164 integrate. It would be better if we either caught these
3165 earlier, or kept _all_ subregs until now and eliminate
3166 gen_lowpart and friends. */
3168 #ifdef ALTER_HARD_SUBREG
3169 regno
= ALTER_HARD_SUBREG (GET_MODE (x
), SUBREG_WORD (x
),
3170 GET_MODE (y
), REGNO (y
));
3172 regno
= REGNO (y
) + SUBREG_WORD (x
);
3176 ORIGINAL_REGNO (x
) = ORIGINAL_REGNO (y
);
3177 /* This field has a different meaning for REGs and SUBREGs. Make sure
3181 else if (GET_CODE (y
) == MEM
)
3183 register int offset
= SUBREG_WORD (x
) * UNITS_PER_WORD
;
3185 if (BYTES_BIG_ENDIAN
)
3186 offset
-= (MIN (UNITS_PER_WORD
, GET_MODE_SIZE (GET_MODE (x
)))
3187 - MIN (UNITS_PER_WORD
, GET_MODE_SIZE (GET_MODE (y
))));
3189 MEM_COPY_ATTRIBUTES (x
, y
);
3190 XEXP (x
, 0) = plus_constant (XEXP (y
, 0), offset
);
3196 /* Do alter_subreg on all the SUBREGs contained in X. */
3199 walk_alter_subreg (x
)
3202 switch (GET_CODE (x
))
3206 XEXP (x
, 0) = walk_alter_subreg (XEXP (x
, 0));
3207 XEXP (x
, 1) = walk_alter_subreg (XEXP (x
, 1));
3211 XEXP (x
, 0) = walk_alter_subreg (XEXP (x
, 0));
3215 return alter_subreg (x
);
3226 /* Given BODY, the body of a jump instruction, alter the jump condition
3227 as required by the bits that are set in cc_status.flags.
3228 Not all of the bits there can be handled at this level in all cases.
3230 The value is normally 0.
3231 1 means that the condition has become always true.
3232 -1 means that the condition has become always false.
3233 2 means that COND has been altered. */
3241 if (cc_status
.flags
& CC_REVERSED
)
3244 PUT_CODE (cond
, swap_condition (GET_CODE (cond
)));
3247 if (cc_status
.flags
& CC_INVERTED
)
3250 PUT_CODE (cond
, reverse_condition (GET_CODE (cond
)));
3253 if (cc_status
.flags
& CC_NOT_POSITIVE
)
3254 switch (GET_CODE (cond
))
3259 /* Jump becomes unconditional. */
3265 /* Jump becomes no-op. */
3269 PUT_CODE (cond
, EQ
);
3274 PUT_CODE (cond
, NE
);
3282 if (cc_status
.flags
& CC_NOT_NEGATIVE
)
3283 switch (GET_CODE (cond
))
3287 /* Jump becomes unconditional. */
3292 /* Jump becomes no-op. */
3297 PUT_CODE (cond
, EQ
);
3303 PUT_CODE (cond
, NE
);
3311 if (cc_status
.flags
& CC_NO_OVERFLOW
)
3312 switch (GET_CODE (cond
))
3315 /* Jump becomes unconditional. */
3319 PUT_CODE (cond
, EQ
);
3324 PUT_CODE (cond
, NE
);
3329 /* Jump becomes no-op. */
3336 if (cc_status
.flags
& (CC_Z_IN_NOT_N
| CC_Z_IN_N
))
3337 switch (GET_CODE (cond
))
3343 PUT_CODE (cond
, cc_status
.flags
& CC_Z_IN_N
? GE
: LT
);
3348 PUT_CODE (cond
, cc_status
.flags
& CC_Z_IN_N
? LT
: GE
);
3353 if (cc_status
.flags
& CC_NOT_SIGNED
)
3354 /* The flags are valid if signed condition operators are converted
3356 switch (GET_CODE (cond
))
3359 PUT_CODE (cond
, LEU
);
3364 PUT_CODE (cond
, LTU
);
3369 PUT_CODE (cond
, GTU
);
3374 PUT_CODE (cond
, GEU
);
3386 /* Report inconsistency between the assembler template and the operands.
3387 In an `asm', it's the user's fault; otherwise, the compiler's fault. */
3390 output_operand_lossage (msgid
)
3393 if (this_is_asm_operands
)
3394 error_for_asm (this_is_asm_operands
, "invalid `asm': %s", _(msgid
));
3397 error ("output_operand: %s", _(msgid
));
3402 /* Output of assembler code from a template, and its subroutines. */
3404 /* Output text from TEMPLATE to the assembler output file,
3405 obeying %-directions to substitute operands taken from
3406 the vector OPERANDS.
3408 %N (for N a digit) means print operand N in usual manner.
3409 %lN means require operand N to be a CODE_LABEL or LABEL_REF
3410 and print the label name with no punctuation.
3411 %cN means require operand N to be a constant
3412 and print the constant expression with no punctuation.
3413 %aN means expect operand N to be a memory address
3414 (not a memory reference!) and print a reference
3416 %nN means expect operand N to be a constant
3417 and print a constant expression for minus the value
3418 of the operand, with no other punctuation. */
3423 if (flag_print_asm_name
)
3425 /* Annotate the assembly with a comment describing the pattern and
3426 alternative used. */
3429 register int num
= INSN_CODE (debug_insn
);
3430 fprintf (asm_out_file
, "\t%s %d\t%s",
3431 ASM_COMMENT_START
, INSN_UID (debug_insn
),
3432 insn_data
[num
].name
);
3433 if (insn_data
[num
].n_alternatives
> 1)
3434 fprintf (asm_out_file
, "/%d", which_alternative
+ 1);
3435 #ifdef HAVE_ATTR_length
3436 fprintf (asm_out_file
, "\t[length = %d]",
3437 get_attr_length (debug_insn
));
3439 /* Clear this so only the first assembler insn
3440 of any rtl insn will get the special comment for -dp. */
3447 output_asm_insn (template, operands
)
3448 const char *template;
3451 register const char *p
;
3454 /* An insn may return a null string template
3455 in a case where no assembler code is needed. */
3460 putc ('\t', asm_out_file
);
3462 #ifdef ASM_OUTPUT_OPCODE
3463 ASM_OUTPUT_OPCODE (asm_out_file
, p
);
3471 putc (c
, asm_out_file
);
3472 #ifdef ASM_OUTPUT_OPCODE
3473 while ((c
= *p
) == '\t')
3475 putc (c
, asm_out_file
);
3478 ASM_OUTPUT_OPCODE (asm_out_file
, p
);
3482 #ifdef ASSEMBLER_DIALECT
3487 /* If we want the first dialect, do nothing. Otherwise, skip
3488 DIALECT_NUMBER of strings ending with '|'. */
3489 for (i
= 0; i
< dialect_number
; i
++)
3491 while (*p
&& *p
!= '}' && *p
++ != '|')
3502 /* Skip to close brace. */
3503 while (*p
&& *p
++ != '}')
3512 /* %% outputs a single %. */
3516 putc (c
, asm_out_file
);
3518 /* %= outputs a number which is unique to each insn in the entire
3519 compilation. This is useful for making local labels that are
3520 referred to more than once in a given insn. */
3524 fprintf (asm_out_file
, "%d", insn_counter
);
3526 /* % followed by a letter and some digits
3527 outputs an operand in a special way depending on the letter.
3528 Letters `acln' are implemented directly.
3529 Other letters are passed to `output_operand' so that
3530 the PRINT_OPERAND macro can define them. */
3531 else if (ISLOWER (*p
) || ISUPPER (*p
))
3536 if (! (*p
>= '0' && *p
<= '9'))
3537 output_operand_lossage ("operand number missing after %-letter");
3538 else if (this_is_asm_operands
&& (c
< 0 || (unsigned int) c
>= insn_noperands
))
3539 output_operand_lossage ("operand number out of range");
3540 else if (letter
== 'l')
3541 output_asm_label (operands
[c
]);
3542 else if (letter
== 'a')
3543 output_address (operands
[c
]);
3544 else if (letter
== 'c')
3546 if (CONSTANT_ADDRESS_P (operands
[c
]))
3547 output_addr_const (asm_out_file
, operands
[c
]);
3549 output_operand (operands
[c
], 'c');
3551 else if (letter
== 'n')
3553 if (GET_CODE (operands
[c
]) == CONST_INT
)
3554 fprintf (asm_out_file
, HOST_WIDE_INT_PRINT_DEC
,
3555 - INTVAL (operands
[c
]));
3558 putc ('-', asm_out_file
);
3559 output_addr_const (asm_out_file
, operands
[c
]);
3563 output_operand (operands
[c
], letter
);
3565 while ((c
= *p
) >= '0' && c
<= '9')
3568 /* % followed by a digit outputs an operand the default way. */
3569 else if (*p
>= '0' && *p
<= '9')
3572 if (this_is_asm_operands
3573 && (c
< 0 || (unsigned int) c
>= insn_noperands
))
3574 output_operand_lossage ("operand number out of range");
3576 output_operand (operands
[c
], 0);
3577 while ((c
= *p
) >= '0' && c
<= '9')
3580 /* % followed by punctuation: output something for that
3581 punctuation character alone, with no operand.
3582 The PRINT_OPERAND macro decides what is actually done. */
3583 #ifdef PRINT_OPERAND_PUNCT_VALID_P
3584 else if (PRINT_OPERAND_PUNCT_VALID_P ((unsigned char) *p
))
3585 output_operand (NULL_RTX
, *p
++);
3588 output_operand_lossage ("invalid %%-code");
3592 putc (c
, asm_out_file
);
3597 putc ('\n', asm_out_file
);
3600 /* Output a LABEL_REF, or a bare CODE_LABEL, as an assembler symbol. */
3603 output_asm_label (x
)
3608 if (GET_CODE (x
) == LABEL_REF
)
3610 if (GET_CODE (x
) == CODE_LABEL
3611 || (GET_CODE (x
) == NOTE
3612 && NOTE_LINE_NUMBER (x
) == NOTE_INSN_DELETED_LABEL
))
3613 ASM_GENERATE_INTERNAL_LABEL (buf
, "L", CODE_LABEL_NUMBER (x
));
3615 output_operand_lossage ("`%l' operand isn't a label");
3617 assemble_name (asm_out_file
, buf
);
3620 /* Print operand X using machine-dependent assembler syntax.
3621 The macro PRINT_OPERAND is defined just to control this function.
3622 CODE is a non-digit that preceded the operand-number in the % spec,
3623 such as 'z' if the spec was `%z3'. CODE is 0 if there was no char
3624 between the % and the digits.
3625 When CODE is a non-letter, X is 0.
3627 The meanings of the letters are machine-dependent and controlled
3628 by PRINT_OPERAND. */
3631 output_operand (x
, code
)
3633 int code ATTRIBUTE_UNUSED
;
3635 if (x
&& GET_CODE (x
) == SUBREG
)
3636 x
= alter_subreg (x
);
3638 /* If X is a pseudo-register, abort now rather than writing trash to the
3641 if (x
&& GET_CODE (x
) == REG
&& REGNO (x
) >= FIRST_PSEUDO_REGISTER
)
3644 PRINT_OPERAND (asm_out_file
, x
, code
);
3647 /* Print a memory reference operand for address X
3648 using machine-dependent assembler syntax.
3649 The macro PRINT_OPERAND_ADDRESS exists just to control this function. */
3655 walk_alter_subreg (x
);
3656 PRINT_OPERAND_ADDRESS (asm_out_file
, x
);
3659 /* Print an integer constant expression in assembler syntax.
3660 Addition and subtraction are the only arithmetic
3661 that may appear in these expressions. */
3664 output_addr_const (file
, x
)
3671 switch (GET_CODE (x
))
3681 #ifdef ASM_OUTPUT_SYMBOL_REF
3682 ASM_OUTPUT_SYMBOL_REF (file
, x
);
3684 assemble_name (file
, XSTR (x
, 0));
3692 ASM_GENERATE_INTERNAL_LABEL (buf
, "L", CODE_LABEL_NUMBER (x
));
3693 assemble_name (file
, buf
);
3697 fprintf (file
, HOST_WIDE_INT_PRINT_DEC
, INTVAL (x
));
3701 /* This used to output parentheses around the expression,
3702 but that does not work on the 386 (either ATT or BSD assembler). */
3703 output_addr_const (file
, XEXP (x
, 0));
3707 if (GET_MODE (x
) == VOIDmode
)
3709 /* We can use %d if the number is one word and positive. */
3710 if (CONST_DOUBLE_HIGH (x
))
3711 fprintf (file
, HOST_WIDE_INT_PRINT_DOUBLE_HEX
,
3712 CONST_DOUBLE_HIGH (x
), CONST_DOUBLE_LOW (x
));
3713 else if (CONST_DOUBLE_LOW (x
) < 0)
3714 fprintf (file
, HOST_WIDE_INT_PRINT_HEX
, CONST_DOUBLE_LOW (x
));
3716 fprintf (file
, HOST_WIDE_INT_PRINT_DEC
, CONST_DOUBLE_LOW (x
));
3719 /* We can't handle floating point constants;
3720 PRINT_OPERAND must handle them. */
3721 output_operand_lossage ("floating constant misused");
3725 /* Some assemblers need integer constants to appear last (eg masm). */
3726 if (GET_CODE (XEXP (x
, 0)) == CONST_INT
)
3728 output_addr_const (file
, XEXP (x
, 1));
3729 if (INTVAL (XEXP (x
, 0)) >= 0)
3730 fprintf (file
, "+");
3731 output_addr_const (file
, XEXP (x
, 0));
3735 output_addr_const (file
, XEXP (x
, 0));
3736 if (GET_CODE (XEXP (x
, 1)) != CONST_INT
3737 || INTVAL (XEXP (x
, 1)) >= 0)
3738 fprintf (file
, "+");
3739 output_addr_const (file
, XEXP (x
, 1));
3744 /* Avoid outputting things like x-x or x+5-x,
3745 since some assemblers can't handle that. */
3746 x
= simplify_subtraction (x
);
3747 if (GET_CODE (x
) != MINUS
)
3750 output_addr_const (file
, XEXP (x
, 0));
3751 fprintf (file
, "-");
3752 if ((GET_CODE (XEXP (x
, 1)) == CONST_INT
3753 && INTVAL (XEXP (x
, 1)) < 0)
3754 || GET_CODE (XEXP (x
, 1)) != CONST_INT
)
3756 fprintf (file
, "%s", ASM_OPEN_PAREN
);
3757 output_addr_const (file
, XEXP (x
, 1));
3758 fprintf (file
, "%s", ASM_CLOSE_PAREN
);
3761 output_addr_const (file
, XEXP (x
, 1));
3766 output_addr_const (file
, XEXP (x
, 0));
3770 #ifdef OUTPUT_ADDR_CONST_EXTRA
3771 OUTPUT_ADDR_CONST_EXTRA (file
, x
, fail
);
3776 output_operand_lossage ("invalid expression as operand");
3780 /* A poor man's fprintf, with the added features of %I, %R, %L, and %U.
3781 %R prints the value of REGISTER_PREFIX.
3782 %L prints the value of LOCAL_LABEL_PREFIX.
3783 %U prints the value of USER_LABEL_PREFIX.
3784 %I prints the value of IMMEDIATE_PREFIX.
3785 %O runs ASM_OUTPUT_OPCODE to transform what follows in the string.
3786 Also supported are %d, %x, %s, %e, %f, %g and %%.
3788 We handle alternate assembler dialects here, just like output_asm_insn. */
3791 asm_fprintf
VPARAMS ((FILE *file
, const char *p
, ...))
3793 #ifndef ANSI_PROTOTYPES
3801 VA_START (argptr
, p
);
3803 #ifndef ANSI_PROTOTYPES
3804 file
= va_arg (argptr
, FILE *);
3805 p
= va_arg (argptr
, const char *);
3813 #ifdef ASSEMBLER_DIALECT
3818 /* If we want the first dialect, do nothing. Otherwise, skip
3819 DIALECT_NUMBER of strings ending with '|'. */
3820 for (i
= 0; i
< dialect_number
; i
++)
3822 while (*p
&& *p
++ != '|')
3832 /* Skip to close brace. */
3833 while (*p
&& *p
++ != '}')
3844 while ((c
>= '0' && c
<= '9') || c
== '.')
3852 fprintf (file
, "%%");
3855 case 'd': case 'i': case 'u':
3856 case 'x': case 'p': case 'X':
3860 fprintf (file
, buf
, va_arg (argptr
, int));
3864 /* This is a prefix to the 'd', 'i', 'u', 'x', 'p', and 'X' cases,
3865 but we do not check for those cases. It means that the value
3866 is a HOST_WIDE_INT, which may be either `int' or `long'. */
3868 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
3870 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
3880 fprintf (file
, buf
, va_arg (argptr
, HOST_WIDE_INT
));
3887 fprintf (file
, buf
, va_arg (argptr
, long));
3895 fprintf (file
, buf
, va_arg (argptr
, double));
3901 fprintf (file
, buf
, va_arg (argptr
, char *));
3905 #ifdef ASM_OUTPUT_OPCODE
3906 ASM_OUTPUT_OPCODE (asm_out_file
, p
);
3911 #ifdef REGISTER_PREFIX
3912 fprintf (file
, "%s", REGISTER_PREFIX
);
3917 #ifdef IMMEDIATE_PREFIX
3918 fprintf (file
, "%s", IMMEDIATE_PREFIX
);
3923 #ifdef LOCAL_LABEL_PREFIX
3924 fprintf (file
, "%s", LOCAL_LABEL_PREFIX
);
3929 fputs (user_label_prefix
, file
);
3932 #ifdef ASM_FPRINTF_EXTENSIONS
3933 /* Upper case letters are reserved for general use by asm_fprintf
3934 and so are not available to target specific code. In order to
3935 prevent the ASM_FPRINTF_EXTENSIONS macro from using them then,
3936 they are defined here. As they get turned into real extensions
3937 to asm_fprintf they should be removed from this list. */
3938 case 'A': case 'B': case 'C': case 'D': case 'E':
3939 case 'F': case 'G': case 'H': case 'J': case 'K':
3940 case 'M': case 'N': case 'P': case 'Q': case 'S':
3941 case 'T': case 'V': case 'W': case 'Y': case 'Z':
3944 ASM_FPRINTF_EXTENSIONS (file
, argptr
, p
)
3957 /* Split up a CONST_DOUBLE or integer constant rtx
3958 into two rtx's for single words,
3959 storing in *FIRST the word that comes first in memory in the target
3960 and in *SECOND the other. */
3963 split_double (value
, first
, second
)
3965 rtx
*first
, *second
;
3967 if (GET_CODE (value
) == CONST_INT
)
3969 if (HOST_BITS_PER_WIDE_INT
>= (2 * BITS_PER_WORD
))
3971 /* In this case the CONST_INT holds both target words.
3972 Extract the bits from it into two word-sized pieces.
3973 Sign extend each half to HOST_WIDE_INT. */
3974 unsigned HOST_WIDE_INT low
, high
;
3975 unsigned HOST_WIDE_INT mask
, sign_bit
, sign_extend
;
3977 /* Set sign_bit to the most significant bit of a word. */
3979 sign_bit
<<= BITS_PER_WORD
- 1;
3981 /* Set mask so that all bits of the word are set. We could
3982 have used 1 << BITS_PER_WORD instead of basing the
3983 calculation on sign_bit. However, on machines where
3984 HOST_BITS_PER_WIDE_INT == BITS_PER_WORD, it could cause a
3985 compiler warning, even though the code would never be
3987 mask
= sign_bit
<< 1;
3990 /* Set sign_extend as any remaining bits. */
3991 sign_extend
= ~mask
;
3993 /* Pick the lower word and sign-extend it. */
3994 low
= INTVAL (value
);
3999 /* Pick the higher word, shifted to the least significant
4000 bits, and sign-extend it. */
4001 high
= INTVAL (value
);
4002 high
>>= BITS_PER_WORD
- 1;
4005 if (high
& sign_bit
)
4006 high
|= sign_extend
;
4008 /* Store the words in the target machine order. */
4009 if (WORDS_BIG_ENDIAN
)
4011 *first
= GEN_INT (high
);
4012 *second
= GEN_INT (low
);
4016 *first
= GEN_INT (low
);
4017 *second
= GEN_INT (high
);
4022 /* The rule for using CONST_INT for a wider mode
4023 is that we regard the value as signed.
4024 So sign-extend it. */
4025 rtx high
= (INTVAL (value
) < 0 ? constm1_rtx
: const0_rtx
);
4026 if (WORDS_BIG_ENDIAN
)
4038 else if (GET_CODE (value
) != CONST_DOUBLE
)
4040 if (WORDS_BIG_ENDIAN
)
4042 *first
= const0_rtx
;
4048 *second
= const0_rtx
;
4051 else if (GET_MODE (value
) == VOIDmode
4052 /* This is the old way we did CONST_DOUBLE integers. */
4053 || GET_MODE_CLASS (GET_MODE (value
)) == MODE_INT
)
4055 /* In an integer, the words are defined as most and least significant.
4056 So order them by the target's convention. */
4057 if (WORDS_BIG_ENDIAN
)
4059 *first
= GEN_INT (CONST_DOUBLE_HIGH (value
));
4060 *second
= GEN_INT (CONST_DOUBLE_LOW (value
));
4064 *first
= GEN_INT (CONST_DOUBLE_LOW (value
));
4065 *second
= GEN_INT (CONST_DOUBLE_HIGH (value
));
4070 #ifdef REAL_ARITHMETIC
4073 REAL_VALUE_FROM_CONST_DOUBLE (r
, value
);
4075 /* Note, this converts the REAL_VALUE_TYPE to the target's
4076 format, splits up the floating point double and outputs
4077 exactly 32 bits of it into each of l[0] and l[1] --
4078 not necessarily BITS_PER_WORD bits. */
4079 REAL_VALUE_TO_TARGET_DOUBLE (r
, l
);
4081 /* If 32 bits is an entire word for the target, but not for the host,
4082 then sign-extend on the host so that the number will look the same
4083 way on the host that it would on the target. See for instance
4084 simplify_unary_operation. The #if is needed to avoid compiler
4087 #if HOST_BITS_PER_LONG > 32
4088 if (BITS_PER_WORD
< HOST_BITS_PER_LONG
&& BITS_PER_WORD
== 32)
4090 if (l
[0] & ((long) 1 << 31))
4091 l
[0] |= ((long) (-1) << 32);
4092 if (l
[1] & ((long) 1 << 31))
4093 l
[1] |= ((long) (-1) << 32);
4097 *first
= GEN_INT ((HOST_WIDE_INT
) l
[0]);
4098 *second
= GEN_INT ((HOST_WIDE_INT
) l
[1]);
4100 if ((HOST_FLOAT_FORMAT
!= TARGET_FLOAT_FORMAT
4101 || HOST_BITS_PER_WIDE_INT
!= BITS_PER_WORD
)
4102 && ! flag_pretend_float
)
4106 #ifdef HOST_WORDS_BIG_ENDIAN
4113 /* Host and target agree => no need to swap. */
4114 *first
= GEN_INT (CONST_DOUBLE_LOW (value
));
4115 *second
= GEN_INT (CONST_DOUBLE_HIGH (value
));
4119 *second
= GEN_INT (CONST_DOUBLE_LOW (value
));
4120 *first
= GEN_INT (CONST_DOUBLE_HIGH (value
));
4122 #endif /* no REAL_ARITHMETIC */
4126 /* Return nonzero if this function has no function calls. */
4134 if (profile_flag
|| profile_block_flag
|| profile_arc_flag
)
4137 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
4139 if (GET_CODE (insn
) == CALL_INSN
4140 && ! SIBLING_CALL_P (insn
))
4142 if (GET_CODE (insn
) == INSN
4143 && GET_CODE (PATTERN (insn
)) == SEQUENCE
4144 && GET_CODE (XVECEXP (PATTERN (insn
), 0, 0)) == CALL_INSN
4145 && ! SIBLING_CALL_P (XVECEXP (PATTERN (insn
), 0, 0)))
4148 for (link
= current_function_epilogue_delay_list
;
4150 link
= XEXP (link
, 1))
4152 insn
= XEXP (link
, 0);
4154 if (GET_CODE (insn
) == CALL_INSN
4155 && ! SIBLING_CALL_P (insn
))
4157 if (GET_CODE (insn
) == INSN
4158 && GET_CODE (PATTERN (insn
)) == SEQUENCE
4159 && GET_CODE (XVECEXP (PATTERN (insn
), 0, 0)) == CALL_INSN
4160 && ! SIBLING_CALL_P (XVECEXP (PATTERN (insn
), 0, 0)))
4167 /* On some machines, a function with no call insns
4168 can run faster if it doesn't create its own register window.
4169 When output, the leaf function should use only the "output"
4170 registers. Ordinarily, the function would be compiled to use
4171 the "input" registers to find its arguments; it is a candidate
4172 for leaf treatment if it uses only the "input" registers.
4173 Leaf function treatment means renumbering so the function
4174 uses the "output" registers instead. */
4176 #ifdef LEAF_REGISTERS
4178 /* Return 1 if this function uses only the registers that can be
4179 safely renumbered. */
4182 only_leaf_regs_used ()
4185 char *permitted_reg_in_leaf_functions
= LEAF_REGISTERS
;
4187 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
4188 if ((regs_ever_live
[i
] || global_regs
[i
])
4189 && ! permitted_reg_in_leaf_functions
[i
])
4192 if (current_function_uses_pic_offset_table
4193 && pic_offset_table_rtx
!= 0
4194 && GET_CODE (pic_offset_table_rtx
) == REG
4195 && ! permitted_reg_in_leaf_functions
[REGNO (pic_offset_table_rtx
)])
4201 /* Scan all instructions and renumber all registers into those
4202 available in leaf functions. */
4205 leaf_renumber_regs (first
)
4210 /* Renumber only the actual patterns.
4211 The reg-notes can contain frame pointer refs,
4212 and renumbering them could crash, and should not be needed. */
4213 for (insn
= first
; insn
; insn
= NEXT_INSN (insn
))
4215 leaf_renumber_regs_insn (PATTERN (insn
));
4216 for (insn
= current_function_epilogue_delay_list
;
4218 insn
= XEXP (insn
, 1))
4219 if (INSN_P (XEXP (insn
, 0)))
4220 leaf_renumber_regs_insn (PATTERN (XEXP (insn
, 0)));
4223 /* Scan IN_RTX and its subexpressions, and renumber all regs into those
4224 available in leaf functions. */
4227 leaf_renumber_regs_insn (in_rtx
)
4228 register rtx in_rtx
;
4231 register const char *format_ptr
;
4236 /* Renumber all input-registers into output-registers.
4237 renumbered_regs would be 1 for an output-register;
4240 if (GET_CODE (in_rtx
) == REG
)
4244 /* Don't renumber the same reg twice. */
4248 newreg
= REGNO (in_rtx
);
4249 /* Don't try to renumber pseudo regs. It is possible for a pseudo reg
4250 to reach here as part of a REG_NOTE. */
4251 if (newreg
>= FIRST_PSEUDO_REGISTER
)
4256 newreg
= LEAF_REG_REMAP (newreg
);
4259 regs_ever_live
[REGNO (in_rtx
)] = 0;
4260 regs_ever_live
[newreg
] = 1;
4261 REGNO (in_rtx
) = newreg
;
4265 if (INSN_P (in_rtx
))
4267 /* Inside a SEQUENCE, we find insns.
4268 Renumber just the patterns of these insns,
4269 just as we do for the top-level insns. */
4270 leaf_renumber_regs_insn (PATTERN (in_rtx
));
4274 format_ptr
= GET_RTX_FORMAT (GET_CODE (in_rtx
));
4276 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (in_rtx
)); i
++)
4277 switch (*format_ptr
++)
4280 leaf_renumber_regs_insn (XEXP (in_rtx
, i
));
4284 if (NULL
!= XVEC (in_rtx
, i
))
4286 for (j
= 0; j
< XVECLEN (in_rtx
, i
); j
++)
4287 leaf_renumber_regs_insn (XVECEXP (in_rtx
, i
, j
));