* gcc_release: New script.
[official-gcc.git] / gcc / flow.c
blob5997696d7c56ac81c7630546d4060738b5b0bb0f
1 /* Data flow analysis for GNU compiler.
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
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.
43 ** life_analysis **
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
75 REG_DEAD notes.
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
94 that is never used.
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. */
112 /* TODO:
114 Split out from life_analysis:
115 - local property discovery (bb->local_live, bb->local_set)
116 - global property computation
117 - log links creation
118 - pre/post modify transformation
121 #include "config.h"
122 #include "system.h"
123 #include "tree.h"
124 #include "rtl.h"
125 #include "tm_p.h"
126 #include "hard-reg-set.h"
127 #include "basic-block.h"
128 #include "insn-config.h"
129 #include "regs.h"
130 #include "flags.h"
131 #include "output.h"
132 #include "function.h"
133 #include "except.h"
134 #include "toplev.h"
135 #include "recog.h"
136 #include "expr.h"
137 #include "ssa.h"
139 #include "obstack.h"
140 #include "splay-tree.h"
142 #define obstack_chunk_alloc xmalloc
143 #define obstack_chunk_free free
145 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
146 the stack pointer does not matter. The value is tested only in
147 functions that have frame pointers.
148 No definition is equivalent to always zero. */
149 #ifndef EXIT_IGNORE_STACK
150 #define EXIT_IGNORE_STACK 0
151 #endif
153 #ifndef HAVE_epilogue
154 #define HAVE_epilogue 0
155 #endif
156 #ifndef HAVE_prologue
157 #define HAVE_prologue 0
158 #endif
159 #ifndef HAVE_sibcall_epilogue
160 #define HAVE_sibcall_epilogue 0
161 #endif
163 #ifndef LOCAL_REGNO
164 #define LOCAL_REGNO(REGNO) 0
165 #endif
166 #ifndef EPILOGUE_USES
167 #define EPILOGUE_USES(REGNO) 0
168 #endif
170 /* The obstack on which the flow graph components are allocated. */
172 struct obstack flow_obstack;
173 static char *flow_firstobj;
175 /* Number of basic blocks in the current function. */
177 int n_basic_blocks;
179 /* Number of edges in the current function. */
181 int n_edges;
183 /* The basic block array. */
185 varray_type basic_block_info;
187 /* The special entry and exit blocks. */
189 struct basic_block_def entry_exit_blocks[2]
190 = {{NULL, /* head */
191 NULL, /* end */
192 NULL, /* pred */
193 NULL, /* succ */
194 NULL, /* local_set */
195 NULL, /* cond_local_set */
196 NULL, /* global_live_at_start */
197 NULL, /* global_live_at_end */
198 NULL, /* aux */
199 ENTRY_BLOCK, /* index */
200 0, /* loop_depth */
201 0 /* count */
204 NULL, /* head */
205 NULL, /* end */
206 NULL, /* pred */
207 NULL, /* succ */
208 NULL, /* local_set */
209 NULL, /* cond_local_set */
210 NULL, /* global_live_at_start */
211 NULL, /* global_live_at_end */
212 NULL, /* aux */
213 EXIT_BLOCK, /* index */
214 0, /* loop_depth */
215 0 /* count */
219 /* Nonzero if the second flow pass has completed. */
220 int flow2_completed;
222 /* Maximum register number used in this function, plus one. */
224 int max_regno;
226 /* Indexed by n, giving various register information */
228 varray_type reg_n_info;
230 /* Size of a regset for the current function,
231 in (1) bytes and (2) elements. */
233 int regset_bytes;
234 int regset_size;
236 /* Regset of regs live when calls to `setjmp'-like functions happen. */
237 /* ??? Does this exist only for the setjmp-clobbered warning message? */
239 regset regs_live_at_setjmp;
241 /* List made of EXPR_LIST rtx's which gives pairs of pseudo registers
242 that have to go in the same hard reg.
243 The first two regs in the list are a pair, and the next two
244 are another pair, etc. */
245 rtx regs_may_share;
247 /* Callback that determines if it's ok for a function to have no
248 noreturn attribute. */
249 int (*lang_missing_noreturn_ok_p) PARAMS ((tree));
251 /* Set of registers that may be eliminable. These are handled specially
252 in updating regs_ever_live. */
254 static HARD_REG_SET elim_reg_set;
256 /* The basic block structure for every insn, indexed by uid. */
258 varray_type basic_block_for_insn;
260 /* The labels mentioned in non-jump rtl. Valid during find_basic_blocks. */
261 /* ??? Should probably be using LABEL_NUSES instead. It would take a
262 bit of surgery to be able to use or co-opt the routines in jump. */
264 static rtx label_value_list;
265 static rtx tail_recursion_label_list;
267 /* Holds information for tracking conditional register life information. */
268 struct reg_cond_life_info
270 /* A boolean expression of conditions under which a register is dead. */
271 rtx condition;
272 /* Conditions under which a register is dead at the basic block end. */
273 rtx orig_condition;
275 /* A boolean expression of conditions under which a register has been
276 stored into. */
277 rtx stores;
279 /* ??? Could store mask of bytes that are dead, so that we could finally
280 track lifetimes of multi-word registers accessed via subregs. */
283 /* For use in communicating between propagate_block and its subroutines.
284 Holds all information needed to compute life and def-use information. */
286 struct propagate_block_info
288 /* The basic block we're considering. */
289 basic_block bb;
291 /* Bit N is set if register N is conditionally or unconditionally live. */
292 regset reg_live;
294 /* Bit N is set if register N is set this insn. */
295 regset new_set;
297 /* Element N is the next insn that uses (hard or pseudo) register N
298 within the current basic block; or zero, if there is no such insn. */
299 rtx *reg_next_use;
301 /* Contains a list of all the MEMs we are tracking for dead store
302 elimination. */
303 rtx mem_set_list;
305 /* If non-null, record the set of registers set unconditionally in the
306 basic block. */
307 regset local_set;
309 /* If non-null, record the set of registers set conditionally in the
310 basic block. */
311 regset cond_local_set;
313 #ifdef HAVE_conditional_execution
314 /* Indexed by register number, holds a reg_cond_life_info for each
315 register that is not unconditionally live or dead. */
316 splay_tree reg_cond_dead;
318 /* Bit N is set if register N is in an expression in reg_cond_dead. */
319 regset reg_cond_reg;
320 #endif
322 /* The length of mem_set_list. */
323 int mem_set_list_len;
325 /* Non-zero if the value of CC0 is live. */
326 int cc0_live;
328 /* Flags controling the set of information propagate_block collects. */
329 int flags;
332 /* Maximum length of pbi->mem_set_list before we start dropping
333 new elements on the floor. */
334 #define MAX_MEM_SET_LIST_LEN 100
336 /* Store the data structures necessary for depth-first search. */
337 struct depth_first_search_dsS {
338 /* stack for backtracking during the algorithm */
339 basic_block *stack;
341 /* number of edges in the stack. That is, positions 0, ..., sp-1
342 have edges. */
343 unsigned int sp;
345 /* record of basic blocks already seen by depth-first search */
346 sbitmap visited_blocks;
348 typedef struct depth_first_search_dsS *depth_first_search_ds;
350 /* Forward declarations */
351 static int count_basic_blocks PARAMS ((rtx));
352 static void find_basic_blocks_1 PARAMS ((rtx));
353 static rtx find_label_refs PARAMS ((rtx, rtx));
354 static void clear_edges PARAMS ((void));
355 static void make_edges PARAMS ((rtx));
356 static void make_label_edge PARAMS ((sbitmap *, basic_block,
357 rtx, int));
358 static void make_eh_edge PARAMS ((sbitmap *, basic_block, rtx));
359 static void mark_critical_edges PARAMS ((void));
361 static void commit_one_edge_insertion PARAMS ((edge));
363 static void delete_unreachable_blocks PARAMS ((void));
364 static int can_delete_note_p PARAMS ((rtx));
365 static void expunge_block PARAMS ((basic_block));
366 static int can_delete_label_p PARAMS ((rtx));
367 static int tail_recursion_label_p PARAMS ((rtx));
368 static int merge_blocks_move_predecessor_nojumps PARAMS ((basic_block,
369 basic_block));
370 static int merge_blocks_move_successor_nojumps PARAMS ((basic_block,
371 basic_block));
372 static int merge_blocks PARAMS ((edge,basic_block,basic_block));
373 static void try_merge_blocks PARAMS ((void));
374 static void tidy_fallthru_edges PARAMS ((void));
375 static int verify_wide_reg_1 PARAMS ((rtx *, void *));
376 static void verify_wide_reg PARAMS ((int, rtx, rtx));
377 static void verify_local_live_at_start PARAMS ((regset, basic_block));
378 static int set_noop_p PARAMS ((rtx));
379 static int noop_move_p PARAMS ((rtx));
380 static void delete_noop_moves PARAMS ((rtx));
381 static void notice_stack_pointer_modification_1 PARAMS ((rtx, rtx, void *));
382 static void notice_stack_pointer_modification PARAMS ((rtx));
383 static void mark_reg PARAMS ((rtx, void *));
384 static void mark_regs_live_at_end PARAMS ((regset));
385 static int set_phi_alternative_reg PARAMS ((rtx, int, int, void *));
386 static void calculate_global_regs_live PARAMS ((sbitmap, sbitmap, int));
387 static void propagate_block_delete_insn PARAMS ((basic_block, rtx));
388 static rtx propagate_block_delete_libcall PARAMS ((basic_block, rtx, rtx));
389 static int insn_dead_p PARAMS ((struct propagate_block_info *,
390 rtx, int, rtx));
391 static int libcall_dead_p PARAMS ((struct propagate_block_info *,
392 rtx, rtx));
393 static void mark_set_regs PARAMS ((struct propagate_block_info *,
394 rtx, rtx));
395 static void mark_set_1 PARAMS ((struct propagate_block_info *,
396 enum rtx_code, rtx, rtx,
397 rtx, int));
398 #ifdef HAVE_conditional_execution
399 static int mark_regno_cond_dead PARAMS ((struct propagate_block_info *,
400 int, rtx));
401 static void free_reg_cond_life_info PARAMS ((splay_tree_value));
402 static int flush_reg_cond_reg_1 PARAMS ((splay_tree_node, void *));
403 static void flush_reg_cond_reg PARAMS ((struct propagate_block_info *,
404 int));
405 static rtx elim_reg_cond PARAMS ((rtx, unsigned int));
406 static rtx ior_reg_cond PARAMS ((rtx, rtx, int));
407 static rtx not_reg_cond PARAMS ((rtx));
408 static rtx and_reg_cond PARAMS ((rtx, rtx, int));
409 #endif
410 #ifdef AUTO_INC_DEC
411 static void attempt_auto_inc PARAMS ((struct propagate_block_info *,
412 rtx, rtx, rtx, rtx, rtx));
413 static void find_auto_inc PARAMS ((struct propagate_block_info *,
414 rtx, rtx));
415 static int try_pre_increment_1 PARAMS ((struct propagate_block_info *,
416 rtx));
417 static int try_pre_increment PARAMS ((rtx, rtx, HOST_WIDE_INT));
418 #endif
419 static void mark_used_reg PARAMS ((struct propagate_block_info *,
420 rtx, rtx, rtx));
421 static void mark_used_regs PARAMS ((struct propagate_block_info *,
422 rtx, rtx, rtx));
423 void dump_flow_info PARAMS ((FILE *));
424 void debug_flow_info PARAMS ((void));
425 static void dump_edge_info PARAMS ((FILE *, edge, int));
426 static void print_rtl_and_abort PARAMS ((void));
428 static void invalidate_mems_from_autoinc PARAMS ((struct propagate_block_info *,
429 rtx));
430 static void invalidate_mems_from_set PARAMS ((struct propagate_block_info *,
431 rtx));
432 static void remove_fake_successors PARAMS ((basic_block));
433 static void flow_nodes_print PARAMS ((const char *, const sbitmap,
434 FILE *));
435 static void flow_edge_list_print PARAMS ((const char *, const edge *,
436 int, FILE *));
437 static void flow_loops_cfg_dump PARAMS ((const struct loops *,
438 FILE *));
439 static int flow_loop_nested_p PARAMS ((struct loop *,
440 struct loop *));
441 static int flow_loop_entry_edges_find PARAMS ((basic_block, const sbitmap,
442 edge **));
443 static int flow_loop_exit_edges_find PARAMS ((const sbitmap, edge **));
444 static int flow_loop_nodes_find PARAMS ((basic_block, basic_block, sbitmap));
445 static int flow_depth_first_order_compute PARAMS ((int *, int *));
446 static void flow_dfs_compute_reverse_init
447 PARAMS ((depth_first_search_ds));
448 static void flow_dfs_compute_reverse_add_bb
449 PARAMS ((depth_first_search_ds, basic_block));
450 static basic_block flow_dfs_compute_reverse_execute
451 PARAMS ((depth_first_search_ds));
452 static void flow_dfs_compute_reverse_finish
453 PARAMS ((depth_first_search_ds));
454 static void flow_loop_pre_header_scan PARAMS ((struct loop *));
455 static basic_block flow_loop_pre_header_find PARAMS ((basic_block,
456 const sbitmap *));
457 static void flow_loop_tree_node_add PARAMS ((struct loop *, struct loop *));
458 static void flow_loops_tree_build PARAMS ((struct loops *));
459 static int flow_loop_level_compute PARAMS ((struct loop *, int));
460 static int flow_loops_level_compute PARAMS ((struct loops *));
461 static void allocate_bb_life_data PARAMS ((void));
463 /* Find basic blocks of the current function.
464 F is the first insn of the function and NREGS the number of register
465 numbers in use. */
467 void
468 find_basic_blocks (f, nregs, file)
469 rtx f;
470 int nregs ATTRIBUTE_UNUSED;
471 FILE *file ATTRIBUTE_UNUSED;
473 int max_uid;
475 /* Flush out existing data. */
476 if (basic_block_info != NULL)
478 int i;
480 clear_edges ();
482 /* Clear bb->aux on all extant basic blocks. We'll use this as a
483 tag for reuse during create_basic_block, just in case some pass
484 copies around basic block notes improperly. */
485 for (i = 0; i < n_basic_blocks; ++i)
486 BASIC_BLOCK (i)->aux = NULL;
488 VARRAY_FREE (basic_block_info);
491 n_basic_blocks = count_basic_blocks (f);
493 /* Size the basic block table. The actual structures will be allocated
494 by find_basic_blocks_1, since we want to keep the structure pointers
495 stable across calls to find_basic_blocks. */
496 /* ??? This whole issue would be much simpler if we called find_basic_blocks
497 exactly once, and thereafter we don't have a single long chain of
498 instructions at all until close to the end of compilation when we
499 actually lay them out. */
501 VARRAY_BB_INIT (basic_block_info, n_basic_blocks, "basic_block_info");
503 find_basic_blocks_1 (f);
505 /* Record the block to which an insn belongs. */
506 /* ??? This should be done another way, by which (perhaps) a label is
507 tagged directly with the basic block that it starts. It is used for
508 more than that currently, but IMO that is the only valid use. */
510 max_uid = get_max_uid ();
511 #ifdef AUTO_INC_DEC
512 /* Leave space for insns life_analysis makes in some cases for auto-inc.
513 These cases are rare, so we don't need too much space. */
514 max_uid += max_uid / 10;
515 #endif
517 compute_bb_for_insn (max_uid);
519 /* Discover the edges of our cfg. */
520 make_edges (label_value_list);
522 /* Do very simple cleanup now, for the benefit of code that runs between
523 here and cleanup_cfg, e.g. thread_prologue_and_epilogue_insns. */
524 tidy_fallthru_edges ();
526 mark_critical_edges ();
528 #ifdef ENABLE_CHECKING
529 verify_flow_info ();
530 #endif
533 void
534 check_function_return_warnings ()
536 if (warn_missing_noreturn
537 && !TREE_THIS_VOLATILE (cfun->decl)
538 && EXIT_BLOCK_PTR->pred == NULL
539 && (lang_missing_noreturn_ok_p
540 && !lang_missing_noreturn_ok_p (cfun->decl)))
541 warning ("function might be possible candidate for attribute `noreturn'");
543 /* If we have a path to EXIT, then we do return. */
544 if (TREE_THIS_VOLATILE (cfun->decl)
545 && EXIT_BLOCK_PTR->pred != NULL)
546 warning ("`noreturn' function does return");
548 /* If the clobber_return_insn appears in some basic block, then we
549 do reach the end without returning a value. */
550 else if (warn_return_type
551 && cfun->x_clobber_return_insn != NULL
552 && EXIT_BLOCK_PTR->pred != NULL)
554 int max_uid = get_max_uid ();
556 /* If clobber_return_insn was excised by jump1, then renumber_insns
557 can make max_uid smaller than the number still recorded in our rtx.
558 That's fine, since this is a quick way of verifying that the insn
559 is no longer in the chain. */
560 if (INSN_UID (cfun->x_clobber_return_insn) < max_uid)
562 /* Recompute insn->block mapping, since the initial mapping is
563 set before we delete unreachable blocks. */
564 compute_bb_for_insn (max_uid);
566 if (BLOCK_FOR_INSN (cfun->x_clobber_return_insn) != NULL)
567 warning ("control reaches end of non-void function");
572 /* Count the basic blocks of the function. */
574 static int
575 count_basic_blocks (f)
576 rtx f;
578 register rtx insn;
579 register RTX_CODE prev_code;
580 register int count = 0;
581 int saw_abnormal_edge = 0;
583 prev_code = JUMP_INSN;
584 for (insn = f; insn; insn = NEXT_INSN (insn))
586 enum rtx_code code = GET_CODE (insn);
588 if (code == CODE_LABEL
589 || (GET_RTX_CLASS (code) == 'i'
590 && (prev_code == JUMP_INSN
591 || prev_code == BARRIER
592 || saw_abnormal_edge)))
594 saw_abnormal_edge = 0;
595 count++;
598 /* Record whether this insn created an edge. */
599 if (code == CALL_INSN)
601 rtx note;
603 /* If there is a nonlocal goto label and the specified
604 region number isn't -1, we have an edge. */
605 if (nonlocal_goto_handler_labels
606 && ((note = find_reg_note (insn, REG_EH_REGION, NULL_RTX)) == 0
607 || INTVAL (XEXP (note, 0)) >= 0))
608 saw_abnormal_edge = 1;
610 else if (can_throw_internal (insn))
611 saw_abnormal_edge = 1;
613 else if (flag_non_call_exceptions
614 && code == INSN
615 && can_throw_internal (insn))
616 saw_abnormal_edge = 1;
618 if (code != NOTE)
619 prev_code = code;
622 /* The rest of the compiler works a bit smoother when we don't have to
623 check for the edge case of do-nothing functions with no basic blocks. */
624 if (count == 0)
626 emit_insn (gen_rtx_USE (VOIDmode, const0_rtx));
627 count = 1;
630 return count;
633 /* Scan a list of insns for labels referred to other than by jumps.
634 This is used to scan the alternatives of a call placeholder. */
635 static rtx
636 find_label_refs (f, lvl)
637 rtx f;
638 rtx lvl;
640 rtx insn;
642 for (insn = f; insn; insn = NEXT_INSN (insn))
643 if (INSN_P (insn) && GET_CODE (insn) != JUMP_INSN)
645 rtx note;
647 /* Make a list of all labels referred to other than by jumps
648 (which just don't have the REG_LABEL notes).
650 Make a special exception for labels followed by an ADDR*VEC,
651 as this would be a part of the tablejump setup code.
653 Make a special exception to registers loaded with label
654 values just before jump insns that use them. */
656 for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
657 if (REG_NOTE_KIND (note) == REG_LABEL)
659 rtx lab = XEXP (note, 0), next;
661 if ((next = next_nonnote_insn (lab)) != NULL
662 && GET_CODE (next) == JUMP_INSN
663 && (GET_CODE (PATTERN (next)) == ADDR_VEC
664 || GET_CODE (PATTERN (next)) == ADDR_DIFF_VEC))
666 else if (GET_CODE (lab) == NOTE)
668 else if (GET_CODE (NEXT_INSN (insn)) == JUMP_INSN
669 && find_reg_note (NEXT_INSN (insn), REG_LABEL, lab))
671 else
672 lvl = alloc_EXPR_LIST (0, XEXP (note, 0), lvl);
676 return lvl;
679 /* Find all basic blocks of the function whose first insn is F.
681 Collect and return a list of labels whose addresses are taken. This
682 will be used in make_edges for use with computed gotos. */
684 static void
685 find_basic_blocks_1 (f)
686 rtx f;
688 register rtx insn, next;
689 int i = 0;
690 rtx bb_note = NULL_RTX;
691 rtx lvl = NULL_RTX;
692 rtx trll = NULL_RTX;
693 rtx head = NULL_RTX;
694 rtx end = NULL_RTX;
696 /* We process the instructions in a slightly different way than we did
697 previously. This is so that we see a NOTE_BASIC_BLOCK after we have
698 closed out the previous block, so that it gets attached at the proper
699 place. Since this form should be equivalent to the previous,
700 count_basic_blocks continues to use the old form as a check. */
702 for (insn = f; insn; insn = next)
704 enum rtx_code code = GET_CODE (insn);
706 next = NEXT_INSN (insn);
708 switch (code)
710 case NOTE:
712 int kind = NOTE_LINE_NUMBER (insn);
714 /* Look for basic block notes with which to keep the
715 basic_block_info pointers stable. Unthread the note now;
716 we'll put it back at the right place in create_basic_block.
717 Or not at all if we've already found a note in this block. */
718 if (kind == NOTE_INSN_BASIC_BLOCK)
720 if (bb_note == NULL_RTX)
721 bb_note = insn;
722 else
723 next = flow_delete_insn (insn);
725 break;
728 case CODE_LABEL:
729 /* A basic block starts at a label. If we've closed one off due
730 to a barrier or some such, no need to do it again. */
731 if (head != NULL_RTX)
733 /* While we now have edge lists with which other portions of
734 the compiler might determine a call ending a basic block
735 does not imply an abnormal edge, it will be a bit before
736 everything can be updated. So continue to emit a noop at
737 the end of such a block. */
738 if (GET_CODE (end) == CALL_INSN && ! SIBLING_CALL_P (end))
740 rtx nop = gen_rtx_USE (VOIDmode, const0_rtx);
741 end = emit_insn_after (nop, end);
744 create_basic_block (i++, head, end, bb_note);
745 bb_note = NULL_RTX;
748 head = end = insn;
749 break;
751 case JUMP_INSN:
752 /* A basic block ends at a jump. */
753 if (head == NULL_RTX)
754 head = insn;
755 else
757 /* ??? Make a special check for table jumps. The way this
758 happens is truly and amazingly gross. We are about to
759 create a basic block that contains just a code label and
760 an addr*vec jump insn. Worse, an addr_diff_vec creates
761 its own natural loop.
763 Prevent this bit of brain damage, pasting things together
764 correctly in make_edges.
766 The correct solution involves emitting the table directly
767 on the tablejump instruction as a note, or JUMP_LABEL. */
769 if (GET_CODE (PATTERN (insn)) == ADDR_VEC
770 || GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC)
772 head = end = NULL;
773 n_basic_blocks--;
774 break;
777 end = insn;
778 goto new_bb_inclusive;
780 case BARRIER:
781 /* A basic block ends at a barrier. It may be that an unconditional
782 jump already closed the basic block -- no need to do it again. */
783 if (head == NULL_RTX)
784 break;
786 /* While we now have edge lists with which other portions of the
787 compiler might determine a call ending a basic block does not
788 imply an abnormal edge, it will be a bit before everything can
789 be updated. So continue to emit a noop at the end of such a
790 block. */
791 if (GET_CODE (end) == CALL_INSN && ! SIBLING_CALL_P (end))
793 rtx nop = gen_rtx_USE (VOIDmode, const0_rtx);
794 end = emit_insn_after (nop, end);
796 goto new_bb_exclusive;
798 case CALL_INSN:
800 /* Record whether this call created an edge. */
801 rtx note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
802 int region = (note ? INTVAL (XEXP (note, 0)) : 0);
804 if (GET_CODE (PATTERN (insn)) == CALL_PLACEHOLDER)
806 /* Scan each of the alternatives for label refs. */
807 lvl = find_label_refs (XEXP (PATTERN (insn), 0), lvl);
808 lvl = find_label_refs (XEXP (PATTERN (insn), 1), lvl);
809 lvl = find_label_refs (XEXP (PATTERN (insn), 2), lvl);
810 /* Record its tail recursion label, if any. */
811 if (XEXP (PATTERN (insn), 3) != NULL_RTX)
812 trll = alloc_EXPR_LIST (0, XEXP (PATTERN (insn), 3), trll);
815 /* A basic block ends at a call that can either throw or
816 do a non-local goto. */
817 if ((nonlocal_goto_handler_labels && region >= 0)
818 || can_throw_internal (insn))
820 new_bb_inclusive:
821 if (head == NULL_RTX)
822 head = insn;
823 end = insn;
825 new_bb_exclusive:
826 create_basic_block (i++, head, end, bb_note);
827 head = end = NULL_RTX;
828 bb_note = NULL_RTX;
829 break;
832 /* Fall through. */
834 case INSN:
835 /* Non-call exceptions generate new blocks just like calls. */
836 if (flag_non_call_exceptions && can_throw_internal (insn))
837 goto new_bb_inclusive;
839 if (head == NULL_RTX)
840 head = insn;
841 end = insn;
842 break;
844 default:
845 abort ();
848 if (GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN)
850 rtx note;
852 /* Make a list of all labels referred to other than by jumps.
854 Make a special exception for labels followed by an ADDR*VEC,
855 as this would be a part of the tablejump setup code.
857 Make a special exception to registers loaded with label
858 values just before jump insns that use them. */
860 for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
861 if (REG_NOTE_KIND (note) == REG_LABEL)
863 rtx lab = XEXP (note, 0), next;
865 if ((next = next_nonnote_insn (lab)) != NULL
866 && GET_CODE (next) == JUMP_INSN
867 && (GET_CODE (PATTERN (next)) == ADDR_VEC
868 || GET_CODE (PATTERN (next)) == ADDR_DIFF_VEC))
870 else if (GET_CODE (lab) == NOTE)
872 else if (GET_CODE (NEXT_INSN (insn)) == JUMP_INSN
873 && find_reg_note (NEXT_INSN (insn), REG_LABEL, lab))
875 else
876 lvl = alloc_EXPR_LIST (0, XEXP (note, 0), lvl);
881 if (head != NULL_RTX)
882 create_basic_block (i++, head, end, bb_note);
883 else if (bb_note)
884 flow_delete_insn (bb_note);
886 if (i != n_basic_blocks)
887 abort ();
889 label_value_list = lvl;
890 tail_recursion_label_list = trll;
893 /* Tidy the CFG by deleting unreachable code and whatnot. */
895 void
896 cleanup_cfg ()
898 delete_unreachable_blocks ();
899 try_merge_blocks ();
900 mark_critical_edges ();
902 /* Kill the data we won't maintain. */
903 free_EXPR_LIST_list (&label_value_list);
904 free_EXPR_LIST_list (&tail_recursion_label_list);
907 /* Create a new basic block consisting of the instructions between
908 HEAD and END inclusive. Reuses the note and basic block struct
909 in BB_NOTE, if any. */
911 void
912 create_basic_block (index, head, end, bb_note)
913 int index;
914 rtx head, end, bb_note;
916 basic_block bb;
918 if (bb_note
919 && ! RTX_INTEGRATED_P (bb_note)
920 && (bb = NOTE_BASIC_BLOCK (bb_note)) != NULL
921 && bb->aux == NULL)
923 /* If we found an existing note, thread it back onto the chain. */
925 rtx after;
927 if (GET_CODE (head) == CODE_LABEL)
928 after = head;
929 else
931 after = PREV_INSN (head);
932 head = bb_note;
935 if (after != bb_note && NEXT_INSN (after) != bb_note)
936 reorder_insns (bb_note, bb_note, after);
938 else
940 /* Otherwise we must create a note and a basic block structure.
941 Since we allow basic block structs in rtl, give the struct
942 the same lifetime by allocating it off the function obstack
943 rather than using malloc. */
945 bb = (basic_block) obstack_alloc (&flow_obstack, sizeof (*bb));
946 memset (bb, 0, sizeof (*bb));
948 if (GET_CODE (head) == CODE_LABEL)
949 bb_note = emit_note_after (NOTE_INSN_BASIC_BLOCK, head);
950 else
952 bb_note = emit_note_before (NOTE_INSN_BASIC_BLOCK, head);
953 head = bb_note;
955 NOTE_BASIC_BLOCK (bb_note) = bb;
958 /* Always include the bb note in the block. */
959 if (NEXT_INSN (end) == bb_note)
960 end = bb_note;
962 bb->head = head;
963 bb->end = end;
964 bb->index = index;
965 BASIC_BLOCK (index) = bb;
967 /* Tag the block so that we know it has been used when considering
968 other basic block notes. */
969 bb->aux = bb;
972 /* Records the basic block struct in BB_FOR_INSN, for every instruction
973 indexed by INSN_UID. MAX is the size of the array. */
975 void
976 compute_bb_for_insn (max)
977 int max;
979 int i;
981 if (basic_block_for_insn)
982 VARRAY_FREE (basic_block_for_insn);
983 VARRAY_BB_INIT (basic_block_for_insn, max, "basic_block_for_insn");
985 for (i = 0; i < n_basic_blocks; ++i)
987 basic_block bb = BASIC_BLOCK (i);
988 rtx insn, end;
990 end = bb->end;
991 insn = bb->head;
992 while (1)
994 int uid = INSN_UID (insn);
995 if (uid < max)
996 VARRAY_BB (basic_block_for_insn, uid) = bb;
997 if (insn == end)
998 break;
999 insn = NEXT_INSN (insn);
1004 /* Free the memory associated with the edge structures. */
1006 static void
1007 clear_edges ()
1009 int i;
1010 edge n, e;
1012 for (i = 0; i < n_basic_blocks; ++i)
1014 basic_block bb = BASIC_BLOCK (i);
1016 for (e = bb->succ; e; e = n)
1018 n = e->succ_next;
1019 free (e);
1022 bb->succ = 0;
1023 bb->pred = 0;
1026 for (e = ENTRY_BLOCK_PTR->succ; e; e = n)
1028 n = e->succ_next;
1029 free (e);
1032 ENTRY_BLOCK_PTR->succ = 0;
1033 EXIT_BLOCK_PTR->pred = 0;
1035 n_edges = 0;
1038 /* Identify the edges between basic blocks.
1040 NONLOCAL_LABEL_LIST is a list of non-local labels in the function. Blocks
1041 that are otherwise unreachable may be reachable with a non-local goto.
1043 BB_EH_END is an array indexed by basic block number in which we record
1044 the list of exception regions active at the end of the basic block. */
1046 static void
1047 make_edges (label_value_list)
1048 rtx label_value_list;
1050 int i;
1051 sbitmap *edge_cache = NULL;
1053 /* Assume no computed jump; revise as we create edges. */
1054 current_function_has_computed_jump = 0;
1056 /* Heavy use of computed goto in machine-generated code can lead to
1057 nearly fully-connected CFGs. In that case we spend a significant
1058 amount of time searching the edge lists for duplicates. */
1059 if (forced_labels || label_value_list)
1061 edge_cache = sbitmap_vector_alloc (n_basic_blocks, n_basic_blocks);
1062 sbitmap_vector_zero (edge_cache, n_basic_blocks);
1065 /* By nature of the way these get numbered, block 0 is always the entry. */
1066 make_edge (edge_cache, ENTRY_BLOCK_PTR, BASIC_BLOCK (0), EDGE_FALLTHRU);
1068 for (i = 0; i < n_basic_blocks; ++i)
1070 basic_block bb = BASIC_BLOCK (i);
1071 rtx insn, x;
1072 enum rtx_code code;
1073 int force_fallthru = 0;
1075 /* Examine the last instruction of the block, and discover the
1076 ways we can leave the block. */
1078 insn = bb->end;
1079 code = GET_CODE (insn);
1081 /* A branch. */
1082 if (code == JUMP_INSN)
1084 rtx tmp;
1086 /* Recognize exception handling placeholders. */
1087 if (GET_CODE (PATTERN (insn)) == RESX)
1088 make_eh_edge (edge_cache, bb, insn);
1090 /* Recognize a non-local goto as a branch outside the
1091 current function. */
1092 else if (find_reg_note (insn, REG_NON_LOCAL_GOTO, NULL_RTX))
1095 /* ??? Recognize a tablejump and do the right thing. */
1096 else if ((tmp = JUMP_LABEL (insn)) != NULL_RTX
1097 && (tmp = NEXT_INSN (tmp)) != NULL_RTX
1098 && GET_CODE (tmp) == JUMP_INSN
1099 && (GET_CODE (PATTERN (tmp)) == ADDR_VEC
1100 || GET_CODE (PATTERN (tmp)) == ADDR_DIFF_VEC))
1102 rtvec vec;
1103 int j;
1105 if (GET_CODE (PATTERN (tmp)) == ADDR_VEC)
1106 vec = XVEC (PATTERN (tmp), 0);
1107 else
1108 vec = XVEC (PATTERN (tmp), 1);
1110 for (j = GET_NUM_ELEM (vec) - 1; j >= 0; --j)
1111 make_label_edge (edge_cache, bb,
1112 XEXP (RTVEC_ELT (vec, j), 0), 0);
1114 /* Some targets (eg, ARM) emit a conditional jump that also
1115 contains the out-of-range target. Scan for these and
1116 add an edge if necessary. */
1117 if ((tmp = single_set (insn)) != NULL
1118 && SET_DEST (tmp) == pc_rtx
1119 && GET_CODE (SET_SRC (tmp)) == IF_THEN_ELSE
1120 && GET_CODE (XEXP (SET_SRC (tmp), 2)) == LABEL_REF)
1121 make_label_edge (edge_cache, bb,
1122 XEXP (XEXP (SET_SRC (tmp), 2), 0), 0);
1124 #ifdef CASE_DROPS_THROUGH
1125 /* Silly VAXen. The ADDR_VEC is going to be in the way of
1126 us naturally detecting fallthru into the next block. */
1127 force_fallthru = 1;
1128 #endif
1131 /* If this is a computed jump, then mark it as reaching
1132 everything on the label_value_list and forced_labels list. */
1133 else if (computed_jump_p (insn))
1135 current_function_has_computed_jump = 1;
1137 for (x = label_value_list; x; x = XEXP (x, 1))
1138 make_label_edge (edge_cache, bb, XEXP (x, 0), EDGE_ABNORMAL);
1140 for (x = forced_labels; x; x = XEXP (x, 1))
1141 make_label_edge (edge_cache, bb, XEXP (x, 0), EDGE_ABNORMAL);
1144 /* Returns create an exit out. */
1145 else if (returnjump_p (insn))
1146 make_edge (edge_cache, bb, EXIT_BLOCK_PTR, 0);
1148 /* Otherwise, we have a plain conditional or unconditional jump. */
1149 else
1151 if (! JUMP_LABEL (insn))
1152 abort ();
1153 make_label_edge (edge_cache, bb, JUMP_LABEL (insn), 0);
1157 /* If this is a sibling call insn, then this is in effect a
1158 combined call and return, and so we need an edge to the
1159 exit block. No need to worry about EH edges, since we
1160 wouldn't have created the sibling call in the first place. */
1162 if (code == CALL_INSN && SIBLING_CALL_P (insn))
1163 make_edge (edge_cache, bb, EXIT_BLOCK_PTR,
1164 EDGE_ABNORMAL | EDGE_ABNORMAL_CALL);
1166 /* If this is a CALL_INSN, then mark it as reaching the active EH
1167 handler for this CALL_INSN. If we're handling non-call
1168 exceptions then any insn can reach any of the active handlers.
1170 Also mark the CALL_INSN as reaching any nonlocal goto handler. */
1172 else if (code == CALL_INSN || flag_non_call_exceptions)
1174 /* Add any appropriate EH edges. */
1175 make_eh_edge (edge_cache, bb, insn);
1177 if (code == CALL_INSN && nonlocal_goto_handler_labels)
1179 /* ??? This could be made smarter: in some cases it's possible
1180 to tell that certain calls will not do a nonlocal goto.
1182 For example, if the nested functions that do the nonlocal
1183 gotos do not have their addresses taken, then only calls to
1184 those functions or to other nested functions that use them
1185 could possibly do nonlocal gotos. */
1186 /* We do know that a REG_EH_REGION note with a value less
1187 than 0 is guaranteed not to perform a non-local goto. */
1188 rtx note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
1189 if (!note || INTVAL (XEXP (note, 0)) >= 0)
1190 for (x = nonlocal_goto_handler_labels; x; x = XEXP (x, 1))
1191 make_label_edge (edge_cache, bb, XEXP (x, 0),
1192 EDGE_ABNORMAL | EDGE_ABNORMAL_CALL);
1196 /* Find out if we can drop through to the next block. */
1197 insn = next_nonnote_insn (insn);
1198 if (!insn || (i + 1 == n_basic_blocks && force_fallthru))
1199 make_edge (edge_cache, bb, EXIT_BLOCK_PTR, EDGE_FALLTHRU);
1200 else if (i + 1 < n_basic_blocks)
1202 rtx tmp = BLOCK_HEAD (i + 1);
1203 if (GET_CODE (tmp) == NOTE)
1204 tmp = next_nonnote_insn (tmp);
1205 if (force_fallthru || insn == tmp)
1206 make_edge (edge_cache, bb, BASIC_BLOCK (i + 1), EDGE_FALLTHRU);
1210 if (edge_cache)
1211 sbitmap_vector_free (edge_cache);
1214 /* Create an edge between two basic blocks. FLAGS are auxiliary information
1215 about the edge that is accumulated between calls. */
1217 void
1218 make_edge (edge_cache, src, dst, flags)
1219 sbitmap *edge_cache;
1220 basic_block src, dst;
1221 int flags;
1223 int use_edge_cache;
1224 edge e;
1226 /* Don't bother with edge cache for ENTRY or EXIT; there aren't that
1227 many edges to them, and we didn't allocate memory for it. */
1228 use_edge_cache = (edge_cache
1229 && src != ENTRY_BLOCK_PTR
1230 && dst != EXIT_BLOCK_PTR);
1232 /* Make sure we don't add duplicate edges. */
1233 switch (use_edge_cache)
1235 default:
1236 /* Quick test for non-existance of the edge. */
1237 if (! TEST_BIT (edge_cache[src->index], dst->index))
1238 break;
1240 /* The edge exists; early exit if no work to do. */
1241 if (flags == 0)
1242 return;
1244 /* FALLTHRU */
1245 case 0:
1246 for (e = src->succ; e; e = e->succ_next)
1247 if (e->dest == dst)
1249 e->flags |= flags;
1250 return;
1252 break;
1255 e = (edge) xcalloc (1, sizeof (*e));
1256 n_edges++;
1258 e->succ_next = src->succ;
1259 e->pred_next = dst->pred;
1260 e->src = src;
1261 e->dest = dst;
1262 e->flags = flags;
1264 src->succ = e;
1265 dst->pred = e;
1267 if (use_edge_cache)
1268 SET_BIT (edge_cache[src->index], dst->index);
1271 /* Create an edge from a basic block to a label. */
1273 static void
1274 make_label_edge (edge_cache, src, label, flags)
1275 sbitmap *edge_cache;
1276 basic_block src;
1277 rtx label;
1278 int flags;
1280 if (GET_CODE (label) != CODE_LABEL)
1281 abort ();
1283 /* If the label was never emitted, this insn is junk, but avoid a
1284 crash trying to refer to BLOCK_FOR_INSN (label). This can happen
1285 as a result of a syntax error and a diagnostic has already been
1286 printed. */
1288 if (INSN_UID (label) == 0)
1289 return;
1291 make_edge (edge_cache, src, BLOCK_FOR_INSN (label), flags);
1294 /* Create the edges generated by INSN in REGION. */
1296 static void
1297 make_eh_edge (edge_cache, src, insn)
1298 sbitmap *edge_cache;
1299 basic_block src;
1300 rtx insn;
1302 int is_call = (GET_CODE (insn) == CALL_INSN ? EDGE_ABNORMAL_CALL : 0);
1303 rtx handlers, i;
1305 handlers = reachable_handlers (insn);
1307 for (i = handlers; i; i = XEXP (i, 1))
1308 make_label_edge (edge_cache, src, XEXP (i, 0),
1309 EDGE_ABNORMAL | EDGE_EH | is_call);
1311 free_INSN_LIST_list (&handlers);
1314 /* Identify critical edges and set the bits appropriately. */
1316 static void
1317 mark_critical_edges ()
1319 int i, n = n_basic_blocks;
1320 basic_block bb;
1322 /* We begin with the entry block. This is not terribly important now,
1323 but could be if a front end (Fortran) implemented alternate entry
1324 points. */
1325 bb = ENTRY_BLOCK_PTR;
1326 i = -1;
1328 while (1)
1330 edge e;
1332 /* (1) Critical edges must have a source with multiple successors. */
1333 if (bb->succ && bb->succ->succ_next)
1335 for (e = bb->succ; e; e = e->succ_next)
1337 /* (2) Critical edges must have a destination with multiple
1338 predecessors. Note that we know there is at least one
1339 predecessor -- the edge we followed to get here. */
1340 if (e->dest->pred->pred_next)
1341 e->flags |= EDGE_CRITICAL;
1342 else
1343 e->flags &= ~EDGE_CRITICAL;
1346 else
1348 for (e = bb->succ; e; e = e->succ_next)
1349 e->flags &= ~EDGE_CRITICAL;
1352 if (++i >= n)
1353 break;
1354 bb = BASIC_BLOCK (i);
1358 /* Split a block BB after insn INSN creating a new fallthru edge.
1359 Return the new edge. Note that to keep other parts of the compiler happy,
1360 this function renumbers all the basic blocks so that the new
1361 one has a number one greater than the block split. */
1363 edge
1364 split_block (bb, insn)
1365 basic_block bb;
1366 rtx insn;
1368 basic_block new_bb;
1369 edge new_edge;
1370 edge e;
1371 rtx bb_note;
1372 int i, j;
1374 /* There is no point splitting the block after its end. */
1375 if (bb->end == insn)
1376 return 0;
1378 /* Create the new structures. */
1379 new_bb = (basic_block) obstack_alloc (&flow_obstack, sizeof (*new_bb));
1380 new_edge = (edge) xcalloc (1, sizeof (*new_edge));
1381 n_edges++;
1383 memset (new_bb, 0, sizeof (*new_bb));
1385 new_bb->head = NEXT_INSN (insn);
1386 new_bb->end = bb->end;
1387 bb->end = insn;
1389 new_bb->succ = bb->succ;
1390 bb->succ = new_edge;
1391 new_bb->pred = new_edge;
1392 new_bb->count = bb->count;
1393 new_bb->loop_depth = bb->loop_depth;
1395 new_edge->src = bb;
1396 new_edge->dest = new_bb;
1397 new_edge->flags = EDGE_FALLTHRU;
1398 new_edge->probability = REG_BR_PROB_BASE;
1399 new_edge->count = bb->count;
1401 /* Redirect the src of the successor edges of bb to point to new_bb. */
1402 for (e = new_bb->succ; e; e = e->succ_next)
1403 e->src = new_bb;
1405 /* Place the new block just after the block being split. */
1406 VARRAY_GROW (basic_block_info, ++n_basic_blocks);
1408 /* Some parts of the compiler expect blocks to be number in
1409 sequential order so insert the new block immediately after the
1410 block being split.. */
1411 j = bb->index;
1412 for (i = n_basic_blocks - 1; i > j + 1; --i)
1414 basic_block tmp = BASIC_BLOCK (i - 1);
1415 BASIC_BLOCK (i) = tmp;
1416 tmp->index = i;
1419 BASIC_BLOCK (i) = new_bb;
1420 new_bb->index = i;
1422 /* Create the basic block note. */
1423 bb_note = emit_note_before (NOTE_INSN_BASIC_BLOCK,
1424 new_bb->head);
1425 NOTE_BASIC_BLOCK (bb_note) = new_bb;
1426 new_bb->head = bb_note;
1428 update_bb_for_insn (new_bb);
1430 if (bb->global_live_at_start)
1432 new_bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1433 new_bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1434 COPY_REG_SET (new_bb->global_live_at_end, bb->global_live_at_end);
1436 /* We now have to calculate which registers are live at the end
1437 of the split basic block and at the start of the new basic
1438 block. Start with those registers that are known to be live
1439 at the end of the original basic block and get
1440 propagate_block to determine which registers are live. */
1441 COPY_REG_SET (new_bb->global_live_at_start, bb->global_live_at_end);
1442 propagate_block (new_bb, new_bb->global_live_at_start, NULL, NULL, 0);
1443 COPY_REG_SET (bb->global_live_at_end,
1444 new_bb->global_live_at_start);
1447 return new_edge;
1451 /* Split a (typically critical) edge. Return the new block.
1452 Abort on abnormal edges.
1454 ??? The code generally expects to be called on critical edges.
1455 The case of a block ending in an unconditional jump to a
1456 block with multiple predecessors is not handled optimally. */
1458 basic_block
1459 split_edge (edge_in)
1460 edge edge_in;
1462 basic_block old_pred, bb, old_succ;
1463 edge edge_out;
1464 rtx bb_note;
1465 int i, j;
1467 /* Abnormal edges cannot be split. */
1468 if ((edge_in->flags & EDGE_ABNORMAL) != 0)
1469 abort ();
1471 old_pred = edge_in->src;
1472 old_succ = edge_in->dest;
1474 /* Remove the existing edge from the destination's pred list. */
1476 edge *pp;
1477 for (pp = &old_succ->pred; *pp != edge_in; pp = &(*pp)->pred_next)
1478 continue;
1479 *pp = edge_in->pred_next;
1480 edge_in->pred_next = NULL;
1483 /* Create the new structures. */
1484 bb = (basic_block) obstack_alloc (&flow_obstack, sizeof (*bb));
1485 edge_out = (edge) xcalloc (1, sizeof (*edge_out));
1486 n_edges++;
1488 memset (bb, 0, sizeof (*bb));
1490 /* ??? This info is likely going to be out of date very soon. */
1491 if (old_succ->global_live_at_start)
1493 bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1494 bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1495 COPY_REG_SET (bb->global_live_at_start, old_succ->global_live_at_start);
1496 COPY_REG_SET (bb->global_live_at_end, old_succ->global_live_at_start);
1499 /* Wire them up. */
1500 bb->pred = edge_in;
1501 bb->succ = edge_out;
1502 bb->count = edge_in->count;
1504 edge_in->dest = bb;
1505 edge_in->flags &= ~EDGE_CRITICAL;
1507 edge_out->pred_next = old_succ->pred;
1508 edge_out->succ_next = NULL;
1509 edge_out->src = bb;
1510 edge_out->dest = old_succ;
1511 edge_out->flags = EDGE_FALLTHRU;
1512 edge_out->probability = REG_BR_PROB_BASE;
1513 edge_out->count = edge_in->count;
1515 old_succ->pred = edge_out;
1517 /* Tricky case -- if there existed a fallthru into the successor
1518 (and we're not it) we must add a new unconditional jump around
1519 the new block we're actually interested in.
1521 Further, if that edge is critical, this means a second new basic
1522 block must be created to hold it. In order to simplify correct
1523 insn placement, do this before we touch the existing basic block
1524 ordering for the block we were really wanting. */
1525 if ((edge_in->flags & EDGE_FALLTHRU) == 0)
1527 edge e;
1528 for (e = edge_out->pred_next; e; e = e->pred_next)
1529 if (e->flags & EDGE_FALLTHRU)
1530 break;
1532 if (e)
1534 basic_block jump_block;
1535 rtx pos;
1537 if ((e->flags & EDGE_CRITICAL) == 0
1538 && e->src != ENTRY_BLOCK_PTR)
1540 /* Non critical -- we can simply add a jump to the end
1541 of the existing predecessor. */
1542 jump_block = e->src;
1544 else
1546 /* We need a new block to hold the jump. The simplest
1547 way to do the bulk of the work here is to recursively
1548 call ourselves. */
1549 jump_block = split_edge (e);
1550 e = jump_block->succ;
1553 /* Now add the jump insn ... */
1554 pos = emit_jump_insn_after (gen_jump (old_succ->head),
1555 jump_block->end);
1556 jump_block->end = pos;
1557 if (basic_block_for_insn)
1558 set_block_for_insn (pos, jump_block);
1559 emit_barrier_after (pos);
1561 /* ... let jump know that label is in use, ... */
1562 JUMP_LABEL (pos) = old_succ->head;
1563 ++LABEL_NUSES (old_succ->head);
1565 /* ... and clear fallthru on the outgoing edge. */
1566 e->flags &= ~EDGE_FALLTHRU;
1568 /* Continue splitting the interesting edge. */
1572 /* Place the new block just in front of the successor. */
1573 VARRAY_GROW (basic_block_info, ++n_basic_blocks);
1574 if (old_succ == EXIT_BLOCK_PTR)
1575 j = n_basic_blocks - 1;
1576 else
1577 j = old_succ->index;
1578 for (i = n_basic_blocks - 1; i > j; --i)
1580 basic_block tmp = BASIC_BLOCK (i - 1);
1581 BASIC_BLOCK (i) = tmp;
1582 tmp->index = i;
1584 BASIC_BLOCK (i) = bb;
1585 bb->index = i;
1587 /* Create the basic block note.
1589 Where we place the note can have a noticable impact on the generated
1590 code. Consider this cfg:
1596 +->1-->2--->E
1598 +--+
1600 If we need to insert an insn on the edge from block 0 to block 1,
1601 we want to ensure the instructions we insert are outside of any
1602 loop notes that physically sit between block 0 and block 1. Otherwise
1603 we confuse the loop optimizer into thinking the loop is a phony. */
1604 if (old_succ != EXIT_BLOCK_PTR
1605 && PREV_INSN (old_succ->head)
1606 && GET_CODE (PREV_INSN (old_succ->head)) == NOTE
1607 && NOTE_LINE_NUMBER (PREV_INSN (old_succ->head)) == NOTE_INSN_LOOP_BEG)
1608 bb_note = emit_note_before (NOTE_INSN_BASIC_BLOCK,
1609 PREV_INSN (old_succ->head));
1610 else if (old_succ != EXIT_BLOCK_PTR)
1611 bb_note = emit_note_before (NOTE_INSN_BASIC_BLOCK, old_succ->head);
1612 else
1613 bb_note = emit_note_after (NOTE_INSN_BASIC_BLOCK, get_last_insn ());
1614 NOTE_BASIC_BLOCK (bb_note) = bb;
1615 bb->head = bb->end = bb_note;
1617 /* Not quite simple -- for non-fallthru edges, we must adjust the
1618 predecessor's jump instruction to target our new block. */
1619 if ((edge_in->flags & EDGE_FALLTHRU) == 0)
1621 rtx tmp, insn = old_pred->end;
1622 rtx old_label = old_succ->head;
1623 rtx new_label = gen_label_rtx ();
1625 if (GET_CODE (insn) != JUMP_INSN)
1626 abort ();
1628 /* ??? Recognize a tablejump and adjust all matching cases. */
1629 if ((tmp = JUMP_LABEL (insn)) != NULL_RTX
1630 && (tmp = NEXT_INSN (tmp)) != NULL_RTX
1631 && GET_CODE (tmp) == JUMP_INSN
1632 && (GET_CODE (PATTERN (tmp)) == ADDR_VEC
1633 || GET_CODE (PATTERN (tmp)) == ADDR_DIFF_VEC))
1635 rtvec vec;
1636 int j;
1638 if (GET_CODE (PATTERN (tmp)) == ADDR_VEC)
1639 vec = XVEC (PATTERN (tmp), 0);
1640 else
1641 vec = XVEC (PATTERN (tmp), 1);
1643 for (j = GET_NUM_ELEM (vec) - 1; j >= 0; --j)
1644 if (XEXP (RTVEC_ELT (vec, j), 0) == old_label)
1646 RTVEC_ELT (vec, j) = gen_rtx_LABEL_REF (VOIDmode, new_label);
1647 --LABEL_NUSES (old_label);
1648 ++LABEL_NUSES (new_label);
1651 /* Handle casesi dispatch insns */
1652 if ((tmp = single_set (insn)) != NULL
1653 && SET_DEST (tmp) == pc_rtx
1654 && GET_CODE (SET_SRC (tmp)) == IF_THEN_ELSE
1655 && GET_CODE (XEXP (SET_SRC (tmp), 2)) == LABEL_REF
1656 && XEXP (XEXP (SET_SRC (tmp), 2), 0) == old_label)
1658 XEXP (SET_SRC (tmp), 2) = gen_rtx_LABEL_REF (VOIDmode,
1659 new_label);
1660 --LABEL_NUSES (old_label);
1661 ++LABEL_NUSES (new_label);
1664 else
1666 /* This would have indicated an abnormal edge. */
1667 if (computed_jump_p (insn))
1668 abort ();
1670 /* A return instruction can't be redirected. */
1671 if (returnjump_p (insn))
1672 abort ();
1674 /* If the insn doesn't go where we think, we're confused. */
1675 if (JUMP_LABEL (insn) != old_label)
1676 abort ();
1678 redirect_jump (insn, new_label, 0);
1681 emit_label_before (new_label, bb_note);
1682 bb->head = new_label;
1685 return bb;
1688 /* Queue instructions for insertion on an edge between two basic blocks.
1689 The new instructions and basic blocks (if any) will not appear in the
1690 CFG until commit_edge_insertions is called. */
1692 void
1693 insert_insn_on_edge (pattern, e)
1694 rtx pattern;
1695 edge e;
1697 /* We cannot insert instructions on an abnormal critical edge.
1698 It will be easier to find the culprit if we die now. */
1699 if ((e->flags & (EDGE_ABNORMAL|EDGE_CRITICAL))
1700 == (EDGE_ABNORMAL|EDGE_CRITICAL))
1701 abort ();
1703 if (e->insns == NULL_RTX)
1704 start_sequence ();
1705 else
1706 push_to_sequence (e->insns);
1708 emit_insn (pattern);
1710 e->insns = get_insns ();
1711 end_sequence ();
1714 /* Update the CFG for the instructions queued on edge E. */
1716 static void
1717 commit_one_edge_insertion (e)
1718 edge e;
1720 rtx before = NULL_RTX, after = NULL_RTX, insns, tmp, last;
1721 basic_block bb;
1723 /* Pull the insns off the edge now since the edge might go away. */
1724 insns = e->insns;
1725 e->insns = NULL_RTX;
1727 /* Figure out where to put these things. If the destination has
1728 one predecessor, insert there. Except for the exit block. */
1729 if (e->dest->pred->pred_next == NULL
1730 && e->dest != EXIT_BLOCK_PTR)
1732 bb = e->dest;
1734 /* Get the location correct wrt a code label, and "nice" wrt
1735 a basic block note, and before everything else. */
1736 tmp = bb->head;
1737 if (GET_CODE (tmp) == CODE_LABEL)
1738 tmp = NEXT_INSN (tmp);
1739 if (NOTE_INSN_BASIC_BLOCK_P (tmp))
1740 tmp = NEXT_INSN (tmp);
1741 if (tmp == bb->head)
1742 before = tmp;
1743 else
1744 after = PREV_INSN (tmp);
1747 /* If the source has one successor and the edge is not abnormal,
1748 insert there. Except for the entry block. */
1749 else if ((e->flags & EDGE_ABNORMAL) == 0
1750 && e->src->succ->succ_next == NULL
1751 && e->src != ENTRY_BLOCK_PTR)
1753 bb = e->src;
1754 /* It is possible to have a non-simple jump here. Consider a target
1755 where some forms of unconditional jumps clobber a register. This
1756 happens on the fr30 for example.
1758 We know this block has a single successor, so we can just emit
1759 the queued insns before the jump. */
1760 if (GET_CODE (bb->end) == JUMP_INSN)
1762 before = bb->end;
1764 else
1766 /* We'd better be fallthru, or we've lost track of what's what. */
1767 if ((e->flags & EDGE_FALLTHRU) == 0)
1768 abort ();
1770 after = bb->end;
1774 /* Otherwise we must split the edge. */
1775 else
1777 bb = split_edge (e);
1778 after = bb->end;
1781 /* Now that we've found the spot, do the insertion. */
1783 /* Set the new block number for these insns, if structure is allocated. */
1784 if (basic_block_for_insn)
1786 rtx i;
1787 for (i = insns; i != NULL_RTX; i = NEXT_INSN (i))
1788 set_block_for_insn (i, bb);
1791 if (before)
1793 emit_insns_before (insns, before);
1794 if (before == bb->head)
1795 bb->head = insns;
1797 last = prev_nonnote_insn (before);
1799 else
1801 last = emit_insns_after (insns, after);
1802 if (after == bb->end)
1803 bb->end = last;
1806 if (returnjump_p (last))
1808 /* ??? Remove all outgoing edges from BB and add one for EXIT.
1809 This is not currently a problem because this only happens
1810 for the (single) epilogue, which already has a fallthru edge
1811 to EXIT. */
1813 e = bb->succ;
1814 if (e->dest != EXIT_BLOCK_PTR
1815 || e->succ_next != NULL
1816 || (e->flags & EDGE_FALLTHRU) == 0)
1817 abort ();
1818 e->flags &= ~EDGE_FALLTHRU;
1820 emit_barrier_after (last);
1821 bb->end = last;
1823 if (before)
1824 flow_delete_insn (before);
1826 else if (GET_CODE (last) == JUMP_INSN)
1827 abort ();
1830 /* Update the CFG for all queued instructions. */
1832 void
1833 commit_edge_insertions ()
1835 int i;
1836 basic_block bb;
1838 #ifdef ENABLE_CHECKING
1839 verify_flow_info ();
1840 #endif
1842 i = -1;
1843 bb = ENTRY_BLOCK_PTR;
1844 while (1)
1846 edge e, next;
1848 for (e = bb->succ; e; e = next)
1850 next = e->succ_next;
1851 if (e->insns)
1852 commit_one_edge_insertion (e);
1855 if (++i >= n_basic_blocks)
1856 break;
1857 bb = BASIC_BLOCK (i);
1861 /* Add fake edges to the function exit for any non constant calls in
1862 the bitmap of blocks specified by BLOCKS or to the whole CFG if
1863 BLOCKS is zero. Return the nuber of blocks that were split. */
1866 flow_call_edges_add (blocks)
1867 sbitmap blocks;
1869 int i;
1870 int blocks_split = 0;
1871 int bb_num = 0;
1872 basic_block *bbs;
1874 /* Map bb indicies into basic block pointers since split_block
1875 will renumber the basic blocks. */
1877 bbs = xmalloc (n_basic_blocks * sizeof (*bbs));
1879 if (! blocks)
1881 for (i = 0; i < n_basic_blocks; i++)
1882 bbs[bb_num++] = BASIC_BLOCK (i);
1884 else
1886 EXECUTE_IF_SET_IN_SBITMAP (blocks, 0, i,
1888 bbs[bb_num++] = BASIC_BLOCK (i);
1893 /* Now add fake edges to the function exit for any non constant
1894 calls since there is no way that we can determine if they will
1895 return or not... */
1897 for (i = 0; i < bb_num; i++)
1899 basic_block bb = bbs[i];
1900 rtx insn;
1901 rtx prev_insn;
1903 for (insn = bb->end; ; insn = prev_insn)
1905 prev_insn = PREV_INSN (insn);
1906 if (GET_CODE (insn) == CALL_INSN && ! CONST_CALL_P (insn))
1908 edge e;
1910 /* Note that the following may create a new basic block
1911 and renumber the existing basic blocks. */
1912 e = split_block (bb, insn);
1913 if (e)
1914 blocks_split++;
1916 make_edge (NULL, bb, EXIT_BLOCK_PTR, EDGE_FAKE);
1918 if (insn == bb->head)
1919 break;
1923 if (blocks_split)
1924 verify_flow_info ();
1926 free (bbs);
1927 return blocks_split;
1930 /* Delete all unreachable basic blocks. */
1932 static void
1933 delete_unreachable_blocks ()
1935 basic_block *worklist, *tos;
1936 edge e;
1937 int i, n;
1939 n = n_basic_blocks;
1940 tos = worklist = (basic_block *) xmalloc (sizeof (basic_block) * n);
1942 /* Use basic_block->aux as a marker. Clear them all. */
1944 for (i = 0; i < n; ++i)
1945 BASIC_BLOCK (i)->aux = NULL;
1947 /* Add our starting points to the worklist. Almost always there will
1948 be only one. It isn't inconcievable that we might one day directly
1949 support Fortran alternate entry points. */
1951 for (e = ENTRY_BLOCK_PTR->succ; e; e = e->succ_next)
1953 *tos++ = e->dest;
1955 /* Mark the block with a handy non-null value. */
1956 e->dest->aux = e;
1959 /* Iterate: find everything reachable from what we've already seen. */
1961 while (tos != worklist)
1963 basic_block b = *--tos;
1965 for (e = b->succ; e; e = e->succ_next)
1966 if (!e->dest->aux)
1968 *tos++ = e->dest;
1969 e->dest->aux = e;
1973 /* Delete all unreachable basic blocks. Count down so that we
1974 don't interfere with the block renumbering that happens in
1975 flow_delete_block. */
1977 for (i = n - 1; i >= 0; --i)
1979 basic_block b = BASIC_BLOCK (i);
1981 if (b->aux != NULL)
1982 /* This block was found. Tidy up the mark. */
1983 b->aux = NULL;
1984 else
1985 flow_delete_block (b);
1988 tidy_fallthru_edges ();
1990 free (worklist);
1993 /* Return true if NOTE is not one of the ones that must be kept paired,
1994 so that we may simply delete them. */
1996 static int
1997 can_delete_note_p (note)
1998 rtx note;
2000 return (NOTE_LINE_NUMBER (note) == NOTE_INSN_DELETED
2001 || NOTE_LINE_NUMBER (note) == NOTE_INSN_BASIC_BLOCK);
2004 /* Unlink a chain of insns between START and FINISH, leaving notes
2005 that must be paired. */
2007 void
2008 flow_delete_insn_chain (start, finish)
2009 rtx start, finish;
2011 /* Unchain the insns one by one. It would be quicker to delete all
2012 of these with a single unchaining, rather than one at a time, but
2013 we need to keep the NOTE's. */
2015 rtx next;
2017 while (1)
2019 next = NEXT_INSN (start);
2020 if (GET_CODE (start) == NOTE && !can_delete_note_p (start))
2022 else if (GET_CODE (start) == CODE_LABEL
2023 && ! can_delete_label_p (start))
2025 const char *name = LABEL_NAME (start);
2026 PUT_CODE (start, NOTE);
2027 NOTE_LINE_NUMBER (start) = NOTE_INSN_DELETED_LABEL;
2028 NOTE_SOURCE_FILE (start) = name;
2030 else
2031 next = flow_delete_insn (start);
2033 if (start == finish)
2034 break;
2035 start = next;
2039 /* Delete the insns in a (non-live) block. We physically delete every
2040 non-deleted-note insn, and update the flow graph appropriately.
2042 Return nonzero if we deleted an exception handler. */
2044 /* ??? Preserving all such notes strikes me as wrong. It would be nice
2045 to post-process the stream to remove empty blocks, loops, ranges, etc. */
2048 flow_delete_block (b)
2049 basic_block b;
2051 int deleted_handler = 0;
2052 rtx insn, end, tmp;
2054 /* If the head of this block is a CODE_LABEL, then it might be the
2055 label for an exception handler which can't be reached.
2057 We need to remove the label from the exception_handler_label list
2058 and remove the associated NOTE_INSN_EH_REGION_BEG and
2059 NOTE_INSN_EH_REGION_END notes. */
2061 insn = b->head;
2063 never_reached_warning (insn);
2065 if (GET_CODE (insn) == CODE_LABEL)
2066 maybe_remove_eh_handler (insn);
2068 /* Include any jump table following the basic block. */
2069 end = b->end;
2070 if (GET_CODE (end) == JUMP_INSN
2071 && (tmp = JUMP_LABEL (end)) != NULL_RTX
2072 && (tmp = NEXT_INSN (tmp)) != NULL_RTX
2073 && GET_CODE (tmp) == JUMP_INSN
2074 && (GET_CODE (PATTERN (tmp)) == ADDR_VEC
2075 || GET_CODE (PATTERN (tmp)) == ADDR_DIFF_VEC))
2076 end = tmp;
2078 /* Include any barrier that may follow the basic block. */
2079 tmp = next_nonnote_insn (end);
2080 if (tmp && GET_CODE (tmp) == BARRIER)
2081 end = tmp;
2083 /* Selectively delete the entire chain. */
2084 flow_delete_insn_chain (insn, end);
2086 /* Remove the edges into and out of this block. Note that there may
2087 indeed be edges in, if we are removing an unreachable loop. */
2089 edge e, next, *q;
2091 for (e = b->pred; e; e = next)
2093 for (q = &e->src->succ; *q != e; q = &(*q)->succ_next)
2094 continue;
2095 *q = e->succ_next;
2096 next = e->pred_next;
2097 n_edges--;
2098 free (e);
2100 for (e = b->succ; e; e = next)
2102 for (q = &e->dest->pred; *q != e; q = &(*q)->pred_next)
2103 continue;
2104 *q = e->pred_next;
2105 next = e->succ_next;
2106 n_edges--;
2107 free (e);
2110 b->pred = NULL;
2111 b->succ = NULL;
2114 /* Remove the basic block from the array, and compact behind it. */
2115 expunge_block (b);
2117 return deleted_handler;
2120 /* Remove block B from the basic block array and compact behind it. */
2122 static void
2123 expunge_block (b)
2124 basic_block b;
2126 int i, n = n_basic_blocks;
2128 for (i = b->index; i + 1 < n; ++i)
2130 basic_block x = BASIC_BLOCK (i + 1);
2131 BASIC_BLOCK (i) = x;
2132 x->index = i;
2135 basic_block_info->num_elements--;
2136 n_basic_blocks--;
2139 /* Delete INSN by patching it out. Return the next insn. */
2142 flow_delete_insn (insn)
2143 rtx insn;
2145 rtx prev = PREV_INSN (insn);
2146 rtx next = NEXT_INSN (insn);
2147 rtx note;
2149 PREV_INSN (insn) = NULL_RTX;
2150 NEXT_INSN (insn) = NULL_RTX;
2151 INSN_DELETED_P (insn) = 1;
2153 if (prev)
2154 NEXT_INSN (prev) = next;
2155 if (next)
2156 PREV_INSN (next) = prev;
2157 else
2158 set_last_insn (prev);
2160 if (GET_CODE (insn) == CODE_LABEL)
2161 remove_node_from_expr_list (insn, &nonlocal_goto_handler_labels);
2163 /* If deleting a jump, decrement the use count of the label. Deleting
2164 the label itself should happen in the normal course of block merging. */
2165 if (GET_CODE (insn) == JUMP_INSN
2166 && JUMP_LABEL (insn)
2167 && GET_CODE (JUMP_LABEL (insn)) == CODE_LABEL)
2168 LABEL_NUSES (JUMP_LABEL (insn))--;
2170 /* Also if deleting an insn that references a label. */
2171 else if ((note = find_reg_note (insn, REG_LABEL, NULL_RTX)) != NULL_RTX
2172 && GET_CODE (XEXP (note, 0)) == CODE_LABEL)
2173 LABEL_NUSES (XEXP (note, 0))--;
2175 return next;
2178 /* True if a given label can be deleted. */
2180 static int
2181 can_delete_label_p (label)
2182 rtx label;
2184 rtx x;
2186 if (LABEL_PRESERVE_P (label))
2187 return 0;
2189 for (x = forced_labels; x; x = XEXP (x, 1))
2190 if (label == XEXP (x, 0))
2191 return 0;
2192 for (x = label_value_list; x; x = XEXP (x, 1))
2193 if (label == XEXP (x, 0))
2194 return 0;
2195 for (x = exception_handler_labels; x; x = XEXP (x, 1))
2196 if (label == XEXP (x, 0))
2197 return 0;
2199 /* User declared labels must be preserved. */
2200 if (LABEL_NAME (label) != 0)
2201 return 0;
2203 return 1;
2206 static int
2207 tail_recursion_label_p (label)
2208 rtx label;
2210 rtx x;
2212 for (x = tail_recursion_label_list; x; x = XEXP (x, 1))
2213 if (label == XEXP (x, 0))
2214 return 1;
2216 return 0;
2219 /* Blocks A and B are to be merged into a single block A. The insns
2220 are already contiguous, hence `nomove'. */
2222 void
2223 merge_blocks_nomove (a, b)
2224 basic_block a, b;
2226 edge e;
2227 rtx b_head, b_end, a_end;
2228 rtx del_first = NULL_RTX, del_last = NULL_RTX;
2229 int b_empty = 0;
2231 /* If there was a CODE_LABEL beginning B, delete it. */
2232 b_head = b->head;
2233 b_end = b->end;
2234 if (GET_CODE (b_head) == CODE_LABEL)
2236 /* Detect basic blocks with nothing but a label. This can happen
2237 in particular at the end of a function. */
2238 if (b_head == b_end)
2239 b_empty = 1;
2240 del_first = del_last = b_head;
2241 b_head = NEXT_INSN (b_head);
2244 /* Delete the basic block note. */
2245 if (NOTE_INSN_BASIC_BLOCK_P (b_head))
2247 if (b_head == b_end)
2248 b_empty = 1;
2249 if (! del_last)
2250 del_first = b_head;
2251 del_last = b_head;
2252 b_head = NEXT_INSN (b_head);
2255 /* If there was a jump out of A, delete it. */
2256 a_end = a->end;
2257 if (GET_CODE (a_end) == JUMP_INSN)
2259 rtx prev;
2261 for (prev = PREV_INSN (a_end); ; prev = PREV_INSN (prev))
2262 if (GET_CODE (prev) != NOTE
2263 || NOTE_LINE_NUMBER (prev) == NOTE_INSN_BASIC_BLOCK
2264 || prev == a->head)
2265 break;
2267 del_first = a_end;
2269 #ifdef HAVE_cc0
2270 /* If this was a conditional jump, we need to also delete
2271 the insn that set cc0. */
2272 if (prev && sets_cc0_p (prev))
2274 rtx tmp = prev;
2275 prev = prev_nonnote_insn (prev);
2276 if (!prev)
2277 prev = a->head;
2278 del_first = tmp;
2280 #endif
2282 a_end = prev;
2284 else if (GET_CODE (NEXT_INSN (a_end)) == BARRIER)
2285 del_first = NEXT_INSN (a_end);
2287 /* Delete everything marked above as well as crap that might be
2288 hanging out between the two blocks. */
2289 flow_delete_insn_chain (del_first, del_last);
2291 /* Normally there should only be one successor of A and that is B, but
2292 partway though the merge of blocks for conditional_execution we'll
2293 be merging a TEST block with THEN and ELSE successors. Free the
2294 whole lot of them and hope the caller knows what they're doing. */
2295 while (a->succ)
2296 remove_edge (a->succ);
2298 /* Adjust the edges out of B for the new owner. */
2299 for (e = b->succ; e; e = e->succ_next)
2300 e->src = a;
2301 a->succ = b->succ;
2303 /* B hasn't quite yet ceased to exist. Attempt to prevent mishap. */
2304 b->pred = b->succ = NULL;
2306 /* Reassociate the insns of B with A. */
2307 if (!b_empty)
2309 if (basic_block_for_insn)
2311 BLOCK_FOR_INSN (b_head) = a;
2312 while (b_head != b_end)
2314 b_head = NEXT_INSN (b_head);
2315 BLOCK_FOR_INSN (b_head) = a;
2318 a_end = b_end;
2320 a->end = a_end;
2322 expunge_block (b);
2325 /* Blocks A and B are to be merged into a single block. A has no incoming
2326 fallthru edge, so it can be moved before B without adding or modifying
2327 any jumps (aside from the jump from A to B). */
2329 static int
2330 merge_blocks_move_predecessor_nojumps (a, b)
2331 basic_block a, b;
2333 rtx start, end, barrier;
2334 int index;
2336 start = a->head;
2337 end = a->end;
2339 barrier = next_nonnote_insn (end);
2340 if (GET_CODE (barrier) != BARRIER)
2341 abort ();
2342 flow_delete_insn (barrier);
2344 /* Move block and loop notes out of the chain so that we do not
2345 disturb their order.
2347 ??? A better solution would be to squeeze out all the non-nested notes
2348 and adjust the block trees appropriately. Even better would be to have
2349 a tighter connection between block trees and rtl so that this is not
2350 necessary. */
2351 start = squeeze_notes (start, end);
2353 /* Scramble the insn chain. */
2354 if (end != PREV_INSN (b->head))
2355 reorder_insns (start, end, PREV_INSN (b->head));
2357 if (rtl_dump_file)
2359 fprintf (rtl_dump_file, "Moved block %d before %d and merged.\n",
2360 a->index, b->index);
2363 /* Swap the records for the two blocks around. Although we are deleting B,
2364 A is now where B was and we want to compact the BB array from where
2365 A used to be. */
2366 BASIC_BLOCK (a->index) = b;
2367 BASIC_BLOCK (b->index) = a;
2368 index = a->index;
2369 a->index = b->index;
2370 b->index = index;
2372 /* Now blocks A and B are contiguous. Merge them. */
2373 merge_blocks_nomove (a, b);
2375 return 1;
2378 /* Blocks A and B are to be merged into a single block. B has no outgoing
2379 fallthru edge, so it can be moved after A without adding or modifying
2380 any jumps (aside from the jump from A to B). */
2382 static int
2383 merge_blocks_move_successor_nojumps (a, b)
2384 basic_block a, b;
2386 rtx start, end, barrier;
2388 start = b->head;
2389 end = b->end;
2390 barrier = NEXT_INSN (end);
2392 /* Recognize a jump table following block B. */
2393 if (GET_CODE (barrier) == CODE_LABEL
2394 && NEXT_INSN (barrier)
2395 && GET_CODE (NEXT_INSN (barrier)) == JUMP_INSN
2396 && (GET_CODE (PATTERN (NEXT_INSN (barrier))) == ADDR_VEC
2397 || GET_CODE (PATTERN (NEXT_INSN (barrier))) == ADDR_DIFF_VEC))
2399 end = NEXT_INSN (barrier);
2400 barrier = NEXT_INSN (end);
2403 /* There had better have been a barrier there. Delete it. */
2404 if (GET_CODE (barrier) != BARRIER)
2405 abort ();
2406 flow_delete_insn (barrier);
2408 /* Move block and loop notes out of the chain so that we do not
2409 disturb their order.
2411 ??? A better solution would be to squeeze out all the non-nested notes
2412 and adjust the block trees appropriately. Even better would be to have
2413 a tighter connection between block trees and rtl so that this is not
2414 necessary. */
2415 start = squeeze_notes (start, end);
2417 /* Scramble the insn chain. */
2418 reorder_insns (start, end, a->end);
2420 /* Now blocks A and B are contiguous. Merge them. */
2421 merge_blocks_nomove (a, b);
2423 if (rtl_dump_file)
2425 fprintf (rtl_dump_file, "Moved block %d after %d and merged.\n",
2426 b->index, a->index);
2429 return 1;
2432 /* Attempt to merge basic blocks that are potentially non-adjacent.
2433 Return true iff the attempt succeeded. */
2435 static int
2436 merge_blocks (e, b, c)
2437 edge e;
2438 basic_block b, c;
2440 /* If C has a tail recursion label, do not merge. There is no
2441 edge recorded from the call_placeholder back to this label, as
2442 that would make optimize_sibling_and_tail_recursive_calls more
2443 complex for no gain. */
2444 if (GET_CODE (c->head) == CODE_LABEL
2445 && tail_recursion_label_p (c->head))
2446 return 0;
2448 /* If B has a fallthru edge to C, no need to move anything. */
2449 if (e->flags & EDGE_FALLTHRU)
2451 merge_blocks_nomove (b, c);
2453 if (rtl_dump_file)
2455 fprintf (rtl_dump_file, "Merged %d and %d without moving.\n",
2456 b->index, c->index);
2459 return 1;
2461 else
2463 edge tmp_edge;
2464 int c_has_outgoing_fallthru;
2465 int b_has_incoming_fallthru;
2467 /* We must make sure to not munge nesting of exception regions,
2468 lexical blocks, and loop notes.
2470 The first is taken care of by requiring that the active eh
2471 region at the end of one block always matches the active eh
2472 region at the beginning of the next block.
2474 The later two are taken care of by squeezing out all the notes. */
2476 /* ??? A throw/catch edge (or any abnormal edge) should be rarely
2477 executed and we may want to treat blocks which have two out
2478 edges, one normal, one abnormal as only having one edge for
2479 block merging purposes. */
2481 for (tmp_edge = c->succ; tmp_edge; tmp_edge = tmp_edge->succ_next)
2482 if (tmp_edge->flags & EDGE_FALLTHRU)
2483 break;
2484 c_has_outgoing_fallthru = (tmp_edge != NULL);
2486 for (tmp_edge = b->pred; tmp_edge; tmp_edge = tmp_edge->pred_next)
2487 if (tmp_edge->flags & EDGE_FALLTHRU)
2488 break;
2489 b_has_incoming_fallthru = (tmp_edge != NULL);
2491 /* If B does not have an incoming fallthru, then it can be moved
2492 immediately before C without introducing or modifying jumps.
2493 C cannot be the first block, so we do not have to worry about
2494 accessing a non-existent block. */
2495 if (! b_has_incoming_fallthru)
2496 return merge_blocks_move_predecessor_nojumps (b, c);
2498 /* Otherwise, we're going to try to move C after B. If C does
2499 not have an outgoing fallthru, then it can be moved
2500 immediately after B without introducing or modifying jumps. */
2501 if (! c_has_outgoing_fallthru)
2502 return merge_blocks_move_successor_nojumps (b, c);
2504 /* Otherwise, we'll need to insert an extra jump, and possibly
2505 a new block to contain it. */
2506 /* ??? Not implemented yet. */
2508 return 0;
2512 /* Top level driver for merge_blocks. */
2514 static void
2515 try_merge_blocks ()
2517 int i;
2519 /* Attempt to merge blocks as made possible by edge removal. If a block
2520 has only one successor, and the successor has only one predecessor,
2521 they may be combined. */
2523 for (i = 0; i < n_basic_blocks;)
2525 basic_block c, b = BASIC_BLOCK (i);
2526 edge s;
2528 /* A loop because chains of blocks might be combineable. */
2529 while ((s = b->succ) != NULL
2530 && s->succ_next == NULL
2531 && (s->flags & EDGE_EH) == 0
2532 && (c = s->dest) != EXIT_BLOCK_PTR
2533 && c->pred->pred_next == NULL
2534 /* If the jump insn has side effects, we can't kill the edge. */
2535 && (GET_CODE (b->end) != JUMP_INSN
2536 || onlyjump_p (b->end))
2537 && merge_blocks (s, b, c))
2538 continue;
2540 /* Don't get confused by the index shift caused by deleting blocks. */
2541 i = b->index + 1;
2545 /* The given edge should potentially be a fallthru edge. If that is in
2546 fact true, delete the jump and barriers that are in the way. */
2548 void
2549 tidy_fallthru_edge (e, b, c)
2550 edge e;
2551 basic_block b, c;
2553 rtx q;
2555 /* ??? In a late-running flow pass, other folks may have deleted basic
2556 blocks by nopping out blocks, leaving multiple BARRIERs between here
2557 and the target label. They ought to be chastized and fixed.
2559 We can also wind up with a sequence of undeletable labels between
2560 one block and the next.
2562 So search through a sequence of barriers, labels, and notes for
2563 the head of block C and assert that we really do fall through. */
2565 if (next_real_insn (b->end) != next_real_insn (PREV_INSN (c->head)))
2566 return;
2568 /* Remove what will soon cease being the jump insn from the source block.
2569 If block B consisted only of this single jump, turn it into a deleted
2570 note. */
2571 q = b->end;
2572 if (GET_CODE (q) == JUMP_INSN
2573 && onlyjump_p (q)
2574 && (any_uncondjump_p (q)
2575 || (b->succ == e && e->succ_next == NULL)))
2577 #ifdef HAVE_cc0
2578 /* If this was a conditional jump, we need to also delete
2579 the insn that set cc0. */
2580 if (any_condjump_p (q) && sets_cc0_p (PREV_INSN (q)))
2581 q = PREV_INSN (q);
2582 #endif
2584 if (b->head == q)
2586 PUT_CODE (q, NOTE);
2587 NOTE_LINE_NUMBER (q) = NOTE_INSN_DELETED;
2588 NOTE_SOURCE_FILE (q) = 0;
2590 else
2592 q = PREV_INSN (q);
2594 /* We don't want a block to end on a line-number note since that has
2595 the potential of changing the code between -g and not -g. */
2596 while (GET_CODE (q) == NOTE && NOTE_LINE_NUMBER (q) >= 0)
2597 q = PREV_INSN (q);
2600 b->end = q;
2603 /* Selectively unlink the sequence. */
2604 if (q != PREV_INSN (c->head))
2605 flow_delete_insn_chain (NEXT_INSN (q), PREV_INSN (c->head));
2607 e->flags |= EDGE_FALLTHRU;
2610 /* Fix up edges that now fall through, or rather should now fall through
2611 but previously required a jump around now deleted blocks. Simplify
2612 the search by only examining blocks numerically adjacent, since this
2613 is how find_basic_blocks created them. */
2615 static void
2616 tidy_fallthru_edges ()
2618 int i;
2620 for (i = 1; i < n_basic_blocks; ++i)
2622 basic_block b = BASIC_BLOCK (i - 1);
2623 basic_block c = BASIC_BLOCK (i);
2624 edge s;
2626 /* We care about simple conditional or unconditional jumps with
2627 a single successor.
2629 If we had a conditional branch to the next instruction when
2630 find_basic_blocks was called, then there will only be one
2631 out edge for the block which ended with the conditional
2632 branch (since we do not create duplicate edges).
2634 Furthermore, the edge will be marked as a fallthru because we
2635 merge the flags for the duplicate edges. So we do not want to
2636 check that the edge is not a FALLTHRU edge. */
2637 if ((s = b->succ) != NULL
2638 && ! (s->flags & EDGE_COMPLEX)
2639 && s->succ_next == NULL
2640 && s->dest == c
2641 /* If the jump insn has side effects, we can't tidy the edge. */
2642 && (GET_CODE (b->end) != JUMP_INSN
2643 || onlyjump_p (b->end)))
2644 tidy_fallthru_edge (s, b, c);
2648 /* Perform data flow analysis.
2649 F is the first insn of the function; FLAGS is a set of PROP_* flags
2650 to be used in accumulating flow info. */
2652 void
2653 life_analysis (f, file, flags)
2654 rtx f;
2655 FILE *file;
2656 int flags;
2658 #ifdef ELIMINABLE_REGS
2659 register int i;
2660 static struct {int from, to; } eliminables[] = ELIMINABLE_REGS;
2661 #endif
2663 /* Record which registers will be eliminated. We use this in
2664 mark_used_regs. */
2666 CLEAR_HARD_REG_SET (elim_reg_set);
2668 #ifdef ELIMINABLE_REGS
2669 for (i = 0; i < (int) ARRAY_SIZE (eliminables); i++)
2670 SET_HARD_REG_BIT (elim_reg_set, eliminables[i].from);
2671 #else
2672 SET_HARD_REG_BIT (elim_reg_set, FRAME_POINTER_REGNUM);
2673 #endif
2675 if (! optimize)
2676 flags &= ~(PROP_LOG_LINKS | PROP_AUTOINC);
2678 /* The post-reload life analysis have (on a global basis) the same
2679 registers live as was computed by reload itself. elimination
2680 Otherwise offsets and such may be incorrect.
2682 Reload will make some registers as live even though they do not
2683 appear in the rtl.
2685 We don't want to create new auto-incs after reload, since they
2686 are unlikely to be useful and can cause problems with shared
2687 stack slots. */
2688 if (reload_completed)
2689 flags &= ~(PROP_REG_INFO | PROP_AUTOINC);
2691 /* We want alias analysis information for local dead store elimination. */
2692 if (optimize && (flags & PROP_SCAN_DEAD_CODE))
2693 init_alias_analysis ();
2695 /* Always remove no-op moves. Do this before other processing so
2696 that we don't have to keep re-scanning them. */
2697 delete_noop_moves (f);
2699 /* Some targets can emit simpler epilogues if they know that sp was
2700 not ever modified during the function. After reload, of course,
2701 we've already emitted the epilogue so there's no sense searching. */
2702 if (! reload_completed)
2703 notice_stack_pointer_modification (f);
2705 /* Allocate and zero out data structures that will record the
2706 data from lifetime analysis. */
2707 allocate_reg_life_data ();
2708 allocate_bb_life_data ();
2710 /* Find the set of registers live on function exit. */
2711 mark_regs_live_at_end (EXIT_BLOCK_PTR->global_live_at_start);
2713 /* "Update" life info from zero. It'd be nice to begin the
2714 relaxation with just the exit and noreturn blocks, but that set
2715 is not immediately handy. */
2717 if (flags & PROP_REG_INFO)
2718 memset (regs_ever_live, 0, sizeof (regs_ever_live));
2719 update_life_info (NULL, UPDATE_LIFE_GLOBAL, flags);
2721 /* Clean up. */
2722 if (optimize && (flags & PROP_SCAN_DEAD_CODE))
2723 end_alias_analysis ();
2725 if (file)
2726 dump_flow_info (file);
2728 free_basic_block_vars (1);
2730 #ifdef ENABLE_CHECKING
2732 rtx insn;
2734 /* Search for any REG_LABEL notes whih reference deleted labels. */
2735 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
2737 rtx inote = find_reg_note (insn, REG_LABEL, NULL_RTX);
2739 if (inote && GET_CODE (inote) == NOTE_INSN_DELETED_LABEL)
2740 abort ();
2743 #endif
2746 /* A subroutine of verify_wide_reg, called through for_each_rtx.
2747 Search for REGNO. If found, abort if it is not wider than word_mode. */
2749 static int
2750 verify_wide_reg_1 (px, pregno)
2751 rtx *px;
2752 void *pregno;
2754 rtx x = *px;
2755 unsigned int regno = *(int *) pregno;
2757 if (GET_CODE (x) == REG && REGNO (x) == regno)
2759 if (GET_MODE_BITSIZE (GET_MODE (x)) <= BITS_PER_WORD)
2760 abort ();
2761 return 1;
2763 return 0;
2766 /* A subroutine of verify_local_live_at_start. Search through insns
2767 between HEAD and END looking for register REGNO. */
2769 static void
2770 verify_wide_reg (regno, head, end)
2771 int regno;
2772 rtx head, end;
2774 while (1)
2776 if (INSN_P (head)
2777 && for_each_rtx (&PATTERN (head), verify_wide_reg_1, &regno))
2778 return;
2779 if (head == end)
2780 break;
2781 head = NEXT_INSN (head);
2784 /* We didn't find the register at all. Something's way screwy. */
2785 if (rtl_dump_file)
2786 fprintf (rtl_dump_file, "Aborting in verify_wide_reg; reg %d\n", regno);
2787 print_rtl_and_abort ();
2790 /* A subroutine of update_life_info. Verify that there are no untoward
2791 changes in live_at_start during a local update. */
2793 static void
2794 verify_local_live_at_start (new_live_at_start, bb)
2795 regset new_live_at_start;
2796 basic_block bb;
2798 if (reload_completed)
2800 /* After reload, there are no pseudos, nor subregs of multi-word
2801 registers. The regsets should exactly match. */
2802 if (! REG_SET_EQUAL_P (new_live_at_start, bb->global_live_at_start))
2804 if (rtl_dump_file)
2806 fprintf (rtl_dump_file,
2807 "live_at_start mismatch in bb %d, aborting\n",
2808 bb->index);
2809 debug_bitmap_file (rtl_dump_file, bb->global_live_at_start);
2810 debug_bitmap_file (rtl_dump_file, new_live_at_start);
2812 print_rtl_and_abort ();
2815 else
2817 int i;
2819 /* Find the set of changed registers. */
2820 XOR_REG_SET (new_live_at_start, bb->global_live_at_start);
2822 EXECUTE_IF_SET_IN_REG_SET (new_live_at_start, 0, i,
2824 /* No registers should die. */
2825 if (REGNO_REG_SET_P (bb->global_live_at_start, i))
2827 if (rtl_dump_file)
2828 fprintf (rtl_dump_file,
2829 "Register %d died unexpectedly in block %d\n", i,
2830 bb->index);
2831 print_rtl_and_abort ();
2834 /* Verify that the now-live register is wider than word_mode. */
2835 verify_wide_reg (i, bb->head, bb->end);
2840 /* Updates life information starting with the basic blocks set in BLOCKS.
2841 If BLOCKS is null, consider it to be the universal set.
2843 If EXTENT is UPDATE_LIFE_LOCAL, such as after splitting or peepholeing,
2844 we are only expecting local modifications to basic blocks. If we find
2845 extra registers live at the beginning of a block, then we either killed
2846 useful data, or we have a broken split that wants data not provided.
2847 If we find registers removed from live_at_start, that means we have
2848 a broken peephole that is killing a register it shouldn't.
2850 ??? This is not true in one situation -- when a pre-reload splitter
2851 generates subregs of a multi-word pseudo, current life analysis will
2852 lose the kill. So we _can_ have a pseudo go live. How irritating.
2854 Including PROP_REG_INFO does not properly refresh regs_ever_live
2855 unless the caller resets it to zero. */
2857 void
2858 update_life_info (blocks, extent, prop_flags)
2859 sbitmap blocks;
2860 enum update_life_extent extent;
2861 int prop_flags;
2863 regset tmp;
2864 regset_head tmp_head;
2865 int i;
2867 tmp = INITIALIZE_REG_SET (tmp_head);
2869 /* For a global update, we go through the relaxation process again. */
2870 if (extent != UPDATE_LIFE_LOCAL)
2872 calculate_global_regs_live (blocks, blocks,
2873 prop_flags & PROP_SCAN_DEAD_CODE);
2875 /* If asked, remove notes from the blocks we'll update. */
2876 if (extent == UPDATE_LIFE_GLOBAL_RM_NOTES)
2877 count_or_remove_death_notes (blocks, 1);
2880 if (blocks)
2882 EXECUTE_IF_SET_IN_SBITMAP (blocks, 0, i,
2884 basic_block bb = BASIC_BLOCK (i);
2886 COPY_REG_SET (tmp, bb->global_live_at_end);
2887 propagate_block (bb, tmp, NULL, NULL, prop_flags);
2889 if (extent == UPDATE_LIFE_LOCAL)
2890 verify_local_live_at_start (tmp, bb);
2893 else
2895 for (i = n_basic_blocks - 1; i >= 0; --i)
2897 basic_block bb = BASIC_BLOCK (i);
2899 COPY_REG_SET (tmp, bb->global_live_at_end);
2900 propagate_block (bb, tmp, NULL, NULL, prop_flags);
2902 if (extent == UPDATE_LIFE_LOCAL)
2903 verify_local_live_at_start (tmp, bb);
2907 FREE_REG_SET (tmp);
2909 if (prop_flags & PROP_REG_INFO)
2911 /* The only pseudos that are live at the beginning of the function
2912 are those that were not set anywhere in the function. local-alloc
2913 doesn't know how to handle these correctly, so mark them as not
2914 local to any one basic block. */
2915 EXECUTE_IF_SET_IN_REG_SET (ENTRY_BLOCK_PTR->global_live_at_end,
2916 FIRST_PSEUDO_REGISTER, i,
2917 { REG_BASIC_BLOCK (i) = REG_BLOCK_GLOBAL; });
2919 /* We have a problem with any pseudoreg that lives across the setjmp.
2920 ANSI says that if a user variable does not change in value between
2921 the setjmp and the longjmp, then the longjmp preserves it. This
2922 includes longjmp from a place where the pseudo appears dead.
2923 (In principle, the value still exists if it is in scope.)
2924 If the pseudo goes in a hard reg, some other value may occupy
2925 that hard reg where this pseudo is dead, thus clobbering the pseudo.
2926 Conclusion: such a pseudo must not go in a hard reg. */
2927 EXECUTE_IF_SET_IN_REG_SET (regs_live_at_setjmp,
2928 FIRST_PSEUDO_REGISTER, i,
2930 if (regno_reg_rtx[i] != 0)
2932 REG_LIVE_LENGTH (i) = -1;
2933 REG_BASIC_BLOCK (i) = REG_BLOCK_UNKNOWN;
2939 /* Free the variables allocated by find_basic_blocks.
2941 KEEP_HEAD_END_P is non-zero if basic_block_info is not to be freed. */
2943 void
2944 free_basic_block_vars (keep_head_end_p)
2945 int keep_head_end_p;
2947 if (basic_block_for_insn)
2949 VARRAY_FREE (basic_block_for_insn);
2950 basic_block_for_insn = NULL;
2953 if (! keep_head_end_p)
2955 clear_edges ();
2956 VARRAY_FREE (basic_block_info);
2957 n_basic_blocks = 0;
2959 ENTRY_BLOCK_PTR->aux = NULL;
2960 ENTRY_BLOCK_PTR->global_live_at_end = NULL;
2961 EXIT_BLOCK_PTR->aux = NULL;
2962 EXIT_BLOCK_PTR->global_live_at_start = NULL;
2966 /* Return nonzero if the destination of SET equals the source. */
2968 static int
2969 set_noop_p (set)
2970 rtx set;
2972 rtx src = SET_SRC (set);
2973 rtx dst = SET_DEST (set);
2975 if (GET_CODE (src) == SUBREG && GET_CODE (dst) == SUBREG)
2977 if (SUBREG_WORD (src) != SUBREG_WORD (dst))
2978 return 0;
2979 src = SUBREG_REG (src);
2980 dst = SUBREG_REG (dst);
2983 return (GET_CODE (src) == REG && GET_CODE (dst) == REG
2984 && REGNO (src) == REGNO (dst));
2987 /* Return nonzero if an insn consists only of SETs, each of which only sets a
2988 value to itself. */
2990 static int
2991 noop_move_p (insn)
2992 rtx insn;
2994 rtx pat = PATTERN (insn);
2996 /* Insns carrying these notes are useful later on. */
2997 if (find_reg_note (insn, REG_EQUAL, NULL_RTX))
2998 return 0;
3000 if (GET_CODE (pat) == SET && set_noop_p (pat))
3001 return 1;
3003 if (GET_CODE (pat) == PARALLEL)
3005 int i;
3006 /* If nothing but SETs of registers to themselves,
3007 this insn can also be deleted. */
3008 for (i = 0; i < XVECLEN (pat, 0); i++)
3010 rtx tem = XVECEXP (pat, 0, i);
3012 if (GET_CODE (tem) == USE
3013 || GET_CODE (tem) == CLOBBER)
3014 continue;
3016 if (GET_CODE (tem) != SET || ! set_noop_p (tem))
3017 return 0;
3020 return 1;
3022 return 0;
3025 /* Delete any insns that copy a register to itself. */
3027 static void
3028 delete_noop_moves (f)
3029 rtx f;
3031 rtx insn;
3032 for (insn = f; insn; insn = NEXT_INSN (insn))
3034 if (GET_CODE (insn) == INSN && noop_move_p (insn))
3036 PUT_CODE (insn, NOTE);
3037 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
3038 NOTE_SOURCE_FILE (insn) = 0;
3043 /* Determine if the stack pointer is constant over the life of the function.
3044 Only useful before prologues have been emitted. */
3046 static void
3047 notice_stack_pointer_modification_1 (x, pat, data)
3048 rtx x;
3049 rtx pat ATTRIBUTE_UNUSED;
3050 void *data ATTRIBUTE_UNUSED;
3052 if (x == stack_pointer_rtx
3053 /* The stack pointer is only modified indirectly as the result
3054 of a push until later in flow. See the comments in rtl.texi
3055 regarding Embedded Side-Effects on Addresses. */
3056 || (GET_CODE (x) == MEM
3057 && GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == 'a'
3058 && XEXP (XEXP (x, 0), 0) == stack_pointer_rtx))
3059 current_function_sp_is_unchanging = 0;
3062 static void
3063 notice_stack_pointer_modification (f)
3064 rtx f;
3066 rtx insn;
3068 /* Assume that the stack pointer is unchanging if alloca hasn't
3069 been used. */
3070 current_function_sp_is_unchanging = !current_function_calls_alloca;
3071 if (! current_function_sp_is_unchanging)
3072 return;
3074 for (insn = f; insn; insn = NEXT_INSN (insn))
3076 if (INSN_P (insn))
3078 /* Check if insn modifies the stack pointer. */
3079 note_stores (PATTERN (insn), notice_stack_pointer_modification_1,
3080 NULL);
3081 if (! current_function_sp_is_unchanging)
3082 return;
3087 /* Mark a register in SET. Hard registers in large modes get all
3088 of their component registers set as well. */
3090 static void
3091 mark_reg (reg, xset)
3092 rtx reg;
3093 void *xset;
3095 regset set = (regset) xset;
3096 int regno = REGNO (reg);
3098 if (GET_MODE (reg) == BLKmode)
3099 abort ();
3101 SET_REGNO_REG_SET (set, regno);
3102 if (regno < FIRST_PSEUDO_REGISTER)
3104 int n = HARD_REGNO_NREGS (regno, GET_MODE (reg));
3105 while (--n > 0)
3106 SET_REGNO_REG_SET (set, regno + n);
3110 /* Mark those regs which are needed at the end of the function as live
3111 at the end of the last basic block. */
3113 static void
3114 mark_regs_live_at_end (set)
3115 regset set;
3117 int i;
3119 /* If exiting needs the right stack value, consider the stack pointer
3120 live at the end of the function. */
3121 if ((HAVE_epilogue && reload_completed)
3122 || ! EXIT_IGNORE_STACK
3123 || (! FRAME_POINTER_REQUIRED
3124 && ! current_function_calls_alloca
3125 && flag_omit_frame_pointer)
3126 || current_function_sp_is_unchanging)
3128 SET_REGNO_REG_SET (set, STACK_POINTER_REGNUM);
3131 /* Mark the frame pointer if needed at the end of the function. If
3132 we end up eliminating it, it will be removed from the live list
3133 of each basic block by reload. */
3135 if (! reload_completed || frame_pointer_needed)
3137 SET_REGNO_REG_SET (set, FRAME_POINTER_REGNUM);
3138 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3139 /* If they are different, also mark the hard frame pointer as live. */
3140 if (! LOCAL_REGNO (HARD_FRAME_POINTER_REGNUM))
3141 SET_REGNO_REG_SET (set, HARD_FRAME_POINTER_REGNUM);
3142 #endif
3145 #ifdef PIC_OFFSET_TABLE_REGNUM
3146 #ifndef PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
3147 /* Many architectures have a GP register even without flag_pic.
3148 Assume the pic register is not in use, or will be handled by
3149 other means, if it is not fixed. */
3150 if (fixed_regs[PIC_OFFSET_TABLE_REGNUM])
3151 SET_REGNO_REG_SET (set, PIC_OFFSET_TABLE_REGNUM);
3152 #endif
3153 #endif
3155 /* Mark all global registers, and all registers used by the epilogue
3156 as being live at the end of the function since they may be
3157 referenced by our caller. */
3158 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3159 if (global_regs[i] || EPILOGUE_USES (i))
3160 SET_REGNO_REG_SET (set, i);
3162 if (HAVE_epilogue && reload_completed)
3164 /* Mark all call-saved registers that we actually used. */
3165 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3166 if (regs_ever_live[i] && ! call_used_regs[i] && ! LOCAL_REGNO (i))
3167 SET_REGNO_REG_SET (set, i);
3170 #ifdef EH_RETURN_DATA_REGNO
3171 /* Mark the registers that will contain data for the handler. */
3172 if (reload_completed && current_function_calls_eh_return)
3173 for (i = 0; ; ++i)
3175 unsigned regno = EH_RETURN_DATA_REGNO(i);
3176 if (regno == INVALID_REGNUM)
3177 break;
3178 SET_REGNO_REG_SET (set, regno);
3180 #endif
3181 #ifdef EH_RETURN_STACKADJ_RTX
3182 if ((! HAVE_epilogue || ! reload_completed)
3183 && current_function_calls_eh_return)
3185 rtx tmp = EH_RETURN_STACKADJ_RTX;
3186 if (tmp && REG_P (tmp))
3187 mark_reg (tmp, set);
3189 #endif
3190 #ifdef EH_RETURN_HANDLER_RTX
3191 if ((! HAVE_epilogue || ! reload_completed)
3192 && current_function_calls_eh_return)
3194 rtx tmp = EH_RETURN_HANDLER_RTX;
3195 if (tmp && REG_P (tmp))
3196 mark_reg (tmp, set);
3198 #endif
3200 /* Mark function return value. */
3201 diddle_return_value (mark_reg, set);
3204 /* Callback function for for_each_successor_phi. DATA is a regset.
3205 Sets the SRC_REGNO, the regno of the phi alternative for phi node
3206 INSN, in the regset. */
3208 static int
3209 set_phi_alternative_reg (insn, dest_regno, src_regno, data)
3210 rtx insn ATTRIBUTE_UNUSED;
3211 int dest_regno ATTRIBUTE_UNUSED;
3212 int src_regno;
3213 void *data;
3215 regset live = (regset) data;
3216 SET_REGNO_REG_SET (live, src_regno);
3217 return 0;
3220 /* Propagate global life info around the graph of basic blocks. Begin
3221 considering blocks with their corresponding bit set in BLOCKS_IN.
3222 If BLOCKS_IN is null, consider it the universal set.
3224 BLOCKS_OUT is set for every block that was changed. */
3226 static void
3227 calculate_global_regs_live (blocks_in, blocks_out, flags)
3228 sbitmap blocks_in, blocks_out;
3229 int flags;
3231 basic_block *queue, *qhead, *qtail, *qend;
3232 regset tmp, new_live_at_end, call_used;
3233 regset_head tmp_head, call_used_head;
3234 regset_head new_live_at_end_head;
3235 int i;
3237 tmp = INITIALIZE_REG_SET (tmp_head);
3238 new_live_at_end = INITIALIZE_REG_SET (new_live_at_end_head);
3239 call_used = INITIALIZE_REG_SET (call_used_head);
3241 /* Inconveniently, this is only redily available in hard reg set form. */
3242 for (i = 0; i < FIRST_PSEUDO_REGISTER; ++i)
3243 if (call_used_regs[i])
3244 SET_REGNO_REG_SET (call_used, i);
3246 /* Create a worklist. Allocate an extra slot for ENTRY_BLOCK, and one
3247 because the `head == tail' style test for an empty queue doesn't
3248 work with a full queue. */
3249 queue = (basic_block *) xmalloc ((n_basic_blocks + 2) * sizeof (*queue));
3250 qtail = queue;
3251 qhead = qend = queue + n_basic_blocks + 2;
3253 /* Queue the blocks set in the initial mask. Do this in reverse block
3254 number order so that we are more likely for the first round to do
3255 useful work. We use AUX non-null to flag that the block is queued. */
3256 if (blocks_in)
3258 /* Clear out the garbage that might be hanging out in bb->aux. */
3259 for (i = n_basic_blocks - 1; i >= 0; --i)
3260 BASIC_BLOCK (i)->aux = NULL;
3262 EXECUTE_IF_SET_IN_SBITMAP (blocks_in, 0, i,
3264 basic_block bb = BASIC_BLOCK (i);
3265 *--qhead = bb;
3266 bb->aux = bb;
3269 else
3271 for (i = 0; i < n_basic_blocks; ++i)
3273 basic_block bb = BASIC_BLOCK (i);
3274 *--qhead = bb;
3275 bb->aux = bb;
3279 if (blocks_out)
3280 sbitmap_zero (blocks_out);
3282 while (qhead != qtail)
3284 int rescan, changed;
3285 basic_block bb;
3286 edge e;
3288 bb = *qhead++;
3289 if (qhead == qend)
3290 qhead = queue;
3291 bb->aux = NULL;
3293 /* Begin by propogating live_at_start from the successor blocks. */
3294 CLEAR_REG_SET (new_live_at_end);
3295 for (e = bb->succ; e; e = e->succ_next)
3297 basic_block sb = e->dest;
3299 /* Call-clobbered registers die across exception and call edges. */
3300 /* ??? Abnormal call edges ignored for the moment, as this gets
3301 confused by sibling call edges, which crashes reg-stack. */
3302 if (e->flags & EDGE_EH)
3304 bitmap_operation (tmp, sb->global_live_at_start,
3305 call_used, BITMAP_AND_COMPL);
3306 IOR_REG_SET (new_live_at_end, tmp);
3308 else
3309 IOR_REG_SET (new_live_at_end, sb->global_live_at_start);
3312 /* The all-important stack pointer must always be live. */
3313 SET_REGNO_REG_SET (new_live_at_end, STACK_POINTER_REGNUM);
3315 /* Before reload, there are a few registers that must be forced
3316 live everywhere -- which might not already be the case for
3317 blocks within infinite loops. */
3318 if (! reload_completed)
3320 /* Any reference to any pseudo before reload is a potential
3321 reference of the frame pointer. */
3322 SET_REGNO_REG_SET (new_live_at_end, FRAME_POINTER_REGNUM);
3324 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3325 /* Pseudos with argument area equivalences may require
3326 reloading via the argument pointer. */
3327 if (fixed_regs[ARG_POINTER_REGNUM])
3328 SET_REGNO_REG_SET (new_live_at_end, ARG_POINTER_REGNUM);
3329 #endif
3331 #ifdef PIC_OFFSET_TABLE_REGNUM
3332 /* Any constant, or pseudo with constant equivalences, may
3333 require reloading from memory using the pic register. */
3334 if (fixed_regs[PIC_OFFSET_TABLE_REGNUM])
3335 SET_REGNO_REG_SET (new_live_at_end, PIC_OFFSET_TABLE_REGNUM);
3336 #endif
3339 /* Regs used in phi nodes are not included in
3340 global_live_at_start, since they are live only along a
3341 particular edge. Set those regs that are live because of a
3342 phi node alternative corresponding to this particular block. */
3343 if (in_ssa_form)
3344 for_each_successor_phi (bb, &set_phi_alternative_reg,
3345 new_live_at_end);
3347 if (bb == ENTRY_BLOCK_PTR)
3349 COPY_REG_SET (bb->global_live_at_end, new_live_at_end);
3350 continue;
3353 /* On our first pass through this block, we'll go ahead and continue.
3354 Recognize first pass by local_set NULL. On subsequent passes, we
3355 get to skip out early if live_at_end wouldn't have changed. */
3357 if (bb->local_set == NULL)
3359 bb->local_set = OBSTACK_ALLOC_REG_SET (&flow_obstack);
3360 bb->cond_local_set = OBSTACK_ALLOC_REG_SET (&flow_obstack);
3361 rescan = 1;
3363 else
3365 /* If any bits were removed from live_at_end, we'll have to
3366 rescan the block. This wouldn't be necessary if we had
3367 precalculated local_live, however with PROP_SCAN_DEAD_CODE
3368 local_live is really dependent on live_at_end. */
3369 CLEAR_REG_SET (tmp);
3370 rescan = bitmap_operation (tmp, bb->global_live_at_end,
3371 new_live_at_end, BITMAP_AND_COMPL);
3373 if (! rescan)
3375 /* If any of the registers in the new live_at_end set are
3376 conditionally set in this basic block, we must rescan.
3377 This is because conditional lifetimes at the end of the
3378 block do not just take the live_at_end set into account,
3379 but also the liveness at the start of each successor
3380 block. We can miss changes in those sets if we only
3381 compare the new live_at_end against the previous one. */
3382 CLEAR_REG_SET (tmp);
3383 rescan = bitmap_operation (tmp, new_live_at_end,
3384 bb->cond_local_set, BITMAP_AND);
3387 if (! rescan)
3389 /* Find the set of changed bits. Take this opportunity
3390 to notice that this set is empty and early out. */
3391 CLEAR_REG_SET (tmp);
3392 changed = bitmap_operation (tmp, bb->global_live_at_end,
3393 new_live_at_end, BITMAP_XOR);
3394 if (! changed)
3395 continue;
3397 /* If any of the changed bits overlap with local_set,
3398 we'll have to rescan the block. Detect overlap by
3399 the AND with ~local_set turning off bits. */
3400 rescan = bitmap_operation (tmp, tmp, bb->local_set,
3401 BITMAP_AND_COMPL);
3405 /* Let our caller know that BB changed enough to require its
3406 death notes updated. */
3407 if (blocks_out)
3408 SET_BIT (blocks_out, bb->index);
3410 if (! rescan)
3412 /* Add to live_at_start the set of all registers in
3413 new_live_at_end that aren't in the old live_at_end. */
3415 bitmap_operation (tmp, new_live_at_end, bb->global_live_at_end,
3416 BITMAP_AND_COMPL);
3417 COPY_REG_SET (bb->global_live_at_end, new_live_at_end);
3419 changed = bitmap_operation (bb->global_live_at_start,
3420 bb->global_live_at_start,
3421 tmp, BITMAP_IOR);
3422 if (! changed)
3423 continue;
3425 else
3427 COPY_REG_SET (bb->global_live_at_end, new_live_at_end);
3429 /* Rescan the block insn by insn to turn (a copy of) live_at_end
3430 into live_at_start. */
3431 propagate_block (bb, new_live_at_end, bb->local_set,
3432 bb->cond_local_set, flags);
3434 /* If live_at start didn't change, no need to go farther. */
3435 if (REG_SET_EQUAL_P (bb->global_live_at_start, new_live_at_end))
3436 continue;
3438 COPY_REG_SET (bb->global_live_at_start, new_live_at_end);
3441 /* Queue all predecessors of BB so that we may re-examine
3442 their live_at_end. */
3443 for (e = bb->pred; e; e = e->pred_next)
3445 basic_block pb = e->src;
3446 if (pb->aux == NULL)
3448 *qtail++ = pb;
3449 if (qtail == qend)
3450 qtail = queue;
3451 pb->aux = pb;
3456 FREE_REG_SET (tmp);
3457 FREE_REG_SET (new_live_at_end);
3458 FREE_REG_SET (call_used);
3460 if (blocks_out)
3462 EXECUTE_IF_SET_IN_SBITMAP (blocks_out, 0, i,
3464 basic_block bb = BASIC_BLOCK (i);
3465 FREE_REG_SET (bb->local_set);
3466 FREE_REG_SET (bb->cond_local_set);
3469 else
3471 for (i = n_basic_blocks - 1; i >= 0; --i)
3473 basic_block bb = BASIC_BLOCK (i);
3474 FREE_REG_SET (bb->local_set);
3475 FREE_REG_SET (bb->cond_local_set);
3479 free (queue);
3482 /* Subroutines of life analysis. */
3484 /* Allocate the permanent data structures that represent the results
3485 of life analysis. Not static since used also for stupid life analysis. */
3487 static void
3488 allocate_bb_life_data ()
3490 register int i;
3492 for (i = 0; i < n_basic_blocks; i++)
3494 basic_block bb = BASIC_BLOCK (i);
3496 bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
3497 bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
3500 ENTRY_BLOCK_PTR->global_live_at_end
3501 = OBSTACK_ALLOC_REG_SET (&flow_obstack);
3502 EXIT_BLOCK_PTR->global_live_at_start
3503 = OBSTACK_ALLOC_REG_SET (&flow_obstack);
3505 regs_live_at_setjmp = OBSTACK_ALLOC_REG_SET (&flow_obstack);
3508 void
3509 allocate_reg_life_data ()
3511 int i;
3513 max_regno = max_reg_num ();
3515 /* Recalculate the register space, in case it has grown. Old style
3516 vector oriented regsets would set regset_{size,bytes} here also. */
3517 allocate_reg_info (max_regno, FALSE, FALSE);
3519 /* Reset all the data we'll collect in propagate_block and its
3520 subroutines. */
3521 for (i = 0; i < max_regno; i++)
3523 REG_N_SETS (i) = 0;
3524 REG_N_REFS (i) = 0;
3525 REG_N_DEATHS (i) = 0;
3526 REG_N_CALLS_CROSSED (i) = 0;
3527 REG_LIVE_LENGTH (i) = 0;
3528 REG_BASIC_BLOCK (i) = REG_BLOCK_UNKNOWN;
3532 /* Delete dead instructions for propagate_block. */
3534 static void
3535 propagate_block_delete_insn (bb, insn)
3536 basic_block bb;
3537 rtx insn;
3539 rtx inote = find_reg_note (insn, REG_LABEL, NULL_RTX);
3541 /* If the insn referred to a label, and that label was attached to
3542 an ADDR_VEC, it's safe to delete the ADDR_VEC. In fact, it's
3543 pretty much mandatory to delete it, because the ADDR_VEC may be
3544 referencing labels that no longer exist.
3546 INSN may reference a deleted label, particularly when a jump
3547 table has been optimized into a direct jump. There's no
3548 real good way to fix up the reference to the deleted label
3549 when the label is deleted, so we just allow it here.
3551 After dead code elimination is complete, we do search for
3552 any REG_LABEL notes which reference deleted labels as a
3553 sanity check. */
3555 if (inote && GET_CODE (inote) == CODE_LABEL)
3557 rtx label = XEXP (inote, 0);
3558 rtx next;
3560 /* The label may be forced if it has been put in the constant
3561 pool. If that is the only use we must discard the table
3562 jump following it, but not the label itself. */
3563 if (LABEL_NUSES (label) == 1 + LABEL_PRESERVE_P (label)
3564 && (next = next_nonnote_insn (label)) != NULL
3565 && GET_CODE (next) == JUMP_INSN
3566 && (GET_CODE (PATTERN (next)) == ADDR_VEC
3567 || GET_CODE (PATTERN (next)) == ADDR_DIFF_VEC))
3569 rtx pat = PATTERN (next);
3570 int diff_vec_p = GET_CODE (pat) == ADDR_DIFF_VEC;
3571 int len = XVECLEN (pat, diff_vec_p);
3572 int i;
3574 for (i = 0; i < len; i++)
3575 LABEL_NUSES (XEXP (XVECEXP (pat, diff_vec_p, i), 0))--;
3577 flow_delete_insn (next);
3581 if (bb->end == insn)
3582 bb->end = PREV_INSN (insn);
3583 flow_delete_insn (insn);
3586 /* Delete dead libcalls for propagate_block. Return the insn
3587 before the libcall. */
3589 static rtx
3590 propagate_block_delete_libcall (bb, insn, note)
3591 basic_block bb;
3592 rtx insn, note;
3594 rtx first = XEXP (note, 0);
3595 rtx before = PREV_INSN (first);
3597 if (insn == bb->end)
3598 bb->end = before;
3600 flow_delete_insn_chain (first, insn);
3601 return before;
3604 /* Update the life-status of regs for one insn. Return the previous insn. */
3607 propagate_one_insn (pbi, insn)
3608 struct propagate_block_info *pbi;
3609 rtx insn;
3611 rtx prev = PREV_INSN (insn);
3612 int flags = pbi->flags;
3613 int insn_is_dead = 0;
3614 int libcall_is_dead = 0;
3615 rtx note;
3616 int i;
3618 if (! INSN_P (insn))
3619 return prev;
3621 note = find_reg_note (insn, REG_RETVAL, NULL_RTX);
3622 if (flags & PROP_SCAN_DEAD_CODE)
3624 insn_is_dead = insn_dead_p (pbi, PATTERN (insn), 0, REG_NOTES (insn));
3625 libcall_is_dead = (insn_is_dead && note != 0
3626 && libcall_dead_p (pbi, note, insn));
3629 /* If an instruction consists of just dead store(s) on final pass,
3630 delete it. */
3631 if ((flags & PROP_KILL_DEAD_CODE) && insn_is_dead)
3633 /* If we're trying to delete a prologue or epilogue instruction
3634 that isn't flagged as possibly being dead, something is wrong.
3635 But if we are keeping the stack pointer depressed, we might well
3636 be deleting insns that are used to compute the amount to update
3637 it by, so they are fine. */
3638 if (reload_completed
3639 && !(TREE_CODE (TREE_TYPE (current_function_decl)) == FUNCTION_TYPE
3640 && (TYPE_RETURNS_STACK_DEPRESSED
3641 (TREE_TYPE (current_function_decl))))
3642 && (((HAVE_epilogue || HAVE_prologue)
3643 && prologue_epilogue_contains (insn))
3644 || (HAVE_sibcall_epilogue
3645 && sibcall_epilogue_contains (insn)))
3646 && find_reg_note (insn, REG_MAYBE_DEAD, NULL_RTX) == 0)
3647 abort ();
3649 /* Record sets. Do this even for dead instructions, since they
3650 would have killed the values if they hadn't been deleted. */
3651 mark_set_regs (pbi, PATTERN (insn), insn);
3653 /* CC0 is now known to be dead. Either this insn used it,
3654 in which case it doesn't anymore, or clobbered it,
3655 so the next insn can't use it. */
3656 pbi->cc0_live = 0;
3658 if (libcall_is_dead)
3659 prev = propagate_block_delete_libcall (pbi->bb, insn, note);
3660 else
3661 propagate_block_delete_insn (pbi->bb, insn);
3663 return prev;
3666 /* See if this is an increment or decrement that can be merged into
3667 a following memory address. */
3668 #ifdef AUTO_INC_DEC
3670 register rtx x = single_set (insn);
3672 /* Does this instruction increment or decrement a register? */
3673 if ((flags & PROP_AUTOINC)
3674 && x != 0
3675 && GET_CODE (SET_DEST (x)) == REG
3676 && (GET_CODE (SET_SRC (x)) == PLUS
3677 || GET_CODE (SET_SRC (x)) == MINUS)
3678 && XEXP (SET_SRC (x), 0) == SET_DEST (x)
3679 && GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
3680 /* Ok, look for a following memory ref we can combine with.
3681 If one is found, change the memory ref to a PRE_INC
3682 or PRE_DEC, cancel this insn, and return 1.
3683 Return 0 if nothing has been done. */
3684 && try_pre_increment_1 (pbi, insn))
3685 return prev;
3687 #endif /* AUTO_INC_DEC */
3689 CLEAR_REG_SET (pbi->new_set);
3691 /* If this is not the final pass, and this insn is copying the value of
3692 a library call and it's dead, don't scan the insns that perform the
3693 library call, so that the call's arguments are not marked live. */
3694 if (libcall_is_dead)
3696 /* Record the death of the dest reg. */
3697 mark_set_regs (pbi, PATTERN (insn), insn);
3699 insn = XEXP (note, 0);
3700 return PREV_INSN (insn);
3702 else if (GET_CODE (PATTERN (insn)) == SET
3703 && SET_DEST (PATTERN (insn)) == stack_pointer_rtx
3704 && GET_CODE (SET_SRC (PATTERN (insn))) == PLUS
3705 && XEXP (SET_SRC (PATTERN (insn)), 0) == stack_pointer_rtx
3706 && GET_CODE (XEXP (SET_SRC (PATTERN (insn)), 1)) == CONST_INT)
3707 /* We have an insn to pop a constant amount off the stack.
3708 (Such insns use PLUS regardless of the direction of the stack,
3709 and any insn to adjust the stack by a constant is always a pop.)
3710 These insns, if not dead stores, have no effect on life. */
3712 else
3714 /* Any regs live at the time of a call instruction must not go
3715 in a register clobbered by calls. Find all regs now live and
3716 record this for them. */
3718 if (GET_CODE (insn) == CALL_INSN && (flags & PROP_REG_INFO))
3719 EXECUTE_IF_SET_IN_REG_SET (pbi->reg_live, 0, i,
3720 { REG_N_CALLS_CROSSED (i)++; });
3722 /* Record sets. Do this even for dead instructions, since they
3723 would have killed the values if they hadn't been deleted. */
3724 mark_set_regs (pbi, PATTERN (insn), insn);
3726 if (GET_CODE (insn) == CALL_INSN)
3728 register int i;
3729 rtx note, cond;
3731 cond = NULL_RTX;
3732 if (GET_CODE (PATTERN (insn)) == COND_EXEC)
3733 cond = COND_EXEC_TEST (PATTERN (insn));
3735 /* Non-constant calls clobber memory. */
3736 if (! CONST_CALL_P (insn))
3738 free_EXPR_LIST_list (&pbi->mem_set_list);
3739 pbi->mem_set_list_len = 0;
3742 /* There may be extra registers to be clobbered. */
3743 for (note = CALL_INSN_FUNCTION_USAGE (insn);
3744 note;
3745 note = XEXP (note, 1))
3746 if (GET_CODE (XEXP (note, 0)) == CLOBBER)
3747 mark_set_1 (pbi, CLOBBER, XEXP (XEXP (note, 0), 0),
3748 cond, insn, pbi->flags);
3750 /* Calls change all call-used and global registers. */
3751 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3752 if (call_used_regs[i] && ! global_regs[i]
3753 && ! fixed_regs[i])
3755 /* We do not want REG_UNUSED notes for these registers. */
3756 mark_set_1 (pbi, CLOBBER, gen_rtx_REG (reg_raw_mode[i], i),
3757 cond, insn,
3758 pbi->flags & ~(PROP_DEATH_NOTES | PROP_REG_INFO));
3762 /* If an insn doesn't use CC0, it becomes dead since we assume
3763 that every insn clobbers it. So show it dead here;
3764 mark_used_regs will set it live if it is referenced. */
3765 pbi->cc0_live = 0;
3767 /* Record uses. */
3768 if (! insn_is_dead)
3769 mark_used_regs (pbi, PATTERN (insn), NULL_RTX, insn);
3771 /* Sometimes we may have inserted something before INSN (such as a move)
3772 when we make an auto-inc. So ensure we will scan those insns. */
3773 #ifdef AUTO_INC_DEC
3774 prev = PREV_INSN (insn);
3775 #endif
3777 if (! insn_is_dead && GET_CODE (insn) == CALL_INSN)
3779 register int i;
3780 rtx note, cond;
3782 cond = NULL_RTX;
3783 if (GET_CODE (PATTERN (insn)) == COND_EXEC)
3784 cond = COND_EXEC_TEST (PATTERN (insn));
3786 /* Calls use their arguments. */
3787 for (note = CALL_INSN_FUNCTION_USAGE (insn);
3788 note;
3789 note = XEXP (note, 1))
3790 if (GET_CODE (XEXP (note, 0)) == USE)
3791 mark_used_regs (pbi, XEXP (XEXP (note, 0), 0),
3792 cond, insn);
3794 /* The stack ptr is used (honorarily) by a CALL insn. */
3795 SET_REGNO_REG_SET (pbi->reg_live, STACK_POINTER_REGNUM);
3797 /* Calls may also reference any of the global registers,
3798 so they are made live. */
3799 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3800 if (global_regs[i])
3801 mark_used_reg (pbi, gen_rtx_REG (reg_raw_mode[i], i),
3802 cond, insn);
3806 /* On final pass, update counts of how many insns in which each reg
3807 is live. */
3808 if (flags & PROP_REG_INFO)
3809 EXECUTE_IF_SET_IN_REG_SET (pbi->reg_live, 0, i,
3810 { REG_LIVE_LENGTH (i)++; });
3812 return prev;
3815 /* Initialize a propagate_block_info struct for public consumption.
3816 Note that the structure itself is opaque to this file, but that
3817 the user can use the regsets provided here. */
3819 struct propagate_block_info *
3820 init_propagate_block_info (bb, live, local_set, cond_local_set, flags)
3821 basic_block bb;
3822 regset live, local_set, cond_local_set;
3823 int flags;
3825 struct propagate_block_info *pbi = xmalloc (sizeof (*pbi));
3827 pbi->bb = bb;
3828 pbi->reg_live = live;
3829 pbi->mem_set_list = NULL_RTX;
3830 pbi->mem_set_list_len = 0;
3831 pbi->local_set = local_set;
3832 pbi->cond_local_set = cond_local_set;
3833 pbi->cc0_live = 0;
3834 pbi->flags = flags;
3836 if (flags & (PROP_LOG_LINKS | PROP_AUTOINC))
3837 pbi->reg_next_use = (rtx *) xcalloc (max_reg_num (), sizeof (rtx));
3838 else
3839 pbi->reg_next_use = NULL;
3841 pbi->new_set = BITMAP_XMALLOC ();
3843 #ifdef HAVE_conditional_execution
3844 pbi->reg_cond_dead = splay_tree_new (splay_tree_compare_ints, NULL,
3845 free_reg_cond_life_info);
3846 pbi->reg_cond_reg = BITMAP_XMALLOC ();
3848 /* If this block ends in a conditional branch, for each register live
3849 from one side of the branch and not the other, record the register
3850 as conditionally dead. */
3851 if (GET_CODE (bb->end) == JUMP_INSN
3852 && any_condjump_p (bb->end))
3854 regset_head diff_head;
3855 regset diff = INITIALIZE_REG_SET (diff_head);
3856 basic_block bb_true, bb_false;
3857 rtx cond_true, cond_false, set_src;
3858 int i;
3860 /* Identify the successor blocks. */
3861 bb_true = bb->succ->dest;
3862 if (bb->succ->succ_next != NULL)
3864 bb_false = bb->succ->succ_next->dest;
3866 if (bb->succ->flags & EDGE_FALLTHRU)
3868 basic_block t = bb_false;
3869 bb_false = bb_true;
3870 bb_true = t;
3872 else if (! (bb->succ->succ_next->flags & EDGE_FALLTHRU))
3873 abort ();
3875 else
3877 /* This can happen with a conditional jump to the next insn. */
3878 if (JUMP_LABEL (bb->end) != bb_true->head)
3879 abort ();
3881 /* Simplest way to do nothing. */
3882 bb_false = bb_true;
3885 /* Extract the condition from the branch. */
3886 set_src = SET_SRC (pc_set (bb->end));
3887 cond_true = XEXP (set_src, 0);
3888 cond_false = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond_true)),
3889 GET_MODE (cond_true), XEXP (cond_true, 0),
3890 XEXP (cond_true, 1));
3891 if (GET_CODE (XEXP (set_src, 1)) == PC)
3893 rtx t = cond_false;
3894 cond_false = cond_true;
3895 cond_true = t;
3898 /* Compute which register lead different lives in the successors. */
3899 if (bitmap_operation (diff, bb_true->global_live_at_start,
3900 bb_false->global_live_at_start, BITMAP_XOR))
3902 rtx reg = XEXP (cond_true, 0);
3904 if (GET_CODE (reg) == SUBREG)
3905 reg = SUBREG_REG (reg);
3907 if (GET_CODE (reg) != REG)
3908 abort ();
3910 SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (reg));
3912 /* For each such register, mark it conditionally dead. */
3913 EXECUTE_IF_SET_IN_REG_SET
3914 (diff, 0, i,
3916 struct reg_cond_life_info *rcli;
3917 rtx cond;
3919 rcli = (struct reg_cond_life_info *) xmalloc (sizeof (*rcli));
3921 if (REGNO_REG_SET_P (bb_true->global_live_at_start, i))
3922 cond = cond_false;
3923 else
3924 cond = cond_true;
3925 rcli->condition = cond;
3926 rcli->stores = const0_rtx;
3927 rcli->orig_condition = cond;
3929 splay_tree_insert (pbi->reg_cond_dead, i,
3930 (splay_tree_value) rcli);
3934 FREE_REG_SET (diff);
3936 #endif
3938 /* If this block has no successors, any stores to the frame that aren't
3939 used later in the block are dead. So make a pass over the block
3940 recording any such that are made and show them dead at the end. We do
3941 a very conservative and simple job here. */
3942 if (optimize
3943 && ! (TREE_CODE (TREE_TYPE (current_function_decl)) == FUNCTION_TYPE
3944 && (TYPE_RETURNS_STACK_DEPRESSED
3945 (TREE_TYPE (current_function_decl))))
3946 && (flags & PROP_SCAN_DEAD_CODE)
3947 && (bb->succ == NULL
3948 || (bb->succ->succ_next == NULL
3949 && bb->succ->dest == EXIT_BLOCK_PTR
3950 && ! current_function_calls_eh_return)))
3952 rtx insn;
3953 for (insn = bb->end; insn != bb->head; insn = PREV_INSN (insn))
3954 if (GET_CODE (insn) == INSN
3955 && GET_CODE (PATTERN (insn)) == SET
3956 && GET_CODE (SET_DEST (PATTERN (insn))) == MEM)
3958 rtx mem = SET_DEST (PATTERN (insn));
3960 /* This optimization is performed by faking a store to the
3961 memory at the end of the block. This doesn't work for
3962 unchanging memories because multiple stores to unchanging
3963 memory is illegal and alias analysis doesn't consider it. */
3964 if (RTX_UNCHANGING_P (mem))
3965 continue;
3967 if (XEXP (mem, 0) == frame_pointer_rtx
3968 || (GET_CODE (XEXP (mem, 0)) == PLUS
3969 && XEXP (XEXP (mem, 0), 0) == frame_pointer_rtx
3970 && GET_CODE (XEXP (XEXP (mem, 0), 1)) == CONST_INT))
3972 #ifdef AUTO_INC_DEC
3973 /* Store a copy of mem, otherwise the address may be scrogged
3974 by find_auto_inc. This matters because insn_dead_p uses
3975 an rtx_equal_p check to determine if two addresses are
3976 the same. This works before find_auto_inc, but fails
3977 after find_auto_inc, causing discrepencies between the
3978 set of live registers calculated during the
3979 calculate_global_regs_live phase and what actually exists
3980 after flow completes, leading to aborts. */
3981 if (flags & PROP_AUTOINC)
3982 mem = shallow_copy_rtx (mem);
3983 #endif
3984 pbi->mem_set_list = alloc_EXPR_LIST (0, mem, pbi->mem_set_list);
3985 if (++pbi->mem_set_list_len >= MAX_MEM_SET_LIST_LEN)
3986 break;
3991 return pbi;
3994 /* Release a propagate_block_info struct. */
3996 void
3997 free_propagate_block_info (pbi)
3998 struct propagate_block_info *pbi;
4000 free_EXPR_LIST_list (&pbi->mem_set_list);
4002 BITMAP_XFREE (pbi->new_set);
4004 #ifdef HAVE_conditional_execution
4005 splay_tree_delete (pbi->reg_cond_dead);
4006 BITMAP_XFREE (pbi->reg_cond_reg);
4007 #endif
4009 if (pbi->reg_next_use)
4010 free (pbi->reg_next_use);
4012 free (pbi);
4015 /* Compute the registers live at the beginning of a basic block BB from
4016 those live at the end.
4018 When called, REG_LIVE contains those live at the end. On return, it
4019 contains those live at the beginning.
4021 LOCAL_SET, if non-null, will be set with all registers killed
4022 unconditionally by this basic block.
4023 Likewise, COND_LOCAL_SET, if non-null, will be set with all registers
4024 killed conditionally by this basic block. If there is any unconditional
4025 set of a register, then the corresponding bit will be set in LOCAL_SET
4026 and cleared in COND_LOCAL_SET.
4027 It is valid for LOCAL_SET and COND_LOCAL_SET to be the same set. In this
4028 case, the resulting set will be equal to the union of the two sets that
4029 would otherwise be computed. */
4031 void
4032 propagate_block (bb, live, local_set, cond_local_set, flags)
4033 basic_block bb;
4034 regset live;
4035 regset local_set;
4036 regset cond_local_set;
4037 int flags;
4039 struct propagate_block_info *pbi;
4040 rtx insn, prev;
4042 pbi = init_propagate_block_info (bb, live, local_set, cond_local_set, flags);
4044 if (flags & PROP_REG_INFO)
4046 register int i;
4048 /* Process the regs live at the end of the block.
4049 Mark them as not local to any one basic block. */
4050 EXECUTE_IF_SET_IN_REG_SET (live, 0, i,
4051 { REG_BASIC_BLOCK (i) = REG_BLOCK_GLOBAL; });
4054 /* Scan the block an insn at a time from end to beginning. */
4056 for (insn = bb->end;; insn = prev)
4058 /* If this is a call to `setjmp' et al, warn if any
4059 non-volatile datum is live. */
4060 if ((flags & PROP_REG_INFO)
4061 && GET_CODE (insn) == NOTE
4062 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_SETJMP)
4063 IOR_REG_SET (regs_live_at_setjmp, pbi->reg_live);
4065 prev = propagate_one_insn (pbi, insn);
4067 if (insn == bb->head)
4068 break;
4071 free_propagate_block_info (pbi);
4074 /* Return 1 if X (the body of an insn, or part of it) is just dead stores
4075 (SET expressions whose destinations are registers dead after the insn).
4076 NEEDED is the regset that says which regs are alive after the insn.
4078 Unless CALL_OK is non-zero, an insn is needed if it contains a CALL.
4080 If X is the entire body of an insn, NOTES contains the reg notes
4081 pertaining to the insn. */
4083 static int
4084 insn_dead_p (pbi, x, call_ok, notes)
4085 struct propagate_block_info *pbi;
4086 rtx x;
4087 int call_ok;
4088 rtx notes ATTRIBUTE_UNUSED;
4090 enum rtx_code code = GET_CODE (x);
4092 #ifdef AUTO_INC_DEC
4093 /* If flow is invoked after reload, we must take existing AUTO_INC
4094 expresions into account. */
4095 if (reload_completed)
4097 for (; notes; notes = XEXP (notes, 1))
4099 if (REG_NOTE_KIND (notes) == REG_INC)
4101 int regno = REGNO (XEXP (notes, 0));
4103 /* Don't delete insns to set global regs. */
4104 if ((regno < FIRST_PSEUDO_REGISTER && global_regs[regno])
4105 || REGNO_REG_SET_P (pbi->reg_live, regno))
4106 return 0;
4110 #endif
4112 /* If setting something that's a reg or part of one,
4113 see if that register's altered value will be live. */
4115 if (code == SET)
4117 rtx r = SET_DEST (x);
4119 #ifdef HAVE_cc0
4120 if (GET_CODE (r) == CC0)
4121 return ! pbi->cc0_live;
4122 #endif
4124 /* A SET that is a subroutine call cannot be dead. */
4125 if (GET_CODE (SET_SRC (x)) == CALL)
4127 if (! call_ok)
4128 return 0;
4131 /* Don't eliminate loads from volatile memory or volatile asms. */
4132 else if (volatile_refs_p (SET_SRC (x)))
4133 return 0;
4135 if (GET_CODE (r) == MEM)
4137 rtx temp;
4139 if (MEM_VOLATILE_P (r))
4140 return 0;
4142 /* Walk the set of memory locations we are currently tracking
4143 and see if one is an identical match to this memory location.
4144 If so, this memory write is dead (remember, we're walking
4145 backwards from the end of the block to the start). Since
4146 rtx_equal_p does not check the alias set or flags, we also
4147 must have the potential for them to conflict (anti_dependence). */
4148 for (temp = pbi->mem_set_list; temp != 0; temp = XEXP (temp, 1))
4149 if (anti_dependence (r, XEXP (temp, 0)))
4151 rtx mem = XEXP (temp, 0);
4153 if (rtx_equal_p (mem, r))
4154 return 1;
4155 #ifdef AUTO_INC_DEC
4156 /* Check if memory reference matches an auto increment. Only
4157 post increment/decrement or modify are valid. */
4158 if (GET_MODE (mem) == GET_MODE (r)
4159 && (GET_CODE (XEXP (mem, 0)) == POST_DEC
4160 || GET_CODE (XEXP (mem, 0)) == POST_INC
4161 || GET_CODE (XEXP (mem, 0)) == POST_MODIFY)
4162 && GET_MODE (XEXP (mem, 0)) == GET_MODE (r)
4163 && rtx_equal_p (XEXP (XEXP (mem, 0), 0), XEXP (r, 0)))
4164 return 1;
4165 #endif
4168 else
4170 while (GET_CODE (r) == SUBREG
4171 || GET_CODE (r) == STRICT_LOW_PART
4172 || GET_CODE (r) == ZERO_EXTRACT)
4173 r = XEXP (r, 0);
4175 if (GET_CODE (r) == REG)
4177 int regno = REGNO (r);
4179 /* Obvious. */
4180 if (REGNO_REG_SET_P (pbi->reg_live, regno))
4181 return 0;
4183 /* If this is a hard register, verify that subsequent
4184 words are not needed. */
4185 if (regno < FIRST_PSEUDO_REGISTER)
4187 int n = HARD_REGNO_NREGS (regno, GET_MODE (r));
4189 while (--n > 0)
4190 if (REGNO_REG_SET_P (pbi->reg_live, regno+n))
4191 return 0;
4194 /* Don't delete insns to set global regs. */
4195 if (regno < FIRST_PSEUDO_REGISTER && global_regs[regno])
4196 return 0;
4198 /* Make sure insns to set the stack pointer aren't deleted. */
4199 if (regno == STACK_POINTER_REGNUM)
4200 return 0;
4202 /* ??? These bits might be redundant with the force live bits
4203 in calculate_global_regs_live. We would delete from
4204 sequential sets; whether this actually affects real code
4205 for anything but the stack pointer I don't know. */
4206 /* Make sure insns to set the frame pointer aren't deleted. */
4207 if (regno == FRAME_POINTER_REGNUM
4208 && (! reload_completed || frame_pointer_needed))
4209 return 0;
4210 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
4211 if (regno == HARD_FRAME_POINTER_REGNUM
4212 && (! reload_completed || frame_pointer_needed))
4213 return 0;
4214 #endif
4216 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
4217 /* Make sure insns to set arg pointer are never deleted
4218 (if the arg pointer isn't fixed, there will be a USE
4219 for it, so we can treat it normally). */
4220 if (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
4221 return 0;
4222 #endif
4224 /* Otherwise, the set is dead. */
4225 return 1;
4230 /* If performing several activities, insn is dead if each activity
4231 is individually dead. Also, CLOBBERs and USEs can be ignored; a
4232 CLOBBER or USE that's inside a PARALLEL doesn't make the insn
4233 worth keeping. */
4234 else if (code == PARALLEL)
4236 int i = XVECLEN (x, 0);
4238 for (i--; i >= 0; i--)
4239 if (GET_CODE (XVECEXP (x, 0, i)) != CLOBBER
4240 && GET_CODE (XVECEXP (x, 0, i)) != USE
4241 && ! insn_dead_p (pbi, XVECEXP (x, 0, i), call_ok, NULL_RTX))
4242 return 0;
4244 return 1;
4247 /* A CLOBBER of a pseudo-register that is dead serves no purpose. That
4248 is not necessarily true for hard registers. */
4249 else if (code == CLOBBER && GET_CODE (XEXP (x, 0)) == REG
4250 && REGNO (XEXP (x, 0)) >= FIRST_PSEUDO_REGISTER
4251 && ! REGNO_REG_SET_P (pbi->reg_live, REGNO (XEXP (x, 0))))
4252 return 1;
4254 /* We do not check other CLOBBER or USE here. An insn consisting of just
4255 a CLOBBER or just a USE should not be deleted. */
4256 return 0;
4259 /* If INSN is the last insn in a libcall, and assuming INSN is dead,
4260 return 1 if the entire library call is dead.
4261 This is true if INSN copies a register (hard or pseudo)
4262 and if the hard return reg of the call insn is dead.
4263 (The caller should have tested the destination of the SET inside
4264 INSN already for death.)
4266 If this insn doesn't just copy a register, then we don't
4267 have an ordinary libcall. In that case, cse could not have
4268 managed to substitute the source for the dest later on,
4269 so we can assume the libcall is dead.
4271 PBI is the block info giving pseudoregs live before this insn.
4272 NOTE is the REG_RETVAL note of the insn. */
4274 static int
4275 libcall_dead_p (pbi, note, insn)
4276 struct propagate_block_info *pbi;
4277 rtx note;
4278 rtx insn;
4280 rtx x = single_set (insn);
4282 if (x)
4284 register rtx r = SET_SRC (x);
4285 if (GET_CODE (r) == REG)
4287 rtx call = XEXP (note, 0);
4288 rtx call_pat;
4289 register int i;
4291 /* Find the call insn. */
4292 while (call != insn && GET_CODE (call) != CALL_INSN)
4293 call = NEXT_INSN (call);
4295 /* If there is none, do nothing special,
4296 since ordinary death handling can understand these insns. */
4297 if (call == insn)
4298 return 0;
4300 /* See if the hard reg holding the value is dead.
4301 If this is a PARALLEL, find the call within it. */
4302 call_pat = PATTERN (call);
4303 if (GET_CODE (call_pat) == PARALLEL)
4305 for (i = XVECLEN (call_pat, 0) - 1; i >= 0; i--)
4306 if (GET_CODE (XVECEXP (call_pat, 0, i)) == SET
4307 && GET_CODE (SET_SRC (XVECEXP (call_pat, 0, i))) == CALL)
4308 break;
4310 /* This may be a library call that is returning a value
4311 via invisible pointer. Do nothing special, since
4312 ordinary death handling can understand these insns. */
4313 if (i < 0)
4314 return 0;
4316 call_pat = XVECEXP (call_pat, 0, i);
4319 return insn_dead_p (pbi, call_pat, 1, REG_NOTES (call));
4322 return 1;
4325 /* Return 1 if register REGNO was used before it was set, i.e. if it is
4326 live at function entry. Don't count global register variables, variables
4327 in registers that can be used for function arg passing, or variables in
4328 fixed hard registers. */
4331 regno_uninitialized (regno)
4332 int regno;
4334 if (n_basic_blocks == 0
4335 || (regno < FIRST_PSEUDO_REGISTER
4336 && (global_regs[regno]
4337 || fixed_regs[regno]
4338 || FUNCTION_ARG_REGNO_P (regno))))
4339 return 0;
4341 return REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start, regno);
4344 /* 1 if register REGNO was alive at a place where `setjmp' was called
4345 and was set more than once or is an argument.
4346 Such regs may be clobbered by `longjmp'. */
4349 regno_clobbered_at_setjmp (regno)
4350 int regno;
4352 if (n_basic_blocks == 0)
4353 return 0;
4355 return ((REG_N_SETS (regno) > 1
4356 || REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start, regno))
4357 && REGNO_REG_SET_P (regs_live_at_setjmp, regno));
4360 /* INSN references memory, possibly using autoincrement addressing modes.
4361 Find any entries on the mem_set_list that need to be invalidated due
4362 to an address change. */
4364 static void
4365 invalidate_mems_from_autoinc (pbi, insn)
4366 struct propagate_block_info *pbi;
4367 rtx insn;
4369 rtx note = REG_NOTES (insn);
4370 for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
4372 if (REG_NOTE_KIND (note) == REG_INC)
4374 rtx temp = pbi->mem_set_list;
4375 rtx prev = NULL_RTX;
4376 rtx next;
4378 while (temp)
4380 next = XEXP (temp, 1);
4381 if (reg_overlap_mentioned_p (XEXP (note, 0), XEXP (temp, 0)))
4383 /* Splice temp out of list. */
4384 if (prev)
4385 XEXP (prev, 1) = next;
4386 else
4387 pbi->mem_set_list = next;
4388 free_EXPR_LIST_node (temp);
4389 pbi->mem_set_list_len--;
4391 else
4392 prev = temp;
4393 temp = next;
4399 /* EXP is either a MEM or a REG. Remove any dependant entries
4400 from pbi->mem_set_list. */
4402 static void
4403 invalidate_mems_from_set (pbi, exp)
4404 struct propagate_block_info *pbi;
4405 rtx exp;
4407 rtx temp = pbi->mem_set_list;
4408 rtx prev = NULL_RTX;
4409 rtx next;
4411 while (temp)
4413 next = XEXP (temp, 1);
4414 if ((GET_CODE (exp) == MEM
4415 && output_dependence (XEXP (temp, 0), exp))
4416 || (GET_CODE (exp) == REG
4417 && reg_overlap_mentioned_p (exp, XEXP (temp, 0))))
4419 /* Splice this entry out of the list. */
4420 if (prev)
4421 XEXP (prev, 1) = next;
4422 else
4423 pbi->mem_set_list = next;
4424 free_EXPR_LIST_node (temp);
4425 pbi->mem_set_list_len--;
4427 else
4428 prev = temp;
4429 temp = next;
4433 /* Process the registers that are set within X. Their bits are set to
4434 1 in the regset DEAD, because they are dead prior to this insn.
4436 If INSN is nonzero, it is the insn being processed.
4438 FLAGS is the set of operations to perform. */
4440 static void
4441 mark_set_regs (pbi, x, insn)
4442 struct propagate_block_info *pbi;
4443 rtx x, insn;
4445 rtx cond = NULL_RTX;
4446 rtx link;
4447 enum rtx_code code;
4449 if (insn)
4450 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
4452 if (REG_NOTE_KIND (link) == REG_INC)
4453 mark_set_1 (pbi, SET, XEXP (link, 0),
4454 (GET_CODE (x) == COND_EXEC
4455 ? COND_EXEC_TEST (x) : NULL_RTX),
4456 insn, pbi->flags);
4458 retry:
4459 switch (code = GET_CODE (x))
4461 case SET:
4462 case CLOBBER:
4463 mark_set_1 (pbi, code, SET_DEST (x), cond, insn, pbi->flags);
4464 return;
4466 case COND_EXEC:
4467 cond = COND_EXEC_TEST (x);
4468 x = COND_EXEC_CODE (x);
4469 goto retry;
4471 case PARALLEL:
4473 register int i;
4474 for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
4476 rtx sub = XVECEXP (x, 0, i);
4477 switch (code = GET_CODE (sub))
4479 case COND_EXEC:
4480 if (cond != NULL_RTX)
4481 abort ();
4483 cond = COND_EXEC_TEST (sub);
4484 sub = COND_EXEC_CODE (sub);
4485 if (GET_CODE (sub) != SET && GET_CODE (sub) != CLOBBER)
4486 break;
4487 /* Fall through. */
4489 case SET:
4490 case CLOBBER:
4491 mark_set_1 (pbi, code, SET_DEST (sub), cond, insn, pbi->flags);
4492 break;
4494 default:
4495 break;
4498 break;
4501 default:
4502 break;
4506 /* Process a single SET rtx, X. */
4508 static void
4509 mark_set_1 (pbi, code, reg, cond, insn, flags)
4510 struct propagate_block_info *pbi;
4511 enum rtx_code code;
4512 rtx reg, cond, insn;
4513 int flags;
4515 int regno_first = -1, regno_last = -1;
4516 unsigned long not_dead = 0;
4517 int i;
4519 /* Modifying just one hardware register of a multi-reg value or just a
4520 byte field of a register does not mean the value from before this insn
4521 is now dead. Of course, if it was dead after it's unused now. */
4523 switch (GET_CODE (reg))
4525 case PARALLEL:
4526 /* Some targets place small structures in registers for return values of
4527 functions. We have to detect this case specially here to get correct
4528 flow information. */
4529 for (i = XVECLEN (reg, 0) - 1; i >= 0; i--)
4530 if (XEXP (XVECEXP (reg, 0, i), 0) != 0)
4531 mark_set_1 (pbi, code, XEXP (XVECEXP (reg, 0, i), 0), cond, insn,
4532 flags);
4533 return;
4535 case ZERO_EXTRACT:
4536 case SIGN_EXTRACT:
4537 case STRICT_LOW_PART:
4538 /* ??? Assumes STRICT_LOW_PART not used on multi-word registers. */
4540 reg = XEXP (reg, 0);
4541 while (GET_CODE (reg) == SUBREG
4542 || GET_CODE (reg) == ZERO_EXTRACT
4543 || GET_CODE (reg) == SIGN_EXTRACT
4544 || GET_CODE (reg) == STRICT_LOW_PART);
4545 if (GET_CODE (reg) == MEM)
4546 break;
4547 not_dead = (unsigned long) REGNO_REG_SET_P (pbi->reg_live, REGNO (reg));
4548 /* Fall through. */
4550 case REG:
4551 regno_last = regno_first = REGNO (reg);
4552 if (regno_first < FIRST_PSEUDO_REGISTER)
4553 regno_last += HARD_REGNO_NREGS (regno_first, GET_MODE (reg)) - 1;
4554 break;
4556 case SUBREG:
4557 if (GET_CODE (SUBREG_REG (reg)) == REG)
4559 enum machine_mode outer_mode = GET_MODE (reg);
4560 enum machine_mode inner_mode = GET_MODE (SUBREG_REG (reg));
4562 /* Identify the range of registers affected. This is moderately
4563 tricky for hard registers. See alter_subreg. */
4565 regno_last = regno_first = REGNO (SUBREG_REG (reg));
4566 if (regno_first < FIRST_PSEUDO_REGISTER)
4568 #ifdef ALTER_HARD_SUBREG
4569 regno_first = ALTER_HARD_SUBREG (outer_mode, SUBREG_WORD (reg),
4570 inner_mode, regno_first);
4571 #else
4572 regno_first += SUBREG_WORD (reg);
4573 #endif
4574 regno_last = (regno_first
4575 + HARD_REGNO_NREGS (regno_first, outer_mode) - 1);
4577 /* Since we've just adjusted the register number ranges, make
4578 sure REG matches. Otherwise some_was_live will be clear
4579 when it shouldn't have been, and we'll create incorrect
4580 REG_UNUSED notes. */
4581 reg = gen_rtx_REG (outer_mode, regno_first);
4583 else
4585 /* If the number of words in the subreg is less than the number
4586 of words in the full register, we have a well-defined partial
4587 set. Otherwise the high bits are undefined.
4589 This is only really applicable to pseudos, since we just took
4590 care of multi-word hard registers. */
4591 if (((GET_MODE_SIZE (outer_mode)
4592 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
4593 < ((GET_MODE_SIZE (inner_mode)
4594 + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
4595 not_dead = (unsigned long) REGNO_REG_SET_P (pbi->reg_live,
4596 regno_first);
4598 reg = SUBREG_REG (reg);
4601 else
4602 reg = SUBREG_REG (reg);
4603 break;
4605 default:
4606 break;
4609 /* If this set is a MEM, then it kills any aliased writes.
4610 If this set is a REG, then it kills any MEMs which use the reg. */
4611 if (optimize && (flags & PROP_SCAN_DEAD_CODE))
4613 if (GET_CODE (reg) == MEM || GET_CODE (reg) == REG)
4614 invalidate_mems_from_set (pbi, reg);
4616 /* If the memory reference had embedded side effects (autoincrement
4617 address modes. Then we may need to kill some entries on the
4618 memory set list. */
4619 if (insn && GET_CODE (reg) == MEM)
4620 invalidate_mems_from_autoinc (pbi, insn);
4622 if (pbi->mem_set_list_len < MAX_MEM_SET_LIST_LEN
4623 && GET_CODE (reg) == MEM && ! side_effects_p (reg)
4624 /* ??? With more effort we could track conditional memory life. */
4625 && ! cond
4626 /* We do not know the size of a BLKmode store, so we do not track
4627 them for redundant store elimination. */
4628 && GET_MODE (reg) != BLKmode
4629 /* There are no REG_INC notes for SP, so we can't assume we'll see
4630 everything that invalidates it. To be safe, don't eliminate any
4631 stores though SP; none of them should be redundant anyway. */
4632 && ! reg_mentioned_p (stack_pointer_rtx, reg))
4634 #ifdef AUTO_INC_DEC
4635 /* Store a copy of mem, otherwise the address may be
4636 scrogged by find_auto_inc. */
4637 if (flags & PROP_AUTOINC)
4638 reg = shallow_copy_rtx (reg);
4639 #endif
4640 pbi->mem_set_list = alloc_EXPR_LIST (0, reg, pbi->mem_set_list);
4641 pbi->mem_set_list_len++;
4645 if (GET_CODE (reg) == REG
4646 && ! (regno_first == FRAME_POINTER_REGNUM
4647 && (! reload_completed || frame_pointer_needed))
4648 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
4649 && ! (regno_first == HARD_FRAME_POINTER_REGNUM
4650 && (! reload_completed || frame_pointer_needed))
4651 #endif
4652 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
4653 && ! (regno_first == ARG_POINTER_REGNUM && fixed_regs[regno_first])
4654 #endif
4657 int some_was_live = 0, some_was_dead = 0;
4659 for (i = regno_first; i <= regno_last; ++i)
4661 int needed_regno = REGNO_REG_SET_P (pbi->reg_live, i);
4662 if (pbi->local_set)
4664 /* Order of the set operation matters here since both
4665 sets may be the same. */
4666 CLEAR_REGNO_REG_SET (pbi->cond_local_set, i);
4667 if (cond != NULL_RTX
4668 && ! REGNO_REG_SET_P (pbi->local_set, i))
4669 SET_REGNO_REG_SET (pbi->cond_local_set, i);
4670 else
4671 SET_REGNO_REG_SET (pbi->local_set, i);
4673 if (code != CLOBBER)
4674 SET_REGNO_REG_SET (pbi->new_set, i);
4676 some_was_live |= needed_regno;
4677 some_was_dead |= ! needed_regno;
4680 #ifdef HAVE_conditional_execution
4681 /* Consider conditional death in deciding that the register needs
4682 a death note. */
4683 if (some_was_live && ! not_dead
4684 /* The stack pointer is never dead. Well, not strictly true,
4685 but it's very difficult to tell from here. Hopefully
4686 combine_stack_adjustments will fix up the most egregious
4687 errors. */
4688 && regno_first != STACK_POINTER_REGNUM)
4690 for (i = regno_first; i <= regno_last; ++i)
4691 if (! mark_regno_cond_dead (pbi, i, cond))
4692 not_dead |= ((unsigned long) 1) << (i - regno_first);
4694 #endif
4696 /* Additional data to record if this is the final pass. */
4697 if (flags & (PROP_LOG_LINKS | PROP_REG_INFO
4698 | PROP_DEATH_NOTES | PROP_AUTOINC))
4700 register rtx y;
4701 register int blocknum = pbi->bb->index;
4703 y = NULL_RTX;
4704 if (flags & (PROP_LOG_LINKS | PROP_AUTOINC))
4706 y = pbi->reg_next_use[regno_first];
4708 /* The next use is no longer next, since a store intervenes. */
4709 for (i = regno_first; i <= regno_last; ++i)
4710 pbi->reg_next_use[i] = 0;
4713 if (flags & PROP_REG_INFO)
4715 for (i = regno_first; i <= regno_last; ++i)
4717 /* Count (weighted) references, stores, etc. This counts a
4718 register twice if it is modified, but that is correct. */
4719 REG_N_SETS (i) += 1;
4720 REG_N_REFS (i) += (optimize_size ? 1
4721 : pbi->bb->loop_depth + 1);
4723 /* The insns where a reg is live are normally counted
4724 elsewhere, but we want the count to include the insn
4725 where the reg is set, and the normal counting mechanism
4726 would not count it. */
4727 REG_LIVE_LENGTH (i) += 1;
4730 /* If this is a hard reg, record this function uses the reg. */
4731 if (regno_first < FIRST_PSEUDO_REGISTER)
4733 for (i = regno_first; i <= regno_last; i++)
4734 regs_ever_live[i] = 1;
4736 else
4738 /* Keep track of which basic blocks each reg appears in. */
4739 if (REG_BASIC_BLOCK (regno_first) == REG_BLOCK_UNKNOWN)
4740 REG_BASIC_BLOCK (regno_first) = blocknum;
4741 else if (REG_BASIC_BLOCK (regno_first) != blocknum)
4742 REG_BASIC_BLOCK (regno_first) = REG_BLOCK_GLOBAL;
4746 if (! some_was_dead)
4748 if (flags & PROP_LOG_LINKS)
4750 /* Make a logical link from the next following insn
4751 that uses this register, back to this insn.
4752 The following insns have already been processed.
4754 We don't build a LOG_LINK for hard registers containing
4755 in ASM_OPERANDs. If these registers get replaced,
4756 we might wind up changing the semantics of the insn,
4757 even if reload can make what appear to be valid
4758 assignments later. */
4759 if (y && (BLOCK_NUM (y) == blocknum)
4760 && (regno_first >= FIRST_PSEUDO_REGISTER
4761 || asm_noperands (PATTERN (y)) < 0))
4762 LOG_LINKS (y) = alloc_INSN_LIST (insn, LOG_LINKS (y));
4765 else if (not_dead)
4767 else if (! some_was_live)
4769 if (flags & PROP_REG_INFO)
4770 REG_N_DEATHS (regno_first) += 1;
4772 if (flags & PROP_DEATH_NOTES)
4774 /* Note that dead stores have already been deleted
4775 when possible. If we get here, we have found a
4776 dead store that cannot be eliminated (because the
4777 same insn does something useful). Indicate this
4778 by marking the reg being set as dying here. */
4779 REG_NOTES (insn)
4780 = alloc_EXPR_LIST (REG_UNUSED, reg, REG_NOTES (insn));
4783 else
4785 if (flags & PROP_DEATH_NOTES)
4787 /* This is a case where we have a multi-word hard register
4788 and some, but not all, of the words of the register are
4789 needed in subsequent insns. Write REG_UNUSED notes
4790 for those parts that were not needed. This case should
4791 be rare. */
4793 for (i = regno_first; i <= regno_last; ++i)
4794 if (! REGNO_REG_SET_P (pbi->reg_live, i))
4795 REG_NOTES (insn)
4796 = alloc_EXPR_LIST (REG_UNUSED,
4797 gen_rtx_REG (reg_raw_mode[i], i),
4798 REG_NOTES (insn));
4803 /* Mark the register as being dead. */
4804 if (some_was_live
4805 /* The stack pointer is never dead. Well, not strictly true,
4806 but it's very difficult to tell from here. Hopefully
4807 combine_stack_adjustments will fix up the most egregious
4808 errors. */
4809 && regno_first != STACK_POINTER_REGNUM)
4811 for (i = regno_first; i <= regno_last; ++i)
4812 if (!(not_dead & (((unsigned long) 1) << (i - regno_first))))
4813 CLEAR_REGNO_REG_SET (pbi->reg_live, i);
4816 else if (GET_CODE (reg) == REG)
4818 if (flags & (PROP_LOG_LINKS | PROP_AUTOINC))
4819 pbi->reg_next_use[regno_first] = 0;
4822 /* If this is the last pass and this is a SCRATCH, show it will be dying
4823 here and count it. */
4824 else if (GET_CODE (reg) == SCRATCH)
4826 if (flags & PROP_DEATH_NOTES)
4827 REG_NOTES (insn)
4828 = alloc_EXPR_LIST (REG_UNUSED, reg, REG_NOTES (insn));
4832 #ifdef HAVE_conditional_execution
4833 /* Mark REGNO conditionally dead.
4834 Return true if the register is now unconditionally dead. */
4836 static int
4837 mark_regno_cond_dead (pbi, regno, cond)
4838 struct propagate_block_info *pbi;
4839 int regno;
4840 rtx cond;
4842 /* If this is a store to a predicate register, the value of the
4843 predicate is changing, we don't know that the predicate as seen
4844 before is the same as that seen after. Flush all dependent
4845 conditions from reg_cond_dead. This will make all such
4846 conditionally live registers unconditionally live. */
4847 if (REGNO_REG_SET_P (pbi->reg_cond_reg, regno))
4848 flush_reg_cond_reg (pbi, regno);
4850 /* If this is an unconditional store, remove any conditional
4851 life that may have existed. */
4852 if (cond == NULL_RTX)
4853 splay_tree_remove (pbi->reg_cond_dead, regno);
4854 else
4856 splay_tree_node node;
4857 struct reg_cond_life_info *rcli;
4858 rtx ncond;
4860 /* Otherwise this is a conditional set. Record that fact.
4861 It may have been conditionally used, or there may be a
4862 subsequent set with a complimentary condition. */
4864 node = splay_tree_lookup (pbi->reg_cond_dead, regno);
4865 if (node == NULL)
4867 /* The register was unconditionally live previously.
4868 Record the current condition as the condition under
4869 which it is dead. */
4870 rcli = (struct reg_cond_life_info *) xmalloc (sizeof (*rcli));
4871 rcli->condition = cond;
4872 rcli->stores = cond;
4873 rcli->orig_condition = const0_rtx;
4874 splay_tree_insert (pbi->reg_cond_dead, regno,
4875 (splay_tree_value) rcli);
4877 SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (XEXP (cond, 0)));
4879 /* Not unconditionaly dead. */
4880 return 0;
4882 else
4884 /* The register was conditionally live previously.
4885 Add the new condition to the old. */
4886 rcli = (struct reg_cond_life_info *) node->value;
4887 ncond = rcli->condition;
4888 ncond = ior_reg_cond (ncond, cond, 1);
4889 if (rcli->stores == const0_rtx)
4890 rcli->stores = cond;
4891 else if (rcli->stores != const1_rtx)
4892 rcli->stores = ior_reg_cond (rcli->stores, cond, 1);
4894 /* If the register is now unconditionally dead, remove the entry
4895 in the splay_tree. A register is unconditionally dead if the
4896 dead condition ncond is true. A register is also unconditionally
4897 dead if the sum of all conditional stores is an unconditional
4898 store (stores is true), and the dead condition is identically the
4899 same as the original dead condition initialized at the end of
4900 the block. This is a pointer compare, not an rtx_equal_p
4901 compare. */
4902 if (ncond == const1_rtx
4903 || (ncond == rcli->orig_condition && rcli->stores == const1_rtx))
4904 splay_tree_remove (pbi->reg_cond_dead, regno);
4905 else
4907 rcli->condition = ncond;
4909 SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (XEXP (cond, 0)));
4911 /* Not unconditionaly dead. */
4912 return 0;
4917 return 1;
4920 /* Called from splay_tree_delete for pbi->reg_cond_life. */
4922 static void
4923 free_reg_cond_life_info (value)
4924 splay_tree_value value;
4926 struct reg_cond_life_info *rcli = (struct reg_cond_life_info *) value;
4927 free (rcli);
4930 /* Helper function for flush_reg_cond_reg. */
4932 static int
4933 flush_reg_cond_reg_1 (node, data)
4934 splay_tree_node node;
4935 void *data;
4937 struct reg_cond_life_info *rcli;
4938 int *xdata = (int *) data;
4939 unsigned int regno = xdata[0];
4941 /* Don't need to search if last flushed value was farther on in
4942 the in-order traversal. */
4943 if (xdata[1] >= (int) node->key)
4944 return 0;
4946 /* Splice out portions of the expression that refer to regno. */
4947 rcli = (struct reg_cond_life_info *) node->value;
4948 rcli->condition = elim_reg_cond (rcli->condition, regno);
4949 if (rcli->stores != const0_rtx && rcli->stores != const1_rtx)
4950 rcli->stores = elim_reg_cond (rcli->stores, regno);
4952 /* If the entire condition is now false, signal the node to be removed. */
4953 if (rcli->condition == const0_rtx)
4955 xdata[1] = node->key;
4956 return -1;
4958 else if (rcli->condition == const1_rtx)
4959 abort ();
4961 return 0;
4964 /* Flush all (sub) expressions referring to REGNO from REG_COND_LIVE. */
4966 static void
4967 flush_reg_cond_reg (pbi, regno)
4968 struct propagate_block_info *pbi;
4969 int regno;
4971 int pair[2];
4973 pair[0] = regno;
4974 pair[1] = -1;
4975 while (splay_tree_foreach (pbi->reg_cond_dead,
4976 flush_reg_cond_reg_1, pair) == -1)
4977 splay_tree_remove (pbi->reg_cond_dead, pair[1]);
4979 CLEAR_REGNO_REG_SET (pbi->reg_cond_reg, regno);
4982 /* Logical arithmetic on predicate conditions. IOR, NOT and AND.
4983 For ior/and, the ADD flag determines whether we want to add the new
4984 condition X to the old one unconditionally. If it is zero, we will
4985 only return a new expression if X allows us to simplify part of
4986 OLD, otherwise we return OLD unchanged to the caller.
4987 If ADD is nonzero, we will return a new condition in all cases. The
4988 toplevel caller of one of these functions should always pass 1 for
4989 ADD. */
4991 static rtx
4992 ior_reg_cond (old, x, add)
4993 rtx old, x;
4994 int add;
4996 rtx op0, op1;
4998 if (GET_RTX_CLASS (GET_CODE (old)) == '<')
5000 if (GET_RTX_CLASS (GET_CODE (x)) == '<'
5001 && GET_CODE (x) == reverse_condition (GET_CODE (old))
5002 && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
5003 return const1_rtx;
5004 if (GET_CODE (x) == GET_CODE (old)
5005 && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
5006 return old;
5007 if (! add)
5008 return old;
5009 return gen_rtx_IOR (0, old, x);
5012 switch (GET_CODE (old))
5014 case IOR:
5015 op0 = ior_reg_cond (XEXP (old, 0), x, 0);
5016 op1 = ior_reg_cond (XEXP (old, 1), x, 0);
5017 if (op0 != XEXP (old, 0) || op1 != XEXP (old, 1))
5019 if (op0 == const0_rtx)
5020 return op1;
5021 if (op1 == const0_rtx)
5022 return op0;
5023 if (op0 == const1_rtx || op1 == const1_rtx)
5024 return const1_rtx;
5025 if (op0 == XEXP (old, 0))
5026 op0 = gen_rtx_IOR (0, op0, x);
5027 else
5028 op1 = gen_rtx_IOR (0, op1, x);
5029 return gen_rtx_IOR (0, op0, op1);
5031 if (! add)
5032 return old;
5033 return gen_rtx_IOR (0, old, x);
5035 case AND:
5036 op0 = ior_reg_cond (XEXP (old, 0), x, 0);
5037 op1 = ior_reg_cond (XEXP (old, 1), x, 0);
5038 if (op0 != XEXP (old, 0) || op1 != XEXP (old, 1))
5040 if (op0 == const1_rtx)
5041 return op1;
5042 if (op1 == const1_rtx)
5043 return op0;
5044 if (op0 == const0_rtx || op1 == const0_rtx)
5045 return const0_rtx;
5046 if (op0 == XEXP (old, 0))
5047 op0 = gen_rtx_IOR (0, op0, x);
5048 else
5049 op1 = gen_rtx_IOR (0, op1, x);
5050 return gen_rtx_AND (0, op0, op1);
5052 if (! add)
5053 return old;
5054 return gen_rtx_IOR (0, old, x);
5056 case NOT:
5057 op0 = and_reg_cond (XEXP (old, 0), not_reg_cond (x), 0);
5058 if (op0 != XEXP (old, 0))
5059 return not_reg_cond (op0);
5060 if (! add)
5061 return old;
5062 return gen_rtx_IOR (0, old, x);
5064 default:
5065 abort ();
5069 static rtx
5070 not_reg_cond (x)
5071 rtx x;
5073 enum rtx_code x_code;
5075 if (x == const0_rtx)
5076 return const1_rtx;
5077 else if (x == const1_rtx)
5078 return const0_rtx;
5079 x_code = GET_CODE (x);
5080 if (x_code == NOT)
5081 return XEXP (x, 0);
5082 if (GET_RTX_CLASS (x_code) == '<'
5083 && GET_CODE (XEXP (x, 0)) == REG)
5085 if (XEXP (x, 1) != const0_rtx)
5086 abort ();
5088 return gen_rtx_fmt_ee (reverse_condition (x_code),
5089 VOIDmode, XEXP (x, 0), const0_rtx);
5091 return gen_rtx_NOT (0, x);
5094 static rtx
5095 and_reg_cond (old, x, add)
5096 rtx old, x;
5097 int add;
5099 rtx op0, op1;
5101 if (GET_RTX_CLASS (GET_CODE (old)) == '<')
5103 if (GET_RTX_CLASS (GET_CODE (x)) == '<'
5104 && GET_CODE (x) == reverse_condition (GET_CODE (old))
5105 && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
5106 return const0_rtx;
5107 if (GET_CODE (x) == GET_CODE (old)
5108 && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
5109 return old;
5110 if (! add)
5111 return old;
5112 return gen_rtx_AND (0, old, x);
5115 switch (GET_CODE (old))
5117 case IOR:
5118 op0 = and_reg_cond (XEXP (old, 0), x, 0);
5119 op1 = and_reg_cond (XEXP (old, 1), x, 0);
5120 if (op0 != XEXP (old, 0) || op1 != XEXP (old, 1))
5122 if (op0 == const0_rtx)
5123 return op1;
5124 if (op1 == const0_rtx)
5125 return op0;
5126 if (op0 == const1_rtx || op1 == const1_rtx)
5127 return const1_rtx;
5128 if (op0 == XEXP (old, 0))
5129 op0 = gen_rtx_AND (0, op0, x);
5130 else
5131 op1 = gen_rtx_AND (0, op1, x);
5132 return gen_rtx_IOR (0, op0, op1);
5134 if (! add)
5135 return old;
5136 return gen_rtx_AND (0, old, x);
5138 case AND:
5139 op0 = and_reg_cond (XEXP (old, 0), x, 0);
5140 op1 = and_reg_cond (XEXP (old, 1), x, 0);
5141 if (op0 != XEXP (old, 0) || op1 != XEXP (old, 1))
5143 if (op0 == const1_rtx)
5144 return op1;
5145 if (op1 == const1_rtx)
5146 return op0;
5147 if (op0 == const0_rtx || op1 == const0_rtx)
5148 return const0_rtx;
5149 if (op0 == XEXP (old, 0))
5150 op0 = gen_rtx_AND (0, op0, x);
5151 else
5152 op1 = gen_rtx_AND (0, op1, x);
5153 return gen_rtx_AND (0, op0, op1);
5155 if (! add)
5156 return old;
5158 /* If X is identical to one of the existing terms of the AND,
5159 then just return what we already have. */
5160 /* ??? There really should be some sort of recursive check here in
5161 case there are nested ANDs. */
5162 if ((GET_CODE (XEXP (old, 0)) == GET_CODE (x)
5163 && REGNO (XEXP (XEXP (old, 0), 0)) == REGNO (XEXP (x, 0)))
5164 || (GET_CODE (XEXP (old, 1)) == GET_CODE (x)
5165 && REGNO (XEXP (XEXP (old, 1), 0)) == REGNO (XEXP (x, 0))))
5166 return old;
5168 return gen_rtx_AND (0, old, x);
5170 case NOT:
5171 op0 = ior_reg_cond (XEXP (old, 0), not_reg_cond (x), 0);
5172 if (op0 != XEXP (old, 0))
5173 return not_reg_cond (op0);
5174 if (! add)
5175 return old;
5176 return gen_rtx_AND (0, old, x);
5178 default:
5179 abort ();
5183 /* Given a condition X, remove references to reg REGNO and return the
5184 new condition. The removal will be done so that all conditions
5185 involving REGNO are considered to evaluate to false. This function
5186 is used when the value of REGNO changes. */
5188 static rtx
5189 elim_reg_cond (x, regno)
5190 rtx x;
5191 unsigned int regno;
5193 rtx op0, op1;
5195 if (GET_RTX_CLASS (GET_CODE (x)) == '<')
5197 if (REGNO (XEXP (x, 0)) == regno)
5198 return const0_rtx;
5199 return x;
5202 switch (GET_CODE (x))
5204 case AND:
5205 op0 = elim_reg_cond (XEXP (x, 0), regno);
5206 op1 = elim_reg_cond (XEXP (x, 1), regno);
5207 if (op0 == const0_rtx || op1 == const0_rtx)
5208 return const0_rtx;
5209 if (op0 == const1_rtx)
5210 return op1;
5211 if (op1 == const1_rtx)
5212 return op0;
5213 if (op0 == XEXP (x, 0) && op1 == XEXP (x, 1))
5214 return x;
5215 return gen_rtx_AND (0, op0, op1);
5217 case IOR:
5218 op0 = elim_reg_cond (XEXP (x, 0), regno);
5219 op1 = elim_reg_cond (XEXP (x, 1), regno);
5220 if (op0 == const1_rtx || op1 == const1_rtx)
5221 return const1_rtx;
5222 if (op0 == const0_rtx)
5223 return op1;
5224 if (op1 == const0_rtx)
5225 return op0;
5226 if (op0 == XEXP (x, 0) && op1 == XEXP (x, 1))
5227 return x;
5228 return gen_rtx_IOR (0, op0, op1);
5230 case NOT:
5231 op0 = elim_reg_cond (XEXP (x, 0), regno);
5232 if (op0 == const0_rtx)
5233 return const1_rtx;
5234 if (op0 == const1_rtx)
5235 return const0_rtx;
5236 if (op0 != XEXP (x, 0))
5237 return not_reg_cond (op0);
5238 return x;
5240 default:
5241 abort ();
5244 #endif /* HAVE_conditional_execution */
5246 #ifdef AUTO_INC_DEC
5248 /* Try to substitute the auto-inc expression INC as the address inside
5249 MEM which occurs in INSN. Currently, the address of MEM is an expression
5250 involving INCR_REG, and INCR is the next use of INCR_REG; it is an insn
5251 that has a single set whose source is a PLUS of INCR_REG and something
5252 else. */
5254 static void
5255 attempt_auto_inc (pbi, inc, insn, mem, incr, incr_reg)
5256 struct propagate_block_info *pbi;
5257 rtx inc, insn, mem, incr, incr_reg;
5259 int regno = REGNO (incr_reg);
5260 rtx set = single_set (incr);
5261 rtx q = SET_DEST (set);
5262 rtx y = SET_SRC (set);
5263 int opnum = XEXP (y, 0) == incr_reg ? 0 : 1;
5265 /* Make sure this reg appears only once in this insn. */
5266 if (count_occurrences (PATTERN (insn), incr_reg, 1) != 1)
5267 return;
5269 if (dead_or_set_p (incr, incr_reg)
5270 /* Mustn't autoinc an eliminable register. */
5271 && (regno >= FIRST_PSEUDO_REGISTER
5272 || ! TEST_HARD_REG_BIT (elim_reg_set, regno)))
5274 /* This is the simple case. Try to make the auto-inc. If
5275 we can't, we are done. Otherwise, we will do any
5276 needed updates below. */
5277 if (! validate_change (insn, &XEXP (mem, 0), inc, 0))
5278 return;
5280 else if (GET_CODE (q) == REG
5281 /* PREV_INSN used here to check the semi-open interval
5282 [insn,incr). */
5283 && ! reg_used_between_p (q, PREV_INSN (insn), incr)
5284 /* We must also check for sets of q as q may be
5285 a call clobbered hard register and there may
5286 be a call between PREV_INSN (insn) and incr. */
5287 && ! reg_set_between_p (q, PREV_INSN (insn), incr))
5289 /* We have *p followed sometime later by q = p+size.
5290 Both p and q must be live afterward,
5291 and q is not used between INSN and its assignment.
5292 Change it to q = p, ...*q..., q = q+size.
5293 Then fall into the usual case. */
5294 rtx insns, temp;
5296 start_sequence ();
5297 emit_move_insn (q, incr_reg);
5298 insns = get_insns ();
5299 end_sequence ();
5301 if (basic_block_for_insn)
5302 for (temp = insns; temp; temp = NEXT_INSN (temp))
5303 set_block_for_insn (temp, pbi->bb);
5305 /* If we can't make the auto-inc, or can't make the
5306 replacement into Y, exit. There's no point in making
5307 the change below if we can't do the auto-inc and doing
5308 so is not correct in the pre-inc case. */
5310 XEXP (inc, 0) = q;
5311 validate_change (insn, &XEXP (mem, 0), inc, 1);
5312 validate_change (incr, &XEXP (y, opnum), q, 1);
5313 if (! apply_change_group ())
5314 return;
5316 /* We now know we'll be doing this change, so emit the
5317 new insn(s) and do the updates. */
5318 emit_insns_before (insns, insn);
5320 if (pbi->bb->head == insn)
5321 pbi->bb->head = insns;
5323 /* INCR will become a NOTE and INSN won't contain a
5324 use of INCR_REG. If a use of INCR_REG was just placed in
5325 the insn before INSN, make that the next use.
5326 Otherwise, invalidate it. */
5327 if (GET_CODE (PREV_INSN (insn)) == INSN
5328 && GET_CODE (PATTERN (PREV_INSN (insn))) == SET
5329 && SET_SRC (PATTERN (PREV_INSN (insn))) == incr_reg)
5330 pbi->reg_next_use[regno] = PREV_INSN (insn);
5331 else
5332 pbi->reg_next_use[regno] = 0;
5334 incr_reg = q;
5335 regno = REGNO (q);
5337 /* REGNO is now used in INCR which is below INSN, but
5338 it previously wasn't live here. If we don't mark
5339 it as live, we'll put a REG_DEAD note for it
5340 on this insn, which is incorrect. */
5341 SET_REGNO_REG_SET (pbi->reg_live, regno);
5343 /* If there are any calls between INSN and INCR, show
5344 that REGNO now crosses them. */
5345 for (temp = insn; temp != incr; temp = NEXT_INSN (temp))
5346 if (GET_CODE (temp) == CALL_INSN)
5347 REG_N_CALLS_CROSSED (regno)++;
5349 else
5350 return;
5352 /* If we haven't returned, it means we were able to make the
5353 auto-inc, so update the status. First, record that this insn
5354 has an implicit side effect. */
5356 REG_NOTES (insn) = alloc_EXPR_LIST (REG_INC, incr_reg, REG_NOTES (insn));
5358 /* Modify the old increment-insn to simply copy
5359 the already-incremented value of our register. */
5360 if (! validate_change (incr, &SET_SRC (set), incr_reg, 0))
5361 abort ();
5363 /* If that makes it a no-op (copying the register into itself) delete
5364 it so it won't appear to be a "use" and a "set" of this
5365 register. */
5366 if (REGNO (SET_DEST (set)) == REGNO (incr_reg))
5368 /* If the original source was dead, it's dead now. */
5369 rtx note;
5371 while ((note = find_reg_note (incr, REG_DEAD, NULL_RTX)) != NULL_RTX)
5373 remove_note (incr, note);
5374 if (XEXP (note, 0) != incr_reg)
5375 CLEAR_REGNO_REG_SET (pbi->reg_live, REGNO (XEXP (note, 0)));
5378 PUT_CODE (incr, NOTE);
5379 NOTE_LINE_NUMBER (incr) = NOTE_INSN_DELETED;
5380 NOTE_SOURCE_FILE (incr) = 0;
5383 if (regno >= FIRST_PSEUDO_REGISTER)
5385 /* Count an extra reference to the reg. When a reg is
5386 incremented, spilling it is worse, so we want to make
5387 that less likely. */
5388 REG_N_REFS (regno) += (optimize_size ? 1 : pbi->bb->loop_depth + 1);
5390 /* Count the increment as a setting of the register,
5391 even though it isn't a SET in rtl. */
5392 REG_N_SETS (regno)++;
5396 /* X is a MEM found in INSN. See if we can convert it into an auto-increment
5397 reference. */
5399 static void
5400 find_auto_inc (pbi, x, insn)
5401 struct propagate_block_info *pbi;
5402 rtx x;
5403 rtx insn;
5405 rtx addr = XEXP (x, 0);
5406 HOST_WIDE_INT offset = 0;
5407 rtx set, y, incr, inc_val;
5408 int regno;
5409 int size = GET_MODE_SIZE (GET_MODE (x));
5411 if (GET_CODE (insn) == JUMP_INSN)
5412 return;
5414 /* Here we detect use of an index register which might be good for
5415 postincrement, postdecrement, preincrement, or predecrement. */
5417 if (GET_CODE (addr) == PLUS && GET_CODE (XEXP (addr, 1)) == CONST_INT)
5418 offset = INTVAL (XEXP (addr, 1)), addr = XEXP (addr, 0);
5420 if (GET_CODE (addr) != REG)
5421 return;
5423 regno = REGNO (addr);
5425 /* Is the next use an increment that might make auto-increment? */
5426 incr = pbi->reg_next_use[regno];
5427 if (incr == 0 || BLOCK_NUM (incr) != BLOCK_NUM (insn))
5428 return;
5429 set = single_set (incr);
5430 if (set == 0 || GET_CODE (set) != SET)
5431 return;
5432 y = SET_SRC (set);
5434 if (GET_CODE (y) != PLUS)
5435 return;
5437 if (REG_P (XEXP (y, 0)) && REGNO (XEXP (y, 0)) == REGNO (addr))
5438 inc_val = XEXP (y, 1);
5439 else if (REG_P (XEXP (y, 1)) && REGNO (XEXP (y, 1)) == REGNO (addr))
5440 inc_val = XEXP (y, 0);
5441 else
5442 return;
5444 if (GET_CODE (inc_val) == CONST_INT)
5446 if (HAVE_POST_INCREMENT
5447 && (INTVAL (inc_val) == size && offset == 0))
5448 attempt_auto_inc (pbi, gen_rtx_POST_INC (Pmode, addr), insn, x,
5449 incr, addr);
5450 else if (HAVE_POST_DECREMENT
5451 && (INTVAL (inc_val) == -size && offset == 0))
5452 attempt_auto_inc (pbi, gen_rtx_POST_DEC (Pmode, addr), insn, x,
5453 incr, addr);
5454 else if (HAVE_PRE_INCREMENT
5455 && (INTVAL (inc_val) == size && offset == size))
5456 attempt_auto_inc (pbi, gen_rtx_PRE_INC (Pmode, addr), insn, x,
5457 incr, addr);
5458 else if (HAVE_PRE_DECREMENT
5459 && (INTVAL (inc_val) == -size && offset == -size))
5460 attempt_auto_inc (pbi, gen_rtx_PRE_DEC (Pmode, addr), insn, x,
5461 incr, addr);
5462 else if (HAVE_POST_MODIFY_DISP && offset == 0)
5463 attempt_auto_inc (pbi, gen_rtx_POST_MODIFY (Pmode, addr,
5464 gen_rtx_PLUS (Pmode,
5465 addr,
5466 inc_val)),
5467 insn, x, incr, addr);
5469 else if (GET_CODE (inc_val) == REG
5470 && ! reg_set_between_p (inc_val, PREV_INSN (insn),
5471 NEXT_INSN (incr)))
5474 if (HAVE_POST_MODIFY_REG && offset == 0)
5475 attempt_auto_inc (pbi, gen_rtx_POST_MODIFY (Pmode, addr,
5476 gen_rtx_PLUS (Pmode,
5477 addr,
5478 inc_val)),
5479 insn, x, incr, addr);
5483 #endif /* AUTO_INC_DEC */
5485 static void
5486 mark_used_reg (pbi, reg, cond, insn)
5487 struct propagate_block_info *pbi;
5488 rtx reg;
5489 rtx cond ATTRIBUTE_UNUSED;
5490 rtx insn;
5492 int regno = REGNO (reg);
5493 int some_was_live = REGNO_REG_SET_P (pbi->reg_live, regno);
5494 int some_was_dead = ! some_was_live;
5495 int some_not_set;
5496 int n;
5498 /* A hard reg in a wide mode may really be multiple registers.
5499 If so, mark all of them just like the first. */
5500 if (regno < FIRST_PSEUDO_REGISTER)
5502 n = HARD_REGNO_NREGS (regno, GET_MODE (reg));
5503 while (--n > 0)
5505 int needed_regno = REGNO_REG_SET_P (pbi->reg_live, regno + n);
5506 some_was_live |= needed_regno;
5507 some_was_dead |= ! needed_regno;
5511 if (pbi->flags & (PROP_LOG_LINKS | PROP_AUTOINC))
5513 /* Record where each reg is used, so when the reg is set we know
5514 the next insn that uses it. */
5515 pbi->reg_next_use[regno] = insn;
5518 if (pbi->flags & PROP_REG_INFO)
5520 if (regno < FIRST_PSEUDO_REGISTER)
5522 /* If this is a register we are going to try to eliminate,
5523 don't mark it live here. If we are successful in
5524 eliminating it, it need not be live unless it is used for
5525 pseudos, in which case it will have been set live when it
5526 was allocated to the pseudos. If the register will not
5527 be eliminated, reload will set it live at that point.
5529 Otherwise, record that this function uses this register. */
5530 /* ??? The PPC backend tries to "eliminate" on the pic
5531 register to itself. This should be fixed. In the mean
5532 time, hack around it. */
5534 if (! (TEST_HARD_REG_BIT (elim_reg_set, regno)
5535 && (regno == FRAME_POINTER_REGNUM
5536 || regno == ARG_POINTER_REGNUM)))
5538 int n = HARD_REGNO_NREGS (regno, GET_MODE (reg));
5540 regs_ever_live[regno + --n] = 1;
5541 while (n > 0);
5544 else
5546 /* Keep track of which basic block each reg appears in. */
5548 register int blocknum = pbi->bb->index;
5549 if (REG_BASIC_BLOCK (regno) == REG_BLOCK_UNKNOWN)
5550 REG_BASIC_BLOCK (regno) = blocknum;
5551 else if (REG_BASIC_BLOCK (regno) != blocknum)
5552 REG_BASIC_BLOCK (regno) = REG_BLOCK_GLOBAL;
5554 /* Count (weighted) number of uses of each reg. */
5555 REG_N_REFS (regno) += (optimize_size ? 1
5556 : pbi->bb->loop_depth + 1);
5560 /* Find out if any of the register was set this insn. */
5561 some_not_set = ! REGNO_REG_SET_P (pbi->new_set, regno);
5562 if (regno < FIRST_PSEUDO_REGISTER)
5564 n = HARD_REGNO_NREGS (regno, GET_MODE (reg));
5565 while (--n > 0)
5566 some_not_set |= ! REGNO_REG_SET_P (pbi->new_set, regno + n);
5569 /* Record and count the insns in which a reg dies. If it is used in
5570 this insn and was dead below the insn then it dies in this insn.
5571 If it was set in this insn, we do not make a REG_DEAD note;
5572 likewise if we already made such a note. */
5573 if ((pbi->flags & (PROP_DEATH_NOTES | PROP_REG_INFO))
5574 && some_was_dead
5575 && some_not_set)
5577 /* Check for the case where the register dying partially
5578 overlaps the register set by this insn. */
5579 if (regno < FIRST_PSEUDO_REGISTER
5580 && HARD_REGNO_NREGS (regno, GET_MODE (reg)) > 1)
5582 n = HARD_REGNO_NREGS (regno, GET_MODE (reg));
5583 while (--n >= 0)
5584 some_was_live |= REGNO_REG_SET_P (pbi->new_set, regno + n);
5587 /* If none of the words in X is needed, make a REG_DEAD note.
5588 Otherwise, we must make partial REG_DEAD notes. */
5589 if (! some_was_live)
5591 if ((pbi->flags & PROP_DEATH_NOTES)
5592 && ! find_regno_note (insn, REG_DEAD, regno))
5593 REG_NOTES (insn)
5594 = alloc_EXPR_LIST (REG_DEAD, reg, REG_NOTES (insn));
5596 if (pbi->flags & PROP_REG_INFO)
5597 REG_N_DEATHS (regno)++;
5599 else
5601 /* Don't make a REG_DEAD note for a part of a register
5602 that is set in the insn. */
5604 n = regno + HARD_REGNO_NREGS (regno, GET_MODE (reg)) - 1;
5605 for (; n >= regno; n--)
5606 if (! REGNO_REG_SET_P (pbi->reg_live, n)
5607 && ! dead_or_set_regno_p (insn, n))
5608 REG_NOTES (insn)
5609 = alloc_EXPR_LIST (REG_DEAD,
5610 gen_rtx_REG (reg_raw_mode[n], n),
5611 REG_NOTES (insn));
5615 SET_REGNO_REG_SET (pbi->reg_live, regno);
5616 if (regno < FIRST_PSEUDO_REGISTER)
5618 n = HARD_REGNO_NREGS (regno, GET_MODE (reg));
5619 while (--n > 0)
5620 SET_REGNO_REG_SET (pbi->reg_live, regno + n);
5623 #ifdef HAVE_conditional_execution
5624 /* If this is a conditional use, record that fact. If it is later
5625 conditionally set, we'll know to kill the register. */
5626 if (cond != NULL_RTX)
5628 splay_tree_node node;
5629 struct reg_cond_life_info *rcli;
5630 rtx ncond;
5632 if (some_was_live)
5634 node = splay_tree_lookup (pbi->reg_cond_dead, regno);
5635 if (node == NULL)
5637 /* The register was unconditionally live previously.
5638 No need to do anything. */
5640 else
5642 /* The register was conditionally live previously.
5643 Subtract the new life cond from the old death cond. */
5644 rcli = (struct reg_cond_life_info *) node->value;
5645 ncond = rcli->condition;
5646 ncond = and_reg_cond (ncond, not_reg_cond (cond), 1);
5648 /* If the register is now unconditionally live, remove the
5649 entry in the splay_tree. */
5650 if (ncond == const0_rtx)
5651 splay_tree_remove (pbi->reg_cond_dead, regno);
5652 else
5654 rcli->condition = ncond;
5655 SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (XEXP (cond, 0)));
5659 else
5661 /* The register was not previously live at all. Record
5662 the condition under which it is still dead. */
5663 rcli = (struct reg_cond_life_info *) xmalloc (sizeof (*rcli));
5664 rcli->condition = not_reg_cond (cond);
5665 rcli->stores = const0_rtx;
5666 rcli->orig_condition = const0_rtx;
5667 splay_tree_insert (pbi->reg_cond_dead, regno,
5668 (splay_tree_value) rcli);
5670 SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (XEXP (cond, 0)));
5673 else if (some_was_live)
5675 splay_tree_node node;
5677 node = splay_tree_lookup (pbi->reg_cond_dead, regno);
5678 if (node != NULL)
5680 /* The register was conditionally live previously, but is now
5681 unconditionally so. Remove it from the conditionally dead
5682 list, so that a conditional set won't cause us to think
5683 it dead. */
5684 splay_tree_remove (pbi->reg_cond_dead, regno);
5688 #endif
5691 /* Scan expression X and store a 1-bit in NEW_LIVE for each reg it uses.
5692 This is done assuming the registers needed from X are those that
5693 have 1-bits in PBI->REG_LIVE.
5695 INSN is the containing instruction. If INSN is dead, this function
5696 is not called. */
5698 static void
5699 mark_used_regs (pbi, x, cond, insn)
5700 struct propagate_block_info *pbi;
5701 rtx x, cond, insn;
5703 register RTX_CODE code;
5704 register int regno;
5705 int flags = pbi->flags;
5707 retry:
5708 code = GET_CODE (x);
5709 switch (code)
5711 case LABEL_REF:
5712 case SYMBOL_REF:
5713 case CONST_INT:
5714 case CONST:
5715 case CONST_DOUBLE:
5716 case PC:
5717 case ADDR_VEC:
5718 case ADDR_DIFF_VEC:
5719 return;
5721 #ifdef HAVE_cc0
5722 case CC0:
5723 pbi->cc0_live = 1;
5724 return;
5725 #endif
5727 case CLOBBER:
5728 /* If we are clobbering a MEM, mark any registers inside the address
5729 as being used. */
5730 if (GET_CODE (XEXP (x, 0)) == MEM)
5731 mark_used_regs (pbi, XEXP (XEXP (x, 0), 0), cond, insn);
5732 return;
5734 case MEM:
5735 /* Don't bother watching stores to mems if this is not the
5736 final pass. We'll not be deleting dead stores this round. */
5737 if (optimize && (flags & PROP_SCAN_DEAD_CODE))
5739 /* Invalidate the data for the last MEM stored, but only if MEM is
5740 something that can be stored into. */
5741 if (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
5742 && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)))
5743 /* Needn't clear the memory set list. */
5745 else
5747 rtx temp = pbi->mem_set_list;
5748 rtx prev = NULL_RTX;
5749 rtx next;
5751 while (temp)
5753 next = XEXP (temp, 1);
5754 if (anti_dependence (XEXP (temp, 0), x))
5756 /* Splice temp out of the list. */
5757 if (prev)
5758 XEXP (prev, 1) = next;
5759 else
5760 pbi->mem_set_list = next;
5761 free_EXPR_LIST_node (temp);
5762 pbi->mem_set_list_len--;
5764 else
5765 prev = temp;
5766 temp = next;
5770 /* If the memory reference had embedded side effects (autoincrement
5771 address modes. Then we may need to kill some entries on the
5772 memory set list. */
5773 if (insn)
5774 invalidate_mems_from_autoinc (pbi, insn);
5777 #ifdef AUTO_INC_DEC
5778 if (flags & PROP_AUTOINC)
5779 find_auto_inc (pbi, x, insn);
5780 #endif
5781 break;
5783 case SUBREG:
5784 #ifdef CLASS_CANNOT_CHANGE_MODE
5785 if (GET_CODE (SUBREG_REG (x)) == REG
5786 && REGNO (SUBREG_REG (x)) >= FIRST_PSEUDO_REGISTER
5787 && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (x),
5788 GET_MODE (SUBREG_REG (x))))
5789 REG_CHANGES_MODE (REGNO (SUBREG_REG (x))) = 1;
5790 #endif
5792 /* While we're here, optimize this case. */
5793 x = SUBREG_REG (x);
5794 if (GET_CODE (x) != REG)
5795 goto retry;
5796 /* Fall through. */
5798 case REG:
5799 /* See a register other than being set => mark it as needed. */
5800 mark_used_reg (pbi, x, cond, insn);
5801 return;
5803 case SET:
5805 register rtx testreg = SET_DEST (x);
5806 int mark_dest = 0;
5808 /* If storing into MEM, don't show it as being used. But do
5809 show the address as being used. */
5810 if (GET_CODE (testreg) == MEM)
5812 #ifdef AUTO_INC_DEC
5813 if (flags & PROP_AUTOINC)
5814 find_auto_inc (pbi, testreg, insn);
5815 #endif
5816 mark_used_regs (pbi, XEXP (testreg, 0), cond, insn);
5817 mark_used_regs (pbi, SET_SRC (x), cond, insn);
5818 return;
5821 /* Storing in STRICT_LOW_PART is like storing in a reg
5822 in that this SET might be dead, so ignore it in TESTREG.
5823 but in some other ways it is like using the reg.
5825 Storing in a SUBREG or a bit field is like storing the entire
5826 register in that if the register's value is not used
5827 then this SET is not needed. */
5828 while (GET_CODE (testreg) == STRICT_LOW_PART
5829 || GET_CODE (testreg) == ZERO_EXTRACT
5830 || GET_CODE (testreg) == SIGN_EXTRACT
5831 || GET_CODE (testreg) == SUBREG)
5833 #ifdef CLASS_CANNOT_CHANGE_MODE
5834 if (GET_CODE (testreg) == SUBREG
5835 && GET_CODE (SUBREG_REG (testreg)) == REG
5836 && REGNO (SUBREG_REG (testreg)) >= FIRST_PSEUDO_REGISTER
5837 && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (SUBREG_REG (testreg)),
5838 GET_MODE (testreg)))
5839 REG_CHANGES_MODE (REGNO (SUBREG_REG (testreg))) = 1;
5840 #endif
5842 /* Modifying a single register in an alternate mode
5843 does not use any of the old value. But these other
5844 ways of storing in a register do use the old value. */
5845 if (GET_CODE (testreg) == SUBREG
5846 && !(REG_SIZE (SUBREG_REG (testreg)) > REG_SIZE (testreg)))
5848 else
5849 mark_dest = 1;
5851 testreg = XEXP (testreg, 0);
5854 /* If this is a store into a register or group of registers,
5855 recursively scan the value being stored. */
5857 if ((GET_CODE (testreg) == PARALLEL
5858 && GET_MODE (testreg) == BLKmode)
5859 || (GET_CODE (testreg) == REG
5860 && (regno = REGNO (testreg),
5861 ! (regno == FRAME_POINTER_REGNUM
5862 && (! reload_completed || frame_pointer_needed)))
5863 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
5864 && ! (regno == HARD_FRAME_POINTER_REGNUM
5865 && (! reload_completed || frame_pointer_needed))
5866 #endif
5867 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
5868 && ! (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
5869 #endif
5872 if (mark_dest)
5873 mark_used_regs (pbi, SET_DEST (x), cond, insn);
5874 mark_used_regs (pbi, SET_SRC (x), cond, insn);
5875 return;
5878 break;
5880 case ASM_OPERANDS:
5881 case UNSPEC_VOLATILE:
5882 case TRAP_IF:
5883 case ASM_INPUT:
5885 /* Traditional and volatile asm instructions must be considered to use
5886 and clobber all hard registers, all pseudo-registers and all of
5887 memory. So must TRAP_IF and UNSPEC_VOLATILE operations.
5889 Consider for instance a volatile asm that changes the fpu rounding
5890 mode. An insn should not be moved across this even if it only uses
5891 pseudo-regs because it might give an incorrectly rounded result.
5893 ?!? Unfortunately, marking all hard registers as live causes massive
5894 problems for the register allocator and marking all pseudos as live
5895 creates mountains of uninitialized variable warnings.
5897 So for now, just clear the memory set list and mark any regs
5898 we can find in ASM_OPERANDS as used. */
5899 if (code != ASM_OPERANDS || MEM_VOLATILE_P (x))
5901 free_EXPR_LIST_list (&pbi->mem_set_list);
5902 pbi->mem_set_list_len = 0;
5905 /* For all ASM_OPERANDS, we must traverse the vector of input operands.
5906 We can not just fall through here since then we would be confused
5907 by the ASM_INPUT rtx inside ASM_OPERANDS, which do not indicate
5908 traditional asms unlike their normal usage. */
5909 if (code == ASM_OPERANDS)
5911 int j;
5913 for (j = 0; j < ASM_OPERANDS_INPUT_LENGTH (x); j++)
5914 mark_used_regs (pbi, ASM_OPERANDS_INPUT (x, j), cond, insn);
5916 break;
5919 case COND_EXEC:
5920 if (cond != NULL_RTX)
5921 abort ();
5923 mark_used_regs (pbi, COND_EXEC_TEST (x), NULL_RTX, insn);
5925 cond = COND_EXEC_TEST (x);
5926 x = COND_EXEC_CODE (x);
5927 goto retry;
5929 case PHI:
5930 /* We _do_not_ want to scan operands of phi nodes. Operands of
5931 a phi function are evaluated only when control reaches this
5932 block along a particular edge. Therefore, regs that appear
5933 as arguments to phi should not be added to the global live at
5934 start. */
5935 return;
5937 default:
5938 break;
5941 /* Recursively scan the operands of this expression. */
5944 register const char *fmt = GET_RTX_FORMAT (code);
5945 register int i;
5947 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
5949 if (fmt[i] == 'e')
5951 /* Tail recursive case: save a function call level. */
5952 if (i == 0)
5954 x = XEXP (x, 0);
5955 goto retry;
5957 mark_used_regs (pbi, XEXP (x, i), cond, insn);
5959 else if (fmt[i] == 'E')
5961 register int j;
5962 for (j = 0; j < XVECLEN (x, i); j++)
5963 mark_used_regs (pbi, XVECEXP (x, i, j), cond, insn);
5969 #ifdef AUTO_INC_DEC
5971 static int
5972 try_pre_increment_1 (pbi, insn)
5973 struct propagate_block_info *pbi;
5974 rtx insn;
5976 /* Find the next use of this reg. If in same basic block,
5977 make it do pre-increment or pre-decrement if appropriate. */
5978 rtx x = single_set (insn);
5979 HOST_WIDE_INT amount = ((GET_CODE (SET_SRC (x)) == PLUS ? 1 : -1)
5980 * INTVAL (XEXP (SET_SRC (x), 1)));
5981 int regno = REGNO (SET_DEST (x));
5982 rtx y = pbi->reg_next_use[regno];
5983 if (y != 0
5984 && SET_DEST (x) != stack_pointer_rtx
5985 && BLOCK_NUM (y) == BLOCK_NUM (insn)
5986 /* Don't do this if the reg dies, or gets set in y; a standard addressing
5987 mode would be better. */
5988 && ! dead_or_set_p (y, SET_DEST (x))
5989 && try_pre_increment (y, SET_DEST (x), amount))
5991 /* We have found a suitable auto-increment and already changed
5992 insn Y to do it. So flush this increment instruction. */
5993 propagate_block_delete_insn (pbi->bb, insn);
5995 /* Count a reference to this reg for the increment insn we are
5996 deleting. When a reg is incremented, spilling it is worse,
5997 so we want to make that less likely. */
5998 if (regno >= FIRST_PSEUDO_REGISTER)
6000 REG_N_REFS (regno) += (optimize_size ? 1
6001 : pbi->bb->loop_depth + 1);
6002 REG_N_SETS (regno)++;
6005 /* Flush any remembered memories depending on the value of
6006 the incremented register. */
6007 invalidate_mems_from_set (pbi, SET_DEST (x));
6009 return 1;
6011 return 0;
6014 /* Try to change INSN so that it does pre-increment or pre-decrement
6015 addressing on register REG in order to add AMOUNT to REG.
6016 AMOUNT is negative for pre-decrement.
6017 Returns 1 if the change could be made.
6018 This checks all about the validity of the result of modifying INSN. */
6020 static int
6021 try_pre_increment (insn, reg, amount)
6022 rtx insn, reg;
6023 HOST_WIDE_INT amount;
6025 register rtx use;
6027 /* Nonzero if we can try to make a pre-increment or pre-decrement.
6028 For example, addl $4,r1; movl (r1),... can become movl +(r1),... */
6029 int pre_ok = 0;
6030 /* Nonzero if we can try to make a post-increment or post-decrement.
6031 For example, addl $4,r1; movl -4(r1),... can become movl (r1)+,...
6032 It is possible for both PRE_OK and POST_OK to be nonzero if the machine
6033 supports both pre-inc and post-inc, or both pre-dec and post-dec. */
6034 int post_ok = 0;
6036 /* Nonzero if the opportunity actually requires post-inc or post-dec. */
6037 int do_post = 0;
6039 /* From the sign of increment, see which possibilities are conceivable
6040 on this target machine. */
6041 if (HAVE_PRE_INCREMENT && amount > 0)
6042 pre_ok = 1;
6043 if (HAVE_POST_INCREMENT && amount > 0)
6044 post_ok = 1;
6046 if (HAVE_PRE_DECREMENT && amount < 0)
6047 pre_ok = 1;
6048 if (HAVE_POST_DECREMENT && amount < 0)
6049 post_ok = 1;
6051 if (! (pre_ok || post_ok))
6052 return 0;
6054 /* It is not safe to add a side effect to a jump insn
6055 because if the incremented register is spilled and must be reloaded
6056 there would be no way to store the incremented value back in memory. */
6058 if (GET_CODE (insn) == JUMP_INSN)
6059 return 0;
6061 use = 0;
6062 if (pre_ok)
6063 use = find_use_as_address (PATTERN (insn), reg, 0);
6064 if (post_ok && (use == 0 || use == (rtx) 1))
6066 use = find_use_as_address (PATTERN (insn), reg, -amount);
6067 do_post = 1;
6070 if (use == 0 || use == (rtx) 1)
6071 return 0;
6073 if (GET_MODE_SIZE (GET_MODE (use)) != (amount > 0 ? amount : - amount))
6074 return 0;
6076 /* See if this combination of instruction and addressing mode exists. */
6077 if (! validate_change (insn, &XEXP (use, 0),
6078 gen_rtx_fmt_e (amount > 0
6079 ? (do_post ? POST_INC : PRE_INC)
6080 : (do_post ? POST_DEC : PRE_DEC),
6081 Pmode, reg), 0))
6082 return 0;
6084 /* Record that this insn now has an implicit side effect on X. */
6085 REG_NOTES (insn) = alloc_EXPR_LIST (REG_INC, reg, REG_NOTES (insn));
6086 return 1;
6089 #endif /* AUTO_INC_DEC */
6091 /* Find the place in the rtx X where REG is used as a memory address.
6092 Return the MEM rtx that so uses it.
6093 If PLUSCONST is nonzero, search instead for a memory address equivalent to
6094 (plus REG (const_int PLUSCONST)).
6096 If such an address does not appear, return 0.
6097 If REG appears more than once, or is used other than in such an address,
6098 return (rtx)1. */
6101 find_use_as_address (x, reg, plusconst)
6102 register rtx x;
6103 rtx reg;
6104 HOST_WIDE_INT plusconst;
6106 enum rtx_code code = GET_CODE (x);
6107 const char *fmt = GET_RTX_FORMAT (code);
6108 register int i;
6109 register rtx value = 0;
6110 register rtx tem;
6112 if (code == MEM && XEXP (x, 0) == reg && plusconst == 0)
6113 return x;
6115 if (code == MEM && GET_CODE (XEXP (x, 0)) == PLUS
6116 && XEXP (XEXP (x, 0), 0) == reg
6117 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
6118 && INTVAL (XEXP (XEXP (x, 0), 1)) == plusconst)
6119 return x;
6121 if (code == SIGN_EXTRACT || code == ZERO_EXTRACT)
6123 /* If REG occurs inside a MEM used in a bit-field reference,
6124 that is unacceptable. */
6125 if (find_use_as_address (XEXP (x, 0), reg, 0) != 0)
6126 return (rtx) (HOST_WIDE_INT) 1;
6129 if (x == reg)
6130 return (rtx) (HOST_WIDE_INT) 1;
6132 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
6134 if (fmt[i] == 'e')
6136 tem = find_use_as_address (XEXP (x, i), reg, plusconst);
6137 if (value == 0)
6138 value = tem;
6139 else if (tem != 0)
6140 return (rtx) (HOST_WIDE_INT) 1;
6142 else if (fmt[i] == 'E')
6144 register int j;
6145 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
6147 tem = find_use_as_address (XVECEXP (x, i, j), reg, plusconst);
6148 if (value == 0)
6149 value = tem;
6150 else if (tem != 0)
6151 return (rtx) (HOST_WIDE_INT) 1;
6156 return value;
6159 /* Write information about registers and basic blocks into FILE.
6160 This is part of making a debugging dump. */
6162 void
6163 dump_regset (r, outf)
6164 regset r;
6165 FILE *outf;
6167 int i;
6168 if (r == NULL)
6170 fputs (" (nil)", outf);
6171 return;
6174 EXECUTE_IF_SET_IN_REG_SET (r, 0, i,
6176 fprintf (outf, " %d", i);
6177 if (i < FIRST_PSEUDO_REGISTER)
6178 fprintf (outf, " [%s]",
6179 reg_names[i]);
6183 void
6184 debug_regset (r)
6185 regset r;
6187 dump_regset (r, stderr);
6188 putc ('\n', stderr);
6191 void
6192 dump_flow_info (file)
6193 FILE *file;
6195 register int i;
6196 static const char * const reg_class_names[] = REG_CLASS_NAMES;
6198 fprintf (file, "%d registers.\n", max_regno);
6199 for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
6200 if (REG_N_REFS (i))
6202 enum reg_class class, altclass;
6203 fprintf (file, "\nRegister %d used %d times across %d insns",
6204 i, REG_N_REFS (i), REG_LIVE_LENGTH (i));
6205 if (REG_BASIC_BLOCK (i) >= 0)
6206 fprintf (file, " in block %d", REG_BASIC_BLOCK (i));
6207 if (REG_N_SETS (i))
6208 fprintf (file, "; set %d time%s", REG_N_SETS (i),
6209 (REG_N_SETS (i) == 1) ? "" : "s");
6210 if (REG_USERVAR_P (regno_reg_rtx[i]))
6211 fprintf (file, "; user var");
6212 if (REG_N_DEATHS (i) != 1)
6213 fprintf (file, "; dies in %d places", REG_N_DEATHS (i));
6214 if (REG_N_CALLS_CROSSED (i) == 1)
6215 fprintf (file, "; crosses 1 call");
6216 else if (REG_N_CALLS_CROSSED (i))
6217 fprintf (file, "; crosses %d calls", REG_N_CALLS_CROSSED (i));
6218 if (PSEUDO_REGNO_BYTES (i) != UNITS_PER_WORD)
6219 fprintf (file, "; %d bytes", PSEUDO_REGNO_BYTES (i));
6220 class = reg_preferred_class (i);
6221 altclass = reg_alternate_class (i);
6222 if (class != GENERAL_REGS || altclass != ALL_REGS)
6224 if (altclass == ALL_REGS || class == ALL_REGS)
6225 fprintf (file, "; pref %s", reg_class_names[(int) class]);
6226 else if (altclass == NO_REGS)
6227 fprintf (file, "; %s or none", reg_class_names[(int) class]);
6228 else
6229 fprintf (file, "; pref %s, else %s",
6230 reg_class_names[(int) class],
6231 reg_class_names[(int) altclass]);
6233 if (REG_POINTER (regno_reg_rtx[i]))
6234 fprintf (file, "; pointer");
6235 fprintf (file, ".\n");
6238 fprintf (file, "\n%d basic blocks, %d edges.\n", n_basic_blocks, n_edges);
6239 for (i = 0; i < n_basic_blocks; i++)
6241 register basic_block bb = BASIC_BLOCK (i);
6242 register edge e;
6244 fprintf (file, "\nBasic block %d: first insn %d, last %d, loop_depth %d, count %d.\n",
6245 i, INSN_UID (bb->head), INSN_UID (bb->end), bb->loop_depth, bb->count);
6247 fprintf (file, "Predecessors: ");
6248 for (e = bb->pred; e; e = e->pred_next)
6249 dump_edge_info (file, e, 0);
6251 fprintf (file, "\nSuccessors: ");
6252 for (e = bb->succ; e; e = e->succ_next)
6253 dump_edge_info (file, e, 1);
6255 fprintf (file, "\nRegisters live at start:");
6256 dump_regset (bb->global_live_at_start, file);
6258 fprintf (file, "\nRegisters live at end:");
6259 dump_regset (bb->global_live_at_end, file);
6261 putc ('\n', file);
6264 putc ('\n', file);
6267 void
6268 debug_flow_info ()
6270 dump_flow_info (stderr);
6273 static void
6274 dump_edge_info (file, e, do_succ)
6275 FILE *file;
6276 edge e;
6277 int do_succ;
6279 basic_block side = (do_succ ? e->dest : e->src);
6281 if (side == ENTRY_BLOCK_PTR)
6282 fputs (" ENTRY", file);
6283 else if (side == EXIT_BLOCK_PTR)
6284 fputs (" EXIT", file);
6285 else
6286 fprintf (file, " %d", side->index);
6288 if (e->count)
6289 fprintf (file, " count:%d", e->count);
6291 if (e->flags)
6293 static const char * const bitnames[] = {
6294 "fallthru", "crit", "ab", "abcall", "eh", "fake"
6296 int comma = 0;
6297 int i, flags = e->flags;
6299 fputc (' ', file);
6300 fputc ('(', file);
6301 for (i = 0; flags; i++)
6302 if (flags & (1 << i))
6304 flags &= ~(1 << i);
6306 if (comma)
6307 fputc (',', file);
6308 if (i < (int) ARRAY_SIZE (bitnames))
6309 fputs (bitnames[i], file);
6310 else
6311 fprintf (file, "%d", i);
6312 comma = 1;
6314 fputc (')', file);
6318 /* Print out one basic block with live information at start and end. */
6320 void
6321 dump_bb (bb, outf)
6322 basic_block bb;
6323 FILE *outf;
6325 rtx insn;
6326 rtx last;
6327 edge e;
6329 fprintf (outf, ";; Basic block %d, loop depth %d, count %d",
6330 bb->index, bb->loop_depth, bb->count);
6331 putc ('\n', outf);
6333 fputs (";; Predecessors: ", outf);
6334 for (e = bb->pred; e; e = e->pred_next)
6335 dump_edge_info (outf, e, 0);
6336 putc ('\n', outf);
6338 fputs (";; Registers live at start:", outf);
6339 dump_regset (bb->global_live_at_start, outf);
6340 putc ('\n', outf);
6342 for (insn = bb->head, last = NEXT_INSN (bb->end);
6343 insn != last;
6344 insn = NEXT_INSN (insn))
6345 print_rtl_single (outf, insn);
6347 fputs (";; Registers live at end:", outf);
6348 dump_regset (bb->global_live_at_end, outf);
6349 putc ('\n', outf);
6351 fputs (";; Successors: ", outf);
6352 for (e = bb->succ; e; e = e->succ_next)
6353 dump_edge_info (outf, e, 1);
6354 putc ('\n', outf);
6357 void
6358 debug_bb (bb)
6359 basic_block bb;
6361 dump_bb (bb, stderr);
6364 void
6365 debug_bb_n (n)
6366 int n;
6368 dump_bb (BASIC_BLOCK (n), stderr);
6371 /* Like print_rtl, but also print out live information for the start of each
6372 basic block. */
6374 void
6375 print_rtl_with_bb (outf, rtx_first)
6376 FILE *outf;
6377 rtx rtx_first;
6379 register rtx tmp_rtx;
6381 if (rtx_first == 0)
6382 fprintf (outf, "(nil)\n");
6383 else
6385 int i;
6386 enum bb_state { NOT_IN_BB, IN_ONE_BB, IN_MULTIPLE_BB };
6387 int max_uid = get_max_uid ();
6388 basic_block *start = (basic_block *)
6389 xcalloc (max_uid, sizeof (basic_block));
6390 basic_block *end = (basic_block *)
6391 xcalloc (max_uid, sizeof (basic_block));
6392 enum bb_state *in_bb_p = (enum bb_state *)
6393 xcalloc (max_uid, sizeof (enum bb_state));
6395 for (i = n_basic_blocks - 1; i >= 0; i--)
6397 basic_block bb = BASIC_BLOCK (i);
6398 rtx x;
6400 start[INSN_UID (bb->head)] = bb;
6401 end[INSN_UID (bb->end)] = bb;
6402 for (x = bb->head; x != NULL_RTX; x = NEXT_INSN (x))
6404 enum bb_state state = IN_MULTIPLE_BB;
6405 if (in_bb_p[INSN_UID (x)] == NOT_IN_BB)
6406 state = IN_ONE_BB;
6407 in_bb_p[INSN_UID (x)] = state;
6409 if (x == bb->end)
6410 break;
6414 for (tmp_rtx = rtx_first; NULL != tmp_rtx; tmp_rtx = NEXT_INSN (tmp_rtx))
6416 int did_output;
6417 basic_block bb;
6419 if ((bb = start[INSN_UID (tmp_rtx)]) != NULL)
6421 fprintf (outf, ";; Start of basic block %d, registers live:",
6422 bb->index);
6423 dump_regset (bb->global_live_at_start, outf);
6424 putc ('\n', outf);
6427 if (in_bb_p[INSN_UID (tmp_rtx)] == NOT_IN_BB
6428 && GET_CODE (tmp_rtx) != NOTE
6429 && GET_CODE (tmp_rtx) != BARRIER)
6430 fprintf (outf, ";; Insn is not within a basic block\n");
6431 else if (in_bb_p[INSN_UID (tmp_rtx)] == IN_MULTIPLE_BB)
6432 fprintf (outf, ";; Insn is in multiple basic blocks\n");
6434 did_output = print_rtl_single (outf, tmp_rtx);
6436 if ((bb = end[INSN_UID (tmp_rtx)]) != NULL)
6438 fprintf (outf, ";; End of basic block %d, registers live:\n",
6439 bb->index);
6440 dump_regset (bb->global_live_at_end, outf);
6441 putc ('\n', outf);
6444 if (did_output)
6445 putc ('\n', outf);
6448 free (start);
6449 free (end);
6450 free (in_bb_p);
6453 if (current_function_epilogue_delay_list != 0)
6455 fprintf (outf, "\n;; Insns in epilogue delay list:\n\n");
6456 for (tmp_rtx = current_function_epilogue_delay_list; tmp_rtx != 0;
6457 tmp_rtx = XEXP (tmp_rtx, 1))
6458 print_rtl_single (outf, XEXP (tmp_rtx, 0));
6462 /* Dump the rtl into the current debugging dump file, then abort. */
6463 static void
6464 print_rtl_and_abort ()
6466 if (rtl_dump_file)
6468 print_rtl_with_bb (rtl_dump_file, get_insns ());
6469 fclose (rtl_dump_file);
6471 abort ();
6474 /* Recompute register set/reference counts immediately prior to register
6475 allocation.
6477 This avoids problems with set/reference counts changing to/from values
6478 which have special meanings to the register allocators.
6480 Additionally, the reference counts are the primary component used by the
6481 register allocators to prioritize pseudos for allocation to hard regs.
6482 More accurate reference counts generally lead to better register allocation.
6484 F is the first insn to be scanned.
6486 LOOP_STEP denotes how much loop_depth should be incremented per
6487 loop nesting level in order to increase the ref count more for
6488 references in a loop.
6490 It might be worthwhile to update REG_LIVE_LENGTH, REG_BASIC_BLOCK and
6491 possibly other information which is used by the register allocators. */
6493 void
6494 recompute_reg_usage (f, loop_step)
6495 rtx f ATTRIBUTE_UNUSED;
6496 int loop_step ATTRIBUTE_UNUSED;
6498 allocate_reg_life_data ();
6499 update_life_info (NULL, UPDATE_LIFE_LOCAL, PROP_REG_INFO);
6502 /* Optionally removes all the REG_DEAD and REG_UNUSED notes from a set of
6503 blocks. If BLOCKS is NULL, assume the universal set. Returns a count
6504 of the number of registers that died. */
6507 count_or_remove_death_notes (blocks, kill)
6508 sbitmap blocks;
6509 int kill;
6511 int i, count = 0;
6513 for (i = n_basic_blocks - 1; i >= 0; --i)
6515 basic_block bb;
6516 rtx insn;
6518 if (blocks && ! TEST_BIT (blocks, i))
6519 continue;
6521 bb = BASIC_BLOCK (i);
6523 for (insn = bb->head;; insn = NEXT_INSN (insn))
6525 if (INSN_P (insn))
6527 rtx *pprev = &REG_NOTES (insn);
6528 rtx link = *pprev;
6530 while (link)
6532 switch (REG_NOTE_KIND (link))
6534 case REG_DEAD:
6535 if (GET_CODE (XEXP (link, 0)) == REG)
6537 rtx reg = XEXP (link, 0);
6538 int n;
6540 if (REGNO (reg) >= FIRST_PSEUDO_REGISTER)
6541 n = 1;
6542 else
6543 n = HARD_REGNO_NREGS (REGNO (reg), GET_MODE (reg));
6544 count += n;
6546 /* Fall through. */
6548 case REG_UNUSED:
6549 if (kill)
6551 rtx next = XEXP (link, 1);
6552 free_EXPR_LIST_node (link);
6553 *pprev = link = next;
6554 break;
6556 /* Fall through. */
6558 default:
6559 pprev = &XEXP (link, 1);
6560 link = *pprev;
6561 break;
6566 if (insn == bb->end)
6567 break;
6571 return count;
6575 /* Update insns block within BB. */
6577 void
6578 update_bb_for_insn (bb)
6579 basic_block bb;
6581 rtx insn;
6583 if (! basic_block_for_insn)
6584 return;
6586 for (insn = bb->head; ; insn = NEXT_INSN (insn))
6588 set_block_for_insn (insn, bb);
6590 if (insn == bb->end)
6591 break;
6596 /* Record INSN's block as BB. */
6598 void
6599 set_block_for_insn (insn, bb)
6600 rtx insn;
6601 basic_block bb;
6603 size_t uid = INSN_UID (insn);
6604 if (uid >= basic_block_for_insn->num_elements)
6606 int new_size;
6608 /* Add one-eighth the size so we don't keep calling xrealloc. */
6609 new_size = uid + (uid + 7) / 8;
6611 VARRAY_GROW (basic_block_for_insn, new_size);
6613 VARRAY_BB (basic_block_for_insn, uid) = bb;
6616 /* Record INSN's block number as BB. */
6617 /* ??? This has got to go. */
6619 void
6620 set_block_num (insn, bb)
6621 rtx insn;
6622 int bb;
6624 set_block_for_insn (insn, BASIC_BLOCK (bb));
6627 /* Verify the CFG consistency. This function check some CFG invariants and
6628 aborts when something is wrong. Hope that this function will help to
6629 convert many optimization passes to preserve CFG consistent.
6631 Currently it does following checks:
6633 - test head/end pointers
6634 - overlapping of basic blocks
6635 - edge list corectness
6636 - headers of basic blocks (the NOTE_INSN_BASIC_BLOCK note)
6637 - tails of basic blocks (ensure that boundary is necesary)
6638 - scans body of the basic block for JUMP_INSN, CODE_LABEL
6639 and NOTE_INSN_BASIC_BLOCK
6640 - check that all insns are in the basic blocks
6641 (except the switch handling code, barriers and notes)
6642 - check that all returns are followed by barriers
6644 In future it can be extended check a lot of other stuff as well
6645 (reachability of basic blocks, life information, etc. etc.). */
6647 void
6648 verify_flow_info ()
6650 const int max_uid = get_max_uid ();
6651 const rtx rtx_first = get_insns ();
6652 rtx last_head = get_last_insn ();
6653 basic_block *bb_info;
6654 rtx x;
6655 int i, last_bb_num_seen, num_bb_notes, err = 0;
6657 bb_info = (basic_block *) xcalloc (max_uid, sizeof (basic_block));
6659 for (i = n_basic_blocks - 1; i >= 0; i--)
6661 basic_block bb = BASIC_BLOCK (i);
6662 rtx head = bb->head;
6663 rtx end = bb->end;
6665 /* Verify the end of the basic block is in the INSN chain. */
6666 for (x = last_head; x != NULL_RTX; x = PREV_INSN (x))
6667 if (x == end)
6668 break;
6669 if (!x)
6671 error ("End insn %d for block %d not found in the insn stream.",
6672 INSN_UID (end), bb->index);
6673 err = 1;
6676 /* Work backwards from the end to the head of the basic block
6677 to verify the head is in the RTL chain. */
6678 for (; x != NULL_RTX; x = PREV_INSN (x))
6680 /* While walking over the insn chain, verify insns appear
6681 in only one basic block and initialize the BB_INFO array
6682 used by other passes. */
6683 if (bb_info[INSN_UID (x)] != NULL)
6685 error ("Insn %d is in multiple basic blocks (%d and %d)",
6686 INSN_UID (x), bb->index, bb_info[INSN_UID (x)]->index);
6687 err = 1;
6689 bb_info[INSN_UID (x)] = bb;
6691 if (x == head)
6692 break;
6694 if (!x)
6696 error ("Head insn %d for block %d not found in the insn stream.",
6697 INSN_UID (head), bb->index);
6698 err = 1;
6701 last_head = x;
6704 /* Now check the basic blocks (boundaries etc.) */
6705 for (i = n_basic_blocks - 1; i >= 0; i--)
6707 basic_block bb = BASIC_BLOCK (i);
6708 /* Check corectness of edge lists */
6709 edge e;
6711 e = bb->succ;
6712 while (e)
6714 if (e->src != bb)
6716 fprintf (stderr,
6717 "verify_flow_info: Basic block %d succ edge is corrupted\n",
6718 bb->index);
6719 fprintf (stderr, "Predecessor: ");
6720 dump_edge_info (stderr, e, 0);
6721 fprintf (stderr, "\nSuccessor: ");
6722 dump_edge_info (stderr, e, 1);
6723 fflush (stderr);
6724 err = 1;
6726 if (e->dest != EXIT_BLOCK_PTR)
6728 edge e2 = e->dest->pred;
6729 while (e2 && e2 != e)
6730 e2 = e2->pred_next;
6731 if (!e2)
6733 error ("Basic block %i edge lists are corrupted", bb->index);
6734 err = 1;
6737 e = e->succ_next;
6740 e = bb->pred;
6741 while (e)
6743 if (e->dest != bb)
6745 error ("Basic block %d pred edge is corrupted", bb->index);
6746 fputs ("Predecessor: ", stderr);
6747 dump_edge_info (stderr, e, 0);
6748 fputs ("\nSuccessor: ", stderr);
6749 dump_edge_info (stderr, e, 1);
6750 fputc ('\n', stderr);
6751 err = 1;
6753 if (e->src != ENTRY_BLOCK_PTR)
6755 edge e2 = e->src->succ;
6756 while (e2 && e2 != e)
6757 e2 = e2->succ_next;
6758 if (!e2)
6760 error ("Basic block %i edge lists are corrupted", bb->index);
6761 err = 1;
6764 e = e->pred_next;
6767 /* OK pointers are correct. Now check the header of basic
6768 block. It ought to contain optional CODE_LABEL followed
6769 by NOTE_BASIC_BLOCK. */
6770 x = bb->head;
6771 if (GET_CODE (x) == CODE_LABEL)
6773 if (bb->end == x)
6775 error ("NOTE_INSN_BASIC_BLOCK is missing for block %d",
6776 bb->index);
6777 err = 1;
6779 x = NEXT_INSN (x);
6781 if (!NOTE_INSN_BASIC_BLOCK_P (x) || NOTE_BASIC_BLOCK (x) != bb)
6783 error ("NOTE_INSN_BASIC_BLOCK is missing for block %d\n",
6784 bb->index);
6785 err = 1;
6788 if (bb->end == x)
6790 /* Do checks for empty blocks here */
6792 else
6794 x = NEXT_INSN (x);
6795 while (x)
6797 if (NOTE_INSN_BASIC_BLOCK_P (x))
6799 error ("NOTE_INSN_BASIC_BLOCK %d in the middle of basic block %d",
6800 INSN_UID (x), bb->index);
6801 err = 1;
6804 if (x == bb->end)
6805 break;
6807 if (GET_CODE (x) == JUMP_INSN
6808 || GET_CODE (x) == CODE_LABEL
6809 || GET_CODE (x) == BARRIER)
6811 error ("In basic block %d:", bb->index);
6812 fatal_insn ("Flow control insn inside a basic block", x);
6815 x = NEXT_INSN (x);
6820 last_bb_num_seen = -1;
6821 num_bb_notes = 0;
6822 x = rtx_first;
6823 while (x)
6825 if (NOTE_INSN_BASIC_BLOCK_P (x))
6827 basic_block bb = NOTE_BASIC_BLOCK (x);
6828 num_bb_notes++;
6829 if (bb->index != last_bb_num_seen + 1)
6830 /* Basic blocks not numbered consecutively. */
6831 abort ();
6833 last_bb_num_seen = bb->index;
6836 if (!bb_info[INSN_UID (x)])
6838 switch (GET_CODE (x))
6840 case BARRIER:
6841 case NOTE:
6842 break;
6844 case CODE_LABEL:
6845 /* An addr_vec is placed outside any block block. */
6846 if (NEXT_INSN (x)
6847 && GET_CODE (NEXT_INSN (x)) == JUMP_INSN
6848 && (GET_CODE (PATTERN (NEXT_INSN (x))) == ADDR_DIFF_VEC
6849 || GET_CODE (PATTERN (NEXT_INSN (x))) == ADDR_VEC))
6851 x = NEXT_INSN (x);
6854 /* But in any case, non-deletable labels can appear anywhere. */
6855 break;
6857 default:
6858 fatal_insn ("Insn outside basic block", x);
6862 if (INSN_P (x)
6863 && GET_CODE (x) == JUMP_INSN
6864 && returnjump_p (x) && ! condjump_p (x)
6865 && ! (NEXT_INSN (x) && GET_CODE (NEXT_INSN (x)) == BARRIER))
6866 fatal_insn ("Return not followed by barrier", x);
6868 x = NEXT_INSN (x);
6871 if (num_bb_notes != n_basic_blocks)
6872 internal_error
6873 ("number of bb notes in insn chain (%d) != n_basic_blocks (%d)",
6874 num_bb_notes, n_basic_blocks);
6876 if (err)
6877 abort ();
6879 /* Clean up. */
6880 free (bb_info);
6883 /* Functions to access an edge list with a vector representation.
6884 Enough data is kept such that given an index number, the
6885 pred and succ that edge represents can be determined, or
6886 given a pred and a succ, its index number can be returned.
6887 This allows algorithms which consume a lot of memory to
6888 represent the normally full matrix of edge (pred,succ) with a
6889 single indexed vector, edge (EDGE_INDEX (pred, succ)), with no
6890 wasted space in the client code due to sparse flow graphs. */
6892 /* This functions initializes the edge list. Basically the entire
6893 flowgraph is processed, and all edges are assigned a number,
6894 and the data structure is filled in. */
6896 struct edge_list *
6897 create_edge_list ()
6899 struct edge_list *elist;
6900 edge e;
6901 int num_edges;
6902 int x;
6903 int block_count;
6905 block_count = n_basic_blocks + 2; /* Include the entry and exit blocks. */
6907 num_edges = 0;
6909 /* Determine the number of edges in the flow graph by counting successor
6910 edges on each basic block. */
6911 for (x = 0; x < n_basic_blocks; x++)
6913 basic_block bb = BASIC_BLOCK (x);
6915 for (e = bb->succ; e; e = e->succ_next)
6916 num_edges++;
6918 /* Don't forget successors of the entry block. */
6919 for (e = ENTRY_BLOCK_PTR->succ; e; e = e->succ_next)
6920 num_edges++;
6922 elist = (struct edge_list *) xmalloc (sizeof (struct edge_list));
6923 elist->num_blocks = block_count;
6924 elist->num_edges = num_edges;
6925 elist->index_to_edge = (edge *) xmalloc (sizeof (edge) * num_edges);
6927 num_edges = 0;
6929 /* Follow successors of the entry block, and register these edges. */
6930 for (e = ENTRY_BLOCK_PTR->succ; e; e = e->succ_next)
6932 elist->index_to_edge[num_edges] = e;
6933 num_edges++;
6936 for (x = 0; x < n_basic_blocks; x++)
6938 basic_block bb = BASIC_BLOCK (x);
6940 /* Follow all successors of blocks, and register these edges. */
6941 for (e = bb->succ; e; e = e->succ_next)
6943 elist->index_to_edge[num_edges] = e;
6944 num_edges++;
6947 return elist;
6950 /* This function free's memory associated with an edge list. */
6952 void
6953 free_edge_list (elist)
6954 struct edge_list *elist;
6956 if (elist)
6958 free (elist->index_to_edge);
6959 free (elist);
6963 /* This function provides debug output showing an edge list. */
6965 void
6966 print_edge_list (f, elist)
6967 FILE *f;
6968 struct edge_list *elist;
6970 int x;
6971 fprintf (f, "Compressed edge list, %d BBs + entry & exit, and %d edges\n",
6972 elist->num_blocks - 2, elist->num_edges);
6974 for (x = 0; x < elist->num_edges; x++)
6976 fprintf (f, " %-4d - edge(", x);
6977 if (INDEX_EDGE_PRED_BB (elist, x) == ENTRY_BLOCK_PTR)
6978 fprintf (f, "entry,");
6979 else
6980 fprintf (f, "%d,", INDEX_EDGE_PRED_BB (elist, x)->index);
6982 if (INDEX_EDGE_SUCC_BB (elist, x) == EXIT_BLOCK_PTR)
6983 fprintf (f, "exit)\n");
6984 else
6985 fprintf (f, "%d)\n", INDEX_EDGE_SUCC_BB (elist, x)->index);
6989 /* This function provides an internal consistency check of an edge list,
6990 verifying that all edges are present, and that there are no
6991 extra edges. */
6993 void
6994 verify_edge_list (f, elist)
6995 FILE *f;
6996 struct edge_list *elist;
6998 int x, pred, succ, index;
6999 edge e;
7001 for (x = 0; x < n_basic_blocks; x++)
7003 basic_block bb = BASIC_BLOCK (x);
7005 for (e = bb->succ; e; e = e->succ_next)
7007 pred = e->src->index;
7008 succ = e->dest->index;
7009 index = EDGE_INDEX (elist, e->src, e->dest);
7010 if (index == EDGE_INDEX_NO_EDGE)
7012 fprintf (f, "*p* No index for edge from %d to %d\n", pred, succ);
7013 continue;
7015 if (INDEX_EDGE_PRED_BB (elist, index)->index != pred)
7016 fprintf (f, "*p* Pred for index %d should be %d not %d\n",
7017 index, pred, INDEX_EDGE_PRED_BB (elist, index)->index);
7018 if (INDEX_EDGE_SUCC_BB (elist, index)->index != succ)
7019 fprintf (f, "*p* Succ for index %d should be %d not %d\n",
7020 index, succ, INDEX_EDGE_SUCC_BB (elist, index)->index);
7023 for (e = ENTRY_BLOCK_PTR->succ; e; e = e->succ_next)
7025 pred = e->src->index;
7026 succ = e->dest->index;
7027 index = EDGE_INDEX (elist, e->src, e->dest);
7028 if (index == EDGE_INDEX_NO_EDGE)
7030 fprintf (f, "*p* No index for edge from %d to %d\n", pred, succ);
7031 continue;
7033 if (INDEX_EDGE_PRED_BB (elist, index)->index != pred)
7034 fprintf (f, "*p* Pred for index %d should be %d not %d\n",
7035 index, pred, INDEX_EDGE_PRED_BB (elist, index)->index);
7036 if (INDEX_EDGE_SUCC_BB (elist, index)->index != succ)
7037 fprintf (f, "*p* Succ for index %d should be %d not %d\n",
7038 index, succ, INDEX_EDGE_SUCC_BB (elist, index)->index);
7040 /* We've verified that all the edges are in the list, no lets make sure
7041 there are no spurious edges in the list. */
7043 for (pred = 0; pred < n_basic_blocks; pred++)
7044 for (succ = 0; succ < n_basic_blocks; succ++)
7046 basic_block p = BASIC_BLOCK (pred);
7047 basic_block s = BASIC_BLOCK (succ);
7049 int found_edge = 0;
7051 for (e = p->succ; e; e = e->succ_next)
7052 if (e->dest == s)
7054 found_edge = 1;
7055 break;
7057 for (e = s->pred; e; e = e->pred_next)
7058 if (e->src == p)
7060 found_edge = 1;
7061 break;
7063 if (EDGE_INDEX (elist, BASIC_BLOCK (pred), BASIC_BLOCK (succ))
7064 == EDGE_INDEX_NO_EDGE && found_edge != 0)
7065 fprintf (f, "*** Edge (%d, %d) appears to not have an index\n",
7066 pred, succ);
7067 if (EDGE_INDEX (elist, BASIC_BLOCK (pred), BASIC_BLOCK (succ))
7068 != EDGE_INDEX_NO_EDGE && found_edge == 0)
7069 fprintf (f, "*** Edge (%d, %d) has index %d, but there is no edge\n",
7070 pred, succ, EDGE_INDEX (elist, BASIC_BLOCK (pred),
7071 BASIC_BLOCK (succ)));
7073 for (succ = 0; succ < n_basic_blocks; succ++)
7075 basic_block p = ENTRY_BLOCK_PTR;
7076 basic_block s = BASIC_BLOCK (succ);
7078 int found_edge = 0;
7080 for (e = p->succ; e; e = e->succ_next)
7081 if (e->dest == s)
7083 found_edge = 1;
7084 break;
7086 for (e = s->pred; e; e = e->pred_next)
7087 if (e->src == p)
7089 found_edge = 1;
7090 break;
7092 if (EDGE_INDEX (elist, ENTRY_BLOCK_PTR, BASIC_BLOCK (succ))
7093 == EDGE_INDEX_NO_EDGE && found_edge != 0)
7094 fprintf (f, "*** Edge (entry, %d) appears to not have an index\n",
7095 succ);
7096 if (EDGE_INDEX (elist, ENTRY_BLOCK_PTR, BASIC_BLOCK (succ))
7097 != EDGE_INDEX_NO_EDGE && found_edge == 0)
7098 fprintf (f, "*** Edge (entry, %d) has index %d, but no edge exists\n",
7099 succ, EDGE_INDEX (elist, ENTRY_BLOCK_PTR,
7100 BASIC_BLOCK (succ)));
7102 for (pred = 0; pred < n_basic_blocks; pred++)
7104 basic_block p = BASIC_BLOCK (pred);
7105 basic_block s = EXIT_BLOCK_PTR;
7107 int found_edge = 0;
7109 for (e = p->succ; e; e = e->succ_next)
7110 if (e->dest == s)
7112 found_edge = 1;
7113 break;
7115 for (e = s->pred; e; e = e->pred_next)
7116 if (e->src == p)
7118 found_edge = 1;
7119 break;
7121 if (EDGE_INDEX (elist, BASIC_BLOCK (pred), EXIT_BLOCK_PTR)
7122 == EDGE_INDEX_NO_EDGE && found_edge != 0)
7123 fprintf (f, "*** Edge (%d, exit) appears to not have an index\n",
7124 pred);
7125 if (EDGE_INDEX (elist, BASIC_BLOCK (pred), EXIT_BLOCK_PTR)
7126 != EDGE_INDEX_NO_EDGE && found_edge == 0)
7127 fprintf (f, "*** Edge (%d, exit) has index %d, but no edge exists\n",
7128 pred, EDGE_INDEX (elist, BASIC_BLOCK (pred),
7129 EXIT_BLOCK_PTR));
7133 /* This routine will determine what, if any, edge there is between
7134 a specified predecessor and successor. */
7137 find_edge_index (edge_list, pred, succ)
7138 struct edge_list *edge_list;
7139 basic_block pred, succ;
7141 int x;
7142 for (x = 0; x < NUM_EDGES (edge_list); x++)
7144 if (INDEX_EDGE_PRED_BB (edge_list, x) == pred
7145 && INDEX_EDGE_SUCC_BB (edge_list, x) == succ)
7146 return x;
7148 return (EDGE_INDEX_NO_EDGE);
7151 /* This function will remove an edge from the flow graph. */
7153 void
7154 remove_edge (e)
7155 edge e;
7157 edge last_pred = NULL;
7158 edge last_succ = NULL;
7159 edge tmp;
7160 basic_block src, dest;
7161 src = e->src;
7162 dest = e->dest;
7163 for (tmp = src->succ; tmp && tmp != e; tmp = tmp->succ_next)
7164 last_succ = tmp;
7166 if (!tmp)
7167 abort ();
7168 if (last_succ)
7169 last_succ->succ_next = e->succ_next;
7170 else
7171 src->succ = e->succ_next;
7173 for (tmp = dest->pred; tmp && tmp != e; tmp = tmp->pred_next)
7174 last_pred = tmp;
7176 if (!tmp)
7177 abort ();
7178 if (last_pred)
7179 last_pred->pred_next = e->pred_next;
7180 else
7181 dest->pred = e->pred_next;
7183 n_edges--;
7184 free (e);
7187 /* This routine will remove any fake successor edges for a basic block.
7188 When the edge is removed, it is also removed from whatever predecessor
7189 list it is in. */
7191 static void
7192 remove_fake_successors (bb)
7193 basic_block bb;
7195 edge e;
7196 for (e = bb->succ; e;)
7198 edge tmp = e;
7199 e = e->succ_next;
7200 if ((tmp->flags & EDGE_FAKE) == EDGE_FAKE)
7201 remove_edge (tmp);
7205 /* This routine will remove all fake edges from the flow graph. If
7206 we remove all fake successors, it will automatically remove all
7207 fake predecessors. */
7209 void
7210 remove_fake_edges ()
7212 int x;
7214 for (x = 0; x < n_basic_blocks; x++)
7215 remove_fake_successors (BASIC_BLOCK (x));
7217 /* We've handled all successors except the entry block's. */
7218 remove_fake_successors (ENTRY_BLOCK_PTR);
7221 /* This function will add a fake edge between any block which has no
7222 successors, and the exit block. Some data flow equations require these
7223 edges to exist. */
7225 void
7226 add_noreturn_fake_exit_edges ()
7228 int x;
7230 for (x = 0; x < n_basic_blocks; x++)
7231 if (BASIC_BLOCK (x)->succ == NULL)
7232 make_edge (NULL, BASIC_BLOCK (x), EXIT_BLOCK_PTR, EDGE_FAKE);
7235 /* This function adds a fake edge between any infinite loops to the
7236 exit block. Some optimizations require a path from each node to
7237 the exit node.
7239 See also Morgan, Figure 3.10, pp. 82-83.
7241 The current implementation is ugly, not attempting to minimize the
7242 number of inserted fake edges. To reduce the number of fake edges
7243 to insert, add fake edges from _innermost_ loops containing only
7244 nodes not reachable from the exit block. */
7246 void
7247 connect_infinite_loops_to_exit ()
7249 basic_block unvisited_block;
7251 /* Perform depth-first search in the reverse graph to find nodes
7252 reachable from the exit block. */
7253 struct depth_first_search_dsS dfs_ds;
7255 flow_dfs_compute_reverse_init (&dfs_ds);
7256 flow_dfs_compute_reverse_add_bb (&dfs_ds, EXIT_BLOCK_PTR);
7258 /* Repeatedly add fake edges, updating the unreachable nodes. */
7259 while (1)
7261 unvisited_block = flow_dfs_compute_reverse_execute (&dfs_ds);
7262 if (!unvisited_block)
7263 break;
7264 make_edge (NULL, unvisited_block, EXIT_BLOCK_PTR, EDGE_FAKE);
7265 flow_dfs_compute_reverse_add_bb (&dfs_ds, unvisited_block);
7268 flow_dfs_compute_reverse_finish (&dfs_ds);
7270 return;
7273 /* Redirect an edge's successor from one block to another. */
7275 void
7276 redirect_edge_succ (e, new_succ)
7277 edge e;
7278 basic_block new_succ;
7280 edge *pe;
7282 /* Disconnect the edge from the old successor block. */
7283 for (pe = &e->dest->pred; *pe != e; pe = &(*pe)->pred_next)
7284 continue;
7285 *pe = (*pe)->pred_next;
7287 /* Reconnect the edge to the new successor block. */
7288 e->pred_next = new_succ->pred;
7289 new_succ->pred = e;
7290 e->dest = new_succ;
7293 /* Redirect an edge's predecessor from one block to another. */
7295 void
7296 redirect_edge_pred (e, new_pred)
7297 edge e;
7298 basic_block new_pred;
7300 edge *pe;
7302 /* Disconnect the edge from the old predecessor block. */
7303 for (pe = &e->src->succ; *pe != e; pe = &(*pe)->succ_next)
7304 continue;
7305 *pe = (*pe)->succ_next;
7307 /* Reconnect the edge to the new predecessor block. */
7308 e->succ_next = new_pred->succ;
7309 new_pred->succ = e;
7310 e->src = new_pred;
7313 /* Dump the list of basic blocks in the bitmap NODES. */
7315 static void
7316 flow_nodes_print (str, nodes, file)
7317 const char *str;
7318 const sbitmap nodes;
7319 FILE *file;
7321 int node;
7323 if (! nodes)
7324 return;
7326 fprintf (file, "%s { ", str);
7327 EXECUTE_IF_SET_IN_SBITMAP (nodes, 0, node, {fprintf (file, "%d ", node);});
7328 fputs ("}\n", file);
7332 /* Dump the list of edges in the array EDGE_LIST. */
7334 static void
7335 flow_edge_list_print (str, edge_list, num_edges, file)
7336 const char *str;
7337 const edge *edge_list;
7338 int num_edges;
7339 FILE *file;
7341 int i;
7343 if (! edge_list)
7344 return;
7346 fprintf (file, "%s { ", str);
7347 for (i = 0; i < num_edges; i++)
7348 fprintf (file, "%d->%d ", edge_list[i]->src->index,
7349 edge_list[i]->dest->index);
7350 fputs ("}\n", file);
7354 /* Dump loop related CFG information. */
7356 static void
7357 flow_loops_cfg_dump (loops, file)
7358 const struct loops *loops;
7359 FILE *file;
7361 int i;
7363 if (! loops->num || ! file || ! loops->cfg.dom)
7364 return;
7366 for (i = 0; i < n_basic_blocks; i++)
7368 edge succ;
7370 fprintf (file, ";; %d succs { ", i);
7371 for (succ = BASIC_BLOCK (i)->succ; succ; succ = succ->succ_next)
7372 fprintf (file, "%d ", succ->dest->index);
7373 flow_nodes_print ("} dom", loops->cfg.dom[i], file);
7376 /* Dump the DFS node order. */
7377 if (loops->cfg.dfs_order)
7379 fputs (";; DFS order: ", file);
7380 for (i = 0; i < n_basic_blocks; i++)
7381 fprintf (file, "%d ", loops->cfg.dfs_order[i]);
7382 fputs ("\n", file);
7384 /* Dump the reverse completion node order. */
7385 if (loops->cfg.rc_order)
7387 fputs (";; RC order: ", file);
7388 for (i = 0; i < n_basic_blocks; i++)
7389 fprintf (file, "%d ", loops->cfg.rc_order[i]);
7390 fputs ("\n", file);
7394 /* Return non-zero if the nodes of LOOP are a subset of OUTER. */
7396 static int
7397 flow_loop_nested_p (outer, loop)
7398 struct loop *outer;
7399 struct loop *loop;
7401 return sbitmap_a_subset_b_p (loop->nodes, outer->nodes);
7405 /* Dump the loop information specified by LOOP to the stream FILE
7406 using auxiliary dump callback function LOOP_DUMP_AUX if non null. */
7407 void
7408 flow_loop_dump (loop, file, loop_dump_aux, verbose)
7409 const struct loop *loop;
7410 FILE *file;
7411 void (*loop_dump_aux) PARAMS((const struct loop *, FILE *, int));
7412 int verbose;
7414 if (! loop || ! loop->header)
7415 return;
7417 fprintf (file, ";;\n;; Loop %d (%d to %d):%s%s\n",
7418 loop->num, INSN_UID (loop->first->head),
7419 INSN_UID (loop->last->end),
7420 loop->shared ? " shared" : "",
7421 loop->invalid ? " invalid" : "");
7422 fprintf (file, ";; header %d, latch %d, pre-header %d, first %d, last %d\n",
7423 loop->header->index, loop->latch->index,
7424 loop->pre_header ? loop->pre_header->index : -1,
7425 loop->first->index, loop->last->index);
7426 fprintf (file, ";; depth %d, level %d, outer %ld\n",
7427 loop->depth, loop->level,
7428 (long) (loop->outer ? loop->outer->num : -1));
7430 if (loop->pre_header_edges)
7431 flow_edge_list_print (";; pre-header edges", loop->pre_header_edges,
7432 loop->num_pre_header_edges, file);
7433 flow_edge_list_print (";; entry edges", loop->entry_edges,
7434 loop->num_entries, file);
7435 fprintf (file, ";; %d", loop->num_nodes);
7436 flow_nodes_print (" nodes", loop->nodes, file);
7437 flow_edge_list_print (";; exit edges", loop->exit_edges,
7438 loop->num_exits, file);
7439 if (loop->exits_doms)
7440 flow_nodes_print (";; exit doms", loop->exits_doms, file);
7441 if (loop_dump_aux)
7442 loop_dump_aux (loop, file, verbose);
7446 /* Dump the loop information specified by LOOPS to the stream FILE,
7447 using auxiliary dump callback function LOOP_DUMP_AUX if non null. */
7448 void
7449 flow_loops_dump (loops, file, loop_dump_aux, verbose)
7450 const struct loops *loops;
7451 FILE *file;
7452 void (*loop_dump_aux) PARAMS((const struct loop *, FILE *, int));
7453 int verbose;
7455 int i;
7456 int num_loops;
7458 num_loops = loops->num;
7459 if (! num_loops || ! file)
7460 return;
7462 fprintf (file, ";; %d loops found, %d levels\n",
7463 num_loops, loops->levels);
7465 for (i = 0; i < num_loops; i++)
7467 struct loop *loop = &loops->array[i];
7469 flow_loop_dump (loop, file, loop_dump_aux, verbose);
7471 if (loop->shared)
7473 int j;
7475 for (j = 0; j < i; j++)
7477 struct loop *oloop = &loops->array[j];
7479 if (loop->header == oloop->header)
7481 int disjoint;
7482 int smaller;
7484 smaller = loop->num_nodes < oloop->num_nodes;
7486 /* If the union of LOOP and OLOOP is different than
7487 the larger of LOOP and OLOOP then LOOP and OLOOP
7488 must be disjoint. */
7489 disjoint = ! flow_loop_nested_p (smaller ? loop : oloop,
7490 smaller ? oloop : loop);
7491 fprintf (file,
7492 ";; loop header %d shared by loops %d, %d %s\n",
7493 loop->header->index, i, j,
7494 disjoint ? "disjoint" : "nested");
7500 if (verbose)
7501 flow_loops_cfg_dump (loops, file);
7505 /* Free all the memory allocated for LOOPS. */
7507 void
7508 flow_loops_free (loops)
7509 struct loops *loops;
7511 if (loops->array)
7513 int i;
7515 if (! loops->num)
7516 abort ();
7518 /* Free the loop descriptors. */
7519 for (i = 0; i < loops->num; i++)
7521 struct loop *loop = &loops->array[i];
7523 if (loop->pre_header_edges)
7524 free (loop->pre_header_edges);
7525 if (loop->nodes)
7526 sbitmap_free (loop->nodes);
7527 if (loop->entry_edges)
7528 free (loop->entry_edges);
7529 if (loop->exit_edges)
7530 free (loop->exit_edges);
7531 if (loop->exits_doms)
7532 sbitmap_free (loop->exits_doms);
7534 free (loops->array);
7535 loops->array = NULL;
7537 if (loops->cfg.dom)
7538 sbitmap_vector_free (loops->cfg.dom);
7539 if (loops->cfg.dfs_order)
7540 free (loops->cfg.dfs_order);
7542 if (loops->shared_headers)
7543 sbitmap_free (loops->shared_headers);
7548 /* Find the entry edges into the loop with header HEADER and nodes
7549 NODES and store in ENTRY_EDGES array. Return the number of entry
7550 edges from the loop. */
7552 static int
7553 flow_loop_entry_edges_find (header, nodes, entry_edges)
7554 basic_block header;
7555 const sbitmap nodes;
7556 edge **entry_edges;
7558 edge e;
7559 int num_entries;
7561 *entry_edges = NULL;
7563 num_entries = 0;
7564 for (e = header->pred; e; e = e->pred_next)
7566 basic_block src = e->src;
7568 if (src == ENTRY_BLOCK_PTR || ! TEST_BIT (nodes, src->index))
7569 num_entries++;
7572 if (! num_entries)
7573 abort ();
7575 *entry_edges = (edge *) xmalloc (num_entries * sizeof (edge *));
7577 num_entries = 0;
7578 for (e = header->pred; e; e = e->pred_next)
7580 basic_block src = e->src;
7582 if (src == ENTRY_BLOCK_PTR || ! TEST_BIT (nodes, src->index))
7583 (*entry_edges)[num_entries++] = e;
7586 return num_entries;
7590 /* Find the exit edges from the loop using the bitmap of loop nodes
7591 NODES and store in EXIT_EDGES array. Return the number of
7592 exit edges from the loop. */
7594 static int
7595 flow_loop_exit_edges_find (nodes, exit_edges)
7596 const sbitmap nodes;
7597 edge **exit_edges;
7599 edge e;
7600 int node;
7601 int num_exits;
7603 *exit_edges = NULL;
7605 /* Check all nodes within the loop to see if there are any
7606 successors not in the loop. Note that a node may have multiple
7607 exiting edges ????? A node can have one jumping edge and one fallthru
7608 edge so only one of these can exit the loop. */
7609 num_exits = 0;
7610 EXECUTE_IF_SET_IN_SBITMAP (nodes, 0, node, {
7611 for (e = BASIC_BLOCK (node)->succ; e; e = e->succ_next)
7613 basic_block dest = e->dest;
7615 if (dest == EXIT_BLOCK_PTR || ! TEST_BIT (nodes, dest->index))
7616 num_exits++;
7620 if (! num_exits)
7621 return 0;
7623 *exit_edges = (edge *) xmalloc (num_exits * sizeof (edge *));
7625 /* Store all exiting edges into an array. */
7626 num_exits = 0;
7627 EXECUTE_IF_SET_IN_SBITMAP (nodes, 0, node, {
7628 for (e = BASIC_BLOCK (node)->succ; e; e = e->succ_next)
7630 basic_block dest = e->dest;
7632 if (dest == EXIT_BLOCK_PTR || ! TEST_BIT (nodes, dest->index))
7633 (*exit_edges)[num_exits++] = e;
7637 return num_exits;
7641 /* Find the nodes contained within the loop with header HEADER and
7642 latch LATCH and store in NODES. Return the number of nodes within
7643 the loop. */
7645 static int
7646 flow_loop_nodes_find (header, latch, nodes)
7647 basic_block header;
7648 basic_block latch;
7649 sbitmap nodes;
7651 basic_block *stack;
7652 int sp;
7653 int num_nodes = 0;
7655 stack = (basic_block *) xmalloc (n_basic_blocks * sizeof (basic_block));
7656 sp = 0;
7658 /* Start with only the loop header in the set of loop nodes. */
7659 sbitmap_zero (nodes);
7660 SET_BIT (nodes, header->index);
7661 num_nodes++;
7662 header->loop_depth++;
7664 /* Push the loop latch on to the stack. */
7665 if (! TEST_BIT (nodes, latch->index))
7667 SET_BIT (nodes, latch->index);
7668 latch->loop_depth++;
7669 num_nodes++;
7670 stack[sp++] = latch;
7673 while (sp)
7675 basic_block node;
7676 edge e;
7678 node = stack[--sp];
7679 for (e = node->pred; e; e = e->pred_next)
7681 basic_block ancestor = e->src;
7683 /* If each ancestor not marked as part of loop, add to set of
7684 loop nodes and push on to stack. */
7685 if (ancestor != ENTRY_BLOCK_PTR
7686 && ! TEST_BIT (nodes, ancestor->index))
7688 SET_BIT (nodes, ancestor->index);
7689 ancestor->loop_depth++;
7690 num_nodes++;
7691 stack[sp++] = ancestor;
7695 free (stack);
7696 return num_nodes;
7699 /* Compute the depth first search order and store in the array
7700 DFS_ORDER if non-zero, marking the nodes visited in VISITED. If
7701 RC_ORDER is non-zero, return the reverse completion number for each
7702 node. Returns the number of nodes visited. A depth first search
7703 tries to get as far away from the starting point as quickly as
7704 possible. */
7706 static int
7707 flow_depth_first_order_compute (dfs_order, rc_order)
7708 int *dfs_order;
7709 int *rc_order;
7711 edge *stack;
7712 int sp;
7713 int dfsnum = 0;
7714 int rcnum = n_basic_blocks - 1;
7715 sbitmap visited;
7717 /* Allocate stack for back-tracking up CFG. */
7718 stack = (edge *) xmalloc ((n_basic_blocks + 1) * sizeof (edge));
7719 sp = 0;
7721 /* Allocate bitmap to track nodes that have been visited. */
7722 visited = sbitmap_alloc (n_basic_blocks);
7724 /* None of the nodes in the CFG have been visited yet. */
7725 sbitmap_zero (visited);
7727 /* Push the first edge on to the stack. */
7728 stack[sp++] = ENTRY_BLOCK_PTR->succ;
7730 while (sp)
7732 edge e;
7733 basic_block src;
7734 basic_block dest;
7736 /* Look at the edge on the top of the stack. */
7737 e = stack[sp - 1];
7738 src = e->src;
7739 dest = e->dest;
7741 /* Check if the edge destination has been visited yet. */
7742 if (dest != EXIT_BLOCK_PTR && ! TEST_BIT (visited, dest->index))
7744 /* Mark that we have visited the destination. */
7745 SET_BIT (visited, dest->index);
7747 if (dfs_order)
7748 dfs_order[dfsnum++] = dest->index;
7750 if (dest->succ)
7752 /* Since the DEST node has been visited for the first
7753 time, check its successors. */
7754 stack[sp++] = dest->succ;
7756 else
7758 /* There are no successors for the DEST node so assign
7759 its reverse completion number. */
7760 if (rc_order)
7761 rc_order[rcnum--] = dest->index;
7764 else
7766 if (! e->succ_next && src != ENTRY_BLOCK_PTR)
7768 /* There are no more successors for the SRC node
7769 so assign its reverse completion number. */
7770 if (rc_order)
7771 rc_order[rcnum--] = src->index;
7774 if (e->succ_next)
7775 stack[sp - 1] = e->succ_next;
7776 else
7777 sp--;
7781 free (stack);
7782 sbitmap_free (visited);
7784 /* The number of nodes visited should not be greater than
7785 n_basic_blocks. */
7786 if (dfsnum > n_basic_blocks)
7787 abort ();
7789 /* There are some nodes left in the CFG that are unreachable. */
7790 if (dfsnum < n_basic_blocks)
7791 abort ();
7792 return dfsnum;
7795 /* Compute the depth first search order on the _reverse_ graph and
7796 store in the array DFS_ORDER, marking the nodes visited in VISITED.
7797 Returns the number of nodes visited.
7799 The computation is split into three pieces:
7801 flow_dfs_compute_reverse_init () creates the necessary data
7802 structures.
7804 flow_dfs_compute_reverse_add_bb () adds a basic block to the data
7805 structures. The block will start the search.
7807 flow_dfs_compute_reverse_execute () continues (or starts) the
7808 search using the block on the top of the stack, stopping when the
7809 stack is empty.
7811 flow_dfs_compute_reverse_finish () destroys the necessary data
7812 structures.
7814 Thus, the user will probably call ..._init(), call ..._add_bb() to
7815 add a beginning basic block to the stack, call ..._execute(),
7816 possibly add another bb to the stack and again call ..._execute(),
7817 ..., and finally call _finish(). */
7819 /* Initialize the data structures used for depth-first search on the
7820 reverse graph. If INITIALIZE_STACK is nonzero, the exit block is
7821 added to the basic block stack. DATA is the current depth-first
7822 search context. If INITIALIZE_STACK is non-zero, there is an
7823 element on the stack. */
7825 static void
7826 flow_dfs_compute_reverse_init (data)
7827 depth_first_search_ds data;
7829 /* Allocate stack for back-tracking up CFG. */
7830 data->stack =
7831 (basic_block *) xmalloc ((n_basic_blocks - (INVALID_BLOCK + 1))
7832 * sizeof (basic_block));
7833 data->sp = 0;
7835 /* Allocate bitmap to track nodes that have been visited. */
7836 data->visited_blocks = sbitmap_alloc (n_basic_blocks - (INVALID_BLOCK + 1));
7838 /* None of the nodes in the CFG have been visited yet. */
7839 sbitmap_zero (data->visited_blocks);
7841 return;
7844 /* Add the specified basic block to the top of the dfs data
7845 structures. When the search continues, it will start at the
7846 block. */
7848 static void
7849 flow_dfs_compute_reverse_add_bb (data, bb)
7850 depth_first_search_ds data;
7851 basic_block bb;
7853 data->stack[data->sp++] = bb;
7854 return;
7857 /* Continue the depth-first search through the reverse graph starting
7858 with the block at the stack's top and ending when the stack is
7859 empty. Visited nodes are marked. Returns an unvisited basic
7860 block, or NULL if there is none available. */
7862 static basic_block
7863 flow_dfs_compute_reverse_execute (data)
7864 depth_first_search_ds data;
7866 basic_block bb;
7867 edge e;
7868 int i;
7870 while (data->sp > 0)
7872 bb = data->stack[--data->sp];
7874 /* Mark that we have visited this node. */
7875 if (!TEST_BIT (data->visited_blocks, bb->index - (INVALID_BLOCK + 1)))
7877 SET_BIT (data->visited_blocks, bb->index - (INVALID_BLOCK + 1));
7879 /* Perform depth-first search on adjacent vertices. */
7880 for (e = bb->pred; e; e = e->pred_next)
7881 flow_dfs_compute_reverse_add_bb (data, e->src);
7885 /* Determine if there are unvisited basic blocks. */
7886 for (i = n_basic_blocks - (INVALID_BLOCK + 1); --i >= 0;)
7887 if (!TEST_BIT (data->visited_blocks, i))
7888 return BASIC_BLOCK (i + (INVALID_BLOCK + 1));
7889 return NULL;
7892 /* Destroy the data structures needed for depth-first search on the
7893 reverse graph. */
7895 static void
7896 flow_dfs_compute_reverse_finish (data)
7897 depth_first_search_ds data;
7899 free (data->stack);
7900 sbitmap_free (data->visited_blocks);
7901 return;
7905 /* Find the root node of the loop pre-header extended basic block and
7906 the edges along the trace from the root node to the loop header. */
7908 static void
7909 flow_loop_pre_header_scan (loop)
7910 struct loop *loop;
7912 int num = 0;
7913 basic_block ebb;
7915 loop->num_pre_header_edges = 0;
7917 if (loop->num_entries != 1)
7918 return;
7920 ebb = loop->entry_edges[0]->src;
7922 if (ebb != ENTRY_BLOCK_PTR)
7924 edge e;
7926 /* Count number of edges along trace from loop header to
7927 root of pre-header extended basic block. Usually this is
7928 only one or two edges. */
7929 num++;
7930 while (ebb->pred->src != ENTRY_BLOCK_PTR && ! ebb->pred->pred_next)
7932 ebb = ebb->pred->src;
7933 num++;
7936 loop->pre_header_edges = (edge *) xmalloc (num * sizeof (edge *));
7937 loop->num_pre_header_edges = num;
7939 /* Store edges in order that they are followed. The source
7940 of the first edge is the root node of the pre-header extended
7941 basic block and the destination of the last last edge is
7942 the loop header. */
7943 for (e = loop->entry_edges[0]; num; e = e->src->pred)
7945 loop->pre_header_edges[--num] = e;
7951 /* Return the block for the pre-header of the loop with header
7952 HEADER where DOM specifies the dominator information. Return NULL if
7953 there is no pre-header. */
7955 static basic_block
7956 flow_loop_pre_header_find (header, dom)
7957 basic_block header;
7958 const sbitmap *dom;
7960 basic_block pre_header;
7961 edge e;
7963 /* If block p is a predecessor of the header and is the only block
7964 that the header does not dominate, then it is the pre-header. */
7965 pre_header = NULL;
7966 for (e = header->pred; e; e = e->pred_next)
7968 basic_block node = e->src;
7970 if (node != ENTRY_BLOCK_PTR
7971 && ! TEST_BIT (dom[node->index], header->index))
7973 if (pre_header == NULL)
7974 pre_header = node;
7975 else
7977 /* There are multiple edges into the header from outside
7978 the loop so there is no pre-header block. */
7979 pre_header = NULL;
7980 break;
7984 return pre_header;
7987 /* Add LOOP to the loop hierarchy tree where PREVLOOP was the loop
7988 previously added. The insertion algorithm assumes that the loops
7989 are added in the order found by a depth first search of the CFG. */
7991 static void
7992 flow_loop_tree_node_add (prevloop, loop)
7993 struct loop *prevloop;
7994 struct loop *loop;
7997 if (flow_loop_nested_p (prevloop, loop))
7999 prevloop->inner = loop;
8000 loop->outer = prevloop;
8001 return;
8004 while (prevloop->outer)
8006 if (flow_loop_nested_p (prevloop->outer, loop))
8008 prevloop->next = loop;
8009 loop->outer = prevloop->outer;
8010 return;
8012 prevloop = prevloop->outer;
8015 prevloop->next = loop;
8016 loop->outer = NULL;
8019 /* Build the loop hierarchy tree for LOOPS. */
8021 static void
8022 flow_loops_tree_build (loops)
8023 struct loops *loops;
8025 int i;
8026 int num_loops;
8028 num_loops = loops->num;
8029 if (! num_loops)
8030 return;
8032 /* Root the loop hierarchy tree with the first loop found.
8033 Since we used a depth first search this should be the
8034 outermost loop. */
8035 loops->tree = &loops->array[0];
8036 loops->tree->outer = loops->tree->inner = loops->tree->next = NULL;
8038 /* Add the remaining loops to the tree. */
8039 for (i = 1; i < num_loops; i++)
8040 flow_loop_tree_node_add (&loops->array[i - 1], &loops->array[i]);
8043 /* Helper function to compute loop nesting depth and enclosed loop level
8044 for the natural loop specified by LOOP at the loop depth DEPTH.
8045 Returns the loop level. */
8047 static int
8048 flow_loop_level_compute (loop, depth)
8049 struct loop *loop;
8050 int depth;
8052 struct loop *inner;
8053 int level = 1;
8055 if (! loop)
8056 return 0;
8058 /* Traverse loop tree assigning depth and computing level as the
8059 maximum level of all the inner loops of this loop. The loop
8060 level is equivalent to the height of the loop in the loop tree
8061 and corresponds to the number of enclosed loop levels (including
8062 itself). */
8063 for (inner = loop->inner; inner; inner = inner->next)
8065 int ilevel;
8067 ilevel = flow_loop_level_compute (inner, depth + 1) + 1;
8069 if (ilevel > level)
8070 level = ilevel;
8072 loop->level = level;
8073 loop->depth = depth;
8074 return level;
8077 /* Compute the loop nesting depth and enclosed loop level for the loop
8078 hierarchy tree specfied by LOOPS. Return the maximum enclosed loop
8079 level. */
8081 static int
8082 flow_loops_level_compute (loops)
8083 struct loops *loops;
8085 struct loop *loop;
8086 int level;
8087 int levels = 0;
8089 /* Traverse all the outer level loops. */
8090 for (loop = loops->tree; loop; loop = loop->next)
8092 level = flow_loop_level_compute (loop, 1);
8093 if (level > levels)
8094 levels = level;
8096 return levels;
8100 /* Scan a single natural loop specified by LOOP collecting information
8101 about it specified by FLAGS. */
8104 flow_loop_scan (loops, loop, flags)
8105 struct loops *loops;
8106 struct loop *loop;
8107 int flags;
8109 /* Determine prerequisites. */
8110 if ((flags & LOOP_EXITS_DOMS) && ! loop->exit_edges)
8111 flags |= LOOP_EXIT_EDGES;
8113 if (flags & LOOP_ENTRY_EDGES)
8115 /* Find edges which enter the loop header.
8116 Note that the entry edges should only
8117 enter the header of a natural loop. */
8118 loop->num_entries
8119 = flow_loop_entry_edges_find (loop->header,
8120 loop->nodes,
8121 &loop->entry_edges);
8124 if (flags & LOOP_EXIT_EDGES)
8126 /* Find edges which exit the loop. */
8127 loop->num_exits
8128 = flow_loop_exit_edges_find (loop->nodes,
8129 &loop->exit_edges);
8132 if (flags & LOOP_EXITS_DOMS)
8134 int j;
8136 /* Determine which loop nodes dominate all the exits
8137 of the loop. */
8138 loop->exits_doms = sbitmap_alloc (n_basic_blocks);
8139 sbitmap_copy (loop->exits_doms, loop->nodes);
8140 for (j = 0; j < loop->num_exits; j++)
8141 sbitmap_a_and_b (loop->exits_doms, loop->exits_doms,
8142 loops->cfg.dom[loop->exit_edges[j]->src->index]);
8144 /* The header of a natural loop must dominate
8145 all exits. */
8146 if (! TEST_BIT (loop->exits_doms, loop->header->index))
8147 abort ();
8150 if (flags & LOOP_PRE_HEADER)
8152 /* Look to see if the loop has a pre-header node. */
8153 loop->pre_header
8154 = flow_loop_pre_header_find (loop->header, loops->cfg.dom);
8156 /* Find the blocks within the extended basic block of
8157 the loop pre-header. */
8158 flow_loop_pre_header_scan (loop);
8160 return 1;
8164 /* Find all the natural loops in the function and save in LOOPS structure
8165 and recalculate loop_depth information in basic block structures.
8166 FLAGS controls which loop information is collected.
8167 Return the number of natural loops found. */
8170 flow_loops_find (loops, flags)
8171 struct loops *loops;
8172 int flags;
8174 int i;
8175 int b;
8176 int num_loops;
8177 edge e;
8178 sbitmap headers;
8179 sbitmap *dom;
8180 int *dfs_order;
8181 int *rc_order;
8183 /* This function cannot be repeatedly called with different
8184 flags to build up the loop information. The loop tree
8185 must always be built if this function is called. */
8186 if (! (flags & LOOP_TREE))
8187 abort ();
8189 memset (loops, 0, sizeof (*loops));
8191 /* Taking care of this degenerate case makes the rest of
8192 this code simpler. */
8193 if (n_basic_blocks == 0)
8194 return 0;
8196 dfs_order = NULL;
8197 rc_order = NULL;
8199 /* Compute the dominators. */
8200 dom = sbitmap_vector_alloc (n_basic_blocks, n_basic_blocks);
8201 calculate_dominance_info (NULL, dom, CDI_DOMINATORS);
8203 /* Count the number of loop edges (back edges). This should be the
8204 same as the number of natural loops. */
8206 num_loops = 0;
8207 for (b = 0; b < n_basic_blocks; b++)
8209 basic_block header;
8211 header = BASIC_BLOCK (b);
8212 header->loop_depth = 0;
8214 for (e = header->pred; e; e = e->pred_next)
8216 basic_block latch = e->src;
8218 /* Look for back edges where a predecessor is dominated
8219 by this block. A natural loop has a single entry
8220 node (header) that dominates all the nodes in the
8221 loop. It also has single back edge to the header
8222 from a latch node. Note that multiple natural loops
8223 may share the same header. */
8224 if (b != header->index)
8225 abort ();
8227 if (latch != ENTRY_BLOCK_PTR && TEST_BIT (dom[latch->index], b))
8228 num_loops++;
8232 if (num_loops)
8234 /* Compute depth first search order of the CFG so that outer
8235 natural loops will be found before inner natural loops. */
8236 dfs_order = (int *) xmalloc (n_basic_blocks * sizeof (int));
8237 rc_order = (int *) xmalloc (n_basic_blocks * sizeof (int));
8238 flow_depth_first_order_compute (dfs_order, rc_order);
8240 /* Save CFG derived information to avoid recomputing it. */
8241 loops->cfg.dom = dom;
8242 loops->cfg.dfs_order = dfs_order;
8243 loops->cfg.rc_order = rc_order;
8245 /* Allocate loop structures. */
8246 loops->array
8247 = (struct loop *) xcalloc (num_loops, sizeof (struct loop));
8249 headers = sbitmap_alloc (n_basic_blocks);
8250 sbitmap_zero (headers);
8252 loops->shared_headers = sbitmap_alloc (n_basic_blocks);
8253 sbitmap_zero (loops->shared_headers);
8255 /* Find and record information about all the natural loops
8256 in the CFG. */
8257 num_loops = 0;
8258 for (b = 0; b < n_basic_blocks; b++)
8260 basic_block header;
8262 /* Search the nodes of the CFG in reverse completion order
8263 so that we can find outer loops first. */
8264 header = BASIC_BLOCK (rc_order[b]);
8266 /* Look for all the possible latch blocks for this header. */
8267 for (e = header->pred; e; e = e->pred_next)
8269 basic_block latch = e->src;
8271 /* Look for back edges where a predecessor is dominated
8272 by this block. A natural loop has a single entry
8273 node (header) that dominates all the nodes in the
8274 loop. It also has single back edge to the header
8275 from a latch node. Note that multiple natural loops
8276 may share the same header. */
8277 if (latch != ENTRY_BLOCK_PTR
8278 && TEST_BIT (dom[latch->index], header->index))
8280 struct loop *loop;
8282 loop = loops->array + num_loops;
8284 loop->header = header;
8285 loop->latch = latch;
8286 loop->num = num_loops;
8288 num_loops++;
8293 for (i = 0; i < num_loops; i++)
8295 struct loop *loop = &loops->array[i];
8297 /* Keep track of blocks that are loop headers so
8298 that we can tell which loops should be merged. */
8299 if (TEST_BIT (headers, loop->header->index))
8300 SET_BIT (loops->shared_headers, loop->header->index);
8301 SET_BIT (headers, loop->header->index);
8303 /* Find nodes contained within the loop. */
8304 loop->nodes = sbitmap_alloc (n_basic_blocks);
8305 loop->num_nodes
8306 = flow_loop_nodes_find (loop->header, loop->latch, loop->nodes);
8308 /* Compute first and last blocks within the loop.
8309 These are often the same as the loop header and
8310 loop latch respectively, but this is not always
8311 the case. */
8312 loop->first
8313 = BASIC_BLOCK (sbitmap_first_set_bit (loop->nodes));
8314 loop->last
8315 = BASIC_BLOCK (sbitmap_last_set_bit (loop->nodes));
8317 flow_loop_scan (loops, loop, flags);
8320 /* Natural loops with shared headers may either be disjoint or
8321 nested. Disjoint loops with shared headers cannot be inner
8322 loops and should be merged. For now just mark loops that share
8323 headers. */
8324 for (i = 0; i < num_loops; i++)
8325 if (TEST_BIT (loops->shared_headers, loops->array[i].header->index))
8326 loops->array[i].shared = 1;
8328 sbitmap_free (headers);
8331 loops->num = num_loops;
8333 /* Build the loop hierarchy tree. */
8334 flow_loops_tree_build (loops);
8336 /* Assign the loop nesting depth and enclosed loop level for each
8337 loop. */
8338 loops->levels = flow_loops_level_compute (loops);
8340 return num_loops;
8344 /* Update the information regarding the loops in the CFG
8345 specified by LOOPS. */
8347 flow_loops_update (loops, flags)
8348 struct loops *loops;
8349 int flags;
8351 /* One day we may want to update the current loop data. For now
8352 throw away the old stuff and rebuild what we need. */
8353 if (loops->array)
8354 flow_loops_free (loops);
8356 return flow_loops_find (loops, flags);
8360 /* Return non-zero if edge E enters header of LOOP from outside of LOOP. */
8363 flow_loop_outside_edge_p (loop, e)
8364 const struct loop *loop;
8365 edge e;
8367 if (e->dest != loop->header)
8368 abort ();
8369 return (e->src == ENTRY_BLOCK_PTR)
8370 || ! TEST_BIT (loop->nodes, e->src->index);
8373 /* Clear LOG_LINKS fields of insns in a chain.
8374 Also clear the global_live_at_{start,end} fields of the basic block
8375 structures. */
8377 void
8378 clear_log_links (insns)
8379 rtx insns;
8381 rtx i;
8382 int b;
8384 for (i = insns; i; i = NEXT_INSN (i))
8385 if (INSN_P (i))
8386 LOG_LINKS (i) = 0;
8388 for (b = 0; b < n_basic_blocks; b++)
8390 basic_block bb = BASIC_BLOCK (b);
8392 bb->global_live_at_start = NULL;
8393 bb->global_live_at_end = NULL;
8396 ENTRY_BLOCK_PTR->global_live_at_end = NULL;
8397 EXIT_BLOCK_PTR->global_live_at_start = NULL;
8400 /* Given a register bitmap, turn on the bits in a HARD_REG_SET that
8401 correspond to the hard registers, if any, set in that map. This
8402 could be done far more efficiently by having all sorts of special-cases
8403 with moving single words, but probably isn't worth the trouble. */
8405 void
8406 reg_set_to_hard_reg_set (to, from)
8407 HARD_REG_SET *to;
8408 bitmap from;
8410 int i;
8412 EXECUTE_IF_SET_IN_BITMAP
8413 (from, 0, i,
8415 if (i >= FIRST_PSEUDO_REGISTER)
8416 return;
8417 SET_HARD_REG_BIT (*to, i);
8421 /* Called once at intialization time. */
8423 void
8424 init_flow ()
8426 static int initialized;
8428 if (!initialized)
8430 gcc_obstack_init (&flow_obstack);
8431 flow_firstobj = (char *) obstack_alloc (&flow_obstack, 0);
8432 initialized = 1;
8434 else
8436 obstack_free (&flow_obstack, flow_firstobj);
8437 flow_firstobj = (char *) obstack_alloc (&flow_obstack, 0);