1 /* Data flow analysis for GNU compiler.
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
22 /* This file contains the data flow analysis pass of the compiler. It
23 computes data flow information which tells combine_instructions
24 which insns to consider combining and controls register allocation.
26 Additional data flow information that is too bulky to record is
27 generated during the analysis, and is used at that time to create
28 autoincrement and autodecrement addressing.
30 The first step is dividing the function into basic blocks.
31 find_basic_blocks does this. Then life_analysis determines
32 where each register is live and where it is dead.
34 ** find_basic_blocks **
36 find_basic_blocks divides the current function's rtl into basic
37 blocks and constructs the CFG. The blocks are recorded in the
38 basic_block_info array; the CFG exists in the edge structures
39 referenced by the blocks.
41 find_basic_blocks also finds any unreachable loops and deletes them.
45 life_analysis is called immediately after find_basic_blocks.
46 It uses the basic block information to determine where each
47 hard or pseudo register is live.
49 ** live-register info **
51 The information about where each register is live is in two parts:
52 the REG_NOTES of insns, and the vector basic_block->global_live_at_start.
54 basic_block->global_live_at_start has an element for each basic
55 block, and the element is a bit-vector with a bit for each hard or
56 pseudo register. The bit is 1 if the register is live at the
57 beginning of the basic block.
59 Two types of elements can be added to an insn's REG_NOTES.
60 A REG_DEAD note is added to an insn's REG_NOTES for any register
61 that meets both of two conditions: The value in the register is not
62 needed in subsequent insns and the insn does not replace the value in
63 the register (in the case of multi-word hard registers, the value in
64 each register must be replaced by the insn to avoid a REG_DEAD note).
66 In the vast majority of cases, an object in a REG_DEAD note will be
67 used somewhere in the insn. The (rare) exception to this is if an
68 insn uses a multi-word hard register and only some of the registers are
69 needed in subsequent insns. In that case, REG_DEAD notes will be
70 provided for those hard registers that are not subsequently needed.
71 Partial REG_DEAD notes of this type do not occur when an insn sets
72 only some of the hard registers used in such a multi-word operand;
73 omitting REG_DEAD notes for objects stored in an insn is optional and
74 the desire to do so does not justify the complexity of the partial
77 REG_UNUSED notes are added for each register that is set by the insn
78 but is unused subsequently (if every register set by the insn is unused
79 and the insn does not reference memory or have some other side-effect,
80 the insn is deleted instead). If only part of a multi-word hard
81 register is used in a subsequent insn, REG_UNUSED notes are made for
82 the parts that will not be used.
84 To determine which registers are live after any insn, one can
85 start from the beginning of the basic block and scan insns, noting
86 which registers are set by each insn and which die there.
88 ** Other actions of life_analysis **
90 life_analysis sets up the LOG_LINKS fields of insns because the
91 information needed to do so is readily available.
93 life_analysis deletes insns whose only effect is to store a value
96 life_analysis notices cases where a reference to a register as
97 a memory address can be combined with a preceding or following
98 incrementation or decrementation of the register. The separate
99 instruction to increment or decrement is deleted and the address
100 is changed to a POST_INC or similar rtx.
102 Each time an incrementing or decrementing address is created,
103 a REG_INC element is added to the insn's REG_NOTES list.
105 life_analysis fills in certain vectors containing information about
106 register usage: REG_N_REFS, REG_N_DEATHS, REG_N_SETS, REG_LIVE_LENGTH,
107 REG_N_CALLS_CROSSED and REG_BASIC_BLOCK.
109 life_analysis sets current_function_sp_is_unchanging if the function
110 doesn't modify the stack pointer. */
114 Split out from life_analysis:
115 - local property discovery
116 - global property computation
118 - pre/post modify transformation
123 #include "coretypes.h"
128 #include "hard-reg-set.h"
129 #include "basic-block.h"
130 #include "insn-config.h"
134 #include "function.h"
142 #include "splay-tree.h"
143 #include "tree-pass.h"
145 #ifndef HAVE_epilogue
146 #define HAVE_epilogue 0
148 #ifndef HAVE_prologue
149 #define HAVE_prologue 0
151 #ifndef HAVE_sibcall_epilogue
152 #define HAVE_sibcall_epilogue 0
155 #ifndef EPILOGUE_USES
156 #define EPILOGUE_USES(REGNO) 0
159 #define EH_USES(REGNO) 0
162 #ifdef HAVE_conditional_execution
163 #ifndef REVERSE_CONDEXEC_PREDICATES_P
164 #define REVERSE_CONDEXEC_PREDICATES_P(x, y) \
165 (GET_CODE ((x)) == reversed_comparison_code ((y), NULL))
169 /* This is the maximum number of times we process any given block if the
170 latest loop depth count is smaller than this number. Only used for the
171 failure strategy to avoid infinite loops in calculate_global_regs_live. */
172 #define MAX_LIVENESS_ROUNDS 20
174 /* Nonzero if the second flow pass has completed. */
177 /* Maximum register number used in this function, plus one. */
181 /* Indexed by n, giving various register information */
183 varray_type reg_n_info
;
185 /* Regset of regs live when calls to `setjmp'-like functions happen. */
186 /* ??? Does this exist only for the setjmp-clobbered warning message? */
188 static regset regs_live_at_setjmp
;
190 /* List made of EXPR_LIST rtx's which gives pairs of pseudo registers
191 that have to go in the same hard reg.
192 The first two regs in the list are a pair, and the next two
193 are another pair, etc. */
196 /* Set of registers that may be eliminable. These are handled specially
197 in updating regs_ever_live. */
199 static HARD_REG_SET elim_reg_set
;
201 /* Holds information for tracking conditional register life information. */
202 struct reg_cond_life_info
204 /* A boolean expression of conditions under which a register is dead. */
206 /* Conditions under which a register is dead at the basic block end. */
209 /* A boolean expression of conditions under which a register has been
213 /* ??? Could store mask of bytes that are dead, so that we could finally
214 track lifetimes of multi-word registers accessed via subregs. */
217 /* For use in communicating between propagate_block and its subroutines.
218 Holds all information needed to compute life and def-use information. */
220 struct propagate_block_info
222 /* The basic block we're considering. */
225 /* Bit N is set if register N is conditionally or unconditionally live. */
228 /* Bit N is set if register N is set this insn. */
231 /* Element N is the next insn that uses (hard or pseudo) register N
232 within the current basic block; or zero, if there is no such insn. */
235 /* Contains a list of all the MEMs we are tracking for dead store
239 /* If non-null, record the set of registers set unconditionally in the
243 /* If non-null, record the set of registers set conditionally in the
245 regset cond_local_set
;
247 #ifdef HAVE_conditional_execution
248 /* Indexed by register number, holds a reg_cond_life_info for each
249 register that is not unconditionally live or dead. */
250 splay_tree reg_cond_dead
;
252 /* Bit N is set if register N is in an expression in reg_cond_dead. */
256 /* The length of mem_set_list. */
257 int mem_set_list_len
;
259 /* Nonzero if the value of CC0 is live. */
262 /* Flags controlling the set of information propagate_block collects. */
264 /* Index of instruction being processed. */
268 /* Number of dead insns removed. */
271 /* When PROP_REG_INFO set, array contains pbi->insn_num of instruction
272 where given register died. When the register is marked alive, we use the
273 information to compute amount of instructions life range cross.
274 (remember, we are walking backward). This can be computed as current
275 pbi->insn_num - reg_deaths[regno].
276 At the end of processing each basic block, the remaining live registers
277 are inspected and live ranges are increased same way so liverange of global
278 registers are computed correctly.
280 The array is maintained clear for dead registers, so it can be safely reused
281 for next basic block without expensive memset of the whole array after
282 reseting pbi->insn_num to 0. */
284 static int *reg_deaths
;
286 /* Maximum length of pbi->mem_set_list before we start dropping
287 new elements on the floor. */
288 #define MAX_MEM_SET_LIST_LEN 100
290 /* Forward declarations */
291 static int verify_wide_reg_1 (rtx
*, void *);
292 static void verify_wide_reg (int, basic_block
);
293 static void verify_local_live_at_start (regset
, basic_block
);
294 static void notice_stack_pointer_modification_1 (rtx
, rtx
, void *);
295 static void notice_stack_pointer_modification (void);
296 static void mark_reg (rtx
, void *);
297 static void mark_regs_live_at_end (regset
);
298 static void calculate_global_regs_live (sbitmap
, sbitmap
, int);
299 static void propagate_block_delete_insn (rtx
);
300 static rtx
propagate_block_delete_libcall (rtx
, rtx
);
301 static int insn_dead_p (struct propagate_block_info
*, rtx
, int, rtx
);
302 static int libcall_dead_p (struct propagate_block_info
*, rtx
, rtx
);
303 static void mark_set_regs (struct propagate_block_info
*, rtx
, rtx
);
304 static void mark_set_1 (struct propagate_block_info
*, enum rtx_code
, rtx
,
306 static int find_regno_partial (rtx
*, void *);
308 #ifdef HAVE_conditional_execution
309 static int mark_regno_cond_dead (struct propagate_block_info
*, int, rtx
);
310 static void free_reg_cond_life_info (splay_tree_value
);
311 static int flush_reg_cond_reg_1 (splay_tree_node
, void *);
312 static void flush_reg_cond_reg (struct propagate_block_info
*, int);
313 static rtx
elim_reg_cond (rtx
, unsigned int);
314 static rtx
ior_reg_cond (rtx
, rtx
, int);
315 static rtx
not_reg_cond (rtx
);
316 static rtx
and_reg_cond (rtx
, rtx
, int);
319 static void attempt_auto_inc (struct propagate_block_info
*, rtx
, rtx
, rtx
,
321 static void find_auto_inc (struct propagate_block_info
*, rtx
, rtx
);
322 static int try_pre_increment_1 (struct propagate_block_info
*, rtx
);
323 static int try_pre_increment (rtx
, rtx
, HOST_WIDE_INT
);
325 static void mark_used_reg (struct propagate_block_info
*, rtx
, rtx
, rtx
);
326 static void mark_used_regs (struct propagate_block_info
*, rtx
, rtx
, rtx
);
327 void debug_flow_info (void);
328 static void add_to_mem_set_list (struct propagate_block_info
*, rtx
);
329 static int invalidate_mems_from_autoinc (rtx
*, void *);
330 static void invalidate_mems_from_set (struct propagate_block_info
*, rtx
);
331 static void clear_log_links (sbitmap
);
332 static int count_or_remove_death_notes_bb (basic_block
, int);
333 static void allocate_bb_life_data (void);
335 /* Return the INSN immediately following the NOTE_INSN_BASIC_BLOCK
336 note associated with the BLOCK. */
339 first_insn_after_basic_block_note (basic_block block
)
343 /* Get the first instruction in the block. */
344 insn
= BB_HEAD (block
);
346 if (insn
== NULL_RTX
)
349 insn
= NEXT_INSN (insn
);
350 gcc_assert (NOTE_INSN_BASIC_BLOCK_P (insn
));
352 return NEXT_INSN (insn
);
355 /* Perform data flow analysis for the whole control flow graph.
356 FLAGS is a set of PROP_* flags to be used in accumulating flow info. */
359 life_analysis (FILE *file
, int flags
)
361 #ifdef ELIMINABLE_REGS
363 static const struct {const int from
, to
; } eliminables
[] = ELIMINABLE_REGS
;
366 /* Record which registers will be eliminated. We use this in
369 CLEAR_HARD_REG_SET (elim_reg_set
);
371 #ifdef ELIMINABLE_REGS
372 for (i
= 0; i
< (int) ARRAY_SIZE (eliminables
); i
++)
373 SET_HARD_REG_BIT (elim_reg_set
, eliminables
[i
].from
);
375 SET_HARD_REG_BIT (elim_reg_set
, FRAME_POINTER_REGNUM
);
379 #ifdef CANNOT_CHANGE_MODE_CLASS
380 if (flags
& PROP_REG_INFO
)
381 init_subregs_of_mode ();
385 flags
&= ~(PROP_LOG_LINKS
| PROP_AUTOINC
| PROP_ALLOW_CFG_CHANGES
);
387 /* The post-reload life analysis have (on a global basis) the same
388 registers live as was computed by reload itself. elimination
389 Otherwise offsets and such may be incorrect.
391 Reload will make some registers as live even though they do not
394 We don't want to create new auto-incs after reload, since they
395 are unlikely to be useful and can cause problems with shared
397 if (reload_completed
)
398 flags
&= ~(PROP_REG_INFO
| PROP_AUTOINC
);
400 /* We want alias analysis information for local dead store elimination. */
401 if (optimize
&& (flags
& PROP_SCAN_DEAD_STORES
))
402 init_alias_analysis ();
404 /* Always remove no-op moves. Do this before other processing so
405 that we don't have to keep re-scanning them. */
406 delete_noop_moves ();
408 /* Some targets can emit simpler epilogues if they know that sp was
409 not ever modified during the function. After reload, of course,
410 we've already emitted the epilogue so there's no sense searching. */
411 if (! reload_completed
)
412 notice_stack_pointer_modification ();
414 /* Allocate and zero out data structures that will record the
415 data from lifetime analysis. */
416 allocate_reg_life_data ();
417 allocate_bb_life_data ();
419 /* Find the set of registers live on function exit. */
420 mark_regs_live_at_end (EXIT_BLOCK_PTR
->il
.rtl
->global_live_at_start
);
422 /* "Update" life info from zero. It'd be nice to begin the
423 relaxation with just the exit and noreturn blocks, but that set
424 is not immediately handy. */
426 if (flags
& PROP_REG_INFO
)
428 memset (regs_ever_live
, 0, sizeof (regs_ever_live
));
429 memset (regs_asm_clobbered
, 0, sizeof (regs_asm_clobbered
));
431 update_life_info (NULL
, UPDATE_LIFE_GLOBAL
, flags
);
439 if (optimize
&& (flags
& PROP_SCAN_DEAD_STORES
))
440 end_alias_analysis ();
443 dump_flow_info (file
);
445 /* Removing dead insns should have made jumptables really dead. */
446 delete_dead_jumptables ();
449 /* A subroutine of verify_wide_reg, called through for_each_rtx.
450 Search for REGNO. If found, return 2 if it is not wider than
454 verify_wide_reg_1 (rtx
*px
, void *pregno
)
457 unsigned int regno
= *(int *) pregno
;
459 if (REG_P (x
) && REGNO (x
) == regno
)
461 if (GET_MODE_BITSIZE (GET_MODE (x
)) <= BITS_PER_WORD
)
468 /* A subroutine of verify_local_live_at_start. Search through insns
469 of BB looking for register REGNO. */
472 verify_wide_reg (int regno
, basic_block bb
)
474 rtx head
= BB_HEAD (bb
), end
= BB_END (bb
);
480 int r
= for_each_rtx (&PATTERN (head
), verify_wide_reg_1
, ®no
);
488 head
= NEXT_INSN (head
);
492 fprintf (dump_file
, "Register %d died unexpectedly.\n", regno
);
493 dump_bb (bb
, dump_file
, 0);
495 fatal_error ("internal consistency failure");
498 /* A subroutine of update_life_info. Verify that there are no untoward
499 changes in live_at_start during a local update. */
502 verify_local_live_at_start (regset new_live_at_start
, basic_block bb
)
504 if (reload_completed
)
506 /* After reload, there are no pseudos, nor subregs of multi-word
507 registers. The regsets should exactly match. */
508 if (! REG_SET_EQUAL_P (new_live_at_start
,
509 bb
->il
.rtl
->global_live_at_start
))
514 "live_at_start mismatch in bb %d, aborting\nNew:\n",
516 debug_bitmap_file (dump_file
, new_live_at_start
);
517 fputs ("Old:\n", dump_file
);
518 dump_bb (bb
, dump_file
, 0);
520 fatal_error ("internal consistency failure");
526 reg_set_iterator rsi
;
528 /* Find the set of changed registers. */
529 XOR_REG_SET (new_live_at_start
, bb
->il
.rtl
->global_live_at_start
);
531 EXECUTE_IF_SET_IN_REG_SET (new_live_at_start
, 0, i
, rsi
)
533 /* No registers should die. */
534 if (REGNO_REG_SET_P (bb
->il
.rtl
->global_live_at_start
, i
))
539 "Register %d died unexpectedly.\n", i
);
540 dump_bb (bb
, dump_file
, 0);
542 fatal_error ("internal consistency failure");
544 /* Verify that the now-live register is wider than word_mode. */
545 verify_wide_reg (i
, bb
);
550 /* Updates life information starting with the basic blocks set in BLOCKS.
551 If BLOCKS is null, consider it to be the universal set.
553 If EXTENT is UPDATE_LIFE_LOCAL, such as after splitting or peepholing,
554 we are only expecting local modifications to basic blocks. If we find
555 extra registers live at the beginning of a block, then we either killed
556 useful data, or we have a broken split that wants data not provided.
557 If we find registers removed from live_at_start, that means we have
558 a broken peephole that is killing a register it shouldn't.
560 ??? This is not true in one situation -- when a pre-reload splitter
561 generates subregs of a multi-word pseudo, current life analysis will
562 lose the kill. So we _can_ have a pseudo go live. How irritating.
564 It is also not true when a peephole decides that it doesn't need one
565 or more of the inputs.
567 Including PROP_REG_INFO does not properly refresh regs_ever_live
568 unless the caller resets it to zero. */
571 update_life_info (sbitmap blocks
, enum update_life_extent extent
,
576 int stabilized_prop_flags
= prop_flags
;
579 tmp
= ALLOC_REG_SET (®_obstack
);
582 if ((prop_flags
& PROP_REG_INFO
) && !reg_deaths
)
583 reg_deaths
= xcalloc (sizeof (*reg_deaths
), max_regno
);
585 timevar_push ((extent
== UPDATE_LIFE_LOCAL
|| blocks
)
586 ? TV_LIFE_UPDATE
: TV_LIFE
);
588 /* Changes to the CFG are only allowed when
589 doing a global update for the entire CFG. */
590 gcc_assert (!(prop_flags
& PROP_ALLOW_CFG_CHANGES
)
591 || (extent
!= UPDATE_LIFE_LOCAL
&& !blocks
));
593 /* For a global update, we go through the relaxation process again. */
594 if (extent
!= UPDATE_LIFE_LOCAL
)
600 calculate_global_regs_live (blocks
, blocks
,
601 prop_flags
& (PROP_SCAN_DEAD_CODE
602 | PROP_SCAN_DEAD_STORES
603 | PROP_ALLOW_CFG_CHANGES
));
605 if ((prop_flags
& (PROP_KILL_DEAD_CODE
| PROP_ALLOW_CFG_CHANGES
))
606 != (PROP_KILL_DEAD_CODE
| PROP_ALLOW_CFG_CHANGES
))
609 /* Removing dead code may allow the CFG to be simplified which
610 in turn may allow for further dead code detection / removal. */
611 FOR_EACH_BB_REVERSE (bb
)
613 COPY_REG_SET (tmp
, bb
->il
.rtl
->global_live_at_end
);
614 changed
|= propagate_block (bb
, tmp
, NULL
, NULL
,
615 prop_flags
& (PROP_SCAN_DEAD_CODE
616 | PROP_SCAN_DEAD_STORES
617 | PROP_KILL_DEAD_CODE
));
620 /* Don't pass PROP_SCAN_DEAD_CODE or PROP_KILL_DEAD_CODE to
621 subsequent propagate_block calls, since removing or acting as
622 removing dead code can affect global register liveness, which
623 is supposed to be finalized for this call after this loop. */
624 stabilized_prop_flags
625 &= ~(PROP_SCAN_DEAD_CODE
| PROP_SCAN_DEAD_STORES
626 | PROP_KILL_DEAD_CODE
);
631 /* We repeat regardless of what cleanup_cfg says. If there were
632 instructions deleted above, that might have been only a
633 partial improvement (see MAX_MEM_SET_LIST_LEN usage).
634 Further improvement may be possible. */
635 cleanup_cfg (CLEANUP_EXPENSIVE
);
637 /* Zap the life information from the last round. If we don't
638 do this, we can wind up with registers that no longer appear
639 in the code being marked live at entry. */
642 CLEAR_REG_SET (bb
->il
.rtl
->global_live_at_start
);
643 CLEAR_REG_SET (bb
->il
.rtl
->global_live_at_end
);
647 /* If asked, remove notes from the blocks we'll update. */
648 if (extent
== UPDATE_LIFE_GLOBAL_RM_NOTES
)
649 count_or_remove_death_notes (blocks
, 1);
652 /* Clear log links in case we are asked to (re)compute them. */
653 if (prop_flags
& PROP_LOG_LINKS
)
654 clear_log_links (blocks
);
658 sbitmap_iterator sbi
;
660 EXECUTE_IF_SET_IN_SBITMAP (blocks
, 0, i
, sbi
)
662 bb
= BASIC_BLOCK (i
);
664 COPY_REG_SET (tmp
, bb
->il
.rtl
->global_live_at_end
);
665 propagate_block (bb
, tmp
, NULL
, NULL
, stabilized_prop_flags
);
667 if (extent
== UPDATE_LIFE_LOCAL
)
668 verify_local_live_at_start (tmp
, bb
);
673 FOR_EACH_BB_REVERSE (bb
)
675 COPY_REG_SET (tmp
, bb
->il
.rtl
->global_live_at_end
);
677 propagate_block (bb
, tmp
, NULL
, NULL
, stabilized_prop_flags
);
679 if (extent
== UPDATE_LIFE_LOCAL
)
680 verify_local_live_at_start (tmp
, bb
);
686 if (prop_flags
& PROP_REG_INFO
)
688 reg_set_iterator rsi
;
690 /* The only pseudos that are live at the beginning of the function
691 are those that were not set anywhere in the function. local-alloc
692 doesn't know how to handle these correctly, so mark them as not
693 local to any one basic block. */
694 EXECUTE_IF_SET_IN_REG_SET (ENTRY_BLOCK_PTR
->il
.rtl
->global_live_at_end
,
695 FIRST_PSEUDO_REGISTER
, i
, rsi
)
696 REG_BASIC_BLOCK (i
) = REG_BLOCK_GLOBAL
;
698 /* We have a problem with any pseudoreg that lives across the setjmp.
699 ANSI says that if a user variable does not change in value between
700 the setjmp and the longjmp, then the longjmp preserves it. This
701 includes longjmp from a place where the pseudo appears dead.
702 (In principle, the value still exists if it is in scope.)
703 If the pseudo goes in a hard reg, some other value may occupy
704 that hard reg where this pseudo is dead, thus clobbering the pseudo.
705 Conclusion: such a pseudo must not go in a hard reg. */
706 EXECUTE_IF_SET_IN_REG_SET (regs_live_at_setjmp
,
707 FIRST_PSEUDO_REGISTER
, i
, rsi
)
709 if (regno_reg_rtx
[i
] != 0)
711 REG_LIVE_LENGTH (i
) = -1;
712 REG_BASIC_BLOCK (i
) = REG_BLOCK_UNKNOWN
;
721 timevar_pop ((extent
== UPDATE_LIFE_LOCAL
|| blocks
)
722 ? TV_LIFE_UPDATE
: TV_LIFE
);
723 if (ndead
&& dump_file
)
724 fprintf (dump_file
, "deleted %i dead insns\n", ndead
);
728 /* Update life information in all blocks where BB_DIRTY is set. */
731 update_life_info_in_dirty_blocks (enum update_life_extent extent
, int prop_flags
)
733 sbitmap update_life_blocks
= sbitmap_alloc (last_basic_block
);
738 sbitmap_zero (update_life_blocks
);
741 if (bb
->flags
& BB_DIRTY
)
743 SET_BIT (update_life_blocks
, bb
->index
);
749 retval
= update_life_info (update_life_blocks
, extent
, prop_flags
);
751 sbitmap_free (update_life_blocks
);
755 /* Free the variables allocated by find_basic_blocks. */
758 free_basic_block_vars (void)
760 if (basic_block_info
)
763 basic_block_info
= NULL
;
766 last_basic_block
= 0;
769 label_to_block_map
= NULL
;
771 ENTRY_BLOCK_PTR
->aux
= NULL
;
772 ENTRY_BLOCK_PTR
->il
.rtl
->global_live_at_end
= NULL
;
773 EXIT_BLOCK_PTR
->aux
= NULL
;
774 EXIT_BLOCK_PTR
->il
.rtl
->global_live_at_start
= NULL
;
777 /* Delete any insns that copy a register to itself. */
780 delete_noop_moves (void)
788 for (insn
= BB_HEAD (bb
); insn
!= NEXT_INSN (BB_END (bb
)); insn
= next
)
790 next
= NEXT_INSN (insn
);
791 if (INSN_P (insn
) && noop_move_p (insn
))
795 /* If we're about to remove the first insn of a libcall
796 then move the libcall note to the next real insn and
797 update the retval note. */
798 if ((note
= find_reg_note (insn
, REG_LIBCALL
, NULL_RTX
))
799 && XEXP (note
, 0) != insn
)
801 rtx new_libcall_insn
= next_real_insn (insn
);
802 rtx retval_note
= find_reg_note (XEXP (note
, 0),
803 REG_RETVAL
, NULL_RTX
);
804 REG_NOTES (new_libcall_insn
)
805 = gen_rtx_INSN_LIST (REG_LIBCALL
, XEXP (note
, 0),
806 REG_NOTES (new_libcall_insn
));
807 XEXP (retval_note
, 0) = new_libcall_insn
;
810 delete_insn_and_edges (insn
);
815 if (nnoops
&& dump_file
)
816 fprintf (dump_file
, "deleted %i noop moves", nnoops
);
820 /* Delete any jump tables never referenced. We can't delete them at the
821 time of removing tablejump insn as they are referenced by the preceding
822 insns computing the destination, so we delay deleting and garbagecollect
823 them once life information is computed. */
825 delete_dead_jumptables (void)
829 /* A dead jump table does not belong to any basic block. Scan insns
830 between two adjacent basic blocks. */
835 for (insn
= NEXT_INSN (BB_END (bb
));
836 insn
&& !NOTE_INSN_BASIC_BLOCK_P (insn
);
839 next
= NEXT_INSN (insn
);
841 && LABEL_NUSES (insn
) == LABEL_PRESERVE_P (insn
)
843 && (GET_CODE (PATTERN (next
)) == ADDR_VEC
844 || GET_CODE (PATTERN (next
)) == ADDR_DIFF_VEC
))
846 rtx label
= insn
, jump
= next
;
849 fprintf (dump_file
, "Dead jumptable %i removed\n",
852 next
= NEXT_INSN (next
);
860 /* Determine if the stack pointer is constant over the life of the function.
861 Only useful before prologues have been emitted. */
864 notice_stack_pointer_modification_1 (rtx x
, rtx pat ATTRIBUTE_UNUSED
,
865 void *data ATTRIBUTE_UNUSED
)
867 if (x
== stack_pointer_rtx
868 /* The stack pointer is only modified indirectly as the result
869 of a push until later in flow. See the comments in rtl.texi
870 regarding Embedded Side-Effects on Addresses. */
872 && GET_RTX_CLASS (GET_CODE (XEXP (x
, 0))) == RTX_AUTOINC
873 && XEXP (XEXP (x
, 0), 0) == stack_pointer_rtx
))
874 current_function_sp_is_unchanging
= 0;
878 notice_stack_pointer_modification (void)
883 /* Assume that the stack pointer is unchanging if alloca hasn't
885 current_function_sp_is_unchanging
= !current_function_calls_alloca
;
886 if (! current_function_sp_is_unchanging
)
890 FOR_BB_INSNS (bb
, insn
)
894 /* Check if insn modifies the stack pointer. */
895 note_stores (PATTERN (insn
),
896 notice_stack_pointer_modification_1
,
898 if (! current_function_sp_is_unchanging
)
904 /* Mark a register in SET. Hard registers in large modes get all
905 of their component registers set as well. */
908 mark_reg (rtx reg
, void *xset
)
910 regset set
= (regset
) xset
;
911 int regno
= REGNO (reg
);
913 gcc_assert (GET_MODE (reg
) != BLKmode
);
915 SET_REGNO_REG_SET (set
, regno
);
916 if (regno
< FIRST_PSEUDO_REGISTER
)
918 int n
= hard_regno_nregs
[regno
][GET_MODE (reg
)];
920 SET_REGNO_REG_SET (set
, regno
+ n
);
924 /* Mark those regs which are needed at the end of the function as live
925 at the end of the last basic block. */
928 mark_regs_live_at_end (regset set
)
932 /* If exiting needs the right stack value, consider the stack pointer
933 live at the end of the function. */
934 if ((HAVE_epilogue
&& epilogue_completed
)
935 || ! EXIT_IGNORE_STACK
936 || (! FRAME_POINTER_REQUIRED
937 && ! current_function_calls_alloca
938 && flag_omit_frame_pointer
)
939 || current_function_sp_is_unchanging
)
941 SET_REGNO_REG_SET (set
, STACK_POINTER_REGNUM
);
944 /* Mark the frame pointer if needed at the end of the function. If
945 we end up eliminating it, it will be removed from the live list
946 of each basic block by reload. */
948 if (! reload_completed
|| frame_pointer_needed
)
950 SET_REGNO_REG_SET (set
, FRAME_POINTER_REGNUM
);
951 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
952 /* If they are different, also mark the hard frame pointer as live. */
953 if (! LOCAL_REGNO (HARD_FRAME_POINTER_REGNUM
))
954 SET_REGNO_REG_SET (set
, HARD_FRAME_POINTER_REGNUM
);
958 #ifndef PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
959 /* Many architectures have a GP register even without flag_pic.
960 Assume the pic register is not in use, or will be handled by
961 other means, if it is not fixed. */
962 if ((unsigned) PIC_OFFSET_TABLE_REGNUM
!= INVALID_REGNUM
963 && fixed_regs
[PIC_OFFSET_TABLE_REGNUM
])
964 SET_REGNO_REG_SET (set
, PIC_OFFSET_TABLE_REGNUM
);
967 /* Mark all global registers, and all registers used by the epilogue
968 as being live at the end of the function since they may be
969 referenced by our caller. */
970 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
971 if (global_regs
[i
] || EPILOGUE_USES (i
))
972 SET_REGNO_REG_SET (set
, i
);
974 if (HAVE_epilogue
&& epilogue_completed
)
976 /* Mark all call-saved registers that we actually used. */
977 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
978 if (regs_ever_live
[i
] && ! LOCAL_REGNO (i
)
979 && ! TEST_HARD_REG_BIT (regs_invalidated_by_call
, i
))
980 SET_REGNO_REG_SET (set
, i
);
983 #ifdef EH_RETURN_DATA_REGNO
984 /* Mark the registers that will contain data for the handler. */
985 if (reload_completed
&& current_function_calls_eh_return
)
988 unsigned regno
= EH_RETURN_DATA_REGNO(i
);
989 if (regno
== INVALID_REGNUM
)
991 SET_REGNO_REG_SET (set
, regno
);
994 #ifdef EH_RETURN_STACKADJ_RTX
995 if ((! HAVE_epilogue
|| ! epilogue_completed
)
996 && current_function_calls_eh_return
)
998 rtx tmp
= EH_RETURN_STACKADJ_RTX
;
999 if (tmp
&& REG_P (tmp
))
1000 mark_reg (tmp
, set
);
1003 #ifdef EH_RETURN_HANDLER_RTX
1004 if ((! HAVE_epilogue
|| ! epilogue_completed
)
1005 && current_function_calls_eh_return
)
1007 rtx tmp
= EH_RETURN_HANDLER_RTX
;
1008 if (tmp
&& REG_P (tmp
))
1009 mark_reg (tmp
, set
);
1013 /* Mark function return value. */
1014 diddle_return_value (mark_reg
, set
);
1017 /* Propagate global life info around the graph of basic blocks. Begin
1018 considering blocks with their corresponding bit set in BLOCKS_IN.
1019 If BLOCKS_IN is null, consider it the universal set.
1021 BLOCKS_OUT is set for every block that was changed. */
1024 calculate_global_regs_live (sbitmap blocks_in
, sbitmap blocks_out
, int flags
)
1026 basic_block
*queue
, *qhead
, *qtail
, *qend
, bb
;
1027 regset tmp
, new_live_at_end
, invalidated_by_call
;
1028 regset registers_made_dead
;
1029 bool failure_strategy_required
= false;
1030 int *block_accesses
;
1032 /* The registers that are modified within this in block. */
1035 /* The registers that are conditionally modified within this block.
1036 In other words, regs that are set only as part of a COND_EXEC. */
1037 regset
*cond_local_sets
;
1041 /* Some passes used to forget clear aux field of basic block causing
1042 sick behavior here. */
1043 #ifdef ENABLE_CHECKING
1044 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, NULL
, next_bb
)
1045 gcc_assert (!bb
->aux
);
1048 tmp
= ALLOC_REG_SET (®_obstack
);
1049 new_live_at_end
= ALLOC_REG_SET (®_obstack
);
1050 invalidated_by_call
= ALLOC_REG_SET (®_obstack
);
1051 registers_made_dead
= ALLOC_REG_SET (®_obstack
);
1053 /* Inconveniently, this is only readily available in hard reg set form. */
1054 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; ++i
)
1055 if (TEST_HARD_REG_BIT (regs_invalidated_by_call
, i
))
1056 SET_REGNO_REG_SET (invalidated_by_call
, i
);
1058 /* Allocate space for the sets of local properties. */
1059 local_sets
= xcalloc (last_basic_block
- (INVALID_BLOCK
+ 1),
1061 cond_local_sets
= xcalloc (last_basic_block
- (INVALID_BLOCK
+ 1),
1064 /* Create a worklist. Allocate an extra slot for ENTRY_BLOCK, and one
1065 because the `head == tail' style test for an empty queue doesn't
1066 work with a full queue. */
1067 queue
= xmalloc ((n_basic_blocks
- (INVALID_BLOCK
+ 1)) * sizeof (*queue
));
1069 qhead
= qend
= queue
+ n_basic_blocks
- (INVALID_BLOCK
+ 1);
1071 /* Queue the blocks set in the initial mask. Do this in reverse block
1072 number order so that we are more likely for the first round to do
1073 useful work. We use AUX non-null to flag that the block is queued. */
1077 if (TEST_BIT (blocks_in
, bb
->index
))
1092 block_accesses
= xcalloc (last_basic_block
, sizeof (int));
1094 /* We clean aux when we remove the initially-enqueued bbs, but we
1095 don't enqueue ENTRY and EXIT initially, so clean them upfront and
1097 ENTRY_BLOCK_PTR
->aux
= EXIT_BLOCK_PTR
->aux
= NULL
;
1100 sbitmap_zero (blocks_out
);
1102 /* We work through the queue until there are no more blocks. What
1103 is live at the end of this block is precisely the union of what
1104 is live at the beginning of all its successors. So, we set its
1105 GLOBAL_LIVE_AT_END field based on the GLOBAL_LIVE_AT_START field
1106 for its successors. Then, we compute GLOBAL_LIVE_AT_START for
1107 this block by walking through the instructions in this block in
1108 reverse order and updating as we go. If that changed
1109 GLOBAL_LIVE_AT_START, we add the predecessors of the block to the
1110 queue; they will now need to recalculate GLOBAL_LIVE_AT_END.
1112 We are guaranteed to terminate, because GLOBAL_LIVE_AT_START
1113 never shrinks. If a register appears in GLOBAL_LIVE_AT_START, it
1114 must either be live at the end of the block, or used within the
1115 block. In the latter case, it will certainly never disappear
1116 from GLOBAL_LIVE_AT_START. In the former case, the register
1117 could go away only if it disappeared from GLOBAL_LIVE_AT_START
1118 for one of the successor blocks. By induction, that cannot
1121 ??? This reasoning doesn't work if we start from non-empty initial
1122 GLOBAL_LIVE_AT_START sets. And there are actually two problems:
1123 1) Updating may not terminate (endless oscillation).
1124 2) Even if it does (and it usually does), the resulting information
1125 may be inaccurate. Consider for example the following case:
1128 while (...) {...} -- 'a' not mentioned at all
1131 If the use of 'a' is deleted between two calculations of liveness
1132 information and the initial sets are not cleared, the information
1133 about a's liveness will get stuck inside the loop and the set will
1134 appear not to be dead.
1136 We do not attempt to solve 2) -- the information is conservatively
1137 correct (i.e. we never claim that something live is dead) and the
1138 amount of optimization opportunities missed due to this problem is
1141 1) is more serious. In order to fix it, we monitor the number of times
1142 each block is processed. Once one of the blocks has been processed more
1143 times than the maximum number of rounds, we use the following strategy:
1144 When a register disappears from one of the sets, we add it to a MAKE_DEAD
1145 set, remove all registers in this set from all GLOBAL_LIVE_AT_* sets and
1146 add the blocks with changed sets into the queue. Thus we are guaranteed
1147 to terminate (the worst case corresponds to all registers in MADE_DEAD,
1148 in which case the original reasoning above is valid), but in general we
1149 only fix up a few offending registers.
1151 The maximum number of rounds for computing liveness is the largest of
1152 MAX_LIVENESS_ROUNDS and the latest loop depth count for this function. */
1154 while (qhead
!= qtail
)
1156 int rescan
, changed
;
1166 /* Should we start using the failure strategy? */
1167 if (bb
!= ENTRY_BLOCK_PTR
)
1169 int max_liveness_rounds
=
1170 MAX (MAX_LIVENESS_ROUNDS
, cfun
->max_loop_depth
);
1172 block_accesses
[bb
->index
]++;
1173 if (block_accesses
[bb
->index
] > max_liveness_rounds
)
1174 failure_strategy_required
= true;
1177 /* Begin by propagating live_at_start from the successor blocks. */
1178 CLEAR_REG_SET (new_live_at_end
);
1180 if (EDGE_COUNT (bb
->succs
) > 0)
1181 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1183 basic_block sb
= e
->dest
;
1185 /* Call-clobbered registers die across exception and
1187 /* ??? Abnormal call edges ignored for the moment, as this gets
1188 confused by sibling call edges, which crashes reg-stack. */
1189 if (e
->flags
& EDGE_EH
)
1190 bitmap_ior_and_compl_into (new_live_at_end
,
1191 sb
->il
.rtl
->global_live_at_start
,
1192 invalidated_by_call
);
1194 IOR_REG_SET (new_live_at_end
, sb
->il
.rtl
->global_live_at_start
);
1196 /* If a target saves one register in another (instead of on
1197 the stack) the save register will need to be live for EH. */
1198 if (e
->flags
& EDGE_EH
)
1199 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
1201 SET_REGNO_REG_SET (new_live_at_end
, i
);
1205 /* This might be a noreturn function that throws. And
1206 even if it isn't, getting the unwind info right helps
1208 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
1210 SET_REGNO_REG_SET (new_live_at_end
, i
);
1213 /* The all-important stack pointer must always be live. */
1214 SET_REGNO_REG_SET (new_live_at_end
, STACK_POINTER_REGNUM
);
1216 /* Before reload, there are a few registers that must be forced
1217 live everywhere -- which might not already be the case for
1218 blocks within infinite loops. */
1219 if (! reload_completed
)
1221 /* Any reference to any pseudo before reload is a potential
1222 reference of the frame pointer. */
1223 SET_REGNO_REG_SET (new_live_at_end
, FRAME_POINTER_REGNUM
);
1225 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
1226 /* Pseudos with argument area equivalences may require
1227 reloading via the argument pointer. */
1228 if (fixed_regs
[ARG_POINTER_REGNUM
])
1229 SET_REGNO_REG_SET (new_live_at_end
, ARG_POINTER_REGNUM
);
1232 /* Any constant, or pseudo with constant equivalences, may
1233 require reloading from memory using the pic register. */
1234 if ((unsigned) PIC_OFFSET_TABLE_REGNUM
!= INVALID_REGNUM
1235 && fixed_regs
[PIC_OFFSET_TABLE_REGNUM
])
1236 SET_REGNO_REG_SET (new_live_at_end
, PIC_OFFSET_TABLE_REGNUM
);
1239 if (bb
== ENTRY_BLOCK_PTR
)
1241 COPY_REG_SET (bb
->il
.rtl
->global_live_at_end
, new_live_at_end
);
1245 /* On our first pass through this block, we'll go ahead and continue.
1246 Recognize first pass by checking if local_set is NULL for this
1247 basic block. On subsequent passes, we get to skip out early if
1248 live_at_end wouldn't have changed. */
1250 if (local_sets
[bb
->index
- (INVALID_BLOCK
+ 1)] == NULL
)
1252 local_sets
[bb
->index
- (INVALID_BLOCK
+ 1)]
1253 = ALLOC_REG_SET (®_obstack
);
1254 cond_local_sets
[bb
->index
- (INVALID_BLOCK
+ 1)]
1255 = ALLOC_REG_SET (®_obstack
);
1260 /* If any bits were removed from live_at_end, we'll have to
1261 rescan the block. This wouldn't be necessary if we had
1262 precalculated local_live, however with PROP_SCAN_DEAD_CODE
1263 local_live is really dependent on live_at_end. */
1264 rescan
= bitmap_intersect_compl_p (bb
->il
.rtl
->global_live_at_end
,
1269 regset cond_local_set
;
1271 /* If any of the registers in the new live_at_end set are
1272 conditionally set in this basic block, we must rescan.
1273 This is because conditional lifetimes at the end of the
1274 block do not just take the live_at_end set into
1275 account, but also the liveness at the start of each
1276 successor block. We can miss changes in those sets if
1277 we only compare the new live_at_end against the
1279 cond_local_set
= cond_local_sets
[bb
->index
- (INVALID_BLOCK
+ 1)];
1280 rescan
= bitmap_intersect_p (new_live_at_end
, cond_local_set
);
1287 /* Find the set of changed bits. Take this opportunity
1288 to notice that this set is empty and early out. */
1289 bitmap_xor (tmp
, bb
->il
.rtl
->global_live_at_end
, new_live_at_end
);
1290 if (bitmap_empty_p (tmp
))
1293 /* If any of the changed bits overlap with local_sets[bb],
1294 we'll have to rescan the block. */
1295 local_set
= local_sets
[bb
->index
- (INVALID_BLOCK
+ 1)];
1296 rescan
= bitmap_intersect_p (tmp
, local_set
);
1300 /* Let our caller know that BB changed enough to require its
1301 death notes updated. */
1303 SET_BIT (blocks_out
, bb
->index
);
1307 /* Add to live_at_start the set of all registers in
1308 new_live_at_end that aren't in the old live_at_end. */
1310 changed
= bitmap_ior_and_compl_into (bb
->il
.rtl
->global_live_at_start
,
1312 bb
->il
.rtl
->global_live_at_end
);
1313 COPY_REG_SET (bb
->il
.rtl
->global_live_at_end
, new_live_at_end
);
1319 COPY_REG_SET (bb
->il
.rtl
->global_live_at_end
, new_live_at_end
);
1321 /* Rescan the block insn by insn to turn (a copy of) live_at_end
1322 into live_at_start. */
1323 propagate_block (bb
, new_live_at_end
,
1324 local_sets
[bb
->index
- (INVALID_BLOCK
+ 1)],
1325 cond_local_sets
[bb
->index
- (INVALID_BLOCK
+ 1)],
1328 /* If live_at start didn't change, no need to go farther. */
1329 if (REG_SET_EQUAL_P (bb
->il
.rtl
->global_live_at_start
,
1333 if (failure_strategy_required
)
1335 /* Get the list of registers that were removed from the
1336 bb->global_live_at_start set. */
1337 bitmap_and_compl (tmp
, bb
->il
.rtl
->global_live_at_start
,
1339 if (!bitmap_empty_p (tmp
))
1344 /* It should not happen that one of registers we have
1345 removed last time is disappears again before any other
1347 pbb_changed
= bitmap_ior_into (registers_made_dead
, tmp
);
1348 gcc_assert (pbb_changed
);
1350 /* Now remove the registers from all sets. */
1353 pbb_changed
= false;
1356 |= bitmap_and_compl_into
1357 (pbb
->il
.rtl
->global_live_at_start
,
1358 registers_made_dead
);
1360 |= bitmap_and_compl_into
1361 (pbb
->il
.rtl
->global_live_at_end
,
1362 registers_made_dead
);
1366 /* Note the (possible) change. */
1368 SET_BIT (blocks_out
, pbb
->index
);
1370 /* Makes sure to really rescan the block. */
1371 if (local_sets
[pbb
->index
- (INVALID_BLOCK
+ 1)])
1373 FREE_REG_SET (local_sets
[pbb
->index
- (INVALID_BLOCK
+ 1)]);
1374 FREE_REG_SET (cond_local_sets
[pbb
->index
- (INVALID_BLOCK
+ 1)]);
1375 local_sets
[pbb
->index
- (INVALID_BLOCK
+ 1)] = 0;
1378 /* Add it to the queue. */
1379 if (pbb
->aux
== NULL
)
1389 } /* end of failure_strategy_required */
1391 COPY_REG_SET (bb
->il
.rtl
->global_live_at_start
, new_live_at_end
);
1394 /* Queue all predecessors of BB so that we may re-examine
1395 their live_at_end. */
1396 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
1398 basic_block pb
= e
->src
;
1399 if (pb
->aux
== NULL
)
1410 FREE_REG_SET (new_live_at_end
);
1411 FREE_REG_SET (invalidated_by_call
);
1412 FREE_REG_SET (registers_made_dead
);
1416 sbitmap_iterator sbi
;
1418 EXECUTE_IF_SET_IN_SBITMAP (blocks_out
, 0, i
, sbi
)
1420 basic_block bb
= BASIC_BLOCK (i
);
1421 FREE_REG_SET (local_sets
[bb
->index
- (INVALID_BLOCK
+ 1)]);
1422 FREE_REG_SET (cond_local_sets
[bb
->index
- (INVALID_BLOCK
+ 1)]);
1429 FREE_REG_SET (local_sets
[bb
->index
- (INVALID_BLOCK
+ 1)]);
1430 FREE_REG_SET (cond_local_sets
[bb
->index
- (INVALID_BLOCK
+ 1)]);
1434 free (block_accesses
);
1436 free (cond_local_sets
);
1441 /* This structure is used to pass parameters to and from the
1442 the function find_regno_partial(). It is used to pass in the
1443 register number we are looking, as well as to return any rtx
1447 unsigned regno_to_find
;
1449 } find_regno_partial_param
;
1452 /* Find the rtx for the reg numbers specified in 'data' if it is
1453 part of an expression which only uses part of the register. Return
1454 it in the structure passed in. */
1456 find_regno_partial (rtx
*ptr
, void *data
)
1458 find_regno_partial_param
*param
= (find_regno_partial_param
*)data
;
1459 unsigned reg
= param
->regno_to_find
;
1460 param
->retval
= NULL_RTX
;
1462 if (*ptr
== NULL_RTX
)
1465 switch (GET_CODE (*ptr
))
1469 case STRICT_LOW_PART
:
1470 if (REG_P (XEXP (*ptr
, 0)) && REGNO (XEXP (*ptr
, 0)) == reg
)
1472 param
->retval
= XEXP (*ptr
, 0);
1478 if (REG_P (SUBREG_REG (*ptr
))
1479 && REGNO (SUBREG_REG (*ptr
)) == reg
)
1481 param
->retval
= SUBREG_REG (*ptr
);
1493 /* Process all immediate successors of the entry block looking for pseudo
1494 registers which are live on entry. Find all of those whose first
1495 instance is a partial register reference of some kind, and initialize
1496 them to 0 after the entry block. This will prevent bit sets within
1497 registers whose value is unknown, and may contain some kind of sticky
1498 bits we don't want. */
1501 initialize_uninitialized_subregs (void)
1505 unsigned reg
, did_something
= 0;
1506 find_regno_partial_param param
;
1509 FOR_EACH_EDGE (e
, ei
, ENTRY_BLOCK_PTR
->succs
)
1511 basic_block bb
= e
->dest
;
1512 regset map
= bb
->il
.rtl
->global_live_at_start
;
1513 reg_set_iterator rsi
;
1515 EXECUTE_IF_SET_IN_REG_SET (map
, FIRST_PSEUDO_REGISTER
, reg
, rsi
)
1517 int uid
= REGNO_FIRST_UID (reg
);
1520 /* Find an insn which mentions the register we are looking for.
1521 Its preferable to have an instance of the register's rtl since
1522 there may be various flags set which we need to duplicate.
1523 If we can't find it, its probably an automatic whose initial
1524 value doesn't matter, or hopefully something we don't care about. */
1525 for (i
= get_insns (); i
&& INSN_UID (i
) != uid
; i
= NEXT_INSN (i
))
1529 /* Found the insn, now get the REG rtx, if we can. */
1530 param
.regno_to_find
= reg
;
1531 for_each_rtx (&i
, find_regno_partial
, ¶m
);
1532 if (param
.retval
!= NULL_RTX
)
1535 emit_move_insn (param
.retval
,
1536 CONST0_RTX (GET_MODE (param
.retval
)));
1537 insn
= get_insns ();
1539 insert_insn_on_edge (insn
, e
);
1547 commit_edge_insertions ();
1548 return did_something
;
1552 /* Subroutines of life analysis. */
1554 /* Allocate the permanent data structures that represent the results
1555 of life analysis. */
1558 allocate_bb_life_data (void)
1562 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, NULL
, next_bb
)
1564 bb
->il
.rtl
->global_live_at_start
= ALLOC_REG_SET (®_obstack
);
1565 bb
->il
.rtl
->global_live_at_end
= ALLOC_REG_SET (®_obstack
);
1568 regs_live_at_setjmp
= ALLOC_REG_SET (®_obstack
);
1572 allocate_reg_life_data (void)
1576 max_regno
= max_reg_num ();
1577 gcc_assert (!reg_deaths
);
1578 reg_deaths
= xcalloc (sizeof (*reg_deaths
), max_regno
);
1580 /* Recalculate the register space, in case it has grown. Old style
1581 vector oriented regsets would set regset_{size,bytes} here also. */
1582 allocate_reg_info (max_regno
, FALSE
, FALSE
);
1584 /* Reset all the data we'll collect in propagate_block and its
1586 for (i
= 0; i
< max_regno
; i
++)
1590 REG_N_DEATHS (i
) = 0;
1591 REG_N_CALLS_CROSSED (i
) = 0;
1592 REG_LIVE_LENGTH (i
) = 0;
1594 REG_BASIC_BLOCK (i
) = REG_BLOCK_UNKNOWN
;
1598 /* Delete dead instructions for propagate_block. */
1601 propagate_block_delete_insn (rtx insn
)
1603 rtx inote
= find_reg_note (insn
, REG_LABEL
, NULL_RTX
);
1605 /* If the insn referred to a label, and that label was attached to
1606 an ADDR_VEC, it's safe to delete the ADDR_VEC. In fact, it's
1607 pretty much mandatory to delete it, because the ADDR_VEC may be
1608 referencing labels that no longer exist.
1610 INSN may reference a deleted label, particularly when a jump
1611 table has been optimized into a direct jump. There's no
1612 real good way to fix up the reference to the deleted label
1613 when the label is deleted, so we just allow it here. */
1615 if (inote
&& LABEL_P (inote
))
1617 rtx label
= XEXP (inote
, 0);
1620 /* The label may be forced if it has been put in the constant
1621 pool. If that is the only use we must discard the table
1622 jump following it, but not the label itself. */
1623 if (LABEL_NUSES (label
) == 1 + LABEL_PRESERVE_P (label
)
1624 && (next
= next_nonnote_insn (label
)) != NULL
1626 && (GET_CODE (PATTERN (next
)) == ADDR_VEC
1627 || GET_CODE (PATTERN (next
)) == ADDR_DIFF_VEC
))
1629 rtx pat
= PATTERN (next
);
1630 int diff_vec_p
= GET_CODE (pat
) == ADDR_DIFF_VEC
;
1631 int len
= XVECLEN (pat
, diff_vec_p
);
1634 for (i
= 0; i
< len
; i
++)
1635 LABEL_NUSES (XEXP (XVECEXP (pat
, diff_vec_p
, i
), 0))--;
1637 delete_insn_and_edges (next
);
1642 delete_insn_and_edges (insn
);
1646 /* Delete dead libcalls for propagate_block. Return the insn
1647 before the libcall. */
1650 propagate_block_delete_libcall (rtx insn
, rtx note
)
1652 rtx first
= XEXP (note
, 0);
1653 rtx before
= PREV_INSN (first
);
1655 delete_insn_chain_and_edges (first
, insn
);
1660 /* Update the life-status of regs for one insn. Return the previous insn. */
1663 propagate_one_insn (struct propagate_block_info
*pbi
, rtx insn
)
1665 rtx prev
= PREV_INSN (insn
);
1666 int flags
= pbi
->flags
;
1667 int insn_is_dead
= 0;
1668 int libcall_is_dead
= 0;
1672 if (! INSN_P (insn
))
1675 note
= find_reg_note (insn
, REG_RETVAL
, NULL_RTX
);
1676 if (flags
& PROP_SCAN_DEAD_CODE
)
1678 insn_is_dead
= insn_dead_p (pbi
, PATTERN (insn
), 0, REG_NOTES (insn
));
1679 libcall_is_dead
= (insn_is_dead
&& note
!= 0
1680 && libcall_dead_p (pbi
, note
, insn
));
1683 /* If an instruction consists of just dead store(s) on final pass,
1685 if ((flags
& PROP_KILL_DEAD_CODE
) && insn_is_dead
)
1687 /* If we're trying to delete a prologue or epilogue instruction
1688 that isn't flagged as possibly being dead, something is wrong.
1689 But if we are keeping the stack pointer depressed, we might well
1690 be deleting insns that are used to compute the amount to update
1691 it by, so they are fine. */
1692 if (reload_completed
1693 && !(TREE_CODE (TREE_TYPE (current_function_decl
)) == FUNCTION_TYPE
1694 && (TYPE_RETURNS_STACK_DEPRESSED
1695 (TREE_TYPE (current_function_decl
))))
1696 && (((HAVE_epilogue
|| HAVE_prologue
)
1697 && prologue_epilogue_contains (insn
))
1698 || (HAVE_sibcall_epilogue
1699 && sibcall_epilogue_contains (insn
)))
1700 && find_reg_note (insn
, REG_MAYBE_DEAD
, NULL_RTX
) == 0)
1701 fatal_insn ("Attempt to delete prologue/epilogue insn:", insn
);
1703 /* Record sets. Do this even for dead instructions, since they
1704 would have killed the values if they hadn't been deleted. To
1705 be consistent, we also have to emit a clobber when we delete
1706 an insn that clobbers a live register. */
1707 pbi
->flags
|= PROP_DEAD_INSN
;
1708 mark_set_regs (pbi
, PATTERN (insn
), insn
);
1709 pbi
->flags
&= ~PROP_DEAD_INSN
;
1711 /* CC0 is now known to be dead. Either this insn used it,
1712 in which case it doesn't anymore, or clobbered it,
1713 so the next insn can't use it. */
1716 if (libcall_is_dead
)
1717 prev
= propagate_block_delete_libcall (insn
, note
);
1721 /* If INSN contains a RETVAL note and is dead, but the libcall
1722 as a whole is not dead, then we want to remove INSN, but
1723 not the whole libcall sequence.
1725 However, we need to also remove the dangling REG_LIBCALL
1726 note so that we do not have mis-matched LIBCALL/RETVAL
1727 notes. In theory we could find a new location for the
1728 REG_RETVAL note, but it hardly seems worth the effort.
1730 NOTE at this point will be the RETVAL note if it exists. */
1736 = find_reg_note (XEXP (note
, 0), REG_LIBCALL
, NULL_RTX
);
1737 remove_note (XEXP (note
, 0), libcall_note
);
1740 /* Similarly if INSN contains a LIBCALL note, remove the
1741 dangling REG_RETVAL note. */
1742 note
= find_reg_note (insn
, REG_LIBCALL
, NULL_RTX
);
1748 = find_reg_note (XEXP (note
, 0), REG_RETVAL
, NULL_RTX
);
1749 remove_note (XEXP (note
, 0), retval_note
);
1752 /* Now delete INSN. */
1753 propagate_block_delete_insn (insn
);
1759 /* See if this is an increment or decrement that can be merged into
1760 a following memory address. */
1763 rtx x
= single_set (insn
);
1765 /* Does this instruction increment or decrement a register? */
1766 if ((flags
& PROP_AUTOINC
)
1768 && REG_P (SET_DEST (x
))
1769 && (GET_CODE (SET_SRC (x
)) == PLUS
1770 || GET_CODE (SET_SRC (x
)) == MINUS
)
1771 && XEXP (SET_SRC (x
), 0) == SET_DEST (x
)
1772 && GET_CODE (XEXP (SET_SRC (x
), 1)) == CONST_INT
1773 /* Ok, look for a following memory ref we can combine with.
1774 If one is found, change the memory ref to a PRE_INC
1775 or PRE_DEC, cancel this insn, and return 1.
1776 Return 0 if nothing has been done. */
1777 && try_pre_increment_1 (pbi
, insn
))
1780 #endif /* AUTO_INC_DEC */
1782 CLEAR_REG_SET (pbi
->new_set
);
1784 /* If this is not the final pass, and this insn is copying the value of
1785 a library call and it's dead, don't scan the insns that perform the
1786 library call, so that the call's arguments are not marked live. */
1787 if (libcall_is_dead
)
1789 /* Record the death of the dest reg. */
1790 mark_set_regs (pbi
, PATTERN (insn
), insn
);
1792 insn
= XEXP (note
, 0);
1793 return PREV_INSN (insn
);
1795 else if (GET_CODE (PATTERN (insn
)) == SET
1796 && SET_DEST (PATTERN (insn
)) == stack_pointer_rtx
1797 && GET_CODE (SET_SRC (PATTERN (insn
))) == PLUS
1798 && XEXP (SET_SRC (PATTERN (insn
)), 0) == stack_pointer_rtx
1799 && GET_CODE (XEXP (SET_SRC (PATTERN (insn
)), 1)) == CONST_INT
)
1801 /* We have an insn to pop a constant amount off the stack.
1802 (Such insns use PLUS regardless of the direction of the stack,
1803 and any insn to adjust the stack by a constant is always a pop
1805 These insns, if not dead stores, have no effect on life, though
1806 they do have an effect on the memory stores we are tracking. */
1807 invalidate_mems_from_set (pbi
, stack_pointer_rtx
);
1808 /* Still, we need to update local_set, lest ifcvt.c:dead_or_predicable
1809 concludes that the stack pointer is not modified. */
1810 mark_set_regs (pbi
, PATTERN (insn
), insn
);
1814 /* Any regs live at the time of a call instruction must not go
1815 in a register clobbered by calls. Find all regs now live and
1816 record this for them. */
1818 if (CALL_P (insn
) && (flags
& PROP_REG_INFO
))
1820 reg_set_iterator rsi
;
1821 EXECUTE_IF_SET_IN_REG_SET (pbi
->reg_live
, 0, i
, rsi
)
1822 REG_N_CALLS_CROSSED (i
)++;
1825 /* Record sets. Do this even for dead instructions, since they
1826 would have killed the values if they hadn't been deleted. */
1827 mark_set_regs (pbi
, PATTERN (insn
), insn
);
1837 if (GET_CODE (PATTERN (insn
)) == COND_EXEC
)
1838 cond
= COND_EXEC_TEST (PATTERN (insn
));
1840 /* Non-constant calls clobber memory, constant calls do not
1841 clobber memory, though they may clobber outgoing arguments
1843 if (! CONST_OR_PURE_CALL_P (insn
))
1845 free_EXPR_LIST_list (&pbi
->mem_set_list
);
1846 pbi
->mem_set_list_len
= 0;
1849 invalidate_mems_from_set (pbi
, stack_pointer_rtx
);
1851 /* There may be extra registers to be clobbered. */
1852 for (note
= CALL_INSN_FUNCTION_USAGE (insn
);
1854 note
= XEXP (note
, 1))
1855 if (GET_CODE (XEXP (note
, 0)) == CLOBBER
)
1856 mark_set_1 (pbi
, CLOBBER
, XEXP (XEXP (note
, 0), 0),
1857 cond
, insn
, pbi
->flags
);
1859 /* Calls change all call-used and global registers; sibcalls do not
1860 clobber anything that must be preserved at end-of-function,
1861 except for return values. */
1863 sibcall_p
= SIBLING_CALL_P (insn
);
1864 live_at_end
= EXIT_BLOCK_PTR
->il
.rtl
->global_live_at_start
;
1865 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
1866 if (TEST_HARD_REG_BIT (regs_invalidated_by_call
, i
)
1868 && REGNO_REG_SET_P (live_at_end
, i
)
1869 && ! refers_to_regno_p (i
, i
+1,
1870 current_function_return_rtx
,
1873 enum rtx_code code
= global_regs
[i
] ? SET
: CLOBBER
;
1874 /* We do not want REG_UNUSED notes for these registers. */
1875 mark_set_1 (pbi
, code
, regno_reg_rtx
[i
], cond
, insn
,
1876 pbi
->flags
& ~(PROP_DEATH_NOTES
| PROP_REG_INFO
));
1880 /* If an insn doesn't use CC0, it becomes dead since we assume
1881 that every insn clobbers it. So show it dead here;
1882 mark_used_regs will set it live if it is referenced. */
1887 mark_used_regs (pbi
, PATTERN (insn
), NULL_RTX
, insn
);
1889 /* Sometimes we may have inserted something before INSN (such as a move)
1890 when we make an auto-inc. So ensure we will scan those insns. */
1892 prev
= PREV_INSN (insn
);
1895 if (! insn_is_dead
&& CALL_P (insn
))
1901 if (GET_CODE (PATTERN (insn
)) == COND_EXEC
)
1902 cond
= COND_EXEC_TEST (PATTERN (insn
));
1904 /* Calls use their arguments, and may clobber memory which
1905 address involves some register. */
1906 for (note
= CALL_INSN_FUNCTION_USAGE (insn
);
1908 note
= XEXP (note
, 1))
1909 /* We find USE or CLOBBER entities in a FUNCTION_USAGE list: both
1910 of which mark_used_regs knows how to handle. */
1911 mark_used_regs (pbi
, XEXP (XEXP (note
, 0), 0), cond
, insn
);
1913 /* The stack ptr is used (honorarily) by a CALL insn. */
1914 if ((flags
& PROP_REG_INFO
)
1915 && !REGNO_REG_SET_P (pbi
->reg_live
, STACK_POINTER_REGNUM
))
1916 reg_deaths
[STACK_POINTER_REGNUM
] = pbi
->insn_num
;
1917 SET_REGNO_REG_SET (pbi
->reg_live
, STACK_POINTER_REGNUM
);
1919 /* Calls may also reference any of the global registers,
1920 so they are made live. */
1921 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
1923 mark_used_reg (pbi
, regno_reg_rtx
[i
], cond
, insn
);
1932 /* Initialize a propagate_block_info struct for public consumption.
1933 Note that the structure itself is opaque to this file, but that
1934 the user can use the regsets provided here. */
1936 struct propagate_block_info
*
1937 init_propagate_block_info (basic_block bb
, regset live
, regset local_set
,
1938 regset cond_local_set
, int flags
)
1940 struct propagate_block_info
*pbi
= xmalloc (sizeof (*pbi
));
1943 pbi
->reg_live
= live
;
1944 pbi
->mem_set_list
= NULL_RTX
;
1945 pbi
->mem_set_list_len
= 0;
1946 pbi
->local_set
= local_set
;
1947 pbi
->cond_local_set
= cond_local_set
;
1952 if (flags
& (PROP_LOG_LINKS
| PROP_AUTOINC
))
1953 pbi
->reg_next_use
= xcalloc (max_reg_num (), sizeof (rtx
));
1955 pbi
->reg_next_use
= NULL
;
1957 pbi
->new_set
= BITMAP_ALLOC (NULL
);
1959 #ifdef HAVE_conditional_execution
1960 pbi
->reg_cond_dead
= splay_tree_new (splay_tree_compare_ints
, NULL
,
1961 free_reg_cond_life_info
);
1962 pbi
->reg_cond_reg
= BITMAP_ALLOC (NULL
);
1964 /* If this block ends in a conditional branch, for each register
1965 live from one side of the branch and not the other, record the
1966 register as conditionally dead. */
1967 if (JUMP_P (BB_END (bb
))
1968 && any_condjump_p (BB_END (bb
)))
1970 regset diff
= ALLOC_REG_SET (®_obstack
);
1971 basic_block bb_true
, bb_false
;
1974 /* Identify the successor blocks. */
1975 bb_true
= EDGE_SUCC (bb
, 0)->dest
;
1976 if (!single_succ_p (bb
))
1978 bb_false
= EDGE_SUCC (bb
, 1)->dest
;
1980 if (EDGE_SUCC (bb
, 0)->flags
& EDGE_FALLTHRU
)
1982 basic_block t
= bb_false
;
1987 gcc_assert (EDGE_SUCC (bb
, 1)->flags
& EDGE_FALLTHRU
);
1991 /* This can happen with a conditional jump to the next insn. */
1992 gcc_assert (JUMP_LABEL (BB_END (bb
)) == BB_HEAD (bb_true
));
1994 /* Simplest way to do nothing. */
1998 /* Compute which register lead different lives in the successors. */
1999 bitmap_xor (diff
, bb_true
->il
.rtl
->global_live_at_start
,
2000 bb_false
->il
.rtl
->global_live_at_start
);
2002 if (!bitmap_empty_p (diff
))
2004 /* Extract the condition from the branch. */
2005 rtx set_src
= SET_SRC (pc_set (BB_END (bb
)));
2006 rtx cond_true
= XEXP (set_src
, 0);
2007 rtx reg
= XEXP (cond_true
, 0);
2008 enum rtx_code inv_cond
;
2010 if (GET_CODE (reg
) == SUBREG
)
2011 reg
= SUBREG_REG (reg
);
2013 /* We can only track conditional lifetimes if the condition is
2014 in the form of a reversible comparison of a register against
2015 zero. If the condition is more complex than that, then it is
2016 safe not to record any information. */
2017 inv_cond
= reversed_comparison_code (cond_true
, BB_END (bb
));
2018 if (inv_cond
!= UNKNOWN
2020 && XEXP (cond_true
, 1) == const0_rtx
)
2023 = gen_rtx_fmt_ee (inv_cond
,
2024 GET_MODE (cond_true
), XEXP (cond_true
, 0),
2025 XEXP (cond_true
, 1));
2026 reg_set_iterator rsi
;
2028 if (GET_CODE (XEXP (set_src
, 1)) == PC
)
2031 cond_false
= cond_true
;
2035 SET_REGNO_REG_SET (pbi
->reg_cond_reg
, REGNO (reg
));
2037 /* For each such register, mark it conditionally dead. */
2038 EXECUTE_IF_SET_IN_REG_SET (diff
, 0, i
, rsi
)
2040 struct reg_cond_life_info
*rcli
;
2043 rcli
= xmalloc (sizeof (*rcli
));
2045 if (REGNO_REG_SET_P (bb_true
->il
.rtl
->global_live_at_start
,
2050 rcli
->condition
= cond
;
2051 rcli
->stores
= const0_rtx
;
2052 rcli
->orig_condition
= cond
;
2054 splay_tree_insert (pbi
->reg_cond_dead
, i
,
2055 (splay_tree_value
) rcli
);
2060 FREE_REG_SET (diff
);
2064 /* If this block has no successors, any stores to the frame that aren't
2065 used later in the block are dead. So make a pass over the block
2066 recording any such that are made and show them dead at the end. We do
2067 a very conservative and simple job here. */
2069 && ! (TREE_CODE (TREE_TYPE (current_function_decl
)) == FUNCTION_TYPE
2070 && (TYPE_RETURNS_STACK_DEPRESSED
2071 (TREE_TYPE (current_function_decl
))))
2072 && (flags
& PROP_SCAN_DEAD_STORES
)
2073 && (EDGE_COUNT (bb
->succs
) == 0
2074 || (single_succ_p (bb
)
2075 && single_succ (bb
) == EXIT_BLOCK_PTR
2076 && ! current_function_calls_eh_return
)))
2079 for (insn
= BB_END (bb
); insn
!= BB_HEAD (bb
); insn
= PREV_INSN (insn
))
2080 if (NONJUMP_INSN_P (insn
)
2081 && (set
= single_set (insn
))
2082 && MEM_P (SET_DEST (set
)))
2084 rtx mem
= SET_DEST (set
);
2085 rtx canon_mem
= canon_rtx (mem
);
2087 if (XEXP (canon_mem
, 0) == frame_pointer_rtx
2088 || (GET_CODE (XEXP (canon_mem
, 0)) == PLUS
2089 && XEXP (XEXP (canon_mem
, 0), 0) == frame_pointer_rtx
2090 && GET_CODE (XEXP (XEXP (canon_mem
, 0), 1)) == CONST_INT
))
2091 add_to_mem_set_list (pbi
, canon_mem
);
2098 /* Release a propagate_block_info struct. */
2101 free_propagate_block_info (struct propagate_block_info
*pbi
)
2103 free_EXPR_LIST_list (&pbi
->mem_set_list
);
2105 BITMAP_FREE (pbi
->new_set
);
2107 #ifdef HAVE_conditional_execution
2108 splay_tree_delete (pbi
->reg_cond_dead
);
2109 BITMAP_FREE (pbi
->reg_cond_reg
);
2112 if (pbi
->flags
& PROP_REG_INFO
)
2114 int num
= pbi
->insn_num
;
2116 reg_set_iterator rsi
;
2118 EXECUTE_IF_SET_IN_REG_SET (pbi
->reg_live
, 0, i
, rsi
)
2120 REG_LIVE_LENGTH (i
) += num
- reg_deaths
[i
];
2124 if (pbi
->reg_next_use
)
2125 free (pbi
->reg_next_use
);
2130 /* Compute the registers live at the beginning of a basic block BB from
2131 those live at the end.
2133 When called, REG_LIVE contains those live at the end. On return, it
2134 contains those live at the beginning.
2136 LOCAL_SET, if non-null, will be set with all registers killed
2137 unconditionally by this basic block.
2138 Likewise, COND_LOCAL_SET, if non-null, will be set with all registers
2139 killed conditionally by this basic block. If there is any unconditional
2140 set of a register, then the corresponding bit will be set in LOCAL_SET
2141 and cleared in COND_LOCAL_SET.
2142 It is valid for LOCAL_SET and COND_LOCAL_SET to be the same set. In this
2143 case, the resulting set will be equal to the union of the two sets that
2144 would otherwise be computed.
2146 Return nonzero if an INSN is deleted (i.e. by dead code removal). */
2149 propagate_block (basic_block bb
, regset live
, regset local_set
,
2150 regset cond_local_set
, int flags
)
2152 struct propagate_block_info
*pbi
;
2156 pbi
= init_propagate_block_info (bb
, live
, local_set
, cond_local_set
, flags
);
2158 if (flags
& PROP_REG_INFO
)
2161 reg_set_iterator rsi
;
2163 /* Process the regs live at the end of the block.
2164 Mark them as not local to any one basic block. */
2165 EXECUTE_IF_SET_IN_REG_SET (live
, 0, i
, rsi
)
2166 REG_BASIC_BLOCK (i
) = REG_BLOCK_GLOBAL
;
2169 /* Scan the block an insn at a time from end to beginning. */
2172 for (insn
= BB_END (bb
); ; insn
= prev
)
2174 /* If this is a call to `setjmp' et al, warn if any
2175 non-volatile datum is live. */
2176 if ((flags
& PROP_REG_INFO
)
2178 && find_reg_note (insn
, REG_SETJMP
, NULL
))
2179 IOR_REG_SET (regs_live_at_setjmp
, pbi
->reg_live
);
2181 prev
= propagate_one_insn (pbi
, insn
);
2183 changed
|= insn
!= get_insns ();
2185 changed
|= NEXT_INSN (prev
) != insn
;
2187 if (insn
== BB_HEAD (bb
))
2191 free_propagate_block_info (pbi
);
2196 /* Return 1 if X (the body of an insn, or part of it) is just dead stores
2197 (SET expressions whose destinations are registers dead after the insn).
2198 NEEDED is the regset that says which regs are alive after the insn.
2200 Unless CALL_OK is nonzero, an insn is needed if it contains a CALL.
2202 If X is the entire body of an insn, NOTES contains the reg notes
2203 pertaining to the insn. */
2206 insn_dead_p (struct propagate_block_info
*pbi
, rtx x
, int call_ok
,
2207 rtx notes ATTRIBUTE_UNUSED
)
2209 enum rtx_code code
= GET_CODE (x
);
2211 /* Don't eliminate insns that may trap. */
2212 if (flag_non_call_exceptions
&& may_trap_p (x
))
2216 /* As flow is invoked after combine, we must take existing AUTO_INC
2217 expressions into account. */
2218 for (; notes
; notes
= XEXP (notes
, 1))
2220 if (REG_NOTE_KIND (notes
) == REG_INC
)
2222 int regno
= REGNO (XEXP (notes
, 0));
2224 /* Don't delete insns to set global regs. */
2225 if ((regno
< FIRST_PSEUDO_REGISTER
&& global_regs
[regno
])
2226 || REGNO_REG_SET_P (pbi
->reg_live
, regno
))
2232 /* If setting something that's a reg or part of one,
2233 see if that register's altered value will be live. */
2237 rtx r
= SET_DEST (x
);
2240 if (GET_CODE (r
) == CC0
)
2241 return ! pbi
->cc0_live
;
2244 /* A SET that is a subroutine call cannot be dead. */
2245 if (GET_CODE (SET_SRC (x
)) == CALL
)
2251 /* Don't eliminate loads from volatile memory or volatile asms. */
2252 else if (volatile_refs_p (SET_SRC (x
)))
2259 if (MEM_VOLATILE_P (r
) || GET_MODE (r
) == BLKmode
)
2262 canon_r
= canon_rtx (r
);
2264 /* Walk the set of memory locations we are currently tracking
2265 and see if one is an identical match to this memory location.
2266 If so, this memory write is dead (remember, we're walking
2267 backwards from the end of the block to the start). Since
2268 rtx_equal_p does not check the alias set or flags, we also
2269 must have the potential for them to conflict (anti_dependence). */
2270 for (temp
= pbi
->mem_set_list
; temp
!= 0; temp
= XEXP (temp
, 1))
2271 if (anti_dependence (r
, XEXP (temp
, 0)))
2273 rtx mem
= XEXP (temp
, 0);
2275 if (rtx_equal_p (XEXP (canon_r
, 0), XEXP (mem
, 0))
2276 && (GET_MODE_SIZE (GET_MODE (canon_r
))
2277 <= GET_MODE_SIZE (GET_MODE (mem
))))
2281 /* Check if memory reference matches an auto increment. Only
2282 post increment/decrement or modify are valid. */
2283 if (GET_MODE (mem
) == GET_MODE (r
)
2284 && (GET_CODE (XEXP (mem
, 0)) == POST_DEC
2285 || GET_CODE (XEXP (mem
, 0)) == POST_INC
2286 || GET_CODE (XEXP (mem
, 0)) == POST_MODIFY
)
2287 && GET_MODE (XEXP (mem
, 0)) == GET_MODE (r
)
2288 && rtx_equal_p (XEXP (XEXP (mem
, 0), 0), XEXP (r
, 0)))
2295 while (GET_CODE (r
) == SUBREG
2296 || GET_CODE (r
) == STRICT_LOW_PART
2297 || GET_CODE (r
) == ZERO_EXTRACT
)
2302 int regno
= REGNO (r
);
2305 if (REGNO_REG_SET_P (pbi
->reg_live
, regno
))
2308 /* If this is a hard register, verify that subsequent
2309 words are not needed. */
2310 if (regno
< FIRST_PSEUDO_REGISTER
)
2312 int n
= hard_regno_nregs
[regno
][GET_MODE (r
)];
2315 if (REGNO_REG_SET_P (pbi
->reg_live
, regno
+n
))
2319 /* Don't delete insns to set global regs. */
2320 if (regno
< FIRST_PSEUDO_REGISTER
&& global_regs
[regno
])
2323 /* Make sure insns to set the stack pointer aren't deleted. */
2324 if (regno
== STACK_POINTER_REGNUM
)
2327 /* ??? These bits might be redundant with the force live bits
2328 in calculate_global_regs_live. We would delete from
2329 sequential sets; whether this actually affects real code
2330 for anything but the stack pointer I don't know. */
2331 /* Make sure insns to set the frame pointer aren't deleted. */
2332 if (regno
== FRAME_POINTER_REGNUM
2333 && (! reload_completed
|| frame_pointer_needed
))
2335 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
2336 if (regno
== HARD_FRAME_POINTER_REGNUM
2337 && (! reload_completed
|| frame_pointer_needed
))
2341 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
2342 /* Make sure insns to set arg pointer are never deleted
2343 (if the arg pointer isn't fixed, there will be a USE
2344 for it, so we can treat it normally). */
2345 if (regno
== ARG_POINTER_REGNUM
&& fixed_regs
[regno
])
2349 /* Otherwise, the set is dead. */
2355 /* If performing several activities, insn is dead if each activity
2356 is individually dead. Also, CLOBBERs and USEs can be ignored; a
2357 CLOBBER or USE that's inside a PARALLEL doesn't make the insn
2359 else if (code
== PARALLEL
)
2361 int i
= XVECLEN (x
, 0);
2363 for (i
--; i
>= 0; i
--)
2364 if (GET_CODE (XVECEXP (x
, 0, i
)) != CLOBBER
2365 && GET_CODE (XVECEXP (x
, 0, i
)) != USE
2366 && ! insn_dead_p (pbi
, XVECEXP (x
, 0, i
), call_ok
, NULL_RTX
))
2372 /* A CLOBBER of a pseudo-register that is dead serves no purpose. That
2373 is not necessarily true for hard registers until after reload. */
2374 else if (code
== CLOBBER
)
2376 if (REG_P (XEXP (x
, 0))
2377 && (REGNO (XEXP (x
, 0)) >= FIRST_PSEUDO_REGISTER
2378 || reload_completed
)
2379 && ! REGNO_REG_SET_P (pbi
->reg_live
, REGNO (XEXP (x
, 0))))
2383 /* ??? A base USE is a historical relic. It ought not be needed anymore.
2384 Instances where it is still used are either (1) temporary and the USE
2385 escaped the pass, (2) cruft and the USE need not be emitted anymore,
2386 or (3) hiding bugs elsewhere that are not properly representing data
2392 /* If INSN is the last insn in a libcall, and assuming INSN is dead,
2393 return 1 if the entire library call is dead.
2394 This is true if INSN copies a register (hard or pseudo)
2395 and if the hard return reg of the call insn is dead.
2396 (The caller should have tested the destination of the SET inside
2397 INSN already for death.)
2399 If this insn doesn't just copy a register, then we don't
2400 have an ordinary libcall. In that case, cse could not have
2401 managed to substitute the source for the dest later on,
2402 so we can assume the libcall is dead.
2404 PBI is the block info giving pseudoregs live before this insn.
2405 NOTE is the REG_RETVAL note of the insn. */
2408 libcall_dead_p (struct propagate_block_info
*pbi
, rtx note
, rtx insn
)
2410 rtx x
= single_set (insn
);
2414 rtx r
= SET_SRC (x
);
2416 if (REG_P (r
) || GET_CODE (r
) == SUBREG
)
2418 rtx call
= XEXP (note
, 0);
2422 /* Find the call insn. */
2423 while (call
!= insn
&& !CALL_P (call
))
2424 call
= NEXT_INSN (call
);
2426 /* If there is none, do nothing special,
2427 since ordinary death handling can understand these insns. */
2431 /* See if the hard reg holding the value is dead.
2432 If this is a PARALLEL, find the call within it. */
2433 call_pat
= PATTERN (call
);
2434 if (GET_CODE (call_pat
) == PARALLEL
)
2436 for (i
= XVECLEN (call_pat
, 0) - 1; i
>= 0; i
--)
2437 if (GET_CODE (XVECEXP (call_pat
, 0, i
)) == SET
2438 && GET_CODE (SET_SRC (XVECEXP (call_pat
, 0, i
))) == CALL
)
2441 /* This may be a library call that is returning a value
2442 via invisible pointer. Do nothing special, since
2443 ordinary death handling can understand these insns. */
2447 call_pat
= XVECEXP (call_pat
, 0, i
);
2450 if (! insn_dead_p (pbi
, call_pat
, 1, REG_NOTES (call
)))
2453 while ((insn
= PREV_INSN (insn
)) != call
)
2455 if (! INSN_P (insn
))
2457 if (! insn_dead_p (pbi
, PATTERN (insn
), 0, REG_NOTES (insn
)))
2466 /* 1 if register REGNO was alive at a place where `setjmp' was called
2467 and was set more than once or is an argument.
2468 Such regs may be clobbered by `longjmp'. */
2471 regno_clobbered_at_setjmp (int regno
)
2473 if (n_basic_blocks
== 0)
2476 return ((REG_N_SETS (regno
) > 1
2477 || REGNO_REG_SET_P (ENTRY_BLOCK_PTR
->il
.rtl
->global_live_at_end
,
2479 && REGNO_REG_SET_P (regs_live_at_setjmp
, regno
));
2482 /* Add MEM to PBI->MEM_SET_LIST. MEM should be canonical. Respect the
2483 maximal list size; look for overlaps in mode and select the largest. */
2485 add_to_mem_set_list (struct propagate_block_info
*pbi
, rtx mem
)
2489 /* We don't know how large a BLKmode store is, so we must not
2490 take them into consideration. */
2491 if (GET_MODE (mem
) == BLKmode
)
2494 for (i
= pbi
->mem_set_list
; i
; i
= XEXP (i
, 1))
2496 rtx e
= XEXP (i
, 0);
2497 if (rtx_equal_p (XEXP (mem
, 0), XEXP (e
, 0)))
2499 if (GET_MODE_SIZE (GET_MODE (mem
)) > GET_MODE_SIZE (GET_MODE (e
)))
2502 /* If we must store a copy of the mem, we can just modify
2503 the mode of the stored copy. */
2504 if (pbi
->flags
& PROP_AUTOINC
)
2505 PUT_MODE (e
, GET_MODE (mem
));
2514 if (pbi
->mem_set_list_len
< MAX_MEM_SET_LIST_LEN
)
2517 /* Store a copy of mem, otherwise the address may be
2518 scrogged by find_auto_inc. */
2519 if (pbi
->flags
& PROP_AUTOINC
)
2520 mem
= shallow_copy_rtx (mem
);
2522 pbi
->mem_set_list
= alloc_EXPR_LIST (0, mem
, pbi
->mem_set_list
);
2523 pbi
->mem_set_list_len
++;
2527 /* INSN references memory, possibly using autoincrement addressing modes.
2528 Find any entries on the mem_set_list that need to be invalidated due
2529 to an address change. */
2532 invalidate_mems_from_autoinc (rtx
*px
, void *data
)
2535 struct propagate_block_info
*pbi
= data
;
2537 if (GET_RTX_CLASS (GET_CODE (x
)) == RTX_AUTOINC
)
2539 invalidate_mems_from_set (pbi
, XEXP (x
, 0));
2546 /* EXP is a REG or MEM. Remove any dependent entries from
2547 pbi->mem_set_list. */
2550 invalidate_mems_from_set (struct propagate_block_info
*pbi
, rtx exp
)
2552 rtx temp
= pbi
->mem_set_list
;
2553 rtx prev
= NULL_RTX
;
2558 next
= XEXP (temp
, 1);
2559 if ((REG_P (exp
) && reg_overlap_mentioned_p (exp
, XEXP (temp
, 0)))
2560 /* When we get an EXP that is a mem here, we want to check if EXP
2561 overlaps the *address* of any of the mems in the list (i.e. not
2562 whether the mems actually overlap; that's done elsewhere). */
2564 && reg_overlap_mentioned_p (exp
, XEXP (XEXP (temp
, 0), 0))))
2566 /* Splice this entry out of the list. */
2568 XEXP (prev
, 1) = next
;
2570 pbi
->mem_set_list
= next
;
2571 free_EXPR_LIST_node (temp
);
2572 pbi
->mem_set_list_len
--;
2580 /* Process the registers that are set within X. Their bits are set to
2581 1 in the regset DEAD, because they are dead prior to this insn.
2583 If INSN is nonzero, it is the insn being processed.
2585 FLAGS is the set of operations to perform. */
2588 mark_set_regs (struct propagate_block_info
*pbi
, rtx x
, rtx insn
)
2590 rtx cond
= NULL_RTX
;
2593 int flags
= pbi
->flags
;
2596 for (link
= REG_NOTES (insn
); link
; link
= XEXP (link
, 1))
2598 if (REG_NOTE_KIND (link
) == REG_INC
)
2599 mark_set_1 (pbi
, SET
, XEXP (link
, 0),
2600 (GET_CODE (x
) == COND_EXEC
2601 ? COND_EXEC_TEST (x
) : NULL_RTX
),
2605 switch (code
= GET_CODE (x
))
2608 if (GET_CODE (XEXP (x
, 1)) == ASM_OPERANDS
)
2609 flags
|= PROP_ASM_SCAN
;
2612 mark_set_1 (pbi
, code
, SET_DEST (x
), cond
, insn
, flags
);
2616 cond
= COND_EXEC_TEST (x
);
2617 x
= COND_EXEC_CODE (x
);
2624 /* We must scan forwards. If we have an asm, we need to set
2625 the PROP_ASM_SCAN flag before scanning the clobbers. */
2626 for (i
= 0; i
< XVECLEN (x
, 0); i
++)
2628 rtx sub
= XVECEXP (x
, 0, i
);
2629 switch (code
= GET_CODE (sub
))
2634 cond
= COND_EXEC_TEST (sub
);
2635 sub
= COND_EXEC_CODE (sub
);
2636 if (GET_CODE (sub
) == SET
)
2638 if (GET_CODE (sub
) == CLOBBER
)
2644 if (GET_CODE (XEXP (sub
, 1)) == ASM_OPERANDS
)
2645 flags
|= PROP_ASM_SCAN
;
2649 mark_set_1 (pbi
, code
, SET_DEST (sub
), cond
, insn
, flags
);
2653 flags
|= PROP_ASM_SCAN
;
2668 /* Process a single set, which appears in INSN. REG (which may not
2669 actually be a REG, it may also be a SUBREG, PARALLEL, etc.) is
2670 being set using the CODE (which may be SET, CLOBBER, or COND_EXEC).
2671 If the set is conditional (because it appear in a COND_EXEC), COND
2672 will be the condition. */
2675 mark_set_1 (struct propagate_block_info
*pbi
, enum rtx_code code
, rtx reg
, rtx cond
, rtx insn
, int flags
)
2677 int regno_first
= -1, regno_last
= -1;
2678 unsigned long not_dead
= 0;
2681 /* Modifying just one hardware register of a multi-reg value or just a
2682 byte field of a register does not mean the value from before this insn
2683 is now dead. Of course, if it was dead after it's unused now. */
2685 switch (GET_CODE (reg
))
2688 /* Some targets place small structures in registers for return values of
2689 functions. We have to detect this case specially here to get correct
2690 flow information. */
2691 for (i
= XVECLEN (reg
, 0) - 1; i
>= 0; i
--)
2692 if (XEXP (XVECEXP (reg
, 0, i
), 0) != 0)
2693 mark_set_1 (pbi
, code
, XEXP (XVECEXP (reg
, 0, i
), 0), cond
, insn
,
2698 /* SIGN_EXTRACT cannot be an lvalue. */
2702 case STRICT_LOW_PART
:
2703 /* ??? Assumes STRICT_LOW_PART not used on multi-word registers. */
2705 reg
= XEXP (reg
, 0);
2706 while (GET_CODE (reg
) == SUBREG
2707 || GET_CODE (reg
) == ZERO_EXTRACT
2708 || GET_CODE (reg
) == STRICT_LOW_PART
);
2711 not_dead
= (unsigned long) REGNO_REG_SET_P (pbi
->reg_live
, REGNO (reg
));
2715 regno_last
= regno_first
= REGNO (reg
);
2716 if (regno_first
< FIRST_PSEUDO_REGISTER
)
2717 regno_last
+= hard_regno_nregs
[regno_first
][GET_MODE (reg
)] - 1;
2721 if (REG_P (SUBREG_REG (reg
)))
2723 enum machine_mode outer_mode
= GET_MODE (reg
);
2724 enum machine_mode inner_mode
= GET_MODE (SUBREG_REG (reg
));
2726 /* Identify the range of registers affected. This is moderately
2727 tricky for hard registers. See alter_subreg. */
2729 regno_last
= regno_first
= REGNO (SUBREG_REG (reg
));
2730 if (regno_first
< FIRST_PSEUDO_REGISTER
)
2732 regno_first
+= subreg_regno_offset (regno_first
, inner_mode
,
2735 regno_last
= (regno_first
2736 + hard_regno_nregs
[regno_first
][outer_mode
] - 1);
2738 /* Since we've just adjusted the register number ranges, make
2739 sure REG matches. Otherwise some_was_live will be clear
2740 when it shouldn't have been, and we'll create incorrect
2741 REG_UNUSED notes. */
2742 reg
= gen_rtx_REG (outer_mode
, regno_first
);
2746 /* If the number of words in the subreg is less than the number
2747 of words in the full register, we have a well-defined partial
2748 set. Otherwise the high bits are undefined.
2750 This is only really applicable to pseudos, since we just took
2751 care of multi-word hard registers. */
2752 if (((GET_MODE_SIZE (outer_mode
)
2753 + UNITS_PER_WORD
- 1) / UNITS_PER_WORD
)
2754 < ((GET_MODE_SIZE (inner_mode
)
2755 + UNITS_PER_WORD
- 1) / UNITS_PER_WORD
))
2756 not_dead
= (unsigned long) REGNO_REG_SET_P (pbi
->reg_live
,
2759 reg
= SUBREG_REG (reg
);
2763 reg
= SUBREG_REG (reg
);
2770 /* If this set is a MEM, then it kills any aliased writes and any
2771 other MEMs which use it.
2772 If this set is a REG, then it kills any MEMs which use the reg. */
2773 if (optimize
&& (flags
& PROP_SCAN_DEAD_STORES
))
2775 if (REG_P (reg
) || MEM_P (reg
))
2776 invalidate_mems_from_set (pbi
, reg
);
2778 /* If the memory reference had embedded side effects (autoincrement
2779 address modes) then we may need to kill some entries on the
2781 if (insn
&& MEM_P (reg
))
2782 for_each_rtx (&PATTERN (insn
), invalidate_mems_from_autoinc
, pbi
);
2784 if (MEM_P (reg
) && ! side_effects_p (reg
)
2785 /* ??? With more effort we could track conditional memory life. */
2787 add_to_mem_set_list (pbi
, canon_rtx (reg
));
2791 && ! (regno_first
== FRAME_POINTER_REGNUM
2792 && (! reload_completed
|| frame_pointer_needed
))
2793 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
2794 && ! (regno_first
== HARD_FRAME_POINTER_REGNUM
2795 && (! reload_completed
|| frame_pointer_needed
))
2797 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
2798 && ! (regno_first
== ARG_POINTER_REGNUM
&& fixed_regs
[regno_first
])
2802 int some_was_live
= 0, some_was_dead
= 0;
2804 for (i
= regno_first
; i
<= regno_last
; ++i
)
2806 int needed_regno
= REGNO_REG_SET_P (pbi
->reg_live
, i
);
2809 /* Order of the set operation matters here since both
2810 sets may be the same. */
2811 CLEAR_REGNO_REG_SET (pbi
->cond_local_set
, i
);
2812 if (cond
!= NULL_RTX
2813 && ! REGNO_REG_SET_P (pbi
->local_set
, i
))
2814 SET_REGNO_REG_SET (pbi
->cond_local_set
, i
);
2816 SET_REGNO_REG_SET (pbi
->local_set
, i
);
2818 if (code
!= CLOBBER
)
2819 SET_REGNO_REG_SET (pbi
->new_set
, i
);
2821 some_was_live
|= needed_regno
;
2822 some_was_dead
|= ! needed_regno
;
2825 #ifdef HAVE_conditional_execution
2826 /* Consider conditional death in deciding that the register needs
2828 if (some_was_live
&& ! not_dead
2829 /* The stack pointer is never dead. Well, not strictly true,
2830 but it's very difficult to tell from here. Hopefully
2831 combine_stack_adjustments will fix up the most egregious
2833 && regno_first
!= STACK_POINTER_REGNUM
)
2835 for (i
= regno_first
; i
<= regno_last
; ++i
)
2836 if (! mark_regno_cond_dead (pbi
, i
, cond
))
2837 not_dead
|= ((unsigned long) 1) << (i
- regno_first
);
2841 /* Additional data to record if this is the final pass. */
2842 if (flags
& (PROP_LOG_LINKS
| PROP_REG_INFO
2843 | PROP_DEATH_NOTES
| PROP_AUTOINC
))
2846 int blocknum
= pbi
->bb
->index
;
2849 if (flags
& (PROP_LOG_LINKS
| PROP_AUTOINC
))
2851 y
= pbi
->reg_next_use
[regno_first
];
2853 /* The next use is no longer next, since a store intervenes. */
2854 for (i
= regno_first
; i
<= regno_last
; ++i
)
2855 pbi
->reg_next_use
[i
] = 0;
2858 if (flags
& PROP_REG_INFO
)
2860 for (i
= regno_first
; i
<= regno_last
; ++i
)
2862 /* Count (weighted) references, stores, etc. This counts a
2863 register twice if it is modified, but that is correct. */
2864 REG_N_SETS (i
) += 1;
2865 REG_N_REFS (i
) += 1;
2866 REG_FREQ (i
) += REG_FREQ_FROM_BB (pbi
->bb
);
2868 /* The insns where a reg is live are normally counted
2869 elsewhere, but we want the count to include the insn
2870 where the reg is set, and the normal counting mechanism
2871 would not count it. */
2872 REG_LIVE_LENGTH (i
) += 1;
2875 /* If this is a hard reg, record this function uses the reg. */
2876 if (regno_first
< FIRST_PSEUDO_REGISTER
)
2878 for (i
= regno_first
; i
<= regno_last
; i
++)
2879 regs_ever_live
[i
] = 1;
2880 if (flags
& PROP_ASM_SCAN
)
2881 for (i
= regno_first
; i
<= regno_last
; i
++)
2882 regs_asm_clobbered
[i
] = 1;
2886 /* Keep track of which basic blocks each reg appears in. */
2887 if (REG_BASIC_BLOCK (regno_first
) == REG_BLOCK_UNKNOWN
)
2888 REG_BASIC_BLOCK (regno_first
) = blocknum
;
2889 else if (REG_BASIC_BLOCK (regno_first
) != blocknum
)
2890 REG_BASIC_BLOCK (regno_first
) = REG_BLOCK_GLOBAL
;
2894 if (! some_was_dead
)
2896 if (flags
& PROP_LOG_LINKS
)
2898 /* Make a logical link from the next following insn
2899 that uses this register, back to this insn.
2900 The following insns have already been processed.
2902 We don't build a LOG_LINK for hard registers containing
2903 in ASM_OPERANDs. If these registers get replaced,
2904 we might wind up changing the semantics of the insn,
2905 even if reload can make what appear to be valid
2908 We don't build a LOG_LINK for global registers to
2909 or from a function call. We don't want to let
2910 combine think that it knows what is going on with
2911 global registers. */
2912 if (y
&& (BLOCK_NUM (y
) == blocknum
)
2913 && (regno_first
>= FIRST_PSEUDO_REGISTER
2914 || (asm_noperands (PATTERN (y
)) < 0
2915 && ! ((CALL_P (insn
)
2917 && global_regs
[regno_first
]))))
2918 LOG_LINKS (y
) = alloc_INSN_LIST (insn
, LOG_LINKS (y
));
2923 else if (! some_was_live
)
2925 if (flags
& PROP_REG_INFO
)
2926 REG_N_DEATHS (regno_first
) += 1;
2928 if (flags
& PROP_DEATH_NOTES
)
2930 /* Note that dead stores have already been deleted
2931 when possible. If we get here, we have found a
2932 dead store that cannot be eliminated (because the
2933 same insn does something useful). Indicate this
2934 by marking the reg being set as dying here. */
2936 = alloc_EXPR_LIST (REG_UNUSED
, reg
, REG_NOTES (insn
));
2941 if (flags
& PROP_DEATH_NOTES
)
2943 /* This is a case where we have a multi-word hard register
2944 and some, but not all, of the words of the register are
2945 needed in subsequent insns. Write REG_UNUSED notes
2946 for those parts that were not needed. This case should
2949 for (i
= regno_first
; i
<= regno_last
; ++i
)
2950 if (! REGNO_REG_SET_P (pbi
->reg_live
, i
))
2952 = alloc_EXPR_LIST (REG_UNUSED
,
2959 /* Mark the register as being dead. */
2961 /* The stack pointer is never dead. Well, not strictly true,
2962 but it's very difficult to tell from here. Hopefully
2963 combine_stack_adjustments will fix up the most egregious
2965 && regno_first
!= STACK_POINTER_REGNUM
)
2967 for (i
= regno_first
; i
<= regno_last
; ++i
)
2968 if (!(not_dead
& (((unsigned long) 1) << (i
- regno_first
))))
2970 if ((pbi
->flags
& PROP_REG_INFO
)
2971 && REGNO_REG_SET_P (pbi
->reg_live
, i
))
2973 REG_LIVE_LENGTH (i
) += pbi
->insn_num
- reg_deaths
[i
];
2976 CLEAR_REGNO_REG_SET (pbi
->reg_live
, i
);
2978 if (flags
& PROP_DEAD_INSN
)
2979 emit_insn_after (gen_rtx_CLOBBER (VOIDmode
, reg
), insn
);
2982 else if (REG_P (reg
))
2984 if (flags
& (PROP_LOG_LINKS
| PROP_AUTOINC
))
2985 pbi
->reg_next_use
[regno_first
] = 0;
2987 if ((flags
& PROP_REG_INFO
) != 0
2988 && (flags
& PROP_ASM_SCAN
) != 0
2989 && regno_first
< FIRST_PSEUDO_REGISTER
)
2991 for (i
= regno_first
; i
<= regno_last
; i
++)
2992 regs_asm_clobbered
[i
] = 1;
2996 /* If this is the last pass and this is a SCRATCH, show it will be dying
2997 here and count it. */
2998 else if (GET_CODE (reg
) == SCRATCH
)
3000 if (flags
& PROP_DEATH_NOTES
)
3002 = alloc_EXPR_LIST (REG_UNUSED
, reg
, REG_NOTES (insn
));
3006 #ifdef HAVE_conditional_execution
3007 /* Mark REGNO conditionally dead.
3008 Return true if the register is now unconditionally dead. */
3011 mark_regno_cond_dead (struct propagate_block_info
*pbi
, int regno
, rtx cond
)
3013 /* If this is a store to a predicate register, the value of the
3014 predicate is changing, we don't know that the predicate as seen
3015 before is the same as that seen after. Flush all dependent
3016 conditions from reg_cond_dead. This will make all such
3017 conditionally live registers unconditionally live. */
3018 if (REGNO_REG_SET_P (pbi
->reg_cond_reg
, regno
))
3019 flush_reg_cond_reg (pbi
, regno
);
3021 /* If this is an unconditional store, remove any conditional
3022 life that may have existed. */
3023 if (cond
== NULL_RTX
)
3024 splay_tree_remove (pbi
->reg_cond_dead
, regno
);
3027 splay_tree_node node
;
3028 struct reg_cond_life_info
*rcli
;
3031 /* Otherwise this is a conditional set. Record that fact.
3032 It may have been conditionally used, or there may be a
3033 subsequent set with a complementary condition. */
3035 node
= splay_tree_lookup (pbi
->reg_cond_dead
, regno
);
3038 /* The register was unconditionally live previously.
3039 Record the current condition as the condition under
3040 which it is dead. */
3041 rcli
= xmalloc (sizeof (*rcli
));
3042 rcli
->condition
= cond
;
3043 rcli
->stores
= cond
;
3044 rcli
->orig_condition
= const0_rtx
;
3045 splay_tree_insert (pbi
->reg_cond_dead
, regno
,
3046 (splay_tree_value
) rcli
);
3048 SET_REGNO_REG_SET (pbi
->reg_cond_reg
, REGNO (XEXP (cond
, 0)));
3050 /* Not unconditionally dead. */
3055 /* The register was conditionally live previously.
3056 Add the new condition to the old. */
3057 rcli
= (struct reg_cond_life_info
*) node
->value
;
3058 ncond
= rcli
->condition
;
3059 ncond
= ior_reg_cond (ncond
, cond
, 1);
3060 if (rcli
->stores
== const0_rtx
)
3061 rcli
->stores
= cond
;
3062 else if (rcli
->stores
!= const1_rtx
)
3063 rcli
->stores
= ior_reg_cond (rcli
->stores
, cond
, 1);
3065 /* If the register is now unconditionally dead, remove the entry
3066 in the splay_tree. A register is unconditionally dead if the
3067 dead condition ncond is true. A register is also unconditionally
3068 dead if the sum of all conditional stores is an unconditional
3069 store (stores is true), and the dead condition is identically the
3070 same as the original dead condition initialized at the end of
3071 the block. This is a pointer compare, not an rtx_equal_p
3073 if (ncond
== const1_rtx
3074 || (ncond
== rcli
->orig_condition
&& rcli
->stores
== const1_rtx
))
3075 splay_tree_remove (pbi
->reg_cond_dead
, regno
);
3078 rcli
->condition
= ncond
;
3080 SET_REGNO_REG_SET (pbi
->reg_cond_reg
, REGNO (XEXP (cond
, 0)));
3082 /* Not unconditionally dead. */
3091 /* Called from splay_tree_delete for pbi->reg_cond_life. */
3094 free_reg_cond_life_info (splay_tree_value value
)
3096 struct reg_cond_life_info
*rcli
= (struct reg_cond_life_info
*) value
;
3100 /* Helper function for flush_reg_cond_reg. */
3103 flush_reg_cond_reg_1 (splay_tree_node node
, void *data
)
3105 struct reg_cond_life_info
*rcli
;
3106 int *xdata
= (int *) data
;
3107 unsigned int regno
= xdata
[0];
3109 /* Don't need to search if last flushed value was farther on in
3110 the in-order traversal. */
3111 if (xdata
[1] >= (int) node
->key
)
3114 /* Splice out portions of the expression that refer to regno. */
3115 rcli
= (struct reg_cond_life_info
*) node
->value
;
3116 rcli
->condition
= elim_reg_cond (rcli
->condition
, regno
);
3117 if (rcli
->stores
!= const0_rtx
&& rcli
->stores
!= const1_rtx
)
3118 rcli
->stores
= elim_reg_cond (rcli
->stores
, regno
);
3120 /* If the entire condition is now false, signal the node to be removed. */
3121 if (rcli
->condition
== const0_rtx
)
3123 xdata
[1] = node
->key
;
3127 gcc_assert (rcli
->condition
!= const1_rtx
);
3132 /* Flush all (sub) expressions referring to REGNO from REG_COND_LIVE. */
3135 flush_reg_cond_reg (struct propagate_block_info
*pbi
, int regno
)
3141 while (splay_tree_foreach (pbi
->reg_cond_dead
,
3142 flush_reg_cond_reg_1
, pair
) == -1)
3143 splay_tree_remove (pbi
->reg_cond_dead
, pair
[1]);
3145 CLEAR_REGNO_REG_SET (pbi
->reg_cond_reg
, regno
);
3148 /* Logical arithmetic on predicate conditions. IOR, NOT and AND.
3149 For ior/and, the ADD flag determines whether we want to add the new
3150 condition X to the old one unconditionally. If it is zero, we will
3151 only return a new expression if X allows us to simplify part of
3152 OLD, otherwise we return NULL to the caller.
3153 If ADD is nonzero, we will return a new condition in all cases. The
3154 toplevel caller of one of these functions should always pass 1 for
3158 ior_reg_cond (rtx old
, rtx x
, int add
)
3162 if (COMPARISON_P (old
))
3164 if (COMPARISON_P (x
)
3165 && REVERSE_CONDEXEC_PREDICATES_P (x
, old
)
3166 && REGNO (XEXP (x
, 0)) == REGNO (XEXP (old
, 0)))
3168 if (GET_CODE (x
) == GET_CODE (old
)
3169 && REGNO (XEXP (x
, 0)) == REGNO (XEXP (old
, 0)))
3173 return gen_rtx_IOR (0, old
, x
);
3176 switch (GET_CODE (old
))
3179 op0
= ior_reg_cond (XEXP (old
, 0), x
, 0);
3180 op1
= ior_reg_cond (XEXP (old
, 1), x
, 0);
3181 if (op0
!= NULL
|| op1
!= NULL
)
3183 if (op0
== const0_rtx
)
3184 return op1
? op1
: gen_rtx_IOR (0, XEXP (old
, 1), x
);
3185 if (op1
== const0_rtx
)
3186 return op0
? op0
: gen_rtx_IOR (0, XEXP (old
, 0), x
);
3187 if (op0
== const1_rtx
|| op1
== const1_rtx
)
3190 op0
= gen_rtx_IOR (0, XEXP (old
, 0), x
);
3191 else if (rtx_equal_p (x
, op0
))
3192 /* (x | A) | x ~ (x | A). */
3195 op1
= gen_rtx_IOR (0, XEXP (old
, 1), x
);
3196 else if (rtx_equal_p (x
, op1
))
3197 /* (A | x) | x ~ (A | x). */
3199 return gen_rtx_IOR (0, op0
, op1
);
3203 return gen_rtx_IOR (0, old
, x
);
3206 op0
= ior_reg_cond (XEXP (old
, 0), x
, 0);
3207 op1
= ior_reg_cond (XEXP (old
, 1), x
, 0);
3208 if (op0
!= NULL
|| op1
!= NULL
)
3210 if (op0
== const1_rtx
)
3211 return op1
? op1
: gen_rtx_IOR (0, XEXP (old
, 1), x
);
3212 if (op1
== const1_rtx
)
3213 return op0
? op0
: gen_rtx_IOR (0, XEXP (old
, 0), x
);
3214 if (op0
== const0_rtx
|| op1
== const0_rtx
)
3217 op0
= gen_rtx_IOR (0, XEXP (old
, 0), x
);
3218 else if (rtx_equal_p (x
, op0
))
3219 /* (x & A) | x ~ x. */
3222 op1
= gen_rtx_IOR (0, XEXP (old
, 1), x
);
3223 else if (rtx_equal_p (x
, op1
))
3224 /* (A & x) | x ~ x. */
3226 return gen_rtx_AND (0, op0
, op1
);
3230 return gen_rtx_IOR (0, old
, x
);
3233 op0
= and_reg_cond (XEXP (old
, 0), not_reg_cond (x
), 0);
3235 return not_reg_cond (op0
);
3238 return gen_rtx_IOR (0, old
, x
);
3246 not_reg_cond (rtx x
)
3248 if (x
== const0_rtx
)
3250 else if (x
== const1_rtx
)
3252 if (GET_CODE (x
) == NOT
)
3254 if (COMPARISON_P (x
)
3255 && REG_P (XEXP (x
, 0)))
3257 gcc_assert (XEXP (x
, 1) == const0_rtx
);
3259 return gen_rtx_fmt_ee (reversed_comparison_code (x
, NULL
),
3260 VOIDmode
, XEXP (x
, 0), const0_rtx
);
3262 return gen_rtx_NOT (0, x
);
3266 and_reg_cond (rtx old
, rtx x
, int add
)
3270 if (COMPARISON_P (old
))
3272 if (COMPARISON_P (x
)
3273 && GET_CODE (x
) == reversed_comparison_code (old
, NULL
)
3274 && REGNO (XEXP (x
, 0)) == REGNO (XEXP (old
, 0)))
3276 if (GET_CODE (x
) == GET_CODE (old
)
3277 && REGNO (XEXP (x
, 0)) == REGNO (XEXP (old
, 0)))
3281 return gen_rtx_AND (0, old
, x
);
3284 switch (GET_CODE (old
))
3287 op0
= and_reg_cond (XEXP (old
, 0), x
, 0);
3288 op1
= and_reg_cond (XEXP (old
, 1), x
, 0);
3289 if (op0
!= NULL
|| op1
!= NULL
)
3291 if (op0
== const0_rtx
)
3292 return op1
? op1
: gen_rtx_AND (0, XEXP (old
, 1), x
);
3293 if (op1
== const0_rtx
)
3294 return op0
? op0
: gen_rtx_AND (0, XEXP (old
, 0), x
);
3295 if (op0
== const1_rtx
|| op1
== const1_rtx
)
3298 op0
= gen_rtx_AND (0, XEXP (old
, 0), x
);
3299 else if (rtx_equal_p (x
, op0
))
3300 /* (x | A) & x ~ x. */
3303 op1
= gen_rtx_AND (0, XEXP (old
, 1), x
);
3304 else if (rtx_equal_p (x
, op1
))
3305 /* (A | x) & x ~ x. */
3307 return gen_rtx_IOR (0, op0
, op1
);
3311 return gen_rtx_AND (0, old
, x
);
3314 op0
= and_reg_cond (XEXP (old
, 0), x
, 0);
3315 op1
= and_reg_cond (XEXP (old
, 1), x
, 0);
3316 if (op0
!= NULL
|| op1
!= NULL
)
3318 if (op0
== const1_rtx
)
3319 return op1
? op1
: gen_rtx_AND (0, XEXP (old
, 1), x
);
3320 if (op1
== const1_rtx
)
3321 return op0
? op0
: gen_rtx_AND (0, XEXP (old
, 0), x
);
3322 if (op0
== const0_rtx
|| op1
== const0_rtx
)
3325 op0
= gen_rtx_AND (0, XEXP (old
, 0), x
);
3326 else if (rtx_equal_p (x
, op0
))
3327 /* (x & A) & x ~ (x & A). */
3330 op1
= gen_rtx_AND (0, XEXP (old
, 1), x
);
3331 else if (rtx_equal_p (x
, op1
))
3332 /* (A & x) & x ~ (A & x). */
3334 return gen_rtx_AND (0, op0
, op1
);
3338 return gen_rtx_AND (0, old
, x
);
3341 op0
= ior_reg_cond (XEXP (old
, 0), not_reg_cond (x
), 0);
3343 return not_reg_cond (op0
);
3346 return gen_rtx_AND (0, old
, x
);
3353 /* Given a condition X, remove references to reg REGNO and return the
3354 new condition. The removal will be done so that all conditions
3355 involving REGNO are considered to evaluate to false. This function
3356 is used when the value of REGNO changes. */
3359 elim_reg_cond (rtx x
, unsigned int regno
)
3363 if (COMPARISON_P (x
))
3365 if (REGNO (XEXP (x
, 0)) == regno
)
3370 switch (GET_CODE (x
))
3373 op0
= elim_reg_cond (XEXP (x
, 0), regno
);
3374 op1
= elim_reg_cond (XEXP (x
, 1), regno
);
3375 if (op0
== const0_rtx
|| op1
== const0_rtx
)
3377 if (op0
== const1_rtx
)
3379 if (op1
== const1_rtx
)
3381 if (op0
== XEXP (x
, 0) && op1
== XEXP (x
, 1))
3383 return gen_rtx_AND (0, op0
, op1
);
3386 op0
= elim_reg_cond (XEXP (x
, 0), regno
);
3387 op1
= elim_reg_cond (XEXP (x
, 1), regno
);
3388 if (op0
== const1_rtx
|| op1
== const1_rtx
)
3390 if (op0
== const0_rtx
)
3392 if (op1
== const0_rtx
)
3394 if (op0
== XEXP (x
, 0) && op1
== XEXP (x
, 1))
3396 return gen_rtx_IOR (0, op0
, op1
);
3399 op0
= elim_reg_cond (XEXP (x
, 0), regno
);
3400 if (op0
== const0_rtx
)
3402 if (op0
== const1_rtx
)
3404 if (op0
!= XEXP (x
, 0))
3405 return not_reg_cond (op0
);
3412 #endif /* HAVE_conditional_execution */
3416 /* Try to substitute the auto-inc expression INC as the address inside
3417 MEM which occurs in INSN. Currently, the address of MEM is an expression
3418 involving INCR_REG, and INCR is the next use of INCR_REG; it is an insn
3419 that has a single set whose source is a PLUS of INCR_REG and something
3423 attempt_auto_inc (struct propagate_block_info
*pbi
, rtx inc
, rtx insn
,
3424 rtx mem
, rtx incr
, rtx incr_reg
)
3426 int regno
= REGNO (incr_reg
);
3427 rtx set
= single_set (incr
);
3428 rtx q
= SET_DEST (set
);
3429 rtx y
= SET_SRC (set
);
3430 int opnum
= XEXP (y
, 0) == incr_reg
? 0 : 1;
3433 /* Make sure this reg appears only once in this insn. */
3434 if (count_occurrences (PATTERN (insn
), incr_reg
, 1) != 1)
3437 if (dead_or_set_p (incr
, incr_reg
)
3438 /* Mustn't autoinc an eliminable register. */
3439 && (regno
>= FIRST_PSEUDO_REGISTER
3440 || ! TEST_HARD_REG_BIT (elim_reg_set
, regno
)))
3442 /* This is the simple case. Try to make the auto-inc. If
3443 we can't, we are done. Otherwise, we will do any
3444 needed updates below. */
3445 if (! validate_change (insn
, &XEXP (mem
, 0), inc
, 0))
3449 /* PREV_INSN used here to check the semi-open interval
3451 && ! reg_used_between_p (q
, PREV_INSN (insn
), incr
)
3452 /* We must also check for sets of q as q may be
3453 a call clobbered hard register and there may
3454 be a call between PREV_INSN (insn) and incr. */
3455 && ! reg_set_between_p (q
, PREV_INSN (insn
), incr
))
3457 /* We have *p followed sometime later by q = p+size.
3458 Both p and q must be live afterward,
3459 and q is not used between INSN and its assignment.
3460 Change it to q = p, ...*q..., q = q+size.
3461 Then fall into the usual case. */
3465 emit_move_insn (q
, incr_reg
);
3466 insns
= get_insns ();
3469 /* If we can't make the auto-inc, or can't make the
3470 replacement into Y, exit. There's no point in making
3471 the change below if we can't do the auto-inc and doing
3472 so is not correct in the pre-inc case. */
3475 validate_change (insn
, &XEXP (mem
, 0), inc
, 1);
3476 validate_change (incr
, &XEXP (y
, opnum
), q
, 1);
3477 if (! apply_change_group ())
3480 /* We now know we'll be doing this change, so emit the
3481 new insn(s) and do the updates. */
3482 emit_insn_before (insns
, insn
);
3484 if (BB_HEAD (pbi
->bb
) == insn
)
3485 BB_HEAD (pbi
->bb
) = insns
;
3487 /* INCR will become a NOTE and INSN won't contain a
3488 use of INCR_REG. If a use of INCR_REG was just placed in
3489 the insn before INSN, make that the next use.
3490 Otherwise, invalidate it. */
3491 if (NONJUMP_INSN_P (PREV_INSN (insn
))
3492 && GET_CODE (PATTERN (PREV_INSN (insn
))) == SET
3493 && SET_SRC (PATTERN (PREV_INSN (insn
))) == incr_reg
)
3494 pbi
->reg_next_use
[regno
] = PREV_INSN (insn
);
3496 pbi
->reg_next_use
[regno
] = 0;
3501 if ((pbi
->flags
& PROP_REG_INFO
)
3502 && !REGNO_REG_SET_P (pbi
->reg_live
, regno
))
3503 reg_deaths
[regno
] = pbi
->insn_num
;
3505 /* REGNO is now used in INCR which is below INSN, but
3506 it previously wasn't live here. If we don't mark
3507 it as live, we'll put a REG_DEAD note for it
3508 on this insn, which is incorrect. */
3509 SET_REGNO_REG_SET (pbi
->reg_live
, regno
);
3511 /* If there are any calls between INSN and INCR, show
3512 that REGNO now crosses them. */
3513 for (temp
= insn
; temp
!= incr
; temp
= NEXT_INSN (temp
))
3515 REG_N_CALLS_CROSSED (regno
)++;
3517 /* Invalidate alias info for Q since we just changed its value. */
3518 clear_reg_alias_info (q
);
3523 /* If we haven't returned, it means we were able to make the
3524 auto-inc, so update the status. First, record that this insn
3525 has an implicit side effect. */
3527 REG_NOTES (insn
) = alloc_EXPR_LIST (REG_INC
, incr_reg
, REG_NOTES (insn
));
3529 /* Modify the old increment-insn to simply copy
3530 the already-incremented value of our register. */
3531 changed
= validate_change (incr
, &SET_SRC (set
), incr_reg
, 0);
3532 gcc_assert (changed
);
3534 /* If that makes it a no-op (copying the register into itself) delete
3535 it so it won't appear to be a "use" and a "set" of this
3537 if (REGNO (SET_DEST (set
)) == REGNO (incr_reg
))
3539 /* If the original source was dead, it's dead now. */
3542 while ((note
= find_reg_note (incr
, REG_DEAD
, NULL_RTX
)) != NULL_RTX
)
3544 remove_note (incr
, note
);
3545 if (XEXP (note
, 0) != incr_reg
)
3547 unsigned int regno
= REGNO (XEXP (note
, 0));
3549 if ((pbi
->flags
& PROP_REG_INFO
)
3550 && REGNO_REG_SET_P (pbi
->reg_live
, regno
))
3552 REG_LIVE_LENGTH (regno
) += pbi
->insn_num
- reg_deaths
[regno
];
3553 reg_deaths
[regno
] = 0;
3555 CLEAR_REGNO_REG_SET (pbi
->reg_live
, REGNO (XEXP (note
, 0)));
3559 SET_INSN_DELETED (incr
);
3562 if (regno
>= FIRST_PSEUDO_REGISTER
)
3564 /* Count an extra reference to the reg. When a reg is
3565 incremented, spilling it is worse, so we want to make
3566 that less likely. */
3567 REG_FREQ (regno
) += REG_FREQ_FROM_BB (pbi
->bb
);
3569 /* Count the increment as a setting of the register,
3570 even though it isn't a SET in rtl. */
3571 REG_N_SETS (regno
)++;
3575 /* X is a MEM found in INSN. See if we can convert it into an auto-increment
3579 find_auto_inc (struct propagate_block_info
*pbi
, rtx x
, rtx insn
)
3581 rtx addr
= XEXP (x
, 0);
3582 HOST_WIDE_INT offset
= 0;
3583 rtx set
, y
, incr
, inc_val
;
3585 int size
= GET_MODE_SIZE (GET_MODE (x
));
3590 /* Here we detect use of an index register which might be good for
3591 postincrement, postdecrement, preincrement, or predecrement. */
3593 if (GET_CODE (addr
) == PLUS
&& GET_CODE (XEXP (addr
, 1)) == CONST_INT
)
3594 offset
= INTVAL (XEXP (addr
, 1)), addr
= XEXP (addr
, 0);
3599 regno
= REGNO (addr
);
3601 /* Is the next use an increment that might make auto-increment? */
3602 incr
= pbi
->reg_next_use
[regno
];
3603 if (incr
== 0 || BLOCK_NUM (incr
) != BLOCK_NUM (insn
))
3605 set
= single_set (incr
);
3606 if (set
== 0 || GET_CODE (set
) != SET
)
3610 if (GET_CODE (y
) != PLUS
)
3613 if (REG_P (XEXP (y
, 0)) && REGNO (XEXP (y
, 0)) == REGNO (addr
))
3614 inc_val
= XEXP (y
, 1);
3615 else if (REG_P (XEXP (y
, 1)) && REGNO (XEXP (y
, 1)) == REGNO (addr
))
3616 inc_val
= XEXP (y
, 0);
3620 if (GET_CODE (inc_val
) == CONST_INT
)
3622 if (HAVE_POST_INCREMENT
3623 && (INTVAL (inc_val
) == size
&& offset
== 0))
3624 attempt_auto_inc (pbi
, gen_rtx_POST_INC (Pmode
, addr
), insn
, x
,
3626 else if (HAVE_POST_DECREMENT
3627 && (INTVAL (inc_val
) == -size
&& offset
== 0))
3628 attempt_auto_inc (pbi
, gen_rtx_POST_DEC (Pmode
, addr
), insn
, x
,
3630 else if (HAVE_PRE_INCREMENT
3631 && (INTVAL (inc_val
) == size
&& offset
== size
))
3632 attempt_auto_inc (pbi
, gen_rtx_PRE_INC (Pmode
, addr
), insn
, x
,
3634 else if (HAVE_PRE_DECREMENT
3635 && (INTVAL (inc_val
) == -size
&& offset
== -size
))
3636 attempt_auto_inc (pbi
, gen_rtx_PRE_DEC (Pmode
, addr
), insn
, x
,
3638 else if (HAVE_POST_MODIFY_DISP
&& offset
== 0)
3639 attempt_auto_inc (pbi
, gen_rtx_POST_MODIFY (Pmode
, addr
,
3640 gen_rtx_PLUS (Pmode
,
3643 insn
, x
, incr
, addr
);
3644 else if (HAVE_PRE_MODIFY_DISP
&& offset
== INTVAL (inc_val
))
3645 attempt_auto_inc (pbi
, gen_rtx_PRE_MODIFY (Pmode
, addr
,
3646 gen_rtx_PLUS (Pmode
,
3649 insn
, x
, incr
, addr
);
3651 else if (REG_P (inc_val
)
3652 && ! reg_set_between_p (inc_val
, PREV_INSN (insn
),
3656 if (HAVE_POST_MODIFY_REG
&& offset
== 0)
3657 attempt_auto_inc (pbi
, gen_rtx_POST_MODIFY (Pmode
, addr
,
3658 gen_rtx_PLUS (Pmode
,
3661 insn
, x
, incr
, addr
);
3665 #endif /* AUTO_INC_DEC */
3668 mark_used_reg (struct propagate_block_info
*pbi
, rtx reg
,
3669 rtx cond ATTRIBUTE_UNUSED
, rtx insn
)
3671 unsigned int regno_first
, regno_last
, i
;
3672 int some_was_live
, some_was_dead
, some_not_set
;
3674 regno_last
= regno_first
= REGNO (reg
);
3675 if (regno_first
< FIRST_PSEUDO_REGISTER
)
3676 regno_last
+= hard_regno_nregs
[regno_first
][GET_MODE (reg
)] - 1;
3678 /* Find out if any of this register is live after this instruction. */
3679 some_was_live
= some_was_dead
= 0;
3680 for (i
= regno_first
; i
<= regno_last
; ++i
)
3682 int needed_regno
= REGNO_REG_SET_P (pbi
->reg_live
, i
);
3683 some_was_live
|= needed_regno
;
3684 some_was_dead
|= ! needed_regno
;
3687 /* Find out if any of the register was set this insn. */
3689 for (i
= regno_first
; i
<= regno_last
; ++i
)
3690 some_not_set
|= ! REGNO_REG_SET_P (pbi
->new_set
, i
);
3692 if (pbi
->flags
& (PROP_LOG_LINKS
| PROP_AUTOINC
))
3694 /* Record where each reg is used, so when the reg is set we know
3695 the next insn that uses it. */
3696 pbi
->reg_next_use
[regno_first
] = insn
;
3699 if (pbi
->flags
& PROP_REG_INFO
)
3701 if (regno_first
< FIRST_PSEUDO_REGISTER
)
3703 /* If this is a register we are going to try to eliminate,
3704 don't mark it live here. If we are successful in
3705 eliminating it, it need not be live unless it is used for
3706 pseudos, in which case it will have been set live when it
3707 was allocated to the pseudos. If the register will not
3708 be eliminated, reload will set it live at that point.
3710 Otherwise, record that this function uses this register. */
3711 /* ??? The PPC backend tries to "eliminate" on the pic
3712 register to itself. This should be fixed. In the mean
3713 time, hack around it. */
3715 if (! (TEST_HARD_REG_BIT (elim_reg_set
, regno_first
)
3716 && (regno_first
== FRAME_POINTER_REGNUM
3717 || regno_first
== ARG_POINTER_REGNUM
)))
3718 for (i
= regno_first
; i
<= regno_last
; ++i
)
3719 regs_ever_live
[i
] = 1;
3723 /* Keep track of which basic block each reg appears in. */
3725 int blocknum
= pbi
->bb
->index
;
3726 if (REG_BASIC_BLOCK (regno_first
) == REG_BLOCK_UNKNOWN
)
3727 REG_BASIC_BLOCK (regno_first
) = blocknum
;
3728 else if (REG_BASIC_BLOCK (regno_first
) != blocknum
)
3729 REG_BASIC_BLOCK (regno_first
) = REG_BLOCK_GLOBAL
;
3731 /* Count (weighted) number of uses of each reg. */
3732 REG_FREQ (regno_first
) += REG_FREQ_FROM_BB (pbi
->bb
);
3733 REG_N_REFS (regno_first
)++;
3735 for (i
= regno_first
; i
<= regno_last
; ++i
)
3736 if (! REGNO_REG_SET_P (pbi
->reg_live
, i
))
3738 gcc_assert (!reg_deaths
[i
]);
3739 reg_deaths
[i
] = pbi
->insn_num
;
3743 /* Record and count the insns in which a reg dies. If it is used in
3744 this insn and was dead below the insn then it dies in this insn.
3745 If it was set in this insn, we do not make a REG_DEAD note;
3746 likewise if we already made such a note. */
3747 if ((pbi
->flags
& (PROP_DEATH_NOTES
| PROP_REG_INFO
))
3751 /* Check for the case where the register dying partially
3752 overlaps the register set by this insn. */
3753 if (regno_first
!= regno_last
)
3754 for (i
= regno_first
; i
<= regno_last
; ++i
)
3755 some_was_live
|= REGNO_REG_SET_P (pbi
->new_set
, i
);
3757 /* If none of the words in X is needed, make a REG_DEAD note.
3758 Otherwise, we must make partial REG_DEAD notes. */
3759 if (! some_was_live
)
3761 if ((pbi
->flags
& PROP_DEATH_NOTES
)
3762 && ! find_regno_note (insn
, REG_DEAD
, regno_first
))
3764 = alloc_EXPR_LIST (REG_DEAD
, reg
, REG_NOTES (insn
));
3766 if (pbi
->flags
& PROP_REG_INFO
)
3767 REG_N_DEATHS (regno_first
)++;
3771 /* Don't make a REG_DEAD note for a part of a register
3772 that is set in the insn. */
3773 for (i
= regno_first
; i
<= regno_last
; ++i
)
3774 if (! REGNO_REG_SET_P (pbi
->reg_live
, i
)
3775 && ! dead_or_set_regno_p (insn
, i
))
3777 = alloc_EXPR_LIST (REG_DEAD
,
3783 /* Mark the register as being live. */
3784 for (i
= regno_first
; i
<= regno_last
; ++i
)
3786 #ifdef HAVE_conditional_execution
3787 int this_was_live
= REGNO_REG_SET_P (pbi
->reg_live
, i
);
3790 SET_REGNO_REG_SET (pbi
->reg_live
, i
);
3792 #ifdef HAVE_conditional_execution
3793 /* If this is a conditional use, record that fact. If it is later
3794 conditionally set, we'll know to kill the register. */
3795 if (cond
!= NULL_RTX
)
3797 splay_tree_node node
;
3798 struct reg_cond_life_info
*rcli
;
3803 node
= splay_tree_lookup (pbi
->reg_cond_dead
, i
);
3806 /* The register was unconditionally live previously.
3807 No need to do anything. */
3811 /* The register was conditionally live previously.
3812 Subtract the new life cond from the old death cond. */
3813 rcli
= (struct reg_cond_life_info
*) node
->value
;
3814 ncond
= rcli
->condition
;
3815 ncond
= and_reg_cond (ncond
, not_reg_cond (cond
), 1);
3817 /* If the register is now unconditionally live,
3818 remove the entry in the splay_tree. */
3819 if (ncond
== const0_rtx
)
3820 splay_tree_remove (pbi
->reg_cond_dead
, i
);
3823 rcli
->condition
= ncond
;
3824 SET_REGNO_REG_SET (pbi
->reg_cond_reg
,
3825 REGNO (XEXP (cond
, 0)));
3831 /* The register was not previously live at all. Record
3832 the condition under which it is still dead. */
3833 rcli
= xmalloc (sizeof (*rcli
));
3834 rcli
->condition
= not_reg_cond (cond
);
3835 rcli
->stores
= const0_rtx
;
3836 rcli
->orig_condition
= const0_rtx
;
3837 splay_tree_insert (pbi
->reg_cond_dead
, i
,
3838 (splay_tree_value
) rcli
);
3840 SET_REGNO_REG_SET (pbi
->reg_cond_reg
, REGNO (XEXP (cond
, 0)));
3843 else if (this_was_live
)
3845 /* The register may have been conditionally live previously, but
3846 is now unconditionally live. Remove it from the conditionally
3847 dead list, so that a conditional set won't cause us to think
3849 splay_tree_remove (pbi
->reg_cond_dead
, i
);
3855 /* Scan expression X and store a 1-bit in NEW_LIVE for each reg it uses.
3856 This is done assuming the registers needed from X are those that
3857 have 1-bits in PBI->REG_LIVE.
3859 INSN is the containing instruction. If INSN is dead, this function
3863 mark_used_regs (struct propagate_block_info
*pbi
, rtx x
, rtx cond
, rtx insn
)
3867 int flags
= pbi
->flags
;
3872 code
= GET_CODE (x
);
3893 /* If we are clobbering a MEM, mark any registers inside the address
3895 if (MEM_P (XEXP (x
, 0)))
3896 mark_used_regs (pbi
, XEXP (XEXP (x
, 0), 0), cond
, insn
);
3900 /* Don't bother watching stores to mems if this is not the
3901 final pass. We'll not be deleting dead stores this round. */
3902 if (optimize
&& (flags
& PROP_SCAN_DEAD_STORES
))
3904 /* Invalidate the data for the last MEM stored, but only if MEM is
3905 something that can be stored into. */
3906 if (GET_CODE (XEXP (x
, 0)) == SYMBOL_REF
3907 && CONSTANT_POOL_ADDRESS_P (XEXP (x
, 0)))
3908 /* Needn't clear the memory set list. */
3912 rtx temp
= pbi
->mem_set_list
;
3913 rtx prev
= NULL_RTX
;
3918 next
= XEXP (temp
, 1);
3919 if (anti_dependence (XEXP (temp
, 0), x
))
3921 /* Splice temp out of the list. */
3923 XEXP (prev
, 1) = next
;
3925 pbi
->mem_set_list
= next
;
3926 free_EXPR_LIST_node (temp
);
3927 pbi
->mem_set_list_len
--;
3935 /* If the memory reference had embedded side effects (autoincrement
3936 address modes. Then we may need to kill some entries on the
3939 for_each_rtx (&PATTERN (insn
), invalidate_mems_from_autoinc
, pbi
);
3943 if (flags
& PROP_AUTOINC
)
3944 find_auto_inc (pbi
, x
, insn
);
3949 #ifdef CANNOT_CHANGE_MODE_CLASS
3950 if (flags
& PROP_REG_INFO
)
3951 record_subregs_of_mode (x
);
3954 /* While we're here, optimize this case. */
3961 /* See a register other than being set => mark it as needed. */
3962 mark_used_reg (pbi
, x
, cond
, insn
);
3967 rtx testreg
= SET_DEST (x
);
3970 /* If storing into MEM, don't show it as being used. But do
3971 show the address as being used. */
3972 if (MEM_P (testreg
))
3975 if (flags
& PROP_AUTOINC
)
3976 find_auto_inc (pbi
, testreg
, insn
);
3978 mark_used_regs (pbi
, XEXP (testreg
, 0), cond
, insn
);
3979 mark_used_regs (pbi
, SET_SRC (x
), cond
, insn
);
3983 /* Storing in STRICT_LOW_PART is like storing in a reg
3984 in that this SET might be dead, so ignore it in TESTREG.
3985 but in some other ways it is like using the reg.
3987 Storing in a SUBREG or a bit field is like storing the entire
3988 register in that if the register's value is not used
3989 then this SET is not needed. */
3990 while (GET_CODE (testreg
) == STRICT_LOW_PART
3991 || GET_CODE (testreg
) == ZERO_EXTRACT
3992 || GET_CODE (testreg
) == SUBREG
)
3994 #ifdef CANNOT_CHANGE_MODE_CLASS
3995 if ((flags
& PROP_REG_INFO
) && GET_CODE (testreg
) == SUBREG
)
3996 record_subregs_of_mode (testreg
);
3999 /* Modifying a single register in an alternate mode
4000 does not use any of the old value. But these other
4001 ways of storing in a register do use the old value. */
4002 if (GET_CODE (testreg
) == SUBREG
4003 && !((REG_BYTES (SUBREG_REG (testreg
))
4004 + UNITS_PER_WORD
- 1) / UNITS_PER_WORD
4005 > (REG_BYTES (testreg
)
4006 + UNITS_PER_WORD
- 1) / UNITS_PER_WORD
))
4011 testreg
= XEXP (testreg
, 0);
4014 /* If this is a store into a register or group of registers,
4015 recursively scan the value being stored. */
4017 if ((GET_CODE (testreg
) == PARALLEL
4018 && GET_MODE (testreg
) == BLKmode
)
4020 && (regno
= REGNO (testreg
),
4021 ! (regno
== FRAME_POINTER_REGNUM
4022 && (! reload_completed
|| frame_pointer_needed
)))
4023 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
4024 && ! (regno
== HARD_FRAME_POINTER_REGNUM
4025 && (! reload_completed
|| frame_pointer_needed
))
4027 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
4028 && ! (regno
== ARG_POINTER_REGNUM
&& fixed_regs
[regno
])
4033 mark_used_regs (pbi
, SET_DEST (x
), cond
, insn
);
4034 mark_used_regs (pbi
, SET_SRC (x
), cond
, insn
);
4041 case UNSPEC_VOLATILE
:
4045 /* Traditional and volatile asm instructions must be considered to use
4046 and clobber all hard registers, all pseudo-registers and all of
4047 memory. So must TRAP_IF and UNSPEC_VOLATILE operations.
4049 Consider for instance a volatile asm that changes the fpu rounding
4050 mode. An insn should not be moved across this even if it only uses
4051 pseudo-regs because it might give an incorrectly rounded result.
4053 ?!? Unfortunately, marking all hard registers as live causes massive
4054 problems for the register allocator and marking all pseudos as live
4055 creates mountains of uninitialized variable warnings.
4057 So for now, just clear the memory set list and mark any regs
4058 we can find in ASM_OPERANDS as used. */
4059 if (code
!= ASM_OPERANDS
|| MEM_VOLATILE_P (x
))
4061 free_EXPR_LIST_list (&pbi
->mem_set_list
);
4062 pbi
->mem_set_list_len
= 0;
4065 /* For all ASM_OPERANDS, we must traverse the vector of input operands.
4066 We can not just fall through here since then we would be confused
4067 by the ASM_INPUT rtx inside ASM_OPERANDS, which do not indicate
4068 traditional asms unlike their normal usage. */
4069 if (code
== ASM_OPERANDS
)
4073 for (j
= 0; j
< ASM_OPERANDS_INPUT_LENGTH (x
); j
++)
4074 mark_used_regs (pbi
, ASM_OPERANDS_INPUT (x
, j
), cond
, insn
);
4082 mark_used_regs (pbi
, COND_EXEC_TEST (x
), NULL_RTX
, insn
);
4084 cond
= COND_EXEC_TEST (x
);
4085 x
= COND_EXEC_CODE (x
);
4092 /* Recursively scan the operands of this expression. */
4095 const char * const fmt
= GET_RTX_FORMAT (code
);
4098 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
4102 /* Tail recursive case: save a function call level. */
4108 mark_used_regs (pbi
, XEXP (x
, i
), cond
, insn
);
4110 else if (fmt
[i
] == 'E')
4113 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
4114 mark_used_regs (pbi
, XVECEXP (x
, i
, j
), cond
, insn
);
4123 try_pre_increment_1 (struct propagate_block_info
*pbi
, rtx insn
)
4125 /* Find the next use of this reg. If in same basic block,
4126 make it do pre-increment or pre-decrement if appropriate. */
4127 rtx x
= single_set (insn
);
4128 HOST_WIDE_INT amount
= ((GET_CODE (SET_SRC (x
)) == PLUS
? 1 : -1)
4129 * INTVAL (XEXP (SET_SRC (x
), 1)));
4130 int regno
= REGNO (SET_DEST (x
));
4131 rtx y
= pbi
->reg_next_use
[regno
];
4133 && SET_DEST (x
) != stack_pointer_rtx
4134 && BLOCK_NUM (y
) == BLOCK_NUM (insn
)
4135 /* Don't do this if the reg dies, or gets set in y; a standard addressing
4136 mode would be better. */
4137 && ! dead_or_set_p (y
, SET_DEST (x
))
4138 && try_pre_increment (y
, SET_DEST (x
), amount
))
4140 /* We have found a suitable auto-increment and already changed
4141 insn Y to do it. So flush this increment instruction. */
4142 propagate_block_delete_insn (insn
);
4144 /* Count a reference to this reg for the increment insn we are
4145 deleting. When a reg is incremented, spilling it is worse,
4146 so we want to make that less likely. */
4147 if (regno
>= FIRST_PSEUDO_REGISTER
)
4149 REG_FREQ (regno
) += REG_FREQ_FROM_BB (pbi
->bb
);
4150 REG_N_SETS (regno
)++;
4153 /* Flush any remembered memories depending on the value of
4154 the incremented register. */
4155 invalidate_mems_from_set (pbi
, SET_DEST (x
));
4162 /* Try to change INSN so that it does pre-increment or pre-decrement
4163 addressing on register REG in order to add AMOUNT to REG.
4164 AMOUNT is negative for pre-decrement.
4165 Returns 1 if the change could be made.
4166 This checks all about the validity of the result of modifying INSN. */
4169 try_pre_increment (rtx insn
, rtx reg
, HOST_WIDE_INT amount
)
4173 /* Nonzero if we can try to make a pre-increment or pre-decrement.
4174 For example, addl $4,r1; movl (r1),... can become movl +(r1),... */
4176 /* Nonzero if we can try to make a post-increment or post-decrement.
4177 For example, addl $4,r1; movl -4(r1),... can become movl (r1)+,...
4178 It is possible for both PRE_OK and POST_OK to be nonzero if the machine
4179 supports both pre-inc and post-inc, or both pre-dec and post-dec. */
4182 /* Nonzero if the opportunity actually requires post-inc or post-dec. */
4185 /* From the sign of increment, see which possibilities are conceivable
4186 on this target machine. */
4187 if (HAVE_PRE_INCREMENT
&& amount
> 0)
4189 if (HAVE_POST_INCREMENT
&& amount
> 0)
4192 if (HAVE_PRE_DECREMENT
&& amount
< 0)
4194 if (HAVE_POST_DECREMENT
&& amount
< 0)
4197 if (! (pre_ok
|| post_ok
))
4200 /* It is not safe to add a side effect to a jump insn
4201 because if the incremented register is spilled and must be reloaded
4202 there would be no way to store the incremented value back in memory. */
4209 use
= find_use_as_address (PATTERN (insn
), reg
, 0);
4210 if (post_ok
&& (use
== 0 || use
== (rtx
) (size_t) 1))
4212 use
= find_use_as_address (PATTERN (insn
), reg
, -amount
);
4216 if (use
== 0 || use
== (rtx
) (size_t) 1)
4219 if (GET_MODE_SIZE (GET_MODE (use
)) != (amount
> 0 ? amount
: - amount
))
4222 /* See if this combination of instruction and addressing mode exists. */
4223 if (! validate_change (insn
, &XEXP (use
, 0),
4224 gen_rtx_fmt_e (amount
> 0
4225 ? (do_post
? POST_INC
: PRE_INC
)
4226 : (do_post
? POST_DEC
: PRE_DEC
),
4230 /* Record that this insn now has an implicit side effect on X. */
4231 REG_NOTES (insn
) = alloc_EXPR_LIST (REG_INC
, reg
, REG_NOTES (insn
));
4235 #endif /* AUTO_INC_DEC */
4237 /* Find the place in the rtx X where REG is used as a memory address.
4238 Return the MEM rtx that so uses it.
4239 If PLUSCONST is nonzero, search instead for a memory address equivalent to
4240 (plus REG (const_int PLUSCONST)).
4242 If such an address does not appear, return 0.
4243 If REG appears more than once, or is used other than in such an address,
4247 find_use_as_address (rtx x
, rtx reg
, HOST_WIDE_INT plusconst
)
4249 enum rtx_code code
= GET_CODE (x
);
4250 const char * const fmt
= GET_RTX_FORMAT (code
);
4255 if (code
== MEM
&& XEXP (x
, 0) == reg
&& plusconst
== 0)
4258 if (code
== MEM
&& GET_CODE (XEXP (x
, 0)) == PLUS
4259 && XEXP (XEXP (x
, 0), 0) == reg
4260 && GET_CODE (XEXP (XEXP (x
, 0), 1)) == CONST_INT
4261 && INTVAL (XEXP (XEXP (x
, 0), 1)) == plusconst
)
4264 if (code
== SIGN_EXTRACT
|| code
== ZERO_EXTRACT
)
4266 /* If REG occurs inside a MEM used in a bit-field reference,
4267 that is unacceptable. */
4268 if (find_use_as_address (XEXP (x
, 0), reg
, 0) != 0)
4269 return (rtx
) (size_t) 1;
4273 return (rtx
) (size_t) 1;
4275 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
4279 tem
= find_use_as_address (XEXP (x
, i
), reg
, plusconst
);
4283 return (rtx
) (size_t) 1;
4285 else if (fmt
[i
] == 'E')
4288 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
4290 tem
= find_use_as_address (XVECEXP (x
, i
, j
), reg
, plusconst
);
4294 return (rtx
) (size_t) 1;
4302 /* Write information about registers and basic blocks into FILE.
4303 This is part of making a debugging dump. */
4306 dump_regset (regset r
, FILE *outf
)
4309 reg_set_iterator rsi
;
4313 fputs (" (nil)", outf
);
4317 EXECUTE_IF_SET_IN_REG_SET (r
, 0, i
, rsi
)
4319 fprintf (outf
, " %d", i
);
4320 if (i
< FIRST_PSEUDO_REGISTER
)
4321 fprintf (outf
, " [%s]",
4326 /* Print a human-readable representation of R on the standard error
4327 stream. This function is designed to be used from within the
4331 debug_regset (regset r
)
4333 dump_regset (r
, stderr
);
4334 putc ('\n', stderr
);
4337 /* Recompute register set/reference counts immediately prior to register
4340 This avoids problems with set/reference counts changing to/from values
4341 which have special meanings to the register allocators.
4343 Additionally, the reference counts are the primary component used by the
4344 register allocators to prioritize pseudos for allocation to hard regs.
4345 More accurate reference counts generally lead to better register allocation.
4347 It might be worthwhile to update REG_LIVE_LENGTH, REG_BASIC_BLOCK and
4348 possibly other information which is used by the register allocators. */
4351 recompute_reg_usage (void)
4353 allocate_reg_life_data ();
4354 /* distribute_notes in combiner fails to convert some of the
4355 REG_UNUSED notes to REG_DEAD notes. This causes CHECK_DEAD_NOTES
4356 in sched1 to die. To solve this update the DEATH_NOTES
4358 update_life_info (NULL
, UPDATE_LIFE_LOCAL
, PROP_REG_INFO
| PROP_DEATH_NOTES
);
4361 struct tree_opt_pass pass_recompute_reg_usage
=
4365 recompute_reg_usage
, /* execute */
4368 0, /* static_pass_number */
4370 0, /* properties_required */
4371 0, /* properties_provided */
4372 0, /* properties_destroyed */
4373 0, /* todo_flags_start */
4374 0, /* todo_flags_finish */
4378 /* Optionally removes all the REG_DEAD and REG_UNUSED notes from a set of
4379 blocks. If BLOCKS is NULL, assume the universal set. Returns a count
4380 of the number of registers that died. */
4383 count_or_remove_death_notes (sbitmap blocks
, int kill
)
4389 /* This used to be a loop over all the blocks with a membership test
4390 inside the loop. That can be amazingly expensive on a large CFG
4391 when only a small number of bits are set in BLOCKs (for example,
4392 the calls from the scheduler typically have very few bits set).
4394 For extra credit, someone should convert BLOCKS to a bitmap rather
4398 sbitmap_iterator sbi
;
4400 EXECUTE_IF_SET_IN_SBITMAP (blocks
, 0, i
, sbi
)
4402 count
+= count_or_remove_death_notes_bb (BASIC_BLOCK (i
), kill
);
4409 count
+= count_or_remove_death_notes_bb (bb
, kill
);
4416 /* Optionally removes all the REG_DEAD and REG_UNUSED notes from basic
4417 block BB. Returns a count of the number of registers that died. */
4420 count_or_remove_death_notes_bb (basic_block bb
, int kill
)
4425 for (insn
= BB_HEAD (bb
); ; insn
= NEXT_INSN (insn
))
4429 rtx
*pprev
= ®_NOTES (insn
);
4434 switch (REG_NOTE_KIND (link
))
4437 if (REG_P (XEXP (link
, 0)))
4439 rtx reg
= XEXP (link
, 0);
4442 if (REGNO (reg
) >= FIRST_PSEUDO_REGISTER
)
4445 n
= hard_regno_nregs
[REGNO (reg
)][GET_MODE (reg
)];
4454 rtx next
= XEXP (link
, 1);
4455 free_EXPR_LIST_node (link
);
4456 *pprev
= link
= next
;
4462 pprev
= &XEXP (link
, 1);
4469 if (insn
== BB_END (bb
))
4476 /* Clear LOG_LINKS fields of insns in a selected blocks or whole chain
4477 if blocks is NULL. */
4480 clear_log_links (sbitmap blocks
)
4486 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
4488 free_INSN_LIST_list (&LOG_LINKS (insn
));
4493 sbitmap_iterator sbi
;
4495 EXECUTE_IF_SET_IN_SBITMAP (blocks
, 0, i
, sbi
)
4497 basic_block bb
= BASIC_BLOCK (i
);
4499 for (insn
= BB_HEAD (bb
); insn
!= NEXT_INSN (BB_END (bb
));
4500 insn
= NEXT_INSN (insn
))
4502 free_INSN_LIST_list (&LOG_LINKS (insn
));
4507 /* Given a register bitmap, turn on the bits in a HARD_REG_SET that
4508 correspond to the hard registers, if any, set in that map. This
4509 could be done far more efficiently by having all sorts of special-cases
4510 with moving single words, but probably isn't worth the trouble. */
4513 reg_set_to_hard_reg_set (HARD_REG_SET
*to
, bitmap from
)
4518 EXECUTE_IF_SET_IN_BITMAP (from
, 0, i
, bi
)
4520 if (i
>= FIRST_PSEUDO_REGISTER
)
4522 SET_HARD_REG_BIT (*to
, i
);
4528 gate_remove_death_notes (void)
4530 return flag_profile_values
;
4534 rest_of_handle_remove_death_notes (void)
4536 count_or_remove_death_notes (NULL
, 1);
4539 struct tree_opt_pass pass_remove_death_notes
=
4542 gate_remove_death_notes
, /* gate */
4543 rest_of_handle_remove_death_notes
, /* execute */
4546 0, /* static_pass_number */
4548 0, /* properties_required */
4549 0, /* properties_provided */
4550 0, /* properties_destroyed */
4551 0, /* todo_flags_start */
4552 0, /* todo_flags_finish */
4556 /* Perform life analysis. */
4558 rest_of_handle_life (void)
4562 life_analysis (dump_file
, PROP_FINAL
);
4564 cleanup_cfg (CLEANUP_EXPENSIVE
| CLEANUP_UPDATE_LIFE
| CLEANUP_LOG_LINKS
4565 | (flag_thread_jumps
? CLEANUP_THREADING
: 0));
4569 setjmp_vars_warning (DECL_INITIAL (current_function_decl
));
4570 setjmp_args_warning ();
4575 if (initialize_uninitialized_subregs ())
4577 /* Insns were inserted, and possibly pseudos created, so
4578 things might look a bit different. */
4579 allocate_reg_life_data ();
4580 update_life_info (NULL
, UPDATE_LIFE_GLOBAL_RM_NOTES
,
4581 PROP_LOG_LINKS
| PROP_REG_INFO
| PROP_DEATH_NOTES
);
4588 struct tree_opt_pass pass_life
=
4592 rest_of_handle_life
, /* execute */
4595 0, /* static_pass_number */
4596 TV_FLOW
, /* tv_id */
4597 0, /* properties_required */
4598 0, /* properties_provided */
4599 0, /* properties_destroyed */
4600 TODO_verify_flow
, /* todo_flags_start */
4602 TODO_ggc_collect
, /* todo_flags_finish */
4607 rest_of_handle_flow2 (void)
4609 /* Re-create the death notes which were deleted during reload. */
4610 #ifdef ENABLE_CHECKING
4611 verify_flow_info ();
4614 /* If optimizing, then go ahead and split insns now. */
4618 split_all_insns (0);
4620 if (flag_branch_target_load_optimize
)
4621 branch_target_load_optimize (epilogue_completed
);
4624 cleanup_cfg (CLEANUP_EXPENSIVE
);
4626 /* On some machines, the prologue and epilogue code, or parts thereof,
4627 can be represented as RTL. Doing so lets us schedule insns between
4628 it and the rest of the code and also allows delayed branch
4629 scheduling to operate in the epilogue. */
4630 thread_prologue_and_epilogue_insns (get_insns ());
4631 epilogue_completed
= 1;
4632 flow2_completed
= 1;
4635 struct tree_opt_pass pass_flow2
=
4639 rest_of_handle_flow2
, /* execute */
4642 0, /* static_pass_number */
4643 TV_FLOW2
, /* tv_id */
4644 0, /* properties_required */
4645 0, /* properties_provided */
4646 0, /* properties_destroyed */
4647 TODO_verify_flow
, /* todo_flags_start */
4649 TODO_ggc_collect
, /* todo_flags_finish */