]> gcc.gnu.org Git - gcc.git/blame - gcc/final.c
Makefile.in, [...]: replace "GNU CC" with "GCC".
[gcc.git] / gcc / final.c
CommitLineData
3cf2715d 1/* Convert RTL to assembler code and output it, for GNU compiler.
3b708058 2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
b660f82f 3 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
3cf2715d 4
1322177d 5This file is part of GCC.
3cf2715d 6
1322177d
LB
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 2, or (at your option) any later
10version.
3cf2715d 11
1322177d
LB
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
3cf2715d
DE
16
17You should have received a copy of the GNU General Public License
1322177d
LB
18along with GCC; see the file COPYING. If not, write to the Free
19Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2002111-1307, USA. */
3cf2715d 21
3cf2715d
DE
22/* This is the final pass of the compiler.
23 It looks at the rtl code for a function and outputs assembler code.
24
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'.
30
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.)
35
36 Instructions to set the condition codes are omitted when it can be
37 seen that the condition codes already had the desired values.
38
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.
42
43 The code for the function prologue and epilogue are generated
08c148a8
NB
44 directly in assembler by the target functions function_prologue and
45 function_epilogue. Those instructions never exist as rtl. */
3cf2715d
DE
46
47#include "config.h"
670ee920 48#include "system.h"
3cf2715d
DE
49
50#include "tree.h"
51#include "rtl.h"
6baf1cc8 52#include "tm_p.h"
3cf2715d
DE
53#include "regs.h"
54#include "insn-config.h"
3cf2715d 55#include "insn-attr.h"
3cf2715d
DE
56#include "recog.h"
57#include "conditions.h"
58#include "flags.h"
59#include "real.h"
60#include "hard-reg-set.h"
3cf2715d 61#include "output.h"
3d195391 62#include "except.h"
49ad7cfa 63#include "function.h"
10f0ad3d 64#include "toplev.h"
d6f4ec51 65#include "reload.h"
ab87f8c8 66#include "intl.h"
be1bb652 67#include "basic-block.h"
08c148a8 68#include "target.h"
a5a42b92 69#include "debug.h"
3cf2715d 70
440aabf8
NB
71#ifdef XCOFF_DEBUGGING_INFO
72#include "xcoffout.h" /* Needed for external data
73 declarations for e.g. AIX 4.x. */
74#endif
75
76ead72b
RL
76#if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
77#include "dwarf2out.h"
78#endif
79
3cf2715d
DE
80/* If we aren't using cc0, CC_STATUS_INIT shouldn't exist. So define a
81 null default for it to save conditionalization later. */
82#ifndef CC_STATUS_INIT
83#define CC_STATUS_INIT
84#endif
85
86/* How to start an assembler comment. */
87#ifndef ASM_COMMENT_START
88#define ASM_COMMENT_START ";#"
89#endif
90
91/* Is the given character a logical line separator for the assembler? */
92#ifndef IS_ASM_LOGICAL_LINE_SEPARATOR
93#define IS_ASM_LOGICAL_LINE_SEPARATOR(C) ((C) == ';')
94#endif
95
75197b37
BS
96#ifndef JUMP_TABLES_IN_TEXT_SECTION
97#define JUMP_TABLES_IN_TEXT_SECTION 0
98#endif
99
3cf2715d 100/* Last insn processed by final_scan_insn. */
b1a9f6a0
RH
101static rtx debug_insn;
102rtx current_output_insn;
3cf2715d
DE
103
104/* Line number of last NOTE. */
105static int last_linenum;
106
eac40081
RK
107/* Highest line number in current block. */
108static int high_block_linenum;
109
110/* Likewise for function. */
111static int high_function_linenum;
112
3cf2715d 113/* Filename of last NOTE. */
3cce094d 114static const char *last_filename;
3cf2715d
DE
115
116/* Number of basic blocks seen so far;
117 used if profile_block_flag is set. */
118static int count_basic_blocks;
119
9e2f9a7f 120/* Number of instrumented arcs when profile_arc_flag is set. */
51891abe 121extern int count_instrumented_edges;
9e2f9a7f 122
fc470718
R
123extern int length_unit_log; /* This is defined in insn-attrtab.c. */
124
3cf2715d
DE
125/* Nonzero while outputting an `asm' with operands.
126 This means that inconsistencies are the user's fault, so don't abort.
127 The precise value is the insn being output, to pass to error_for_asm. */
128static rtx this_is_asm_operands;
129
130/* Number of operands of this insn, for an `asm' with operands. */
22bf4422 131static unsigned int insn_noperands;
3cf2715d
DE
132
133/* Compare optimization flag. */
134
135static rtx last_ignored_compare = 0;
136
137/* Flag indicating this insn is the start of a new basic block. */
138
139static int new_block = 1;
140
3cf2715d
DE
141/* Assign a unique number to each insn that is output.
142 This can be used to generate unique local labels. */
143
144static int insn_counter = 0;
145
146#ifdef HAVE_cc0
147/* This variable contains machine-dependent flags (defined in tm.h)
148 set and examined by output routines
149 that describe how to interpret the condition codes properly. */
150
151CC_STATUS cc_status;
152
153/* During output of an insn, this contains a copy of cc_status
154 from before the insn. */
155
156CC_STATUS cc_prev_status;
157#endif
158
159/* Indexed by hardware reg number, is 1 if that register is ever
160 used in the current function.
161
162 In life_analysis, or in stupid_life_analysis, this is set
163 up to record the hard regs used explicitly. Reload adds
164 in the hard regs used for holding pseudo regs. Final uses
165 it to generate the code in the function prologue and epilogue
166 to save and restore registers as needed. */
167
168char regs_ever_live[FIRST_PSEUDO_REGISTER];
169
170/* Nonzero means current function must be given a frame pointer.
171 Set in stmt.c if anything is allocated on the stack there.
172 Set in reload1.c if anything is allocated on the stack there. */
173
174int frame_pointer_needed;
175
8480e480
CC
176/* Assign unique numbers to labels generated for profiling. */
177
178int profile_label_no;
179
18c038b9 180/* Number of unmatched NOTE_INSN_BLOCK_BEG notes we have seen. */
3cf2715d
DE
181
182static int block_depth;
183
184/* Nonzero if have enabled APP processing of our assembler output. */
185
186static int app_on;
187
188/* If we are outputting an insn sequence, this contains the sequence rtx.
189 Zero otherwise. */
190
191rtx final_sequence;
192
193#ifdef ASSEMBLER_DIALECT
194
195/* Number of the assembler dialect to use, starting at 0. */
196static int dialect_number;
197#endif
198
199/* Indexed by line number, nonzero if there is a note for that line. */
200
201static char *line_note_exists;
202
afe48e06
RH
203#ifdef HAVE_conditional_execution
204/* Nonnull if the insn currently being emitted was a COND_EXEC pattern. */
205rtx current_insn_predicate;
206#endif
207
3cf2715d
DE
208/* Linked list to hold line numbers for each basic block. */
209
f5d927c0
KH
210struct bb_list
211{
3cf2715d
DE
212 struct bb_list *next; /* pointer to next basic block */
213 int line_num; /* line number */
214 int file_label_num; /* LPBC<n> label # for stored filename */
215 int func_label_num; /* LPBC<n> label # for stored function name */
216};
217
218static struct bb_list *bb_head = 0; /* Head of basic block list */
219static struct bb_list **bb_tail = &bb_head; /* Ptr to store next bb ptr */
220static int bb_file_label_num = -1; /* Current label # for file */
221static int bb_func_label_num = -1; /* Current label # for func */
222
223/* Linked list to hold the strings for each file and function name output. */
224
f5d927c0
KH
225struct bb_str
226{
3cf2715d 227 struct bb_str *next; /* pointer to next string */
9b3142b3 228 const char *string; /* string */
3cf2715d
DE
229 int label_num; /* label number */
230 int length; /* string length */
231};
232
3cf2715d
DE
233static struct bb_str *sbb_head = 0; /* Head of string list. */
234static struct bb_str **sbb_tail = &sbb_head; /* Ptr to store next bb str */
235static int sbb_label_num = 0; /* Last label used */
236
1d300e19 237#ifdef HAVE_ATTR_length
711d877c
KG
238static int asm_insn_count PARAMS ((rtx));
239#endif
240static void profile_function PARAMS ((FILE *));
241static void profile_after_prologue PARAMS ((FILE *));
242static void add_bb PARAMS ((FILE *));
243static int add_bb_string PARAMS ((const char *, int));
653e276c 244static void notice_source_line PARAMS ((rtx));
711d877c
KG
245static rtx walk_alter_subreg PARAMS ((rtx));
246static void output_asm_name PARAMS ((void));
247static void output_operand PARAMS ((rtx, int));
e9a25f70 248#ifdef LEAF_REGISTERS
711d877c 249static void leaf_renumber_regs PARAMS ((rtx));
e9a25f70
JL
250#endif
251#ifdef HAVE_cc0
711d877c 252static int alter_cond PARAMS ((rtx));
e9a25f70 253#endif
ca3075bd 254#ifndef ADDR_VEC_ALIGN
711d877c 255static int final_addr_vec_align PARAMS ((rtx));
ca3075bd 256#endif
7bdb32b9 257#ifdef HAVE_ATTR_length
711d877c 258static int align_fuzz PARAMS ((rtx, rtx, int, unsigned));
7bdb32b9 259#endif
3cf2715d
DE
260\f
261/* Initialize data in final at the beginning of a compilation. */
262
263void
264init_final (filename)
6a651371 265 const char *filename ATTRIBUTE_UNUSED;
3cf2715d 266{
3cf2715d 267 app_on = 0;
3cf2715d
DE
268 final_sequence = 0;
269
270#ifdef ASSEMBLER_DIALECT
271 dialect_number = ASSEMBLER_DIALECT;
272#endif
273}
274
275/* Called at end of source file,
276 to output the block-profiling table for this entire compilation. */
277
278void
279end_final (filename)
f5d927c0 280 const char *filename;
3cf2715d
DE
281{
282 int i;
283
9e2f9a7f 284 if (profile_block_flag || profile_arc_flag)
3cf2715d
DE
285 {
286 char name[20];
287 int align = exact_log2 (BIGGEST_ALIGNMENT / BITS_PER_UNIT);
9e2f9a7f 288 int size, rounded;
3cf2715d
DE
289 struct bb_list *ptr;
290 struct bb_str *sptr;
9e2f9a7f 291 int long_bytes = LONG_TYPE_SIZE / BITS_PER_UNIT;
b2aec5c0 292 int gcov_type_bytes = GCOV_TYPE_SIZE / BITS_PER_UNIT;
9e2f9a7f 293 int pointer_bytes = POINTER_SIZE / BITS_PER_UNIT;
c8af3574 294 unsigned int align2 = LONG_TYPE_SIZE;
9e2f9a7f
DE
295
296 if (profile_block_flag)
297 size = long_bytes * count_basic_blocks;
298 else
b2aec5c0 299 size = gcov_type_bytes * count_instrumented_edges;
9e2f9a7f 300 rounded = size;
3cf2715d
DE
301
302 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
303 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
304 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
305
c8af3574
RH
306 /* ??? This _really_ ought to be done with a structure layout
307 and with assemble_constructor. If long_bytes != pointer_bytes
308 we'll be emitting unaligned data at some point. */
309 if (long_bytes != pointer_bytes)
310 abort ();
311
3cf2715d
DE
312 data_section ();
313
47431dff
RK
314 /* Output the main header, of 11 words:
315 0: 1 if this file is initialized, else 0.
3cf2715d
DE
316 1: address of file name (LPBX1).
317 2: address of table of counts (LPBX2).
318 3: number of counts in the table.
319 4: always 0, for compatibility with Sun.
320
321 The following are GNU extensions:
322
323 5: address of table of start addrs of basic blocks (LPBX3).
324 6: Number of bytes in this header.
325 7: address of table of function names (LPBX4).
326 8: address of table of line numbers (LPBX5) or 0.
47431dff 327 9: address of table of file names (LPBX6) or 0.
0f41302f 328 10: space reserved for basic block profiling. */
3cf2715d
DE
329
330 ASM_OUTPUT_ALIGN (asm_out_file, align);
331
332 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 0);
3cf2715d 333
c8af3574
RH
334 /* Zero word. */
335 assemble_integer (const0_rtx, long_bytes, align2, 1);
336
337 /* Address of filename. */
3cf2715d 338 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 1);
c8af3574
RH
339 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes,
340 align2, 1);
3cf2715d 341
c8af3574 342 /* Address of count table. */
3cf2715d 343 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 2);
c8af3574
RH
344 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes,
345 align2, 1);
3cf2715d 346
c8af3574 347 /* Count of the # of basic blocks or # of instrumented arcs. */
c8af3574
RH
348 assemble_integer (GEN_INT (profile_block_flag
349 ? count_basic_blocks
350 : count_instrumented_edges),
351 long_bytes, align2, 1);
3cf2715d 352
c8af3574
RH
353 /* Zero word (link field). */
354 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
3cf2715d
DE
355
356 /* address of basic block start address table */
9e2f9a7f
DE
357 if (profile_block_flag)
358 {
359 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
c8af3574
RH
360 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
361 pointer_bytes, align2, 1);
9e2f9a7f
DE
362 }
363 else
c8af3574 364 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
3cf2715d 365
c8af3574
RH
366 /* Byte count for extended structure. */
367 assemble_integer (GEN_INT (11 * UNITS_PER_WORD), long_bytes, align2, 1);
3cf2715d 368
c8af3574 369 /* Address of function name table. */
9e2f9a7f
DE
370 if (profile_block_flag)
371 {
372 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 4);
c8af3574
RH
373 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
374 pointer_bytes, align2, 1);
9e2f9a7f
DE
375 }
376 else
c8af3574 377 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
3cf2715d 378
c8af3574 379 /* Address of line number and filename tables if debugging. */
9e2f9a7f 380 if (write_symbols != NO_DEBUG && profile_block_flag)
3cf2715d
DE
381 {
382 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 5);
c5c76735 383 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
c8af3574 384 pointer_bytes, align2, 1);
3cf2715d 385 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 6);
c5c76735 386 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
c8af3574 387 pointer_bytes, align2, 1);
3cf2715d
DE
388 }
389 else
390 {
c8af3574
RH
391 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
392 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
3cf2715d
DE
393 }
394
c8af3574
RH
395 /* Space for extension ptr (link field). */
396 assemble_integer (const0_rtx, UNITS_PER_WORD, align2, 1);
47431dff 397
c8af3574
RH
398 /* Output the file name changing the suffix to .d for
399 Sun tcov compatibility. */
3cf2715d
DE
400 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 1);
401 {
67e23d2f
JW
402 char *cwd = getpwd ();
403 int len = strlen (filename) + strlen (cwd) + 1;
404 char *data_file = (char *) alloca (len + 4);
405
406 strcpy (data_file, cwd);
407 strcat (data_file, "/");
408 strcat (data_file, filename);
3cf2715d 409 strip_off_ending (data_file, len);
9e2f9a7f
DE
410 if (profile_block_flag)
411 strcat (data_file, ".d");
412 else
413 strcat (data_file, ".da");
3cf2715d
DE
414 assemble_string (data_file, strlen (data_file) + 1);
415 }
416
417 /* Make space for the table of counts. */
2786cbad 418 if (size == 0)
3cf2715d
DE
419 {
420 /* Realign data section. */
421 ASM_OUTPUT_ALIGN (asm_out_file, align);
422 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 2);
423 if (size != 0)
424 assemble_zeros (size);
425 }
426 else
427 {
428 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 2);
429#ifdef ASM_OUTPUT_SHARED_LOCAL
430 if (flag_shared_data)
431 ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
432 else
433#endif
e9a25f70 434#ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
f5d927c0
KH
435 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name,
436 size, BIGGEST_ALIGNMENT);
e9a25f70 437#else
3cf2715d
DE
438#ifdef ASM_OUTPUT_ALIGNED_LOCAL
439 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size,
440 BIGGEST_ALIGNMENT);
441#else
442 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
e9a25f70 443#endif
3cf2715d
DE
444#endif
445 }
446
447 /* Output any basic block strings */
9e2f9a7f 448 if (profile_block_flag)
3cf2715d 449 {
9e2f9a7f
DE
450 readonly_data_section ();
451 if (sbb_head)
3cf2715d 452 {
9e2f9a7f
DE
453 ASM_OUTPUT_ALIGN (asm_out_file, align);
454 for (sptr = sbb_head; sptr != 0; sptr = sptr->next)
455 {
456 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBC",
457 sptr->label_num);
458 assemble_string (sptr->string, sptr->length);
459 }
3cf2715d
DE
460 }
461 }
462
463 /* Output the table of addresses. */
9e2f9a7f 464 if (profile_block_flag)
3cf2715d 465 {
9e2f9a7f
DE
466 /* Realign in new section */
467 ASM_OUTPUT_ALIGN (asm_out_file, align);
468 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 3);
469 for (i = 0; i < count_basic_blocks; i++)
470 {
471 ASM_GENERATE_INTERNAL_LABEL (name, "LPB", i);
38a448ca 472 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
c8af3574 473 pointer_bytes, align2, 1);
9e2f9a7f 474 }
3cf2715d
DE
475 }
476
477 /* Output the table of function names. */
9e2f9a7f 478 if (profile_block_flag)
3cf2715d 479 {
9e2f9a7f
DE
480 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 4);
481 for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
3cf2715d 482 {
9e2f9a7f
DE
483 if (ptr->func_label_num >= 0)
484 {
485 ASM_GENERATE_INTERNAL_LABEL (name, "LPBC",
486 ptr->func_label_num);
38a448ca 487 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
c8af3574 488 pointer_bytes, align2, 1);
9e2f9a7f
DE
489 }
490 else
c8af3574 491 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
3cf2715d 492 }
3cf2715d 493
f5d927c0 494 for (; i < count_basic_blocks; i++)
c8af3574 495 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
9e2f9a7f 496 }
3cf2715d 497
9e2f9a7f 498 if (write_symbols != NO_DEBUG && profile_block_flag)
3cf2715d
DE
499 {
500 /* Output the table of line numbers. */
501 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 5);
502 for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
c8af3574 503 assemble_integer (GEN_INT (ptr->line_num), long_bytes, align2, 1);
3cf2715d 504
f5d927c0 505 for (; i < count_basic_blocks; i++)
c8af3574 506 assemble_integer (const0_rtx, long_bytes, align2, 1);
3cf2715d
DE
507
508 /* Output the table of file names. */
509 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 6);
510 for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
511 {
512 if (ptr->file_label_num >= 0)
513 {
9e2f9a7f
DE
514 ASM_GENERATE_INTERNAL_LABEL (name, "LPBC",
515 ptr->file_label_num);
38a448ca 516 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
c8af3574 517 pointer_bytes, align2, 1);
3cf2715d
DE
518 }
519 else
c8af3574 520 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
3cf2715d
DE
521 }
522
f5d927c0 523 for (; i < count_basic_blocks; i++)
c8af3574 524 assemble_integer (const0_rtx, pointer_bytes, align2, 1);
3cf2715d
DE
525 }
526
527 /* End with the address of the table of addresses,
528 so we can find it easily, as the last word in the file's text. */
9e2f9a7f
DE
529 if (profile_block_flag)
530 {
531 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
c8af3574
RH
532 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name),
533 pointer_bytes, align2, 1);
9e2f9a7f 534 }
3cf2715d
DE
535 }
536}
537
08c148a8 538/* Default target function prologue and epilogue assembler output.
b9f22704 539
08c148a8
NB
540 If not overridden for epilogue code, then the function body itself
541 contains return instructions wherever needed. */
542void
543default_function_pro_epilogue (file, size)
544 FILE *file ATTRIBUTE_UNUSED;
545 HOST_WIDE_INT size ATTRIBUTE_UNUSED;
546{
547}
548
b4c25db2
NB
549/* Default target hook that outputs nothing to a stream. */
550void
551no_asm_to_stream (file)
552 FILE *file ATTRIBUTE_UNUSED;
553{
554}
555
3cf2715d
DE
556/* Enable APP processing of subsequent output.
557 Used before the output from an `asm' statement. */
558
559void
560app_enable ()
561{
562 if (! app_on)
563 {
51723711 564 fputs (ASM_APP_ON, asm_out_file);
3cf2715d
DE
565 app_on = 1;
566 }
567}
568
569/* Disable APP processing of subsequent output.
570 Called from varasm.c before most kinds of output. */
571
572void
573app_disable ()
574{
575 if (app_on)
576 {
51723711 577 fputs (ASM_APP_OFF, asm_out_file);
3cf2715d
DE
578 app_on = 0;
579 }
580}
581\f
f5d927c0 582/* Return the number of slots filled in the current
3cf2715d
DE
583 delayed branch sequence (we don't count the insn needing the
584 delay slot). Zero if not in a delayed branch sequence. */
585
586#ifdef DELAY_SLOTS
587int
588dbr_sequence_length ()
589{
590 if (final_sequence != 0)
591 return XVECLEN (final_sequence, 0) - 1;
592 else
593 return 0;
594}
595#endif
596\f
597/* The next two pages contain routines used to compute the length of an insn
598 and to shorten branches. */
599
600/* Arrays for insn lengths, and addresses. The latter is referenced by
601 `insn_current_length'. */
602
603static short *insn_lengths;
9d98a694
AO
604
605#ifdef HAVE_ATTR_length
606varray_type insn_addresses_;
607#endif
3cf2715d 608
ea3cbda5
R
609/* Max uid for which the above arrays are valid. */
610static int insn_lengths_max_uid;
611
3cf2715d
DE
612/* Address of insn being processed. Used by `insn_current_length'. */
613int insn_current_address;
614
fc470718
R
615/* Address of insn being processed in previous iteration. */
616int insn_last_address;
617
618/* konwn invariant alignment of insn being processed. */
619int insn_current_align;
620
95707627
R
621/* After shorten_branches, for any insn, uid_align[INSN_UID (insn)]
622 gives the next following alignment insn that increases the known
623 alignment, or NULL_RTX if there is no such insn.
624 For any alignment obtained this way, we can again index uid_align with
625 its uid to obtain the next following align that in turn increases the
626 alignment, till we reach NULL_RTX; the sequence obtained this way
627 for each insn we'll call the alignment chain of this insn in the following
628 comments. */
629
f5d927c0
KH
630struct label_alignment
631{
9e423e6d
JW
632 short alignment;
633 short max_skip;
634};
635
636static rtx *uid_align;
637static int *uid_shuid;
638static struct label_alignment *label_align;
95707627 639
3cf2715d
DE
640/* Indicate that branch shortening hasn't yet been done. */
641
642void
643init_insn_lengths ()
644{
95707627
R
645 if (uid_shuid)
646 {
647 free (uid_shuid);
648 uid_shuid = 0;
649 }
650 if (insn_lengths)
651 {
652 free (insn_lengths);
653 insn_lengths = 0;
ea3cbda5 654 insn_lengths_max_uid = 0;
95707627 655 }
9d98a694
AO
656#ifdef HAVE_ATTR_length
657 INSN_ADDRESSES_FREE ();
658#endif
95707627
R
659 if (uid_align)
660 {
661 free (uid_align);
662 uid_align = 0;
663 }
3cf2715d
DE
664}
665
666/* Obtain the current length of an insn. If branch shortening has been done,
667 get its actual length. Otherwise, get its maximum length. */
668
669int
670get_attr_length (insn)
7bdb32b9 671 rtx insn ATTRIBUTE_UNUSED;
3cf2715d
DE
672{
673#ifdef HAVE_ATTR_length
674 rtx body;
675 int i;
676 int length = 0;
677
ea3cbda5 678 if (insn_lengths_max_uid > INSN_UID (insn))
3cf2715d
DE
679 return insn_lengths[INSN_UID (insn)];
680 else
681 switch (GET_CODE (insn))
682 {
683 case NOTE:
684 case BARRIER:
685 case CODE_LABEL:
686 return 0;
687
688 case CALL_INSN:
689 length = insn_default_length (insn);
690 break;
691
692 case JUMP_INSN:
693 body = PATTERN (insn);
694 if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
695 {
fc470718
R
696 /* Alignment is machine-dependent and should be handled by
697 ADDR_VEC_ALIGN. */
3cf2715d
DE
698 }
699 else
700 length = insn_default_length (insn);
701 break;
702
703 case INSN:
704 body = PATTERN (insn);
705 if (GET_CODE (body) == USE || GET_CODE (body) == CLOBBER)
706 return 0;
707
708 else if (GET_CODE (body) == ASM_INPUT || asm_noperands (body) >= 0)
709 length = asm_insn_count (body) * insn_default_length (insn);
710 else if (GET_CODE (body) == SEQUENCE)
711 for (i = 0; i < XVECLEN (body, 0); i++)
712 length += get_attr_length (XVECEXP (body, 0, i));
713 else
714 length = insn_default_length (insn);
e9a25f70
JL
715 break;
716
717 default:
718 break;
3cf2715d
DE
719 }
720
721#ifdef ADJUST_INSN_LENGTH
722 ADJUST_INSN_LENGTH (insn, length);
723#endif
724 return length;
725#else /* not HAVE_ATTR_length */
726 return 0;
727#endif /* not HAVE_ATTR_length */
728}
729\f
fc470718
R
730/* Code to handle alignment inside shorten_branches. */
731
732/* Here is an explanation how the algorithm in align_fuzz can give
733 proper results:
734
735 Call a sequence of instructions beginning with alignment point X
736 and continuing until the next alignment point `block X'. When `X'
f5d927c0 737 is used in an expression, it means the alignment value of the
fc470718 738 alignment point.
f5d927c0 739
fc470718
R
740 Call the distance between the start of the first insn of block X, and
741 the end of the last insn of block X `IX', for the `inner size of X'.
742 This is clearly the sum of the instruction lengths.
f5d927c0 743
fc470718
R
744 Likewise with the next alignment-delimited block following X, which we
745 shall call block Y.
f5d927c0 746
fc470718
R
747 Call the distance between the start of the first insn of block X, and
748 the start of the first insn of block Y `OX', for the `outer size of X'.
f5d927c0 749
fc470718 750 The estimated padding is then OX - IX.
f5d927c0 751
fc470718 752 OX can be safely estimated as
f5d927c0 753
fc470718
R
754 if (X >= Y)
755 OX = round_up(IX, Y)
756 else
757 OX = round_up(IX, X) + Y - X
f5d927c0 758
fc470718
R
759 Clearly est(IX) >= real(IX), because that only depends on the
760 instruction lengths, and those being overestimated is a given.
f5d927c0 761
fc470718
R
762 Clearly round_up(foo, Z) >= round_up(bar, Z) if foo >= bar, so
763 we needn't worry about that when thinking about OX.
f5d927c0 764
fc470718
R
765 When X >= Y, the alignment provided by Y adds no uncertainty factor
766 for branch ranges starting before X, so we can just round what we have.
767 But when X < Y, we don't know anything about the, so to speak,
768 `middle bits', so we have to assume the worst when aligning up from an
769 address mod X to one mod Y, which is Y - X. */
770
771#ifndef LABEL_ALIGN
efa3896a 772#define LABEL_ALIGN(LABEL) align_labels_log
fc470718
R
773#endif
774
9e423e6d 775#ifndef LABEL_ALIGN_MAX_SKIP
efa3896a 776#define LABEL_ALIGN_MAX_SKIP (align_labels-1)
9e423e6d
JW
777#endif
778
fc470718 779#ifndef LOOP_ALIGN
efa3896a 780#define LOOP_ALIGN(LABEL) align_loops_log
fc470718
R
781#endif
782
9e423e6d 783#ifndef LOOP_ALIGN_MAX_SKIP
efa3896a 784#define LOOP_ALIGN_MAX_SKIP (align_loops-1)
9e423e6d
JW
785#endif
786
fc470718 787#ifndef LABEL_ALIGN_AFTER_BARRIER
340f7e7c 788#define LABEL_ALIGN_AFTER_BARRIER(LABEL) 0
fc470718
R
789#endif
790
9e423e6d 791#ifndef LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP
247a370b
JH
792#define LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP 0
793#endif
794
795#ifndef JUMP_ALIGN
796#define JUMP_ALIGN(LABEL) align_jumps_log
797#endif
798
799#ifndef JUMP_ALIGN_MAX_SKIP
800#define JUMP_ALIGN_MAX_SKIP (align_jumps-1)
9e423e6d
JW
801#endif
802
fc470718 803#ifndef ADDR_VEC_ALIGN
ca3075bd 804static int
fc470718
R
805final_addr_vec_align (addr_vec)
806 rtx addr_vec;
807{
2a841588 808 int align = GET_MODE_SIZE (GET_MODE (PATTERN (addr_vec)));
fc470718
R
809
810 if (align > BIGGEST_ALIGNMENT / BITS_PER_UNIT)
811 align = BIGGEST_ALIGNMENT / BITS_PER_UNIT;
2a841588 812 return exact_log2 (align);
fc470718
R
813
814}
f5d927c0 815
fc470718
R
816#define ADDR_VEC_ALIGN(ADDR_VEC) final_addr_vec_align (ADDR_VEC)
817#endif
818
819#ifndef INSN_LENGTH_ALIGNMENT
820#define INSN_LENGTH_ALIGNMENT(INSN) length_unit_log
821#endif
822
fc470718
R
823#define INSN_SHUID(INSN) (uid_shuid[INSN_UID (INSN)])
824
de7987a6 825static int min_labelno, max_labelno;
fc470718
R
826
827#define LABEL_TO_ALIGNMENT(LABEL) \
9e423e6d
JW
828 (label_align[CODE_LABEL_NUMBER (LABEL) - min_labelno].alignment)
829
830#define LABEL_TO_MAX_SKIP(LABEL) \
831 (label_align[CODE_LABEL_NUMBER (LABEL) - min_labelno].max_skip)
fc470718
R
832
833/* For the benefit of port specific code do this also as a function. */
f5d927c0 834
fc470718
R
835int
836label_to_alignment (label)
837 rtx label;
838{
839 return LABEL_TO_ALIGNMENT (label);
840}
841
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.
856
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. */
862
fc470718
R
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. */
f5d927c0 870
ca3075bd 871static int
687d0ab6 872align_fuzz (start, end, known_align_log, growth)
fc470718
R
873 rtx start, end;
874 int known_align_log;
875 unsigned growth;
876{
877 int uid = INSN_UID (start);
878 rtx align_label;
879 int known_align = 1 << known_align_log;
880 int end_shuid = INSN_SHUID (end);
881 int fuzz = 0;
882
883 for (align_label = uid_align[uid]; align_label; align_label = uid_align[uid])
884 {
885 int align_addr, new_align;
886
887 uid = INSN_UID (align_label);
9d98a694 888 align_addr = INSN_ADDRESSES (uid) - insn_lengths[uid];
fc470718
R
889 if (uid_shuid[uid] > end_shuid)
890 break;
891 known_align_log = LABEL_TO_ALIGNMENT (align_label);
892 new_align = 1 << known_align_log;
893 if (new_align < known_align)
894 continue;
895 fuzz += (-align_addr ^ growth) & (new_align - known_align);
896 known_align = new_align;
897 }
898 return fuzz;
899}
900
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. */
f5d927c0 912
fc470718
R
913int
914insn_current_reference_address (branch)
915 rtx branch;
916{
5527bf14
RH
917 rtx dest, seq;
918 int seq_uid;
919
920 if (! INSN_ADDRESSES_SET_P ())
921 return 0;
922
923 seq = NEXT_INSN (PREV_INSN (branch));
924 seq_uid = INSN_UID (seq);
fc470718
R
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);
5527bf14 933
b9f22704 934 /* BRANCH has no proper alignment chain set, so use SEQ.
afc6898e
BS
935 BRANCH also has no INSN_SHUID. */
936 if (INSN_SHUID (seq) < INSN_SHUID (dest))
fc470718 937 {
f5d927c0 938 /* Forward branch. */
fc470718 939 return (insn_last_address + insn_lengths[seq_uid]
26024475 940 - align_fuzz (seq, dest, length_unit_log, ~0));
fc470718
R
941 }
942 else
943 {
f5d927c0 944 /* Backward branch. */
fc470718 945 return (insn_current_address
923f7cf9 946 + align_fuzz (dest, seq, length_unit_log, ~0));
fc470718
R
947 }
948}
949#endif /* HAVE_ATTR_length */
950\f
247a370b
JH
951void
952compute_alignments ()
953{
954 int i;
955 int log, max_skip, max_log;
956
957 if (label_align)
958 {
959 free (label_align);
960 label_align = 0;
961 }
962
963 max_labelno = max_label_num ();
964 min_labelno = get_first_label_num ();
965 label_align = (struct label_alignment *)
966 xcalloc (max_labelno - min_labelno + 1, sizeof (struct label_alignment));
967
968 /* If not optimizing or optimizing for size, don't assign any alignments. */
ba712955 969 if (! optimize || optimize_size)
247a370b
JH
970 return;
971
972 for (i = 0; i < n_basic_blocks; i++)
973 {
974 basic_block bb = BASIC_BLOCK (i);
975 rtx label = bb->head;
976 int fallthru_frequency = 0, branch_frequency = 0, has_fallthru = 0;
977 edge e;
978
979 if (GET_CODE (label) != CODE_LABEL)
980 continue;
981 max_log = LABEL_ALIGN (label);
982 max_skip = LABEL_ALIGN_MAX_SKIP;
983
984 for (e = bb->pred; e; e = e->pred_next)
985 {
986 if (e->flags & EDGE_FALLTHRU)
987 has_fallthru = 1, fallthru_frequency += EDGE_FREQUENCY (e);
988 else
989 branch_frequency += EDGE_FREQUENCY (e);
990 }
991
992 /* There are two purposes to align block with no fallthru incomming edge:
993 1) to avoid fetch stalls when branch destination is near cache boundary
994 2) to improve cache effciency in case the previous block is not executed
995 (so it does not need to be in the cache).
996
997 We to catch first case, we align frequently executed blocks.
998 To catch the second, we align blocks that are executed more frequently
999 than the predecesor and the predecesor is likely to not be executed
1000 when function is called. */
1001
1002 if (!has_fallthru
1003 && (branch_frequency > BB_FREQ_MAX / 10
1004 || (bb->frequency > BASIC_BLOCK (i - 1)->frequency * 10
1005 && (BASIC_BLOCK (i - 1)->frequency
1006 <= ENTRY_BLOCK_PTR->frequency / 2))))
1007 {
1008 log = JUMP_ALIGN (label);
1009 if (max_log < log)
1010 {
1011 max_log = log;
1012 max_skip = JUMP_ALIGN_MAX_SKIP;
1013 }
1014 }
1015 /* In case block is frequent and reached mostly by non-fallthru edge,
1016 align it. It is most likely an first block of loop. */
1017 if (has_fallthru
1018 && branch_frequency + fallthru_frequency > BB_FREQ_MAX / 10
1019 && branch_frequency > fallthru_frequency * 5)
1020 {
1021 log = LOOP_ALIGN (label);
1022 if (max_log < log)
1023 {
1024 max_log = log;
1025 max_skip = LOOP_ALIGN_MAX_SKIP;
1026 }
1027 }
1028 LABEL_TO_ALIGNMENT (label) = max_log;
1029 LABEL_TO_MAX_SKIP (label) = max_skip;
1030 }
1031}
1032\f
3cf2715d
DE
1033/* Make a pass over all insns and compute their actual lengths by shortening
1034 any branches of variable length if possible. */
1035
1036/* Give a default value for the lowest address in a function. */
1037
1038#ifndef FIRST_INSN_ADDRESS
1039#define FIRST_INSN_ADDRESS 0
1040#endif
1041
fc470718
R
1042/* shorten_branches might be called multiple times: for example, the SH
1043 port splits out-of-range conditional branches in MACHINE_DEPENDENT_REORG.
1044 In order to do this, it needs proper length information, which it obtains
1045 by calling shorten_branches. This cannot be collapsed with
1046 shorten_branches itself into a single pass unless we also want to intergate
1047 reorg.c, since the branch splitting exposes new instructions with delay
1048 slots. */
1049
3cf2715d
DE
1050void
1051shorten_branches (first)
7bdb32b9 1052 rtx first ATTRIBUTE_UNUSED;
3cf2715d 1053{
3cf2715d 1054 rtx insn;
fc470718
R
1055 int max_uid;
1056 int i;
fc470718 1057 int max_log;
9e423e6d 1058 int max_skip;
fc470718
R
1059#ifdef HAVE_ATTR_length
1060#define MAX_CODE_ALIGN 16
1061 rtx seq;
3cf2715d 1062 int something_changed = 1;
3cf2715d
DE
1063 char *varying_length;
1064 rtx body;
1065 int uid;
fc470718 1066 rtx align_tab[MAX_CODE_ALIGN];
3cf2715d 1067
fc470718 1068#endif
3d14e82f 1069
3446405d
JH
1070 /* Compute maximum UID and allocate label_align / uid_shuid. */
1071 max_uid = get_max_uid ();
d9b6874b 1072
3446405d 1073 uid_shuid = (int *) xmalloc (max_uid * sizeof *uid_shuid);
25e22dc0 1074
247a370b
JH
1075 if (max_labelno != max_label_num ())
1076 {
1077 int old = max_labelno;
1078 int n_labels;
1079 int n_old_labels;
1080
1081 max_labelno = max_label_num ();
1082
1083 n_labels = max_labelno - min_labelno + 1;
1084 n_old_labels = old - min_labelno + 1;
1085
1086 label_align = (struct label_alignment *) xrealloc
1087 (label_align, n_labels * sizeof (struct label_alignment));
1088
1089 /* Range of labels grows monotonically in the function. Abort here
1090 means that the initialization of array got lost. */
1091 if (n_old_labels > n_labels)
1092 abort ();
1093
1094 memset (label_align + n_old_labels, 0,
1095 (n_labels - n_old_labels) * sizeof (struct label_alignment));
1096 }
1097
fc470718
R
1098 /* Initialize label_align and set up uid_shuid to be strictly
1099 monotonically rising with insn order. */
e2faec75
R
1100 /* We use max_log here to keep track of the maximum alignment we want to
1101 impose on the next CODE_LABEL (or the current one if we are processing
1102 the CODE_LABEL itself). */
f5d927c0 1103
9e423e6d
JW
1104 max_log = 0;
1105 max_skip = 0;
1106
1107 for (insn = get_insns (), i = 1; insn; insn = NEXT_INSN (insn))
fc470718
R
1108 {
1109 int log;
1110
1111 INSN_SHUID (insn) = i++;
2c3c49de 1112 if (INSN_P (insn))
e2faec75
R
1113 {
1114 /* reorg might make the first insn of a loop being run once only,
1115 and delete the label in front of it. Then we want to apply
1116 the loop alignment to the new label created by reorg, which
1117 is separated by the former loop start insn from the
1118 NOTE_INSN_LOOP_BEG. */
1119 }
fc470718
R
1120 else if (GET_CODE (insn) == CODE_LABEL)
1121 {
1122 rtx next;
247a370b
JH
1123
1124 /* Merge in alignments computed by compute_alignments. */
1125 log = LABEL_TO_ALIGNMENT (insn);
1126 if (max_log < log)
1127 {
1128 max_log = log;
1129 max_skip = LABEL_TO_MAX_SKIP (insn);
1130 }
fc470718
R
1131
1132 log = LABEL_ALIGN (insn);
1133 if (max_log < log)
9e423e6d
JW
1134 {
1135 max_log = log;
1136 max_skip = LABEL_ALIGN_MAX_SKIP;
1137 }
fc470718 1138 next = NEXT_INSN (insn);
75197b37
BS
1139 /* ADDR_VECs only take room if read-only data goes into the text
1140 section. */
1141 if (JUMP_TABLES_IN_TEXT_SECTION
1142#if !defined(READONLY_DATA_SECTION)
1143 || 1
fc470718 1144#endif
75197b37
BS
1145 )
1146 if (next && GET_CODE (next) == JUMP_INSN)
1147 {
1148 rtx nextbody = PATTERN (next);
1149 if (GET_CODE (nextbody) == ADDR_VEC
1150 || GET_CODE (nextbody) == ADDR_DIFF_VEC)
1151 {
1152 log = ADDR_VEC_ALIGN (next);
1153 if (max_log < log)
1154 {
1155 max_log = log;
1156 max_skip = LABEL_ALIGN_MAX_SKIP;
1157 }
1158 }
1159 }
fc470718 1160 LABEL_TO_ALIGNMENT (insn) = max_log;
9e423e6d 1161 LABEL_TO_MAX_SKIP (insn) = max_skip;
fc470718 1162 max_log = 0;
9e423e6d 1163 max_skip = 0;
fc470718
R
1164 }
1165 else if (GET_CODE (insn) == BARRIER)
1166 {
1167 rtx label;
1168
2c3c49de 1169 for (label = insn; label && ! INSN_P (label);
fc470718
R
1170 label = NEXT_INSN (label))
1171 if (GET_CODE (label) == CODE_LABEL)
1172 {
1173 log = LABEL_ALIGN_AFTER_BARRIER (insn);
1174 if (max_log < log)
9e423e6d
JW
1175 {
1176 max_log = log;
1177 max_skip = LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP;
1178 }
fc470718
R
1179 break;
1180 }
1181 }
fc470718
R
1182 }
1183#ifdef HAVE_ATTR_length
1184
1185 /* Allocate the rest of the arrays. */
fc470718 1186 insn_lengths = (short *) xmalloc (max_uid * sizeof (short));
ea3cbda5 1187 insn_lengths_max_uid = max_uid;
af035616
R
1188 /* Syntax errors can lead to labels being outside of the main insn stream.
1189 Initialize insn_addresses, so that we get reproducible results. */
9d98a694 1190 INSN_ADDRESSES_ALLOC (max_uid);
fc470718 1191
3de90026 1192 varying_length = (char *) xcalloc (max_uid, sizeof (char));
fc470718
R
1193
1194 /* Initialize uid_align. We scan instructions
1195 from end to start, and keep in align_tab[n] the last seen insn
1196 that does an alignment of at least n+1, i.e. the successor
1197 in the alignment chain for an insn that does / has a known
1198 alignment of n. */
3de90026 1199 uid_align = (rtx *) xcalloc (max_uid, sizeof *uid_align);
fc470718 1200
f5d927c0 1201 for (i = MAX_CODE_ALIGN; --i >= 0;)
fc470718
R
1202 align_tab[i] = NULL_RTX;
1203 seq = get_last_insn ();
33f7f353 1204 for (; seq; seq = PREV_INSN (seq))
fc470718
R
1205 {
1206 int uid = INSN_UID (seq);
1207 int log;
fc470718
R
1208 log = (GET_CODE (seq) == CODE_LABEL ? LABEL_TO_ALIGNMENT (seq) : 0);
1209 uid_align[uid] = align_tab[0];
fc470718
R
1210 if (log)
1211 {
1212 /* Found an alignment label. */
1213 uid_align[uid] = align_tab[log];
1214 for (i = log - 1; i >= 0; i--)
1215 align_tab[i] = seq;
1216 }
33f7f353
JR
1217 }
1218#ifdef CASE_VECTOR_SHORTEN_MODE
1219 if (optimize)
1220 {
1221 /* Look for ADDR_DIFF_VECs, and initialize their minimum and maximum
1222 label fields. */
1223
1224 int min_shuid = INSN_SHUID (get_insns ()) - 1;
1225 int max_shuid = INSN_SHUID (get_last_insn ()) + 1;
1226 int rel;
1227
1228 for (insn = first; insn != 0; insn = NEXT_INSN (insn))
fc470718 1229 {
33f7f353
JR
1230 rtx min_lab = NULL_RTX, max_lab = NULL_RTX, pat;
1231 int len, i, min, max, insn_shuid;
1232 int min_align;
1233 addr_diff_vec_flags flags;
1234
1235 if (GET_CODE (insn) != JUMP_INSN
1236 || GET_CODE (PATTERN (insn)) != ADDR_DIFF_VEC)
1237 continue;
1238 pat = PATTERN (insn);
1239 len = XVECLEN (pat, 1);
1240 if (len <= 0)
1241 abort ();
1242 min_align = MAX_CODE_ALIGN;
1243 for (min = max_shuid, max = min_shuid, i = len - 1; i >= 0; i--)
1244 {
1245 rtx lab = XEXP (XVECEXP (pat, 1, i), 0);
1246 int shuid = INSN_SHUID (lab);
1247 if (shuid < min)
1248 {
1249 min = shuid;
1250 min_lab = lab;
1251 }
1252 if (shuid > max)
1253 {
1254 max = shuid;
1255 max_lab = lab;
1256 }
1257 if (min_align > LABEL_TO_ALIGNMENT (lab))
1258 min_align = LABEL_TO_ALIGNMENT (lab);
1259 }
1260 XEXP (pat, 2) = gen_rtx_LABEL_REF (VOIDmode, min_lab);
1261 XEXP (pat, 3) = gen_rtx_LABEL_REF (VOIDmode, max_lab);
1262 insn_shuid = INSN_SHUID (insn);
1263 rel = INSN_SHUID (XEXP (XEXP (pat, 0), 0));
1264 flags.min_align = min_align;
1265 flags.base_after_vec = rel > insn_shuid;
1266 flags.min_after_vec = min > insn_shuid;
1267 flags.max_after_vec = max > insn_shuid;
1268 flags.min_after_base = min > rel;
1269 flags.max_after_base = max > rel;
1270 ADDR_DIFF_VEC_FLAGS (pat) = flags;
fc470718
R
1271 }
1272 }
33f7f353 1273#endif /* CASE_VECTOR_SHORTEN_MODE */
3cf2715d 1274
3cf2715d
DE
1275 /* Compute initial lengths, addresses, and varying flags for each insn. */
1276 for (insn_current_address = FIRST_INSN_ADDRESS, insn = first;
1277 insn != 0;
1278 insn_current_address += insn_lengths[uid], insn = NEXT_INSN (insn))
1279 {
1280 uid = INSN_UID (insn);
fc470718 1281
3cf2715d 1282 insn_lengths[uid] = 0;
fc470718
R
1283
1284 if (GET_CODE (insn) == CODE_LABEL)
1285 {
1286 int log = LABEL_TO_ALIGNMENT (insn);
1287 if (log)
1288 {
1289 int align = 1 << log;
ecb06768 1290 int new_address = (insn_current_address + align - 1) & -align;
fc470718 1291 insn_lengths[uid] = new_address - insn_current_address;
fc470718
R
1292 }
1293 }
1294
9d98a694 1295 INSN_ADDRESSES (uid) = insn_current_address;
f5d927c0 1296
3cf2715d
DE
1297 if (GET_CODE (insn) == NOTE || GET_CODE (insn) == BARRIER
1298 || GET_CODE (insn) == CODE_LABEL)
1299 continue;
04da53bd
R
1300 if (INSN_DELETED_P (insn))
1301 continue;
3cf2715d
DE
1302
1303 body = PATTERN (insn);
1304 if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
5a32a90c
JR
1305 {
1306 /* This only takes room if read-only data goes into the text
1307 section. */
75197b37
BS
1308 if (JUMP_TABLES_IN_TEXT_SECTION
1309#if !defined(READONLY_DATA_SECTION)
1310 || 1
1311#endif
1312 )
1313 insn_lengths[uid] = (XVECLEN (body,
1314 GET_CODE (body) == ADDR_DIFF_VEC)
1315 * GET_MODE_SIZE (GET_MODE (body)));
5a32a90c 1316 /* Alignment is handled by ADDR_VEC_ALIGN. */
5a32a90c 1317 }
a30caf5c 1318 else if (GET_CODE (body) == ASM_INPUT || asm_noperands (body) >= 0)
3cf2715d
DE
1319 insn_lengths[uid] = asm_insn_count (body) * insn_default_length (insn);
1320 else if (GET_CODE (body) == SEQUENCE)
1321 {
1322 int i;
1323 int const_delay_slots;
1324#ifdef DELAY_SLOTS
1325 const_delay_slots = const_num_delay_slots (XVECEXP (body, 0, 0));
1326#else
1327 const_delay_slots = 0;
1328#endif
1329 /* Inside a delay slot sequence, we do not do any branch shortening
1330 if the shortening could change the number of delay slots
0f41302f 1331 of the branch. */
3cf2715d
DE
1332 for (i = 0; i < XVECLEN (body, 0); i++)
1333 {
1334 rtx inner_insn = XVECEXP (body, 0, i);
1335 int inner_uid = INSN_UID (inner_insn);
1336 int inner_length;
1337
a30caf5c
DC
1338 if (GET_CODE (body) == ASM_INPUT
1339 || asm_noperands (PATTERN (XVECEXP (body, 0, i))) >= 0)
3cf2715d
DE
1340 inner_length = (asm_insn_count (PATTERN (inner_insn))
1341 * insn_default_length (inner_insn));
1342 else
1343 inner_length = insn_default_length (inner_insn);
f5d927c0 1344
3cf2715d
DE
1345 insn_lengths[inner_uid] = inner_length;
1346 if (const_delay_slots)
1347 {
1348 if ((varying_length[inner_uid]
1349 = insn_variable_length_p (inner_insn)) != 0)
1350 varying_length[uid] = 1;
9d98a694
AO
1351 INSN_ADDRESSES (inner_uid) = (insn_current_address
1352 + insn_lengths[uid]);
3cf2715d
DE
1353 }
1354 else
1355 varying_length[inner_uid] = 0;
1356 insn_lengths[uid] += inner_length;
1357 }
1358 }
1359 else if (GET_CODE (body) != USE && GET_CODE (body) != CLOBBER)
1360 {
1361 insn_lengths[uid] = insn_default_length (insn);
1362 varying_length[uid] = insn_variable_length_p (insn);
1363 }
1364
1365 /* If needed, do any adjustment. */
1366#ifdef ADJUST_INSN_LENGTH
1367 ADJUST_INSN_LENGTH (insn, insn_lengths[uid]);
04b6000c
VM
1368 if (insn_lengths[uid] < 0)
1369 fatal_insn ("Negative insn length", insn);
3cf2715d
DE
1370#endif
1371 }
1372
1373 /* Now loop over all the insns finding varying length insns. For each,
1374 get the current insn length. If it has changed, reflect the change.
1375 When nothing changes for a full pass, we are done. */
1376
1377 while (something_changed)
1378 {
1379 something_changed = 0;
fc470718 1380 insn_current_align = MAX_CODE_ALIGN - 1;
3cf2715d
DE
1381 for (insn_current_address = FIRST_INSN_ADDRESS, insn = first;
1382 insn != 0;
1383 insn = NEXT_INSN (insn))
1384 {
1385 int new_length;
b729186a 1386#ifdef ADJUST_INSN_LENGTH
3cf2715d 1387 int tmp_length;
b729186a 1388#endif
fc470718 1389 int length_align;
3cf2715d
DE
1390
1391 uid = INSN_UID (insn);
fc470718
R
1392
1393 if (GET_CODE (insn) == CODE_LABEL)
1394 {
1395 int log = LABEL_TO_ALIGNMENT (insn);
1396 if (log > insn_current_align)
1397 {
1398 int align = 1 << log;
ecb06768 1399 int new_address= (insn_current_address + align - 1) & -align;
fc470718
R
1400 insn_lengths[uid] = new_address - insn_current_address;
1401 insn_current_align = log;
1402 insn_current_address = new_address;
1403 }
1404 else
1405 insn_lengths[uid] = 0;
9d98a694 1406 INSN_ADDRESSES (uid) = insn_current_address;
fc470718
R
1407 continue;
1408 }
1409
1410 length_align = INSN_LENGTH_ALIGNMENT (insn);
1411 if (length_align < insn_current_align)
1412 insn_current_align = length_align;
1413
9d98a694
AO
1414 insn_last_address = INSN_ADDRESSES (uid);
1415 INSN_ADDRESSES (uid) = insn_current_address;
fc470718 1416
5e75ef4a 1417#ifdef CASE_VECTOR_SHORTEN_MODE
33f7f353
JR
1418 if (optimize && GET_CODE (insn) == JUMP_INSN
1419 && GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC)
1420 {
33f7f353
JR
1421 rtx body = PATTERN (insn);
1422 int old_length = insn_lengths[uid];
1423 rtx rel_lab = XEXP (XEXP (body, 0), 0);
1424 rtx min_lab = XEXP (XEXP (body, 2), 0);
1425 rtx max_lab = XEXP (XEXP (body, 3), 0);
1426 addr_diff_vec_flags flags = ADDR_DIFF_VEC_FLAGS (body);
9d98a694
AO
1427 int rel_addr = INSN_ADDRESSES (INSN_UID (rel_lab));
1428 int min_addr = INSN_ADDRESSES (INSN_UID (min_lab));
1429 int max_addr = INSN_ADDRESSES (INSN_UID (max_lab));
33f7f353
JR
1430 rtx prev;
1431 int rel_align = 0;
1432
1433 /* Try to find a known alignment for rel_lab. */
1434 for (prev = rel_lab;
1435 prev
1436 && ! insn_lengths[INSN_UID (prev)]
1437 && ! (varying_length[INSN_UID (prev)] & 1);
1438 prev = PREV_INSN (prev))
1439 if (varying_length[INSN_UID (prev)] & 2)
1440 {
1441 rel_align = LABEL_TO_ALIGNMENT (prev);
1442 break;
1443 }
1444
1445 /* See the comment on addr_diff_vec_flags in rtl.h for the
1446 meaning of the flags values. base: REL_LAB vec: INSN */
1447 /* Anything after INSN has still addresses from the last
1448 pass; adjust these so that they reflect our current
1449 estimate for this pass. */
1450 if (flags.base_after_vec)
1451 rel_addr += insn_current_address - insn_last_address;
1452 if (flags.min_after_vec)
1453 min_addr += insn_current_address - insn_last_address;
1454 if (flags.max_after_vec)
1455 max_addr += insn_current_address - insn_last_address;
1456 /* We want to know the worst case, i.e. lowest possible value
1457 for the offset of MIN_LAB. If MIN_LAB is after REL_LAB,
1458 its offset is positive, and we have to be wary of code shrink;
1459 otherwise, it is negative, and we have to be vary of code
1460 size increase. */
1461 if (flags.min_after_base)
1462 {
1463 /* If INSN is between REL_LAB and MIN_LAB, the size
1464 changes we are about to make can change the alignment
1465 within the observed offset, therefore we have to break
1466 it up into two parts that are independent. */
1467 if (! flags.base_after_vec && flags.min_after_vec)
1468 {
1469 min_addr -= align_fuzz (rel_lab, insn, rel_align, 0);
1470 min_addr -= align_fuzz (insn, min_lab, 0, 0);
1471 }
1472 else
1473 min_addr -= align_fuzz (rel_lab, min_lab, rel_align, 0);
1474 }
1475 else
1476 {
1477 if (flags.base_after_vec && ! flags.min_after_vec)
1478 {
1479 min_addr -= align_fuzz (min_lab, insn, 0, ~0);
1480 min_addr -= align_fuzz (insn, rel_lab, 0, ~0);
1481 }
1482 else
1483 min_addr -= align_fuzz (min_lab, rel_lab, 0, ~0);
1484 }
1485 /* Likewise, determine the highest lowest possible value
1486 for the offset of MAX_LAB. */
1487 if (flags.max_after_base)
1488 {
1489 if (! flags.base_after_vec && flags.max_after_vec)
1490 {
1491 max_addr += align_fuzz (rel_lab, insn, rel_align, ~0);
1492 max_addr += align_fuzz (insn, max_lab, 0, ~0);
1493 }
1494 else
1495 max_addr += align_fuzz (rel_lab, max_lab, rel_align, ~0);
1496 }
1497 else
1498 {
1499 if (flags.base_after_vec && ! flags.max_after_vec)
1500 {
1501 max_addr += align_fuzz (max_lab, insn, 0, 0);
1502 max_addr += align_fuzz (insn, rel_lab, 0, 0);
1503 }
1504 else
1505 max_addr += align_fuzz (max_lab, rel_lab, 0, 0);
1506 }
1507 PUT_MODE (body, CASE_VECTOR_SHORTEN_MODE (min_addr - rel_addr,
1508 max_addr - rel_addr,
1509 body));
75197b37
BS
1510 if (JUMP_TABLES_IN_TEXT_SECTION
1511#if !defined(READONLY_DATA_SECTION)
1512 || 1
33f7f353 1513#endif
75197b37
BS
1514 )
1515 {
1516 insn_lengths[uid]
1517 = (XVECLEN (body, 1) * GET_MODE_SIZE (GET_MODE (body)));
1518 insn_current_address += insn_lengths[uid];
1519 if (insn_lengths[uid] != old_length)
1520 something_changed = 1;
1521 }
1522
33f7f353 1523 continue;
33f7f353 1524 }
5e75ef4a
JL
1525#endif /* CASE_VECTOR_SHORTEN_MODE */
1526
1527 if (! (varying_length[uid]))
3cf2715d 1528 {
674fc07d
GS
1529 if (GET_CODE (insn) == INSN
1530 && GET_CODE (PATTERN (insn)) == SEQUENCE)
1531 {
1532 int i;
1533
1534 body = PATTERN (insn);
1535 for (i = 0; i < XVECLEN (body, 0); i++)
1536 {
1537 rtx inner_insn = XVECEXP (body, 0, i);
1538 int inner_uid = INSN_UID (inner_insn);
1539
1540 INSN_ADDRESSES (inner_uid) = insn_current_address;
1541
1542 insn_current_address += insn_lengths[inner_uid];
1543 }
1544 }
1545 else
1546 insn_current_address += insn_lengths[uid];
1547
3cf2715d
DE
1548 continue;
1549 }
674fc07d 1550
3cf2715d
DE
1551 if (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
1552 {
1553 int i;
f5d927c0 1554
3cf2715d
DE
1555 body = PATTERN (insn);
1556 new_length = 0;
1557 for (i = 0; i < XVECLEN (body, 0); i++)
1558 {
1559 rtx inner_insn = XVECEXP (body, 0, i);
1560 int inner_uid = INSN_UID (inner_insn);
1561 int inner_length;
1562
9d98a694 1563 INSN_ADDRESSES (inner_uid) = insn_current_address;
3cf2715d
DE
1564
1565 /* insn_current_length returns 0 for insns with a
1566 non-varying length. */
1567 if (! varying_length[inner_uid])
1568 inner_length = insn_lengths[inner_uid];
1569 else
1570 inner_length = insn_current_length (inner_insn);
1571
1572 if (inner_length != insn_lengths[inner_uid])
1573 {
1574 insn_lengths[inner_uid] = inner_length;
1575 something_changed = 1;
1576 }
1577 insn_current_address += insn_lengths[inner_uid];
1578 new_length += inner_length;
1579 }
1580 }
1581 else
1582 {
1583 new_length = insn_current_length (insn);
1584 insn_current_address += new_length;
1585 }
1586
3cf2715d
DE
1587#ifdef ADJUST_INSN_LENGTH
1588 /* If needed, do any adjustment. */
1589 tmp_length = new_length;
1590 ADJUST_INSN_LENGTH (insn, new_length);
1591 insn_current_address += (new_length - tmp_length);
3cf2715d
DE
1592#endif
1593
1594 if (new_length != insn_lengths[uid])
1595 {
1596 insn_lengths[uid] = new_length;
1597 something_changed = 1;
1598 }
1599 }
bb4aaf18
TG
1600 /* For a non-optimizing compile, do only a single pass. */
1601 if (!optimize)
1602 break;
3cf2715d 1603 }
fc470718
R
1604
1605 free (varying_length);
1606
3cf2715d
DE
1607#endif /* HAVE_ATTR_length */
1608}
1609
1610#ifdef HAVE_ATTR_length
1611/* Given the body of an INSN known to be generated by an ASM statement, return
1612 the number of machine instructions likely to be generated for this insn.
1613 This is used to compute its length. */
1614
1615static int
1616asm_insn_count (body)
1617 rtx body;
1618{
3cce094d 1619 const char *template;
3cf2715d
DE
1620 int count = 1;
1621
5d0930ea
DE
1622 if (GET_CODE (body) == ASM_INPUT)
1623 template = XSTR (body, 0);
1624 else
df4ae160 1625 template = decode_asm_operands (body, NULL, NULL, NULL, NULL);
5d0930ea 1626
f5d927c0
KH
1627 for (; *template; template++)
1628 if (IS_ASM_LOGICAL_LINE_SEPARATOR (*template) || *template == '\n')
3cf2715d
DE
1629 count++;
1630
1631 return count;
1632}
1633#endif
1634\f
1635/* Output assembler code for the start of a function,
1636 and initialize some of the variables in this file
1637 for the new function. The label for the function and associated
1638 assembler pseudo-ops have already been output in `assemble_start_function'.
1639
1640 FIRST is the first insn of the rtl for the function being compiled.
1641 FILE is the file to write assembler code to.
1642 OPTIMIZE is nonzero if we should eliminate redundant
1643 test and compare insns. */
1644
1645void
1646final_start_function (first, file, optimize)
1647 rtx first;
1648 FILE *file;
6a651371 1649 int optimize ATTRIBUTE_UNUSED;
3cf2715d
DE
1650{
1651 block_depth = 0;
1652
1653 this_is_asm_operands = 0;
1654
1655#ifdef NON_SAVING_SETJMP
1656 /* A function that calls setjmp should save and restore all the
1657 call-saved registers on a system where longjmp clobbers them. */
1658 if (NON_SAVING_SETJMP && current_function_calls_setjmp)
1659 {
1660 int i;
1661
1662 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
252f342a 1663 if (!call_used_regs[i])
3cf2715d
DE
1664 regs_ever_live[i] = 1;
1665 }
1666#endif
f5d927c0 1667
3cf2715d 1668 if (NOTE_LINE_NUMBER (first) != NOTE_INSN_DELETED)
653e276c
NB
1669 notice_source_line (first);
1670 high_block_linenum = high_function_linenum = last_linenum;
eac40081 1671
653e276c 1672 (*debug_hooks->begin_prologue) (last_linenum, last_filename);
d291dd49 1673
653e276c
NB
1674#if defined (DWARF2_UNWIND_INFO) || defined (IA64_UNWIND_INFO)
1675 if (write_symbols != DWARF2_DEBUG)
1676 dwarf2out_begin_prologue (0, NULL);
f5d927c0 1677#endif
3cf2715d
DE
1678
1679#ifdef LEAF_REG_REMAP
54ff41b7 1680 if (current_function_uses_only_leaf_regs)
3cf2715d
DE
1681 leaf_renumber_regs (first);
1682#endif
1683
1684 /* The Sun386i and perhaps other machines don't work right
1685 if the profiling code comes after the prologue. */
1686#ifdef PROFILE_BEFORE_PROLOGUE
1687 if (profile_flag)
1688 profile_function (file);
1689#endif /* PROFILE_BEFORE_PROLOGUE */
1690
0021b564
JM
1691#if defined (DWARF2_UNWIND_INFO) && defined (HAVE_prologue)
1692 if (dwarf2out_do_frame ())
1693 dwarf2out_frame_debug (NULL_RTX);
1694#endif
1695
18c038b9
MM
1696 /* If debugging, assign block numbers to all of the blocks in this
1697 function. */
1698 if (write_symbols)
1699 {
3ac79482 1700 remove_unnecessary_notes ();
a20612aa
RH
1701 reorder_blocks ();
1702 number_blocks (current_function_decl);
18c038b9
MM
1703 /* We never actually put out begin/end notes for the top-level
1704 block in the function. But, conceptually, that block is
1705 always needed. */
1706 TREE_ASM_WRITTEN (DECL_INITIAL (current_function_decl)) = 1;
1707 }
1708
3cf2715d 1709 /* First output the function prologue: code to set up the stack frame. */
f6897b10 1710 (*targetm.asm_out.function_prologue) (file, get_frame_size ());
3cf2715d 1711
3cf2715d
DE
1712 /* If the machine represents the prologue as RTL, the profiling code must
1713 be emitted when NOTE_INSN_PROLOGUE_END is scanned. */
1714#ifdef HAVE_prologue
1715 if (! HAVE_prologue)
1716#endif
1717 profile_after_prologue (file);
1718
1719 profile_label_no++;
1720
1721 /* If we are doing basic block profiling, remember a printable version
1722 of the function name. */
1723 if (profile_block_flag)
1724 {
f5d927c0
KH
1725 bb_func_label_num =
1726 add_bb_string ((*decl_printable_name) (current_function_decl, 2),
1727 FALSE);
3cf2715d
DE
1728 }
1729}
1730
1731static void
1732profile_after_prologue (file)
7bdb32b9 1733 FILE *file ATTRIBUTE_UNUSED;
3cf2715d
DE
1734{
1735#ifdef FUNCTION_BLOCK_PROFILER
1736 if (profile_block_flag)
1737 {
47431dff 1738 FUNCTION_BLOCK_PROFILER (file, count_basic_blocks);
3cf2715d
DE
1739 }
1740#endif /* FUNCTION_BLOCK_PROFILER */
1741
1742#ifndef PROFILE_BEFORE_PROLOGUE
1743 if (profile_flag)
1744 profile_function (file);
1745#endif /* not PROFILE_BEFORE_PROLOGUE */
1746}
1747
1748static void
1749profile_function (file)
1750 FILE *file;
1751{
dcacfa04 1752#ifndef NO_PROFILE_COUNTERS
9e2f9a7f 1753 int align = MIN (BIGGEST_ALIGNMENT, LONG_TYPE_SIZE);
dcacfa04 1754#endif
b729186a
JL
1755#if defined(ASM_OUTPUT_REG_PUSH)
1756#if defined(STRUCT_VALUE_INCOMING_REGNUM) || defined(STRUCT_VALUE_REGNUM)
3cf2715d 1757 int sval = current_function_returns_struct;
b729186a
JL
1758#endif
1759#if defined(STATIC_CHAIN_INCOMING_REGNUM) || defined(STATIC_CHAIN_REGNUM)
3cf2715d 1760 int cxt = current_function_needs_context;
b729186a
JL
1761#endif
1762#endif /* ASM_OUTPUT_REG_PUSH */
3cf2715d 1763
dcacfa04 1764#ifndef NO_PROFILE_COUNTERS
3cf2715d
DE
1765 data_section ();
1766 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
1767 ASM_OUTPUT_INTERNAL_LABEL (file, "LP", profile_label_no);
c8af3574 1768 assemble_integer (const0_rtx, LONG_TYPE_SIZE / BITS_PER_UNIT, align, 1);
dcacfa04 1769#endif
3cf2715d 1770
499df339 1771 function_section (current_function_decl);
3cf2715d 1772
65ed39df 1773#if defined(STRUCT_VALUE_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
3cf2715d
DE
1774 if (sval)
1775 ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_INCOMING_REGNUM);
1776#else
65ed39df 1777#if defined(STRUCT_VALUE_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
3cf2715d 1778 if (sval)
51723711
KG
1779 {
1780 ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_REGNUM);
1781 }
3cf2715d
DE
1782#endif
1783#endif
1784
65ed39df 1785#if defined(STATIC_CHAIN_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
3cf2715d
DE
1786 if (cxt)
1787 ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_INCOMING_REGNUM);
1788#else
65ed39df 1789#if defined(STATIC_CHAIN_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
3cf2715d 1790 if (cxt)
51723711
KG
1791 {
1792 ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_REGNUM);
1793 }
3cf2715d
DE
1794#endif
1795#endif
3cf2715d
DE
1796
1797 FUNCTION_PROFILER (file, profile_label_no);
1798
65ed39df 1799#if defined(STATIC_CHAIN_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
3cf2715d
DE
1800 if (cxt)
1801 ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_INCOMING_REGNUM);
1802#else
65ed39df 1803#if defined(STATIC_CHAIN_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
3cf2715d 1804 if (cxt)
51723711
KG
1805 {
1806 ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_REGNUM);
1807 }
3cf2715d
DE
1808#endif
1809#endif
3cf2715d 1810
65ed39df 1811#if defined(STRUCT_VALUE_INCOMING_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
3cf2715d
DE
1812 if (sval)
1813 ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_INCOMING_REGNUM);
1814#else
65ed39df 1815#if defined(STRUCT_VALUE_REGNUM) && defined(ASM_OUTPUT_REG_PUSH)
3cf2715d 1816 if (sval)
51723711
KG
1817 {
1818 ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_REGNUM);
1819 }
3cf2715d
DE
1820#endif
1821#endif
1822}
1823
1824/* Output assembler code for the end of a function.
1825 For clarity, args are same as those of `final_start_function'
1826 even though not all of them are needed. */
1827
1828void
e2a12aca 1829final_end_function ()
3cf2715d 1830{
be1bb652 1831 app_disable ();
3cf2715d 1832
e2a12aca 1833 (*debug_hooks->end_function) (high_function_linenum);
3cf2715d 1834
3cf2715d
DE
1835 /* Finally, output the function epilogue:
1836 code to restore the stack frame and return to the caller. */
e2a12aca 1837 (*targetm.asm_out.function_epilogue) (asm_out_file, get_frame_size ());
3cf2715d 1838
e2a12aca
NB
1839 /* And debug output. */
1840 (*debug_hooks->end_epilogue) ();
3cf2715d 1841
e2a12aca
NB
1842#if defined (DWARF2_UNWIND_INFO)
1843 if (write_symbols != DWARF2_DEBUG && dwarf2out_do_frame ())
9a666dda
JM
1844 dwarf2out_end_epilogue ();
1845#endif
1846
3cf2715d 1847 bb_func_label_num = -1; /* not in function, nuke label # */
3cf2715d
DE
1848}
1849\f
1850/* Add a block to the linked list that remembers the current line/file/function
1851 for basic block profiling. Emit the label in front of the basic block and
1852 the instructions that increment the count field. */
1853
1854static void
1855add_bb (file)
1856 FILE *file;
1857{
f5d927c0
KH
1858 struct bb_list *ptr =
1859 (struct bb_list *) permalloc (sizeof (struct bb_list));
3cf2715d
DE
1860
1861 /* Add basic block to linked list. */
1862 ptr->next = 0;
1863 ptr->line_num = last_linenum;
1864 ptr->file_label_num = bb_file_label_num;
1865 ptr->func_label_num = bb_func_label_num;
1866 *bb_tail = ptr;
1867 bb_tail = &ptr->next;
1868
1869 /* Enable the table of basic-block use counts
1870 to point at the code it applies to. */
1871 ASM_OUTPUT_INTERNAL_LABEL (file, "LPB", count_basic_blocks);
1872
1873 /* Before first insn of this basic block, increment the
1874 count of times it was entered. */
1875#ifdef BLOCK_PROFILER
1876 BLOCK_PROFILER (file, count_basic_blocks);
9e2f9a7f
DE
1877#endif
1878#ifdef HAVE_cc0
3cf2715d
DE
1879 CC_STATUS_INIT;
1880#endif
1881
1882 new_block = 0;
1883 count_basic_blocks++;
1884}
1885
1886/* Add a string to be used for basic block profiling. */
1887
1888static int
1889add_bb_string (string, perm_p)
9b3142b3 1890 const char *string;
3cf2715d
DE
1891 int perm_p;
1892{
1893 int len;
1894 struct bb_str *ptr = 0;
1895
1896 if (!string)
1897 {
1898 string = "<unknown>";
1899 perm_p = TRUE;
1900 }
1901
1902 /* Allocate a new string if the current string isn't permanent. If
1903 the string is permanent search for the same string in other
1904 allocations. */
1905
1906 len = strlen (string) + 1;
1907 if (!perm_p)
1908 {
1909 char *p = (char *) permalloc (len);
4e135bdd 1910 memcpy (p, string, len);
3cf2715d
DE
1911 string = p;
1912 }
1913 else
0f41302f 1914 for (ptr = sbb_head; ptr != (struct bb_str *) 0; ptr = ptr->next)
3cf2715d
DE
1915 if (ptr->string == string)
1916 break;
1917
1918 /* Allocate a new string block if we need to. */
1919 if (!ptr)
1920 {
1921 ptr = (struct bb_str *) permalloc (sizeof (*ptr));
1922 ptr->next = 0;
1923 ptr->length = len;
1924 ptr->label_num = sbb_label_num++;
1925 ptr->string = string;
1926 *sbb_tail = ptr;
1927 sbb_tail = &ptr->next;
1928 }
1929
1930 return ptr->label_num;
1931}
3cf2715d
DE
1932\f
1933/* Output assembler code for some insns: all or part of a function.
1934 For description of args, see `final_start_function', above.
1935
1936 PRESCAN is 1 if we are not really outputting,
1937 just scanning as if we were outputting.
1938 Prescanning deletes and rearranges insns just like ordinary output.
1939 PRESCAN is -2 if we are outputting after having prescanned.
1940 In this case, don't try to delete or rearrange insns
1941 because that has already been done.
1942 Prescanning is done only on certain machines. */
1943
1944void
1945final (first, file, optimize, prescan)
1946 rtx first;
1947 FILE *file;
1948 int optimize;
1949 int prescan;
1950{
1951 register rtx insn;
1952 int max_line = 0;
a8c3510c 1953 int max_uid = 0;
3cf2715d
DE
1954
1955 last_ignored_compare = 0;
1956 new_block = 1;
1957
1958 /* Make a map indicating which line numbers appear in this function.
1959 When producing SDB debugging info, delete troublesome line number
1960 notes from inlined functions in other files as well as duplicate
1961 line number notes. */
1962#ifdef SDB_DEBUGGING_INFO
1963 if (write_symbols == SDB_DEBUG)
1964 {
1965 rtx last = 0;
1966 for (insn = first; insn; insn = NEXT_INSN (insn))
1967 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
1968 {
1969 if ((RTX_INTEGRATED_P (insn)
1970 && strcmp (NOTE_SOURCE_FILE (insn), main_input_filename) != 0)
1971 || (last != 0
1972 && NOTE_LINE_NUMBER (insn) == NOTE_LINE_NUMBER (last)
1973 && NOTE_SOURCE_FILE (insn) == NOTE_SOURCE_FILE (last)))
1974 {
1975 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
1976 NOTE_SOURCE_FILE (insn) = 0;
1977 continue;
1978 }
1979 last = insn;
1980 if (NOTE_LINE_NUMBER (insn) > max_line)
1981 max_line = NOTE_LINE_NUMBER (insn);
1982 }
1983 }
1984 else
1985#endif
1986 {
1987 for (insn = first; insn; insn = NEXT_INSN (insn))
1988 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > max_line)
1989 max_line = NOTE_LINE_NUMBER (insn);
1990 }
1991
bedda2da 1992 line_note_exists = (char *) xcalloc (max_line + 1, sizeof (char));
3cf2715d
DE
1993
1994 for (insn = first; insn; insn = NEXT_INSN (insn))
a8c3510c
AM
1995 {
1996 if (INSN_UID (insn) > max_uid) /* find largest UID */
f5d927c0 1997 max_uid = INSN_UID (insn);
a8c3510c 1998 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
f5d927c0 1999 line_note_exists[NOTE_LINE_NUMBER (insn)] = 1;
9ef4c6ef
JC
2000#ifdef HAVE_cc0
2001 /* If CC tracking across branches is enabled, record the insn which
2002 jumps to each branch only reached from one place. */
7ad7f828 2003 if (optimize && GET_CODE (insn) == JUMP_INSN)
9ef4c6ef
JC
2004 {
2005 rtx lab = JUMP_LABEL (insn);
2006 if (lab && LABEL_NUSES (lab) == 1)
2007 {
2008 LABEL_REFS (lab) = insn;
2009 }
2010 }
2011#endif
a8c3510c
AM
2012 }
2013
3cf2715d
DE
2014 init_recog ();
2015
2016 CC_STATUS_INIT;
2017
2018 /* Output the insns. */
2019 for (insn = NEXT_INSN (first); insn;)
2f16edb1
TG
2020 {
2021#ifdef HAVE_ATTR_length
b9f22704 2022 if ((unsigned) INSN_UID (insn) >= INSN_ADDRESSES_SIZE ())
0ac76ad9
RH
2023 {
2024#ifdef STACK_REGS
2025 /* Irritatingly, the reg-stack pass is creating new instructions
2026 and because of REG_DEAD note abuse it has to run after
2027 shorten_branches. Fake address of -1 then. */
2028 insn_current_address = -1;
2029#else
2030 /* This can be triggered by bugs elsewhere in the compiler if
2031 new insns are created after init_insn_lengths is called. */
2032 abort ();
2f16edb1 2033#endif
0ac76ad9
RH
2034 }
2035 else
9d98a694 2036 insn_current_address = INSN_ADDRESSES (INSN_UID (insn));
0ac76ad9
RH
2037#endif /* HAVE_ATTR_length */
2038
2f16edb1
TG
2039 insn = final_scan_insn (insn, file, optimize, prescan, 0);
2040 }
3cf2715d
DE
2041
2042 /* Do basic-block profiling here
2043 if the last insn was a conditional branch. */
2044 if (profile_block_flag && new_block)
2045 add_bb (file);
a8c3510c 2046
bedda2da
MM
2047 free (line_note_exists);
2048 line_note_exists = NULL;
3cf2715d
DE
2049}
2050\f
4bbf910e
RH
2051const char *
2052get_insn_template (code, insn)
2053 int code;
2054 rtx insn;
2055{
2056 const void *output = insn_data[code].output;
2057 switch (insn_data[code].output_format)
2058 {
2059 case INSN_OUTPUT_FORMAT_SINGLE:
2060 return (const char *) output;
2061 case INSN_OUTPUT_FORMAT_MULTI:
f5d927c0 2062 return ((const char *const *) output)[which_alternative];
4bbf910e
RH
2063 case INSN_OUTPUT_FORMAT_FUNCTION:
2064 if (insn == NULL)
2065 abort ();
f5d927c0 2066 return (*(insn_output_fn) output) (recog_data.operand, insn);
4bbf910e
RH
2067
2068 default:
2069 abort ();
2070 }
2071}
f5d927c0 2072
3cf2715d
DE
2073/* The final scan for one insn, INSN.
2074 Args are same as in `final', except that INSN
2075 is the insn being scanned.
2076 Value returned is the next insn to be scanned.
2077
2078 NOPEEPHOLES is the flag to disallow peephole processing (currently
2079 used for within delayed branch sequence output). */
2080
2081rtx
2082final_scan_insn (insn, file, optimize, prescan, nopeepholes)
2083 rtx insn;
2084 FILE *file;
272df862 2085 int optimize ATTRIBUTE_UNUSED;
3cf2715d 2086 int prescan;
272df862 2087 int nopeepholes ATTRIBUTE_UNUSED;
3cf2715d 2088{
90ca38bb
MM
2089#ifdef HAVE_cc0
2090 rtx set;
2091#endif
2092
3cf2715d
DE
2093 insn_counter++;
2094
2095 /* Ignore deleted insns. These can occur when we split insns (due to a
2096 template of "#") while not optimizing. */
2097 if (INSN_DELETED_P (insn))
2098 return NEXT_INSN (insn);
2099
2100 switch (GET_CODE (insn))
2101 {
2102 case NOTE:
2103 if (prescan > 0)
2104 break;
2105
be1bb652
RH
2106 switch (NOTE_LINE_NUMBER (insn))
2107 {
2108 case NOTE_INSN_DELETED:
2109 case NOTE_INSN_LOOP_BEG:
2110 case NOTE_INSN_LOOP_END:
2111 case NOTE_INSN_LOOP_CONT:
2112 case NOTE_INSN_LOOP_VTOP:
2113 case NOTE_INSN_FUNCTION_END:
be1bb652
RH
2114 case NOTE_INSN_REPEATED_LINE_NUMBER:
2115 case NOTE_INSN_RANGE_BEG:
2116 case NOTE_INSN_RANGE_END:
2117 case NOTE_INSN_LIVE:
2118 case NOTE_INSN_EXPECTED_VALUE:
2119 break;
3cf2715d 2120
be1bb652 2121 case NOTE_INSN_BASIC_BLOCK:
ad0fc698
JW
2122#ifdef IA64_UNWIND_INFO
2123 IA64_UNWIND_EMIT (asm_out_file, insn);
2124#endif
be1bb652
RH
2125 if (flag_debug_asm)
2126 fprintf (asm_out_file, "\t%s basic block %d\n",
2127 ASM_COMMENT_START, NOTE_BASIC_BLOCK (insn)->index);
2128 break;
3cf2715d 2129
be1bb652 2130 case NOTE_INSN_EH_REGION_BEG:
52a11cbf
RH
2131 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LEHB",
2132 NOTE_EH_HANDLER (insn));
3d195391 2133 break;
3d195391 2134
be1bb652 2135 case NOTE_INSN_EH_REGION_END:
52a11cbf
RH
2136 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LEHE",
2137 NOTE_EH_HANDLER (insn));
3d195391 2138 break;
3d195391 2139
be1bb652 2140 case NOTE_INSN_PROLOGUE_END:
b9f22704 2141 (*targetm.asm_out.function_end_prologue) (file);
3cf2715d
DE
2142 profile_after_prologue (file);
2143 break;
3cf2715d 2144
be1bb652 2145 case NOTE_INSN_EPILOGUE_BEG:
b9f22704 2146 (*targetm.asm_out.function_begin_epilogue) (file);
be1bb652 2147 break;
3cf2715d 2148
be1bb652 2149 case NOTE_INSN_FUNCTION_BEG:
653e276c
NB
2150 app_disable ();
2151 (*debug_hooks->end_prologue) (last_linenum);
3cf2715d 2152 break;
be1bb652
RH
2153
2154 case NOTE_INSN_BLOCK_BEG:
2155 if (debug_info_level == DINFO_LEVEL_NORMAL
3cf2715d 2156 || debug_info_level == DINFO_LEVEL_VERBOSE
3cf2715d 2157 || write_symbols == DWARF_DEBUG
be1bb652
RH
2158 || write_symbols == DWARF2_DEBUG)
2159 {
2160 int n = BLOCK_NUMBER (NOTE_BLOCK (insn));
3cf2715d 2161
be1bb652
RH
2162 app_disable ();
2163 ++block_depth;
2164 high_block_linenum = last_linenum;
eac40081 2165
a5a42b92 2166 /* Output debugging info about the symbol-block beginning. */
e2a12aca 2167 (*debug_hooks->begin_block) (last_linenum, n);
3cf2715d 2168
be1bb652
RH
2169 /* Mark this block as output. */
2170 TREE_ASM_WRITTEN (NOTE_BLOCK (insn)) = 1;
2171 }
2172 break;
18c038b9 2173
be1bb652
RH
2174 case NOTE_INSN_BLOCK_END:
2175 if (debug_info_level == DINFO_LEVEL_NORMAL
2176 || debug_info_level == DINFO_LEVEL_VERBOSE
2177 || write_symbols == DWARF_DEBUG
2178 || write_symbols == DWARF2_DEBUG)
2179 {
2180 int n = BLOCK_NUMBER (NOTE_BLOCK (insn));
3cf2715d 2181
be1bb652
RH
2182 app_disable ();
2183
2184 /* End of a symbol-block. */
2185 --block_depth;
2186 if (block_depth < 0)
2187 abort ();
3cf2715d 2188
e2a12aca 2189 (*debug_hooks->end_block) (high_block_linenum, n);
be1bb652
RH
2190 }
2191 break;
2192
2193 case NOTE_INSN_DELETED_LABEL:
2194 /* Emit the label. We may have deleted the CODE_LABEL because
2195 the label could be proved to be unreachable, though still
2196 referenced (in the form of having its address taken. */
8215347e 2197 ASM_OUTPUT_DEBUG_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
be1bb652 2198 break;
3cf2715d 2199
21835d9b
JJ
2200 case 0:
2201 break;
2202
be1bb652
RH
2203 default:
2204 if (NOTE_LINE_NUMBER (insn) <= 0)
2205 abort ();
3cf2715d 2206
be1bb652
RH
2207 /* This note is a line-number. */
2208 {
2209 register rtx note;
2210 int note_after = 0;
2211
f5d927c0 2212 /* If there is anything real after this note, output it.
be1bb652
RH
2213 If another line note follows, omit this one. */
2214 for (note = NEXT_INSN (insn); note; note = NEXT_INSN (note))
2215 {
2216 if (GET_CODE (note) != NOTE && GET_CODE (note) != CODE_LABEL)
3cf2715d 2217 break;
3cf2715d 2218
be1bb652
RH
2219 /* These types of notes can be significant
2220 so make sure the preceding line number stays. */
2221 else if (GET_CODE (note) == NOTE
2222 && (NOTE_LINE_NUMBER (note) == NOTE_INSN_BLOCK_BEG
2223 || NOTE_LINE_NUMBER (note) == NOTE_INSN_BLOCK_END
2224 || NOTE_LINE_NUMBER (note) == NOTE_INSN_FUNCTION_BEG))
2225 break;
2226 else if (GET_CODE (note) == NOTE && NOTE_LINE_NUMBER (note) > 0)
2227 {
2228 /* Another line note follows; we can delete this note
2229 if no intervening line numbers have notes elsewhere. */
2230 int num;
2231 for (num = NOTE_LINE_NUMBER (insn) + 1;
2232 num < NOTE_LINE_NUMBER (note);
2233 num++)
2234 if (line_note_exists[num])
2235 break;
2236
2237 if (num >= NOTE_LINE_NUMBER (note))
2238 note_after = 1;
2239 break;
2240 }
2241 }
2242
2243 /* Output this line note if it is the first or the last line
2244 note in a row. */
2245 if (!note_after)
653e276c
NB
2246 {
2247 notice_source_line (insn);
2248 (*debug_hooks->source_line) (last_linenum, last_filename);
2249 }
be1bb652 2250 }
f5d927c0 2251 break;
3cf2715d
DE
2252 }
2253 break;
2254
2255 case BARRIER:
f73ad30e 2256#if defined (DWARF2_UNWIND_INFO)
fbfa55b0 2257 if (dwarf2out_do_frame ())
be1bb652 2258 dwarf2out_frame_debug (insn);
3cf2715d
DE
2259#endif
2260 break;
2261
2262 case CODE_LABEL:
1dd8faa8
R
2263 /* The target port might emit labels in the output function for
2264 some insn, e.g. sh.c output_branchy_insn. */
de7987a6
R
2265 if (CODE_LABEL_NUMBER (insn) <= max_labelno)
2266 {
2267 int align = LABEL_TO_ALIGNMENT (insn);
50b2596f 2268#ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
9e423e6d 2269 int max_skip = LABEL_TO_MAX_SKIP (insn);
50b2596f 2270#endif
fc470718 2271
1dd8faa8 2272 if (align && NEXT_INSN (insn))
9e423e6d
JW
2273#ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
2274 ASM_OUTPUT_MAX_SKIP_ALIGN (file, align, max_skip);
2275#else
de7987a6 2276 ASM_OUTPUT_ALIGN (file, align);
9e423e6d 2277#endif
de7987a6 2278 }
9ef4c6ef 2279#ifdef HAVE_cc0
3cf2715d 2280 CC_STATUS_INIT;
9ef4c6ef
JC
2281 /* If this label is reached from only one place, set the condition
2282 codes from the instruction just before the branch. */
7ad7f828
JC
2283
2284 /* Disabled because some insns set cc_status in the C output code
2285 and NOTICE_UPDATE_CC alone can set incorrect status. */
2286 if (0 /* optimize && LABEL_NUSES (insn) == 1*/)
9ef4c6ef
JC
2287 {
2288 rtx jump = LABEL_REFS (insn);
2289 rtx barrier = prev_nonnote_insn (insn);
2290 rtx prev;
2291 /* If the LABEL_REFS field of this label has been set to point
2292 at a branch, the predecessor of the branch is a regular
2293 insn, and that branch is the only way to reach this label,
2294 set the condition codes based on the branch and its
2295 predecessor. */
2296 if (barrier && GET_CODE (barrier) == BARRIER
2297 && jump && GET_CODE (jump) == JUMP_INSN
2298 && (prev = prev_nonnote_insn (jump))
2299 && GET_CODE (prev) == INSN)
2300 {
2301 NOTICE_UPDATE_CC (PATTERN (prev), prev);
2302 NOTICE_UPDATE_CC (PATTERN (jump), jump);
2303 }
2304 }
2305#endif
3cf2715d
DE
2306 if (prescan > 0)
2307 break;
2308 new_block = 1;
03ffa171
RK
2309
2310#ifdef FINAL_PRESCAN_LABEL
df4ae160 2311 FINAL_PRESCAN_INSN (insn, NULL, 0);
03ffa171
RK
2312#endif
2313
e1772ac0
NB
2314 if (LABEL_NAME (insn))
2315 (*debug_hooks->label) (insn);
2316
3cf2715d
DE
2317 if (app_on)
2318 {
51723711 2319 fputs (ASM_APP_OFF, file);
3cf2715d
DE
2320 app_on = 0;
2321 }
2322 if (NEXT_INSN (insn) != 0
2323 && GET_CODE (NEXT_INSN (insn)) == JUMP_INSN)
2324 {
2325 rtx nextbody = PATTERN (NEXT_INSN (insn));
2326
2327 /* If this label is followed by a jump-table,
2328 make sure we put the label in the read-only section. Also
2329 possibly write the label and jump table together. */
2330
2331 if (GET_CODE (nextbody) == ADDR_VEC
2332 || GET_CODE (nextbody) == ADDR_DIFF_VEC)
2333 {
e0d80184
DM
2334#if defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC)
2335 /* In this case, the case vector is being moved by the
2336 target, so don't output the label at all. Leave that
2337 to the back end macros. */
2338#else
75197b37
BS
2339 if (! JUMP_TABLES_IN_TEXT_SECTION)
2340 {
340f7e7c
RH
2341 int log_align;
2342
75197b37 2343 readonly_data_section ();
340f7e7c
RH
2344
2345#ifdef ADDR_VEC_ALIGN
2346 log_align = ADDR_VEC_ALIGN (nextbody);
2347#else
2348 log_align = exact_log2 (BIGGEST_ALIGNMENT / BITS_PER_UNIT);
2349#endif
2350 ASM_OUTPUT_ALIGN (file, log_align);
75197b37
BS
2351 }
2352 else
2353 function_section (current_function_decl);
2354
3cf2715d
DE
2355#ifdef ASM_OUTPUT_CASE_LABEL
2356 ASM_OUTPUT_CASE_LABEL (file, "L", CODE_LABEL_NUMBER (insn),
2357 NEXT_INSN (insn));
2358#else
f5d927c0
KH
2359 if (LABEL_ALTERNATE_NAME (insn))
2360 ASM_OUTPUT_ALTERNATE_LABEL_NAME (file, insn);
2361 else
2362 ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
e0d80184 2363#endif
3cf2715d
DE
2364#endif
2365 break;
2366 }
2367 }
8cd0faaf 2368 if (LABEL_ALTERNATE_NAME (insn))
f5d927c0 2369 ASM_OUTPUT_ALTERNATE_LABEL_NAME (file, insn);
8cd0faaf 2370 else
f5d927c0 2371 ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
3cf2715d
DE
2372 break;
2373
2374 default:
2375 {
51723711 2376 register rtx body = PATTERN (insn);
3cf2715d 2377 int insn_code_number;
9b3142b3 2378 const char *template;
b729186a 2379#ifdef HAVE_cc0
3cf2715d 2380 rtx note;
b729186a 2381#endif
3cf2715d
DE
2382
2383 /* An INSN, JUMP_INSN or CALL_INSN.
2384 First check for special kinds that recog doesn't recognize. */
2385
2386 if (GET_CODE (body) == USE /* These are just declarations */
2387 || GET_CODE (body) == CLOBBER)
2388 break;
2389
2390#ifdef HAVE_cc0
2391 /* If there is a REG_CC_SETTER note on this insn, it means that
2392 the setting of the condition code was done in the delay slot
2393 of the insn that branched here. So recover the cc status
2394 from the insn that set it. */
2395
2396 note = find_reg_note (insn, REG_CC_SETTER, NULL_RTX);
2397 if (note)
2398 {
2399 NOTICE_UPDATE_CC (PATTERN (XEXP (note, 0)), XEXP (note, 0));
2400 cc_prev_status = cc_status;
2401 }
2402#endif
2403
2404 /* Detect insns that are really jump-tables
2405 and output them as such. */
2406
2407 if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
2408 {
7f7f8214 2409#if !(defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC))
3cf2715d 2410 register int vlen, idx;
7f7f8214 2411#endif
3cf2715d
DE
2412
2413 if (prescan > 0)
2414 break;
2415
2416 if (app_on)
2417 {
51723711 2418 fputs (ASM_APP_OFF, file);
3cf2715d
DE
2419 app_on = 0;
2420 }
2421
e0d80184
DM
2422#if defined(ASM_OUTPUT_ADDR_VEC) || defined(ASM_OUTPUT_ADDR_DIFF_VEC)
2423 if (GET_CODE (body) == ADDR_VEC)
2424 {
2425#ifdef ASM_OUTPUT_ADDR_VEC
2426 ASM_OUTPUT_ADDR_VEC (PREV_INSN (insn), body);
2427#else
f5d927c0 2428 abort ();
e0d80184
DM
2429#endif
2430 }
2431 else
2432 {
2433#ifdef ASM_OUTPUT_ADDR_DIFF_VEC
2434 ASM_OUTPUT_ADDR_DIFF_VEC (PREV_INSN (insn), body);
2435#else
f5d927c0 2436 abort ();
e0d80184
DM
2437#endif
2438 }
2439#else
3cf2715d
DE
2440 vlen = XVECLEN (body, GET_CODE (body) == ADDR_DIFF_VEC);
2441 for (idx = 0; idx < vlen; idx++)
2442 {
2443 if (GET_CODE (body) == ADDR_VEC)
2444 {
2445#ifdef ASM_OUTPUT_ADDR_VEC_ELT
2446 ASM_OUTPUT_ADDR_VEC_ELT
2447 (file, CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 0, idx), 0)));
2448#else
2449 abort ();
2450#endif
2451 }
2452 else
2453 {
2454#ifdef ASM_OUTPUT_ADDR_DIFF_ELT
2455 ASM_OUTPUT_ADDR_DIFF_ELT
2456 (file,
33f7f353 2457 body,
3cf2715d
DE
2458 CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 1, idx), 0)),
2459 CODE_LABEL_NUMBER (XEXP (XEXP (body, 0), 0)));
2460#else
2461 abort ();
2462#endif
2463 }
2464 }
2465#ifdef ASM_OUTPUT_CASE_END
2466 ASM_OUTPUT_CASE_END (file,
2467 CODE_LABEL_NUMBER (PREV_INSN (insn)),
2468 insn);
e0d80184 2469#endif
3cf2715d
DE
2470#endif
2471
4d1065ed 2472 function_section (current_function_decl);
3cf2715d
DE
2473
2474 break;
2475 }
2476
2477 /* Do basic-block profiling when we reach a new block.
2478 Done here to avoid jump tables. */
2479 if (profile_block_flag && new_block)
2480 add_bb (file);
2481
2482 if (GET_CODE (body) == ASM_INPUT)
2483 {
2484 /* There's no telling what that did to the condition codes. */
2485 CC_STATUS_INIT;
2486 if (prescan > 0)
2487 break;
2488 if (! app_on)
2489 {
51723711 2490 fputs (ASM_APP_ON, file);
3cf2715d
DE
2491 app_on = 1;
2492 }
2493 fprintf (asm_out_file, "\t%s\n", XSTR (body, 0));
2494 break;
2495 }
2496
2497 /* Detect `asm' construct with operands. */
2498 if (asm_noperands (body) >= 0)
2499 {
22bf4422 2500 unsigned int noperands = asm_noperands (body);
3cf2715d 2501 rtx *ops = (rtx *) alloca (noperands * sizeof (rtx));
3cce094d 2502 const char *string;
3cf2715d
DE
2503
2504 /* There's no telling what that did to the condition codes. */
2505 CC_STATUS_INIT;
2506 if (prescan > 0)
2507 break;
2508
2509 if (! app_on)
2510 {
51723711 2511 fputs (ASM_APP_ON, file);
3cf2715d
DE
2512 app_on = 1;
2513 }
2514
2515 /* Get out the operand values. */
df4ae160 2516 string = decode_asm_operands (body, ops, NULL, NULL, NULL);
3cf2715d
DE
2517 /* Inhibit aborts on what would otherwise be compiler bugs. */
2518 insn_noperands = noperands;
2519 this_is_asm_operands = insn;
2520
2521 /* Output the insn using them. */
2522 output_asm_insn (string, ops);
2523 this_is_asm_operands = 0;
2524 break;
2525 }
2526
2527 if (prescan <= 0 && app_on)
2528 {
51723711 2529 fputs (ASM_APP_OFF, file);
3cf2715d
DE
2530 app_on = 0;
2531 }
2532
2533 if (GET_CODE (body) == SEQUENCE)
2534 {
2535 /* A delayed-branch sequence */
2536 register int i;
2537 rtx next;
2538
2539 if (prescan > 0)
2540 break;
2541 final_sequence = body;
2542
2543 /* The first insn in this SEQUENCE might be a JUMP_INSN that will
2544 force the restoration of a comparison that was previously
2545 thought unnecessary. If that happens, cancel this sequence
2546 and cause that insn to be restored. */
2547
2548 next = final_scan_insn (XVECEXP (body, 0, 0), file, 0, prescan, 1);
2549 if (next != XVECEXP (body, 0, 1))
2550 {
2551 final_sequence = 0;
2552 return next;
2553 }
2554
2555 for (i = 1; i < XVECLEN (body, 0); i++)
c7eee2df
RK
2556 {
2557 rtx insn = XVECEXP (body, 0, i);
2558 rtx next = NEXT_INSN (insn);
2559 /* We loop in case any instruction in a delay slot gets
2560 split. */
2561 do
2562 insn = final_scan_insn (insn, file, 0, prescan, 1);
2563 while (insn != next);
2564 }
3cf2715d
DE
2565#ifdef DBR_OUTPUT_SEQEND
2566 DBR_OUTPUT_SEQEND (file);
2567#endif
2568 final_sequence = 0;
2569
2570 /* If the insn requiring the delay slot was a CALL_INSN, the
2571 insns in the delay slot are actually executed before the
2572 called function. Hence we don't preserve any CC-setting
2573 actions in these insns and the CC must be marked as being
2574 clobbered by the function. */
2575 if (GET_CODE (XVECEXP (body, 0, 0)) == CALL_INSN)
b729186a
JL
2576 {
2577 CC_STATUS_INIT;
2578 }
3cf2715d
DE
2579
2580 /* Following a conditional branch sequence, we have a new basic
2581 block. */
2582 if (profile_block_flag)
2583 {
2584 rtx insn = XVECEXP (body, 0, 0);
2585 rtx body = PATTERN (insn);
2586
2587 if ((GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == SET
2588 && GET_CODE (SET_SRC (body)) != LABEL_REF)
2589 || (GET_CODE (insn) == JUMP_INSN
2590 && GET_CODE (body) == PARALLEL
2591 && GET_CODE (XVECEXP (body, 0, 0)) == SET
2592 && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) != LABEL_REF))
2593 new_block = 1;
2594 }
2595 break;
2596 }
2597
2598 /* We have a real machine instruction as rtl. */
2599
2600 body = PATTERN (insn);
2601
2602#ifdef HAVE_cc0
f5d927c0 2603 set = single_set (insn);
b88c92cc 2604
3cf2715d
DE
2605 /* Check for redundant test and compare instructions
2606 (when the condition codes are already set up as desired).
2607 This is done only when optimizing; if not optimizing,
2608 it should be possible for the user to alter a variable
2609 with the debugger in between statements
2610 and the next statement should reexamine the variable
2611 to compute the condition codes. */
2612
30f5e9f5 2613 if (optimize)
3cf2715d 2614 {
b88c92cc 2615#if 0
f5d927c0 2616 rtx set = single_set (insn);
b88c92cc 2617#endif
30f5e9f5
RK
2618
2619 if (set
2620 && GET_CODE (SET_DEST (set)) == CC0
2621 && insn != last_ignored_compare)
3cf2715d 2622 {
30f5e9f5
RK
2623 if (GET_CODE (SET_SRC (set)) == SUBREG)
2624 SET_SRC (set) = alter_subreg (SET_SRC (set));
2625 else if (GET_CODE (SET_SRC (set)) == COMPARE)
2626 {
2627 if (GET_CODE (XEXP (SET_SRC (set), 0)) == SUBREG)
2628 XEXP (SET_SRC (set), 0)
2629 = alter_subreg (XEXP (SET_SRC (set), 0));
2630 if (GET_CODE (XEXP (SET_SRC (set), 1)) == SUBREG)
2631 XEXP (SET_SRC (set), 1)
2632 = alter_subreg (XEXP (SET_SRC (set), 1));
2633 }
2634 if ((cc_status.value1 != 0
2635 && rtx_equal_p (SET_SRC (set), cc_status.value1))
2636 || (cc_status.value2 != 0
2637 && rtx_equal_p (SET_SRC (set), cc_status.value2)))
3cf2715d 2638 {
30f5e9f5
RK
2639 /* Don't delete insn if it has an addressing side-effect. */
2640 if (! FIND_REG_INC_NOTE (insn, 0)
2641 /* or if anything in it is volatile. */
2642 && ! volatile_refs_p (PATTERN (insn)))
2643 {
2644 /* We don't really delete the insn; just ignore it. */
2645 last_ignored_compare = insn;
2646 break;
2647 }
3cf2715d
DE
2648 }
2649 }
2650 }
2651#endif
2652
2653 /* Following a conditional branch, we have a new basic block.
2654 But if we are inside a sequence, the new block starts after the
2655 last insn of the sequence. */
2656 if (profile_block_flag && final_sequence == 0
2657 && ((GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == SET
2658 && GET_CODE (SET_SRC (body)) != LABEL_REF)
2659 || (GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == PARALLEL
2660 && GET_CODE (XVECEXP (body, 0, 0)) == SET
2661 && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) != LABEL_REF)))
2662 new_block = 1;
2663
2664#ifndef STACK_REGS
2665 /* Don't bother outputting obvious no-ops, even without -O.
2666 This optimization is fast and doesn't interfere with debugging.
2667 Don't do this if the insn is in a delay slot, since this
2668 will cause an improper number of delay insns to be written. */
2669 if (final_sequence == 0
2670 && prescan >= 0
2671 && GET_CODE (insn) == INSN && GET_CODE (body) == SET
2672 && GET_CODE (SET_SRC (body)) == REG
2673 && GET_CODE (SET_DEST (body)) == REG
2674 && REGNO (SET_SRC (body)) == REGNO (SET_DEST (body)))
2675 break;
2676#endif
2677
2678#ifdef HAVE_cc0
2679 /* If this is a conditional branch, maybe modify it
2680 if the cc's are in a nonstandard state
2681 so that it accomplishes the same thing that it would
2682 do straightforwardly if the cc's were set up normally. */
2683
2684 if (cc_status.flags != 0
2685 && GET_CODE (insn) == JUMP_INSN
2686 && GET_CODE (body) == SET
2687 && SET_DEST (body) == pc_rtx
2688 && GET_CODE (SET_SRC (body)) == IF_THEN_ELSE
de2b56f9 2689 && GET_RTX_CLASS (GET_CODE (XEXP (SET_SRC (body), 0))) == '<'
fff752ad 2690 && XEXP (XEXP (SET_SRC (body), 0), 0) == cc0_rtx
3cf2715d
DE
2691 /* This is done during prescan; it is not done again
2692 in final scan when prescan has been done. */
2693 && prescan >= 0)
2694 {
2695 /* This function may alter the contents of its argument
2696 and clear some of the cc_status.flags bits.
2697 It may also return 1 meaning condition now always true
2698 or -1 meaning condition now always false
2699 or 2 meaning condition nontrivial but altered. */
2700 register int result = alter_cond (XEXP (SET_SRC (body), 0));
2701 /* If condition now has fixed value, replace the IF_THEN_ELSE
2702 with its then-operand or its else-operand. */
2703 if (result == 1)
2704 SET_SRC (body) = XEXP (SET_SRC (body), 1);
2705 if (result == -1)
2706 SET_SRC (body) = XEXP (SET_SRC (body), 2);
2707
2708 /* The jump is now either unconditional or a no-op.
2709 If it has become a no-op, don't try to output it.
2710 (It would not be recognized.) */
2711 if (SET_SRC (body) == pc_rtx)
2712 {
2713 PUT_CODE (insn, NOTE);
2714 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
2715 NOTE_SOURCE_FILE (insn) = 0;
2716 break;
2717 }
2718 else if (GET_CODE (SET_SRC (body)) == RETURN)
2719 /* Replace (set (pc) (return)) with (return). */
2720 PATTERN (insn) = body = SET_SRC (body);
2721
2722 /* Rerecognize the instruction if it has changed. */
2723 if (result != 0)
2724 INSN_CODE (insn) = -1;
2725 }
2726
2727 /* Make same adjustments to instructions that examine the
462da2af
SC
2728 condition codes without jumping and instructions that
2729 handle conditional moves (if this machine has either one). */
3cf2715d
DE
2730
2731 if (cc_status.flags != 0
b88c92cc 2732 && set != 0)
3cf2715d 2733 {
462da2af 2734 rtx cond_rtx, then_rtx, else_rtx;
f5d927c0 2735
462da2af 2736 if (GET_CODE (insn) != JUMP_INSN
b88c92cc 2737 && GET_CODE (SET_SRC (set)) == IF_THEN_ELSE)
462da2af 2738 {
b88c92cc
RK
2739 cond_rtx = XEXP (SET_SRC (set), 0);
2740 then_rtx = XEXP (SET_SRC (set), 1);
2741 else_rtx = XEXP (SET_SRC (set), 2);
462da2af
SC
2742 }
2743 else
2744 {
b88c92cc 2745 cond_rtx = SET_SRC (set);
462da2af
SC
2746 then_rtx = const_true_rtx;
2747 else_rtx = const0_rtx;
2748 }
f5d927c0 2749
462da2af 2750 switch (GET_CODE (cond_rtx))
3cf2715d
DE
2751 {
2752 case GTU:
2753 case GT:
2754 case LTU:
2755 case LT:
2756 case GEU:
2757 case GE:
2758 case LEU:
2759 case LE:
2760 case EQ:
2761 case NE:
2762 {
2763 register int result;
462da2af 2764 if (XEXP (cond_rtx, 0) != cc0_rtx)
3cf2715d 2765 break;
462da2af 2766 result = alter_cond (cond_rtx);
3cf2715d 2767 if (result == 1)
b88c92cc 2768 validate_change (insn, &SET_SRC (set), then_rtx, 0);
3cf2715d 2769 else if (result == -1)
b88c92cc 2770 validate_change (insn, &SET_SRC (set), else_rtx, 0);
3cf2715d
DE
2771 else if (result == 2)
2772 INSN_CODE (insn) = -1;
b88c92cc 2773 if (SET_DEST (set) == SET_SRC (set))
462da2af
SC
2774 {
2775 PUT_CODE (insn, NOTE);
2776 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
2777 NOTE_SOURCE_FILE (insn) = 0;
462da2af 2778 }
3cf2715d 2779 }
e9a25f70
JL
2780 break;
2781
2782 default:
2783 break;
3cf2715d
DE
2784 }
2785 }
462da2af 2786
3cf2715d
DE
2787#endif
2788
ede7cd44 2789#ifdef HAVE_peephole
3cf2715d
DE
2790 /* Do machine-specific peephole optimizations if desired. */
2791
2792 if (optimize && !flag_no_peephole && !nopeepholes)
2793 {
2794 rtx next = peephole (insn);
2795 /* When peepholing, if there were notes within the peephole,
2796 emit them before the peephole. */
2797 if (next != 0 && next != NEXT_INSN (insn))
2798 {
2799 rtx prev = PREV_INSN (insn);
2800 rtx note;
2801
2802 for (note = NEXT_INSN (insn); note != next;
2803 note = NEXT_INSN (note))
2804 final_scan_insn (note, file, optimize, prescan, nopeepholes);
2805
2806 /* In case this is prescan, put the notes
2807 in proper position for later rescan. */
2808 note = NEXT_INSN (insn);
2809 PREV_INSN (note) = prev;
2810 NEXT_INSN (prev) = note;
2811 NEXT_INSN (PREV_INSN (next)) = insn;
2812 PREV_INSN (insn) = PREV_INSN (next);
2813 NEXT_INSN (insn) = next;
2814 PREV_INSN (next) = insn;
2815 }
2816
2817 /* PEEPHOLE might have changed this. */
2818 body = PATTERN (insn);
2819 }
ede7cd44 2820#endif
3cf2715d
DE
2821
2822 /* Try to recognize the instruction.
2823 If successful, verify that the operands satisfy the
2824 constraints for the instruction. Crash if they don't,
2825 since `reload' should have changed them so that they do. */
2826
2827 insn_code_number = recog_memoized (insn);
0304f787 2828 cleanup_subreg_operands (insn);
3cf2715d 2829
c349e40b
SC
2830 /* Dump the insn in the assembly for debugging. */
2831 if (flag_dump_rtl_in_asm)
2832 {
2833 print_rtx_head = ASM_COMMENT_START;
2834 print_rtl_single (asm_out_file, insn);
2835 print_rtx_head = "";
2836 }
b9f22704 2837
6c698a6d 2838 if (! constrain_operands_cached (1))
3cf2715d 2839 fatal_insn_not_found (insn);
3cf2715d
DE
2840
2841 /* Some target machines need to prescan each insn before
2842 it is output. */
2843
2844#ifdef FINAL_PRESCAN_INSN
1ccbefce 2845 FINAL_PRESCAN_INSN (insn, recog_data.operand, recog_data.n_operands);
3cf2715d
DE
2846#endif
2847
afe48e06
RH
2848#ifdef HAVE_conditional_execution
2849 if (GET_CODE (PATTERN (insn)) == COND_EXEC)
2850 current_insn_predicate = COND_EXEC_TEST (PATTERN (insn));
2851 else
2852 current_insn_predicate = NULL_RTX;
2853#endif
2854
3cf2715d
DE
2855#ifdef HAVE_cc0
2856 cc_prev_status = cc_status;
2857
2858 /* Update `cc_status' for this instruction.
2859 The instruction's output routine may change it further.
2860 If the output routine for a jump insn needs to depend
2861 on the cc status, it should look at cc_prev_status. */
2862
2863 NOTICE_UPDATE_CC (body, insn);
2864#endif
2865
b1a9f6a0 2866 current_output_insn = debug_insn = insn;
3cf2715d 2867
f73ad30e 2868#if defined (DWARF2_UNWIND_INFO)
fbfa55b0 2869 if (GET_CODE (insn) == CALL_INSN && dwarf2out_do_frame ())
b57d9225
JM
2870 dwarf2out_frame_debug (insn);
2871#endif
2872
4bbf910e
RH
2873 /* Find the proper template for this insn. */
2874 template = get_insn_template (insn_code_number, insn);
3cf2715d 2875
4bbf910e
RH
2876 /* If the C code returns 0, it means that it is a jump insn
2877 which follows a deleted test insn, and that test insn
2878 needs to be reinserted. */
3cf2715d
DE
2879 if (template == 0)
2880 {
efd0378b
HPN
2881 rtx prev;
2882
4bbf910e
RH
2883 if (prev_nonnote_insn (insn) != last_ignored_compare)
2884 abort ();
2885 new_block = 0;
efd0378b
HPN
2886
2887 /* We have already processed the notes between the setter and
2888 the user. Make sure we don't process them again, this is
2889 particularly important if one of the notes is a block
2890 scope note or an EH note. */
2891 for (prev = insn;
2892 prev != last_ignored_compare;
2893 prev = PREV_INSN (prev))
2894 {
2895 if (GET_CODE (prev) == NOTE)
2896 {
2897 NOTE_LINE_NUMBER (prev) = NOTE_INSN_DELETED;
2898 NOTE_SOURCE_FILE (prev) = 0;
2899 }
2900 }
2901
2902 return prev;
3cf2715d
DE
2903 }
2904
2905 /* If the template is the string "#", it means that this insn must
2906 be split. */
2907 if (template[0] == '#' && template[1] == '\0')
2908 {
2909 rtx new = try_split (body, insn, 0);
2910
2911 /* If we didn't split the insn, go away. */
2912 if (new == insn && PATTERN (new) == body)
cf879efa 2913 fatal_insn ("Could not split insn", insn);
f5d927c0 2914
3d14e82f
JW
2915#ifdef HAVE_ATTR_length
2916 /* This instruction should have been split in shorten_branches,
2917 to ensure that we would have valid length info for the
2918 splitees. */
2919 abort ();
2920#endif
2921
3cf2715d
DE
2922 new_block = 0;
2923 return new;
2924 }
f5d927c0 2925
3cf2715d
DE
2926 if (prescan > 0)
2927 break;
2928
ce152ef8
AM
2929#ifdef IA64_UNWIND_INFO
2930 IA64_UNWIND_EMIT (asm_out_file, insn);
2931#endif
3cf2715d
DE
2932 /* Output assembler code from the template. */
2933
1ccbefce 2934 output_asm_insn (template, recog_data.operand);
3cf2715d 2935
0021b564 2936#if defined (DWARF2_UNWIND_INFO)
0021b564 2937#if defined (HAVE_prologue)
fbfa55b0
RH
2938 if (GET_CODE (insn) == INSN && dwarf2out_do_frame ())
2939 dwarf2out_frame_debug (insn);
2940#else
2941 if (!ACCUMULATE_OUTGOING_ARGS
2942 && GET_CODE (insn) == INSN
2943 && dwarf2out_do_frame ())
2944 dwarf2out_frame_debug (insn);
0021b564
JM
2945#endif
2946#endif
469ac993 2947
3cf2715d
DE
2948#if 0
2949 /* It's not at all clear why we did this and doing so interferes
2950 with tests we'd like to do to use REG_WAS_0 notes, so let's try
2951 with this out. */
2952
2953 /* Mark this insn as having been output. */
2954 INSN_DELETED_P (insn) = 1;
2955#endif
2956
b1a9f6a0 2957 current_output_insn = debug_insn = 0;
3cf2715d
DE
2958 }
2959 }
2960 return NEXT_INSN (insn);
2961}
2962\f
2963/* Output debugging info to the assembler file FILE
2964 based on the NOTE-insn INSN, assumed to be a line number. */
2965
2966static void
653e276c 2967notice_source_line (insn)
3cf2715d
DE
2968 rtx insn;
2969{
3cce094d 2970 register const char *filename = NOTE_SOURCE_FILE (insn);
3cf2715d
DE
2971
2972 /* Remember filename for basic block profiling.
2973 Filenames are allocated on the permanent obstack
2974 or are passed in ARGV, so we don't have to save
2975 the string. */
2976
2977 if (profile_block_flag && last_filename != filename)
2978 bb_file_label_num = add_bb_string (filename, TRUE);
2979
2980 last_filename = filename;
2981 last_linenum = NOTE_LINE_NUMBER (insn);
eac40081
RK
2982 high_block_linenum = MAX (last_linenum, high_block_linenum);
2983 high_function_linenum = MAX (last_linenum, high_function_linenum);
3cf2715d
DE
2984}
2985\f
0304f787
JL
2986/* For each operand in INSN, simplify (subreg (reg)) so that it refers
2987 directly to the desired hard register. */
f5d927c0 2988
0304f787
JL
2989void
2990cleanup_subreg_operands (insn)
2991 rtx insn;
2992{
f62a15e3 2993 int i;
6c698a6d 2994 extract_insn_cached (insn);
1ccbefce 2995 for (i = 0; i < recog_data.n_operands; i++)
0304f787 2996 {
1ccbefce 2997 if (GET_CODE (recog_data.operand[i]) == SUBREG)
f5d927c0 2998 recog_data.operand[i] = alter_subreg (recog_data.operand[i]);
1ccbefce 2999 else if (GET_CODE (recog_data.operand[i]) == PLUS
04337620
BS
3000 || GET_CODE (recog_data.operand[i]) == MULT
3001 || GET_CODE (recog_data.operand[i]) == MEM)
f5d927c0 3002 recog_data.operand[i] = walk_alter_subreg (recog_data.operand[i]);
0304f787
JL
3003 }
3004
1ccbefce 3005 for (i = 0; i < recog_data.n_dups; i++)
0304f787 3006 {
1ccbefce 3007 if (GET_CODE (*recog_data.dup_loc[i]) == SUBREG)
f5d927c0 3008 *recog_data.dup_loc[i] = alter_subreg (*recog_data.dup_loc[i]);
1ccbefce 3009 else if (GET_CODE (*recog_data.dup_loc[i]) == PLUS
04337620
BS
3010 || GET_CODE (*recog_data.dup_loc[i]) == MULT
3011 || GET_CODE (*recog_data.dup_loc[i]) == MEM)
f5d927c0 3012 *recog_data.dup_loc[i] = walk_alter_subreg (*recog_data.dup_loc[i]);
0304f787
JL
3013 }
3014}
3015
3cf2715d
DE
3016/* If X is a SUBREG, replace it with a REG or a MEM,
3017 based on the thing it is a subreg of. */
3018
3019rtx
3020alter_subreg (x)
3021 register rtx x;
3022{
3023 register rtx y = SUBREG_REG (x);
f5963e61 3024
3cf2715d
DE
3025 if (GET_CODE (y) == SUBREG)
3026 y = alter_subreg (y);
3027
f5963e61
JL
3028 /* If reload is operating, we may be replacing inside this SUBREG.
3029 Check for that and make a new one if so. */
3030 if (reload_in_progress && find_replacement (&SUBREG_REG (x)) != 0)
3031 x = copy_rtx (x);
3032
3cf2715d
DE
3033 if (GET_CODE (y) == REG)
3034 {
ddef6bc7
JJ
3035 int regno = subreg_hard_regno (x, 1);
3036
ef178af3
ZW
3037 PUT_CODE (x, REG);
3038 REGNO (x) = regno;
08394eef 3039 ORIGINAL_REGNO (x) = ORIGINAL_REGNO (y);
0304f787
JL
3040 /* This field has a different meaning for REGs and SUBREGs. Make sure
3041 to clear it! */
3042 x->used = 0;
3cf2715d
DE
3043 }
3044 else if (GET_CODE (y) == MEM)
3045 {
f1ec5147 3046 HOST_WIDE_INT offset = SUBREG_BYTE (x);
ddef6bc7
JJ
3047
3048 /* Catch these instead of generating incorrect code. */
3049 if ((offset % GET_MODE_SIZE (GET_MODE (x))) != 0)
3050 abort ();
bf49b139 3051
3cf2715d 3052 PUT_CODE (x, MEM);
c6df88cb 3053 MEM_COPY_ATTRIBUTES (x, y);
3cf2715d
DE
3054 XEXP (x, 0) = plus_constant (XEXP (y, 0), offset);
3055 }
3056
3057 return x;
3058}
3059
3060/* Do alter_subreg on all the SUBREGs contained in X. */
3061
3062static rtx
3063walk_alter_subreg (x)
3064 rtx x;
3065{
3066 switch (GET_CODE (x))
3067 {
3068 case PLUS:
3069 case MULT:
3070 XEXP (x, 0) = walk_alter_subreg (XEXP (x, 0));
3071 XEXP (x, 1) = walk_alter_subreg (XEXP (x, 1));
3072 break;
3073
3074 case MEM:
3075 XEXP (x, 0) = walk_alter_subreg (XEXP (x, 0));
3076 break;
3077
3078 case SUBREG:
3079 return alter_subreg (x);
f5d927c0 3080
e9a25f70
JL
3081 default:
3082 break;
3cf2715d
DE
3083 }
3084
3085 return x;
3086}
3087\f
3088#ifdef HAVE_cc0
3089
3090/* Given BODY, the body of a jump instruction, alter the jump condition
3091 as required by the bits that are set in cc_status.flags.
3092 Not all of the bits there can be handled at this level in all cases.
3093
3094 The value is normally 0.
3095 1 means that the condition has become always true.
3096 -1 means that the condition has become always false.
3097 2 means that COND has been altered. */
3098
3099static int
3100alter_cond (cond)
3101 register rtx cond;
3102{
3103 int value = 0;
3104
3105 if (cc_status.flags & CC_REVERSED)
3106 {
3107 value = 2;
3108 PUT_CODE (cond, swap_condition (GET_CODE (cond)));
3109 }
3110
3111 if (cc_status.flags & CC_INVERTED)
3112 {
3113 value = 2;
3114 PUT_CODE (cond, reverse_condition (GET_CODE (cond)));
3115 }
3116
3117 if (cc_status.flags & CC_NOT_POSITIVE)
3118 switch (GET_CODE (cond))
3119 {
3120 case LE:
3121 case LEU:
3122 case GEU:
3123 /* Jump becomes unconditional. */
3124 return 1;
3125
3126 case GT:
3127 case GTU:
3128 case LTU:
3129 /* Jump becomes no-op. */
3130 return -1;
3131
3132 case GE:
3133 PUT_CODE (cond, EQ);
3134 value = 2;
3135 break;
3136
3137 case LT:
3138 PUT_CODE (cond, NE);
3139 value = 2;
3140 break;
f5d927c0 3141
e9a25f70
JL
3142 default:
3143 break;
3cf2715d
DE
3144 }
3145
3146 if (cc_status.flags & CC_NOT_NEGATIVE)
3147 switch (GET_CODE (cond))
3148 {
3149 case GE:
3150 case GEU:
3151 /* Jump becomes unconditional. */
3152 return 1;
3153
3154 case LT:
3155 case LTU:
3156 /* Jump becomes no-op. */
3157 return -1;
3158
3159 case LE:
3160 case LEU:
3161 PUT_CODE (cond, EQ);
3162 value = 2;
3163 break;
3164
3165 case GT:
3166 case GTU:
3167 PUT_CODE (cond, NE);
3168 value = 2;
3169 break;
f5d927c0 3170
e9a25f70
JL
3171 default:
3172 break;
3cf2715d
DE
3173 }
3174
3175 if (cc_status.flags & CC_NO_OVERFLOW)
3176 switch (GET_CODE (cond))
3177 {
3178 case GEU:
3179 /* Jump becomes unconditional. */
3180 return 1;
3181
3182 case LEU:
3183 PUT_CODE (cond, EQ);
3184 value = 2;
3185 break;
3186
3187 case GTU:
3188 PUT_CODE (cond, NE);
3189 value = 2;
3190 break;
3191
3192 case LTU:
3193 /* Jump becomes no-op. */
3194 return -1;
f5d927c0 3195
e9a25f70
JL
3196 default:
3197 break;
3cf2715d
DE
3198 }
3199
3200 if (cc_status.flags & (CC_Z_IN_NOT_N | CC_Z_IN_N))
3201 switch (GET_CODE (cond))
3202 {
e9a25f70 3203 default:
3cf2715d
DE
3204 abort ();
3205
3206 case NE:
3207 PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? GE : LT);
3208 value = 2;
3209 break;
3210
3211 case EQ:
3212 PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? LT : GE);
3213 value = 2;
3214 break;
3215 }
3216
3217 if (cc_status.flags & CC_NOT_SIGNED)
3218 /* The flags are valid if signed condition operators are converted
3219 to unsigned. */
3220 switch (GET_CODE (cond))
3221 {
3222 case LE:
3223 PUT_CODE (cond, LEU);
3224 value = 2;
3225 break;
3226
3227 case LT:
3228 PUT_CODE (cond, LTU);
3229 value = 2;
3230 break;
3231
3232 case GT:
3233 PUT_CODE (cond, GTU);
3234 value = 2;
3235 break;
3236
3237 case GE:
3238 PUT_CODE (cond, GEU);
3239 value = 2;
3240 break;
e9a25f70
JL
3241
3242 default:
3243 break;
3cf2715d
DE
3244 }
3245
3246 return value;
3247}
3248#endif
3249\f
3250/* Report inconsistency between the assembler template and the operands.
3251 In an `asm', it's the user's fault; otherwise, the compiler's fault. */
3252
3253void
ab87f8c8
JL
3254output_operand_lossage (msgid)
3255 const char *msgid;
3cf2715d
DE
3256{
3257 if (this_is_asm_operands)
ab87f8c8 3258 error_for_asm (this_is_asm_operands, "invalid `asm': %s", _(msgid));
3cf2715d 3259 else
651a788e 3260 internal_error ("output_operand: %s", _(msgid));
3cf2715d
DE
3261}
3262\f
3263/* Output of assembler code from a template, and its subroutines. */
3264
3265/* Output text from TEMPLATE to the assembler output file,
3266 obeying %-directions to substitute operands taken from
3267 the vector OPERANDS.
3268
3269 %N (for N a digit) means print operand N in usual manner.
3270 %lN means require operand N to be a CODE_LABEL or LABEL_REF
3271 and print the label name with no punctuation.
3272 %cN means require operand N to be a constant
3273 and print the constant expression with no punctuation.
3274 %aN means expect operand N to be a memory address
3275 (not a memory reference!) and print a reference
3276 to that address.
3277 %nN means expect operand N to be a constant
3278 and print a constant expression for minus the value
3279 of the operand, with no other punctuation. */
3280
cb649530
RK
3281static void
3282output_asm_name ()
3283{
3284 if (flag_print_asm_name)
3285 {
3286 /* Annotate the assembly with a comment describing the pattern and
3287 alternative used. */
3288 if (debug_insn)
3289 {
3290 register int num = INSN_CODE (debug_insn);
f5d927c0 3291 fprintf (asm_out_file, "\t%s %d\t%s",
a995e389
RH
3292 ASM_COMMENT_START, INSN_UID (debug_insn),
3293 insn_data[num].name);
3294 if (insn_data[num].n_alternatives > 1)
cb649530 3295 fprintf (asm_out_file, "/%d", which_alternative + 1);
1db9f6ce 3296#ifdef HAVE_ATTR_length
a995e389
RH
3297 fprintf (asm_out_file, "\t[length = %d]",
3298 get_attr_length (debug_insn));
1db9f6ce 3299#endif
cb649530
RK
3300 /* Clear this so only the first assembler insn
3301 of any rtl insn will get the special comment for -dp. */
3302 debug_insn = 0;
3303 }
3304 }
3305}
3306
3cf2715d
DE
3307void
3308output_asm_insn (template, operands)
9b3142b3 3309 const char *template;
3cf2715d
DE
3310 rtx *operands;
3311{
9b3142b3 3312 register const char *p;
b729186a 3313 register int c;
3cf2715d
DE
3314
3315 /* An insn may return a null string template
3316 in a case where no assembler code is needed. */
3317 if (*template == 0)
3318 return;
3319
3320 p = template;
3321 putc ('\t', asm_out_file);
3322
3323#ifdef ASM_OUTPUT_OPCODE
3324 ASM_OUTPUT_OPCODE (asm_out_file, p);
3325#endif
3326
b729186a 3327 while ((c = *p++))
3cf2715d
DE
3328 switch (c)
3329 {
3cf2715d 3330 case '\n':
cb649530 3331 output_asm_name ();
3cf2715d 3332 putc (c, asm_out_file);
cb649530 3333#ifdef ASM_OUTPUT_OPCODE
3cf2715d
DE
3334 while ((c = *p) == '\t')
3335 {
3336 putc (c, asm_out_file);
3337 p++;
3338 }
3339 ASM_OUTPUT_OPCODE (asm_out_file, p);
3cf2715d 3340#endif
cb649530 3341 break;
3cf2715d
DE
3342
3343#ifdef ASSEMBLER_DIALECT
3344 case '{':
b729186a
JL
3345 {
3346 register int i;
f5d927c0 3347
b729186a
JL
3348 /* If we want the first dialect, do nothing. Otherwise, skip
3349 DIALECT_NUMBER of strings ending with '|'. */
3350 for (i = 0; i < dialect_number; i++)
3351 {
463a8384 3352 while (*p && *p != '}' && *p++ != '|')
b729186a 3353 ;
463a8384
BS
3354 if (*p == '}')
3355 break;
b729186a
JL
3356 if (*p == '|')
3357 p++;
3358 }
3359 }
3cf2715d
DE
3360 break;
3361
3362 case '|':
3363 /* Skip to close brace. */
3364 while (*p && *p++ != '}')
3365 ;
3366 break;
3367
3368 case '}':
3369 break;
3370#endif
3371
3372 case '%':
3373 /* %% outputs a single %. */
3374 if (*p == '%')
3375 {
3376 p++;
3377 putc (c, asm_out_file);
3378 }
3379 /* %= outputs a number which is unique to each insn in the entire
3380 compilation. This is useful for making local labels that are
3381 referred to more than once in a given insn. */
3382 else if (*p == '=')
3383 {
3384 p++;
3385 fprintf (asm_out_file, "%d", insn_counter);
3386 }
3387 /* % followed by a letter and some digits
3388 outputs an operand in a special way depending on the letter.
3389 Letters `acln' are implemented directly.
3390 Other letters are passed to `output_operand' so that
3391 the PRINT_OPERAND macro can define them. */
f5d927c0 3392 else if (ISLOWER (*p) || ISUPPER (*p))
3cf2715d
DE
3393 {
3394 int letter = *p++;
3395 c = atoi (p);
3396
3397 if (! (*p >= '0' && *p <= '9'))
3398 output_operand_lossage ("operand number missing after %-letter");
22bf4422 3399 else if (this_is_asm_operands && (c < 0 || (unsigned int) c >= insn_noperands))
3cf2715d
DE
3400 output_operand_lossage ("operand number out of range");
3401 else if (letter == 'l')
3402 output_asm_label (operands[c]);
3403 else if (letter == 'a')
3404 output_address (operands[c]);
3405 else if (letter == 'c')
3406 {
3407 if (CONSTANT_ADDRESS_P (operands[c]))
3408 output_addr_const (asm_out_file, operands[c]);
3409 else
3410 output_operand (operands[c], 'c');
3411 }
3412 else if (letter == 'n')
3413 {
3414 if (GET_CODE (operands[c]) == CONST_INT)
21e3a81b 3415 fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC,
3cf2715d
DE
3416 - INTVAL (operands[c]));
3417 else
3418 {
3419 putc ('-', asm_out_file);
3420 output_addr_const (asm_out_file, operands[c]);
3421 }
3422 }
3423 else
3424 output_operand (operands[c], letter);
f5d927c0
KH
3425
3426 while ((c = *p) >= '0' && c <= '9')
3427 p++;
3cf2715d
DE
3428 }
3429 /* % followed by a digit outputs an operand the default way. */
3430 else if (*p >= '0' && *p <= '9')
3431 {
3432 c = atoi (p);
f5d927c0
KH
3433 if (this_is_asm_operands
3434 && (c < 0 || (unsigned int) c >= insn_noperands))
3cf2715d
DE
3435 output_operand_lossage ("operand number out of range");
3436 else
3437 output_operand (operands[c], 0);
f5d927c0
KH
3438 while ((c = *p) >= '0' && c <= '9')
3439 p++;
3cf2715d
DE
3440 }
3441 /* % followed by punctuation: output something for that
3442 punctuation character alone, with no operand.
3443 The PRINT_OPERAND macro decides what is actually done. */
3444#ifdef PRINT_OPERAND_PUNCT_VALID_P
f5d927c0 3445 else if (PRINT_OPERAND_PUNCT_VALID_P ((unsigned char) *p))
3cf2715d
DE
3446 output_operand (NULL_RTX, *p++);
3447#endif
3448 else
3449 output_operand_lossage ("invalid %%-code");
3450 break;
3451
3452 default:
3453 putc (c, asm_out_file);
3454 }
3455
cb649530 3456 output_asm_name ();
3cf2715d
DE
3457
3458 putc ('\n', asm_out_file);
3459}
3460\f
3461/* Output a LABEL_REF, or a bare CODE_LABEL, as an assembler symbol. */
3462
3463void
3464output_asm_label (x)
3465 rtx x;
3466{
3467 char buf[256];
3468
3469 if (GET_CODE (x) == LABEL_REF)
be1bb652
RH
3470 x = XEXP (x, 0);
3471 if (GET_CODE (x) == CODE_LABEL
3472 || (GET_CODE (x) == NOTE
3473 && NOTE_LINE_NUMBER (x) == NOTE_INSN_DELETED_LABEL))
3cf2715d
DE
3474 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
3475 else
3476 output_operand_lossage ("`%l' operand isn't a label");
3477
3478 assemble_name (asm_out_file, buf);
3479}
3480
3481/* Print operand X using machine-dependent assembler syntax.
3482 The macro PRINT_OPERAND is defined just to control this function.
3483 CODE is a non-digit that preceded the operand-number in the % spec,
3484 such as 'z' if the spec was `%z3'. CODE is 0 if there was no char
3485 between the % and the digits.
3486 When CODE is a non-letter, X is 0.
3487
3488 The meanings of the letters are machine-dependent and controlled
3489 by PRINT_OPERAND. */
3490
3491static void
3492output_operand (x, code)
3493 rtx x;
962f1324 3494 int code ATTRIBUTE_UNUSED;
3cf2715d
DE
3495{
3496 if (x && GET_CODE (x) == SUBREG)
3497 x = alter_subreg (x);
3498
3499 /* If X is a pseudo-register, abort now rather than writing trash to the
3500 assembler file. */
3501
3502 if (x && GET_CODE (x) == REG && REGNO (x) >= FIRST_PSEUDO_REGISTER)
3503 abort ();
3504
3505 PRINT_OPERAND (asm_out_file, x, code);
3506}
3507
3508/* Print a memory reference operand for address X
3509 using machine-dependent assembler syntax.
3510 The macro PRINT_OPERAND_ADDRESS exists just to control this function. */
3511
3512void
3513output_address (x)
3514 rtx x;
3515{
3516 walk_alter_subreg (x);
3517 PRINT_OPERAND_ADDRESS (asm_out_file, x);
3518}
3519\f
3520/* Print an integer constant expression in assembler syntax.
3521 Addition and subtraction are the only arithmetic
3522 that may appear in these expressions. */
3523
3524void
3525output_addr_const (file, x)
3526 FILE *file;
3527 rtx x;
3528{
3529 char buf[256];
3530
3531 restart:
3532 switch (GET_CODE (x))
3533 {
3534 case PC:
3535 if (flag_pic)
3536 putc ('.', file);
3537 else
3538 abort ();
3539 break;
3540
3541 case SYMBOL_REF:
99c8c61c
AO
3542#ifdef ASM_OUTPUT_SYMBOL_REF
3543 ASM_OUTPUT_SYMBOL_REF (file, x);
3544#else
3cf2715d 3545 assemble_name (file, XSTR (x, 0));
99c8c61c 3546#endif
3cf2715d
DE
3547 break;
3548
3549 case LABEL_REF:
422be3c3
AO
3550 x = XEXP (x, 0);
3551 /* Fall through. */
3cf2715d
DE
3552 case CODE_LABEL:
3553 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
3554 assemble_name (file, buf);
3555 break;
3556
3557 case CONST_INT:
21e3a81b 3558 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x));
3cf2715d
DE
3559 break;
3560
3561 case CONST:
3562 /* This used to output parentheses around the expression,
3563 but that does not work on the 386 (either ATT or BSD assembler). */
3564 output_addr_const (file, XEXP (x, 0));
3565 break;
3566
3567 case CONST_DOUBLE:
3568 if (GET_MODE (x) == VOIDmode)
3569 {
3570 /* We can use %d if the number is one word and positive. */
3571 if (CONST_DOUBLE_HIGH (x))
21e3a81b 3572 fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
3cf2715d 3573 CONST_DOUBLE_HIGH (x), CONST_DOUBLE_LOW (x));
f5d927c0 3574 else if (CONST_DOUBLE_LOW (x) < 0)
21e3a81b 3575 fprintf (file, HOST_WIDE_INT_PRINT_HEX, CONST_DOUBLE_LOW (x));
3cf2715d 3576 else
21e3a81b 3577 fprintf (file, HOST_WIDE_INT_PRINT_DEC, CONST_DOUBLE_LOW (x));
3cf2715d
DE
3578 }
3579 else
3580 /* We can't handle floating point constants;
3581 PRINT_OPERAND must handle them. */
3582 output_operand_lossage ("floating constant misused");
3583 break;
3584
3585 case PLUS:
3586 /* Some assemblers need integer constants to appear last (eg masm). */
3587 if (GET_CODE (XEXP (x, 0)) == CONST_INT)
3588 {
3589 output_addr_const (file, XEXP (x, 1));
3590 if (INTVAL (XEXP (x, 0)) >= 0)
3591 fprintf (file, "+");
3592 output_addr_const (file, XEXP (x, 0));
3593 }
3594 else
3595 {
3596 output_addr_const (file, XEXP (x, 0));
08106825
AO
3597 if (GET_CODE (XEXP (x, 1)) != CONST_INT
3598 || INTVAL (XEXP (x, 1)) >= 0)
3cf2715d
DE
3599 fprintf (file, "+");
3600 output_addr_const (file, XEXP (x, 1));
3601 }
3602 break;
3603
3604 case MINUS:
3605 /* Avoid outputting things like x-x or x+5-x,
3606 since some assemblers can't handle that. */
3607 x = simplify_subtraction (x);
3608 if (GET_CODE (x) != MINUS)
3609 goto restart;
3610
3611 output_addr_const (file, XEXP (x, 0));
3612 fprintf (file, "-");
422be3c3
AO
3613 if ((GET_CODE (XEXP (x, 1)) == CONST_INT
3614 && INTVAL (XEXP (x, 1)) < 0)
3615 || GET_CODE (XEXP (x, 1)) != CONST_INT)
3cf2715d 3616 {
17b53c33 3617 fputs (targetm.asm_out.open_paren, file);
3cf2715d 3618 output_addr_const (file, XEXP (x, 1));
17b53c33 3619 fputs (targetm.asm_out.close_paren, file);
3cf2715d
DE
3620 }
3621 else
3622 output_addr_const (file, XEXP (x, 1));
3623 break;
3624
3625 case ZERO_EXTEND:
3626 case SIGN_EXTEND:
3627 output_addr_const (file, XEXP (x, 0));
3628 break;
3629
3630 default:
422be3c3
AO
3631#ifdef OUTPUT_ADDR_CONST_EXTRA
3632 OUTPUT_ADDR_CONST_EXTRA (file, x, fail);
3633 break;
3634
3635 fail:
3636#endif
3cf2715d
DE
3637 output_operand_lossage ("invalid expression as operand");
3638 }
3639}
3640\f
3641/* A poor man's fprintf, with the added features of %I, %R, %L, and %U.
3642 %R prints the value of REGISTER_PREFIX.
3643 %L prints the value of LOCAL_LABEL_PREFIX.
3644 %U prints the value of USER_LABEL_PREFIX.
3645 %I prints the value of IMMEDIATE_PREFIX.
3646 %O runs ASM_OUTPUT_OPCODE to transform what follows in the string.
3647 Also supported are %d, %x, %s, %e, %f, %g and %%.
3648
3649 We handle alternate assembler dialects here, just like output_asm_insn. */
3650
3651void
711d877c 3652asm_fprintf VPARAMS ((FILE *file, const char *p, ...))
3cf2715d 3653{
5148a72b 3654#ifndef ANSI_PROTOTYPES
3cf2715d 3655 FILE *file;
87e11268 3656 const char *p;
3cf2715d
DE
3657#endif
3658 va_list argptr;
3659 char buf[10];
3660 char *q, c;
3cf2715d
DE
3661
3662 VA_START (argptr, p);
3663
5148a72b 3664#ifndef ANSI_PROTOTYPES
0f41302f 3665 file = va_arg (argptr, FILE *);
87e11268 3666 p = va_arg (argptr, const char *);
3cf2715d
DE
3667#endif
3668
3669 buf[0] = '%';
3670
b729186a 3671 while ((c = *p++))
3cf2715d
DE
3672 switch (c)
3673 {
3674#ifdef ASSEMBLER_DIALECT
3675 case '{':
b729186a
JL
3676 {
3677 int i;
3cf2715d 3678
b729186a
JL
3679 /* If we want the first dialect, do nothing. Otherwise, skip
3680 DIALECT_NUMBER of strings ending with '|'. */
3681 for (i = 0; i < dialect_number; i++)
3682 {
3683 while (*p && *p++ != '|')
3684 ;
3685
3686 if (*p == '|')
3687 p++;
f5d927c0 3688 }
b729186a 3689 }
3cf2715d
DE
3690 break;
3691
3692 case '|':
3693 /* Skip to close brace. */
3694 while (*p && *p++ != '}')
3695 ;
3696 break;
3697
3698 case '}':
3699 break;
3700#endif
3701
3702 case '%':
3703 c = *p++;
3704 q = &buf[1];
3705 while ((c >= '0' && c <= '9') || c == '.')
3706 {
3707 *q++ = c;
3708 c = *p++;
3709 }
3710 switch (c)
3711 {
3712 case '%':
3713 fprintf (file, "%%");
3714 break;
3715
3716 case 'd': case 'i': case 'u':
3717 case 'x': case 'p': case 'X':
3718 case 'o':
3719 *q++ = c;
3720 *q = 0;
3721 fprintf (file, buf, va_arg (argptr, int));
3722 break;
3723
3724 case 'w':
3725 /* This is a prefix to the 'd', 'i', 'u', 'x', 'p', and 'X' cases,
3726 but we do not check for those cases. It means that the value
3727 is a HOST_WIDE_INT, which may be either `int' or `long'. */
3728
21e3a81b
RK
3729#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
3730#else
3731#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
3732 *q++ = 'l';
3733#else
3734 *q++ = 'l';
3cf2715d 3735 *q++ = 'l';
21e3a81b 3736#endif
3cf2715d
DE
3737#endif
3738
3739 *q++ = *p++;
3740 *q = 0;
3741 fprintf (file, buf, va_arg (argptr, HOST_WIDE_INT));
3742 break;
3743
3744 case 'l':
3745 *q++ = c;
3746 *q++ = *p++;
3747 *q = 0;
3748 fprintf (file, buf, va_arg (argptr, long));
3749 break;
3750
3751 case 'e':
3752 case 'f':
3753 case 'g':
3754 *q++ = c;
3755 *q = 0;
3756 fprintf (file, buf, va_arg (argptr, double));
3757 break;
3758
3759 case 's':
3760 *q++ = c;
3761 *q = 0;
3762 fprintf (file, buf, va_arg (argptr, char *));
3763 break;
3764
3765 case 'O':
3766#ifdef ASM_OUTPUT_OPCODE
3767 ASM_OUTPUT_OPCODE (asm_out_file, p);
3768#endif
3769 break;
3770
3771 case 'R':
3772#ifdef REGISTER_PREFIX
3773 fprintf (file, "%s", REGISTER_PREFIX);
3774#endif
3775 break;
3776
3777 case 'I':
3778#ifdef IMMEDIATE_PREFIX
3779 fprintf (file, "%s", IMMEDIATE_PREFIX);
3780#endif
3781 break;
3782
3783 case 'L':
3784#ifdef LOCAL_LABEL_PREFIX
3785 fprintf (file, "%s", LOCAL_LABEL_PREFIX);
3786#endif
3787 break;
3788
3789 case 'U':
19283265 3790 fputs (user_label_prefix, file);
3cf2715d
DE
3791 break;
3792
fe0503ea
NC
3793#ifdef ASM_FPRINTF_EXTENSIONS
3794 /* Upper case letters are reserved for general use by asm_fprintf
3795 and so are not available to target specific code. In order to
3796 prevent the ASM_FPRINTF_EXTENSIONS macro from using them then,
3797 they are defined here. As they get turned into real extensions
3798 to asm_fprintf they should be removed from this list. */
3799 case 'A': case 'B': case 'C': case 'D': case 'E':
3800 case 'F': case 'G': case 'H': case 'J': case 'K':
3801 case 'M': case 'N': case 'P': case 'Q': case 'S':
3802 case 'T': case 'V': case 'W': case 'Y': case 'Z':
3803 break;
f5d927c0 3804
fe0503ea
NC
3805 ASM_FPRINTF_EXTENSIONS (file, argptr, p)
3806#endif
3cf2715d
DE
3807 default:
3808 abort ();
3809 }
3810 break;
3811
3812 default:
3813 fputc (c, file);
3814 }
f0305a2b 3815 va_end (argptr);
3cf2715d
DE
3816}
3817\f
3818/* Split up a CONST_DOUBLE or integer constant rtx
3819 into two rtx's for single words,
3820 storing in *FIRST the word that comes first in memory in the target
3821 and in *SECOND the other. */
3822
3823void
3824split_double (value, first, second)
3825 rtx value;
3826 rtx *first, *second;
3827{
3828 if (GET_CODE (value) == CONST_INT)
3829 {
5a1a6efd 3830 if (HOST_BITS_PER_WIDE_INT >= (2 * BITS_PER_WORD))
f76b9db2 3831 {
5a1a6efd 3832 /* In this case the CONST_INT holds both target words.
27eef9ce
JC
3833 Extract the bits from it into two word-sized pieces.
3834 Sign extend each half to HOST_WIDE_INT. */
7f251dee
AO
3835 unsigned HOST_WIDE_INT low, high;
3836 unsigned HOST_WIDE_INT mask, sign_bit, sign_extend;
3837
3838 /* Set sign_bit to the most significant bit of a word. */
3839 sign_bit = 1;
3840 sign_bit <<= BITS_PER_WORD - 1;
3841
3842 /* Set mask so that all bits of the word are set. We could
3843 have used 1 << BITS_PER_WORD instead of basing the
3844 calculation on sign_bit. However, on machines where
3845 HOST_BITS_PER_WIDE_INT == BITS_PER_WORD, it could cause a
3846 compiler warning, even though the code would never be
3847 executed. */
3848 mask = sign_bit << 1;
3849 mask--;
3850
3851 /* Set sign_extend as any remaining bits. */
3852 sign_extend = ~mask;
f5d927c0 3853
7f251dee
AO
3854 /* Pick the lower word and sign-extend it. */
3855 low = INTVAL (value);
3856 low &= mask;
3857 if (low & sign_bit)
3858 low |= sign_extend;
3859
3860 /* Pick the higher word, shifted to the least significant
3861 bits, and sign-extend it. */
3862 high = INTVAL (value);
3863 high >>= BITS_PER_WORD - 1;
3864 high >>= 1;
3865 high &= mask;
3866 if (high & sign_bit)
3867 high |= sign_extend;
3868
3869 /* Store the words in the target machine order. */
5a1a6efd
RK
3870 if (WORDS_BIG_ENDIAN)
3871 {
7f251dee
AO
3872 *first = GEN_INT (high);
3873 *second = GEN_INT (low);
5a1a6efd
RK
3874 }
3875 else
3876 {
7f251dee
AO
3877 *first = GEN_INT (low);
3878 *second = GEN_INT (high);
5a1a6efd 3879 }
f76b9db2
ILT
3880 }
3881 else
3882 {
5a1a6efd
RK
3883 /* The rule for using CONST_INT for a wider mode
3884 is that we regard the value as signed.
3885 So sign-extend it. */
3886 rtx high = (INTVAL (value) < 0 ? constm1_rtx : const0_rtx);
3887 if (WORDS_BIG_ENDIAN)
3888 {
3889 *first = high;
3890 *second = value;
3891 }
3892 else
3893 {
3894 *first = value;
3895 *second = high;
3896 }
f76b9db2 3897 }
3cf2715d
DE
3898 }
3899 else if (GET_CODE (value) != CONST_DOUBLE)
3900 {
f76b9db2
ILT
3901 if (WORDS_BIG_ENDIAN)
3902 {
3903 *first = const0_rtx;
3904 *second = value;
3905 }
3906 else
3907 {
3908 *first = value;
3909 *second = const0_rtx;
3910 }
3cf2715d
DE
3911 }
3912 else if (GET_MODE (value) == VOIDmode
3913 /* This is the old way we did CONST_DOUBLE integers. */
3914 || GET_MODE_CLASS (GET_MODE (value)) == MODE_INT)
3915 {
3916 /* In an integer, the words are defined as most and least significant.
3917 So order them by the target's convention. */
f76b9db2
ILT
3918 if (WORDS_BIG_ENDIAN)
3919 {
3920 *first = GEN_INT (CONST_DOUBLE_HIGH (value));
3921 *second = GEN_INT (CONST_DOUBLE_LOW (value));
3922 }
3923 else
3924 {
3925 *first = GEN_INT (CONST_DOUBLE_LOW (value));
3926 *second = GEN_INT (CONST_DOUBLE_HIGH (value));
3927 }
3cf2715d
DE
3928 }
3929 else
3930 {
3931#ifdef REAL_ARITHMETIC
f5d927c0
KH
3932 REAL_VALUE_TYPE r;
3933 long l[2];
3cf2715d
DE
3934 REAL_VALUE_FROM_CONST_DOUBLE (r, value);
3935
3936 /* Note, this converts the REAL_VALUE_TYPE to the target's
3937 format, splits up the floating point double and outputs
3938 exactly 32 bits of it into each of l[0] and l[1] --
0f41302f 3939 not necessarily BITS_PER_WORD bits. */
3cf2715d
DE
3940 REAL_VALUE_TO_TARGET_DOUBLE (r, l);
3941
b5a3eb84
JW
3942 /* If 32 bits is an entire word for the target, but not for the host,
3943 then sign-extend on the host so that the number will look the same
3944 way on the host that it would on the target. See for instance
3945 simplify_unary_operation. The #if is needed to avoid compiler
3946 warnings. */
3947
3948#if HOST_BITS_PER_LONG > 32
3949 if (BITS_PER_WORD < HOST_BITS_PER_LONG && BITS_PER_WORD == 32)
3950 {
3951 if (l[0] & ((long) 1 << 31))
3952 l[0] |= ((long) (-1) << 32);
3953 if (l[1] & ((long) 1 << 31))
3954 l[1] |= ((long) (-1) << 32);
3955 }
3956#endif
3957
3cf2715d
DE
3958 *first = GEN_INT ((HOST_WIDE_INT) l[0]);
3959 *second = GEN_INT ((HOST_WIDE_INT) l[1]);
3960#else
3961 if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
3962 || HOST_BITS_PER_WIDE_INT != BITS_PER_WORD)
3963 && ! flag_pretend_float)
7f251dee 3964 abort ();
3cf2715d 3965
f76b9db2
ILT
3966 if (
3967#ifdef HOST_WORDS_BIG_ENDIAN
3968 WORDS_BIG_ENDIAN
3cf2715d 3969#else
f76b9db2 3970 ! WORDS_BIG_ENDIAN
3cf2715d 3971#endif
f76b9db2
ILT
3972 )
3973 {
3974 /* Host and target agree => no need to swap. */
3975 *first = GEN_INT (CONST_DOUBLE_LOW (value));
3976 *second = GEN_INT (CONST_DOUBLE_HIGH (value));
3977 }
3978 else
3979 {
3980 *second = GEN_INT (CONST_DOUBLE_LOW (value));
3981 *first = GEN_INT (CONST_DOUBLE_HIGH (value));
3982 }
3cf2715d
DE
3983#endif /* no REAL_ARITHMETIC */
3984 }
3985}
3986\f
3987/* Return nonzero if this function has no function calls. */
3988
3989int
3990leaf_function_p ()
3991{
3992 rtx insn;
b660f82f 3993 rtx link;
3cf2715d 3994
9e2f9a7f 3995 if (profile_flag || profile_block_flag || profile_arc_flag)
3cf2715d
DE
3996 return 0;
3997
3998 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3999 {
7d167afd
JJ
4000 if (GET_CODE (insn) == CALL_INSN
4001 && ! SIBLING_CALL_P (insn))
3cf2715d
DE
4002 return 0;
4003 if (GET_CODE (insn) == INSN
4004 && GET_CODE (PATTERN (insn)) == SEQUENCE
0a1c58a2
JL
4005 && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == CALL_INSN
4006 && ! SIBLING_CALL_P (XVECEXP (PATTERN (insn), 0, 0)))
3cf2715d
DE
4007 return 0;
4008 }
b660f82f
JW
4009 for (link = current_function_epilogue_delay_list;
4010 link;
4011 link = XEXP (link, 1))
3cf2715d 4012 {
b660f82f
JW
4013 insn = XEXP (link, 0);
4014
4015 if (GET_CODE (insn) == CALL_INSN
7d167afd 4016 && ! SIBLING_CALL_P (insn))
3cf2715d 4017 return 0;
b660f82f
JW
4018 if (GET_CODE (insn) == INSN
4019 && GET_CODE (PATTERN (insn)) == SEQUENCE
4020 && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == CALL_INSN
4021 && ! SIBLING_CALL_P (XVECEXP (PATTERN (insn), 0, 0)))
3cf2715d
DE
4022 return 0;
4023 }
4024
4025 return 1;
4026}
4027
ef6257cd
JH
4028/* Return 1 if branch is an forward branch.
4029 Uses insn_shuid array, so it works only in the final pass. May be used by
4030 output templates to customary add branch prediction hints.
4031 */
4032int
4033final_forward_branch_p (insn)
4034 rtx insn;
4035{
4036 int insn_id, label_id;
4037 if (!uid_shuid)
4038 abort ();
4039 insn_id = INSN_SHUID (insn);
4040 label_id = INSN_SHUID (JUMP_LABEL (insn));
4041 /* We've hit some insns that does not have id information available. */
4042 if (!insn_id || !label_id)
4043 abort ();
4044 return insn_id < label_id;
4045}
4046
3cf2715d
DE
4047/* On some machines, a function with no call insns
4048 can run faster if it doesn't create its own register window.
4049 When output, the leaf function should use only the "output"
4050 registers. Ordinarily, the function would be compiled to use
4051 the "input" registers to find its arguments; it is a candidate
4052 for leaf treatment if it uses only the "input" registers.
4053 Leaf function treatment means renumbering so the function
4054 uses the "output" registers instead. */
4055
4056#ifdef LEAF_REGISTERS
4057
3cf2715d
DE
4058/* Return 1 if this function uses only the registers that can be
4059 safely renumbered. */
4060
4061int
4062only_leaf_regs_used ()
4063{
4064 int i;
7d167afd 4065 char *permitted_reg_in_leaf_functions = LEAF_REGISTERS;
3cf2715d
DE
4066
4067 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
e5e809f4
JL
4068 if ((regs_ever_live[i] || global_regs[i])
4069 && ! permitted_reg_in_leaf_functions[i])
4070 return 0;
4071
4072 if (current_function_uses_pic_offset_table
4073 && pic_offset_table_rtx != 0
4074 && GET_CODE (pic_offset_table_rtx) == REG
4075 && ! permitted_reg_in_leaf_functions[REGNO (pic_offset_table_rtx)])
4076 return 0;
4077
3cf2715d
DE
4078 return 1;
4079}
4080
4081/* Scan all instructions and renumber all registers into those
4082 available in leaf functions. */
4083
4084static void
4085leaf_renumber_regs (first)
4086 rtx first;
4087{
4088 rtx insn;
4089
4090 /* Renumber only the actual patterns.
4091 The reg-notes can contain frame pointer refs,
4092 and renumbering them could crash, and should not be needed. */
4093 for (insn = first; insn; insn = NEXT_INSN (insn))
2c3c49de 4094 if (INSN_P (insn))
3cf2715d 4095 leaf_renumber_regs_insn (PATTERN (insn));
f5d927c0
KH
4096 for (insn = current_function_epilogue_delay_list;
4097 insn;
4098 insn = XEXP (insn, 1))
2c3c49de 4099 if (INSN_P (XEXP (insn, 0)))
3cf2715d
DE
4100 leaf_renumber_regs_insn (PATTERN (XEXP (insn, 0)));
4101}
4102
4103/* Scan IN_RTX and its subexpressions, and renumber all regs into those
4104 available in leaf functions. */
4105
4106void
4107leaf_renumber_regs_insn (in_rtx)
4108 register rtx in_rtx;
4109{
4110 register int i, j;
6f7d635c 4111 register const char *format_ptr;
3cf2715d
DE
4112
4113 if (in_rtx == 0)
4114 return;
4115
4116 /* Renumber all input-registers into output-registers.
4117 renumbered_regs would be 1 for an output-register;
4118 they */
4119
4120 if (GET_CODE (in_rtx) == REG)
4121 {
4122 int newreg;
4123
4124 /* Don't renumber the same reg twice. */
4125 if (in_rtx->used)
4126 return;
4127
4128 newreg = REGNO (in_rtx);
4129 /* Don't try to renumber pseudo regs. It is possible for a pseudo reg
4130 to reach here as part of a REG_NOTE. */
4131 if (newreg >= FIRST_PSEUDO_REGISTER)
4132 {
4133 in_rtx->used = 1;
4134 return;
4135 }
4136 newreg = LEAF_REG_REMAP (newreg);
4137 if (newreg < 0)
4138 abort ();
4139 regs_ever_live[REGNO (in_rtx)] = 0;
4140 regs_ever_live[newreg] = 1;
4141 REGNO (in_rtx) = newreg;
4142 in_rtx->used = 1;
4143 }
4144
2c3c49de 4145 if (INSN_P (in_rtx))
3cf2715d
DE
4146 {
4147 /* Inside a SEQUENCE, we find insns.
4148 Renumber just the patterns of these insns,
4149 just as we do for the top-level insns. */
4150 leaf_renumber_regs_insn (PATTERN (in_rtx));
4151 return;
4152 }
4153
4154 format_ptr = GET_RTX_FORMAT (GET_CODE (in_rtx));
4155
4156 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (in_rtx)); i++)
4157 switch (*format_ptr++)
4158 {
4159 case 'e':
4160 leaf_renumber_regs_insn (XEXP (in_rtx, i));
4161 break;
4162
4163 case 'E':
4164 if (NULL != XVEC (in_rtx, i))
4165 {
4166 for (j = 0; j < XVECLEN (in_rtx, i); j++)
4167 leaf_renumber_regs_insn (XVECEXP (in_rtx, i, j));
4168 }
4169 break;
4170
4171 case 'S':
4172 case 's':
4173 case '0':
4174 case 'i':
4175 case 'w':
4176 case 'n':
4177 case 'u':
4178 break;
4179
4180 default:
4181 abort ();
4182 }
4183}
4184#endif
This page took 1.517196 seconds and 5 git commands to generate.