Import final gcc2 snapshot (990109)
[official-gcc.git] / gcc / flow.c
blob35e1285c2e542e4363d20973b36e2cc94c4e8bd6
1 /* Data flow analysis for GNU compiler.
2 Copyright (C) 1987, 88, 92-97, 1998 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
22 /* This file contains the data flow analysis pass of the compiler.
23 It computes data flow information
24 which tells combine_instructions which insns to consider combining
25 and controls register allocation.
27 Additional data flow information that is too bulky to record
28 is generated during the analysis, and is used at that time to
29 create autoincrement and autodecrement addressing.
31 The first step is dividing the function into basic blocks.
32 find_basic_blocks does this. Then life_analysis determines
33 where each register is live and where it is dead.
35 ** find_basic_blocks **
37 find_basic_blocks divides the current function's rtl
38 into basic blocks. It records the beginnings and ends of the
39 basic blocks in the vectors basic_block_head and basic_block_end,
40 and the number of blocks in n_basic_blocks.
42 find_basic_blocks also finds any unreachable loops
43 and deletes them.
45 ** life_analysis **
47 life_analysis is called immediately after find_basic_blocks.
48 It uses the basic block information to determine where each
49 hard or pseudo register is live.
51 ** live-register info **
53 The information about where each register is live is in two parts:
54 the REG_NOTES of insns, and the vector basic_block_live_at_start.
56 basic_block_live_at_start has an element for each basic block,
57 and the element is a bit-vector with a bit for each hard or pseudo
58 register. The bit is 1 if the register is live at the beginning
59 of the basic block.
61 Two types of elements can be added to an insn's REG_NOTES.
62 A REG_DEAD note is added to an insn's REG_NOTES for any register
63 that meets both of two conditions: The value in the register is not
64 needed in subsequent insns and the insn does not replace the value in
65 the register (in the case of multi-word hard registers, the value in
66 each register must be replaced by the insn to avoid a REG_DEAD note).
68 In the vast majority of cases, an object in a REG_DEAD note will be
69 used somewhere in the insn. The (rare) exception to this is if an
70 insn uses a multi-word hard register and only some of the registers are
71 needed in subsequent insns. In that case, REG_DEAD notes will be
72 provided for those hard registers that are not subsequently needed.
73 Partial REG_DEAD notes of this type do not occur when an insn sets
74 only some of the hard registers used in such a multi-word operand;
75 omitting REG_DEAD notes for objects stored in an insn is optional and
76 the desire to do so does not justify the complexity of the partial
77 REG_DEAD notes.
79 REG_UNUSED notes are added for each register that is set by the insn
80 but is unused subsequently (if every register set by the insn is unused
81 and the insn does not reference memory or have some other side-effect,
82 the insn is deleted instead). If only part of a multi-word hard
83 register is used in a subsequent insn, REG_UNUSED notes are made for
84 the parts that will not be used.
86 To determine which registers are live after any insn, one can
87 start from the beginning of the basic block and scan insns, noting
88 which registers are set by each insn and which die there.
90 ** Other actions of life_analysis **
92 life_analysis sets up the LOG_LINKS fields of insns because the
93 information needed to do so is readily available.
95 life_analysis deletes insns whose only effect is to store a value
96 that is never used.
98 life_analysis notices cases where a reference to a register as
99 a memory address can be combined with a preceding or following
100 incrementation or decrementation of the register. The separate
101 instruction to increment or decrement is deleted and the address
102 is changed to a POST_INC or similar rtx.
104 Each time an incrementing or decrementing address is created,
105 a REG_INC element is added to the insn's REG_NOTES list.
107 life_analysis fills in certain vectors containing information about
108 register usage: reg_n_refs, reg_n_deaths, reg_n_sets, reg_live_length,
109 reg_n_calls_crosses and reg_basic_block. */
111 #include "config.h"
112 #include "system.h"
113 #include "rtl.h"
114 #include "basic-block.h"
115 #include "insn-config.h"
116 #include "regs.h"
117 #include "hard-reg-set.h"
118 #include "flags.h"
119 #include "output.h"
120 #include "except.h"
121 #include "obstack.h"
123 #define obstack_chunk_alloc xmalloc
124 #define obstack_chunk_free free
126 /* The contents of the current function definition are allocated
127 in this obstack, and all are freed at the end of the function.
128 For top-level functions, this is temporary_obstack.
129 Separate obstacks are made for nested functions. */
131 extern struct obstack *function_obstack;
133 /* List of labels that must never be deleted. */
134 extern rtx forced_labels;
136 /* Get the basic block number of an insn.
137 This info should not be expected to remain available
138 after the end of life_analysis. */
140 /* This is the limit of the allocated space in the following two arrays. */
142 static int max_uid_for_flow;
144 #define BLOCK_NUM(INSN) uid_block_number[INSN_UID (INSN)]
146 /* This is where the BLOCK_NUM values are really stored.
147 This is set up by find_basic_blocks and used there and in life_analysis,
148 and then freed. */
150 static int *uid_block_number;
152 /* INSN_VOLATILE (insn) is 1 if the insn refers to anything volatile. */
154 #define INSN_VOLATILE(INSN) uid_volatile[INSN_UID (INSN)]
155 static char *uid_volatile;
157 /* Number of basic blocks in the current function. */
159 int n_basic_blocks;
161 /* Maximum register number used in this function, plus one. */
163 int max_regno;
165 /* Maximum number of SCRATCH rtx's used in any basic block of this
166 function. */
168 int max_scratch;
170 /* Number of SCRATCH rtx's in the current block. */
172 static int num_scratch;
174 /* Indexed by n, giving various register information */
176 reg_info *reg_n_info;
178 /* Element N is the next insn that uses (hard or pseudo) register number N
179 within the current basic block; or zero, if there is no such insn.
180 This is valid only during the final backward scan in propagate_block. */
182 static rtx *reg_next_use;
184 /* Size of a regset for the current function,
185 in (1) bytes and (2) elements. */
187 int regset_bytes;
188 int regset_size;
190 /* Element N is first insn in basic block N.
191 This info lasts until we finish compiling the function. */
193 rtx *basic_block_head;
195 /* Element N is last insn in basic block N.
196 This info lasts until we finish compiling the function. */
198 rtx *basic_block_end;
200 /* Element N is a regset describing the registers live
201 at the start of basic block N.
202 This info lasts until we finish compiling the function. */
204 regset *basic_block_live_at_start;
206 /* Regset of regs live when calls to `setjmp'-like functions happen. */
208 regset regs_live_at_setjmp;
210 /* List made of EXPR_LIST rtx's which gives pairs of pseudo registers
211 that have to go in the same hard reg.
212 The first two regs in the list are a pair, and the next two
213 are another pair, etc. */
214 rtx regs_may_share;
216 /* Element N is nonzero if control can drop into basic block N
217 from the preceding basic block. Freed after life_analysis. */
219 static char *basic_block_drops_in;
221 /* Element N is depth within loops of the last insn in basic block number N.
222 Freed after life_analysis. */
224 static short *basic_block_loop_depth;
226 /* Element N nonzero if basic block N can actually be reached.
227 Vector exists only during find_basic_blocks. */
229 static char *block_live_static;
231 /* Depth within loops of basic block being scanned for lifetime analysis,
232 plus one. This is the weight attached to references to registers. */
234 static int loop_depth;
236 /* During propagate_block, this is non-zero if the value of CC0 is live. */
238 static int cc0_live;
240 /* During propagate_block, this contains the last MEM stored into. It
241 is used to eliminate consecutive stores to the same location. */
243 static rtx last_mem_set;
245 /* Set of registers that may be eliminable. These are handled specially
246 in updating regs_ever_live. */
248 static HARD_REG_SET elim_reg_set;
250 /* Forward declarations */
251 static void find_basic_blocks PROTO((rtx, rtx));
252 static void mark_label_ref PROTO((rtx, rtx, int));
253 static void life_analysis PROTO((rtx, int));
254 void allocate_for_life_analysis PROTO((void));
255 void init_regset_vector PROTO((regset *, int, struct obstack *));
256 void free_regset_vector PROTO((regset *, int));
257 static void propagate_block PROTO((regset, rtx, rtx, int,
258 regset, int));
259 static rtx flow_delete_insn PROTO((rtx));
260 static int insn_dead_p PROTO((rtx, regset, int));
261 static int libcall_dead_p PROTO((rtx, regset, rtx, rtx));
262 static void mark_set_regs PROTO((regset, regset, rtx,
263 rtx, regset));
264 static void mark_set_1 PROTO((regset, regset, rtx,
265 rtx, regset));
266 static void find_auto_inc PROTO((regset, rtx, rtx));
267 static void mark_used_regs PROTO((regset, regset, rtx, int, rtx));
268 static int try_pre_increment_1 PROTO((rtx));
269 static int try_pre_increment PROTO((rtx, rtx, HOST_WIDE_INT));
270 void dump_flow_info PROTO((FILE *));
272 /* Find basic blocks of the current function and perform data flow analysis.
273 F is the first insn of the function and NREGS the number of register numbers
274 in use. */
276 void
277 flow_analysis (f, nregs, file)
278 rtx f;
279 int nregs;
280 FILE *file;
282 register rtx insn;
283 register int i;
284 rtx nonlocal_label_list = nonlocal_label_rtx_list ();
286 #ifdef ELIMINABLE_REGS
287 static struct {int from, to; } eliminables[] = ELIMINABLE_REGS;
288 #endif
290 /* Record which registers will be eliminated. We use this in
291 mark_used_regs. */
293 CLEAR_HARD_REG_SET (elim_reg_set);
295 #ifdef ELIMINABLE_REGS
296 for (i = 0; i < sizeof eliminables / sizeof eliminables[0]; i++)
297 SET_HARD_REG_BIT (elim_reg_set, eliminables[i].from);
298 #else
299 SET_HARD_REG_BIT (elim_reg_set, FRAME_POINTER_REGNUM);
300 #endif
302 /* Count the basic blocks. Also find maximum insn uid value used. */
305 register RTX_CODE prev_code = JUMP_INSN;
306 register RTX_CODE code;
308 max_uid_for_flow = 0;
310 for (insn = f, i = 0; insn; insn = NEXT_INSN (insn))
312 code = GET_CODE (insn);
313 if (INSN_UID (insn) > max_uid_for_flow)
314 max_uid_for_flow = INSN_UID (insn);
315 if (code == CODE_LABEL
316 || (GET_RTX_CLASS (code) == 'i'
317 && (prev_code == JUMP_INSN
318 || (prev_code == CALL_INSN
319 && nonlocal_label_list != 0)
320 || prev_code == BARRIER)))
321 i++;
323 if (code == CALL_INSN && find_reg_note (insn, REG_RETVAL, NULL_RTX))
324 code = INSN;
326 if (code != NOTE)
327 prev_code = code;
331 #ifdef AUTO_INC_DEC
332 /* Leave space for insns we make in some cases for auto-inc. These cases
333 are rare, so we don't need too much space. */
334 max_uid_for_flow += max_uid_for_flow / 10;
335 #endif
337 /* Allocate some tables that last till end of compiling this function
338 and some needed only in find_basic_blocks and life_analysis. */
340 n_basic_blocks = i;
341 basic_block_head = (rtx *) oballoc (n_basic_blocks * sizeof (rtx));
342 basic_block_end = (rtx *) oballoc (n_basic_blocks * sizeof (rtx));
343 basic_block_drops_in = (char *) alloca (n_basic_blocks);
344 basic_block_loop_depth = (short *) alloca (n_basic_blocks * sizeof (short));
345 uid_block_number
346 = (int *) alloca ((max_uid_for_flow + 1) * sizeof (int));
347 uid_volatile = (char *) alloca (max_uid_for_flow + 1);
348 bzero (uid_volatile, max_uid_for_flow + 1);
350 find_basic_blocks (f, nonlocal_label_list);
351 life_analysis (f, nregs);
352 if (file)
353 dump_flow_info (file);
355 basic_block_drops_in = 0;
356 uid_block_number = 0;
357 basic_block_loop_depth = 0;
360 /* Find all basic blocks of the function whose first insn is F.
361 Store the correct data in the tables that describe the basic blocks,
362 set up the chains of references for each CODE_LABEL, and
363 delete any entire basic blocks that cannot be reached.
365 NONLOCAL_LABEL_LIST is the same local variable from flow_analysis. */
367 static void
368 find_basic_blocks (f, nonlocal_label_list)
369 rtx f, nonlocal_label_list;
371 register rtx insn;
372 register int i;
373 register char *block_live = (char *) alloca (n_basic_blocks);
374 register char *block_marked = (char *) alloca (n_basic_blocks);
375 /* List of label_refs to all labels whose addresses are taken
376 and used as data. */
377 rtx label_value_list;
378 int label_value_list_marked_live;
379 rtx x, note;
380 enum rtx_code prev_code, code;
381 int depth, pass;
383 pass = 1;
384 restart:
386 label_value_list = 0;
387 label_value_list_marked_live = 0;
388 block_live_static = block_live;
389 bzero (block_live, n_basic_blocks);
390 bzero (block_marked, n_basic_blocks);
392 /* Initialize with just block 0 reachable and no blocks marked. */
393 if (n_basic_blocks > 0)
394 block_live[0] = 1;
396 /* Initialize the ref chain of each label to 0. Record where all the
397 blocks start and end and their depth in loops. For each insn, record
398 the block it is in. Also mark as reachable any blocks headed by labels
399 that must not be deleted. */
401 for (insn = f, i = -1, prev_code = JUMP_INSN, depth = 1;
402 insn; insn = NEXT_INSN (insn))
404 code = GET_CODE (insn);
405 if (code == NOTE)
407 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
408 depth++;
409 else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END)
410 depth--;
413 /* A basic block starts at label, or after something that can jump. */
414 else if (code == CODE_LABEL
415 || (GET_RTX_CLASS (code) == 'i'
416 && (prev_code == JUMP_INSN
417 || (prev_code == CALL_INSN
418 && nonlocal_label_list != 0
419 && ! find_reg_note (insn, REG_RETVAL, NULL_RTX))
420 || prev_code == BARRIER)))
422 basic_block_head[++i] = insn;
423 basic_block_end[i] = insn;
424 basic_block_loop_depth[i] = depth;
426 if (code == CODE_LABEL)
428 LABEL_REFS (insn) = insn;
429 /* Any label that cannot be deleted
430 is considered to start a reachable block. */
431 if (LABEL_PRESERVE_P (insn))
432 block_live[i] = 1;
436 else if (GET_RTX_CLASS (code) == 'i')
438 basic_block_end[i] = insn;
439 basic_block_loop_depth[i] = depth;
442 if (GET_RTX_CLASS (code) == 'i')
444 /* Make a list of all labels referred to other than by jumps. */
445 for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
446 if (REG_NOTE_KIND (note) == REG_LABEL)
447 label_value_list = gen_rtx_EXPR_LIST (VOIDmode, XEXP (note, 0),
448 label_value_list);
451 BLOCK_NUM (insn) = i;
453 if (code != NOTE)
454 prev_code = code;
457 /* During the second pass, `n_basic_blocks' is only an upper bound.
458 Only perform the sanity check for the first pass, and on the second
459 pass ensure `n_basic_blocks' is set to the correct value. */
460 if (pass == 1 && i + 1 != n_basic_blocks)
461 abort ();
462 n_basic_blocks = i + 1;
464 for (x = forced_labels; x; x = XEXP (x, 1))
465 if (! LABEL_REF_NONLOCAL_P (x))
466 block_live[BLOCK_NUM (XEXP (x, 0))] = 1;
468 for (x = exception_handler_labels; x; x = XEXP (x, 1))
469 block_live[BLOCK_NUM (XEXP (x, 0))] = 1;
471 /* Record which basic blocks control can drop in to. */
473 for (i = 0; i < n_basic_blocks; i++)
475 for (insn = PREV_INSN (basic_block_head[i]);
476 insn && GET_CODE (insn) == NOTE; insn = PREV_INSN (insn))
479 basic_block_drops_in[i] = insn && GET_CODE (insn) != BARRIER;
482 /* Now find which basic blocks can actually be reached
483 and put all jump insns' LABEL_REFS onto the ref-chains
484 of their target labels. */
486 if (n_basic_blocks > 0)
488 int something_marked = 1;
489 int deleted;
491 /* Find all indirect jump insns and mark them as possibly jumping to all
492 the labels whose addresses are explicitly used. This is because,
493 when there are computed gotos, we can't tell which labels they jump
494 to, of all the possibilities. */
496 for (insn = f; insn; insn = NEXT_INSN (insn))
497 if (computed_jump_p (insn))
499 if (label_value_list_marked_live == 0)
501 label_value_list_marked_live = 1;
503 /* This could be made smarter by only considering
504 these live, if the computed goto is live. */
506 /* Don't delete the labels (in this function) that
507 are referenced by non-jump instructions. */
509 for (x = label_value_list; x; x = XEXP (x, 1))
510 if (! LABEL_REF_NONLOCAL_P (x))
511 block_live[BLOCK_NUM (XEXP (x, 0))] = 1;
514 for (x = label_value_list; x; x = XEXP (x, 1))
515 mark_label_ref (gen_rtx_LABEL_REF (VOIDmode, XEXP (x, 0)),
516 insn, 0);
518 for (x = forced_labels; x; x = XEXP (x, 1))
519 mark_label_ref (gen_rtx_LABEL_REF (VOIDmode, XEXP (x, 0)),
520 insn, 0);
523 /* Find all call insns and mark them as possibly jumping
524 to all the nonlocal goto handler labels. */
526 for (insn = f; insn; insn = NEXT_INSN (insn))
527 if (GET_CODE (insn) == CALL_INSN
528 && ! find_reg_note (insn, REG_RETVAL, NULL_RTX))
530 for (x = nonlocal_label_list; x; x = XEXP (x, 1))
531 mark_label_ref (gen_rtx_LABEL_REF (VOIDmode, XEXP (x, 0)),
532 insn, 0);
534 /* ??? This could be made smarter:
535 in some cases it's possible to tell that certain
536 calls will not do a nonlocal goto.
538 For example, if the nested functions that do the
539 nonlocal gotos do not have their addresses taken, then
540 only calls to those functions or to other nested
541 functions that use them could possibly do nonlocal
542 gotos. */
545 /* All blocks associated with labels in label_value_list are
546 trivially considered as marked live, if the list is empty.
547 We do this to speed up the below code. */
549 if (label_value_list == 0)
550 label_value_list_marked_live = 1;
552 /* Pass over all blocks, marking each block that is reachable
553 and has not yet been marked.
554 Keep doing this until, in one pass, no blocks have been marked.
555 Then blocks_live and blocks_marked are identical and correct.
556 In addition, all jumps actually reachable have been marked. */
558 while (something_marked)
560 something_marked = 0;
561 for (i = 0; i < n_basic_blocks; i++)
562 if (block_live[i] && !block_marked[i])
564 block_marked[i] = 1;
565 something_marked = 1;
566 if (i + 1 < n_basic_blocks && basic_block_drops_in[i + 1])
567 block_live[i + 1] = 1;
568 insn = basic_block_end[i];
569 if (GET_CODE (insn) == JUMP_INSN)
570 mark_label_ref (PATTERN (insn), insn, 0);
572 if (label_value_list_marked_live == 0)
573 /* Now that we know that this block is live, mark as
574 live, all the blocks that we might be able to get
575 to as live. */
577 for (insn = basic_block_head[i];
578 insn != NEXT_INSN (basic_block_end[i]);
579 insn = NEXT_INSN (insn))
581 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
583 for (note = REG_NOTES (insn);
584 note;
585 note = XEXP (note, 1))
586 if (REG_NOTE_KIND (note) == REG_LABEL)
588 x = XEXP (note, 0);
589 block_live[BLOCK_NUM (x)] = 1;
596 /* ??? See if we have a "live" basic block that is not reachable.
597 This can happen if it is headed by a label that is preserved or
598 in one of the label lists, but no call or computed jump is in
599 the loop. It's not clear if we can delete the block or not,
600 but don't for now. However, we will mess up register status if
601 it remains unreachable, so add a fake reachability from the
602 previous block. */
604 for (i = 1; i < n_basic_blocks; i++)
605 if (block_live[i] && ! basic_block_drops_in[i]
606 && GET_CODE (basic_block_head[i]) == CODE_LABEL
607 && LABEL_REFS (basic_block_head[i]) == basic_block_head[i])
608 basic_block_drops_in[i] = 1;
610 /* Now delete the code for any basic blocks that can't be reached.
611 They can occur because jump_optimize does not recognize
612 unreachable loops as unreachable. */
614 deleted = 0;
615 for (i = 0; i < n_basic_blocks; i++)
616 if (!block_live[i])
618 deleted++;
620 /* Delete the insns in a (non-live) block. We physically delete
621 every non-note insn except the start and end (so
622 basic_block_head/end needn't be updated), we turn the latter
623 into NOTE_INSN_DELETED notes.
624 We use to "delete" the insns by turning them into notes, but
625 we may be deleting lots of insns that subsequent passes would
626 otherwise have to process. Secondly, lots of deleted blocks in
627 a row can really slow down propagate_block since it will
628 otherwise process insn-turned-notes multiple times when it
629 looks for loop begin/end notes. */
630 if (basic_block_head[i] != basic_block_end[i])
632 /* It would be quicker to delete all of these with a single
633 unchaining, rather than one at a time, but we need to keep
634 the NOTE's. */
635 insn = NEXT_INSN (basic_block_head[i]);
636 while (insn != basic_block_end[i])
638 if (GET_CODE (insn) == BARRIER)
639 abort ();
640 else if (GET_CODE (insn) != NOTE)
641 insn = flow_delete_insn (insn);
642 else
643 insn = NEXT_INSN (insn);
646 insn = basic_block_head[i];
647 if (GET_CODE (insn) != NOTE)
649 /* Turn the head into a deleted insn note. */
650 if (GET_CODE (insn) == BARRIER)
651 abort ();
652 PUT_CODE (insn, NOTE);
653 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
654 NOTE_SOURCE_FILE (insn) = 0;
656 insn = basic_block_end[i];
657 if (GET_CODE (insn) != NOTE)
659 /* Turn the tail into a deleted insn note. */
660 if (GET_CODE (insn) == BARRIER)
661 abort ();
662 PUT_CODE (insn, NOTE);
663 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
664 NOTE_SOURCE_FILE (insn) = 0;
666 /* BARRIERs are between basic blocks, not part of one.
667 Delete a BARRIER if the preceding jump is deleted.
668 We cannot alter a BARRIER into a NOTE
669 because it is too short; but we can really delete
670 it because it is not part of a basic block. */
671 if (NEXT_INSN (insn) != 0
672 && GET_CODE (NEXT_INSN (insn)) == BARRIER)
673 delete_insn (NEXT_INSN (insn));
675 /* Each time we delete some basic blocks,
676 see if there is a jump around them that is
677 being turned into a no-op. If so, delete it. */
679 if (block_live[i - 1])
681 register int j;
682 for (j = i + 1; j < n_basic_blocks; j++)
683 if (block_live[j])
685 rtx label;
686 insn = basic_block_end[i - 1];
687 if (GET_CODE (insn) == JUMP_INSN
688 /* An unconditional jump is the only possibility
689 we must check for, since a conditional one
690 would make these blocks live. */
691 && simplejump_p (insn)
692 && (label = XEXP (SET_SRC (PATTERN (insn)), 0), 1)
693 && INSN_UID (label) != 0
694 && BLOCK_NUM (label) == j)
696 PUT_CODE (insn, NOTE);
697 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
698 NOTE_SOURCE_FILE (insn) = 0;
699 if (GET_CODE (NEXT_INSN (insn)) != BARRIER)
700 abort ();
701 delete_insn (NEXT_INSN (insn));
703 break;
708 /* There are pathological cases where one function calling hundreds of
709 nested inline functions can generate lots and lots of unreachable
710 blocks that jump can't delete. Since we don't use sparse matrices
711 a lot of memory will be needed to compile such functions.
712 Implementing sparse matrices is a fair bit of work and it is not
713 clear that they win more than they lose (we don't want to
714 unnecessarily slow down compilation of normal code). By making
715 another pass for the pathological case, we can greatly speed up
716 their compilation without hurting normal code. This works because
717 all the insns in the unreachable blocks have either been deleted or
718 turned into notes.
719 Note that we're talking about reducing memory usage by 10's of
720 megabytes and reducing compilation time by several minutes. */
721 /* ??? The choice of when to make another pass is a bit arbitrary,
722 and was derived from empirical data. */
723 if (pass == 1
724 && deleted > 200)
726 pass++;
727 n_basic_blocks -= deleted;
728 /* `n_basic_blocks' may not be correct at this point: two previously
729 separate blocks may now be merged. That's ok though as we
730 recalculate it during the second pass. It certainly can't be
731 any larger than the current value. */
732 goto restart;
737 /* Subroutines of find_basic_blocks. */
739 /* Check expression X for label references;
740 if one is found, add INSN to the label's chain of references.
742 CHECKDUP means check for and avoid creating duplicate references
743 from the same insn. Such duplicates do no serious harm but
744 can slow life analysis. CHECKDUP is set only when duplicates
745 are likely. */
747 static void
748 mark_label_ref (x, insn, checkdup)
749 rtx x, insn;
750 int checkdup;
752 register RTX_CODE code;
753 register int i;
754 register char *fmt;
756 /* We can be called with NULL when scanning label_value_list. */
757 if (x == 0)
758 return;
760 code = GET_CODE (x);
761 if (code == LABEL_REF)
763 register rtx label = XEXP (x, 0);
764 register rtx y;
765 if (GET_CODE (label) != CODE_LABEL)
766 abort ();
767 /* If the label was never emitted, this insn is junk,
768 but avoid a crash trying to refer to BLOCK_NUM (label).
769 This can happen as a result of a syntax error
770 and a diagnostic has already been printed. */
771 if (INSN_UID (label) == 0)
772 return;
773 CONTAINING_INSN (x) = insn;
774 /* if CHECKDUP is set, check for duplicate ref from same insn
775 and don't insert. */
776 if (checkdup)
777 for (y = LABEL_REFS (label); y != label; y = LABEL_NEXTREF (y))
778 if (CONTAINING_INSN (y) == insn)
779 return;
780 LABEL_NEXTREF (x) = LABEL_REFS (label);
781 LABEL_REFS (label) = x;
782 block_live_static[BLOCK_NUM (label)] = 1;
783 return;
786 fmt = GET_RTX_FORMAT (code);
787 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
789 if (fmt[i] == 'e')
790 mark_label_ref (XEXP (x, i), insn, 0);
791 if (fmt[i] == 'E')
793 register int j;
794 for (j = 0; j < XVECLEN (x, i); j++)
795 mark_label_ref (XVECEXP (x, i, j), insn, 1);
800 /* Delete INSN by patching it out.
801 Return the next insn. */
803 static rtx
804 flow_delete_insn (insn)
805 rtx insn;
807 /* ??? For the moment we assume we don't have to watch for NULLs here
808 since the start/end of basic blocks aren't deleted like this. */
809 NEXT_INSN (PREV_INSN (insn)) = NEXT_INSN (insn);
810 PREV_INSN (NEXT_INSN (insn)) = PREV_INSN (insn);
811 return NEXT_INSN (insn);
814 /* Determine which registers are live at the start of each
815 basic block of the function whose first insn is F.
816 NREGS is the number of registers used in F.
817 We allocate the vector basic_block_live_at_start
818 and the regsets that it points to, and fill them with the data.
819 regset_size and regset_bytes are also set here. */
821 static void
822 life_analysis (f, nregs)
823 rtx f;
824 int nregs;
826 int first_pass;
827 int changed;
828 /* For each basic block, a bitmask of regs
829 live on exit from the block. */
830 regset *basic_block_live_at_end;
831 /* For each basic block, a bitmask of regs
832 live on entry to a successor-block of this block.
833 If this does not match basic_block_live_at_end,
834 that must be updated, and the block must be rescanned. */
835 regset *basic_block_new_live_at_end;
836 /* For each basic block, a bitmask of regs
837 whose liveness at the end of the basic block
838 can make a difference in which regs are live on entry to the block.
839 These are the regs that are set within the basic block,
840 possibly excluding those that are used after they are set. */
841 regset *basic_block_significant;
842 register int i;
843 rtx insn;
845 struct obstack flow_obstack;
847 gcc_obstack_init (&flow_obstack);
849 max_regno = nregs;
851 bzero (regs_ever_live, sizeof regs_ever_live);
853 /* Allocate and zero out many data structures
854 that will record the data from lifetime analysis. */
856 allocate_for_life_analysis ();
858 reg_next_use = (rtx *) alloca (nregs * sizeof (rtx));
859 bzero ((char *) reg_next_use, nregs * sizeof (rtx));
861 /* Set up several regset-vectors used internally within this function.
862 Their meanings are documented above, with their declarations. */
864 basic_block_live_at_end
865 = (regset *) alloca (n_basic_blocks * sizeof (regset));
867 /* Don't use alloca since that leads to a crash rather than an error message
868 if there isn't enough space.
869 Don't use oballoc since we may need to allocate other things during
870 this function on the temporary obstack. */
871 init_regset_vector (basic_block_live_at_end, n_basic_blocks, &flow_obstack);
873 basic_block_new_live_at_end
874 = (regset *) alloca (n_basic_blocks * sizeof (regset));
875 init_regset_vector (basic_block_new_live_at_end, n_basic_blocks,
876 &flow_obstack);
878 basic_block_significant
879 = (regset *) alloca (n_basic_blocks * sizeof (regset));
880 init_regset_vector (basic_block_significant, n_basic_blocks, &flow_obstack);
882 /* Record which insns refer to any volatile memory
883 or for any reason can't be deleted just because they are dead stores.
884 Also, delete any insns that copy a register to itself. */
886 for (insn = f; insn; insn = NEXT_INSN (insn))
888 enum rtx_code code1 = GET_CODE (insn);
889 if (code1 == CALL_INSN)
890 INSN_VOLATILE (insn) = 1;
891 else if (code1 == INSN || code1 == JUMP_INSN)
893 /* Delete (in effect) any obvious no-op moves. */
894 if (GET_CODE (PATTERN (insn)) == SET
895 && GET_CODE (SET_DEST (PATTERN (insn))) == REG
896 && GET_CODE (SET_SRC (PATTERN (insn))) == REG
897 && (REGNO (SET_DEST (PATTERN (insn)))
898 == REGNO (SET_SRC (PATTERN (insn))))
899 /* Insns carrying these notes are useful later on. */
900 && ! find_reg_note (insn, REG_EQUAL, NULL_RTX))
902 PUT_CODE (insn, NOTE);
903 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
904 NOTE_SOURCE_FILE (insn) = 0;
906 /* Delete (in effect) any obvious no-op moves. */
907 else if (GET_CODE (PATTERN (insn)) == SET
908 && GET_CODE (SET_DEST (PATTERN (insn))) == SUBREG
909 && GET_CODE (SUBREG_REG (SET_DEST (PATTERN (insn)))) == REG
910 && GET_CODE (SET_SRC (PATTERN (insn))) == SUBREG
911 && GET_CODE (SUBREG_REG (SET_SRC (PATTERN (insn)))) == REG
912 && (REGNO (SUBREG_REG (SET_DEST (PATTERN (insn))))
913 == REGNO (SUBREG_REG (SET_SRC (PATTERN (insn)))))
914 && SUBREG_WORD (SET_DEST (PATTERN (insn))) ==
915 SUBREG_WORD (SET_SRC (PATTERN (insn)))
916 /* Insns carrying these notes are useful later on. */
917 && ! find_reg_note (insn, REG_EQUAL, NULL_RTX))
919 PUT_CODE (insn, NOTE);
920 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
921 NOTE_SOURCE_FILE (insn) = 0;
923 else if (GET_CODE (PATTERN (insn)) == PARALLEL)
925 /* If nothing but SETs of registers to themselves,
926 this insn can also be deleted. */
927 for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
929 rtx tem = XVECEXP (PATTERN (insn), 0, i);
931 if (GET_CODE (tem) == USE
932 || GET_CODE (tem) == CLOBBER)
933 continue;
935 if (GET_CODE (tem) != SET
936 || GET_CODE (SET_DEST (tem)) != REG
937 || GET_CODE (SET_SRC (tem)) != REG
938 || REGNO (SET_DEST (tem)) != REGNO (SET_SRC (tem)))
939 break;
942 if (i == XVECLEN (PATTERN (insn), 0)
943 /* Insns carrying these notes are useful later on. */
944 && ! find_reg_note (insn, REG_EQUAL, NULL_RTX))
946 PUT_CODE (insn, NOTE);
947 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
948 NOTE_SOURCE_FILE (insn) = 0;
950 else
951 INSN_VOLATILE (insn) = volatile_refs_p (PATTERN (insn));
953 else if (GET_CODE (PATTERN (insn)) != USE)
954 INSN_VOLATILE (insn) = volatile_refs_p (PATTERN (insn));
955 /* A SET that makes space on the stack cannot be dead.
956 (Such SETs occur only for allocating variable-size data,
957 so they will always have a PLUS or MINUS according to the
958 direction of stack growth.)
959 Even if this function never uses this stack pointer value,
960 signal handlers do! */
961 else if (code1 == INSN && GET_CODE (PATTERN (insn)) == SET
962 && SET_DEST (PATTERN (insn)) == stack_pointer_rtx
963 #ifdef STACK_GROWS_DOWNWARD
964 && GET_CODE (SET_SRC (PATTERN (insn))) == MINUS
965 #else
966 && GET_CODE (SET_SRC (PATTERN (insn))) == PLUS
967 #endif
968 && XEXP (SET_SRC (PATTERN (insn)), 0) == stack_pointer_rtx)
969 INSN_VOLATILE (insn) = 1;
973 if (n_basic_blocks > 0)
974 #ifdef EXIT_IGNORE_STACK
975 if (! EXIT_IGNORE_STACK
976 || (! FRAME_POINTER_REQUIRED && flag_omit_frame_pointer))
977 #endif
979 /* If exiting needs the right stack value,
980 consider the stack pointer live at the end of the function. */
981 SET_REGNO_REG_SET (basic_block_live_at_end[n_basic_blocks - 1],
982 STACK_POINTER_REGNUM);
983 SET_REGNO_REG_SET (basic_block_new_live_at_end[n_basic_blocks - 1],
984 STACK_POINTER_REGNUM);
987 /* Mark the frame pointer is needed at the end of the function. If
988 we end up eliminating it, it will be removed from the live list
989 of each basic block by reload. */
991 if (n_basic_blocks > 0)
993 SET_REGNO_REG_SET (basic_block_live_at_end[n_basic_blocks - 1],
994 FRAME_POINTER_REGNUM);
995 SET_REGNO_REG_SET (basic_block_new_live_at_end[n_basic_blocks - 1],
996 FRAME_POINTER_REGNUM);
997 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
998 /* If they are different, also mark the hard frame pointer as live */
999 SET_REGNO_REG_SET (basic_block_live_at_end[n_basic_blocks - 1],
1000 HARD_FRAME_POINTER_REGNUM);
1001 SET_REGNO_REG_SET (basic_block_new_live_at_end[n_basic_blocks - 1],
1002 HARD_FRAME_POINTER_REGNUM);
1003 #endif
1006 /* Mark all global registers and all registers used by the epilogue
1007 as being live at the end of the function since they may be
1008 referenced by our caller. */
1010 if (n_basic_blocks > 0)
1011 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1012 if (global_regs[i]
1013 #ifdef EPILOGUE_USES
1014 || EPILOGUE_USES (i)
1015 #endif
1018 SET_REGNO_REG_SET (basic_block_live_at_end[n_basic_blocks - 1], i);
1019 SET_REGNO_REG_SET (basic_block_new_live_at_end[n_basic_blocks - 1], i);
1022 /* Propagate life info through the basic blocks
1023 around the graph of basic blocks.
1025 This is a relaxation process: each time a new register
1026 is live at the end of the basic block, we must scan the block
1027 to determine which registers are, as a consequence, live at the beginning
1028 of that block. These registers must then be marked live at the ends
1029 of all the blocks that can transfer control to that block.
1030 The process continues until it reaches a fixed point. */
1032 first_pass = 1;
1033 changed = 1;
1034 while (changed)
1036 changed = 0;
1037 for (i = n_basic_blocks - 1; i >= 0; i--)
1039 int consider = first_pass;
1040 int must_rescan = first_pass;
1041 register int j;
1043 if (!first_pass)
1045 /* Set CONSIDER if this block needs thinking about at all
1046 (that is, if the regs live now at the end of it
1047 are not the same as were live at the end of it when
1048 we last thought about it).
1049 Set must_rescan if it needs to be thought about
1050 instruction by instruction (that is, if any additional
1051 reg that is live at the end now but was not live there before
1052 is one of the significant regs of this basic block). */
1054 EXECUTE_IF_AND_COMPL_IN_REG_SET
1055 (basic_block_new_live_at_end[i],
1056 basic_block_live_at_end[i], 0, j,
1058 consider = 1;
1059 if (REGNO_REG_SET_P (basic_block_significant[i], j))
1061 must_rescan = 1;
1062 goto done;
1065 done:
1066 if (! consider)
1067 continue;
1070 /* The live_at_start of this block may be changing,
1071 so another pass will be required after this one. */
1072 changed = 1;
1074 if (! must_rescan)
1076 /* No complete rescan needed;
1077 just record those variables newly known live at end
1078 as live at start as well. */
1079 IOR_AND_COMPL_REG_SET (basic_block_live_at_start[i],
1080 basic_block_new_live_at_end[i],
1081 basic_block_live_at_end[i]);
1083 IOR_AND_COMPL_REG_SET (basic_block_live_at_end[i],
1084 basic_block_new_live_at_end[i],
1085 basic_block_live_at_end[i]);
1087 else
1089 /* Update the basic_block_live_at_start
1090 by propagation backwards through the block. */
1091 COPY_REG_SET (basic_block_live_at_end[i],
1092 basic_block_new_live_at_end[i]);
1093 COPY_REG_SET (basic_block_live_at_start[i],
1094 basic_block_live_at_end[i]);
1095 propagate_block (basic_block_live_at_start[i],
1096 basic_block_head[i], basic_block_end[i], 0,
1097 first_pass ? basic_block_significant[i]
1098 : (regset) 0,
1103 register rtx jump, head;
1105 /* Update the basic_block_new_live_at_end's of the block
1106 that falls through into this one (if any). */
1107 head = basic_block_head[i];
1108 if (basic_block_drops_in[i])
1109 IOR_REG_SET (basic_block_new_live_at_end[i-1],
1110 basic_block_live_at_start[i]);
1112 /* Update the basic_block_new_live_at_end's of
1113 all the blocks that jump to this one. */
1114 if (GET_CODE (head) == CODE_LABEL)
1115 for (jump = LABEL_REFS (head);
1116 jump != head;
1117 jump = LABEL_NEXTREF (jump))
1119 register int from_block = BLOCK_NUM (CONTAINING_INSN (jump));
1120 IOR_REG_SET (basic_block_new_live_at_end[from_block],
1121 basic_block_live_at_start[i]);
1124 #ifdef USE_C_ALLOCA
1125 alloca (0);
1126 #endif
1128 first_pass = 0;
1131 /* The only pseudos that are live at the beginning of the function are
1132 those that were not set anywhere in the function. local-alloc doesn't
1133 know how to handle these correctly, so mark them as not local to any
1134 one basic block. */
1136 if (n_basic_blocks > 0)
1137 EXECUTE_IF_SET_IN_REG_SET (basic_block_live_at_start[0],
1138 FIRST_PSEUDO_REGISTER, i,
1140 REG_BASIC_BLOCK (i) = REG_BLOCK_GLOBAL;
1143 /* Now the life information is accurate.
1144 Make one more pass over each basic block
1145 to delete dead stores, create autoincrement addressing
1146 and record how many times each register is used, is set, or dies.
1148 To save time, we operate directly in basic_block_live_at_end[i],
1149 thus destroying it (in fact, converting it into a copy of
1150 basic_block_live_at_start[i]). This is ok now because
1151 basic_block_live_at_end[i] is no longer used past this point. */
1153 max_scratch = 0;
1155 for (i = 0; i < n_basic_blocks; i++)
1157 propagate_block (basic_block_live_at_end[i],
1158 basic_block_head[i], basic_block_end[i], 1,
1159 (regset) 0, i);
1160 #ifdef USE_C_ALLOCA
1161 alloca (0);
1162 #endif
1165 #if 0
1166 /* Something live during a setjmp should not be put in a register
1167 on certain machines which restore regs from stack frames
1168 rather than from the jmpbuf.
1169 But we don't need to do this for the user's variables, since
1170 ANSI says only volatile variables need this. */
1171 #ifdef LONGJMP_RESTORE_FROM_STACK
1172 EXECUTE_IF_SET_IN_REG_SET (regs_live_at_setjmp,
1173 FIRST_PSEUDO_REGISTER, i,
1175 if (regno_reg_rtx[i] != 0
1176 && ! REG_USERVAR_P (regno_reg_rtx[i]))
1178 REG_LIVE_LENGTH (i) = -1;
1179 REG_BASIC_BLOCK (i) = -1;
1182 #endif
1183 #endif
1185 /* We have a problem with any pseudoreg that
1186 lives across the setjmp. ANSI says that if a
1187 user variable does not change in value
1188 between the setjmp and the longjmp, then the longjmp preserves it.
1189 This includes longjmp from a place where the pseudo appears dead.
1190 (In principle, the value still exists if it is in scope.)
1191 If the pseudo goes in a hard reg, some other value may occupy
1192 that hard reg where this pseudo is dead, thus clobbering the pseudo.
1193 Conclusion: such a pseudo must not go in a hard reg. */
1194 EXECUTE_IF_SET_IN_REG_SET (regs_live_at_setjmp,
1195 FIRST_PSEUDO_REGISTER, i,
1197 if (regno_reg_rtx[i] != 0)
1199 REG_LIVE_LENGTH (i) = -1;
1200 REG_BASIC_BLOCK (i) = -1;
1205 free_regset_vector (basic_block_live_at_end, n_basic_blocks);
1206 free_regset_vector (basic_block_new_live_at_end, n_basic_blocks);
1207 free_regset_vector (basic_block_significant, n_basic_blocks);
1208 basic_block_live_at_end = (regset *)0;
1209 basic_block_new_live_at_end = (regset *)0;
1210 basic_block_significant = (regset *)0;
1212 obstack_free (&flow_obstack, NULL_PTR);
1215 /* Subroutines of life analysis. */
1217 /* Allocate the permanent data structures that represent the results
1218 of life analysis. Not static since used also for stupid life analysis. */
1220 void
1221 allocate_for_life_analysis ()
1223 register int i;
1225 /* Recalculate the register space, in case it has grown. Old style
1226 vector oriented regsets would set regset_{size,bytes} here also. */
1227 allocate_reg_info (max_regno, FALSE, FALSE);
1229 /* Because both reg_scan and flow_analysis want to set up the REG_N_SETS
1230 information, explicitly reset it here. The allocation should have
1231 already happened on the previous reg_scan pass. Make sure in case
1232 some more registers were allocated. */
1233 for (i = 0; i < max_regno; i++)
1234 REG_N_SETS (i) = 0;
1236 basic_block_live_at_start
1237 = (regset *) oballoc (n_basic_blocks * sizeof (regset));
1238 init_regset_vector (basic_block_live_at_start, n_basic_blocks,
1239 function_obstack);
1241 regs_live_at_setjmp = OBSTACK_ALLOC_REG_SET (function_obstack);
1242 CLEAR_REG_SET (regs_live_at_setjmp);
1245 /* Make each element of VECTOR point at a regset. The vector has
1246 NELTS elements, and space is allocated from the ALLOC_OBSTACK
1247 obstack. */
1249 void
1250 init_regset_vector (vector, nelts, alloc_obstack)
1251 regset *vector;
1252 int nelts;
1253 struct obstack *alloc_obstack;
1255 register int i;
1257 for (i = 0; i < nelts; i++)
1259 vector[i] = OBSTACK_ALLOC_REG_SET (alloc_obstack);
1260 CLEAR_REG_SET (vector[i]);
1264 /* Release any additional space allocated for each element of VECTOR point
1265 other than the regset header itself. The vector has NELTS elements. */
1267 void
1268 free_regset_vector (vector, nelts)
1269 regset *vector;
1270 int nelts;
1272 register int i;
1274 for (i = 0; i < nelts; i++)
1275 FREE_REG_SET (vector[i]);
1278 /* Compute the registers live at the beginning of a basic block
1279 from those live at the end.
1281 When called, OLD contains those live at the end.
1282 On return, it contains those live at the beginning.
1283 FIRST and LAST are the first and last insns of the basic block.
1285 FINAL is nonzero if we are doing the final pass which is not
1286 for computing the life info (since that has already been done)
1287 but for acting on it. On this pass, we delete dead stores,
1288 set up the logical links and dead-variables lists of instructions,
1289 and merge instructions for autoincrement and autodecrement addresses.
1291 SIGNIFICANT is nonzero only the first time for each basic block.
1292 If it is nonzero, it points to a regset in which we store
1293 a 1 for each register that is set within the block.
1295 BNUM is the number of the basic block. */
1297 static void
1298 propagate_block (old, first, last, final, significant, bnum)
1299 register regset old;
1300 rtx first;
1301 rtx last;
1302 int final;
1303 regset significant;
1304 int bnum;
1306 register rtx insn;
1307 rtx prev;
1308 regset live;
1309 regset dead;
1311 /* The following variables are used only if FINAL is nonzero. */
1312 /* This vector gets one element for each reg that has been live
1313 at any point in the basic block that has been scanned so far.
1314 SOMETIMES_MAX says how many elements are in use so far. */
1315 register int *regs_sometimes_live;
1316 int sometimes_max = 0;
1317 /* This regset has 1 for each reg that we have seen live so far.
1318 It and REGS_SOMETIMES_LIVE are updated together. */
1319 regset maxlive;
1321 /* The loop depth may change in the middle of a basic block. Since we
1322 scan from end to beginning, we start with the depth at the end of the
1323 current basic block, and adjust as we pass ends and starts of loops. */
1324 loop_depth = basic_block_loop_depth[bnum];
1326 dead = ALLOCA_REG_SET ();
1327 live = ALLOCA_REG_SET ();
1329 cc0_live = 0;
1330 last_mem_set = 0;
1332 /* Include any notes at the end of the block in the scan.
1333 This is in case the block ends with a call to setjmp. */
1335 while (NEXT_INSN (last) != 0 && GET_CODE (NEXT_INSN (last)) == NOTE)
1337 /* Look for loop boundaries, we are going forward here. */
1338 last = NEXT_INSN (last);
1339 if (NOTE_LINE_NUMBER (last) == NOTE_INSN_LOOP_BEG)
1340 loop_depth++;
1341 else if (NOTE_LINE_NUMBER (last) == NOTE_INSN_LOOP_END)
1342 loop_depth--;
1345 if (final)
1347 register int i;
1349 num_scratch = 0;
1350 maxlive = ALLOCA_REG_SET ();
1351 COPY_REG_SET (maxlive, old);
1352 regs_sometimes_live = (int *) alloca (max_regno * sizeof (int));
1354 /* Process the regs live at the end of the block.
1355 Enter them in MAXLIVE and REGS_SOMETIMES_LIVE.
1356 Also mark them as not local to any one basic block. */
1357 EXECUTE_IF_SET_IN_REG_SET (old, 0, i,
1359 REG_BASIC_BLOCK (i) = REG_BLOCK_GLOBAL;
1360 regs_sometimes_live[sometimes_max] = i;
1361 sometimes_max++;
1365 /* Scan the block an insn at a time from end to beginning. */
1367 for (insn = last; ; insn = prev)
1369 prev = PREV_INSN (insn);
1371 if (GET_CODE (insn) == NOTE)
1373 /* Look for loop boundaries, remembering that we are going
1374 backwards. */
1375 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END)
1376 loop_depth++;
1377 else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
1378 loop_depth--;
1380 /* If we have LOOP_DEPTH == 0, there has been a bookkeeping error.
1381 Abort now rather than setting register status incorrectly. */
1382 if (loop_depth == 0)
1383 abort ();
1385 /* If this is a call to `setjmp' et al,
1386 warn if any non-volatile datum is live. */
1388 if (final && NOTE_LINE_NUMBER (insn) == NOTE_INSN_SETJMP)
1389 IOR_REG_SET (regs_live_at_setjmp, old);
1392 /* Update the life-status of regs for this insn.
1393 First DEAD gets which regs are set in this insn
1394 then LIVE gets which regs are used in this insn.
1395 Then the regs live before the insn
1396 are those live after, with DEAD regs turned off,
1397 and then LIVE regs turned on. */
1399 else if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
1401 register int i;
1402 rtx note = find_reg_note (insn, REG_RETVAL, NULL_RTX);
1403 int insn_is_dead
1404 = (insn_dead_p (PATTERN (insn), old, 0)
1405 /* Don't delete something that refers to volatile storage! */
1406 && ! INSN_VOLATILE (insn));
1407 int libcall_is_dead
1408 = (insn_is_dead && note != 0
1409 && libcall_dead_p (PATTERN (insn), old, note, insn));
1411 /* If an instruction consists of just dead store(s) on final pass,
1412 "delete" it by turning it into a NOTE of type NOTE_INSN_DELETED.
1413 We could really delete it with delete_insn, but that
1414 can cause trouble for first or last insn in a basic block. */
1415 if (final && insn_is_dead)
1417 PUT_CODE (insn, NOTE);
1418 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
1419 NOTE_SOURCE_FILE (insn) = 0;
1421 /* CC0 is now known to be dead. Either this insn used it,
1422 in which case it doesn't anymore, or clobbered it,
1423 so the next insn can't use it. */
1424 cc0_live = 0;
1426 /* If this insn is copying the return value from a library call,
1427 delete the entire library call. */
1428 if (libcall_is_dead)
1430 rtx first = XEXP (note, 0);
1431 rtx p = insn;
1432 while (INSN_DELETED_P (first))
1433 first = NEXT_INSN (first);
1434 while (p != first)
1436 p = PREV_INSN (p);
1437 PUT_CODE (p, NOTE);
1438 NOTE_LINE_NUMBER (p) = NOTE_INSN_DELETED;
1439 NOTE_SOURCE_FILE (p) = 0;
1442 goto flushed;
1445 CLEAR_REG_SET (dead);
1446 CLEAR_REG_SET (live);
1448 /* See if this is an increment or decrement that can be
1449 merged into a following memory address. */
1450 #ifdef AUTO_INC_DEC
1452 register rtx x = single_set (insn);
1454 /* Does this instruction increment or decrement a register? */
1455 if (final && x != 0
1456 && GET_CODE (SET_DEST (x)) == REG
1457 && (GET_CODE (SET_SRC (x)) == PLUS
1458 || GET_CODE (SET_SRC (x)) == MINUS)
1459 && XEXP (SET_SRC (x), 0) == SET_DEST (x)
1460 && GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
1461 /* Ok, look for a following memory ref we can combine with.
1462 If one is found, change the memory ref to a PRE_INC
1463 or PRE_DEC, cancel this insn, and return 1.
1464 Return 0 if nothing has been done. */
1465 && try_pre_increment_1 (insn))
1466 goto flushed;
1468 #endif /* AUTO_INC_DEC */
1470 /* If this is not the final pass, and this insn is copying the
1471 value of a library call and it's dead, don't scan the
1472 insns that perform the library call, so that the call's
1473 arguments are not marked live. */
1474 if (libcall_is_dead)
1476 /* Mark the dest reg as `significant'. */
1477 mark_set_regs (old, dead, PATTERN (insn), NULL_RTX, significant);
1479 insn = XEXP (note, 0);
1480 prev = PREV_INSN (insn);
1482 else if (GET_CODE (PATTERN (insn)) == SET
1483 && SET_DEST (PATTERN (insn)) == stack_pointer_rtx
1484 && GET_CODE (SET_SRC (PATTERN (insn))) == PLUS
1485 && XEXP (SET_SRC (PATTERN (insn)), 0) == stack_pointer_rtx
1486 && GET_CODE (XEXP (SET_SRC (PATTERN (insn)), 1)) == CONST_INT)
1487 /* We have an insn to pop a constant amount off the stack.
1488 (Such insns use PLUS regardless of the direction of the stack,
1489 and any insn to adjust the stack by a constant is always a pop.)
1490 These insns, if not dead stores, have no effect on life. */
1492 else
1494 /* LIVE gets the regs used in INSN;
1495 DEAD gets those set by it. Dead insns don't make anything
1496 live. */
1498 mark_set_regs (old, dead, PATTERN (insn),
1499 final ? insn : NULL_RTX, significant);
1501 /* If an insn doesn't use CC0, it becomes dead since we
1502 assume that every insn clobbers it. So show it dead here;
1503 mark_used_regs will set it live if it is referenced. */
1504 cc0_live = 0;
1506 if (! insn_is_dead)
1507 mark_used_regs (old, live, PATTERN (insn), final, insn);
1509 /* Sometimes we may have inserted something before INSN (such as
1510 a move) when we make an auto-inc. So ensure we will scan
1511 those insns. */
1512 #ifdef AUTO_INC_DEC
1513 prev = PREV_INSN (insn);
1514 #endif
1516 if (! insn_is_dead && GET_CODE (insn) == CALL_INSN)
1518 register int i;
1520 rtx note;
1522 for (note = CALL_INSN_FUNCTION_USAGE (insn);
1523 note;
1524 note = XEXP (note, 1))
1525 if (GET_CODE (XEXP (note, 0)) == USE)
1526 mark_used_regs (old, live, SET_DEST (XEXP (note, 0)),
1527 final, insn);
1529 /* Each call clobbers all call-clobbered regs that are not
1530 global or fixed. Note that the function-value reg is a
1531 call-clobbered reg, and mark_set_regs has already had
1532 a chance to handle it. */
1534 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1535 if (call_used_regs[i] && ! global_regs[i]
1536 && ! fixed_regs[i])
1537 SET_REGNO_REG_SET (dead, i);
1539 /* The stack ptr is used (honorarily) by a CALL insn. */
1540 SET_REGNO_REG_SET (live, STACK_POINTER_REGNUM);
1542 /* Calls may also reference any of the global registers,
1543 so they are made live. */
1544 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1545 if (global_regs[i])
1546 mark_used_regs (old, live,
1547 gen_rtx_REG (reg_raw_mode[i], i),
1548 final, insn);
1550 /* Calls also clobber memory. */
1551 last_mem_set = 0;
1554 /* Update OLD for the registers used or set. */
1555 AND_COMPL_REG_SET (old, dead);
1556 IOR_REG_SET (old, live);
1558 if (GET_CODE (insn) == CALL_INSN && final)
1560 /* Any regs live at the time of a call instruction
1561 must not go in a register clobbered by calls.
1562 Find all regs now live and record this for them. */
1564 register int *p = regs_sometimes_live;
1566 for (i = 0; i < sometimes_max; i++, p++)
1567 if (REGNO_REG_SET_P (old, *p))
1568 REG_N_CALLS_CROSSED (*p)++;
1572 /* On final pass, add any additional sometimes-live regs
1573 into MAXLIVE and REGS_SOMETIMES_LIVE.
1574 Also update counts of how many insns each reg is live at. */
1576 if (final)
1578 register int regno;
1579 register int *p;
1581 EXECUTE_IF_AND_COMPL_IN_REG_SET
1582 (live, maxlive, 0, regno,
1584 regs_sometimes_live[sometimes_max++] = regno;
1585 SET_REGNO_REG_SET (maxlive, regno);
1588 p = regs_sometimes_live;
1589 for (i = 0; i < sometimes_max; i++)
1591 regno = *p++;
1592 if (REGNO_REG_SET_P (old, regno))
1593 REG_LIVE_LENGTH (regno)++;
1597 flushed: ;
1598 if (insn == first)
1599 break;
1602 FREE_REG_SET (dead);
1603 FREE_REG_SET (live);
1604 if (final)
1605 FREE_REG_SET (maxlive);
1607 if (num_scratch > max_scratch)
1608 max_scratch = num_scratch;
1611 /* Return 1 if X (the body of an insn, or part of it) is just dead stores
1612 (SET expressions whose destinations are registers dead after the insn).
1613 NEEDED is the regset that says which regs are alive after the insn.
1615 Unless CALL_OK is non-zero, an insn is needed if it contains a CALL. */
1617 static int
1618 insn_dead_p (x, needed, call_ok)
1619 rtx x;
1620 regset needed;
1621 int call_ok;
1623 enum rtx_code code = GET_CODE (x);
1625 /* If setting something that's a reg or part of one,
1626 see if that register's altered value will be live. */
1628 if (code == SET)
1630 rtx r = SET_DEST (x);
1632 /* A SET that is a subroutine call cannot be dead. */
1633 if (! call_ok && GET_CODE (SET_SRC (x)) == CALL)
1634 return 0;
1636 #ifdef HAVE_cc0
1637 if (GET_CODE (r) == CC0)
1638 return ! cc0_live;
1639 #endif
1641 if (GET_CODE (r) == MEM && last_mem_set && ! MEM_VOLATILE_P (r)
1642 && rtx_equal_p (r, last_mem_set))
1643 return 1;
1645 while (GET_CODE (r) == SUBREG || GET_CODE (r) == STRICT_LOW_PART
1646 || GET_CODE (r) == ZERO_EXTRACT)
1647 r = SUBREG_REG (r);
1649 if (GET_CODE (r) == REG)
1651 int regno = REGNO (r);
1653 /* Don't delete insns to set global regs. */
1654 if ((regno < FIRST_PSEUDO_REGISTER && global_regs[regno])
1655 /* Make sure insns to set frame pointer aren't deleted. */
1656 || regno == FRAME_POINTER_REGNUM
1657 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
1658 || regno == HARD_FRAME_POINTER_REGNUM
1659 #endif
1660 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
1661 /* Make sure insns to set arg pointer are never deleted
1662 (if the arg pointer isn't fixed, there will be a USE for
1663 it, so we can treat it normally). */
1664 || (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
1665 #endif
1666 || REGNO_REG_SET_P (needed, regno))
1667 return 0;
1669 /* If this is a hard register, verify that subsequent words are
1670 not needed. */
1671 if (regno < FIRST_PSEUDO_REGISTER)
1673 int n = HARD_REGNO_NREGS (regno, GET_MODE (r));
1675 while (--n > 0)
1676 if (REGNO_REG_SET_P (needed, regno+n))
1677 return 0;
1680 return 1;
1684 /* If performing several activities,
1685 insn is dead if each activity is individually dead.
1686 Also, CLOBBERs and USEs can be ignored; a CLOBBER or USE
1687 that's inside a PARALLEL doesn't make the insn worth keeping. */
1688 else if (code == PARALLEL)
1690 int i = XVECLEN (x, 0);
1692 for (i--; i >= 0; i--)
1693 if (GET_CODE (XVECEXP (x, 0, i)) != CLOBBER
1694 && GET_CODE (XVECEXP (x, 0, i)) != USE
1695 && ! insn_dead_p (XVECEXP (x, 0, i), needed, call_ok))
1696 return 0;
1698 return 1;
1701 /* A CLOBBER of a pseudo-register that is dead serves no purpose. That
1702 is not necessarily true for hard registers. */
1703 else if (code == CLOBBER && GET_CODE (XEXP (x, 0)) == REG
1704 && REGNO (XEXP (x, 0)) >= FIRST_PSEUDO_REGISTER
1705 && ! REGNO_REG_SET_P (needed, REGNO (XEXP (x, 0))))
1706 return 1;
1708 /* We do not check other CLOBBER or USE here. An insn consisting of just
1709 a CLOBBER or just a USE should not be deleted. */
1710 return 0;
1713 /* If X is the pattern of the last insn in a libcall, and assuming X is dead,
1714 return 1 if the entire library call is dead.
1715 This is true if X copies a register (hard or pseudo)
1716 and if the hard return reg of the call insn is dead.
1717 (The caller should have tested the destination of X already for death.)
1719 If this insn doesn't just copy a register, then we don't
1720 have an ordinary libcall. In that case, cse could not have
1721 managed to substitute the source for the dest later on,
1722 so we can assume the libcall is dead.
1724 NEEDED is the bit vector of pseudoregs live before this insn.
1725 NOTE is the REG_RETVAL note of the insn. INSN is the insn itself. */
1727 static int
1728 libcall_dead_p (x, needed, note, insn)
1729 rtx x;
1730 regset needed;
1731 rtx note;
1732 rtx insn;
1734 register RTX_CODE code = GET_CODE (x);
1736 if (code == SET)
1738 register rtx r = SET_SRC (x);
1739 if (GET_CODE (r) == REG)
1741 rtx call = XEXP (note, 0);
1742 register int i;
1744 /* Find the call insn. */
1745 while (call != insn && GET_CODE (call) != CALL_INSN)
1746 call = NEXT_INSN (call);
1748 /* If there is none, do nothing special,
1749 since ordinary death handling can understand these insns. */
1750 if (call == insn)
1751 return 0;
1753 /* See if the hard reg holding the value is dead.
1754 If this is a PARALLEL, find the call within it. */
1755 call = PATTERN (call);
1756 if (GET_CODE (call) == PARALLEL)
1758 for (i = XVECLEN (call, 0) - 1; i >= 0; i--)
1759 if (GET_CODE (XVECEXP (call, 0, i)) == SET
1760 && GET_CODE (SET_SRC (XVECEXP (call, 0, i))) == CALL)
1761 break;
1763 /* This may be a library call that is returning a value
1764 via invisible pointer. Do nothing special, since
1765 ordinary death handling can understand these insns. */
1766 if (i < 0)
1767 return 0;
1769 call = XVECEXP (call, 0, i);
1772 return insn_dead_p (call, needed, 1);
1775 return 1;
1778 /* Return 1 if register REGNO was used before it was set.
1779 In other words, if it is live at function entry.
1780 Don't count global register variables or variables in registers
1781 that can be used for function arg passing, though. */
1784 regno_uninitialized (regno)
1785 int regno;
1787 if (n_basic_blocks == 0
1788 || (regno < FIRST_PSEUDO_REGISTER
1789 && (global_regs[regno] || FUNCTION_ARG_REGNO_P (regno))))
1790 return 0;
1792 return REGNO_REG_SET_P (basic_block_live_at_start[0], regno);
1795 /* 1 if register REGNO was alive at a place where `setjmp' was called
1796 and was set more than once or is an argument.
1797 Such regs may be clobbered by `longjmp'. */
1800 regno_clobbered_at_setjmp (regno)
1801 int regno;
1803 if (n_basic_blocks == 0)
1804 return 0;
1806 return ((REG_N_SETS (regno) > 1
1807 || REGNO_REG_SET_P (basic_block_live_at_start[0], regno))
1808 && REGNO_REG_SET_P (regs_live_at_setjmp, regno));
1811 /* Process the registers that are set within X.
1812 Their bits are set to 1 in the regset DEAD,
1813 because they are dead prior to this insn.
1815 If INSN is nonzero, it is the insn being processed
1816 and the fact that it is nonzero implies this is the FINAL pass
1817 in propagate_block. In this case, various info about register
1818 usage is stored, LOG_LINKS fields of insns are set up. */
1820 static void
1821 mark_set_regs (needed, dead, x, insn, significant)
1822 regset needed;
1823 regset dead;
1824 rtx x;
1825 rtx insn;
1826 regset significant;
1828 register RTX_CODE code = GET_CODE (x);
1830 if (code == SET || code == CLOBBER)
1831 mark_set_1 (needed, dead, x, insn, significant);
1832 else if (code == PARALLEL)
1834 register int i;
1835 for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
1837 code = GET_CODE (XVECEXP (x, 0, i));
1838 if (code == SET || code == CLOBBER)
1839 mark_set_1 (needed, dead, XVECEXP (x, 0, i), insn, significant);
1844 /* Process a single SET rtx, X. */
1846 static void
1847 mark_set_1 (needed, dead, x, insn, significant)
1848 regset needed;
1849 regset dead;
1850 rtx x;
1851 rtx insn;
1852 regset significant;
1854 register int regno;
1855 register rtx reg = SET_DEST (x);
1857 /* Modifying just one hardware register of a multi-reg value
1858 or just a byte field of a register
1859 does not mean the value from before this insn is now dead.
1860 But it does mean liveness of that register at the end of the block
1861 is significant.
1863 Within mark_set_1, however, we treat it as if the register is
1864 indeed modified. mark_used_regs will, however, also treat this
1865 register as being used. Thus, we treat these insns as setting a
1866 new value for the register as a function of its old value. This
1867 cases LOG_LINKS to be made appropriately and this will help combine. */
1869 while (GET_CODE (reg) == SUBREG || GET_CODE (reg) == ZERO_EXTRACT
1870 || GET_CODE (reg) == SIGN_EXTRACT
1871 || GET_CODE (reg) == STRICT_LOW_PART)
1872 reg = XEXP (reg, 0);
1874 /* If we are writing into memory or into a register mentioned in the
1875 address of the last thing stored into memory, show we don't know
1876 what the last store was. If we are writing memory, save the address
1877 unless it is volatile. */
1878 if (GET_CODE (reg) == MEM
1879 || (GET_CODE (reg) == REG
1880 && last_mem_set != 0 && reg_overlap_mentioned_p (reg, last_mem_set)))
1881 last_mem_set = 0;
1883 if (GET_CODE (reg) == MEM && ! side_effects_p (reg)
1884 /* There are no REG_INC notes for SP, so we can't assume we'll see
1885 everything that invalidates it. To be safe, don't eliminate any
1886 stores though SP; none of them should be redundant anyway. */
1887 && ! reg_mentioned_p (stack_pointer_rtx, reg))
1888 last_mem_set = reg;
1890 if (GET_CODE (reg) == REG
1891 && (regno = REGNO (reg), regno != FRAME_POINTER_REGNUM)
1892 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
1893 && regno != HARD_FRAME_POINTER_REGNUM
1894 #endif
1895 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
1896 && ! (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
1897 #endif
1898 && ! (regno < FIRST_PSEUDO_REGISTER && global_regs[regno]))
1899 /* && regno != STACK_POINTER_REGNUM) -- let's try without this. */
1901 int some_needed = REGNO_REG_SET_P (needed, regno);
1902 int some_not_needed = ! some_needed;
1904 /* Mark it as a significant register for this basic block. */
1905 if (significant)
1906 SET_REGNO_REG_SET (significant, regno);
1908 /* Mark it as as dead before this insn. */
1909 SET_REGNO_REG_SET (dead, regno);
1911 /* A hard reg in a wide mode may really be multiple registers.
1912 If so, mark all of them just like the first. */
1913 if (regno < FIRST_PSEUDO_REGISTER)
1915 int n;
1917 /* Nothing below is needed for the stack pointer; get out asap.
1918 Eg, log links aren't needed, since combine won't use them. */
1919 if (regno == STACK_POINTER_REGNUM)
1920 return;
1922 n = HARD_REGNO_NREGS (regno, GET_MODE (reg));
1923 while (--n > 0)
1925 int regno_n = regno + n;
1926 int needed_regno = REGNO_REG_SET_P (needed, regno_n);
1927 if (significant)
1928 SET_REGNO_REG_SET (significant, regno_n);
1930 SET_REGNO_REG_SET (dead, regno_n);
1931 some_needed |= needed_regno;
1932 some_not_needed |= ! needed_regno;
1935 /* Additional data to record if this is the final pass. */
1936 if (insn)
1938 register rtx y = reg_next_use[regno];
1939 register int blocknum = BLOCK_NUM (insn);
1941 /* If this is a hard reg, record this function uses the reg. */
1943 if (regno < FIRST_PSEUDO_REGISTER)
1945 register int i;
1946 int endregno = regno + HARD_REGNO_NREGS (regno, GET_MODE (reg));
1948 for (i = regno; i < endregno; i++)
1950 /* The next use is no longer "next", since a store
1951 intervenes. */
1952 reg_next_use[i] = 0;
1954 regs_ever_live[i] = 1;
1955 REG_N_SETS (i)++;
1958 else
1960 /* The next use is no longer "next", since a store
1961 intervenes. */
1962 reg_next_use[regno] = 0;
1964 /* Keep track of which basic blocks each reg appears in. */
1966 if (REG_BASIC_BLOCK (regno) == REG_BLOCK_UNKNOWN)
1967 REG_BASIC_BLOCK (regno) = blocknum;
1968 else if (REG_BASIC_BLOCK (regno) != blocknum)
1969 REG_BASIC_BLOCK (regno) = REG_BLOCK_GLOBAL;
1971 /* Count (weighted) references, stores, etc. This counts a
1972 register twice if it is modified, but that is correct. */
1973 REG_N_SETS (regno)++;
1975 REG_N_REFS (regno) += loop_depth;
1977 /* The insns where a reg is live are normally counted
1978 elsewhere, but we want the count to include the insn
1979 where the reg is set, and the normal counting mechanism
1980 would not count it. */
1981 REG_LIVE_LENGTH (regno)++;
1984 if (! some_not_needed)
1986 /* Make a logical link from the next following insn
1987 that uses this register, back to this insn.
1988 The following insns have already been processed.
1990 We don't build a LOG_LINK for hard registers containing
1991 in ASM_OPERANDs. If these registers get replaced,
1992 we might wind up changing the semantics of the insn,
1993 even if reload can make what appear to be valid assignments
1994 later. */
1995 if (y && (BLOCK_NUM (y) == blocknum)
1996 && (regno >= FIRST_PSEUDO_REGISTER
1997 || asm_noperands (PATTERN (y)) < 0))
1998 LOG_LINKS (y)
1999 = gen_rtx_INSN_LIST (VOIDmode, insn, LOG_LINKS (y));
2001 else if (! some_needed)
2003 /* Note that dead stores have already been deleted when possible
2004 If we get here, we have found a dead store that cannot
2005 be eliminated (because the same insn does something useful).
2006 Indicate this by marking the reg being set as dying here. */
2007 REG_NOTES (insn)
2008 = gen_rtx_EXPR_LIST (REG_UNUSED, reg, REG_NOTES (insn));
2009 REG_N_DEATHS (REGNO (reg))++;
2011 else
2013 /* This is a case where we have a multi-word hard register
2014 and some, but not all, of the words of the register are
2015 needed in subsequent insns. Write REG_UNUSED notes
2016 for those parts that were not needed. This case should
2017 be rare. */
2019 int i;
2021 for (i = HARD_REGNO_NREGS (regno, GET_MODE (reg)) - 1;
2022 i >= 0; i--)
2023 if (!REGNO_REG_SET_P (needed, regno + i))
2024 REG_NOTES (insn)
2025 = gen_rtx_EXPR_LIST (REG_UNUSED,
2026 gen_rtx_REG (reg_raw_mode[regno + i],
2027 regno + i),
2028 REG_NOTES (insn));
2032 else if (GET_CODE (reg) == REG)
2033 reg_next_use[regno] = 0;
2035 /* If this is the last pass and this is a SCRATCH, show it will be dying
2036 here and count it. */
2037 else if (GET_CODE (reg) == SCRATCH && insn != 0)
2039 REG_NOTES (insn)
2040 = gen_rtx_EXPR_LIST (REG_UNUSED, reg, REG_NOTES (insn));
2041 num_scratch++;
2045 #ifdef AUTO_INC_DEC
2047 /* X is a MEM found in INSN. See if we can convert it into an auto-increment
2048 reference. */
2050 static void
2051 find_auto_inc (needed, x, insn)
2052 regset needed;
2053 rtx x;
2054 rtx insn;
2056 rtx addr = XEXP (x, 0);
2057 HOST_WIDE_INT offset = 0;
2058 rtx set;
2060 /* Here we detect use of an index register which might be good for
2061 postincrement, postdecrement, preincrement, or predecrement. */
2063 if (GET_CODE (addr) == PLUS && GET_CODE (XEXP (addr, 1)) == CONST_INT)
2064 offset = INTVAL (XEXP (addr, 1)), addr = XEXP (addr, 0);
2066 if (GET_CODE (addr) == REG)
2068 register rtx y;
2069 register int size = GET_MODE_SIZE (GET_MODE (x));
2070 rtx use;
2071 rtx incr;
2072 int regno = REGNO (addr);
2074 /* Is the next use an increment that might make auto-increment? */
2075 if ((incr = reg_next_use[regno]) != 0
2076 && (set = single_set (incr)) != 0
2077 && GET_CODE (set) == SET
2078 && BLOCK_NUM (incr) == BLOCK_NUM (insn)
2079 /* Can't add side effects to jumps; if reg is spilled and
2080 reloaded, there's no way to store back the altered value. */
2081 && GET_CODE (insn) != JUMP_INSN
2082 && (y = SET_SRC (set), GET_CODE (y) == PLUS)
2083 && XEXP (y, 0) == addr
2084 && GET_CODE (XEXP (y, 1)) == CONST_INT
2085 && (0
2086 #ifdef HAVE_POST_INCREMENT
2087 || (INTVAL (XEXP (y, 1)) == size && offset == 0)
2088 #endif
2089 #ifdef HAVE_POST_DECREMENT
2090 || (INTVAL (XEXP (y, 1)) == - size && offset == 0)
2091 #endif
2092 #ifdef HAVE_PRE_INCREMENT
2093 || (INTVAL (XEXP (y, 1)) == size && offset == size)
2094 #endif
2095 #ifdef HAVE_PRE_DECREMENT
2096 || (INTVAL (XEXP (y, 1)) == - size && offset == - size)
2097 #endif
2099 /* Make sure this reg appears only once in this insn. */
2100 && (use = find_use_as_address (PATTERN (insn), addr, offset),
2101 use != 0 && use != (rtx) 1))
2103 rtx q = SET_DEST (set);
2104 enum rtx_code inc_code = (INTVAL (XEXP (y, 1)) == size
2105 ? (offset ? PRE_INC : POST_INC)
2106 : (offset ? PRE_DEC : POST_DEC));
2108 if (dead_or_set_p (incr, addr))
2110 /* This is the simple case. Try to make the auto-inc. If
2111 we can't, we are done. Otherwise, we will do any
2112 needed updates below. */
2113 if (! validate_change (insn, &XEXP (x, 0),
2114 gen_rtx (inc_code, Pmode, addr),
2116 return;
2118 else if (GET_CODE (q) == REG
2119 /* PREV_INSN used here to check the semi-open interval
2120 [insn,incr). */
2121 && ! reg_used_between_p (q, PREV_INSN (insn), incr)
2122 /* We must also check for sets of q as q may be
2123 a call clobbered hard register and there may
2124 be a call between PREV_INSN (insn) and incr. */
2125 && ! reg_set_between_p (q, PREV_INSN (insn), incr))
2127 /* We have *p followed sometime later by q = p+size.
2128 Both p and q must be live afterward,
2129 and q is not used between INSN and its assignment.
2130 Change it to q = p, ...*q..., q = q+size.
2131 Then fall into the usual case. */
2132 rtx insns, temp;
2134 start_sequence ();
2135 emit_move_insn (q, addr);
2136 insns = get_insns ();
2137 end_sequence ();
2139 /* If anything in INSNS have UID's that don't fit within the
2140 extra space we allocate earlier, we can't make this auto-inc.
2141 This should never happen. */
2142 for (temp = insns; temp; temp = NEXT_INSN (temp))
2144 if (INSN_UID (temp) > max_uid_for_flow)
2145 return;
2146 BLOCK_NUM (temp) = BLOCK_NUM (insn);
2149 /* If we can't make the auto-inc, or can't make the
2150 replacement into Y, exit. There's no point in making
2151 the change below if we can't do the auto-inc and doing
2152 so is not correct in the pre-inc case. */
2154 validate_change (insn, &XEXP (x, 0),
2155 gen_rtx (inc_code, Pmode, q),
2157 validate_change (incr, &XEXP (y, 0), q, 1);
2158 if (! apply_change_group ())
2159 return;
2161 /* We now know we'll be doing this change, so emit the
2162 new insn(s) and do the updates. */
2163 emit_insns_before (insns, insn);
2165 if (basic_block_head[BLOCK_NUM (insn)] == insn)
2166 basic_block_head[BLOCK_NUM (insn)] = insns;
2168 /* INCR will become a NOTE and INSN won't contain a
2169 use of ADDR. If a use of ADDR was just placed in
2170 the insn before INSN, make that the next use.
2171 Otherwise, invalidate it. */
2172 if (GET_CODE (PREV_INSN (insn)) == INSN
2173 && GET_CODE (PATTERN (PREV_INSN (insn))) == SET
2174 && SET_SRC (PATTERN (PREV_INSN (insn))) == addr)
2175 reg_next_use[regno] = PREV_INSN (insn);
2176 else
2177 reg_next_use[regno] = 0;
2179 addr = q;
2180 regno = REGNO (q);
2182 /* REGNO is now used in INCR which is below INSN, but
2183 it previously wasn't live here. If we don't mark
2184 it as needed, we'll put a REG_DEAD note for it
2185 on this insn, which is incorrect. */
2186 SET_REGNO_REG_SET (needed, regno);
2188 /* If there are any calls between INSN and INCR, show
2189 that REGNO now crosses them. */
2190 for (temp = insn; temp != incr; temp = NEXT_INSN (temp))
2191 if (GET_CODE (temp) == CALL_INSN)
2192 REG_N_CALLS_CROSSED (regno)++;
2194 else
2195 return;
2197 /* If we haven't returned, it means we were able to make the
2198 auto-inc, so update the status. First, record that this insn
2199 has an implicit side effect. */
2201 REG_NOTES (insn)
2202 = gen_rtx_EXPR_LIST (REG_INC, addr, REG_NOTES (insn));
2204 /* Modify the old increment-insn to simply copy
2205 the already-incremented value of our register. */
2206 if (! validate_change (incr, &SET_SRC (set), addr, 0))
2207 abort ();
2209 /* If that makes it a no-op (copying the register into itself) delete
2210 it so it won't appear to be a "use" and a "set" of this
2211 register. */
2212 if (SET_DEST (set) == addr)
2214 PUT_CODE (incr, NOTE);
2215 NOTE_LINE_NUMBER (incr) = NOTE_INSN_DELETED;
2216 NOTE_SOURCE_FILE (incr) = 0;
2219 if (regno >= FIRST_PSEUDO_REGISTER)
2221 /* Count an extra reference to the reg. When a reg is
2222 incremented, spilling it is worse, so we want to make
2223 that less likely. */
2224 REG_N_REFS (regno) += loop_depth;
2226 /* Count the increment as a setting of the register,
2227 even though it isn't a SET in rtl. */
2228 REG_N_SETS (regno)++;
2233 #endif /* AUTO_INC_DEC */
2235 /* Scan expression X and store a 1-bit in LIVE for each reg it uses.
2236 This is done assuming the registers needed from X
2237 are those that have 1-bits in NEEDED.
2239 On the final pass, FINAL is 1. This means try for autoincrement
2240 and count the uses and deaths of each pseudo-reg.
2242 INSN is the containing instruction. If INSN is dead, this function is not
2243 called. */
2245 static void
2246 mark_used_regs (needed, live, x, final, insn)
2247 regset needed;
2248 regset live;
2249 rtx x;
2250 int final;
2251 rtx insn;
2253 register RTX_CODE code;
2254 register int regno;
2255 int i;
2257 retry:
2258 code = GET_CODE (x);
2259 switch (code)
2261 case LABEL_REF:
2262 case SYMBOL_REF:
2263 case CONST_INT:
2264 case CONST:
2265 case CONST_DOUBLE:
2266 case PC:
2267 case ADDR_VEC:
2268 case ADDR_DIFF_VEC:
2269 case ASM_INPUT:
2270 return;
2272 #ifdef HAVE_cc0
2273 case CC0:
2274 cc0_live = 1;
2275 return;
2276 #endif
2278 case CLOBBER:
2279 /* If we are clobbering a MEM, mark any registers inside the address
2280 as being used. */
2281 if (GET_CODE (XEXP (x, 0)) == MEM)
2282 mark_used_regs (needed, live, XEXP (XEXP (x, 0), 0), final, insn);
2283 return;
2285 case MEM:
2286 /* Invalidate the data for the last MEM stored, but only if MEM is
2287 something that can be stored into. */
2288 if (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
2289 && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)))
2290 ; /* needn't clear last_mem_set */
2291 else
2292 last_mem_set = 0;
2294 #ifdef AUTO_INC_DEC
2295 if (final)
2296 find_auto_inc (needed, x, insn);
2297 #endif
2298 break;
2300 case SUBREG:
2301 if (GET_CODE (SUBREG_REG (x)) == REG
2302 && REGNO (SUBREG_REG (x)) >= FIRST_PSEUDO_REGISTER
2303 && (GET_MODE_SIZE (GET_MODE (x))
2304 != GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))))
2305 REG_CHANGES_SIZE (REGNO (SUBREG_REG (x))) = 1;
2307 /* While we're here, optimize this case. */
2308 x = SUBREG_REG (x);
2310 /* In case the SUBREG is not of a register, don't optimize */
2311 if (GET_CODE (x) != REG)
2313 mark_used_regs (needed, live, x, final, insn);
2314 return;
2317 /* ... fall through ... */
2319 case REG:
2320 /* See a register other than being set
2321 => mark it as needed. */
2323 regno = REGNO (x);
2325 int some_needed = REGNO_REG_SET_P (needed, regno);
2326 int some_not_needed = ! some_needed;
2328 SET_REGNO_REG_SET (live, regno);
2330 /* A hard reg in a wide mode may really be multiple registers.
2331 If so, mark all of them just like the first. */
2332 if (regno < FIRST_PSEUDO_REGISTER)
2334 int n;
2336 /* For stack ptr or fixed arg pointer,
2337 nothing below can be necessary, so waste no more time. */
2338 if (regno == STACK_POINTER_REGNUM
2339 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
2340 || regno == HARD_FRAME_POINTER_REGNUM
2341 #endif
2342 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
2343 || (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
2344 #endif
2345 || regno == FRAME_POINTER_REGNUM)
2347 /* If this is a register we are going to try to eliminate,
2348 don't mark it live here. If we are successful in
2349 eliminating it, it need not be live unless it is used for
2350 pseudos, in which case it will have been set live when
2351 it was allocated to the pseudos. If the register will not
2352 be eliminated, reload will set it live at that point. */
2354 if (! TEST_HARD_REG_BIT (elim_reg_set, regno))
2355 regs_ever_live[regno] = 1;
2356 return;
2358 /* No death notes for global register variables;
2359 their values are live after this function exits. */
2360 if (global_regs[regno])
2362 if (final)
2363 reg_next_use[regno] = insn;
2364 return;
2367 n = HARD_REGNO_NREGS (regno, GET_MODE (x));
2368 while (--n > 0)
2370 int regno_n = regno + n;
2371 int needed_regno = REGNO_REG_SET_P (needed, regno_n);
2373 SET_REGNO_REG_SET (live, regno_n);
2374 some_needed |= needed_regno;
2375 some_not_needed |= ! needed_regno;
2378 if (final)
2380 /* Record where each reg is used, so when the reg
2381 is set we know the next insn that uses it. */
2383 reg_next_use[regno] = insn;
2385 if (regno < FIRST_PSEUDO_REGISTER)
2387 /* If a hard reg is being used,
2388 record that this function does use it. */
2390 i = HARD_REGNO_NREGS (regno, GET_MODE (x));
2391 if (i == 0)
2392 i = 1;
2394 regs_ever_live[regno + --i] = 1;
2395 while (i > 0);
2397 else
2399 /* Keep track of which basic block each reg appears in. */
2401 register int blocknum = BLOCK_NUM (insn);
2403 if (REG_BASIC_BLOCK (regno) == REG_BLOCK_UNKNOWN)
2404 REG_BASIC_BLOCK (regno) = blocknum;
2405 else if (REG_BASIC_BLOCK (regno) != blocknum)
2406 REG_BASIC_BLOCK (regno) = REG_BLOCK_GLOBAL;
2408 /* Count (weighted) number of uses of each reg. */
2410 REG_N_REFS (regno) += loop_depth;
2413 /* Record and count the insns in which a reg dies.
2414 If it is used in this insn and was dead below the insn
2415 then it dies in this insn. If it was set in this insn,
2416 we do not make a REG_DEAD note; likewise if we already
2417 made such a note. */
2419 if (some_not_needed
2420 && ! dead_or_set_p (insn, x)
2421 #if 0
2422 && (regno >= FIRST_PSEUDO_REGISTER || ! fixed_regs[regno])
2423 #endif
2426 /* Check for the case where the register dying partially
2427 overlaps the register set by this insn. */
2428 if (regno < FIRST_PSEUDO_REGISTER
2429 && HARD_REGNO_NREGS (regno, GET_MODE (x)) > 1)
2431 int n = HARD_REGNO_NREGS (regno, GET_MODE (x));
2432 while (--n >= 0)
2433 some_needed |= dead_or_set_regno_p (insn, regno + n);
2436 /* If none of the words in X is needed, make a REG_DEAD
2437 note. Otherwise, we must make partial REG_DEAD notes. */
2438 if (! some_needed)
2440 REG_NOTES (insn)
2441 = gen_rtx_EXPR_LIST (REG_DEAD, x, REG_NOTES (insn));
2442 REG_N_DEATHS (regno)++;
2444 else
2446 int i;
2448 /* Don't make a REG_DEAD note for a part of a register
2449 that is set in the insn. */
2451 for (i = HARD_REGNO_NREGS (regno, GET_MODE (x)) - 1;
2452 i >= 0; i--)
2453 if (!REGNO_REG_SET_P (needed, regno + i)
2454 && ! dead_or_set_regno_p (insn, regno + i))
2455 REG_NOTES (insn)
2456 = gen_rtx_EXPR_LIST
2457 (REG_DEAD,
2458 gen_rtx_REG (reg_raw_mode[regno + i], regno + i),
2459 REG_NOTES (insn));
2464 return;
2466 case SET:
2468 register rtx testreg = SET_DEST (x);
2469 int mark_dest = 0;
2471 /* If storing into MEM, don't show it as being used. But do
2472 show the address as being used. */
2473 if (GET_CODE (testreg) == MEM)
2475 #ifdef AUTO_INC_DEC
2476 if (final)
2477 find_auto_inc (needed, testreg, insn);
2478 #endif
2479 mark_used_regs (needed, live, XEXP (testreg, 0), final, insn);
2480 mark_used_regs (needed, live, SET_SRC (x), final, insn);
2481 return;
2484 /* Storing in STRICT_LOW_PART is like storing in a reg
2485 in that this SET might be dead, so ignore it in TESTREG.
2486 but in some other ways it is like using the reg.
2488 Storing in a SUBREG or a bit field is like storing the entire
2489 register in that if the register's value is not used
2490 then this SET is not needed. */
2491 while (GET_CODE (testreg) == STRICT_LOW_PART
2492 || GET_CODE (testreg) == ZERO_EXTRACT
2493 || GET_CODE (testreg) == SIGN_EXTRACT
2494 || GET_CODE (testreg) == SUBREG)
2496 if (GET_CODE (testreg) == SUBREG
2497 && GET_CODE (SUBREG_REG (testreg)) == REG
2498 && REGNO (SUBREG_REG (testreg)) >= FIRST_PSEUDO_REGISTER
2499 && (GET_MODE_SIZE (GET_MODE (testreg))
2500 != GET_MODE_SIZE (GET_MODE (SUBREG_REG (testreg)))))
2501 REG_CHANGES_SIZE (REGNO (SUBREG_REG (testreg))) = 1;
2503 /* Modifying a single register in an alternate mode
2504 does not use any of the old value. But these other
2505 ways of storing in a register do use the old value. */
2506 if (GET_CODE (testreg) == SUBREG
2507 && !(REG_SIZE (SUBREG_REG (testreg)) > REG_SIZE (testreg)))
2509 else
2510 mark_dest = 1;
2512 testreg = XEXP (testreg, 0);
2515 /* If this is a store into a register,
2516 recursively scan the value being stored. */
2518 if (GET_CODE (testreg) == REG
2519 && (regno = REGNO (testreg), regno != FRAME_POINTER_REGNUM)
2520 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
2521 && regno != HARD_FRAME_POINTER_REGNUM
2522 #endif
2523 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
2524 && ! (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
2525 #endif
2527 /* We used to exclude global_regs here, but that seems wrong.
2528 Storing in them is like storing in mem. */
2530 mark_used_regs (needed, live, SET_SRC (x), final, insn);
2531 if (mark_dest)
2532 mark_used_regs (needed, live, SET_DEST (x), final, insn);
2533 return;
2536 break;
2538 case RETURN:
2539 /* If exiting needs the right stack value, consider this insn as
2540 using the stack pointer. In any event, consider it as using
2541 all global registers and all registers used by return. */
2543 #ifdef EXIT_IGNORE_STACK
2544 if (! EXIT_IGNORE_STACK
2545 || (! FRAME_POINTER_REQUIRED && flag_omit_frame_pointer))
2546 #endif
2547 SET_REGNO_REG_SET (live, STACK_POINTER_REGNUM);
2549 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
2550 if (global_regs[i]
2551 #ifdef EPILOGUE_USES
2552 || EPILOGUE_USES (i)
2553 #endif
2555 SET_REGNO_REG_SET (live, i);
2556 break;
2558 default:
2559 break;
2562 /* Recursively scan the operands of this expression. */
2565 register char *fmt = GET_RTX_FORMAT (code);
2566 register int i;
2568 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2570 if (fmt[i] == 'e')
2572 /* Tail recursive case: save a function call level. */
2573 if (i == 0)
2575 x = XEXP (x, 0);
2576 goto retry;
2578 mark_used_regs (needed, live, XEXP (x, i), final, insn);
2580 else if (fmt[i] == 'E')
2582 register int j;
2583 for (j = 0; j < XVECLEN (x, i); j++)
2584 mark_used_regs (needed, live, XVECEXP (x, i, j), final, insn);
2590 #ifdef AUTO_INC_DEC
2592 static int
2593 try_pre_increment_1 (insn)
2594 rtx insn;
2596 /* Find the next use of this reg. If in same basic block,
2597 make it do pre-increment or pre-decrement if appropriate. */
2598 rtx x = single_set (insn);
2599 HOST_WIDE_INT amount = ((GET_CODE (SET_SRC (x)) == PLUS ? 1 : -1)
2600 * INTVAL (XEXP (SET_SRC (x), 1)));
2601 int regno = REGNO (SET_DEST (x));
2602 rtx y = reg_next_use[regno];
2603 if (y != 0
2604 && BLOCK_NUM (y) == BLOCK_NUM (insn)
2605 /* Don't do this if the reg dies, or gets set in y; a standard addressing
2606 mode would be better. */
2607 && ! dead_or_set_p (y, SET_DEST (x))
2608 && try_pre_increment (y, SET_DEST (x), amount))
2610 /* We have found a suitable auto-increment
2611 and already changed insn Y to do it.
2612 So flush this increment-instruction. */
2613 PUT_CODE (insn, NOTE);
2614 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
2615 NOTE_SOURCE_FILE (insn) = 0;
2616 /* Count a reference to this reg for the increment
2617 insn we are deleting. When a reg is incremented.
2618 spilling it is worse, so we want to make that
2619 less likely. */
2620 if (regno >= FIRST_PSEUDO_REGISTER)
2622 REG_N_REFS (regno) += loop_depth;
2623 REG_N_SETS (regno)++;
2625 return 1;
2627 return 0;
2630 /* Try to change INSN so that it does pre-increment or pre-decrement
2631 addressing on register REG in order to add AMOUNT to REG.
2632 AMOUNT is negative for pre-decrement.
2633 Returns 1 if the change could be made.
2634 This checks all about the validity of the result of modifying INSN. */
2636 static int
2637 try_pre_increment (insn, reg, amount)
2638 rtx insn, reg;
2639 HOST_WIDE_INT amount;
2641 register rtx use;
2643 /* Nonzero if we can try to make a pre-increment or pre-decrement.
2644 For example, addl $4,r1; movl (r1),... can become movl +(r1),... */
2645 int pre_ok = 0;
2646 /* Nonzero if we can try to make a post-increment or post-decrement.
2647 For example, addl $4,r1; movl -4(r1),... can become movl (r1)+,...
2648 It is possible for both PRE_OK and POST_OK to be nonzero if the machine
2649 supports both pre-inc and post-inc, or both pre-dec and post-dec. */
2650 int post_ok = 0;
2652 /* Nonzero if the opportunity actually requires post-inc or post-dec. */
2653 int do_post = 0;
2655 /* From the sign of increment, see which possibilities are conceivable
2656 on this target machine. */
2657 #ifdef HAVE_PRE_INCREMENT
2658 if (amount > 0)
2659 pre_ok = 1;
2660 #endif
2661 #ifdef HAVE_POST_INCREMENT
2662 if (amount > 0)
2663 post_ok = 1;
2664 #endif
2666 #ifdef HAVE_PRE_DECREMENT
2667 if (amount < 0)
2668 pre_ok = 1;
2669 #endif
2670 #ifdef HAVE_POST_DECREMENT
2671 if (amount < 0)
2672 post_ok = 1;
2673 #endif
2675 if (! (pre_ok || post_ok))
2676 return 0;
2678 /* It is not safe to add a side effect to a jump insn
2679 because if the incremented register is spilled and must be reloaded
2680 there would be no way to store the incremented value back in memory. */
2682 if (GET_CODE (insn) == JUMP_INSN)
2683 return 0;
2685 use = 0;
2686 if (pre_ok)
2687 use = find_use_as_address (PATTERN (insn), reg, 0);
2688 if (post_ok && (use == 0 || use == (rtx) 1))
2690 use = find_use_as_address (PATTERN (insn), reg, -amount);
2691 do_post = 1;
2694 if (use == 0 || use == (rtx) 1)
2695 return 0;
2697 if (GET_MODE_SIZE (GET_MODE (use)) != (amount > 0 ? amount : - amount))
2698 return 0;
2700 /* See if this combination of instruction and addressing mode exists. */
2701 if (! validate_change (insn, &XEXP (use, 0),
2702 gen_rtx (amount > 0
2703 ? (do_post ? POST_INC : PRE_INC)
2704 : (do_post ? POST_DEC : PRE_DEC),
2705 Pmode, reg), 0))
2706 return 0;
2708 /* Record that this insn now has an implicit side effect on X. */
2709 REG_NOTES (insn) = gen_rtx_EXPR_LIST (REG_INC, reg, REG_NOTES (insn));
2710 return 1;
2713 #endif /* AUTO_INC_DEC */
2715 /* Find the place in the rtx X where REG is used as a memory address.
2716 Return the MEM rtx that so uses it.
2717 If PLUSCONST is nonzero, search instead for a memory address equivalent to
2718 (plus REG (const_int PLUSCONST)).
2720 If such an address does not appear, return 0.
2721 If REG appears more than once, or is used other than in such an address,
2722 return (rtx)1. */
2725 find_use_as_address (x, reg, plusconst)
2726 register rtx x;
2727 rtx reg;
2728 HOST_WIDE_INT plusconst;
2730 enum rtx_code code = GET_CODE (x);
2731 char *fmt = GET_RTX_FORMAT (code);
2732 register int i;
2733 register rtx value = 0;
2734 register rtx tem;
2736 if (code == MEM && XEXP (x, 0) == reg && plusconst == 0)
2737 return x;
2739 if (code == MEM && GET_CODE (XEXP (x, 0)) == PLUS
2740 && XEXP (XEXP (x, 0), 0) == reg
2741 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
2742 && INTVAL (XEXP (XEXP (x, 0), 1)) == plusconst)
2743 return x;
2745 if (code == SIGN_EXTRACT || code == ZERO_EXTRACT)
2747 /* If REG occurs inside a MEM used in a bit-field reference,
2748 that is unacceptable. */
2749 if (find_use_as_address (XEXP (x, 0), reg, 0) != 0)
2750 return (rtx) (HOST_WIDE_INT) 1;
2753 if (x == reg)
2754 return (rtx) (HOST_WIDE_INT) 1;
2756 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2758 if (fmt[i] == 'e')
2760 tem = find_use_as_address (XEXP (x, i), reg, plusconst);
2761 if (value == 0)
2762 value = tem;
2763 else if (tem != 0)
2764 return (rtx) (HOST_WIDE_INT) 1;
2766 if (fmt[i] == 'E')
2768 register int j;
2769 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2771 tem = find_use_as_address (XVECEXP (x, i, j), reg, plusconst);
2772 if (value == 0)
2773 value = tem;
2774 else if (tem != 0)
2775 return (rtx) (HOST_WIDE_INT) 1;
2780 return value;
2783 /* Write information about registers and basic blocks into FILE.
2784 This is part of making a debugging dump. */
2786 void
2787 dump_flow_info (file)
2788 FILE *file;
2790 register int i;
2791 static char *reg_class_names[] = REG_CLASS_NAMES;
2793 fprintf (file, "%d registers.\n", max_regno);
2795 for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
2796 if (REG_N_REFS (i))
2798 enum reg_class class, altclass;
2799 fprintf (file, "\nRegister %d used %d times across %d insns",
2800 i, REG_N_REFS (i), REG_LIVE_LENGTH (i));
2801 if (REG_BASIC_BLOCK (i) >= 0)
2802 fprintf (file, " in block %d", REG_BASIC_BLOCK (i));
2803 if (REG_N_DEATHS (i) != 1)
2804 fprintf (file, "; dies in %d places", REG_N_DEATHS (i));
2805 if (REG_N_CALLS_CROSSED (i) == 1)
2806 fprintf (file, "; crosses 1 call");
2807 else if (REG_N_CALLS_CROSSED (i))
2808 fprintf (file, "; crosses %d calls", REG_N_CALLS_CROSSED (i));
2809 if (PSEUDO_REGNO_BYTES (i) != UNITS_PER_WORD)
2810 fprintf (file, "; %d bytes", PSEUDO_REGNO_BYTES (i));
2811 class = reg_preferred_class (i);
2812 altclass = reg_alternate_class (i);
2813 if (class != GENERAL_REGS || altclass != ALL_REGS)
2815 if (altclass == ALL_REGS || class == ALL_REGS)
2816 fprintf (file, "; pref %s", reg_class_names[(int) class]);
2817 else if (altclass == NO_REGS)
2818 fprintf (file, "; %s or none", reg_class_names[(int) class]);
2819 else
2820 fprintf (file, "; pref %s, else %s",
2821 reg_class_names[(int) class],
2822 reg_class_names[(int) altclass]);
2824 if (REGNO_POINTER_FLAG (i))
2825 fprintf (file, "; pointer");
2826 fprintf (file, ".\n");
2828 fprintf (file, "\n%d basic blocks.\n", n_basic_blocks);
2829 for (i = 0; i < n_basic_blocks; i++)
2831 register rtx head, jump;
2832 register int regno;
2833 fprintf (file, "\nBasic block %d: first insn %d, last %d.\n",
2835 INSN_UID (basic_block_head[i]),
2836 INSN_UID (basic_block_end[i]));
2837 /* The control flow graph's storage is freed
2838 now when flow_analysis returns.
2839 Don't try to print it if it is gone. */
2840 if (basic_block_drops_in)
2842 fprintf (file, "Reached from blocks: ");
2843 head = basic_block_head[i];
2844 if (GET_CODE (head) == CODE_LABEL)
2845 for (jump = LABEL_REFS (head);
2846 jump != head;
2847 jump = LABEL_NEXTREF (jump))
2849 register int from_block = BLOCK_NUM (CONTAINING_INSN (jump));
2850 fprintf (file, " %d", from_block);
2852 if (basic_block_drops_in[i])
2853 fprintf (file, " previous");
2855 fprintf (file, "\nRegisters live at start:");
2856 for (regno = 0; regno < max_regno; regno++)
2857 if (REGNO_REG_SET_P (basic_block_live_at_start[i], regno))
2858 fprintf (file, " %d", regno);
2859 fprintf (file, "\n");
2861 fprintf (file, "\n");
2865 /* Like print_rtl, but also print out live information for the start of each
2866 basic block. */
2868 void
2869 print_rtl_with_bb (outf, rtx_first)
2870 FILE *outf;
2871 rtx rtx_first;
2873 register rtx tmp_rtx;
2875 if (rtx_first == 0)
2876 fprintf (outf, "(nil)\n");
2878 else
2880 int i, bb;
2881 enum bb_state { NOT_IN_BB, IN_ONE_BB, IN_MULTIPLE_BB };
2882 int max_uid = get_max_uid ();
2883 int *start = (int *) alloca (max_uid * sizeof (int));
2884 int *end = (int *) alloca (max_uid * sizeof (int));
2885 char *in_bb_p = (char *) alloca (max_uid * sizeof (enum bb_state));
2887 for (i = 0; i < max_uid; i++)
2889 start[i] = end[i] = -1;
2890 in_bb_p[i] = NOT_IN_BB;
2893 for (i = n_basic_blocks-1; i >= 0; i--)
2895 rtx x;
2896 start[INSN_UID (basic_block_head[i])] = i;
2897 end[INSN_UID (basic_block_end[i])] = i;
2898 for (x = basic_block_head[i]; x != NULL_RTX; x = NEXT_INSN (x))
2900 in_bb_p[ INSN_UID(x)]
2901 = (in_bb_p[ INSN_UID(x)] == NOT_IN_BB)
2902 ? IN_ONE_BB : IN_MULTIPLE_BB;
2903 if (x == basic_block_end[i])
2904 break;
2908 for (tmp_rtx = rtx_first; NULL != tmp_rtx; tmp_rtx = NEXT_INSN (tmp_rtx))
2910 if ((bb = start[INSN_UID (tmp_rtx)]) >= 0)
2912 int pos = 18;
2914 if (PREV_INSN (tmp_rtx) != 0
2915 && end[INSN_UID (PREV_INSN (tmp_rtx))] >= 0)
2916 fprintf (outf, " start");
2917 else
2918 fprintf (outf, ";; Start");
2920 fprintf (outf, " of basic block %d.\n;; Registers live:", bb);
2922 EXECUTE_IF_SET_IN_REG_SET (basic_block_live_at_start[bb], 0, i,
2924 if (pos > 65)
2926 fprintf (outf, "\n;;\t");
2927 pos = 10;
2930 fprintf (outf, " %d", i);
2931 pos += (i >= 100 ? 4 : 3);
2932 if (i < FIRST_PSEUDO_REGISTER)
2934 fprintf (outf, " [%s]",
2935 reg_names[i]);
2936 pos += (strlen (reg_names[i])
2937 + 3);
2940 putc ('\n', outf);
2941 putc ('\n', outf);
2944 if (in_bb_p[INSN_UID(tmp_rtx)] == NOT_IN_BB
2945 && GET_CODE (tmp_rtx) != NOTE
2946 && GET_CODE (tmp_rtx) != BARRIER
2947 && ! obey_regdecls)
2948 fprintf (outf, ";; Insn is not within a basic block\n");
2949 else if (in_bb_p[ INSN_UID(tmp_rtx)] == IN_MULTIPLE_BB)
2950 fprintf (outf, ";; Insn is in multiple basic blocks\n");
2952 print_rtl_single (outf, tmp_rtx);
2953 putc ('\n', outf);
2955 if ((bb = end[INSN_UID (tmp_rtx)]) >= 0)
2957 fprintf (outf, "\n;; End of basic block %d", bb);
2958 if (NEXT_INSN (tmp_rtx) != 0
2959 && start[INSN_UID (NEXT_INSN (tmp_rtx))] >= 0)
2960 fprintf (outf, ";");
2961 else
2962 fprintf (outf, ".\n");
2967 if (current_function_epilogue_delay_list != 0)
2969 fprintf (outf, "\n;; Insns in epilogue delay list:\n\n");
2970 for (tmp_rtx = current_function_epilogue_delay_list; tmp_rtx != 0;
2971 tmp_rtx = XEXP (tmp_rtx, 1))
2972 print_rtl_single (outf, XEXP (tmp_rtx, 0));