(decl_function_context): Handle QUAL_UNION_TYPE.
[official-gcc.git] / gcc / flow.c
blob86d72286331a72db86c864ec2ec94ef623657464
1 /* Data flow analysis for GNU compiler.
2 Copyright (C) 1987, 88, 92, 93, 94, 95, 1996 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 <stdio.h>
112 #include "config.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"
122 #include "obstack.h"
123 #define obstack_chunk_alloc xmalloc
124 #define obstack_chunk_free free
126 /* List of labels that must never be deleted. */
127 extern rtx forced_labels;
129 /* Get the basic block number of an insn.
130 This info should not be expected to remain available
131 after the end of life_analysis. */
133 /* This is the limit of the allocated space in the following two arrays. */
135 static int max_uid_for_flow;
137 #define BLOCK_NUM(INSN) uid_block_number[INSN_UID (INSN)]
139 /* This is where the BLOCK_NUM values are really stored.
140 This is set up by find_basic_blocks and used there and in life_analysis,
141 and then freed. */
143 static int *uid_block_number;
145 /* INSN_VOLATILE (insn) is 1 if the insn refers to anything volatile. */
147 #define INSN_VOLATILE(INSN) uid_volatile[INSN_UID (INSN)]
148 static char *uid_volatile;
150 /* Number of basic blocks in the current function. */
152 int n_basic_blocks;
154 /* Maximum register number used in this function, plus one. */
156 int max_regno;
158 /* Maximum number of SCRATCH rtx's used in any basic block of this
159 function. */
161 int max_scratch;
163 /* Number of SCRATCH rtx's in the current block. */
165 static int num_scratch;
167 /* Indexed by n, gives number of basic block that (REG n) is used in.
168 If the value is REG_BLOCK_GLOBAL (-2),
169 it means (REG n) is used in more than one basic block.
170 REG_BLOCK_UNKNOWN (-1) means it hasn't been seen yet so we don't know.
171 This information remains valid for the rest of the compilation
172 of the current function; it is used to control register allocation. */
174 int *reg_basic_block;
176 /* Indexed by n, gives number of times (REG n) is used or set, each
177 weighted by its loop-depth.
178 This information remains valid for the rest of the compilation
179 of the current function; it is used to control register allocation. */
181 int *reg_n_refs;
183 /* Indexed by N; says whether a pseudo register N was ever used
184 within a SUBREG that changes the size of the reg. Some machines prohibit
185 such objects to be in certain (usually floating-point) registers. */
187 char *reg_changes_size;
189 /* Indexed by N, gives number of places register N dies.
190 This information remains valid for the rest of the compilation
191 of the current function; it is used to control register allocation. */
193 short *reg_n_deaths;
195 /* Indexed by N, gives 1 if that reg is live across any CALL_INSNs.
196 This information remains valid for the rest of the compilation
197 of the current function; it is used to control register allocation. */
199 int *reg_n_calls_crossed;
201 /* Total number of instructions at which (REG n) is live.
202 The larger this is, the less priority (REG n) gets for
203 allocation in a real register.
204 This information remains valid for the rest of the compilation
205 of the current function; it is used to control register allocation.
207 local-alloc.c may alter this number to change the priority.
209 Negative values are special.
210 -1 is used to mark a pseudo reg which has a constant or memory equivalent
211 and is used infrequently enough that it should not get a hard register.
212 -2 is used to mark a pseudo reg for a parameter, when a frame pointer
213 is not required. global.c makes an allocno for this but does
214 not try to assign a hard register to it. */
216 int *reg_live_length;
218 /* Element N is the next insn that uses (hard or pseudo) register number N
219 within the current basic block; or zero, if there is no such insn.
220 This is valid only during the final backward scan in propagate_block. */
222 static rtx *reg_next_use;
224 /* Size of a regset for the current function,
225 in (1) bytes and (2) elements. */
227 int regset_bytes;
228 int regset_size;
230 /* Element N is first insn in basic block N.
231 This info lasts until we finish compiling the function. */
233 rtx *basic_block_head;
235 /* Element N is last insn in basic block N.
236 This info lasts until we finish compiling the function. */
238 rtx *basic_block_end;
240 /* Element N is a regset describing the registers live
241 at the start of basic block N.
242 This info lasts until we finish compiling the function. */
244 regset *basic_block_live_at_start;
246 /* Regset of regs live when calls to `setjmp'-like functions happen. */
248 regset regs_live_at_setjmp;
250 /* List made of EXPR_LIST rtx's which gives pairs of pseudo registers
251 that have to go in the same hard reg.
252 The first two regs in the list are a pair, and the next two
253 are another pair, etc. */
254 rtx regs_may_share;
256 /* Element N is nonzero if control can drop into basic block N
257 from the preceding basic block. Freed after life_analysis. */
259 static char *basic_block_drops_in;
261 /* Element N is depth within loops of the last insn in basic block number N.
262 Freed after life_analysis. */
264 static short *basic_block_loop_depth;
266 /* Element N nonzero if basic block N can actually be reached.
267 Vector exists only during find_basic_blocks. */
269 static char *block_live_static;
271 /* Depth within loops of basic block being scanned for lifetime analysis,
272 plus one. This is the weight attached to references to registers. */
274 static int loop_depth;
276 /* During propagate_block, this is non-zero if the value of CC0 is live. */
278 static int cc0_live;
280 /* During propagate_block, this contains the last MEM stored into. It
281 is used to eliminate consecutive stores to the same location. */
283 static rtx last_mem_set;
285 /* Set of registers that may be eliminable. These are handled specially
286 in updating regs_ever_live. */
288 static HARD_REG_SET elim_reg_set;
290 /* Forward declarations */
291 static void find_basic_blocks PROTO((rtx, rtx));
292 static int jmp_uses_reg_or_mem PROTO((rtx));
293 static void mark_label_ref PROTO((rtx, rtx, int));
294 static void life_analysis PROTO((rtx, int));
295 void allocate_for_life_analysis PROTO((void));
296 static void init_regset_vector PROTO((regset *, regset, int, int));
297 static void propagate_block PROTO((regset, rtx, rtx, int,
298 regset, int));
299 static rtx flow_delete_insn PROTO((rtx));
300 static int insn_dead_p PROTO((rtx, regset, int));
301 static int libcall_dead_p PROTO((rtx, regset, rtx, rtx));
302 static void mark_set_regs PROTO((regset, regset, rtx,
303 rtx, regset));
304 static void mark_set_1 PROTO((regset, regset, rtx,
305 rtx, regset));
306 static void find_auto_inc PROTO((regset, rtx, rtx));
307 static void mark_used_regs PROTO((regset, regset, rtx, int, rtx));
308 static int try_pre_increment_1 PROTO((rtx));
309 static int try_pre_increment PROTO((rtx, rtx, HOST_WIDE_INT));
310 static rtx find_use_as_address PROTO((rtx, rtx, HOST_WIDE_INT));
311 void dump_flow_info PROTO((FILE *));
313 /* Find basic blocks of the current function and perform data flow analysis.
314 F is the first insn of the function and NREGS the number of register numbers
315 in use. */
317 void
318 flow_analysis (f, nregs, file)
319 rtx f;
320 int nregs;
321 FILE *file;
323 register rtx insn;
324 register int i;
325 rtx nonlocal_label_list = nonlocal_label_rtx_list ();
327 #ifdef ELIMINABLE_REGS
328 static struct {int from, to; } eliminables[] = ELIMINABLE_REGS;
329 #endif
331 /* Record which registers will be eliminated. We use this in
332 mark_used_regs. */
334 CLEAR_HARD_REG_SET (elim_reg_set);
336 #ifdef ELIMINABLE_REGS
337 for (i = 0; i < sizeof eliminables / sizeof eliminables[0]; i++)
338 SET_HARD_REG_BIT (elim_reg_set, eliminables[i].from);
339 #else
340 SET_HARD_REG_BIT (elim_reg_set, FRAME_POINTER_REGNUM);
341 #endif
343 /* Count the basic blocks. Also find maximum insn uid value used. */
346 register RTX_CODE prev_code = JUMP_INSN;
347 register RTX_CODE code;
349 max_uid_for_flow = 0;
351 for (insn = f, i = 0; insn; insn = NEXT_INSN (insn))
353 code = GET_CODE (insn);
354 if (INSN_UID (insn) > max_uid_for_flow)
355 max_uid_for_flow = INSN_UID (insn);
356 if (code == CODE_LABEL
357 || (GET_RTX_CLASS (code) == 'i'
358 && (prev_code == JUMP_INSN
359 || (prev_code == CALL_INSN
360 && nonlocal_label_list != 0)
361 || prev_code == BARRIER)))
362 i++;
364 if (code == CALL_INSN && find_reg_note (insn, REG_RETVAL, NULL_RTX))
365 code = INSN;
367 if (code != NOTE)
368 prev_code = code;
372 #ifdef AUTO_INC_DEC
373 /* Leave space for insns we make in some cases for auto-inc. These cases
374 are rare, so we don't need too much space. */
375 max_uid_for_flow += max_uid_for_flow / 10;
376 #endif
378 /* Allocate some tables that last till end of compiling this function
379 and some needed only in find_basic_blocks and life_analysis. */
381 n_basic_blocks = i;
382 basic_block_head = (rtx *) oballoc (n_basic_blocks * sizeof (rtx));
383 basic_block_end = (rtx *) oballoc (n_basic_blocks * sizeof (rtx));
384 basic_block_drops_in = (char *) alloca (n_basic_blocks);
385 basic_block_loop_depth = (short *) alloca (n_basic_blocks * sizeof (short));
386 uid_block_number
387 = (int *) alloca ((max_uid_for_flow + 1) * sizeof (int));
388 uid_volatile = (char *) alloca (max_uid_for_flow + 1);
389 bzero (uid_volatile, max_uid_for_flow + 1);
391 find_basic_blocks (f, nonlocal_label_list);
392 life_analysis (f, nregs);
393 if (file)
394 dump_flow_info (file);
396 basic_block_drops_in = 0;
397 uid_block_number = 0;
398 basic_block_loop_depth = 0;
401 /* Find all basic blocks of the function whose first insn is F.
402 Store the correct data in the tables that describe the basic blocks,
403 set up the chains of references for each CODE_LABEL, and
404 delete any entire basic blocks that cannot be reached.
406 NONLOCAL_LABEL_LIST is the same local variable from flow_analysis. */
408 static void
409 find_basic_blocks (f, nonlocal_label_list)
410 rtx f, nonlocal_label_list;
412 register rtx insn;
413 register int i;
414 register char *block_live = (char *) alloca (n_basic_blocks);
415 register char *block_marked = (char *) alloca (n_basic_blocks);
416 /* List of label_refs to all labels whose addresses are taken
417 and used as data. */
418 rtx label_value_list;
419 rtx x, note;
420 enum rtx_code prev_code, code;
421 int depth, pass;
423 pass = 1;
424 restart:
426 label_value_list = 0;
427 block_live_static = block_live;
428 bzero (block_live, n_basic_blocks);
429 bzero (block_marked, n_basic_blocks);
431 /* Initialize with just block 0 reachable and no blocks marked. */
432 if (n_basic_blocks > 0)
433 block_live[0] = 1;
435 /* Initialize the ref chain of each label to 0. Record where all the
436 blocks start and end and their depth in loops. For each insn, record
437 the block it is in. Also mark as reachable any blocks headed by labels
438 that must not be deleted. */
440 for (insn = f, i = -1, prev_code = JUMP_INSN, depth = 1;
441 insn; insn = NEXT_INSN (insn))
443 code = GET_CODE (insn);
444 if (code == NOTE)
446 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
447 depth++;
448 else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END)
449 depth--;
452 /* A basic block starts at label, or after something that can jump. */
453 else if (code == CODE_LABEL
454 || (GET_RTX_CLASS (code) == 'i'
455 && (prev_code == JUMP_INSN
456 || (prev_code == CALL_INSN
457 && nonlocal_label_list != 0
458 && ! find_reg_note (insn, REG_RETVAL, NULL_RTX))
459 || prev_code == BARRIER)))
461 basic_block_head[++i] = insn;
462 basic_block_end[i] = insn;
463 basic_block_loop_depth[i] = depth;
465 if (code == CODE_LABEL)
467 LABEL_REFS (insn) = insn;
468 /* Any label that cannot be deleted
469 is considered to start a reachable block. */
470 if (LABEL_PRESERVE_P (insn))
471 block_live[i] = 1;
475 else if (GET_RTX_CLASS (code) == 'i')
477 basic_block_end[i] = insn;
478 basic_block_loop_depth[i] = depth;
481 if (GET_RTX_CLASS (code) == 'i')
483 /* Make a list of all labels referred to other than by jumps. */
484 for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
485 if (REG_NOTE_KIND (note) == REG_LABEL)
486 label_value_list = gen_rtx (EXPR_LIST, VOIDmode, XEXP (note, 0),
487 label_value_list);
490 BLOCK_NUM (insn) = i;
492 if (code != NOTE)
493 prev_code = code;
496 /* During the second pass, `n_basic_blocks' is only an upper bound.
497 Only perform the sanity check for the first pass, and on the second
498 pass ensure `n_basic_blocks' is set to the correct value. */
499 if (pass == 1 && i + 1 != n_basic_blocks)
500 abort ();
501 n_basic_blocks = i + 1;
503 /* Don't delete the labels (in this function)
504 that are referenced by non-jump instructions. */
506 for (x = label_value_list; x; x = XEXP (x, 1))
507 if (! LABEL_REF_NONLOCAL_P (x))
508 block_live[BLOCK_NUM (XEXP (x, 0))] = 1;
510 for (x = forced_labels; x; x = XEXP (x, 1))
511 if (! LABEL_REF_NONLOCAL_P (x))
512 block_live[BLOCK_NUM (XEXP (x, 0))] = 1;
514 for (x = exception_handler_labels; x; x = XEXP (x, 1))
515 block_live[BLOCK_NUM (XEXP (x, 0))] = 1;
517 /* Record which basic blocks control can drop in to. */
519 for (i = 0; i < n_basic_blocks; i++)
521 for (insn = PREV_INSN (basic_block_head[i]);
522 insn && GET_CODE (insn) == NOTE; insn = PREV_INSN (insn))
525 basic_block_drops_in[i] = insn && GET_CODE (insn) != BARRIER;
528 /* Now find which basic blocks can actually be reached
529 and put all jump insns' LABEL_REFS onto the ref-chains
530 of their target labels. */
532 if (n_basic_blocks > 0)
534 int something_marked = 1;
535 int deleted;
537 /* Find all indirect jump insns and mark them as possibly jumping to all
538 the labels whose addresses are explicitly used. This is because,
539 when there are computed gotos, we can't tell which labels they jump
540 to, of all the possibilities.
542 Tablejumps and casesi insns are OK and we can recognize them by
543 a (use (label_ref)). */
545 for (insn = f; insn; insn = NEXT_INSN (insn))
546 if (GET_CODE (insn) == JUMP_INSN)
548 rtx pat = PATTERN (insn);
549 int computed_jump = 0;
551 if (GET_CODE (pat) == PARALLEL)
553 int len = XVECLEN (pat, 0);
554 int has_use_labelref = 0;
556 for (i = len - 1; i >= 0; i--)
557 if (GET_CODE (XVECEXP (pat, 0, i)) == USE
558 && (GET_CODE (XEXP (XVECEXP (pat, 0, i), 0))
559 == LABEL_REF))
560 has_use_labelref = 1;
562 if (! has_use_labelref)
563 for (i = len - 1; i >= 0; i--)
564 if (GET_CODE (XVECEXP (pat, 0, i)) == SET
565 && SET_DEST (XVECEXP (pat, 0, i)) == pc_rtx
566 && jmp_uses_reg_or_mem (SET_SRC (XVECEXP (pat, 0, i))))
567 computed_jump = 1;
569 else if (GET_CODE (pat) == SET
570 && SET_DEST (pat) == pc_rtx
571 && jmp_uses_reg_or_mem (SET_SRC (pat)))
572 computed_jump = 1;
574 if (computed_jump)
576 for (x = label_value_list; x; x = XEXP (x, 1))
577 mark_label_ref (gen_rtx (LABEL_REF, VOIDmode, XEXP (x, 0)),
578 insn, 0);
580 for (x = forced_labels; x; x = XEXP (x, 1))
581 mark_label_ref (gen_rtx (LABEL_REF, VOIDmode, XEXP (x, 0)),
582 insn, 0);
586 /* Find all call insns and mark them as possibly jumping
587 to all the nonlocal goto handler labels. */
589 for (insn = f; insn; insn = NEXT_INSN (insn))
590 if (GET_CODE (insn) == CALL_INSN
591 && ! find_reg_note (insn, REG_RETVAL, NULL_RTX))
593 for (x = nonlocal_label_list; x; x = XEXP (x, 1))
594 mark_label_ref (gen_rtx (LABEL_REF, VOIDmode, XEXP (x, 0)),
595 insn, 0);
597 /* ??? This could be made smarter:
598 in some cases it's possible to tell that certain
599 calls will not do a nonlocal goto.
601 For example, if the nested functions that do the
602 nonlocal gotos do not have their addresses taken, then
603 only calls to those functions or to other nested
604 functions that use them could possibly do nonlocal
605 gotos. */
608 /* Pass over all blocks, marking each block that is reachable
609 and has not yet been marked.
610 Keep doing this until, in one pass, no blocks have been marked.
611 Then blocks_live and blocks_marked are identical and correct.
612 In addition, all jumps actually reachable have been marked. */
614 while (something_marked)
616 something_marked = 0;
617 for (i = 0; i < n_basic_blocks; i++)
618 if (block_live[i] && !block_marked[i])
620 block_marked[i] = 1;
621 something_marked = 1;
622 if (i + 1 < n_basic_blocks && basic_block_drops_in[i + 1])
623 block_live[i + 1] = 1;
624 insn = basic_block_end[i];
625 if (GET_CODE (insn) == JUMP_INSN)
626 mark_label_ref (PATTERN (insn), insn, 0);
630 /* ??? See if we have a "live" basic block that is not reachable.
631 This can happen if it is headed by a label that is preserved or
632 in one of the label lists, but no call or computed jump is in
633 the loop. It's not clear if we can delete the block or not,
634 but don't for now. However, we will mess up register status if
635 it remains unreachable, so add a fake reachability from the
636 previous block. */
638 for (i = 1; i < n_basic_blocks; i++)
639 if (block_live[i] && ! basic_block_drops_in[i]
640 && GET_CODE (basic_block_head[i]) == CODE_LABEL
641 && LABEL_REFS (basic_block_head[i]) == basic_block_head[i])
642 basic_block_drops_in[i] = 1;
644 /* Now delete the code for any basic blocks that can't be reached.
645 They can occur because jump_optimize does not recognize
646 unreachable loops as unreachable. */
648 deleted = 0;
649 for (i = 0; i < n_basic_blocks; i++)
650 if (!block_live[i])
652 deleted++;
654 /* Delete the insns in a (non-live) block. We physically delete
655 every non-note insn except the start and end (so
656 basic_block_head/end needn't be updated), we turn the latter
657 into NOTE_INSN_DELETED notes.
658 We use to "delete" the insns by turning them into notes, but
659 we may be deleting lots of insns that subsequent passes would
660 otherwise have to process. Secondly, lots of deleted blocks in
661 a row can really slow down propagate_block since it will
662 otherwise process insn-turned-notes multiple times when it
663 looks for loop begin/end notes. */
664 if (basic_block_head[i] != basic_block_end[i])
666 /* It would be quicker to delete all of these with a single
667 unchaining, rather than one at a time, but we need to keep
668 the NOTE's. */
669 insn = NEXT_INSN (basic_block_head[i]);
670 while (insn != basic_block_end[i])
672 if (GET_CODE (insn) == BARRIER)
673 abort ();
674 else if (GET_CODE (insn) != NOTE)
675 insn = flow_delete_insn (insn);
676 else
677 insn = NEXT_INSN (insn);
680 insn = basic_block_head[i];
681 if (GET_CODE (insn) != NOTE)
683 /* Turn the head into a deleted insn note. */
684 if (GET_CODE (insn) == BARRIER)
685 abort ();
686 PUT_CODE (insn, NOTE);
687 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
688 NOTE_SOURCE_FILE (insn) = 0;
690 insn = basic_block_end[i];
691 if (GET_CODE (insn) != NOTE)
693 /* Turn the tail into a deleted insn note. */
694 if (GET_CODE (insn) == BARRIER)
695 abort ();
696 PUT_CODE (insn, NOTE);
697 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
698 NOTE_SOURCE_FILE (insn) = 0;
700 /* BARRIERs are between basic blocks, not part of one.
701 Delete a BARRIER if the preceding jump is deleted.
702 We cannot alter a BARRIER into a NOTE
703 because it is too short; but we can really delete
704 it because it is not part of a basic block. */
705 if (NEXT_INSN (insn) != 0
706 && GET_CODE (NEXT_INSN (insn)) == BARRIER)
707 delete_insn (NEXT_INSN (insn));
709 /* Each time we delete some basic blocks,
710 see if there is a jump around them that is
711 being turned into a no-op. If so, delete it. */
713 if (block_live[i - 1])
715 register int j;
716 for (j = i + 1; j < n_basic_blocks; j++)
717 if (block_live[j])
719 rtx label;
720 insn = basic_block_end[i - 1];
721 if (GET_CODE (insn) == JUMP_INSN
722 /* An unconditional jump is the only possibility
723 we must check for, since a conditional one
724 would make these blocks live. */
725 && simplejump_p (insn)
726 && (label = XEXP (SET_SRC (PATTERN (insn)), 0), 1)
727 && INSN_UID (label) != 0
728 && BLOCK_NUM (label) == j)
730 PUT_CODE (insn, NOTE);
731 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
732 NOTE_SOURCE_FILE (insn) = 0;
733 if (GET_CODE (NEXT_INSN (insn)) != BARRIER)
734 abort ();
735 delete_insn (NEXT_INSN (insn));
737 break;
742 /* There are pathological cases where one function calling hundreds of
743 nested inline functions can generate lots and lots of unreachable
744 blocks that jump can't delete. Since we don't use sparse matrices
745 a lot of memory will be needed to compile such functions.
746 Implementing sparse matrices is a fair bit of work and it is not
747 clear that they win more than they lose (we don't want to
748 unnecessarily slow down compilation of normal code). By making
749 another pass for the pathological case, we can greatly speed up
750 their compilation without hurting normal code. This works because
751 all the insns in the unreachable blocks have either been deleted or
752 turned into notes.
753 Note that we're talking about reducing memory usage by 10's of
754 megabytes and reducing compilation time by several minutes. */
755 /* ??? The choice of when to make another pass is a bit arbitrary,
756 and was derived from empirical data. */
757 if (pass == 1
758 && deleted > 200)
760 pass++;
761 n_basic_blocks -= deleted;
762 /* `n_basic_blocks' may not be correct at this point: two previously
763 separate blocks may now be merged. That's ok though as we
764 recalculate it during the second pass. It certainly can't be
765 any larger than the current value. */
766 goto restart;
771 /* Subroutines of find_basic_blocks. */
773 /* Return 1 if X, the SRC_SRC of SET of (pc) contain a REG or MEM that is
774 not in the constant pool and not in the condition of an IF_THEN_ELSE. */
776 static int
777 jmp_uses_reg_or_mem (x)
778 rtx x;
780 enum rtx_code code = GET_CODE (x);
781 int i, j;
782 char *fmt;
784 switch (code)
786 case CONST:
787 case LABEL_REF:
788 case PC:
789 return 0;
791 case REG:
792 return 1;
794 case MEM:
795 return ! (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
796 && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)));
798 case IF_THEN_ELSE:
799 return (jmp_uses_reg_or_mem (XEXP (x, 1))
800 || jmp_uses_reg_or_mem (XEXP (x, 2)));
802 case PLUS: case MINUS: case MULT:
803 return (jmp_uses_reg_or_mem (XEXP (x, 0))
804 || jmp_uses_reg_or_mem (XEXP (x, 1)));
807 fmt = GET_RTX_FORMAT (code);
808 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
810 if (fmt[i] == 'e'
811 && jmp_uses_reg_or_mem (XEXP (x, i)))
812 return 1;
814 if (fmt[i] == 'E')
815 for (j = 0; j < XVECLEN (x, i); j++)
816 if (jmp_uses_reg_or_mem (XVECEXP (x, i, j)))
817 return 1;
820 return 0;
823 /* Check expression X for label references;
824 if one is found, add INSN to the label's chain of references.
826 CHECKDUP means check for and avoid creating duplicate references
827 from the same insn. Such duplicates do no serious harm but
828 can slow life analysis. CHECKDUP is set only when duplicates
829 are likely. */
831 static void
832 mark_label_ref (x, insn, checkdup)
833 rtx x, insn;
834 int checkdup;
836 register RTX_CODE code;
837 register int i;
838 register char *fmt;
840 /* We can be called with NULL when scanning label_value_list. */
841 if (x == 0)
842 return;
844 code = GET_CODE (x);
845 if (code == LABEL_REF)
847 register rtx label = XEXP (x, 0);
848 register rtx y;
849 if (GET_CODE (label) != CODE_LABEL)
850 abort ();
851 /* If the label was never emitted, this insn is junk,
852 but avoid a crash trying to refer to BLOCK_NUM (label).
853 This can happen as a result of a syntax error
854 and a diagnostic has already been printed. */
855 if (INSN_UID (label) == 0)
856 return;
857 CONTAINING_INSN (x) = insn;
858 /* if CHECKDUP is set, check for duplicate ref from same insn
859 and don't insert. */
860 if (checkdup)
861 for (y = LABEL_REFS (label); y != label; y = LABEL_NEXTREF (y))
862 if (CONTAINING_INSN (y) == insn)
863 return;
864 LABEL_NEXTREF (x) = LABEL_REFS (label);
865 LABEL_REFS (label) = x;
866 block_live_static[BLOCK_NUM (label)] = 1;
867 return;
870 fmt = GET_RTX_FORMAT (code);
871 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
873 if (fmt[i] == 'e')
874 mark_label_ref (XEXP (x, i), insn, 0);
875 if (fmt[i] == 'E')
877 register int j;
878 for (j = 0; j < XVECLEN (x, i); j++)
879 mark_label_ref (XVECEXP (x, i, j), insn, 1);
884 /* Delete INSN by patching it out.
885 Return the next insn. */
887 static rtx
888 flow_delete_insn (insn)
889 rtx insn;
891 /* ??? For the moment we assume we don't have to watch for NULLs here
892 since the start/end of basic blocks aren't deleted like this. */
893 NEXT_INSN (PREV_INSN (insn)) = NEXT_INSN (insn);
894 PREV_INSN (NEXT_INSN (insn)) = PREV_INSN (insn);
895 return NEXT_INSN (insn);
898 /* Determine which registers are live at the start of each
899 basic block of the function whose first insn is F.
900 NREGS is the number of registers used in F.
901 We allocate the vector basic_block_live_at_start
902 and the regsets that it points to, and fill them with the data.
903 regset_size and regset_bytes are also set here. */
905 static void
906 life_analysis (f, nregs)
907 rtx f;
908 int nregs;
910 register regset tem;
911 int first_pass;
912 int changed;
913 /* For each basic block, a bitmask of regs
914 live on exit from the block. */
915 regset *basic_block_live_at_end;
916 /* For each basic block, a bitmask of regs
917 live on entry to a successor-block of this block.
918 If this does not match basic_block_live_at_end,
919 that must be updated, and the block must be rescanned. */
920 regset *basic_block_new_live_at_end;
921 /* For each basic block, a bitmask of regs
922 whose liveness at the end of the basic block
923 can make a difference in which regs are live on entry to the block.
924 These are the regs that are set within the basic block,
925 possibly excluding those that are used after they are set. */
926 regset *basic_block_significant;
927 register int i;
928 rtx insn;
930 struct obstack flow_obstack;
932 gcc_obstack_init (&flow_obstack);
934 max_regno = nregs;
936 bzero (regs_ever_live, sizeof regs_ever_live);
938 /* Allocate and zero out many data structures
939 that will record the data from lifetime analysis. */
941 allocate_for_life_analysis ();
943 reg_next_use = (rtx *) alloca (nregs * sizeof (rtx));
944 bzero ((char *) reg_next_use, nregs * sizeof (rtx));
946 /* Set up several regset-vectors used internally within this function.
947 Their meanings are documented above, with their declarations. */
949 basic_block_live_at_end
950 = (regset *) alloca (n_basic_blocks * sizeof (regset));
952 /* Don't use alloca since that leads to a crash rather than an error message
953 if there isn't enough space.
954 Don't use oballoc since we may need to allocate other things during
955 this function on the temporary obstack. */
956 tem = (regset) obstack_alloc (&flow_obstack, n_basic_blocks * regset_bytes);
957 bzero ((char *) tem, n_basic_blocks * regset_bytes);
958 init_regset_vector (basic_block_live_at_end, tem,
959 n_basic_blocks, regset_bytes);
961 basic_block_new_live_at_end
962 = (regset *) alloca (n_basic_blocks * sizeof (regset));
963 tem = (regset) obstack_alloc (&flow_obstack, n_basic_blocks * regset_bytes);
964 bzero ((char *) tem, n_basic_blocks * regset_bytes);
965 init_regset_vector (basic_block_new_live_at_end, tem,
966 n_basic_blocks, regset_bytes);
968 basic_block_significant
969 = (regset *) alloca (n_basic_blocks * sizeof (regset));
970 tem = (regset) obstack_alloc (&flow_obstack, n_basic_blocks * regset_bytes);
971 bzero ((char *) tem, n_basic_blocks * regset_bytes);
972 init_regset_vector (basic_block_significant, tem,
973 n_basic_blocks, regset_bytes);
975 /* Record which insns refer to any volatile memory
976 or for any reason can't be deleted just because they are dead stores.
977 Also, delete any insns that copy a register to itself. */
979 for (insn = f; insn; insn = NEXT_INSN (insn))
981 enum rtx_code code1 = GET_CODE (insn);
982 if (code1 == CALL_INSN)
983 INSN_VOLATILE (insn) = 1;
984 else if (code1 == INSN || code1 == JUMP_INSN)
986 /* Delete (in effect) any obvious no-op moves. */
987 if (GET_CODE (PATTERN (insn)) == SET
988 && GET_CODE (SET_DEST (PATTERN (insn))) == REG
989 && GET_CODE (SET_SRC (PATTERN (insn))) == REG
990 && REGNO (SET_DEST (PATTERN (insn))) ==
991 REGNO (SET_SRC (PATTERN (insn)))
992 /* Insns carrying these notes are useful later on. */
993 && ! find_reg_note (insn, REG_EQUAL, NULL_RTX))
995 PUT_CODE (insn, NOTE);
996 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
997 NOTE_SOURCE_FILE (insn) = 0;
999 else if (GET_CODE (PATTERN (insn)) == PARALLEL)
1001 /* If nothing but SETs of registers to themselves,
1002 this insn can also be deleted. */
1003 for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
1005 rtx tem = XVECEXP (PATTERN (insn), 0, i);
1007 if (GET_CODE (tem) == USE
1008 || GET_CODE (tem) == CLOBBER)
1009 continue;
1011 if (GET_CODE (tem) != SET
1012 || GET_CODE (SET_DEST (tem)) != REG
1013 || GET_CODE (SET_SRC (tem)) != REG
1014 || REGNO (SET_DEST (tem)) != REGNO (SET_SRC (tem)))
1015 break;
1018 if (i == XVECLEN (PATTERN (insn), 0)
1019 /* Insns carrying these notes are useful later on. */
1020 && ! find_reg_note (insn, REG_EQUAL, NULL_RTX))
1022 PUT_CODE (insn, NOTE);
1023 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
1024 NOTE_SOURCE_FILE (insn) = 0;
1026 else
1027 INSN_VOLATILE (insn) = volatile_refs_p (PATTERN (insn));
1029 else if (GET_CODE (PATTERN (insn)) != USE)
1030 INSN_VOLATILE (insn) = volatile_refs_p (PATTERN (insn));
1031 /* A SET that makes space on the stack cannot be dead.
1032 (Such SETs occur only for allocating variable-size data,
1033 so they will always have a PLUS or MINUS according to the
1034 direction of stack growth.)
1035 Even if this function never uses this stack pointer value,
1036 signal handlers do! */
1037 else if (code1 == INSN && GET_CODE (PATTERN (insn)) == SET
1038 && SET_DEST (PATTERN (insn)) == stack_pointer_rtx
1039 #ifdef STACK_GROWS_DOWNWARD
1040 && GET_CODE (SET_SRC (PATTERN (insn))) == MINUS
1041 #else
1042 && GET_CODE (SET_SRC (PATTERN (insn))) == PLUS
1043 #endif
1044 && XEXP (SET_SRC (PATTERN (insn)), 0) == stack_pointer_rtx)
1045 INSN_VOLATILE (insn) = 1;
1049 if (n_basic_blocks > 0)
1050 #ifdef EXIT_IGNORE_STACK
1051 if (! EXIT_IGNORE_STACK
1052 || (! FRAME_POINTER_REQUIRED && flag_omit_frame_pointer))
1053 #endif
1055 /* If exiting needs the right stack value,
1056 consider the stack pointer live at the end of the function. */
1057 basic_block_live_at_end[n_basic_blocks - 1]
1058 [STACK_POINTER_REGNUM / REGSET_ELT_BITS]
1059 |= (REGSET_ELT_TYPE) 1 << (STACK_POINTER_REGNUM % REGSET_ELT_BITS);
1060 basic_block_new_live_at_end[n_basic_blocks - 1]
1061 [STACK_POINTER_REGNUM / REGSET_ELT_BITS]
1062 |= (REGSET_ELT_TYPE) 1 << (STACK_POINTER_REGNUM % REGSET_ELT_BITS);
1065 /* Mark the frame pointer is needed at the end of the function. If
1066 we end up eliminating it, it will be removed from the live list
1067 of each basic block by reload. */
1069 if (n_basic_blocks > 0)
1071 basic_block_live_at_end[n_basic_blocks - 1]
1072 [FRAME_POINTER_REGNUM / REGSET_ELT_BITS]
1073 |= (REGSET_ELT_TYPE) 1 << (FRAME_POINTER_REGNUM % REGSET_ELT_BITS);
1074 basic_block_new_live_at_end[n_basic_blocks - 1]
1075 [FRAME_POINTER_REGNUM / REGSET_ELT_BITS]
1076 |= (REGSET_ELT_TYPE) 1 << (FRAME_POINTER_REGNUM % REGSET_ELT_BITS);
1077 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
1078 /* If they are different, also mark the hard frame pointer as live */
1079 basic_block_live_at_end[n_basic_blocks - 1]
1080 [HARD_FRAME_POINTER_REGNUM / REGSET_ELT_BITS]
1081 |= (REGSET_ELT_TYPE) 1 << (HARD_FRAME_POINTER_REGNUM
1082 % REGSET_ELT_BITS);
1083 basic_block_new_live_at_end[n_basic_blocks - 1]
1084 [HARD_FRAME_POINTER_REGNUM / REGSET_ELT_BITS]
1085 |= (REGSET_ELT_TYPE) 1 << (HARD_FRAME_POINTER_REGNUM
1086 % REGSET_ELT_BITS);
1087 #endif
1090 /* Mark all global registers and all registers used by the epilogue
1091 as being live at the end of the function since they may be
1092 referenced by our caller. */
1094 if (n_basic_blocks > 0)
1095 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1096 if (global_regs[i]
1097 #ifdef EPILOGUE_USES
1098 || EPILOGUE_USES (i)
1099 #endif
1102 basic_block_live_at_end[n_basic_blocks - 1]
1103 [i / REGSET_ELT_BITS]
1104 |= (REGSET_ELT_TYPE) 1 << (i % REGSET_ELT_BITS);
1105 basic_block_new_live_at_end[n_basic_blocks - 1]
1106 [i / REGSET_ELT_BITS]
1107 |= (REGSET_ELT_TYPE) 1 << (i % REGSET_ELT_BITS);
1110 /* Propagate life info through the basic blocks
1111 around the graph of basic blocks.
1113 This is a relaxation process: each time a new register
1114 is live at the end of the basic block, we must scan the block
1115 to determine which registers are, as a consequence, live at the beginning
1116 of that block. These registers must then be marked live at the ends
1117 of all the blocks that can transfer control to that block.
1118 The process continues until it reaches a fixed point. */
1120 first_pass = 1;
1121 changed = 1;
1122 while (changed)
1124 changed = 0;
1125 for (i = n_basic_blocks - 1; i >= 0; i--)
1127 int consider = first_pass;
1128 int must_rescan = first_pass;
1129 register int j;
1131 if (!first_pass)
1133 /* Set CONSIDER if this block needs thinking about at all
1134 (that is, if the regs live now at the end of it
1135 are not the same as were live at the end of it when
1136 we last thought about it).
1137 Set must_rescan if it needs to be thought about
1138 instruction by instruction (that is, if any additional
1139 reg that is live at the end now but was not live there before
1140 is one of the significant regs of this basic block). */
1142 for (j = 0; j < regset_size; j++)
1144 register REGSET_ELT_TYPE x
1145 = (basic_block_new_live_at_end[i][j]
1146 & ~basic_block_live_at_end[i][j]);
1147 if (x)
1148 consider = 1;
1149 if (x & basic_block_significant[i][j])
1151 must_rescan = 1;
1152 consider = 1;
1153 break;
1157 if (! consider)
1158 continue;
1161 /* The live_at_start of this block may be changing,
1162 so another pass will be required after this one. */
1163 changed = 1;
1165 if (! must_rescan)
1167 /* No complete rescan needed;
1168 just record those variables newly known live at end
1169 as live at start as well. */
1170 for (j = 0; j < regset_size; j++)
1172 register REGSET_ELT_TYPE x
1173 = (basic_block_new_live_at_end[i][j]
1174 & ~basic_block_live_at_end[i][j]);
1175 basic_block_live_at_start[i][j] |= x;
1176 basic_block_live_at_end[i][j] |= x;
1179 else
1181 /* Update the basic_block_live_at_start
1182 by propagation backwards through the block. */
1183 bcopy ((char *) basic_block_new_live_at_end[i],
1184 (char *) basic_block_live_at_end[i], regset_bytes);
1185 bcopy ((char *) basic_block_live_at_end[i],
1186 (char *) basic_block_live_at_start[i], regset_bytes);
1187 propagate_block (basic_block_live_at_start[i],
1188 basic_block_head[i], basic_block_end[i], 0,
1189 first_pass ? basic_block_significant[i]
1190 : (regset) 0,
1195 register rtx jump, head;
1197 /* Update the basic_block_new_live_at_end's of the block
1198 that falls through into this one (if any). */
1199 head = basic_block_head[i];
1200 if (basic_block_drops_in[i])
1202 register int j;
1203 for (j = 0; j < regset_size; j++)
1204 basic_block_new_live_at_end[i-1][j]
1205 |= basic_block_live_at_start[i][j];
1208 /* Update the basic_block_new_live_at_end's of
1209 all the blocks that jump to this one. */
1210 if (GET_CODE (head) == CODE_LABEL)
1211 for (jump = LABEL_REFS (head);
1212 jump != head;
1213 jump = LABEL_NEXTREF (jump))
1215 register int from_block = BLOCK_NUM (CONTAINING_INSN (jump));
1216 register int j;
1217 for (j = 0; j < regset_size; j++)
1218 basic_block_new_live_at_end[from_block][j]
1219 |= basic_block_live_at_start[i][j];
1222 #ifdef USE_C_ALLOCA
1223 alloca (0);
1224 #endif
1226 first_pass = 0;
1229 /* The only pseudos that are live at the beginning of the function are
1230 those that were not set anywhere in the function. local-alloc doesn't
1231 know how to handle these correctly, so mark them as not local to any
1232 one basic block. */
1234 if (n_basic_blocks > 0)
1235 for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
1236 if (basic_block_live_at_start[0][i / REGSET_ELT_BITS]
1237 & ((REGSET_ELT_TYPE) 1 << (i % REGSET_ELT_BITS)))
1238 reg_basic_block[i] = REG_BLOCK_GLOBAL;
1240 /* Now the life information is accurate.
1241 Make one more pass over each basic block
1242 to delete dead stores, create autoincrement addressing
1243 and record how many times each register is used, is set, or dies.
1245 To save time, we operate directly in basic_block_live_at_end[i],
1246 thus destroying it (in fact, converting it into a copy of
1247 basic_block_live_at_start[i]). This is ok now because
1248 basic_block_live_at_end[i] is no longer used past this point. */
1250 max_scratch = 0;
1252 for (i = 0; i < n_basic_blocks; i++)
1254 propagate_block (basic_block_live_at_end[i],
1255 basic_block_head[i], basic_block_end[i], 1,
1256 (regset) 0, i);
1257 #ifdef USE_C_ALLOCA
1258 alloca (0);
1259 #endif
1262 #if 0
1263 /* Something live during a setjmp should not be put in a register
1264 on certain machines which restore regs from stack frames
1265 rather than from the jmpbuf.
1266 But we don't need to do this for the user's variables, since
1267 ANSI says only volatile variables need this. */
1268 #ifdef LONGJMP_RESTORE_FROM_STACK
1269 for (i = FIRST_PSEUDO_REGISTER; i < nregs; i++)
1270 if (regs_live_at_setjmp[i / REGSET_ELT_BITS]
1271 & ((REGSET_ELT_TYPE) 1 << (i % REGSET_ELT_BITS))
1272 && regno_reg_rtx[i] != 0 && ! REG_USERVAR_P (regno_reg_rtx[i]))
1274 reg_live_length[i] = -1;
1275 reg_basic_block[i] = -1;
1277 #endif
1278 #endif
1280 /* We have a problem with any pseudoreg that
1281 lives across the setjmp. ANSI says that if a
1282 user variable does not change in value
1283 between the setjmp and the longjmp, then the longjmp preserves it.
1284 This includes longjmp from a place where the pseudo appears dead.
1285 (In principle, the value still exists if it is in scope.)
1286 If the pseudo goes in a hard reg, some other value may occupy
1287 that hard reg where this pseudo is dead, thus clobbering the pseudo.
1288 Conclusion: such a pseudo must not go in a hard reg. */
1289 for (i = FIRST_PSEUDO_REGISTER; i < nregs; i++)
1290 if ((regs_live_at_setjmp[i / REGSET_ELT_BITS]
1291 & ((REGSET_ELT_TYPE) 1 << (i % REGSET_ELT_BITS)))
1292 && regno_reg_rtx[i] != 0)
1294 reg_live_length[i] = -1;
1295 reg_basic_block[i] = -1;
1298 obstack_free (&flow_obstack, NULL_PTR);
1301 /* Subroutines of life analysis. */
1303 /* Allocate the permanent data structures that represent the results
1304 of life analysis. Not static since used also for stupid life analysis. */
1306 void
1307 allocate_for_life_analysis ()
1309 register int i;
1310 register regset tem;
1312 regset_size = ((max_regno + REGSET_ELT_BITS - 1) / REGSET_ELT_BITS);
1313 regset_bytes = regset_size * sizeof (*(regset) 0);
1315 reg_n_refs = (int *) oballoc (max_regno * sizeof (int));
1316 bzero ((char *) reg_n_refs, max_regno * sizeof (int));
1318 reg_n_sets = (short *) oballoc (max_regno * sizeof (short));
1319 bzero ((char *) reg_n_sets, max_regno * sizeof (short));
1321 reg_n_deaths = (short *) oballoc (max_regno * sizeof (short));
1322 bzero ((char *) reg_n_deaths, max_regno * sizeof (short));
1324 reg_changes_size = (char *) oballoc (max_regno * sizeof (char));
1325 bzero (reg_changes_size, max_regno * sizeof (char));;
1327 reg_live_length = (int *) oballoc (max_regno * sizeof (int));
1328 bzero ((char *) reg_live_length, max_regno * sizeof (int));
1330 reg_n_calls_crossed = (int *) oballoc (max_regno * sizeof (int));
1331 bzero ((char *) reg_n_calls_crossed, max_regno * sizeof (int));
1333 reg_basic_block = (int *) oballoc (max_regno * sizeof (int));
1334 for (i = 0; i < max_regno; i++)
1335 reg_basic_block[i] = REG_BLOCK_UNKNOWN;
1337 basic_block_live_at_start
1338 = (regset *) oballoc (n_basic_blocks * sizeof (regset));
1339 tem = (regset) oballoc (n_basic_blocks * regset_bytes);
1340 bzero ((char *) tem, n_basic_blocks * regset_bytes);
1341 init_regset_vector (basic_block_live_at_start, tem,
1342 n_basic_blocks, regset_bytes);
1344 regs_live_at_setjmp = (regset) oballoc (regset_bytes);
1345 bzero ((char *) regs_live_at_setjmp, regset_bytes);
1348 /* Make each element of VECTOR point at a regset,
1349 taking the space for all those regsets from SPACE.
1350 SPACE is of type regset, but it is really as long as NELTS regsets.
1351 BYTES_PER_ELT is the number of bytes in one regset. */
1353 static void
1354 init_regset_vector (vector, space, nelts, bytes_per_elt)
1355 regset *vector;
1356 regset space;
1357 int nelts;
1358 int bytes_per_elt;
1360 register int i;
1361 register regset p = space;
1363 for (i = 0; i < nelts; i++)
1365 vector[i] = p;
1366 p += bytes_per_elt / sizeof (*p);
1370 /* Compute the registers live at the beginning of a basic block
1371 from those live at the end.
1373 When called, OLD contains those live at the end.
1374 On return, it contains those live at the beginning.
1375 FIRST and LAST are the first and last insns of the basic block.
1377 FINAL is nonzero if we are doing the final pass which is not
1378 for computing the life info (since that has already been done)
1379 but for acting on it. On this pass, we delete dead stores,
1380 set up the logical links and dead-variables lists of instructions,
1381 and merge instructions for autoincrement and autodecrement addresses.
1383 SIGNIFICANT is nonzero only the first time for each basic block.
1384 If it is nonzero, it points to a regset in which we store
1385 a 1 for each register that is set within the block.
1387 BNUM is the number of the basic block. */
1389 static void
1390 propagate_block (old, first, last, final, significant, bnum)
1391 register regset old;
1392 rtx first;
1393 rtx last;
1394 int final;
1395 regset significant;
1396 int bnum;
1398 register rtx insn;
1399 rtx prev;
1400 regset live;
1401 regset dead;
1403 /* The following variables are used only if FINAL is nonzero. */
1404 /* This vector gets one element for each reg that has been live
1405 at any point in the basic block that has been scanned so far.
1406 SOMETIMES_MAX says how many elements are in use so far.
1407 In each element, OFFSET is the byte-number within a regset
1408 for the register described by the element, and BIT is a mask
1409 for that register's bit within the byte. */
1410 register struct sometimes { short offset; short bit; } *regs_sometimes_live;
1411 int sometimes_max = 0;
1412 /* This regset has 1 for each reg that we have seen live so far.
1413 It and REGS_SOMETIMES_LIVE are updated together. */
1414 regset maxlive;
1416 /* The loop depth may change in the middle of a basic block. Since we
1417 scan from end to beginning, we start with the depth at the end of the
1418 current basic block, and adjust as we pass ends and starts of loops. */
1419 loop_depth = basic_block_loop_depth[bnum];
1421 dead = (regset) alloca (regset_bytes);
1422 live = (regset) alloca (regset_bytes);
1424 cc0_live = 0;
1425 last_mem_set = 0;
1427 /* Include any notes at the end of the block in the scan.
1428 This is in case the block ends with a call to setjmp. */
1430 while (NEXT_INSN (last) != 0 && GET_CODE (NEXT_INSN (last)) == NOTE)
1432 /* Look for loop boundaries, we are going forward here. */
1433 last = NEXT_INSN (last);
1434 if (NOTE_LINE_NUMBER (last) == NOTE_INSN_LOOP_BEG)
1435 loop_depth++;
1436 else if (NOTE_LINE_NUMBER (last) == NOTE_INSN_LOOP_END)
1437 loop_depth--;
1440 if (final)
1442 register int i, offset;
1443 REGSET_ELT_TYPE bit;
1445 num_scratch = 0;
1446 maxlive = (regset) alloca (regset_bytes);
1447 bcopy ((char *) old, (char *) maxlive, regset_bytes);
1448 regs_sometimes_live
1449 = (struct sometimes *) alloca (max_regno * sizeof (struct sometimes));
1451 /* Process the regs live at the end of the block.
1452 Enter them in MAXLIVE and REGS_SOMETIMES_LIVE.
1453 Also mark them as not local to any one basic block. */
1455 for (offset = 0, i = 0; offset < regset_size; offset++)
1456 for (bit = 1; bit; bit <<= 1, i++)
1458 if (i == max_regno)
1459 break;
1460 if (old[offset] & bit)
1462 reg_basic_block[i] = REG_BLOCK_GLOBAL;
1463 regs_sometimes_live[sometimes_max].offset = offset;
1464 regs_sometimes_live[sometimes_max].bit = i % REGSET_ELT_BITS;
1465 sometimes_max++;
1470 /* Scan the block an insn at a time from end to beginning. */
1472 for (insn = last; ; insn = prev)
1474 prev = PREV_INSN (insn);
1476 if (GET_CODE (insn) == NOTE)
1478 /* Look for loop boundaries, remembering that we are going
1479 backwards. */
1480 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END)
1481 loop_depth++;
1482 else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
1483 loop_depth--;
1485 /* If we have LOOP_DEPTH == 0, there has been a bookkeeping error.
1486 Abort now rather than setting register status incorrectly. */
1487 if (loop_depth == 0)
1488 abort ();
1490 /* If this is a call to `setjmp' et al,
1491 warn if any non-volatile datum is live. */
1493 if (final && NOTE_LINE_NUMBER (insn) == NOTE_INSN_SETJMP)
1495 int i;
1496 for (i = 0; i < regset_size; i++)
1497 regs_live_at_setjmp[i] |= old[i];
1501 /* Update the life-status of regs for this insn.
1502 First DEAD gets which regs are set in this insn
1503 then LIVE gets which regs are used in this insn.
1504 Then the regs live before the insn
1505 are those live after, with DEAD regs turned off,
1506 and then LIVE regs turned on. */
1508 else if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
1510 register int i;
1511 rtx note = find_reg_note (insn, REG_RETVAL, NULL_RTX);
1512 int insn_is_dead
1513 = (insn_dead_p (PATTERN (insn), old, 0)
1514 /* Don't delete something that refers to volatile storage! */
1515 && ! INSN_VOLATILE (insn));
1516 int libcall_is_dead
1517 = (insn_is_dead && note != 0
1518 && libcall_dead_p (PATTERN (insn), old, note, insn));
1520 /* If an instruction consists of just dead store(s) on final pass,
1521 "delete" it by turning it into a NOTE of type NOTE_INSN_DELETED.
1522 We could really delete it with delete_insn, but that
1523 can cause trouble for first or last insn in a basic block. */
1524 if (final && insn_is_dead)
1526 PUT_CODE (insn, NOTE);
1527 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
1528 NOTE_SOURCE_FILE (insn) = 0;
1530 /* CC0 is now known to be dead. Either this insn used it,
1531 in which case it doesn't anymore, or clobbered it,
1532 so the next insn can't use it. */
1533 cc0_live = 0;
1535 /* If this insn is copying the return value from a library call,
1536 delete the entire library call. */
1537 if (libcall_is_dead)
1539 rtx first = XEXP (note, 0);
1540 rtx p = insn;
1541 while (INSN_DELETED_P (first))
1542 first = NEXT_INSN (first);
1543 while (p != first)
1545 p = PREV_INSN (p);
1546 PUT_CODE (p, NOTE);
1547 NOTE_LINE_NUMBER (p) = NOTE_INSN_DELETED;
1548 NOTE_SOURCE_FILE (p) = 0;
1551 goto flushed;
1554 for (i = 0; i < regset_size; i++)
1556 dead[i] = 0; /* Faster than bzero here */
1557 live[i] = 0; /* since regset_size is usually small */
1560 /* See if this is an increment or decrement that can be
1561 merged into a following memory address. */
1562 #ifdef AUTO_INC_DEC
1564 register rtx x = PATTERN (insn);
1565 /* Does this instruction increment or decrement a register? */
1566 if (final && GET_CODE (x) == SET
1567 && GET_CODE (SET_DEST (x)) == REG
1568 && (GET_CODE (SET_SRC (x)) == PLUS
1569 || GET_CODE (SET_SRC (x)) == MINUS)
1570 && XEXP (SET_SRC (x), 0) == SET_DEST (x)
1571 && GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
1572 /* Ok, look for a following memory ref we can combine with.
1573 If one is found, change the memory ref to a PRE_INC
1574 or PRE_DEC, cancel this insn, and return 1.
1575 Return 0 if nothing has been done. */
1576 && try_pre_increment_1 (insn))
1577 goto flushed;
1579 #endif /* AUTO_INC_DEC */
1581 /* If this is not the final pass, and this insn is copying the
1582 value of a library call and it's dead, don't scan the
1583 insns that perform the library call, so that the call's
1584 arguments are not marked live. */
1585 if (libcall_is_dead)
1587 /* Mark the dest reg as `significant'. */
1588 mark_set_regs (old, dead, PATTERN (insn), NULL_RTX, significant);
1590 insn = XEXP (note, 0);
1591 prev = PREV_INSN (insn);
1593 else if (GET_CODE (PATTERN (insn)) == SET
1594 && SET_DEST (PATTERN (insn)) == stack_pointer_rtx
1595 && GET_CODE (SET_SRC (PATTERN (insn))) == PLUS
1596 && XEXP (SET_SRC (PATTERN (insn)), 0) == stack_pointer_rtx
1597 && GET_CODE (XEXP (SET_SRC (PATTERN (insn)), 1)) == CONST_INT)
1598 /* We have an insn to pop a constant amount off the stack.
1599 (Such insns use PLUS regardless of the direction of the stack,
1600 and any insn to adjust the stack by a constant is always a pop.)
1601 These insns, if not dead stores, have no effect on life. */
1603 else
1605 /* LIVE gets the regs used in INSN;
1606 DEAD gets those set by it. Dead insns don't make anything
1607 live. */
1609 mark_set_regs (old, dead, PATTERN (insn),
1610 final ? insn : NULL_RTX, significant);
1612 /* If an insn doesn't use CC0, it becomes dead since we
1613 assume that every insn clobbers it. So show it dead here;
1614 mark_used_regs will set it live if it is referenced. */
1615 cc0_live = 0;
1617 if (! insn_is_dead)
1618 mark_used_regs (old, live, PATTERN (insn), final, insn);
1620 /* Sometimes we may have inserted something before INSN (such as
1621 a move) when we make an auto-inc. So ensure we will scan
1622 those insns. */
1623 #ifdef AUTO_INC_DEC
1624 prev = PREV_INSN (insn);
1625 #endif
1627 if (! insn_is_dead && GET_CODE (insn) == CALL_INSN)
1629 register int i;
1631 rtx note;
1633 for (note = CALL_INSN_FUNCTION_USAGE (insn);
1634 note;
1635 note = XEXP (note, 1))
1636 if (GET_CODE (XEXP (note, 0)) == USE)
1637 mark_used_regs (old, live, SET_DEST (XEXP (note, 0)),
1638 final, insn);
1640 /* Each call clobbers all call-clobbered regs that are not
1641 global or fixed. Note that the function-value reg is a
1642 call-clobbered reg, and mark_set_regs has already had
1643 a chance to handle it. */
1645 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1646 if (call_used_regs[i] && ! global_regs[i]
1647 && ! fixed_regs[i])
1648 dead[i / REGSET_ELT_BITS]
1649 |= ((REGSET_ELT_TYPE) 1 << (i % REGSET_ELT_BITS));
1651 /* The stack ptr is used (honorarily) by a CALL insn. */
1652 live[STACK_POINTER_REGNUM / REGSET_ELT_BITS]
1653 |= ((REGSET_ELT_TYPE) 1
1654 << (STACK_POINTER_REGNUM % REGSET_ELT_BITS));
1656 /* Calls may also reference any of the global registers,
1657 so they are made live. */
1658 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1659 if (global_regs[i])
1660 mark_used_regs (old, live,
1661 gen_rtx (REG, reg_raw_mode[i], i),
1662 final, insn);
1664 /* Calls also clobber memory. */
1665 last_mem_set = 0;
1668 /* Update OLD for the registers used or set. */
1669 for (i = 0; i < regset_size; i++)
1671 old[i] &= ~dead[i];
1672 old[i] |= live[i];
1675 if (GET_CODE (insn) == CALL_INSN && final)
1677 /* Any regs live at the time of a call instruction
1678 must not go in a register clobbered by calls.
1679 Find all regs now live and record this for them. */
1681 register struct sometimes *p = regs_sometimes_live;
1683 for (i = 0; i < sometimes_max; i++, p++)
1684 if (old[p->offset] & ((REGSET_ELT_TYPE) 1 << p->bit))
1685 reg_n_calls_crossed[p->offset * REGSET_ELT_BITS + p->bit]+= 1;
1689 /* On final pass, add any additional sometimes-live regs
1690 into MAXLIVE and REGS_SOMETIMES_LIVE.
1691 Also update counts of how many insns each reg is live at. */
1693 if (final)
1695 for (i = 0; i < regset_size; i++)
1697 register REGSET_ELT_TYPE diff = live[i] & ~maxlive[i];
1699 if (diff)
1701 register int regno;
1702 maxlive[i] |= diff;
1703 for (regno = 0; diff && regno < REGSET_ELT_BITS; regno++)
1704 if (diff & ((REGSET_ELT_TYPE) 1 << regno))
1706 regs_sometimes_live[sometimes_max].offset = i;
1707 regs_sometimes_live[sometimes_max].bit = regno;
1708 diff &= ~ ((REGSET_ELT_TYPE) 1 << regno);
1709 sometimes_max++;
1715 register struct sometimes *p = regs_sometimes_live;
1716 for (i = 0; i < sometimes_max; i++, p++)
1718 if (old[p->offset] & ((REGSET_ELT_TYPE) 1 << p->bit))
1719 reg_live_length[p->offset * REGSET_ELT_BITS + p->bit]++;
1724 flushed: ;
1725 if (insn == first)
1726 break;
1729 if (num_scratch > max_scratch)
1730 max_scratch = num_scratch;
1733 /* Return 1 if X (the body of an insn, or part of it) is just dead stores
1734 (SET expressions whose destinations are registers dead after the insn).
1735 NEEDED is the regset that says which regs are alive after the insn.
1737 Unless CALL_OK is non-zero, an insn is needed if it contains a CALL. */
1739 static int
1740 insn_dead_p (x, needed, call_ok)
1741 rtx x;
1742 regset needed;
1743 int call_ok;
1745 register RTX_CODE code = GET_CODE (x);
1746 /* If setting something that's a reg or part of one,
1747 see if that register's altered value will be live. */
1749 if (code == SET)
1751 register rtx r = SET_DEST (x);
1752 /* A SET that is a subroutine call cannot be dead. */
1753 if (! call_ok && GET_CODE (SET_SRC (x)) == CALL)
1754 return 0;
1756 #ifdef HAVE_cc0
1757 if (GET_CODE (r) == CC0)
1758 return ! cc0_live;
1759 #endif
1761 if (GET_CODE (r) == MEM && last_mem_set && ! MEM_VOLATILE_P (r)
1762 && rtx_equal_p (r, last_mem_set))
1763 return 1;
1765 while (GET_CODE (r) == SUBREG
1766 || GET_CODE (r) == STRICT_LOW_PART
1767 || GET_CODE (r) == ZERO_EXTRACT
1768 || GET_CODE (r) == SIGN_EXTRACT)
1769 r = SUBREG_REG (r);
1771 if (GET_CODE (r) == REG)
1773 register int regno = REGNO (r);
1774 register int offset = regno / REGSET_ELT_BITS;
1775 register REGSET_ELT_TYPE bit
1776 = (REGSET_ELT_TYPE) 1 << (regno % REGSET_ELT_BITS);
1778 /* Don't delete insns to set global regs. */
1779 if ((regno < FIRST_PSEUDO_REGISTER && global_regs[regno])
1780 /* Make sure insns to set frame pointer aren't deleted. */
1781 || regno == FRAME_POINTER_REGNUM
1782 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
1783 || regno == HARD_FRAME_POINTER_REGNUM
1784 #endif
1785 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
1786 /* Make sure insns to set arg pointer are never deleted
1787 (if the arg pointer isn't fixed, there will be a USE for
1788 it, so we can treat it normally). */
1789 || (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
1790 #endif
1791 || (needed[offset] & bit) != 0)
1792 return 0;
1794 /* If this is a hard register, verify that subsequent words are
1795 not needed. */
1796 if (regno < FIRST_PSEUDO_REGISTER)
1798 int n = HARD_REGNO_NREGS (regno, GET_MODE (r));
1800 while (--n > 0)
1801 if ((needed[(regno + n) / REGSET_ELT_BITS]
1802 & ((REGSET_ELT_TYPE) 1
1803 << ((regno + n) % REGSET_ELT_BITS))) != 0)
1804 return 0;
1807 return 1;
1810 /* If performing several activities,
1811 insn is dead if each activity is individually dead.
1812 Also, CLOBBERs and USEs can be ignored; a CLOBBER or USE
1813 that's inside a PARALLEL doesn't make the insn worth keeping. */
1814 else if (code == PARALLEL)
1816 register int i = XVECLEN (x, 0);
1817 for (i--; i >= 0; i--)
1819 rtx elt = XVECEXP (x, 0, i);
1820 if (!insn_dead_p (elt, needed, call_ok)
1821 && GET_CODE (elt) != CLOBBER
1822 && GET_CODE (elt) != USE)
1823 return 0;
1825 return 1;
1827 /* We do not check CLOBBER or USE here.
1828 An insn consisting of just a CLOBBER or just a USE
1829 should not be deleted. */
1830 return 0;
1833 /* If X is the pattern of the last insn in a libcall, and assuming X is dead,
1834 return 1 if the entire library call is dead.
1835 This is true if X copies a register (hard or pseudo)
1836 and if the hard return reg of the call insn is dead.
1837 (The caller should have tested the destination of X already for death.)
1839 If this insn doesn't just copy a register, then we don't
1840 have an ordinary libcall. In that case, cse could not have
1841 managed to substitute the source for the dest later on,
1842 so we can assume the libcall is dead.
1844 NEEDED is the bit vector of pseudoregs live before this insn.
1845 NOTE is the REG_RETVAL note of the insn. INSN is the insn itself. */
1847 static int
1848 libcall_dead_p (x, needed, note, insn)
1849 rtx x;
1850 regset needed;
1851 rtx note;
1852 rtx insn;
1854 register RTX_CODE code = GET_CODE (x);
1856 if (code == SET)
1858 register rtx r = SET_SRC (x);
1859 if (GET_CODE (r) == REG)
1861 rtx call = XEXP (note, 0);
1862 register int i;
1864 /* Find the call insn. */
1865 while (call != insn && GET_CODE (call) != CALL_INSN)
1866 call = NEXT_INSN (call);
1868 /* If there is none, do nothing special,
1869 since ordinary death handling can understand these insns. */
1870 if (call == insn)
1871 return 0;
1873 /* See if the hard reg holding the value is dead.
1874 If this is a PARALLEL, find the call within it. */
1875 call = PATTERN (call);
1876 if (GET_CODE (call) == PARALLEL)
1878 for (i = XVECLEN (call, 0) - 1; i >= 0; i--)
1879 if (GET_CODE (XVECEXP (call, 0, i)) == SET
1880 && GET_CODE (SET_SRC (XVECEXP (call, 0, i))) == CALL)
1881 break;
1883 /* This may be a library call that is returning a value
1884 via invisible pointer. Do nothing special, since
1885 ordinary death handling can understand these insns. */
1886 if (i < 0)
1887 return 0;
1889 call = XVECEXP (call, 0, i);
1892 return insn_dead_p (call, needed, 1);
1895 return 1;
1898 /* Return 1 if register REGNO was used before it was set.
1899 In other words, if it is live at function entry.
1900 Don't count global register variables, though. */
1903 regno_uninitialized (regno)
1904 int regno;
1906 if (n_basic_blocks == 0
1907 || (regno < FIRST_PSEUDO_REGISTER && global_regs[regno]))
1908 return 0;
1910 return (basic_block_live_at_start[0][regno / REGSET_ELT_BITS]
1911 & ((REGSET_ELT_TYPE) 1 << (regno % REGSET_ELT_BITS)));
1914 /* 1 if register REGNO was alive at a place where `setjmp' was called
1915 and was set more than once or is an argument.
1916 Such regs may be clobbered by `longjmp'. */
1919 regno_clobbered_at_setjmp (regno)
1920 int regno;
1922 if (n_basic_blocks == 0)
1923 return 0;
1925 return ((reg_n_sets[regno] > 1
1926 || (basic_block_live_at_start[0][regno / REGSET_ELT_BITS]
1927 & ((REGSET_ELT_TYPE) 1 << (regno % REGSET_ELT_BITS))))
1928 && (regs_live_at_setjmp[regno / REGSET_ELT_BITS]
1929 & ((REGSET_ELT_TYPE) 1 << (regno % REGSET_ELT_BITS))));
1932 /* Process the registers that are set within X.
1933 Their bits are set to 1 in the regset DEAD,
1934 because they are dead prior to this insn.
1936 If INSN is nonzero, it is the insn being processed
1937 and the fact that it is nonzero implies this is the FINAL pass
1938 in propagate_block. In this case, various info about register
1939 usage is stored, LOG_LINKS fields of insns are set up. */
1941 static void
1942 mark_set_regs (needed, dead, x, insn, significant)
1943 regset needed;
1944 regset dead;
1945 rtx x;
1946 rtx insn;
1947 regset significant;
1949 register RTX_CODE code = GET_CODE (x);
1951 if (code == SET || code == CLOBBER)
1952 mark_set_1 (needed, dead, x, insn, significant);
1953 else if (code == PARALLEL)
1955 register int i;
1956 for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
1958 code = GET_CODE (XVECEXP (x, 0, i));
1959 if (code == SET || code == CLOBBER)
1960 mark_set_1 (needed, dead, XVECEXP (x, 0, i), insn, significant);
1965 /* Process a single SET rtx, X. */
1967 static void
1968 mark_set_1 (needed, dead, x, insn, significant)
1969 regset needed;
1970 regset dead;
1971 rtx x;
1972 rtx insn;
1973 regset significant;
1975 register int regno;
1976 register rtx reg = SET_DEST (x);
1978 /* Modifying just one hardware register of a multi-reg value
1979 or just a byte field of a register
1980 does not mean the value from before this insn is now dead.
1981 But it does mean liveness of that register at the end of the block
1982 is significant.
1984 Within mark_set_1, however, we treat it as if the register is
1985 indeed modified. mark_used_regs will, however, also treat this
1986 register as being used. Thus, we treat these insns as setting a
1987 new value for the register as a function of its old value. This
1988 cases LOG_LINKS to be made appropriately and this will help combine. */
1990 while (GET_CODE (reg) == SUBREG || GET_CODE (reg) == ZERO_EXTRACT
1991 || GET_CODE (reg) == SIGN_EXTRACT
1992 || GET_CODE (reg) == STRICT_LOW_PART)
1993 reg = XEXP (reg, 0);
1995 /* If we are writing into memory or into a register mentioned in the
1996 address of the last thing stored into memory, show we don't know
1997 what the last store was. If we are writing memory, save the address
1998 unless it is volatile. */
1999 if (GET_CODE (reg) == MEM
2000 || (GET_CODE (reg) == REG
2001 && last_mem_set != 0 && reg_overlap_mentioned_p (reg, last_mem_set)))
2002 last_mem_set = 0;
2004 if (GET_CODE (reg) == MEM && ! side_effects_p (reg)
2005 /* There are no REG_INC notes for SP, so we can't assume we'll see
2006 everything that invalidates it. To be safe, don't eliminate any
2007 stores though SP; none of them should be redundant anyway. */
2008 && ! reg_mentioned_p (stack_pointer_rtx, reg))
2009 last_mem_set = reg;
2011 if (GET_CODE (reg) == REG
2012 && (regno = REGNO (reg), regno != FRAME_POINTER_REGNUM)
2013 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
2014 && regno != HARD_FRAME_POINTER_REGNUM
2015 #endif
2016 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
2017 && ! (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
2018 #endif
2019 && ! (regno < FIRST_PSEUDO_REGISTER && global_regs[regno]))
2020 /* && regno != STACK_POINTER_REGNUM) -- let's try without this. */
2022 register int offset = regno / REGSET_ELT_BITS;
2023 register REGSET_ELT_TYPE bit
2024 = (REGSET_ELT_TYPE) 1 << (regno % REGSET_ELT_BITS);
2025 REGSET_ELT_TYPE some_needed = (needed[offset] & bit);
2026 REGSET_ELT_TYPE some_not_needed = (~ needed[offset]) & bit;
2028 /* Mark it as a significant register for this basic block. */
2029 if (significant)
2030 significant[offset] |= bit;
2032 /* Mark it as as dead before this insn. */
2033 dead[offset] |= bit;
2035 /* A hard reg in a wide mode may really be multiple registers.
2036 If so, mark all of them just like the first. */
2037 if (regno < FIRST_PSEUDO_REGISTER)
2039 int n;
2041 /* Nothing below is needed for the stack pointer; get out asap.
2042 Eg, log links aren't needed, since combine won't use them. */
2043 if (regno == STACK_POINTER_REGNUM)
2044 return;
2046 n = HARD_REGNO_NREGS (regno, GET_MODE (reg));
2047 while (--n > 0)
2049 REGSET_ELT_TYPE n_bit
2050 = (REGSET_ELT_TYPE) 1 << ((regno + n) % REGSET_ELT_BITS);
2052 if (significant)
2053 significant[(regno + n) / REGSET_ELT_BITS] |= n_bit;
2055 dead[(regno + n) / REGSET_ELT_BITS] |= n_bit;
2056 some_needed
2057 |= (needed[(regno + n) / REGSET_ELT_BITS] & n_bit);
2058 some_not_needed
2059 |= ((~ needed[(regno + n) / REGSET_ELT_BITS]) & n_bit);
2062 /* Additional data to record if this is the final pass. */
2063 if (insn)
2065 register rtx y = reg_next_use[regno];
2066 register int blocknum = BLOCK_NUM (insn);
2068 /* If this is a hard reg, record this function uses the reg. */
2070 if (regno < FIRST_PSEUDO_REGISTER)
2072 register int i;
2073 int endregno = regno + HARD_REGNO_NREGS (regno, GET_MODE (reg));
2075 for (i = regno; i < endregno; i++)
2077 /* The next use is no longer "next", since a store
2078 intervenes. */
2079 reg_next_use[i] = 0;
2081 regs_ever_live[i] = 1;
2082 reg_n_sets[i]++;
2085 else
2087 /* The next use is no longer "next", since a store
2088 intervenes. */
2089 reg_next_use[regno] = 0;
2091 /* Keep track of which basic blocks each reg appears in. */
2093 if (reg_basic_block[regno] == REG_BLOCK_UNKNOWN)
2094 reg_basic_block[regno] = blocknum;
2095 else if (reg_basic_block[regno] != blocknum)
2096 reg_basic_block[regno] = REG_BLOCK_GLOBAL;
2098 /* Count (weighted) references, stores, etc. This counts a
2099 register twice if it is modified, but that is correct. */
2100 reg_n_sets[regno]++;
2102 reg_n_refs[regno] += loop_depth;
2104 /* The insns where a reg is live are normally counted
2105 elsewhere, but we want the count to include the insn
2106 where the reg is set, and the normal counting mechanism
2107 would not count it. */
2108 reg_live_length[regno]++;
2111 if (! some_not_needed)
2113 /* Make a logical link from the next following insn
2114 that uses this register, back to this insn.
2115 The following insns have already been processed.
2117 We don't build a LOG_LINK for hard registers containing
2118 in ASM_OPERANDs. If these registers get replaced,
2119 we might wind up changing the semantics of the insn,
2120 even if reload can make what appear to be valid assignments
2121 later. */
2122 if (y && (BLOCK_NUM (y) == blocknum)
2123 && (regno >= FIRST_PSEUDO_REGISTER
2124 || asm_noperands (PATTERN (y)) < 0))
2125 LOG_LINKS (y)
2126 = gen_rtx (INSN_LIST, VOIDmode, insn, LOG_LINKS (y));
2128 else if (! some_needed)
2130 /* Note that dead stores have already been deleted when possible
2131 If we get here, we have found a dead store that cannot
2132 be eliminated (because the same insn does something useful).
2133 Indicate this by marking the reg being set as dying here. */
2134 REG_NOTES (insn)
2135 = gen_rtx (EXPR_LIST, REG_UNUSED, reg, REG_NOTES (insn));
2136 reg_n_deaths[REGNO (reg)]++;
2138 else
2140 /* This is a case where we have a multi-word hard register
2141 and some, but not all, of the words of the register are
2142 needed in subsequent insns. Write REG_UNUSED notes
2143 for those parts that were not needed. This case should
2144 be rare. */
2146 int i;
2148 for (i = HARD_REGNO_NREGS (regno, GET_MODE (reg)) - 1;
2149 i >= 0; i--)
2150 if ((needed[(regno + i) / REGSET_ELT_BITS]
2151 & ((REGSET_ELT_TYPE) 1
2152 << ((regno + i) % REGSET_ELT_BITS))) == 0)
2153 REG_NOTES (insn)
2154 = gen_rtx (EXPR_LIST, REG_UNUSED,
2155 gen_rtx (REG, reg_raw_mode[regno + i],
2156 regno + i),
2157 REG_NOTES (insn));
2161 else if (GET_CODE (reg) == REG)
2162 reg_next_use[regno] = 0;
2164 /* If this is the last pass and this is a SCRATCH, show it will be dying
2165 here and count it. */
2166 else if (GET_CODE (reg) == SCRATCH && insn != 0)
2168 REG_NOTES (insn)
2169 = gen_rtx (EXPR_LIST, REG_UNUSED, reg, REG_NOTES (insn));
2170 num_scratch++;
2174 #ifdef AUTO_INC_DEC
2176 /* X is a MEM found in INSN. See if we can convert it into an auto-increment
2177 reference. */
2179 static void
2180 find_auto_inc (needed, x, insn)
2181 regset needed;
2182 rtx x;
2183 rtx insn;
2185 rtx addr = XEXP (x, 0);
2186 HOST_WIDE_INT offset = 0;
2187 rtx set;
2189 /* Here we detect use of an index register which might be good for
2190 postincrement, postdecrement, preincrement, or predecrement. */
2192 if (GET_CODE (addr) == PLUS && GET_CODE (XEXP (addr, 1)) == CONST_INT)
2193 offset = INTVAL (XEXP (addr, 1)), addr = XEXP (addr, 0);
2195 if (GET_CODE (addr) == REG)
2197 register rtx y;
2198 register int size = GET_MODE_SIZE (GET_MODE (x));
2199 rtx use;
2200 rtx incr;
2201 int regno = REGNO (addr);
2203 /* Is the next use an increment that might make auto-increment? */
2204 if ((incr = reg_next_use[regno]) != 0
2205 && (set = single_set (incr)) != 0
2206 && GET_CODE (set) == SET
2207 && BLOCK_NUM (incr) == BLOCK_NUM (insn)
2208 /* Can't add side effects to jumps; if reg is spilled and
2209 reloaded, there's no way to store back the altered value. */
2210 && GET_CODE (insn) != JUMP_INSN
2211 && (y = SET_SRC (set), GET_CODE (y) == PLUS)
2212 && XEXP (y, 0) == addr
2213 && GET_CODE (XEXP (y, 1)) == CONST_INT
2214 && (0
2215 #ifdef HAVE_POST_INCREMENT
2216 || (INTVAL (XEXP (y, 1)) == size && offset == 0)
2217 #endif
2218 #ifdef HAVE_POST_DECREMENT
2219 || (INTVAL (XEXP (y, 1)) == - size && offset == 0)
2220 #endif
2221 #ifdef HAVE_PRE_INCREMENT
2222 || (INTVAL (XEXP (y, 1)) == size && offset == size)
2223 #endif
2224 #ifdef HAVE_PRE_DECREMENT
2225 || (INTVAL (XEXP (y, 1)) == - size && offset == - size)
2226 #endif
2228 /* Make sure this reg appears only once in this insn. */
2229 && (use = find_use_as_address (PATTERN (insn), addr, offset),
2230 use != 0 && use != (rtx) 1))
2232 rtx q = SET_DEST (set);
2233 enum rtx_code inc_code = (INTVAL (XEXP (y, 1)) == size
2234 ? (offset ? PRE_INC : POST_INC)
2235 : (offset ? PRE_DEC : POST_DEC));
2237 if (dead_or_set_p (incr, addr))
2239 /* This is the simple case. Try to make the auto-inc. If
2240 we can't, we are done. Otherwise, we will do any
2241 needed updates below. */
2242 if (! validate_change (insn, &XEXP (x, 0),
2243 gen_rtx (inc_code, Pmode, addr),
2245 return;
2247 else if (GET_CODE (q) == REG
2248 /* PREV_INSN used here to check the semi-open interval
2249 [insn,incr). */
2250 && ! reg_used_between_p (q, PREV_INSN (insn), incr)
2251 /* We must also check for sets of q as q may be
2252 a call clobbered hard register and there may
2253 be a call between PREV_INSN (insn) and incr. */
2254 && ! reg_set_between_p (q, PREV_INSN (insn), incr))
2256 /* We have *p followed sometime later by q = p+size.
2257 Both p and q must be live afterward,
2258 and q is not used between INSN and it's assignment.
2259 Change it to q = p, ...*q..., q = q+size.
2260 Then fall into the usual case. */
2261 rtx insns, temp;
2263 start_sequence ();
2264 emit_move_insn (q, addr);
2265 insns = get_insns ();
2266 end_sequence ();
2268 /* If anything in INSNS have UID's that don't fit within the
2269 extra space we allocate earlier, we can't make this auto-inc.
2270 This should never happen. */
2271 for (temp = insns; temp; temp = NEXT_INSN (temp))
2273 if (INSN_UID (temp) > max_uid_for_flow)
2274 return;
2275 BLOCK_NUM (temp) = BLOCK_NUM (insn);
2278 /* If we can't make the auto-inc, or can't make the
2279 replacement into Y, exit. There's no point in making
2280 the change below if we can't do the auto-inc and doing
2281 so is not correct in the pre-inc case. */
2283 validate_change (insn, &XEXP (x, 0),
2284 gen_rtx (inc_code, Pmode, q),
2286 validate_change (incr, &XEXP (y, 0), q, 1);
2287 if (! apply_change_group ())
2288 return;
2290 /* We now know we'll be doing this change, so emit the
2291 new insn(s) and do the updates. */
2292 emit_insns_before (insns, insn);
2294 if (basic_block_head[BLOCK_NUM (insn)] == insn)
2295 basic_block_head[BLOCK_NUM (insn)] = insns;
2297 /* INCR will become a NOTE and INSN won't contain a
2298 use of ADDR. If a use of ADDR was just placed in
2299 the insn before INSN, make that the next use.
2300 Otherwise, invalidate it. */
2301 if (GET_CODE (PREV_INSN (insn)) == INSN
2302 && GET_CODE (PATTERN (PREV_INSN (insn))) == SET
2303 && SET_SRC (PATTERN (PREV_INSN (insn))) == addr)
2304 reg_next_use[regno] = PREV_INSN (insn);
2305 else
2306 reg_next_use[regno] = 0;
2308 addr = q;
2309 regno = REGNO (q);
2311 /* REGNO is now used in INCR which is below INSN, but
2312 it previously wasn't live here. If we don't mark
2313 it as needed, we'll put a REG_DEAD note for it
2314 on this insn, which is incorrect. */
2315 needed[regno / REGSET_ELT_BITS]
2316 |= (REGSET_ELT_TYPE) 1 << (regno % REGSET_ELT_BITS);
2318 /* If there are any calls between INSN and INCR, show
2319 that REGNO now crosses them. */
2320 for (temp = insn; temp != incr; temp = NEXT_INSN (temp))
2321 if (GET_CODE (temp) == CALL_INSN)
2322 reg_n_calls_crossed[regno]++;
2324 else
2325 return;
2327 /* If we haven't returned, it means we were able to make the
2328 auto-inc, so update the status. First, record that this insn
2329 has an implicit side effect. */
2331 REG_NOTES (insn)
2332 = gen_rtx (EXPR_LIST, REG_INC, addr, REG_NOTES (insn));
2334 /* Modify the old increment-insn to simply copy
2335 the already-incremented value of our register. */
2336 if (! validate_change (incr, &SET_SRC (set), addr, 0))
2337 abort ();
2339 /* If that makes it a no-op (copying the register into itself) delete
2340 it so it won't appear to be a "use" and a "set" of this
2341 register. */
2342 if (SET_DEST (set) == addr)
2344 PUT_CODE (incr, NOTE);
2345 NOTE_LINE_NUMBER (incr) = NOTE_INSN_DELETED;
2346 NOTE_SOURCE_FILE (incr) = 0;
2349 if (regno >= FIRST_PSEUDO_REGISTER)
2351 /* Count an extra reference to the reg. When a reg is
2352 incremented, spilling it is worse, so we want to make
2353 that less likely. */
2354 reg_n_refs[regno] += loop_depth;
2356 /* Count the increment as a setting of the register,
2357 even though it isn't a SET in rtl. */
2358 reg_n_sets[regno]++;
2363 #endif /* AUTO_INC_DEC */
2365 /* Scan expression X and store a 1-bit in LIVE for each reg it uses.
2366 This is done assuming the registers needed from X
2367 are those that have 1-bits in NEEDED.
2369 On the final pass, FINAL is 1. This means try for autoincrement
2370 and count the uses and deaths of each pseudo-reg.
2372 INSN is the containing instruction. If INSN is dead, this function is not
2373 called. */
2375 static void
2376 mark_used_regs (needed, live, x, final, insn)
2377 regset needed;
2378 regset live;
2379 rtx x;
2380 int final;
2381 rtx insn;
2383 register RTX_CODE code;
2384 register int regno;
2385 int i;
2387 retry:
2388 code = GET_CODE (x);
2389 switch (code)
2391 case LABEL_REF:
2392 case SYMBOL_REF:
2393 case CONST_INT:
2394 case CONST:
2395 case CONST_DOUBLE:
2396 case PC:
2397 case ADDR_VEC:
2398 case ADDR_DIFF_VEC:
2399 case ASM_INPUT:
2400 return;
2402 #ifdef HAVE_cc0
2403 case CC0:
2404 cc0_live = 1;
2405 return;
2406 #endif
2408 case CLOBBER:
2409 /* If we are clobbering a MEM, mark any registers inside the address
2410 as being used. */
2411 if (GET_CODE (XEXP (x, 0)) == MEM)
2412 mark_used_regs (needed, live, XEXP (XEXP (x, 0), 0), final, insn);
2413 return;
2415 case MEM:
2416 /* Invalidate the data for the last MEM stored. We could do this only
2417 if the addresses conflict, but this doesn't seem worthwhile. */
2418 last_mem_set = 0;
2420 #ifdef AUTO_INC_DEC
2421 if (final)
2422 find_auto_inc (needed, x, insn);
2423 #endif
2424 break;
2426 case SUBREG:
2427 if (GET_CODE (SUBREG_REG (x)) == REG
2428 && REGNO (SUBREG_REG (x)) >= FIRST_PSEUDO_REGISTER
2429 && (GET_MODE_SIZE (GET_MODE (x))
2430 != GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))))
2431 reg_changes_size[REGNO (SUBREG_REG (x))] = 1;
2433 /* While we're here, optimize this case. */
2434 x = SUBREG_REG (x);
2436 /* In case the SUBREG is not of a register, don't optimize */
2437 if (GET_CODE (x) != REG)
2439 mark_used_regs (needed, live, x, final, insn);
2440 return;
2443 /* ... fall through ... */
2445 case REG:
2446 /* See a register other than being set
2447 => mark it as needed. */
2449 regno = REGNO (x);
2451 register int offset = regno / REGSET_ELT_BITS;
2452 register REGSET_ELT_TYPE bit
2453 = (REGSET_ELT_TYPE) 1 << (regno % REGSET_ELT_BITS);
2454 REGSET_ELT_TYPE some_needed = needed[offset] & bit;
2455 REGSET_ELT_TYPE some_not_needed = (~ needed[offset]) & bit;
2457 live[offset] |= bit;
2459 /* A hard reg in a wide mode may really be multiple registers.
2460 If so, mark all of them just like the first. */
2461 if (regno < FIRST_PSEUDO_REGISTER)
2463 int n;
2465 /* For stack ptr or fixed arg pointer,
2466 nothing below can be necessary, so waste no more time. */
2467 if (regno == STACK_POINTER_REGNUM
2468 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
2469 || regno == HARD_FRAME_POINTER_REGNUM
2470 #endif
2471 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
2472 || (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
2473 #endif
2474 || regno == FRAME_POINTER_REGNUM)
2476 /* If this is a register we are going to try to eliminate,
2477 don't mark it live here. If we are successful in
2478 eliminating it, it need not be live unless it is used for
2479 pseudos, in which case it will have been set live when
2480 it was allocated to the pseudos. If the register will not
2481 be eliminated, reload will set it live at that point. */
2483 if (! TEST_HARD_REG_BIT (elim_reg_set, regno))
2484 regs_ever_live[regno] = 1;
2485 return;
2487 /* No death notes for global register variables;
2488 their values are live after this function exits. */
2489 if (global_regs[regno])
2491 if (final)
2492 reg_next_use[regno] = insn;
2493 return;
2496 n = HARD_REGNO_NREGS (regno, GET_MODE (x));
2497 while (--n > 0)
2499 REGSET_ELT_TYPE n_bit
2500 = (REGSET_ELT_TYPE) 1 << ((regno + n) % REGSET_ELT_BITS);
2502 live[(regno + n) / REGSET_ELT_BITS] |= n_bit;
2503 some_needed |= (needed[(regno + n) / REGSET_ELT_BITS] & n_bit);
2504 some_not_needed
2505 |= ((~ needed[(regno + n) / REGSET_ELT_BITS]) & n_bit);
2508 if (final)
2510 /* Record where each reg is used, so when the reg
2511 is set we know the next insn that uses it. */
2513 reg_next_use[regno] = insn;
2515 if (regno < FIRST_PSEUDO_REGISTER)
2517 /* If a hard reg is being used,
2518 record that this function does use it. */
2520 i = HARD_REGNO_NREGS (regno, GET_MODE (x));
2521 if (i == 0)
2522 i = 1;
2524 regs_ever_live[regno + --i] = 1;
2525 while (i > 0);
2527 else
2529 /* Keep track of which basic block each reg appears in. */
2531 register int blocknum = BLOCK_NUM (insn);
2533 if (reg_basic_block[regno] == REG_BLOCK_UNKNOWN)
2534 reg_basic_block[regno] = blocknum;
2535 else if (reg_basic_block[regno] != blocknum)
2536 reg_basic_block[regno] = REG_BLOCK_GLOBAL;
2538 /* Count (weighted) number of uses of each reg. */
2540 reg_n_refs[regno] += loop_depth;
2543 /* Record and count the insns in which a reg dies.
2544 If it is used in this insn and was dead below the insn
2545 then it dies in this insn. If it was set in this insn,
2546 we do not make a REG_DEAD note; likewise if we already
2547 made such a note. */
2549 if (some_not_needed
2550 && ! dead_or_set_p (insn, x)
2551 #if 0
2552 && (regno >= FIRST_PSEUDO_REGISTER || ! fixed_regs[regno])
2553 #endif
2556 /* Check for the case where the register dying partially
2557 overlaps the register set by this insn. */
2558 if (regno < FIRST_PSEUDO_REGISTER
2559 && HARD_REGNO_NREGS (regno, GET_MODE (x)) > 1)
2561 int n = HARD_REGNO_NREGS (regno, GET_MODE (x));
2562 while (--n >= 0)
2563 some_needed |= dead_or_set_regno_p (insn, regno + n);
2566 /* If none of the words in X is needed, make a REG_DEAD
2567 note. Otherwise, we must make partial REG_DEAD notes. */
2568 if (! some_needed)
2570 REG_NOTES (insn)
2571 = gen_rtx (EXPR_LIST, REG_DEAD, x, REG_NOTES (insn));
2572 reg_n_deaths[regno]++;
2574 else
2576 int i;
2578 /* Don't make a REG_DEAD note for a part of a register
2579 that is set in the insn. */
2581 for (i = HARD_REGNO_NREGS (regno, GET_MODE (x)) - 1;
2582 i >= 0; i--)
2583 if ((needed[(regno + i) / REGSET_ELT_BITS]
2584 & ((REGSET_ELT_TYPE) 1
2585 << ((regno + i) % REGSET_ELT_BITS))) == 0
2586 && ! dead_or_set_regno_p (insn, regno + i))
2587 REG_NOTES (insn)
2588 = gen_rtx (EXPR_LIST, REG_DEAD,
2589 gen_rtx (REG, reg_raw_mode[regno + i],
2590 regno + i),
2591 REG_NOTES (insn));
2596 return;
2598 case SET:
2600 register rtx testreg = SET_DEST (x);
2601 int mark_dest = 0;
2603 /* If storing into MEM, don't show it as being used. But do
2604 show the address as being used. */
2605 if (GET_CODE (testreg) == MEM)
2607 #ifdef AUTO_INC_DEC
2608 if (final)
2609 find_auto_inc (needed, testreg, insn);
2610 #endif
2611 mark_used_regs (needed, live, XEXP (testreg, 0), final, insn);
2612 mark_used_regs (needed, live, SET_SRC (x), final, insn);
2613 return;
2616 /* Storing in STRICT_LOW_PART is like storing in a reg
2617 in that this SET might be dead, so ignore it in TESTREG.
2618 but in some other ways it is like using the reg.
2620 Storing in a SUBREG or a bit field is like storing the entire
2621 register in that if the register's value is not used
2622 then this SET is not needed. */
2623 while (GET_CODE (testreg) == STRICT_LOW_PART
2624 || GET_CODE (testreg) == ZERO_EXTRACT
2625 || GET_CODE (testreg) == SIGN_EXTRACT
2626 || GET_CODE (testreg) == SUBREG)
2628 if (GET_CODE (testreg) == SUBREG
2629 && GET_CODE (SUBREG_REG (testreg)) == REG
2630 && REGNO (SUBREG_REG (testreg)) >= FIRST_PSEUDO_REGISTER
2631 && (GET_MODE_SIZE (GET_MODE (testreg))
2632 != GET_MODE_SIZE (GET_MODE (SUBREG_REG (testreg)))))
2633 reg_changes_size[REGNO (SUBREG_REG (testreg))] = 1;
2635 /* Modifying a single register in an alternate mode
2636 does not use any of the old value. But these other
2637 ways of storing in a register do use the old value. */
2638 if (GET_CODE (testreg) == SUBREG
2639 && !(REG_SIZE (SUBREG_REG (testreg)) > REG_SIZE (testreg)))
2641 else
2642 mark_dest = 1;
2644 testreg = XEXP (testreg, 0);
2647 /* If this is a store into a register,
2648 recursively scan the value being stored. */
2650 if (GET_CODE (testreg) == REG
2651 && (regno = REGNO (testreg), regno != FRAME_POINTER_REGNUM)
2652 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
2653 && regno != HARD_FRAME_POINTER_REGNUM
2654 #endif
2655 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
2656 && ! (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
2657 #endif
2659 /* We used to exclude global_regs here, but that seems wrong.
2660 Storing in them is like storing in mem. */
2662 mark_used_regs (needed, live, SET_SRC (x), final, insn);
2663 if (mark_dest)
2664 mark_used_regs (needed, live, SET_DEST (x), final, insn);
2665 return;
2668 break;
2670 case RETURN:
2671 /* If exiting needs the right stack value, consider this insn as
2672 using the stack pointer. In any event, consider it as using
2673 all global registers and all registers used by return. */
2675 #ifdef EXIT_IGNORE_STACK
2676 if (! EXIT_IGNORE_STACK
2677 || (! FRAME_POINTER_REQUIRED && flag_omit_frame_pointer))
2678 #endif
2679 live[STACK_POINTER_REGNUM / REGSET_ELT_BITS]
2680 |= (REGSET_ELT_TYPE) 1 << (STACK_POINTER_REGNUM % REGSET_ELT_BITS);
2682 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
2683 if (global_regs[i]
2684 #ifdef EPILOGUE_USES
2685 || EPILOGUE_USES (i)
2686 #endif
2688 live[i / REGSET_ELT_BITS]
2689 |= (REGSET_ELT_TYPE) 1 << (i % REGSET_ELT_BITS);
2690 break;
2693 /* Recursively scan the operands of this expression. */
2696 register char *fmt = GET_RTX_FORMAT (code);
2697 register int i;
2699 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2701 if (fmt[i] == 'e')
2703 /* Tail recursive case: save a function call level. */
2704 if (i == 0)
2706 x = XEXP (x, 0);
2707 goto retry;
2709 mark_used_regs (needed, live, XEXP (x, i), final, insn);
2711 else if (fmt[i] == 'E')
2713 register int j;
2714 for (j = 0; j < XVECLEN (x, i); j++)
2715 mark_used_regs (needed, live, XVECEXP (x, i, j), final, insn);
2721 #ifdef AUTO_INC_DEC
2723 static int
2724 try_pre_increment_1 (insn)
2725 rtx insn;
2727 /* Find the next use of this reg. If in same basic block,
2728 make it do pre-increment or pre-decrement if appropriate. */
2729 rtx x = PATTERN (insn);
2730 HOST_WIDE_INT amount = ((GET_CODE (SET_SRC (x)) == PLUS ? 1 : -1)
2731 * INTVAL (XEXP (SET_SRC (x), 1)));
2732 int regno = REGNO (SET_DEST (x));
2733 rtx y = reg_next_use[regno];
2734 if (y != 0
2735 && BLOCK_NUM (y) == BLOCK_NUM (insn)
2736 /* Don't do this if the reg dies, or gets set in y; a standard addressing
2737 mode would be better. */
2738 && ! dead_or_set_p (y, SET_DEST (x))
2739 && try_pre_increment (y, SET_DEST (PATTERN (insn)),
2740 amount))
2742 /* We have found a suitable auto-increment
2743 and already changed insn Y to do it.
2744 So flush this increment-instruction. */
2745 PUT_CODE (insn, NOTE);
2746 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
2747 NOTE_SOURCE_FILE (insn) = 0;
2748 /* Count a reference to this reg for the increment
2749 insn we are deleting. When a reg is incremented.
2750 spilling it is worse, so we want to make that
2751 less likely. */
2752 if (regno >= FIRST_PSEUDO_REGISTER)
2754 reg_n_refs[regno] += loop_depth;
2755 reg_n_sets[regno]++;
2757 return 1;
2759 return 0;
2762 /* Try to change INSN so that it does pre-increment or pre-decrement
2763 addressing on register REG in order to add AMOUNT to REG.
2764 AMOUNT is negative for pre-decrement.
2765 Returns 1 if the change could be made.
2766 This checks all about the validity of the result of modifying INSN. */
2768 static int
2769 try_pre_increment (insn, reg, amount)
2770 rtx insn, reg;
2771 HOST_WIDE_INT amount;
2773 register rtx use;
2775 /* Nonzero if we can try to make a pre-increment or pre-decrement.
2776 For example, addl $4,r1; movl (r1),... can become movl +(r1),... */
2777 int pre_ok = 0;
2778 /* Nonzero if we can try to make a post-increment or post-decrement.
2779 For example, addl $4,r1; movl -4(r1),... can become movl (r1)+,...
2780 It is possible for both PRE_OK and POST_OK to be nonzero if the machine
2781 supports both pre-inc and post-inc, or both pre-dec and post-dec. */
2782 int post_ok = 0;
2784 /* Nonzero if the opportunity actually requires post-inc or post-dec. */
2785 int do_post = 0;
2787 /* From the sign of increment, see which possibilities are conceivable
2788 on this target machine. */
2789 #ifdef HAVE_PRE_INCREMENT
2790 if (amount > 0)
2791 pre_ok = 1;
2792 #endif
2793 #ifdef HAVE_POST_INCREMENT
2794 if (amount > 0)
2795 post_ok = 1;
2796 #endif
2798 #ifdef HAVE_PRE_DECREMENT
2799 if (amount < 0)
2800 pre_ok = 1;
2801 #endif
2802 #ifdef HAVE_POST_DECREMENT
2803 if (amount < 0)
2804 post_ok = 1;
2805 #endif
2807 if (! (pre_ok || post_ok))
2808 return 0;
2810 /* It is not safe to add a side effect to a jump insn
2811 because if the incremented register is spilled and must be reloaded
2812 there would be no way to store the incremented value back in memory. */
2814 if (GET_CODE (insn) == JUMP_INSN)
2815 return 0;
2817 use = 0;
2818 if (pre_ok)
2819 use = find_use_as_address (PATTERN (insn), reg, 0);
2820 if (post_ok && (use == 0 || use == (rtx) 1))
2822 use = find_use_as_address (PATTERN (insn), reg, -amount);
2823 do_post = 1;
2826 if (use == 0 || use == (rtx) 1)
2827 return 0;
2829 if (GET_MODE_SIZE (GET_MODE (use)) != (amount > 0 ? amount : - amount))
2830 return 0;
2832 /* See if this combination of instruction and addressing mode exists. */
2833 if (! validate_change (insn, &XEXP (use, 0),
2834 gen_rtx (amount > 0
2835 ? (do_post ? POST_INC : PRE_INC)
2836 : (do_post ? POST_DEC : PRE_DEC),
2837 Pmode, reg), 0))
2838 return 0;
2840 /* Record that this insn now has an implicit side effect on X. */
2841 REG_NOTES (insn) = gen_rtx (EXPR_LIST, REG_INC, reg, REG_NOTES (insn));
2842 return 1;
2845 #endif /* AUTO_INC_DEC */
2847 /* Find the place in the rtx X where REG is used as a memory address.
2848 Return the MEM rtx that so uses it.
2849 If PLUSCONST is nonzero, search instead for a memory address equivalent to
2850 (plus REG (const_int PLUSCONST)).
2852 If such an address does not appear, return 0.
2853 If REG appears more than once, or is used other than in such an address,
2854 return (rtx)1. */
2856 static rtx
2857 find_use_as_address (x, reg, plusconst)
2858 register rtx x;
2859 rtx reg;
2860 HOST_WIDE_INT plusconst;
2862 enum rtx_code code = GET_CODE (x);
2863 char *fmt = GET_RTX_FORMAT (code);
2864 register int i;
2865 register rtx value = 0;
2866 register rtx tem;
2868 if (code == MEM && XEXP (x, 0) == reg && plusconst == 0)
2869 return x;
2871 if (code == MEM && GET_CODE (XEXP (x, 0)) == PLUS
2872 && XEXP (XEXP (x, 0), 0) == reg
2873 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
2874 && INTVAL (XEXP (XEXP (x, 0), 1)) == plusconst)
2875 return x;
2877 if (code == SIGN_EXTRACT || code == ZERO_EXTRACT)
2879 /* If REG occurs inside a MEM used in a bit-field reference,
2880 that is unacceptable. */
2881 if (find_use_as_address (XEXP (x, 0), reg, 0) != 0)
2882 return (rtx) (HOST_WIDE_INT) 1;
2885 if (x == reg)
2886 return (rtx) (HOST_WIDE_INT) 1;
2888 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2890 if (fmt[i] == 'e')
2892 tem = find_use_as_address (XEXP (x, i), reg, plusconst);
2893 if (value == 0)
2894 value = tem;
2895 else if (tem != 0)
2896 return (rtx) (HOST_WIDE_INT) 1;
2898 if (fmt[i] == 'E')
2900 register int j;
2901 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2903 tem = find_use_as_address (XVECEXP (x, i, j), reg, plusconst);
2904 if (value == 0)
2905 value = tem;
2906 else if (tem != 0)
2907 return (rtx) (HOST_WIDE_INT) 1;
2912 return value;
2915 /* Write information about registers and basic blocks into FILE.
2916 This is part of making a debugging dump. */
2918 void
2919 dump_flow_info (file)
2920 FILE *file;
2922 register int i;
2923 static char *reg_class_names[] = REG_CLASS_NAMES;
2925 fprintf (file, "%d registers.\n", max_regno);
2927 for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
2928 if (reg_n_refs[i])
2930 enum reg_class class, altclass;
2931 fprintf (file, "\nRegister %d used %d times across %d insns",
2932 i, reg_n_refs[i], reg_live_length[i]);
2933 if (reg_basic_block[i] >= 0)
2934 fprintf (file, " in block %d", reg_basic_block[i]);
2935 if (reg_n_deaths[i] != 1)
2936 fprintf (file, "; dies in %d places", reg_n_deaths[i]);
2937 if (reg_n_calls_crossed[i] == 1)
2938 fprintf (file, "; crosses 1 call");
2939 else if (reg_n_calls_crossed[i])
2940 fprintf (file, "; crosses %d calls", reg_n_calls_crossed[i]);
2941 if (PSEUDO_REGNO_BYTES (i) != UNITS_PER_WORD)
2942 fprintf (file, "; %d bytes", PSEUDO_REGNO_BYTES (i));
2943 class = reg_preferred_class (i);
2944 altclass = reg_alternate_class (i);
2945 if (class != GENERAL_REGS || altclass != ALL_REGS)
2947 if (altclass == ALL_REGS || class == ALL_REGS)
2948 fprintf (file, "; pref %s", reg_class_names[(int) class]);
2949 else if (altclass == NO_REGS)
2950 fprintf (file, "; %s or none", reg_class_names[(int) class]);
2951 else
2952 fprintf (file, "; pref %s, else %s",
2953 reg_class_names[(int) class],
2954 reg_class_names[(int) altclass]);
2956 if (REGNO_POINTER_FLAG (i))
2957 fprintf (file, "; pointer");
2958 fprintf (file, ".\n");
2960 fprintf (file, "\n%d basic blocks.\n", n_basic_blocks);
2961 for (i = 0; i < n_basic_blocks; i++)
2963 register rtx head, jump;
2964 register int regno;
2965 fprintf (file, "\nBasic block %d: first insn %d, last %d.\n",
2967 INSN_UID (basic_block_head[i]),
2968 INSN_UID (basic_block_end[i]));
2969 /* The control flow graph's storage is freed
2970 now when flow_analysis returns.
2971 Don't try to print it if it is gone. */
2972 if (basic_block_drops_in)
2974 fprintf (file, "Reached from blocks: ");
2975 head = basic_block_head[i];
2976 if (GET_CODE (head) == CODE_LABEL)
2977 for (jump = LABEL_REFS (head);
2978 jump != head;
2979 jump = LABEL_NEXTREF (jump))
2981 register int from_block = BLOCK_NUM (CONTAINING_INSN (jump));
2982 fprintf (file, " %d", from_block);
2984 if (basic_block_drops_in[i])
2985 fprintf (file, " previous");
2987 fprintf (file, "\nRegisters live at start:");
2988 for (regno = 0; regno < max_regno; regno++)
2990 register int offset = regno / REGSET_ELT_BITS;
2991 register REGSET_ELT_TYPE bit
2992 = (REGSET_ELT_TYPE) 1 << (regno % REGSET_ELT_BITS);
2993 if (basic_block_live_at_start[i][offset] & bit)
2994 fprintf (file, " %d", regno);
2996 fprintf (file, "\n");
2998 fprintf (file, "\n");