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