]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/final.c
(duplicate_loop_exit_test): Return 0 if found a NOTE_INSN_LOOP_CONT.
[thirdparty/gcc.git] / gcc / final.c
CommitLineData
3cf2715d 1/* Convert RTL to assembler code and output it, for GNU compiler.
eac40081 2 Copyright (C) 1987, 88, 89, 92, 93, 94, 1995 Free Software Foundation, Inc.
3cf2715d
DE
3
4This file is part of GNU CC.
5
6GNU CC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU CC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU CC; see the file COPYING. If not, write to
940d9d63
RK
18the Free Software Foundation, 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
3cf2715d
DE
20
21
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
44 directly as assembler code by the macros FUNCTION_PROLOGUE and
45 FUNCTION_EPILOGUE. Those instructions never exist as rtl. */
46
47#include "config.h"
48#ifdef __STDC__
49#include <stdarg.h>
50#else
51#include <varargs.h>
52#endif
53#include <stdio.h>
54#include <ctype.h>
55
56#include "tree.h"
57#include "rtl.h"
58#include "regs.h"
59#include "insn-config.h"
60#include "insn-flags.h"
61#include "insn-attr.h"
62#include "insn-codes.h"
63#include "recog.h"
64#include "conditions.h"
65#include "flags.h"
66#include "real.h"
67#include "hard-reg-set.h"
68#include "defaults.h"
69#include "output.h"
70
71/* Get N_SLINE and N_SOL from stab.h if we can expect the file to exist. */
72#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
73#if defined (USG) || defined (NO_STAB_H)
74#include "gstab.h" /* If doing DBX on sysV, use our own stab.h. */
75#else
76#include <stab.h> /* On BSD, use the system's stab.h. */
77#endif /* not USG */
78#endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
79
80#ifdef XCOFF_DEBUGGING_INFO
81#include "xcoffout.h"
82#endif
83
84/* .stabd code for line number. */
85#ifndef N_SLINE
86#define N_SLINE 0x44
87#endif
88
89/* .stabs code for included file name. */
90#ifndef N_SOL
91#define N_SOL 0x84
92#endif
93
94#ifndef INT_TYPE_SIZE
95#define INT_TYPE_SIZE BITS_PER_WORD
96#endif
97
98/* If we aren't using cc0, CC_STATUS_INIT shouldn't exist. So define a
99 null default for it to save conditionalization later. */
100#ifndef CC_STATUS_INIT
101#define CC_STATUS_INIT
102#endif
103
104/* How to start an assembler comment. */
105#ifndef ASM_COMMENT_START
106#define ASM_COMMENT_START ";#"
107#endif
108
109/* Is the given character a logical line separator for the assembler? */
110#ifndef IS_ASM_LOGICAL_LINE_SEPARATOR
111#define IS_ASM_LOGICAL_LINE_SEPARATOR(C) ((C) == ';')
112#endif
113
114/* Nonzero means this function is a leaf function, with no function calls.
115 This variable exists to be examined in FUNCTION_PROLOGUE
116 and FUNCTION_EPILOGUE. Always zero, unless set by some action. */
117int leaf_function;
118
119/* Last insn processed by final_scan_insn. */
120static rtx debug_insn = 0;
121
122/* Line number of last NOTE. */
123static int last_linenum;
124
eac40081
RK
125/* Highest line number in current block. */
126static int high_block_linenum;
127
128/* Likewise for function. */
129static int high_function_linenum;
130
3cf2715d
DE
131/* Filename of last NOTE. */
132static char *last_filename;
133
134/* Number of basic blocks seen so far;
135 used if profile_block_flag is set. */
136static int count_basic_blocks;
137
138/* Nonzero while outputting an `asm' with operands.
139 This means that inconsistencies are the user's fault, so don't abort.
140 The precise value is the insn being output, to pass to error_for_asm. */
141static rtx this_is_asm_operands;
142
143/* Number of operands of this insn, for an `asm' with operands. */
144static int insn_noperands;
145
146/* Compare optimization flag. */
147
148static rtx last_ignored_compare = 0;
149
150/* Flag indicating this insn is the start of a new basic block. */
151
152static int new_block = 1;
153
154/* All the symbol-blocks (levels of scoping) in the compilation
155 are assigned sequence numbers in order of appearance of the
156 beginnings of the symbol-blocks. Both final and dbxout do this,
157 and assume that they will both give the same number to each block.
158 Final uses these sequence numbers to generate assembler label names
159 LBBnnn and LBEnnn for the beginning and end of the symbol-block.
160 Dbxout uses the sequence numbers to generate references to the same labels
161 from the dbx debugging information.
162
163 Sdb records this level at the beginning of each function,
164 in order to find the current level when recursing down declarations.
165 It outputs the block beginning and endings
166 at the point in the asm file where the blocks would begin and end. */
167
168int next_block_index;
169
170/* Assign a unique number to each insn that is output.
171 This can be used to generate unique local labels. */
172
173static int insn_counter = 0;
174
175#ifdef HAVE_cc0
176/* This variable contains machine-dependent flags (defined in tm.h)
177 set and examined by output routines
178 that describe how to interpret the condition codes properly. */
179
180CC_STATUS cc_status;
181
182/* During output of an insn, this contains a copy of cc_status
183 from before the insn. */
184
185CC_STATUS cc_prev_status;
186#endif
187
188/* Indexed by hardware reg number, is 1 if that register is ever
189 used in the current function.
190
191 In life_analysis, or in stupid_life_analysis, this is set
192 up to record the hard regs used explicitly. Reload adds
193 in the hard regs used for holding pseudo regs. Final uses
194 it to generate the code in the function prologue and epilogue
195 to save and restore registers as needed. */
196
197char regs_ever_live[FIRST_PSEUDO_REGISTER];
198
199/* Nonzero means current function must be given a frame pointer.
200 Set in stmt.c if anything is allocated on the stack there.
201 Set in reload1.c if anything is allocated on the stack there. */
202
203int frame_pointer_needed;
204
205/* Assign unique numbers to labels generated for profiling. */
206
207int profile_label_no;
208
209/* Length so far allocated in PENDING_BLOCKS. */
210
211static int max_block_depth;
212
213/* Stack of sequence numbers of symbol-blocks of which we have seen the
214 beginning but not yet the end. Sequence numbers are assigned at
215 the beginning; this stack allows us to find the sequence number
216 of a block that is ending. */
217
218static int *pending_blocks;
219
220/* Number of elements currently in use in PENDING_BLOCKS. */
221
222static int block_depth;
223
224/* Nonzero if have enabled APP processing of our assembler output. */
225
226static int app_on;
227
228/* If we are outputting an insn sequence, this contains the sequence rtx.
229 Zero otherwise. */
230
231rtx final_sequence;
232
233#ifdef ASSEMBLER_DIALECT
234
235/* Number of the assembler dialect to use, starting at 0. */
236static int dialect_number;
237#endif
238
239/* Indexed by line number, nonzero if there is a note for that line. */
240
241static char *line_note_exists;
242
243/* Linked list to hold line numbers for each basic block. */
244
245struct bb_list {
246 struct bb_list *next; /* pointer to next basic block */
247 int line_num; /* line number */
248 int file_label_num; /* LPBC<n> label # for stored filename */
249 int func_label_num; /* LPBC<n> label # for stored function name */
250};
251
252static struct bb_list *bb_head = 0; /* Head of basic block list */
253static struct bb_list **bb_tail = &bb_head; /* Ptr to store next bb ptr */
254static int bb_file_label_num = -1; /* Current label # for file */
255static int bb_func_label_num = -1; /* Current label # for func */
256
257/* Linked list to hold the strings for each file and function name output. */
258
259struct bb_str {
260 struct bb_str *next; /* pointer to next string */
261 char *string; /* string */
262 int label_num; /* label number */
263 int length; /* string length */
264};
265
266extern rtx peephole PROTO((rtx));
267
268static struct bb_str *sbb_head = 0; /* Head of string list. */
269static struct bb_str **sbb_tail = &sbb_head; /* Ptr to store next bb str */
270static int sbb_label_num = 0; /* Last label used */
271
272static int asm_insn_count PROTO((rtx));
273static void profile_function PROTO((FILE *));
274static void profile_after_prologue PROTO((FILE *));
275static void add_bb PROTO((FILE *));
276static int add_bb_string PROTO((char *, int));
277static void output_source_line PROTO((FILE *, rtx));
278static rtx walk_alter_subreg PROTO((rtx));
279static int alter_cond PROTO((rtx));
cb649530 280static void output_asm_name PROTO((void));
3cf2715d
DE
281static void output_operand PROTO((rtx, int));
282static void leaf_renumber_regs PROTO((rtx));
1ba298e5
JW
283
284extern char *getpwd ();
3cf2715d
DE
285\f
286/* Initialize data in final at the beginning of a compilation. */
287
288void
289init_final (filename)
290 char *filename;
291{
292 next_block_index = 2;
293 app_on = 0;
294 max_block_depth = 20;
295 pending_blocks = (int *) xmalloc (20 * sizeof *pending_blocks);
296 final_sequence = 0;
297
298#ifdef ASSEMBLER_DIALECT
299 dialect_number = ASSEMBLER_DIALECT;
300#endif
301}
302
303/* Called at end of source file,
304 to output the block-profiling table for this entire compilation. */
305
306void
307end_final (filename)
308 char *filename;
309{
310 int i;
311
312 if (profile_block_flag)
313 {
314 char name[20];
315 int align = exact_log2 (BIGGEST_ALIGNMENT / BITS_PER_UNIT);
14e7bf7c 316 int size = (POINTER_SIZE / BITS_PER_UNIT) * count_basic_blocks;
3cf2715d
DE
317 int rounded = size;
318 struct bb_list *ptr;
319 struct bb_str *sptr;
320
321 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
322 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
323 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
324
325 data_section ();
326
327 /* Output the main header, of 10 words:
328 0: 1 if this file's initialized, else 0.
329 1: address of file name (LPBX1).
330 2: address of table of counts (LPBX2).
331 3: number of counts in the table.
332 4: always 0, for compatibility with Sun.
333
334 The following are GNU extensions:
335
336 5: address of table of start addrs of basic blocks (LPBX3).
337 6: Number of bytes in this header.
338 7: address of table of function names (LPBX4).
339 8: address of table of line numbers (LPBX5) or 0.
340 9: address of table of file names (LPBX6) or 0. */
341
342 ASM_OUTPUT_ALIGN (asm_out_file, align);
343
344 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 0);
345 /* zero word */
346 assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
347
348 /* address of filename */
349 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 1);
350 assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name), UNITS_PER_WORD, 1);
351
352 /* address of count table */
353 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 2);
354 assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name), UNITS_PER_WORD, 1);
355
356 /* count of the # of basic blocks */
357 assemble_integer (GEN_INT (count_basic_blocks), UNITS_PER_WORD, 1);
358
359 /* zero word (link field) */
360 assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
361
362 /* address of basic block start address table */
363 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
364 assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name), UNITS_PER_WORD, 1);
365
366 /* byte count for extended structure. */
367 assemble_integer (GEN_INT (10 * UNITS_PER_WORD), UNITS_PER_WORD, 1);
368
369 /* address of function name table */
370 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 4);
371 assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name), UNITS_PER_WORD, 1);
372
373 /* address of line number and filename tables if debugging. */
374 if (write_symbols != NO_DEBUG)
375 {
376 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 5);
377 assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name), UNITS_PER_WORD, 1);
378 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 6);
379 assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name), UNITS_PER_WORD, 1);
380 }
381 else
382 {
383 assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
384 assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
385 }
386
387 /* Output the file name changing the suffix to .d for Sun tcov
388 compatibility. */
389 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 1);
390 {
67e23d2f
JW
391 char *cwd = getpwd ();
392 int len = strlen (filename) + strlen (cwd) + 1;
393 char *data_file = (char *) alloca (len + 4);
394
395 strcpy (data_file, cwd);
396 strcat (data_file, "/");
397 strcat (data_file, filename);
3cf2715d
DE
398 strip_off_ending (data_file, len);
399 strcat (data_file, ".d");
400 assemble_string (data_file, strlen (data_file) + 1);
401 }
402
403 /* Make space for the table of counts. */
404 if (flag_no_common || size == 0)
405 {
406 /* Realign data section. */
407 ASM_OUTPUT_ALIGN (asm_out_file, align);
408 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 2);
409 if (size != 0)
410 assemble_zeros (size);
411 }
412 else
413 {
414 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 2);
415#ifdef ASM_OUTPUT_SHARED_LOCAL
416 if (flag_shared_data)
417 ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
418 else
419#endif
420#ifdef ASM_OUTPUT_ALIGNED_LOCAL
421 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size,
422 BIGGEST_ALIGNMENT);
423#else
424 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
425#endif
426 }
427
428 /* Output any basic block strings */
429 readonly_data_section ();
430 if (sbb_head)
431 {
432 ASM_OUTPUT_ALIGN (asm_out_file, align);
433 for (sptr = sbb_head; sptr != 0; sptr = sptr->next)
434 {
435 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBC", sptr->label_num);
436 assemble_string (sptr->string, sptr->length);
437 }
438 }
439
440 /* Output the table of addresses. */
441 /* Realign in new section */
442 ASM_OUTPUT_ALIGN (asm_out_file, align);
443 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 3);
444 for (i = 0; i < count_basic_blocks; i++)
445 {
446 ASM_GENERATE_INTERNAL_LABEL (name, "LPB", i);
447 assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name),
448 UNITS_PER_WORD, 1);
449 }
450
451 /* Output the table of function names. */
452 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 4);
453 for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
454 {
455 if (ptr->func_label_num >= 0)
456 {
457 ASM_GENERATE_INTERNAL_LABEL (name, "LPBC", ptr->func_label_num);
458 assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name),
459 UNITS_PER_WORD, 1);
460 }
461 else
462 assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
463 }
464
465 for ( ; i < count_basic_blocks; i++)
466 assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
467
468 if (write_symbols != NO_DEBUG)
469 {
470 /* Output the table of line numbers. */
471 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 5);
472 for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
473 assemble_integer (GEN_INT (ptr->line_num), UNITS_PER_WORD, 1);
474
475 for ( ; i < count_basic_blocks; i++)
476 assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
477
478 /* Output the table of file names. */
479 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 6);
480 for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
481 {
482 if (ptr->file_label_num >= 0)
483 {
484 ASM_GENERATE_INTERNAL_LABEL (name, "LPBC", ptr->file_label_num);
485 assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name),
486 UNITS_PER_WORD, 1);
487 }
488 else
489 assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
490 }
491
492 for ( ; i < count_basic_blocks; i++)
493 assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
494 }
495
496 /* End with the address of the table of addresses,
497 so we can find it easily, as the last word in the file's text. */
498 ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
499 assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name), UNITS_PER_WORD, 1);
500 }
501}
502
503/* Enable APP processing of subsequent output.
504 Used before the output from an `asm' statement. */
505
506void
507app_enable ()
508{
509 if (! app_on)
510 {
511 fprintf (asm_out_file, ASM_APP_ON);
512 app_on = 1;
513 }
514}
515
516/* Disable APP processing of subsequent output.
517 Called from varasm.c before most kinds of output. */
518
519void
520app_disable ()
521{
522 if (app_on)
523 {
524 fprintf (asm_out_file, ASM_APP_OFF);
525 app_on = 0;
526 }
527}
528\f
529/* Return the number of slots filled in the current
530 delayed branch sequence (we don't count the insn needing the
531 delay slot). Zero if not in a delayed branch sequence. */
532
533#ifdef DELAY_SLOTS
534int
535dbr_sequence_length ()
536{
537 if (final_sequence != 0)
538 return XVECLEN (final_sequence, 0) - 1;
539 else
540 return 0;
541}
542#endif
543\f
544/* The next two pages contain routines used to compute the length of an insn
545 and to shorten branches. */
546
547/* Arrays for insn lengths, and addresses. The latter is referenced by
548 `insn_current_length'. */
549
550static short *insn_lengths;
551int *insn_addresses;
552
553/* Address of insn being processed. Used by `insn_current_length'. */
554int insn_current_address;
555
556/* Indicate that branch shortening hasn't yet been done. */
557
558void
559init_insn_lengths ()
560{
561 insn_lengths = 0;
562}
563
564/* Obtain the current length of an insn. If branch shortening has been done,
565 get its actual length. Otherwise, get its maximum length. */
566
567int
568get_attr_length (insn)
569 rtx insn;
570{
571#ifdef HAVE_ATTR_length
572 rtx body;
573 int i;
574 int length = 0;
575
576 if (insn_lengths)
577 return insn_lengths[INSN_UID (insn)];
578 else
579 switch (GET_CODE (insn))
580 {
581 case NOTE:
582 case BARRIER:
583 case CODE_LABEL:
584 return 0;
585
586 case CALL_INSN:
587 length = insn_default_length (insn);
588 break;
589
590 case JUMP_INSN:
591 body = PATTERN (insn);
592 if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
593 {
594 /* This only takes room if jump tables go into the text section. */
595#if !defined(READONLY_DATA_SECTION) || defined(JUMP_TABLES_IN_TEXT_SECTION)
596 length = (XVECLEN (body, GET_CODE (body) == ADDR_DIFF_VEC)
597 * GET_MODE_SIZE (GET_MODE (body)));
598
599 /* Be pessimistic and assume worst-case alignment. */
600 length += (GET_MODE_SIZE (GET_MODE (body)) - 1);
601#else
602 return 0;
603#endif
604 }
605 else
606 length = insn_default_length (insn);
607 break;
608
609 case INSN:
610 body = PATTERN (insn);
611 if (GET_CODE (body) == USE || GET_CODE (body) == CLOBBER)
612 return 0;
613
614 else if (GET_CODE (body) == ASM_INPUT || asm_noperands (body) >= 0)
615 length = asm_insn_count (body) * insn_default_length (insn);
616 else if (GET_CODE (body) == SEQUENCE)
617 for (i = 0; i < XVECLEN (body, 0); i++)
618 length += get_attr_length (XVECEXP (body, 0, i));
619 else
620 length = insn_default_length (insn);
621 }
622
623#ifdef ADJUST_INSN_LENGTH
624 ADJUST_INSN_LENGTH (insn, length);
625#endif
626 return length;
627#else /* not HAVE_ATTR_length */
628 return 0;
629#endif /* not HAVE_ATTR_length */
630}
631\f
632/* Make a pass over all insns and compute their actual lengths by shortening
633 any branches of variable length if possible. */
634
635/* Give a default value for the lowest address in a function. */
636
637#ifndef FIRST_INSN_ADDRESS
638#define FIRST_INSN_ADDRESS 0
639#endif
640
641void
642shorten_branches (first)
643 rtx first;
644{
645#ifdef HAVE_ATTR_length
646 rtx insn;
647 int something_changed = 1;
648 int max_uid = 0;
649 char *varying_length;
650 rtx body;
651 int uid;
652
653 /* Compute maximum UID and allocate arrays. */
654 for (insn = first; insn; insn = NEXT_INSN (insn))
655 if (INSN_UID (insn) > max_uid)
656 max_uid = INSN_UID (insn);
657
658 max_uid++;
659 insn_lengths = (short *) oballoc (max_uid * sizeof (short));
660 insn_addresses = (int *) oballoc (max_uid * sizeof (int));
661 varying_length = (char *) oballoc (max_uid * sizeof (char));
662
663 /* Compute initial lengths, addresses, and varying flags for each insn. */
664 for (insn_current_address = FIRST_INSN_ADDRESS, insn = first;
665 insn != 0;
666 insn_current_address += insn_lengths[uid], insn = NEXT_INSN (insn))
667 {
668 uid = INSN_UID (insn);
669 insn_addresses[uid] = insn_current_address;
670 insn_lengths[uid] = 0;
671 varying_length[uid] = 0;
672
673 if (GET_CODE (insn) == NOTE || GET_CODE (insn) == BARRIER
674 || GET_CODE (insn) == CODE_LABEL)
675 continue;
676
677 body = PATTERN (insn);
678 if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
679 {
680 /* This only takes room if read-only data goes into the text
681 section. */
682#if !defined(READONLY_DATA_SECTION) || defined(JUMP_TABLES_IN_TEXT_SECTION)
683 int unitsize = GET_MODE_SIZE (GET_MODE (body));
684
685 insn_lengths[uid] = (XVECLEN (body, GET_CODE (body) == ADDR_DIFF_VEC)
686 * GET_MODE_SIZE (GET_MODE (body)));
687
688 /* Account for possible alignment. */
689 insn_lengths[uid]
690 += unitsize - (insn_current_address & (unitsize - 1));
691#else
692 ;
693#endif
694 }
695 else if (asm_noperands (body) >= 0)
696 insn_lengths[uid] = asm_insn_count (body) * insn_default_length (insn);
697 else if (GET_CODE (body) == SEQUENCE)
698 {
699 int i;
700 int const_delay_slots;
701#ifdef DELAY_SLOTS
702 const_delay_slots = const_num_delay_slots (XVECEXP (body, 0, 0));
703#else
704 const_delay_slots = 0;
705#endif
706 /* Inside a delay slot sequence, we do not do any branch shortening
707 if the shortening could change the number of delay slots
708 of the branch. */
709 for (i = 0; i < XVECLEN (body, 0); i++)
710 {
711 rtx inner_insn = XVECEXP (body, 0, i);
712 int inner_uid = INSN_UID (inner_insn);
713 int inner_length;
714
715 if (asm_noperands (PATTERN (XVECEXP (body, 0, i))) >= 0)
716 inner_length = (asm_insn_count (PATTERN (inner_insn))
717 * insn_default_length (inner_insn));
718 else
719 inner_length = insn_default_length (inner_insn);
720
721 insn_lengths[inner_uid] = inner_length;
722 if (const_delay_slots)
723 {
724 if ((varying_length[inner_uid]
725 = insn_variable_length_p (inner_insn)) != 0)
726 varying_length[uid] = 1;
727 insn_addresses[inner_uid] = (insn_current_address +
728 insn_lengths[uid]);
729 }
730 else
731 varying_length[inner_uid] = 0;
732 insn_lengths[uid] += inner_length;
733 }
734 }
735 else if (GET_CODE (body) != USE && GET_CODE (body) != CLOBBER)
736 {
737 insn_lengths[uid] = insn_default_length (insn);
738 varying_length[uid] = insn_variable_length_p (insn);
739 }
740
741 /* If needed, do any adjustment. */
742#ifdef ADJUST_INSN_LENGTH
743 ADJUST_INSN_LENGTH (insn, insn_lengths[uid]);
744#endif
745 }
746
747 /* Now loop over all the insns finding varying length insns. For each,
748 get the current insn length. If it has changed, reflect the change.
749 When nothing changes for a full pass, we are done. */
750
751 while (something_changed)
752 {
753 something_changed = 0;
754 for (insn_current_address = FIRST_INSN_ADDRESS, insn = first;
755 insn != 0;
756 insn = NEXT_INSN (insn))
757 {
758 int new_length;
759 int tmp_length;
760
761 uid = INSN_UID (insn);
762 insn_addresses[uid] = insn_current_address;
763 if (! varying_length[uid])
764 {
765 insn_current_address += insn_lengths[uid];
766 continue;
767 }
768 if (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
769 {
770 int i;
771
772 body = PATTERN (insn);
773 new_length = 0;
774 for (i = 0; i < XVECLEN (body, 0); i++)
775 {
776 rtx inner_insn = XVECEXP (body, 0, i);
777 int inner_uid = INSN_UID (inner_insn);
778 int inner_length;
779
780 insn_addresses[inner_uid] = insn_current_address;
781
782 /* insn_current_length returns 0 for insns with a
783 non-varying length. */
784 if (! varying_length[inner_uid])
785 inner_length = insn_lengths[inner_uid];
786 else
787 inner_length = insn_current_length (inner_insn);
788
789 if (inner_length != insn_lengths[inner_uid])
790 {
791 insn_lengths[inner_uid] = inner_length;
792 something_changed = 1;
793 }
794 insn_current_address += insn_lengths[inner_uid];
795 new_length += inner_length;
796 }
797 }
798 else
799 {
800 new_length = insn_current_length (insn);
801 insn_current_address += new_length;
802 }
803
804#ifdef SHORTEN_WITH_ADJUST_INSN_LENGTH
805#ifdef ADJUST_INSN_LENGTH
806 /* If needed, do any adjustment. */
807 tmp_length = new_length;
808 ADJUST_INSN_LENGTH (insn, new_length);
809 insn_current_address += (new_length - tmp_length);
810#endif
811#endif
812
813 if (new_length != insn_lengths[uid])
814 {
815 insn_lengths[uid] = new_length;
816 something_changed = 1;
817 }
818 }
bb4aaf18
TG
819 /* For a non-optimizing compile, do only a single pass. */
820 if (!optimize)
821 break;
3cf2715d
DE
822 }
823#endif /* HAVE_ATTR_length */
824}
825
826#ifdef HAVE_ATTR_length
827/* Given the body of an INSN known to be generated by an ASM statement, return
828 the number of machine instructions likely to be generated for this insn.
829 This is used to compute its length. */
830
831static int
832asm_insn_count (body)
833 rtx body;
834{
835 char *template;
836 int count = 1;
837
5d0930ea
DE
838 if (GET_CODE (body) == ASM_INPUT)
839 template = XSTR (body, 0);
840 else
841 template = decode_asm_operands (body, NULL_PTR, NULL_PTR,
842 NULL_PTR, NULL_PTR);
843
844 for ( ; *template; template++)
3cf2715d
DE
845 if (IS_ASM_LOGICAL_LINE_SEPARATOR(*template) || *template == '\n')
846 count++;
847
848 return count;
849}
850#endif
851\f
852/* Output assembler code for the start of a function,
853 and initialize some of the variables in this file
854 for the new function. The label for the function and associated
855 assembler pseudo-ops have already been output in `assemble_start_function'.
856
857 FIRST is the first insn of the rtl for the function being compiled.
858 FILE is the file to write assembler code to.
859 OPTIMIZE is nonzero if we should eliminate redundant
860 test and compare insns. */
861
862void
863final_start_function (first, file, optimize)
864 rtx first;
865 FILE *file;
866 int optimize;
867{
868 block_depth = 0;
869
870 this_is_asm_operands = 0;
871
872#ifdef NON_SAVING_SETJMP
873 /* A function that calls setjmp should save and restore all the
874 call-saved registers on a system where longjmp clobbers them. */
875 if (NON_SAVING_SETJMP && current_function_calls_setjmp)
876 {
877 int i;
878
879 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
880 if (!call_used_regs[i] && !call_fixed_regs[i])
881 regs_ever_live[i] = 1;
882 }
883#endif
884
885 /* Initial line number is supposed to be output
886 before the function's prologue and label
887 so that the function's address will not appear to be
888 in the last statement of the preceding function. */
889 if (NOTE_LINE_NUMBER (first) != NOTE_INSN_DELETED)
5fad6898
RK
890 last_linenum = high_block_linenum = high_function_linenum
891 = NOTE_LINE_NUMBER (first);
eac40081 892
5fad6898
RK
893 /* For SDB and XCOFF, the function beginning must be marked between
894 the function label and the prologue. We always need this, even when
895 -g1 was used. */
2e2bbce2 896#ifdef SDB_DEBUGGING_INFO
5fad6898
RK
897 if (write_symbols == SDB_DEBUG)
898 sdbout_begin_function (last_linenum);
899 else
2e2bbce2 900#endif
3cf2715d 901#ifdef XCOFF_DEBUGGING_INFO
5fad6898
RK
902 if (write_symbols == XCOFF_DEBUG)
903 xcoffout_begin_function (file, last_linenum);
904 else
3cf2715d 905#endif
5fad6898
RK
906 /* But only output line number for other debug info types if -g2
907 or better. */
908 if (NOTE_LINE_NUMBER (first) != NOTE_INSN_DELETED)
909 output_source_line (file, first);
3cf2715d
DE
910
911#ifdef LEAF_REG_REMAP
912 if (leaf_function)
913 leaf_renumber_regs (first);
914#endif
915
916 /* The Sun386i and perhaps other machines don't work right
917 if the profiling code comes after the prologue. */
918#ifdef PROFILE_BEFORE_PROLOGUE
919 if (profile_flag)
920 profile_function (file);
921#endif /* PROFILE_BEFORE_PROLOGUE */
922
923#ifdef FUNCTION_PROLOGUE
924 /* First output the function prologue: code to set up the stack frame. */
925 FUNCTION_PROLOGUE (file, get_frame_size ());
926#endif
927
928#if defined (SDB_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
929 if (write_symbols == SDB_DEBUG || write_symbols == XCOFF_DEBUG)
930 next_block_index = 1;
931#endif
932
933 /* If the machine represents the prologue as RTL, the profiling code must
934 be emitted when NOTE_INSN_PROLOGUE_END is scanned. */
935#ifdef HAVE_prologue
936 if (! HAVE_prologue)
937#endif
938 profile_after_prologue (file);
939
940 profile_label_no++;
941
942 /* If we are doing basic block profiling, remember a printable version
943 of the function name. */
944 if (profile_block_flag)
945 {
946 char *junk = "function";
947 bb_func_label_num =
948 add_bb_string ((*decl_printable_name) (current_function_decl, &junk), FALSE);
949 }
950}
951
952static void
953profile_after_prologue (file)
954 FILE *file;
955{
956#ifdef FUNCTION_BLOCK_PROFILER
957 if (profile_block_flag)
958 {
959 FUNCTION_BLOCK_PROFILER (file, profile_label_no);
960 }
961#endif /* FUNCTION_BLOCK_PROFILER */
962
963#ifndef PROFILE_BEFORE_PROLOGUE
964 if (profile_flag)
965 profile_function (file);
966#endif /* not PROFILE_BEFORE_PROLOGUE */
967}
968
969static void
970profile_function (file)
971 FILE *file;
972{
14e7bf7c 973 int align = MIN (BIGGEST_ALIGNMENT, POINTER_SIZE);
3cf2715d
DE
974 int sval = current_function_returns_struct;
975 int cxt = current_function_needs_context;
976
977 data_section ();
978 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
979 ASM_OUTPUT_INTERNAL_LABEL (file, "LP", profile_label_no);
14e7bf7c 980 assemble_integer (const0_rtx, POINTER_SIZE / BITS_PER_UNIT, 1);
3cf2715d
DE
981
982 text_section ();
983
984#ifdef STRUCT_VALUE_INCOMING_REGNUM
985 if (sval)
986 ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_INCOMING_REGNUM);
987#else
988#ifdef STRUCT_VALUE_REGNUM
989 if (sval)
990 ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_REGNUM);
991#endif
992#endif
993
994#if 0
995#ifdef STATIC_CHAIN_INCOMING_REGNUM
996 if (cxt)
997 ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_INCOMING_REGNUM);
998#else
999#ifdef STATIC_CHAIN_REGNUM
1000 if (cxt)
1001 ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_REGNUM);
1002#endif
1003#endif
1004#endif /* 0 */
1005
1006 FUNCTION_PROFILER (file, profile_label_no);
1007
1008#if 0
1009#ifdef STATIC_CHAIN_INCOMING_REGNUM
1010 if (cxt)
1011 ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_INCOMING_REGNUM);
1012#else
1013#ifdef STATIC_CHAIN_REGNUM
1014 if (cxt)
1015 ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_REGNUM);
1016#endif
1017#endif
1018#endif /* 0 */
1019
1020#ifdef STRUCT_VALUE_INCOMING_REGNUM
1021 if (sval)
1022 ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_INCOMING_REGNUM);
1023#else
1024#ifdef STRUCT_VALUE_REGNUM
1025 if (sval)
1026 ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_REGNUM);
1027#endif
1028#endif
1029}
1030
1031/* Output assembler code for the end of a function.
1032 For clarity, args are same as those of `final_start_function'
1033 even though not all of them are needed. */
1034
1035void
1036final_end_function (first, file, optimize)
1037 rtx first;
1038 FILE *file;
1039 int optimize;
1040{
1041 if (app_on)
1042 {
1043 fprintf (file, ASM_APP_OFF);
1044 app_on = 0;
1045 }
1046
1047#ifdef SDB_DEBUGGING_INFO
1048 if (write_symbols == SDB_DEBUG)
eac40081 1049 sdbout_end_function (high_function_linenum);
3cf2715d
DE
1050#endif
1051
1052#ifdef DWARF_DEBUGGING_INFO
1053 if (write_symbols == DWARF_DEBUG)
1054 dwarfout_end_function ();
1055#endif
1056
1057#ifdef XCOFF_DEBUGGING_INFO
1058 if (write_symbols == XCOFF_DEBUG)
eac40081 1059 xcoffout_end_function (file, high_function_linenum);
3cf2715d
DE
1060#endif
1061
1062#ifdef FUNCTION_EPILOGUE
1063 /* Finally, output the function epilogue:
1064 code to restore the stack frame and return to the caller. */
1065 FUNCTION_EPILOGUE (file, get_frame_size ());
1066#endif
1067
1068#ifdef SDB_DEBUGGING_INFO
1069 if (write_symbols == SDB_DEBUG)
1070 sdbout_end_epilogue ();
1071#endif
1072
1073#ifdef DWARF_DEBUGGING_INFO
1074 if (write_symbols == DWARF_DEBUG)
1075 dwarfout_end_epilogue ();
1076#endif
1077
1078#ifdef XCOFF_DEBUGGING_INFO
1079 if (write_symbols == XCOFF_DEBUG)
1080 xcoffout_end_epilogue (file);
1081#endif
1082
1083 bb_func_label_num = -1; /* not in function, nuke label # */
1084
1085 /* If FUNCTION_EPILOGUE is not defined, then the function body
1086 itself contains return instructions wherever needed. */
1087}
1088\f
1089/* Add a block to the linked list that remembers the current line/file/function
1090 for basic block profiling. Emit the label in front of the basic block and
1091 the instructions that increment the count field. */
1092
1093static void
1094add_bb (file)
1095 FILE *file;
1096{
1097 struct bb_list *ptr = (struct bb_list *) permalloc (sizeof (struct bb_list));
1098
1099 /* Add basic block to linked list. */
1100 ptr->next = 0;
1101 ptr->line_num = last_linenum;
1102 ptr->file_label_num = bb_file_label_num;
1103 ptr->func_label_num = bb_func_label_num;
1104 *bb_tail = ptr;
1105 bb_tail = &ptr->next;
1106
1107 /* Enable the table of basic-block use counts
1108 to point at the code it applies to. */
1109 ASM_OUTPUT_INTERNAL_LABEL (file, "LPB", count_basic_blocks);
1110
1111 /* Before first insn of this basic block, increment the
1112 count of times it was entered. */
1113#ifdef BLOCK_PROFILER
1114 BLOCK_PROFILER (file, count_basic_blocks);
1115 CC_STATUS_INIT;
1116#endif
1117
1118 new_block = 0;
1119 count_basic_blocks++;
1120}
1121
1122/* Add a string to be used for basic block profiling. */
1123
1124static int
1125add_bb_string (string, perm_p)
1126 char *string;
1127 int perm_p;
1128{
1129 int len;
1130 struct bb_str *ptr = 0;
1131
1132 if (!string)
1133 {
1134 string = "<unknown>";
1135 perm_p = TRUE;
1136 }
1137
1138 /* Allocate a new string if the current string isn't permanent. If
1139 the string is permanent search for the same string in other
1140 allocations. */
1141
1142 len = strlen (string) + 1;
1143 if (!perm_p)
1144 {
1145 char *p = (char *) permalloc (len);
1146 bcopy (string, p, len);
1147 string = p;
1148 }
1149 else
1150 for (ptr = sbb_head; ptr != (struct bb_str *)0; ptr = ptr->next)
1151 if (ptr->string == string)
1152 break;
1153
1154 /* Allocate a new string block if we need to. */
1155 if (!ptr)
1156 {
1157 ptr = (struct bb_str *) permalloc (sizeof (*ptr));
1158 ptr->next = 0;
1159 ptr->length = len;
1160 ptr->label_num = sbb_label_num++;
1161 ptr->string = string;
1162 *sbb_tail = ptr;
1163 sbb_tail = &ptr->next;
1164 }
1165
1166 return ptr->label_num;
1167}
1168
1169\f
1170/* Output assembler code for some insns: all or part of a function.
1171 For description of args, see `final_start_function', above.
1172
1173 PRESCAN is 1 if we are not really outputting,
1174 just scanning as if we were outputting.
1175 Prescanning deletes and rearranges insns just like ordinary output.
1176 PRESCAN is -2 if we are outputting after having prescanned.
1177 In this case, don't try to delete or rearrange insns
1178 because that has already been done.
1179 Prescanning is done only on certain machines. */
1180
1181void
1182final (first, file, optimize, prescan)
1183 rtx first;
1184 FILE *file;
1185 int optimize;
1186 int prescan;
1187{
1188 register rtx insn;
1189 int max_line = 0;
1190
1191 last_ignored_compare = 0;
1192 new_block = 1;
1193
1194 /* Make a map indicating which line numbers appear in this function.
1195 When producing SDB debugging info, delete troublesome line number
1196 notes from inlined functions in other files as well as duplicate
1197 line number notes. */
1198#ifdef SDB_DEBUGGING_INFO
1199 if (write_symbols == SDB_DEBUG)
1200 {
1201 rtx last = 0;
1202 for (insn = first; insn; insn = NEXT_INSN (insn))
1203 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
1204 {
1205 if ((RTX_INTEGRATED_P (insn)
1206 && strcmp (NOTE_SOURCE_FILE (insn), main_input_filename) != 0)
1207 || (last != 0
1208 && NOTE_LINE_NUMBER (insn) == NOTE_LINE_NUMBER (last)
1209 && NOTE_SOURCE_FILE (insn) == NOTE_SOURCE_FILE (last)))
1210 {
1211 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
1212 NOTE_SOURCE_FILE (insn) = 0;
1213 continue;
1214 }
1215 last = insn;
1216 if (NOTE_LINE_NUMBER (insn) > max_line)
1217 max_line = NOTE_LINE_NUMBER (insn);
1218 }
1219 }
1220 else
1221#endif
1222 {
1223 for (insn = first; insn; insn = NEXT_INSN (insn))
1224 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > max_line)
1225 max_line = NOTE_LINE_NUMBER (insn);
1226 }
1227
1228 line_note_exists = (char *) oballoc (max_line + 1);
1229 bzero (line_note_exists, max_line + 1);
1230
1231 for (insn = first; insn; insn = NEXT_INSN (insn))
1232 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
1233 line_note_exists[NOTE_LINE_NUMBER (insn)] = 1;
1234
1235 init_recog ();
1236
1237 CC_STATUS_INIT;
1238
1239 /* Output the insns. */
1240 for (insn = NEXT_INSN (first); insn;)
1241 insn = final_scan_insn (insn, file, optimize, prescan, 0);
1242
1243 /* Do basic-block profiling here
1244 if the last insn was a conditional branch. */
1245 if (profile_block_flag && new_block)
1246 add_bb (file);
1247}
1248\f
1249/* The final scan for one insn, INSN.
1250 Args are same as in `final', except that INSN
1251 is the insn being scanned.
1252 Value returned is the next insn to be scanned.
1253
1254 NOPEEPHOLES is the flag to disallow peephole processing (currently
1255 used for within delayed branch sequence output). */
1256
1257rtx
1258final_scan_insn (insn, file, optimize, prescan, nopeepholes)
1259 rtx insn;
1260 FILE *file;
1261 int optimize;
1262 int prescan;
1263 int nopeepholes;
1264{
1265 register int i;
1266 insn_counter++;
1267
1268 /* Ignore deleted insns. These can occur when we split insns (due to a
1269 template of "#") while not optimizing. */
1270 if (INSN_DELETED_P (insn))
1271 return NEXT_INSN (insn);
1272
1273 switch (GET_CODE (insn))
1274 {
1275 case NOTE:
1276 if (prescan > 0)
1277 break;
1278
1279 /* Align the beginning of a loop, for higher speed
1280 on certain machines. */
1281
1282 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG && optimize > 0)
1283 {
1284#ifdef ASM_OUTPUT_LOOP_ALIGN
1285 rtx next = next_nonnote_insn (insn);
1286 if (next && GET_CODE (next) == CODE_LABEL)
1287 {
1288 ASM_OUTPUT_LOOP_ALIGN (asm_out_file);
1289 }
1290#endif
1291 break;
1292 }
1293 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END)
1294 break;
1295
1296 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_PROLOGUE_END)
1297 {
1298#ifdef FUNCTION_END_PROLOGUE
1299 FUNCTION_END_PROLOGUE (file);
1300#endif
1301 profile_after_prologue (file);
1302 break;
1303 }
1304
1305#ifdef FUNCTION_BEGIN_EPILOGUE
1306 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EPILOGUE_BEG)
1307 {
1308 FUNCTION_BEGIN_EPILOGUE (file);
1309 break;
1310 }
1311#endif
1312
1313 if (write_symbols == NO_DEBUG)
1314 break;
1315 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_BEG)
1316 {
3cf2715d 1317#ifdef DWARF_DEBUGGING_INFO
2e2bbce2
RK
1318 /* This outputs a marker where the function body starts, so it
1319 must be after the prologue. */
3cf2715d
DE
1320 if (write_symbols == DWARF_DEBUG)
1321 dwarfout_begin_function ();
1322#endif
1323 break;
1324 }
1325 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED)
1326 break; /* An insn that was "deleted" */
1327 if (app_on)
1328 {
1329 fprintf (file, ASM_APP_OFF);
1330 app_on = 0;
1331 }
1332 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
1333 && (debug_info_level == DINFO_LEVEL_NORMAL
1334 || debug_info_level == DINFO_LEVEL_VERBOSE
1335#ifdef DWARF_DEBUGGING_INFO
1336 || write_symbols == DWARF_DEBUG
1337#endif
1338 )
1339 )
1340 {
1341 /* Beginning of a symbol-block. Assign it a sequence number
1342 and push the number onto the stack PENDING_BLOCKS. */
1343
1344 if (block_depth == max_block_depth)
1345 {
1346 /* PENDING_BLOCKS is full; make it longer. */
1347 max_block_depth *= 2;
1348 pending_blocks
1349 = (int *) xrealloc (pending_blocks,
1350 max_block_depth * sizeof (int));
1351 }
1352 pending_blocks[block_depth++] = next_block_index;
1353
eac40081
RK
1354 high_block_linenum = last_linenum;
1355
3cf2715d
DE
1356 /* Output debugging info about the symbol-block beginning. */
1357
1358#ifdef SDB_DEBUGGING_INFO
1359 if (write_symbols == SDB_DEBUG)
1360 sdbout_begin_block (file, last_linenum, next_block_index);
1361#endif
1362#ifdef XCOFF_DEBUGGING_INFO
1363 if (write_symbols == XCOFF_DEBUG)
1364 xcoffout_begin_block (file, last_linenum, next_block_index);
1365#endif
1366#ifdef DBX_DEBUGGING_INFO
1367 if (write_symbols == DBX_DEBUG)
1368 ASM_OUTPUT_INTERNAL_LABEL (file, "LBB", next_block_index);
1369#endif
1370#ifdef DWARF_DEBUGGING_INFO
1371 if (write_symbols == DWARF_DEBUG && block_depth > 1)
1372 dwarfout_begin_block (next_block_index);
1373#endif
1374
1375 next_block_index++;
1376 }
1377 else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END
1378 && (debug_info_level == DINFO_LEVEL_NORMAL
1379 || debug_info_level == DINFO_LEVEL_VERBOSE
1380#ifdef DWARF_DEBUGGING_INFO
1381 || write_symbols == DWARF_DEBUG
1382#endif
1383 )
1384 )
1385 {
1386 /* End of a symbol-block. Pop its sequence number off
1387 PENDING_BLOCKS and output debugging info based on that. */
1388
1389 --block_depth;
1390
1391#ifdef XCOFF_DEBUGGING_INFO
1392 if (write_symbols == XCOFF_DEBUG && block_depth >= 0)
eac40081
RK
1393 xcoffout_end_block (file, high_block_linenum,
1394 pending_blocks[block_depth]);
3cf2715d
DE
1395#endif
1396#ifdef DBX_DEBUGGING_INFO
1397 if (write_symbols == DBX_DEBUG && block_depth >= 0)
1398 ASM_OUTPUT_INTERNAL_LABEL (file, "LBE",
1399 pending_blocks[block_depth]);
1400#endif
1401#ifdef SDB_DEBUGGING_INFO
1402 if (write_symbols == SDB_DEBUG && block_depth >= 0)
eac40081
RK
1403 sdbout_end_block (file, high_block_linenum,
1404 pending_blocks[block_depth]);
3cf2715d
DE
1405#endif
1406#ifdef DWARF_DEBUGGING_INFO
1407 if (write_symbols == DWARF_DEBUG && block_depth >= 1)
1408 dwarfout_end_block (pending_blocks[block_depth]);
1409#endif
1410 }
1411 else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED_LABEL
1412 && (debug_info_level == DINFO_LEVEL_NORMAL
1413 || debug_info_level == DINFO_LEVEL_VERBOSE))
1414 {
1415#ifdef DWARF_DEBUGGING_INFO
1416 if (write_symbols == DWARF_DEBUG)
1417 dwarfout_label (insn);
1418#endif
1419 }
1420 else if (NOTE_LINE_NUMBER (insn) > 0)
1421 /* This note is a line-number. */
1422 {
1423 register rtx note;
1424
1425#if 0 /* This is what we used to do. */
1426 output_source_line (file, insn);
1427#endif
1428 int note_after = 0;
1429
1430 /* If there is anything real after this note,
1431 output it. If another line note follows, omit this one. */
1432 for (note = NEXT_INSN (insn); note; note = NEXT_INSN (note))
1433 {
1434 if (GET_CODE (note) != NOTE && GET_CODE (note) != CODE_LABEL)
1435 break;
1436 /* These types of notes can be significant
1437 so make sure the preceding line number stays. */
1438 else if (GET_CODE (note) == NOTE
1439 && (NOTE_LINE_NUMBER (note) == NOTE_INSN_BLOCK_BEG
1440 || NOTE_LINE_NUMBER (note) == NOTE_INSN_BLOCK_END
1441 || NOTE_LINE_NUMBER (note) == NOTE_INSN_FUNCTION_BEG))
1442 break;
1443 else if (GET_CODE (note) == NOTE && NOTE_LINE_NUMBER (note) > 0)
1444 {
1445 /* Another line note follows; we can delete this note
1446 if no intervening line numbers have notes elsewhere. */
1447 int num;
1448 for (num = NOTE_LINE_NUMBER (insn) + 1;
1449 num < NOTE_LINE_NUMBER (note);
1450 num++)
1451 if (line_note_exists[num])
1452 break;
1453
1454 if (num >= NOTE_LINE_NUMBER (note))
1455 note_after = 1;
1456 break;
1457 }
1458 }
1459
1460 /* Output this line note
1461 if it is the first or the last line note in a row. */
1462 if (!note_after)
1463 output_source_line (file, insn);
1464 }
1465 break;
1466
1467 case BARRIER:
1468#ifdef ASM_OUTPUT_ALIGN_CODE
1469 /* Don't litter the assembler output with needless alignments. A
1470 BARRIER will be placed at the end of every function if HAVE_epilogue
1471 is true. */
1472 if (NEXT_INSN (insn))
1473 ASM_OUTPUT_ALIGN_CODE (file);
1474#endif
1475 break;
1476
1477 case CODE_LABEL:
1478 CC_STATUS_INIT;
1479 if (prescan > 0)
1480 break;
1481 new_block = 1;
1482#ifdef SDB_DEBUGGING_INFO
1483 if (write_symbols == SDB_DEBUG && LABEL_NAME (insn))
1484 sdbout_label (insn);
1485#endif
1486#ifdef DWARF_DEBUGGING_INFO
1487 if (write_symbols == DWARF_DEBUG && LABEL_NAME (insn))
1488 dwarfout_label (insn);
1489#endif
1490 if (app_on)
1491 {
1492 fprintf (file, ASM_APP_OFF);
1493 app_on = 0;
1494 }
1495 if (NEXT_INSN (insn) != 0
1496 && GET_CODE (NEXT_INSN (insn)) == JUMP_INSN)
1497 {
1498 rtx nextbody = PATTERN (NEXT_INSN (insn));
1499
1500 /* If this label is followed by a jump-table,
1501 make sure we put the label in the read-only section. Also
1502 possibly write the label and jump table together. */
1503
1504 if (GET_CODE (nextbody) == ADDR_VEC
1505 || GET_CODE (nextbody) == ADDR_DIFF_VEC)
1506 {
1507#ifndef JUMP_TABLES_IN_TEXT_SECTION
1508 readonly_data_section ();
1509#ifdef READONLY_DATA_SECTION
1510 ASM_OUTPUT_ALIGN (file,
1511 exact_log2 (BIGGEST_ALIGNMENT
1512 / BITS_PER_UNIT));
1513#endif /* READONLY_DATA_SECTION */
1514#else /* JUMP_TABLES_IN_TEXT_SECTION */
4d1065ed 1515 function_section (current_function_decl);
3cf2715d
DE
1516#endif /* JUMP_TABLES_IN_TEXT_SECTION */
1517#ifdef ASM_OUTPUT_CASE_LABEL
1518 ASM_OUTPUT_CASE_LABEL (file, "L", CODE_LABEL_NUMBER (insn),
1519 NEXT_INSN (insn));
1520#else
1521 ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
1522#endif
1523 break;
1524 }
1525 }
1526
1527 ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
1528 break;
1529
1530 default:
1531 {
1532 register rtx body = PATTERN (insn);
1533 int insn_code_number;
1534 char *template;
1535 rtx note;
1536
1537 /* An INSN, JUMP_INSN or CALL_INSN.
1538 First check for special kinds that recog doesn't recognize. */
1539
1540 if (GET_CODE (body) == USE /* These are just declarations */
1541 || GET_CODE (body) == CLOBBER)
1542 break;
1543
1544#ifdef HAVE_cc0
1545 /* If there is a REG_CC_SETTER note on this insn, it means that
1546 the setting of the condition code was done in the delay slot
1547 of the insn that branched here. So recover the cc status
1548 from the insn that set it. */
1549
1550 note = find_reg_note (insn, REG_CC_SETTER, NULL_RTX);
1551 if (note)
1552 {
1553 NOTICE_UPDATE_CC (PATTERN (XEXP (note, 0)), XEXP (note, 0));
1554 cc_prev_status = cc_status;
1555 }
1556#endif
1557
1558 /* Detect insns that are really jump-tables
1559 and output them as such. */
1560
1561 if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
1562 {
1563 register int vlen, idx;
1564
1565 if (prescan > 0)
1566 break;
1567
1568 if (app_on)
1569 {
1570 fprintf (file, ASM_APP_OFF);
1571 app_on = 0;
1572 }
1573
1574 vlen = XVECLEN (body, GET_CODE (body) == ADDR_DIFF_VEC);
1575 for (idx = 0; idx < vlen; idx++)
1576 {
1577 if (GET_CODE (body) == ADDR_VEC)
1578 {
1579#ifdef ASM_OUTPUT_ADDR_VEC_ELT
1580 ASM_OUTPUT_ADDR_VEC_ELT
1581 (file, CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 0, idx), 0)));
1582#else
1583 abort ();
1584#endif
1585 }
1586 else
1587 {
1588#ifdef ASM_OUTPUT_ADDR_DIFF_ELT
1589 ASM_OUTPUT_ADDR_DIFF_ELT
1590 (file,
1591 CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 1, idx), 0)),
1592 CODE_LABEL_NUMBER (XEXP (XEXP (body, 0), 0)));
1593#else
1594 abort ();
1595#endif
1596 }
1597 }
1598#ifdef ASM_OUTPUT_CASE_END
1599 ASM_OUTPUT_CASE_END (file,
1600 CODE_LABEL_NUMBER (PREV_INSN (insn)),
1601 insn);
1602#endif
1603
4d1065ed 1604 function_section (current_function_decl);
3cf2715d
DE
1605
1606 break;
1607 }
1608
1609 /* Do basic-block profiling when we reach a new block.
1610 Done here to avoid jump tables. */
1611 if (profile_block_flag && new_block)
1612 add_bb (file);
1613
1614 if (GET_CODE (body) == ASM_INPUT)
1615 {
1616 /* There's no telling what that did to the condition codes. */
1617 CC_STATUS_INIT;
1618 if (prescan > 0)
1619 break;
1620 if (! app_on)
1621 {
1622 fprintf (file, ASM_APP_ON);
1623 app_on = 1;
1624 }
1625 fprintf (asm_out_file, "\t%s\n", XSTR (body, 0));
1626 break;
1627 }
1628
1629 /* Detect `asm' construct with operands. */
1630 if (asm_noperands (body) >= 0)
1631 {
1632 int noperands = asm_noperands (body);
1633 rtx *ops = (rtx *) alloca (noperands * sizeof (rtx));
1634 char *string;
1635
1636 /* There's no telling what that did to the condition codes. */
1637 CC_STATUS_INIT;
1638 if (prescan > 0)
1639 break;
1640
1641 if (! app_on)
1642 {
1643 fprintf (file, ASM_APP_ON);
1644 app_on = 1;
1645 }
1646
1647 /* Get out the operand values. */
1648 string = decode_asm_operands (body, ops, NULL_PTR,
1649 NULL_PTR, NULL_PTR);
1650 /* Inhibit aborts on what would otherwise be compiler bugs. */
1651 insn_noperands = noperands;
1652 this_is_asm_operands = insn;
1653
1654 /* Output the insn using them. */
1655 output_asm_insn (string, ops);
1656 this_is_asm_operands = 0;
1657 break;
1658 }
1659
1660 if (prescan <= 0 && app_on)
1661 {
1662 fprintf (file, ASM_APP_OFF);
1663 app_on = 0;
1664 }
1665
1666 if (GET_CODE (body) == SEQUENCE)
1667 {
1668 /* A delayed-branch sequence */
1669 register int i;
1670 rtx next;
1671
1672 if (prescan > 0)
1673 break;
1674 final_sequence = body;
1675
1676 /* The first insn in this SEQUENCE might be a JUMP_INSN that will
1677 force the restoration of a comparison that was previously
1678 thought unnecessary. If that happens, cancel this sequence
1679 and cause that insn to be restored. */
1680
1681 next = final_scan_insn (XVECEXP (body, 0, 0), file, 0, prescan, 1);
1682 if (next != XVECEXP (body, 0, 1))
1683 {
1684 final_sequence = 0;
1685 return next;
1686 }
1687
1688 for (i = 1; i < XVECLEN (body, 0); i++)
1689 final_scan_insn (XVECEXP (body, 0, i), file, 0, prescan, 1);
1690#ifdef DBR_OUTPUT_SEQEND
1691 DBR_OUTPUT_SEQEND (file);
1692#endif
1693 final_sequence = 0;
1694
1695 /* If the insn requiring the delay slot was a CALL_INSN, the
1696 insns in the delay slot are actually executed before the
1697 called function. Hence we don't preserve any CC-setting
1698 actions in these insns and the CC must be marked as being
1699 clobbered by the function. */
1700 if (GET_CODE (XVECEXP (body, 0, 0)) == CALL_INSN)
1701 CC_STATUS_INIT;
1702
1703 /* Following a conditional branch sequence, we have a new basic
1704 block. */
1705 if (profile_block_flag)
1706 {
1707 rtx insn = XVECEXP (body, 0, 0);
1708 rtx body = PATTERN (insn);
1709
1710 if ((GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == SET
1711 && GET_CODE (SET_SRC (body)) != LABEL_REF)
1712 || (GET_CODE (insn) == JUMP_INSN
1713 && GET_CODE (body) == PARALLEL
1714 && GET_CODE (XVECEXP (body, 0, 0)) == SET
1715 && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) != LABEL_REF))
1716 new_block = 1;
1717 }
1718 break;
1719 }
1720
1721 /* We have a real machine instruction as rtl. */
1722
1723 body = PATTERN (insn);
1724
1725#ifdef HAVE_cc0
1726 /* Check for redundant test and compare instructions
1727 (when the condition codes are already set up as desired).
1728 This is done only when optimizing; if not optimizing,
1729 it should be possible for the user to alter a variable
1730 with the debugger in between statements
1731 and the next statement should reexamine the variable
1732 to compute the condition codes. */
1733
1734 if (optimize
1735 && GET_CODE (body) == SET
1736 && GET_CODE (SET_DEST (body)) == CC0
1737 && insn != last_ignored_compare)
1738 {
1739 if (GET_CODE (SET_SRC (body)) == SUBREG)
1740 SET_SRC (body) = alter_subreg (SET_SRC (body));
1741 else if (GET_CODE (SET_SRC (body)) == COMPARE)
1742 {
1743 if (GET_CODE (XEXP (SET_SRC (body), 0)) == SUBREG)
1744 XEXP (SET_SRC (body), 0)
1745 = alter_subreg (XEXP (SET_SRC (body), 0));
1746 if (GET_CODE (XEXP (SET_SRC (body), 1)) == SUBREG)
1747 XEXP (SET_SRC (body), 1)
1748 = alter_subreg (XEXP (SET_SRC (body), 1));
1749 }
1750 if ((cc_status.value1 != 0
1751 && rtx_equal_p (SET_SRC (body), cc_status.value1))
1752 || (cc_status.value2 != 0
1753 && rtx_equal_p (SET_SRC (body), cc_status.value2)))
1754 {
1755 /* Don't delete insn if it has an addressing side-effect. */
1756 if (! FIND_REG_INC_NOTE (insn, 0)
1757 /* or if anything in it is volatile. */
1758 && ! volatile_refs_p (PATTERN (insn)))
1759 {
1760 /* We don't really delete the insn; just ignore it. */
1761 last_ignored_compare = insn;
1762 break;
1763 }
1764 }
1765 }
1766#endif
1767
1768 /* Following a conditional branch, we have a new basic block.
1769 But if we are inside a sequence, the new block starts after the
1770 last insn of the sequence. */
1771 if (profile_block_flag && final_sequence == 0
1772 && ((GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == SET
1773 && GET_CODE (SET_SRC (body)) != LABEL_REF)
1774 || (GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == PARALLEL
1775 && GET_CODE (XVECEXP (body, 0, 0)) == SET
1776 && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) != LABEL_REF)))
1777 new_block = 1;
1778
1779#ifndef STACK_REGS
1780 /* Don't bother outputting obvious no-ops, even without -O.
1781 This optimization is fast and doesn't interfere with debugging.
1782 Don't do this if the insn is in a delay slot, since this
1783 will cause an improper number of delay insns to be written. */
1784 if (final_sequence == 0
1785 && prescan >= 0
1786 && GET_CODE (insn) == INSN && GET_CODE (body) == SET
1787 && GET_CODE (SET_SRC (body)) == REG
1788 && GET_CODE (SET_DEST (body)) == REG
1789 && REGNO (SET_SRC (body)) == REGNO (SET_DEST (body)))
1790 break;
1791#endif
1792
1793#ifdef HAVE_cc0
1794 /* If this is a conditional branch, maybe modify it
1795 if the cc's are in a nonstandard state
1796 so that it accomplishes the same thing that it would
1797 do straightforwardly if the cc's were set up normally. */
1798
1799 if (cc_status.flags != 0
1800 && GET_CODE (insn) == JUMP_INSN
1801 && GET_CODE (body) == SET
1802 && SET_DEST (body) == pc_rtx
1803 && GET_CODE (SET_SRC (body)) == IF_THEN_ELSE
de2b56f9 1804 && GET_RTX_CLASS (GET_CODE (XEXP (SET_SRC (body), 0))) == '<'
fff752ad 1805 && XEXP (XEXP (SET_SRC (body), 0), 0) == cc0_rtx
3cf2715d
DE
1806 /* This is done during prescan; it is not done again
1807 in final scan when prescan has been done. */
1808 && prescan >= 0)
1809 {
1810 /* This function may alter the contents of its argument
1811 and clear some of the cc_status.flags bits.
1812 It may also return 1 meaning condition now always true
1813 or -1 meaning condition now always false
1814 or 2 meaning condition nontrivial but altered. */
1815 register int result = alter_cond (XEXP (SET_SRC (body), 0));
1816 /* If condition now has fixed value, replace the IF_THEN_ELSE
1817 with its then-operand or its else-operand. */
1818 if (result == 1)
1819 SET_SRC (body) = XEXP (SET_SRC (body), 1);
1820 if (result == -1)
1821 SET_SRC (body) = XEXP (SET_SRC (body), 2);
1822
1823 /* The jump is now either unconditional or a no-op.
1824 If it has become a no-op, don't try to output it.
1825 (It would not be recognized.) */
1826 if (SET_SRC (body) == pc_rtx)
1827 {
1828 PUT_CODE (insn, NOTE);
1829 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
1830 NOTE_SOURCE_FILE (insn) = 0;
1831 break;
1832 }
1833 else if (GET_CODE (SET_SRC (body)) == RETURN)
1834 /* Replace (set (pc) (return)) with (return). */
1835 PATTERN (insn) = body = SET_SRC (body);
1836
1837 /* Rerecognize the instruction if it has changed. */
1838 if (result != 0)
1839 INSN_CODE (insn) = -1;
1840 }
1841
1842 /* Make same adjustments to instructions that examine the
1843 condition codes without jumping (if this machine has them). */
1844
1845 if (cc_status.flags != 0
1846 && GET_CODE (body) == SET)
1847 {
1848 switch (GET_CODE (SET_SRC (body)))
1849 {
1850 case GTU:
1851 case GT:
1852 case LTU:
1853 case LT:
1854 case GEU:
1855 case GE:
1856 case LEU:
1857 case LE:
1858 case EQ:
1859 case NE:
1860 {
1861 register int result;
1862 if (XEXP (SET_SRC (body), 0) != cc0_rtx)
1863 break;
1864 result = alter_cond (SET_SRC (body));
1865 if (result == 1)
1866 validate_change (insn, &SET_SRC (body), const_true_rtx, 0);
1867 else if (result == -1)
1868 validate_change (insn, &SET_SRC (body), const0_rtx, 0);
1869 else if (result == 2)
1870 INSN_CODE (insn) = -1;
1871 }
1872 }
1873 }
1874#endif
1875
1876 /* Do machine-specific peephole optimizations if desired. */
1877
1878 if (optimize && !flag_no_peephole && !nopeepholes)
1879 {
1880 rtx next = peephole (insn);
1881 /* When peepholing, if there were notes within the peephole,
1882 emit them before the peephole. */
1883 if (next != 0 && next != NEXT_INSN (insn))
1884 {
1885 rtx prev = PREV_INSN (insn);
1886 rtx note;
1887
1888 for (note = NEXT_INSN (insn); note != next;
1889 note = NEXT_INSN (note))
1890 final_scan_insn (note, file, optimize, prescan, nopeepholes);
1891
1892 /* In case this is prescan, put the notes
1893 in proper position for later rescan. */
1894 note = NEXT_INSN (insn);
1895 PREV_INSN (note) = prev;
1896 NEXT_INSN (prev) = note;
1897 NEXT_INSN (PREV_INSN (next)) = insn;
1898 PREV_INSN (insn) = PREV_INSN (next);
1899 NEXT_INSN (insn) = next;
1900 PREV_INSN (next) = insn;
1901 }
1902
1903 /* PEEPHOLE might have changed this. */
1904 body = PATTERN (insn);
1905 }
1906
1907 /* Try to recognize the instruction.
1908 If successful, verify that the operands satisfy the
1909 constraints for the instruction. Crash if they don't,
1910 since `reload' should have changed them so that they do. */
1911
1912 insn_code_number = recog_memoized (insn);
1913 insn_extract (insn);
1914 for (i = 0; i < insn_n_operands[insn_code_number]; i++)
1915 {
1916 if (GET_CODE (recog_operand[i]) == SUBREG)
1917 recog_operand[i] = alter_subreg (recog_operand[i]);
1918 else if (GET_CODE (recog_operand[i]) == PLUS
1919 || GET_CODE (recog_operand[i]) == MULT)
1920 recog_operand[i] = walk_alter_subreg (recog_operand[i]);
1921 }
1922
1923 for (i = 0; i < insn_n_dups[insn_code_number]; i++)
1924 {
1925 if (GET_CODE (*recog_dup_loc[i]) == SUBREG)
1926 *recog_dup_loc[i] = alter_subreg (*recog_dup_loc[i]);
1927 else if (GET_CODE (*recog_dup_loc[i]) == PLUS
1928 || GET_CODE (*recog_dup_loc[i]) == MULT)
1929 *recog_dup_loc[i] = walk_alter_subreg (*recog_dup_loc[i]);
1930 }
1931
1932#ifdef REGISTER_CONSTRAINTS
1933 if (! constrain_operands (insn_code_number, 1))
1934 fatal_insn_not_found (insn);
1935#endif
1936
1937 /* Some target machines need to prescan each insn before
1938 it is output. */
1939
1940#ifdef FINAL_PRESCAN_INSN
1941 FINAL_PRESCAN_INSN (insn, recog_operand,
1942 insn_n_operands[insn_code_number]);
1943#endif
1944
1945#ifdef HAVE_cc0
1946 cc_prev_status = cc_status;
1947
1948 /* Update `cc_status' for this instruction.
1949 The instruction's output routine may change it further.
1950 If the output routine for a jump insn needs to depend
1951 on the cc status, it should look at cc_prev_status. */
1952
1953 NOTICE_UPDATE_CC (body, insn);
1954#endif
1955
1956 debug_insn = insn;
1957
1958 /* If the proper template needs to be chosen by some C code,
1959 run that code and get the real template. */
1960
1961 template = insn_template[insn_code_number];
1962 if (template == 0)
1963 {
1964 template = (*insn_outfun[insn_code_number]) (recog_operand, insn);
1965
1966 /* If the C code returns 0, it means that it is a jump insn
1967 which follows a deleted test insn, and that test insn
1968 needs to be reinserted. */
1969 if (template == 0)
1970 {
1971 if (prev_nonnote_insn (insn) != last_ignored_compare)
1972 abort ();
1973 new_block = 0;
1974 return prev_nonnote_insn (insn);
1975 }
1976 }
1977
1978 /* If the template is the string "#", it means that this insn must
1979 be split. */
1980 if (template[0] == '#' && template[1] == '\0')
1981 {
1982 rtx new = try_split (body, insn, 0);
1983
1984 /* If we didn't split the insn, go away. */
1985 if (new == insn && PATTERN (new) == body)
1986 abort ();
1987
1988 new_block = 0;
1989 return new;
1990 }
1991
1992 if (prescan > 0)
1993 break;
1994
1995 /* Output assembler code from the template. */
1996
1997 output_asm_insn (template, recog_operand);
1998
1999#if 0
2000 /* It's not at all clear why we did this and doing so interferes
2001 with tests we'd like to do to use REG_WAS_0 notes, so let's try
2002 with this out. */
2003
2004 /* Mark this insn as having been output. */
2005 INSN_DELETED_P (insn) = 1;
2006#endif
2007
2008 debug_insn = 0;
2009 }
2010 }
2011 return NEXT_INSN (insn);
2012}
2013\f
2014/* Output debugging info to the assembler file FILE
2015 based on the NOTE-insn INSN, assumed to be a line number. */
2016
2017static void
2018output_source_line (file, insn)
2019 FILE *file;
2020 rtx insn;
2021{
2022 register char *filename = NOTE_SOURCE_FILE (insn);
2023
2024 /* Remember filename for basic block profiling.
2025 Filenames are allocated on the permanent obstack
2026 or are passed in ARGV, so we don't have to save
2027 the string. */
2028
2029 if (profile_block_flag && last_filename != filename)
2030 bb_file_label_num = add_bb_string (filename, TRUE);
2031
2032 last_filename = filename;
2033 last_linenum = NOTE_LINE_NUMBER (insn);
eac40081
RK
2034 high_block_linenum = MAX (last_linenum, high_block_linenum);
2035 high_function_linenum = MAX (last_linenum, high_function_linenum);
3cf2715d
DE
2036
2037 if (write_symbols != NO_DEBUG)
2038 {
2039#ifdef SDB_DEBUGGING_INFO
2040 if (write_symbols == SDB_DEBUG
2041#if 0 /* People like having line numbers even in wrong file! */
2042 /* COFF can't handle multiple source files--lose, lose. */
2043 && !strcmp (filename, main_input_filename)
2044#endif
2045 /* COFF relative line numbers must be positive. */
2046 && last_linenum > sdb_begin_function_line)
2047 {
2048#ifdef ASM_OUTPUT_SOURCE_LINE
2049 ASM_OUTPUT_SOURCE_LINE (file, last_linenum);
2050#else
2051 fprintf (file, "\t.ln\t%d\n",
2052 ((sdb_begin_function_line > -1)
2053 ? last_linenum - sdb_begin_function_line : 1));
2054#endif
2055 }
2056#endif
2057
2058#if defined (DBX_DEBUGGING_INFO)
2059 if (write_symbols == DBX_DEBUG)
2060 dbxout_source_line (file, filename, NOTE_LINE_NUMBER (insn));
2061#endif
2062
2063#if defined (XCOFF_DEBUGGING_INFO)
2064 if (write_symbols == XCOFF_DEBUG)
2065 xcoffout_source_line (file, filename, insn);
2066#endif
2067
2068#ifdef DWARF_DEBUGGING_INFO
2069 if (write_symbols == DWARF_DEBUG)
2070 dwarfout_line (filename, NOTE_LINE_NUMBER (insn));
2071#endif
2072 }
2073}
2074\f
2075/* If X is a SUBREG, replace it with a REG or a MEM,
2076 based on the thing it is a subreg of. */
2077
2078rtx
2079alter_subreg (x)
2080 register rtx x;
2081{
2082 register rtx y = SUBREG_REG (x);
2083 if (GET_CODE (y) == SUBREG)
2084 y = alter_subreg (y);
2085
2086 if (GET_CODE (y) == REG)
2087 {
2088 /* If the containing reg really gets a hard reg, so do we. */
2089 PUT_CODE (x, REG);
2090 REGNO (x) = REGNO (y) + SUBREG_WORD (x);
2091 }
2092 else if (GET_CODE (y) == MEM)
2093 {
2094 register int offset = SUBREG_WORD (x) * UNITS_PER_WORD;
f76b9db2
ILT
2095 if (BYTES_BIG_ENDIAN)
2096 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x)))
2097 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (y))));
3cf2715d
DE
2098 PUT_CODE (x, MEM);
2099 MEM_VOLATILE_P (x) = MEM_VOLATILE_P (y);
2100 XEXP (x, 0) = plus_constant (XEXP (y, 0), offset);
2101 }
2102
2103 return x;
2104}
2105
2106/* Do alter_subreg on all the SUBREGs contained in X. */
2107
2108static rtx
2109walk_alter_subreg (x)
2110 rtx x;
2111{
2112 switch (GET_CODE (x))
2113 {
2114 case PLUS:
2115 case MULT:
2116 XEXP (x, 0) = walk_alter_subreg (XEXP (x, 0));
2117 XEXP (x, 1) = walk_alter_subreg (XEXP (x, 1));
2118 break;
2119
2120 case MEM:
2121 XEXP (x, 0) = walk_alter_subreg (XEXP (x, 0));
2122 break;
2123
2124 case SUBREG:
2125 return alter_subreg (x);
2126 }
2127
2128 return x;
2129}
2130\f
2131#ifdef HAVE_cc0
2132
2133/* Given BODY, the body of a jump instruction, alter the jump condition
2134 as required by the bits that are set in cc_status.flags.
2135 Not all of the bits there can be handled at this level in all cases.
2136
2137 The value is normally 0.
2138 1 means that the condition has become always true.
2139 -1 means that the condition has become always false.
2140 2 means that COND has been altered. */
2141
2142static int
2143alter_cond (cond)
2144 register rtx cond;
2145{
2146 int value = 0;
2147
2148 if (cc_status.flags & CC_REVERSED)
2149 {
2150 value = 2;
2151 PUT_CODE (cond, swap_condition (GET_CODE (cond)));
2152 }
2153
2154 if (cc_status.flags & CC_INVERTED)
2155 {
2156 value = 2;
2157 PUT_CODE (cond, reverse_condition (GET_CODE (cond)));
2158 }
2159
2160 if (cc_status.flags & CC_NOT_POSITIVE)
2161 switch (GET_CODE (cond))
2162 {
2163 case LE:
2164 case LEU:
2165 case GEU:
2166 /* Jump becomes unconditional. */
2167 return 1;
2168
2169 case GT:
2170 case GTU:
2171 case LTU:
2172 /* Jump becomes no-op. */
2173 return -1;
2174
2175 case GE:
2176 PUT_CODE (cond, EQ);
2177 value = 2;
2178 break;
2179
2180 case LT:
2181 PUT_CODE (cond, NE);
2182 value = 2;
2183 break;
2184 }
2185
2186 if (cc_status.flags & CC_NOT_NEGATIVE)
2187 switch (GET_CODE (cond))
2188 {
2189 case GE:
2190 case GEU:
2191 /* Jump becomes unconditional. */
2192 return 1;
2193
2194 case LT:
2195 case LTU:
2196 /* Jump becomes no-op. */
2197 return -1;
2198
2199 case LE:
2200 case LEU:
2201 PUT_CODE (cond, EQ);
2202 value = 2;
2203 break;
2204
2205 case GT:
2206 case GTU:
2207 PUT_CODE (cond, NE);
2208 value = 2;
2209 break;
2210 }
2211
2212 if (cc_status.flags & CC_NO_OVERFLOW)
2213 switch (GET_CODE (cond))
2214 {
2215 case GEU:
2216 /* Jump becomes unconditional. */
2217 return 1;
2218
2219 case LEU:
2220 PUT_CODE (cond, EQ);
2221 value = 2;
2222 break;
2223
2224 case GTU:
2225 PUT_CODE (cond, NE);
2226 value = 2;
2227 break;
2228
2229 case LTU:
2230 /* Jump becomes no-op. */
2231 return -1;
2232 }
2233
2234 if (cc_status.flags & (CC_Z_IN_NOT_N | CC_Z_IN_N))
2235 switch (GET_CODE (cond))
2236 {
2237 case LE:
2238 case LEU:
2239 case GE:
2240 case GEU:
2241 case LT:
2242 case LTU:
2243 case GT:
2244 case GTU:
2245 abort ();
2246
2247 case NE:
2248 PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? GE : LT);
2249 value = 2;
2250 break;
2251
2252 case EQ:
2253 PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? LT : GE);
2254 value = 2;
2255 break;
2256 }
2257
2258 if (cc_status.flags & CC_NOT_SIGNED)
2259 /* The flags are valid if signed condition operators are converted
2260 to unsigned. */
2261 switch (GET_CODE (cond))
2262 {
2263 case LE:
2264 PUT_CODE (cond, LEU);
2265 value = 2;
2266 break;
2267
2268 case LT:
2269 PUT_CODE (cond, LTU);
2270 value = 2;
2271 break;
2272
2273 case GT:
2274 PUT_CODE (cond, GTU);
2275 value = 2;
2276 break;
2277
2278 case GE:
2279 PUT_CODE (cond, GEU);
2280 value = 2;
2281 break;
2282 }
2283
2284 return value;
2285}
2286#endif
2287\f
2288/* Report inconsistency between the assembler template and the operands.
2289 In an `asm', it's the user's fault; otherwise, the compiler's fault. */
2290
2291void
2292output_operand_lossage (str)
2293 char *str;
2294{
2295 if (this_is_asm_operands)
2296 error_for_asm (this_is_asm_operands, "invalid `asm': %s", str);
2297 else
2298 abort ();
2299}
2300\f
2301/* Output of assembler code from a template, and its subroutines. */
2302
2303/* Output text from TEMPLATE to the assembler output file,
2304 obeying %-directions to substitute operands taken from
2305 the vector OPERANDS.
2306
2307 %N (for N a digit) means print operand N in usual manner.
2308 %lN means require operand N to be a CODE_LABEL or LABEL_REF
2309 and print the label name with no punctuation.
2310 %cN means require operand N to be a constant
2311 and print the constant expression with no punctuation.
2312 %aN means expect operand N to be a memory address
2313 (not a memory reference!) and print a reference
2314 to that address.
2315 %nN means expect operand N to be a constant
2316 and print a constant expression for minus the value
2317 of the operand, with no other punctuation. */
2318
cb649530
RK
2319static void
2320output_asm_name ()
2321{
2322 if (flag_print_asm_name)
2323 {
2324 /* Annotate the assembly with a comment describing the pattern and
2325 alternative used. */
2326 if (debug_insn)
2327 {
2328 register int num = INSN_CODE (debug_insn);
2329 fprintf (asm_out_file, " %s %d %s",
2330 ASM_COMMENT_START, INSN_UID (debug_insn), insn_name[num]);
2331 if (insn_n_alternatives[num] > 1)
2332 fprintf (asm_out_file, "/%d", which_alternative + 1);
2333
2334 /* Clear this so only the first assembler insn
2335 of any rtl insn will get the special comment for -dp. */
2336 debug_insn = 0;
2337 }
2338 }
2339}
2340
3cf2715d
DE
2341void
2342output_asm_insn (template, operands)
2343 char *template;
2344 rtx *operands;
2345{
2346 register char *p;
2347 register int c, i;
2348
2349 /* An insn may return a null string template
2350 in a case where no assembler code is needed. */
2351 if (*template == 0)
2352 return;
2353
2354 p = template;
2355 putc ('\t', asm_out_file);
2356
2357#ifdef ASM_OUTPUT_OPCODE
2358 ASM_OUTPUT_OPCODE (asm_out_file, p);
2359#endif
2360
2361 while (c = *p++)
2362 switch (c)
2363 {
3cf2715d 2364 case '\n':
cb649530 2365 output_asm_name ();
3cf2715d 2366 putc (c, asm_out_file);
cb649530 2367#ifdef ASM_OUTPUT_OPCODE
3cf2715d
DE
2368 while ((c = *p) == '\t')
2369 {
2370 putc (c, asm_out_file);
2371 p++;
2372 }
2373 ASM_OUTPUT_OPCODE (asm_out_file, p);
3cf2715d 2374#endif
cb649530 2375 break;
3cf2715d
DE
2376
2377#ifdef ASSEMBLER_DIALECT
2378 case '{':
2379 /* If we want the first dialect, do nothing. Otherwise, skip
2380 DIALECT_NUMBER of strings ending with '|'. */
2381 for (i = 0; i < dialect_number; i++)
2382 {
2383 while (*p && *p++ != '|')
2384 ;
2385
2386 if (*p == '|')
2387 p++;
2388 }
2389 break;
2390
2391 case '|':
2392 /* Skip to close brace. */
2393 while (*p && *p++ != '}')
2394 ;
2395 break;
2396
2397 case '}':
2398 break;
2399#endif
2400
2401 case '%':
2402 /* %% outputs a single %. */
2403 if (*p == '%')
2404 {
2405 p++;
2406 putc (c, asm_out_file);
2407 }
2408 /* %= outputs a number which is unique to each insn in the entire
2409 compilation. This is useful for making local labels that are
2410 referred to more than once in a given insn. */
2411 else if (*p == '=')
2412 {
2413 p++;
2414 fprintf (asm_out_file, "%d", insn_counter);
2415 }
2416 /* % followed by a letter and some digits
2417 outputs an operand in a special way depending on the letter.
2418 Letters `acln' are implemented directly.
2419 Other letters are passed to `output_operand' so that
2420 the PRINT_OPERAND macro can define them. */
2421 else if ((*p >= 'a' && *p <= 'z')
2422 || (*p >= 'A' && *p <= 'Z'))
2423 {
2424 int letter = *p++;
2425 c = atoi (p);
2426
2427 if (! (*p >= '0' && *p <= '9'))
2428 output_operand_lossage ("operand number missing after %-letter");
2429 else if (this_is_asm_operands && c >= (unsigned) insn_noperands)
2430 output_operand_lossage ("operand number out of range");
2431 else if (letter == 'l')
2432 output_asm_label (operands[c]);
2433 else if (letter == 'a')
2434 output_address (operands[c]);
2435 else if (letter == 'c')
2436 {
2437 if (CONSTANT_ADDRESS_P (operands[c]))
2438 output_addr_const (asm_out_file, operands[c]);
2439 else
2440 output_operand (operands[c], 'c');
2441 }
2442 else if (letter == 'n')
2443 {
2444 if (GET_CODE (operands[c]) == CONST_INT)
2445 fprintf (asm_out_file,
2446#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
2447 "%d",
2448#else
2449 "%ld",
2450#endif
2451 - INTVAL (operands[c]));
2452 else
2453 {
2454 putc ('-', asm_out_file);
2455 output_addr_const (asm_out_file, operands[c]);
2456 }
2457 }
2458 else
2459 output_operand (operands[c], letter);
2460
2461 while ((c = *p) >= '0' && c <= '9') p++;
2462 }
2463 /* % followed by a digit outputs an operand the default way. */
2464 else if (*p >= '0' && *p <= '9')
2465 {
2466 c = atoi (p);
2467 if (this_is_asm_operands && c >= (unsigned) insn_noperands)
2468 output_operand_lossage ("operand number out of range");
2469 else
2470 output_operand (operands[c], 0);
2471 while ((c = *p) >= '0' && c <= '9') p++;
2472 }
2473 /* % followed by punctuation: output something for that
2474 punctuation character alone, with no operand.
2475 The PRINT_OPERAND macro decides what is actually done. */
2476#ifdef PRINT_OPERAND_PUNCT_VALID_P
2477 else if (PRINT_OPERAND_PUNCT_VALID_P (*p))
2478 output_operand (NULL_RTX, *p++);
2479#endif
2480 else
2481 output_operand_lossage ("invalid %%-code");
2482 break;
2483
2484 default:
2485 putc (c, asm_out_file);
2486 }
2487
cb649530 2488 output_asm_name ();
3cf2715d
DE
2489
2490 putc ('\n', asm_out_file);
2491}
2492\f
2493/* Output a LABEL_REF, or a bare CODE_LABEL, as an assembler symbol. */
2494
2495void
2496output_asm_label (x)
2497 rtx x;
2498{
2499 char buf[256];
2500
2501 if (GET_CODE (x) == LABEL_REF)
2502 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (XEXP (x, 0)));
2503 else if (GET_CODE (x) == CODE_LABEL)
2504 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
2505 else
2506 output_operand_lossage ("`%l' operand isn't a label");
2507
2508 assemble_name (asm_out_file, buf);
2509}
2510
2511/* Print operand X using machine-dependent assembler syntax.
2512 The macro PRINT_OPERAND is defined just to control this function.
2513 CODE is a non-digit that preceded the operand-number in the % spec,
2514 such as 'z' if the spec was `%z3'. CODE is 0 if there was no char
2515 between the % and the digits.
2516 When CODE is a non-letter, X is 0.
2517
2518 The meanings of the letters are machine-dependent and controlled
2519 by PRINT_OPERAND. */
2520
2521static void
2522output_operand (x, code)
2523 rtx x;
2524 int code;
2525{
2526 if (x && GET_CODE (x) == SUBREG)
2527 x = alter_subreg (x);
2528
2529 /* If X is a pseudo-register, abort now rather than writing trash to the
2530 assembler file. */
2531
2532 if (x && GET_CODE (x) == REG && REGNO (x) >= FIRST_PSEUDO_REGISTER)
2533 abort ();
2534
2535 PRINT_OPERAND (asm_out_file, x, code);
2536}
2537
2538/* Print a memory reference operand for address X
2539 using machine-dependent assembler syntax.
2540 The macro PRINT_OPERAND_ADDRESS exists just to control this function. */
2541
2542void
2543output_address (x)
2544 rtx x;
2545{
2546 walk_alter_subreg (x);
2547 PRINT_OPERAND_ADDRESS (asm_out_file, x);
2548}
2549\f
2550/* Print an integer constant expression in assembler syntax.
2551 Addition and subtraction are the only arithmetic
2552 that may appear in these expressions. */
2553
2554void
2555output_addr_const (file, x)
2556 FILE *file;
2557 rtx x;
2558{
2559 char buf[256];
2560
2561 restart:
2562 switch (GET_CODE (x))
2563 {
2564 case PC:
2565 if (flag_pic)
2566 putc ('.', file);
2567 else
2568 abort ();
2569 break;
2570
2571 case SYMBOL_REF:
2572 assemble_name (file, XSTR (x, 0));
2573 break;
2574
2575 case LABEL_REF:
2576 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (XEXP (x, 0)));
2577 assemble_name (file, buf);
2578 break;
2579
2580 case CODE_LABEL:
2581 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
2582 assemble_name (file, buf);
2583 break;
2584
2585 case CONST_INT:
2586 fprintf (file,
2587#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
2588 "%d",
2589#else
2590 "%ld",
2591#endif
2592 INTVAL (x));
2593 break;
2594
2595 case CONST:
2596 /* This used to output parentheses around the expression,
2597 but that does not work on the 386 (either ATT or BSD assembler). */
2598 output_addr_const (file, XEXP (x, 0));
2599 break;
2600
2601 case CONST_DOUBLE:
2602 if (GET_MODE (x) == VOIDmode)
2603 {
2604 /* We can use %d if the number is one word and positive. */
2605 if (CONST_DOUBLE_HIGH (x))
2606 fprintf (file,
2607#if HOST_BITS_PER_WIDE_INT == 64
2608#if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
2609 "0x%lx%016lx",
2610#else
2611 "0x%x%016x",
2612#endif
2613#else
2614#if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
2615 "0x%lx%08lx",
2616#else
2617 "0x%x%08x",
2618#endif
2619#endif
2620 CONST_DOUBLE_HIGH (x), CONST_DOUBLE_LOW (x));
2621 else if (CONST_DOUBLE_LOW (x) < 0)
2622 fprintf (file,
2623#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
2624 "0x%x",
2625#else
2626 "0x%lx",
2627#endif
2628 CONST_DOUBLE_LOW (x));
2629 else
2630 fprintf (file,
2631#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
2632 "%d",
2633#else
2634 "%ld",
2635#endif
2636 CONST_DOUBLE_LOW (x));
2637 }
2638 else
2639 /* We can't handle floating point constants;
2640 PRINT_OPERAND must handle them. */
2641 output_operand_lossage ("floating constant misused");
2642 break;
2643
2644 case PLUS:
2645 /* Some assemblers need integer constants to appear last (eg masm). */
2646 if (GET_CODE (XEXP (x, 0)) == CONST_INT)
2647 {
2648 output_addr_const (file, XEXP (x, 1));
2649 if (INTVAL (XEXP (x, 0)) >= 0)
2650 fprintf (file, "+");
2651 output_addr_const (file, XEXP (x, 0));
2652 }
2653 else
2654 {
2655 output_addr_const (file, XEXP (x, 0));
2656 if (INTVAL (XEXP (x, 1)) >= 0)
2657 fprintf (file, "+");
2658 output_addr_const (file, XEXP (x, 1));
2659 }
2660 break;
2661
2662 case MINUS:
2663 /* Avoid outputting things like x-x or x+5-x,
2664 since some assemblers can't handle that. */
2665 x = simplify_subtraction (x);
2666 if (GET_CODE (x) != MINUS)
2667 goto restart;
2668
2669 output_addr_const (file, XEXP (x, 0));
2670 fprintf (file, "-");
2671 if (GET_CODE (XEXP (x, 1)) == CONST_INT
2672 && INTVAL (XEXP (x, 1)) < 0)
2673 {
2674 fprintf (file, ASM_OPEN_PAREN);
2675 output_addr_const (file, XEXP (x, 1));
2676 fprintf (file, ASM_CLOSE_PAREN);
2677 }
2678 else
2679 output_addr_const (file, XEXP (x, 1));
2680 break;
2681
2682 case ZERO_EXTEND:
2683 case SIGN_EXTEND:
2684 output_addr_const (file, XEXP (x, 0));
2685 break;
2686
2687 default:
2688 output_operand_lossage ("invalid expression as operand");
2689 }
2690}
2691\f
2692/* A poor man's fprintf, with the added features of %I, %R, %L, and %U.
2693 %R prints the value of REGISTER_PREFIX.
2694 %L prints the value of LOCAL_LABEL_PREFIX.
2695 %U prints the value of USER_LABEL_PREFIX.
2696 %I prints the value of IMMEDIATE_PREFIX.
2697 %O runs ASM_OUTPUT_OPCODE to transform what follows in the string.
2698 Also supported are %d, %x, %s, %e, %f, %g and %%.
2699
2700 We handle alternate assembler dialects here, just like output_asm_insn. */
2701
2702void
2703asm_fprintf VPROTO((FILE *file, char *p, ...))
2704{
2705#ifndef __STDC__
2706 FILE *file;
2707 char *p;
2708#endif
2709 va_list argptr;
2710 char buf[10];
2711 char *q, c;
2712 int i;
2713
2714 VA_START (argptr, p);
2715
2716#ifndef __STDC__
2717 file = va_arg (argptr, FILE*);
2718 p = va_arg (argptr, char*);
2719#endif
2720
2721 buf[0] = '%';
2722
2723 while (c = *p++)
2724 switch (c)
2725 {
2726#ifdef ASSEMBLER_DIALECT
2727 case '{':
2728 /* If we want the first dialect, do nothing. Otherwise, skip
2729 DIALECT_NUMBER of strings ending with '|'. */
2730 for (i = 0; i < dialect_number; i++)
2731 {
2732 while (*p && *p++ != '|')
2733 ;
2734
2735 if (*p == '|')
2736 p++;
2737 }
2738 break;
2739
2740 case '|':
2741 /* Skip to close brace. */
2742 while (*p && *p++ != '}')
2743 ;
2744 break;
2745
2746 case '}':
2747 break;
2748#endif
2749
2750 case '%':
2751 c = *p++;
2752 q = &buf[1];
2753 while ((c >= '0' && c <= '9') || c == '.')
2754 {
2755 *q++ = c;
2756 c = *p++;
2757 }
2758 switch (c)
2759 {
2760 case '%':
2761 fprintf (file, "%%");
2762 break;
2763
2764 case 'd': case 'i': case 'u':
2765 case 'x': case 'p': case 'X':
2766 case 'o':
2767 *q++ = c;
2768 *q = 0;
2769 fprintf (file, buf, va_arg (argptr, int));
2770 break;
2771
2772 case 'w':
2773 /* This is a prefix to the 'd', 'i', 'u', 'x', 'p', and 'X' cases,
2774 but we do not check for those cases. It means that the value
2775 is a HOST_WIDE_INT, which may be either `int' or `long'. */
2776
2777#if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
2778 *q++ = 'l';
2779#endif
2780
2781 *q++ = *p++;
2782 *q = 0;
2783 fprintf (file, buf, va_arg (argptr, HOST_WIDE_INT));
2784 break;
2785
2786 case 'l':
2787 *q++ = c;
2788 *q++ = *p++;
2789 *q = 0;
2790 fprintf (file, buf, va_arg (argptr, long));
2791 break;
2792
2793 case 'e':
2794 case 'f':
2795 case 'g':
2796 *q++ = c;
2797 *q = 0;
2798 fprintf (file, buf, va_arg (argptr, double));
2799 break;
2800
2801 case 's':
2802 *q++ = c;
2803 *q = 0;
2804 fprintf (file, buf, va_arg (argptr, char *));
2805 break;
2806
2807 case 'O':
2808#ifdef ASM_OUTPUT_OPCODE
2809 ASM_OUTPUT_OPCODE (asm_out_file, p);
2810#endif
2811 break;
2812
2813 case 'R':
2814#ifdef REGISTER_PREFIX
2815 fprintf (file, "%s", REGISTER_PREFIX);
2816#endif
2817 break;
2818
2819 case 'I':
2820#ifdef IMMEDIATE_PREFIX
2821 fprintf (file, "%s", IMMEDIATE_PREFIX);
2822#endif
2823 break;
2824
2825 case 'L':
2826#ifdef LOCAL_LABEL_PREFIX
2827 fprintf (file, "%s", LOCAL_LABEL_PREFIX);
2828#endif
2829 break;
2830
2831 case 'U':
2832#ifdef USER_LABEL_PREFIX
2833 fprintf (file, "%s", USER_LABEL_PREFIX);
2834#endif
2835 break;
2836
2837 default:
2838 abort ();
2839 }
2840 break;
2841
2842 default:
2843 fputc (c, file);
2844 }
2845}
2846\f
2847/* Split up a CONST_DOUBLE or integer constant rtx
2848 into two rtx's for single words,
2849 storing in *FIRST the word that comes first in memory in the target
2850 and in *SECOND the other. */
2851
2852void
2853split_double (value, first, second)
2854 rtx value;
2855 rtx *first, *second;
2856{
2857 if (GET_CODE (value) == CONST_INT)
2858 {
5a1a6efd 2859 if (HOST_BITS_PER_WIDE_INT >= (2 * BITS_PER_WORD))
f76b9db2 2860 {
5a1a6efd
RK
2861 /* In this case the CONST_INT holds both target words.
2862 Extract the bits from it into two word-sized pieces. */
2863 rtx low, high;
2864 HOST_WIDE_INT word_mask;
2865 /* Avoid warnings for shift count >= BITS_PER_WORD. */
2866 int shift_count = BITS_PER_WORD - 1;
2867
2868 word_mask = (HOST_WIDE_INT) 1 << shift_count;
2869 word_mask |= word_mask - 1;
2870 low = GEN_INT (INTVAL (value) & word_mask);
2871 high = GEN_INT ((INTVAL (value) >> (shift_count + 1)) & word_mask);
2872 if (WORDS_BIG_ENDIAN)
2873 {
2874 *first = high;
2875 *second = low;
2876 }
2877 else
2878 {
2879 *first = low;
2880 *second = high;
2881 }
f76b9db2
ILT
2882 }
2883 else
2884 {
5a1a6efd
RK
2885 /* The rule for using CONST_INT for a wider mode
2886 is that we regard the value as signed.
2887 So sign-extend it. */
2888 rtx high = (INTVAL (value) < 0 ? constm1_rtx : const0_rtx);
2889 if (WORDS_BIG_ENDIAN)
2890 {
2891 *first = high;
2892 *second = value;
2893 }
2894 else
2895 {
2896 *first = value;
2897 *second = high;
2898 }
f76b9db2 2899 }
3cf2715d
DE
2900 }
2901 else if (GET_CODE (value) != CONST_DOUBLE)
2902 {
f76b9db2
ILT
2903 if (WORDS_BIG_ENDIAN)
2904 {
2905 *first = const0_rtx;
2906 *second = value;
2907 }
2908 else
2909 {
2910 *first = value;
2911 *second = const0_rtx;
2912 }
3cf2715d
DE
2913 }
2914 else if (GET_MODE (value) == VOIDmode
2915 /* This is the old way we did CONST_DOUBLE integers. */
2916 || GET_MODE_CLASS (GET_MODE (value)) == MODE_INT)
2917 {
2918 /* In an integer, the words are defined as most and least significant.
2919 So order them by the target's convention. */
f76b9db2
ILT
2920 if (WORDS_BIG_ENDIAN)
2921 {
2922 *first = GEN_INT (CONST_DOUBLE_HIGH (value));
2923 *second = GEN_INT (CONST_DOUBLE_LOW (value));
2924 }
2925 else
2926 {
2927 *first = GEN_INT (CONST_DOUBLE_LOW (value));
2928 *second = GEN_INT (CONST_DOUBLE_HIGH (value));
2929 }
3cf2715d
DE
2930 }
2931 else
2932 {
2933#ifdef REAL_ARITHMETIC
2934 REAL_VALUE_TYPE r; long l[2];
2935 REAL_VALUE_FROM_CONST_DOUBLE (r, value);
2936
2937 /* Note, this converts the REAL_VALUE_TYPE to the target's
2938 format, splits up the floating point double and outputs
2939 exactly 32 bits of it into each of l[0] and l[1] --
2940 not necessarily BITS_PER_WORD bits. */
2941 REAL_VALUE_TO_TARGET_DOUBLE (r, l);
2942
2943 *first = GEN_INT ((HOST_WIDE_INT) l[0]);
2944 *second = GEN_INT ((HOST_WIDE_INT) l[1]);
2945#else
2946 if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
2947 || HOST_BITS_PER_WIDE_INT != BITS_PER_WORD)
2948 && ! flag_pretend_float)
2949 abort ();
2950
f76b9db2
ILT
2951 if (
2952#ifdef HOST_WORDS_BIG_ENDIAN
2953 WORDS_BIG_ENDIAN
3cf2715d 2954#else
f76b9db2 2955 ! WORDS_BIG_ENDIAN
3cf2715d 2956#endif
f76b9db2
ILT
2957 )
2958 {
2959 /* Host and target agree => no need to swap. */
2960 *first = GEN_INT (CONST_DOUBLE_LOW (value));
2961 *second = GEN_INT (CONST_DOUBLE_HIGH (value));
2962 }
2963 else
2964 {
2965 *second = GEN_INT (CONST_DOUBLE_LOW (value));
2966 *first = GEN_INT (CONST_DOUBLE_HIGH (value));
2967 }
3cf2715d
DE
2968#endif /* no REAL_ARITHMETIC */
2969 }
2970}
2971\f
2972/* Return nonzero if this function has no function calls. */
2973
2974int
2975leaf_function_p ()
2976{
2977 rtx insn;
2978
2979 if (profile_flag || profile_block_flag)
2980 return 0;
2981
2982 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
2983 {
2984 if (GET_CODE (insn) == CALL_INSN)
2985 return 0;
2986 if (GET_CODE (insn) == INSN
2987 && GET_CODE (PATTERN (insn)) == SEQUENCE
2988 && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == CALL_INSN)
2989 return 0;
2990 }
2991 for (insn = current_function_epilogue_delay_list; insn; insn = XEXP (insn, 1))
2992 {
2993 if (GET_CODE (XEXP (insn, 0)) == CALL_INSN)
2994 return 0;
2995 if (GET_CODE (XEXP (insn, 0)) == INSN
2996 && GET_CODE (PATTERN (XEXP (insn, 0))) == SEQUENCE
2997 && GET_CODE (XVECEXP (PATTERN (XEXP (insn, 0)), 0, 0)) == CALL_INSN)
2998 return 0;
2999 }
3000
3001 return 1;
3002}
3003
3004/* On some machines, a function with no call insns
3005 can run faster if it doesn't create its own register window.
3006 When output, the leaf function should use only the "output"
3007 registers. Ordinarily, the function would be compiled to use
3008 the "input" registers to find its arguments; it is a candidate
3009 for leaf treatment if it uses only the "input" registers.
3010 Leaf function treatment means renumbering so the function
3011 uses the "output" registers instead. */
3012
3013#ifdef LEAF_REGISTERS
3014
3015static char permitted_reg_in_leaf_functions[] = LEAF_REGISTERS;
3016
3017/* Return 1 if this function uses only the registers that can be
3018 safely renumbered. */
3019
3020int
3021only_leaf_regs_used ()
3022{
3023 int i;
3024
3025 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3026 {
3027 if ((regs_ever_live[i] || global_regs[i])
3028 && ! permitted_reg_in_leaf_functions[i])
3029 return 0;
3030 }
3031 return 1;
3032}
3033
3034/* Scan all instructions and renumber all registers into those
3035 available in leaf functions. */
3036
3037static void
3038leaf_renumber_regs (first)
3039 rtx first;
3040{
3041 rtx insn;
3042
3043 /* Renumber only the actual patterns.
3044 The reg-notes can contain frame pointer refs,
3045 and renumbering them could crash, and should not be needed. */
3046 for (insn = first; insn; insn = NEXT_INSN (insn))
3047 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
3048 leaf_renumber_regs_insn (PATTERN (insn));
3049 for (insn = current_function_epilogue_delay_list; insn; insn = XEXP (insn, 1))
3050 if (GET_RTX_CLASS (GET_CODE (XEXP (insn, 0))) == 'i')
3051 leaf_renumber_regs_insn (PATTERN (XEXP (insn, 0)));
3052}
3053
3054/* Scan IN_RTX and its subexpressions, and renumber all regs into those
3055 available in leaf functions. */
3056
3057void
3058leaf_renumber_regs_insn (in_rtx)
3059 register rtx in_rtx;
3060{
3061 register int i, j;
3062 register char *format_ptr;
3063
3064 if (in_rtx == 0)
3065 return;
3066
3067 /* Renumber all input-registers into output-registers.
3068 renumbered_regs would be 1 for an output-register;
3069 they */
3070
3071 if (GET_CODE (in_rtx) == REG)
3072 {
3073 int newreg;
3074
3075 /* Don't renumber the same reg twice. */
3076 if (in_rtx->used)
3077 return;
3078
3079 newreg = REGNO (in_rtx);
3080 /* Don't try to renumber pseudo regs. It is possible for a pseudo reg
3081 to reach here as part of a REG_NOTE. */
3082 if (newreg >= FIRST_PSEUDO_REGISTER)
3083 {
3084 in_rtx->used = 1;
3085 return;
3086 }
3087 newreg = LEAF_REG_REMAP (newreg);
3088 if (newreg < 0)
3089 abort ();
3090 regs_ever_live[REGNO (in_rtx)] = 0;
3091 regs_ever_live[newreg] = 1;
3092 REGNO (in_rtx) = newreg;
3093 in_rtx->used = 1;
3094 }
3095
3096 if (GET_RTX_CLASS (GET_CODE (in_rtx)) == 'i')
3097 {
3098 /* Inside a SEQUENCE, we find insns.
3099 Renumber just the patterns of these insns,
3100 just as we do for the top-level insns. */
3101 leaf_renumber_regs_insn (PATTERN (in_rtx));
3102 return;
3103 }
3104
3105 format_ptr = GET_RTX_FORMAT (GET_CODE (in_rtx));
3106
3107 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (in_rtx)); i++)
3108 switch (*format_ptr++)
3109 {
3110 case 'e':
3111 leaf_renumber_regs_insn (XEXP (in_rtx, i));
3112 break;
3113
3114 case 'E':
3115 if (NULL != XVEC (in_rtx, i))
3116 {
3117 for (j = 0; j < XVECLEN (in_rtx, i); j++)
3118 leaf_renumber_regs_insn (XVECEXP (in_rtx, i, j));
3119 }
3120 break;
3121
3122 case 'S':
3123 case 's':
3124 case '0':
3125 case 'i':
3126 case 'w':
3127 case 'n':
3128 case 'u':
3129 break;
3130
3131 default:
3132 abort ();
3133 }
3134}
3135#endif