flow.c (EH_USES): Provide default.
[gcc.git] / gcc / flow.c
1 /* Data flow analysis for GNU compiler.
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
21
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.
25
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.
29
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.
33
34 ** find_basic_blocks **
35
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.
40
41 find_basic_blocks also finds any unreachable loops and deletes them.
42
43 ** life_analysis **
44
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.
48
49 ** live-register info **
50
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.
53
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.
58
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).
65
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.
76
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.
83
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.
87
88 ** Other actions of life_analysis **
89
90 life_analysis sets up the LOG_LINKS fields of insns because the
91 information needed to do so is readily available.
92
93 life_analysis deletes insns whose only effect is to store a value
94 that is never used.
95
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.
101
102 Each time an incrementing or decrementing address is created,
103 a REG_INC element is added to the insn's REG_NOTES list.
104
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.
108
109 life_analysis sets current_function_sp_is_unchanging if the function
110 doesn't modify the stack pointer. */
111
112 /* TODO:
113
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
119 */
120 \f
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"
138 #include "timevar.h"
139
140 #include "obstack.h"
141 #include "splay-tree.h"
142
143 #define obstack_chunk_alloc xmalloc
144 #define obstack_chunk_free free
145
146 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
147 the stack pointer does not matter. The value is tested only in
148 functions that have frame pointers.
149 No definition is equivalent to always zero. */
150 #ifndef EXIT_IGNORE_STACK
151 #define EXIT_IGNORE_STACK 0
152 #endif
153
154 #ifndef HAVE_epilogue
155 #define HAVE_epilogue 0
156 #endif
157 #ifndef HAVE_prologue
158 #define HAVE_prologue 0
159 #endif
160 #ifndef HAVE_sibcall_epilogue
161 #define HAVE_sibcall_epilogue 0
162 #endif
163
164 #ifndef LOCAL_REGNO
165 #define LOCAL_REGNO(REGNO) 0
166 #endif
167 #ifndef EPILOGUE_USES
168 #define EPILOGUE_USES(REGNO) 0
169 #endif
170 #ifndef EH_USES
171 #define EH_USES(REGNO) 0
172 #endif
173
174 #ifdef HAVE_conditional_execution
175 #ifndef REVERSE_CONDEXEC_PREDICATES_P
176 #define REVERSE_CONDEXEC_PREDICATES_P(x, y) ((x) == reverse_condition (y))
177 #endif
178 #endif
179
180 /* Nonzero if the second flow pass has completed. */
181 int flow2_completed;
182
183 /* Maximum register number used in this function, plus one. */
184
185 int max_regno;
186
187 /* Indexed by n, giving various register information */
188
189 varray_type reg_n_info;
190
191 /* Size of a regset for the current function,
192 in (1) bytes and (2) elements. */
193
194 int regset_bytes;
195 int regset_size;
196
197 /* Regset of regs live when calls to `setjmp'-like functions happen. */
198 /* ??? Does this exist only for the setjmp-clobbered warning message? */
199
200 regset regs_live_at_setjmp;
201
202 /* List made of EXPR_LIST rtx's which gives pairs of pseudo registers
203 that have to go in the same hard reg.
204 The first two regs in the list are a pair, and the next two
205 are another pair, etc. */
206 rtx regs_may_share;
207
208 /* Callback that determines if it's ok for a function to have no
209 noreturn attribute. */
210 int (*lang_missing_noreturn_ok_p) PARAMS ((tree));
211
212 /* Set of registers that may be eliminable. These are handled specially
213 in updating regs_ever_live. */
214
215 static HARD_REG_SET elim_reg_set;
216
217 /* Holds information for tracking conditional register life information. */
218 struct reg_cond_life_info
219 {
220 /* A boolean expression of conditions under which a register is dead. */
221 rtx condition;
222 /* Conditions under which a register is dead at the basic block end. */
223 rtx orig_condition;
224
225 /* A boolean expression of conditions under which a register has been
226 stored into. */
227 rtx stores;
228
229 /* ??? Could store mask of bytes that are dead, so that we could finally
230 track lifetimes of multi-word registers accessed via subregs. */
231 };
232
233 /* For use in communicating between propagate_block and its subroutines.
234 Holds all information needed to compute life and def-use information. */
235
236 struct propagate_block_info
237 {
238 /* The basic block we're considering. */
239 basic_block bb;
240
241 /* Bit N is set if register N is conditionally or unconditionally live. */
242 regset reg_live;
243
244 /* Bit N is set if register N is set this insn. */
245 regset new_set;
246
247 /* Element N is the next insn that uses (hard or pseudo) register N
248 within the current basic block; or zero, if there is no such insn. */
249 rtx *reg_next_use;
250
251 /* Contains a list of all the MEMs we are tracking for dead store
252 elimination. */
253 rtx mem_set_list;
254
255 /* If non-null, record the set of registers set unconditionally in the
256 basic block. */
257 regset local_set;
258
259 /* If non-null, record the set of registers set conditionally in the
260 basic block. */
261 regset cond_local_set;
262
263 #ifdef HAVE_conditional_execution
264 /* Indexed by register number, holds a reg_cond_life_info for each
265 register that is not unconditionally live or dead. */
266 splay_tree reg_cond_dead;
267
268 /* Bit N is set if register N is in an expression in reg_cond_dead. */
269 regset reg_cond_reg;
270 #endif
271
272 /* The length of mem_set_list. */
273 int mem_set_list_len;
274
275 /* Non-zero if the value of CC0 is live. */
276 int cc0_live;
277
278 /* Flags controling the set of information propagate_block collects. */
279 int flags;
280 };
281
282 /* Number of dead insns removed. */
283 static int ndead;
284
285 /* Maximum length of pbi->mem_set_list before we start dropping
286 new elements on the floor. */
287 #define MAX_MEM_SET_LIST_LEN 100
288
289 /* Forward declarations */
290 static int verify_wide_reg_1 PARAMS ((rtx *, void *));
291 static void verify_wide_reg PARAMS ((int, basic_block));
292 static void verify_local_live_at_start PARAMS ((regset, basic_block));
293 static void notice_stack_pointer_modification_1 PARAMS ((rtx, rtx, void *));
294 static void notice_stack_pointer_modification PARAMS ((rtx));
295 static void mark_reg PARAMS ((rtx, void *));
296 static void mark_regs_live_at_end PARAMS ((regset));
297 static int set_phi_alternative_reg PARAMS ((rtx, int, int, void *));
298 static void calculate_global_regs_live PARAMS ((sbitmap, sbitmap, int));
299 static void propagate_block_delete_insn PARAMS ((rtx));
300 static rtx propagate_block_delete_libcall PARAMS ((rtx, rtx));
301 static int insn_dead_p PARAMS ((struct propagate_block_info *,
302 rtx, int, rtx));
303 static int libcall_dead_p PARAMS ((struct propagate_block_info *,
304 rtx, rtx));
305 static void mark_set_regs PARAMS ((struct propagate_block_info *,
306 rtx, rtx));
307 static void mark_set_1 PARAMS ((struct propagate_block_info *,
308 enum rtx_code, rtx, rtx,
309 rtx, int));
310 static int find_regno_partial PARAMS ((rtx *, void *));
311
312 #ifdef HAVE_conditional_execution
313 static int mark_regno_cond_dead PARAMS ((struct propagate_block_info *,
314 int, rtx));
315 static void free_reg_cond_life_info PARAMS ((splay_tree_value));
316 static int flush_reg_cond_reg_1 PARAMS ((splay_tree_node, void *));
317 static void flush_reg_cond_reg PARAMS ((struct propagate_block_info *,
318 int));
319 static rtx elim_reg_cond PARAMS ((rtx, unsigned int));
320 static rtx ior_reg_cond PARAMS ((rtx, rtx, int));
321 static rtx not_reg_cond PARAMS ((rtx));
322 static rtx and_reg_cond PARAMS ((rtx, rtx, int));
323 #endif
324 #ifdef AUTO_INC_DEC
325 static void attempt_auto_inc PARAMS ((struct propagate_block_info *,
326 rtx, rtx, rtx, rtx, rtx));
327 static void find_auto_inc PARAMS ((struct propagate_block_info *,
328 rtx, rtx));
329 static int try_pre_increment_1 PARAMS ((struct propagate_block_info *,
330 rtx));
331 static int try_pre_increment PARAMS ((rtx, rtx, HOST_WIDE_INT));
332 #endif
333 static void mark_used_reg PARAMS ((struct propagate_block_info *,
334 rtx, rtx, rtx));
335 static void mark_used_regs PARAMS ((struct propagate_block_info *,
336 rtx, rtx, rtx));
337 void dump_flow_info PARAMS ((FILE *));
338 void debug_flow_info PARAMS ((void));
339 static void add_to_mem_set_list PARAMS ((struct propagate_block_info *,
340 rtx));
341 static void invalidate_mems_from_autoinc PARAMS ((struct propagate_block_info *,
342 rtx));
343 static void invalidate_mems_from_set PARAMS ((struct propagate_block_info *,
344 rtx));
345 static void clear_log_links PARAMS ((sbitmap));
346 \f
347
348 void
349 check_function_return_warnings ()
350 {
351 if (warn_missing_noreturn
352 && !TREE_THIS_VOLATILE (cfun->decl)
353 && EXIT_BLOCK_PTR->pred == NULL
354 && (lang_missing_noreturn_ok_p
355 && !lang_missing_noreturn_ok_p (cfun->decl)))
356 warning ("function might be possible candidate for attribute `noreturn'");
357
358 /* If we have a path to EXIT, then we do return. */
359 if (TREE_THIS_VOLATILE (cfun->decl)
360 && EXIT_BLOCK_PTR->pred != NULL)
361 warning ("`noreturn' function does return");
362
363 /* If the clobber_return_insn appears in some basic block, then we
364 do reach the end without returning a value. */
365 else if (warn_return_type
366 && cfun->x_clobber_return_insn != NULL
367 && EXIT_BLOCK_PTR->pred != NULL)
368 {
369 int max_uid = get_max_uid ();
370
371 /* If clobber_return_insn was excised by jump1, then renumber_insns
372 can make max_uid smaller than the number still recorded in our rtx.
373 That's fine, since this is a quick way of verifying that the insn
374 is no longer in the chain. */
375 if (INSN_UID (cfun->x_clobber_return_insn) < max_uid)
376 {
377 /* Recompute insn->block mapping, since the initial mapping is
378 set before we delete unreachable blocks. */
379 if (BLOCK_FOR_INSN (cfun->x_clobber_return_insn) != NULL)
380 warning ("control reaches end of non-void function");
381 }
382 }
383 }
384 \f
385 /* Return the INSN immediately following the NOTE_INSN_BASIC_BLOCK
386 note associated with the BLOCK. */
387
388 rtx
389 first_insn_after_basic_block_note (block)
390 basic_block block;
391 {
392 rtx insn;
393
394 /* Get the first instruction in the block. */
395 insn = block->head;
396
397 if (insn == NULL_RTX)
398 return NULL_RTX;
399 if (GET_CODE (insn) == CODE_LABEL)
400 insn = NEXT_INSN (insn);
401 if (!NOTE_INSN_BASIC_BLOCK_P (insn))
402 abort ();
403
404 return NEXT_INSN (insn);
405 }
406 \f
407 /* Perform data flow analysis.
408 F is the first insn of the function; FLAGS is a set of PROP_* flags
409 to be used in accumulating flow info. */
410
411 void
412 life_analysis (f, file, flags)
413 rtx f;
414 FILE *file;
415 int flags;
416 {
417 #ifdef ELIMINABLE_REGS
418 int i;
419 static const struct {const int from, to; } eliminables[] = ELIMINABLE_REGS;
420 #endif
421
422 /* Record which registers will be eliminated. We use this in
423 mark_used_regs. */
424
425 CLEAR_HARD_REG_SET (elim_reg_set);
426
427 #ifdef ELIMINABLE_REGS
428 for (i = 0; i < (int) ARRAY_SIZE (eliminables); i++)
429 SET_HARD_REG_BIT (elim_reg_set, eliminables[i].from);
430 #else
431 SET_HARD_REG_BIT (elim_reg_set, FRAME_POINTER_REGNUM);
432 #endif
433
434 if (! optimize)
435 flags &= ~(PROP_LOG_LINKS | PROP_AUTOINC | PROP_ALLOW_CFG_CHANGES);
436
437 /* The post-reload life analysis have (on a global basis) the same
438 registers live as was computed by reload itself. elimination
439 Otherwise offsets and such may be incorrect.
440
441 Reload will make some registers as live even though they do not
442 appear in the rtl.
443
444 We don't want to create new auto-incs after reload, since they
445 are unlikely to be useful and can cause problems with shared
446 stack slots. */
447 if (reload_completed)
448 flags &= ~(PROP_REG_INFO | PROP_AUTOINC);
449
450 /* We want alias analysis information for local dead store elimination. */
451 if (optimize && (flags & PROP_SCAN_DEAD_CODE))
452 init_alias_analysis ();
453
454 /* Always remove no-op moves. Do this before other processing so
455 that we don't have to keep re-scanning them. */
456 delete_noop_moves (f);
457
458 /* Some targets can emit simpler epilogues if they know that sp was
459 not ever modified during the function. After reload, of course,
460 we've already emitted the epilogue so there's no sense searching. */
461 if (! reload_completed)
462 notice_stack_pointer_modification (f);
463
464 /* Allocate and zero out data structures that will record the
465 data from lifetime analysis. */
466 allocate_reg_life_data ();
467 allocate_bb_life_data ();
468
469 /* Find the set of registers live on function exit. */
470 mark_regs_live_at_end (EXIT_BLOCK_PTR->global_live_at_start);
471
472 /* "Update" life info from zero. It'd be nice to begin the
473 relaxation with just the exit and noreturn blocks, but that set
474 is not immediately handy. */
475
476 if (flags & PROP_REG_INFO)
477 memset (regs_ever_live, 0, sizeof (regs_ever_live));
478 update_life_info (NULL, UPDATE_LIFE_GLOBAL, flags);
479
480 /* Clean up. */
481 if (optimize && (flags & PROP_SCAN_DEAD_CODE))
482 end_alias_analysis ();
483
484 if (file)
485 dump_flow_info (file);
486
487 free_basic_block_vars (1);
488
489 #ifdef ENABLE_CHECKING
490 {
491 rtx insn;
492
493 /* Search for any REG_LABEL notes which reference deleted labels. */
494 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
495 {
496 rtx inote = find_reg_note (insn, REG_LABEL, NULL_RTX);
497
498 if (inote && GET_CODE (inote) == NOTE_INSN_DELETED_LABEL)
499 abort ();
500 }
501 }
502 #endif
503 /* Removing dead insns should've made jumptables really dead. */
504 delete_dead_jumptables ();
505 }
506
507 /* A subroutine of verify_wide_reg, called through for_each_rtx.
508 Search for REGNO. If found, return 2 if it is not wider than
509 word_mode. */
510
511 static int
512 verify_wide_reg_1 (px, pregno)
513 rtx *px;
514 void *pregno;
515 {
516 rtx x = *px;
517 unsigned int regno = *(int *) pregno;
518
519 if (GET_CODE (x) == REG && REGNO (x) == regno)
520 {
521 if (GET_MODE_BITSIZE (GET_MODE (x)) <= BITS_PER_WORD)
522 return 2;
523 return 1;
524 }
525 return 0;
526 }
527
528 /* A subroutine of verify_local_live_at_start. Search through insns
529 of BB looking for register REGNO. */
530
531 static void
532 verify_wide_reg (regno, bb)
533 int regno;
534 basic_block bb;
535 {
536 rtx head = bb->head, end = bb->end;
537
538 while (1)
539 {
540 if (INSN_P (head))
541 {
542 int r = for_each_rtx (&PATTERN (head), verify_wide_reg_1, &regno);
543 if (r == 1)
544 return;
545 if (r == 2)
546 break;
547 }
548 if (head == end)
549 break;
550 head = NEXT_INSN (head);
551 }
552
553 if (rtl_dump_file)
554 {
555 fprintf (rtl_dump_file, "Register %d died unexpectedly.\n", regno);
556 dump_bb (bb, rtl_dump_file);
557 }
558 abort ();
559 }
560
561 /* A subroutine of update_life_info. Verify that there are no untoward
562 changes in live_at_start during a local update. */
563
564 static void
565 verify_local_live_at_start (new_live_at_start, bb)
566 regset new_live_at_start;
567 basic_block bb;
568 {
569 if (reload_completed)
570 {
571 /* After reload, there are no pseudos, nor subregs of multi-word
572 registers. The regsets should exactly match. */
573 if (! REG_SET_EQUAL_P (new_live_at_start, bb->global_live_at_start))
574 {
575 if (rtl_dump_file)
576 {
577 fprintf (rtl_dump_file,
578 "live_at_start mismatch in bb %d, aborting\nNew:\n",
579 bb->index);
580 debug_bitmap_file (rtl_dump_file, new_live_at_start);
581 fputs ("Old:\n", rtl_dump_file);
582 dump_bb (bb, rtl_dump_file);
583 }
584 abort ();
585 }
586 }
587 else
588 {
589 int i;
590
591 /* Find the set of changed registers. */
592 XOR_REG_SET (new_live_at_start, bb->global_live_at_start);
593
594 EXECUTE_IF_SET_IN_REG_SET (new_live_at_start, 0, i,
595 {
596 /* No registers should die. */
597 if (REGNO_REG_SET_P (bb->global_live_at_start, i))
598 {
599 if (rtl_dump_file)
600 {
601 fprintf (rtl_dump_file,
602 "Register %d died unexpectedly.\n", i);
603 dump_bb (bb, rtl_dump_file);
604 }
605 abort ();
606 }
607
608 /* Verify that the now-live register is wider than word_mode. */
609 verify_wide_reg (i, bb);
610 });
611 }
612 }
613
614 /* Updates life information starting with the basic blocks set in BLOCKS.
615 If BLOCKS is null, consider it to be the universal set.
616
617 If EXTENT is UPDATE_LIFE_LOCAL, such as after splitting or peepholeing,
618 we are only expecting local modifications to basic blocks. If we find
619 extra registers live at the beginning of a block, then we either killed
620 useful data, or we have a broken split that wants data not provided.
621 If we find registers removed from live_at_start, that means we have
622 a broken peephole that is killing a register it shouldn't.
623
624 ??? This is not true in one situation -- when a pre-reload splitter
625 generates subregs of a multi-word pseudo, current life analysis will
626 lose the kill. So we _can_ have a pseudo go live. How irritating.
627
628 Including PROP_REG_INFO does not properly refresh regs_ever_live
629 unless the caller resets it to zero. */
630
631 int
632 update_life_info (blocks, extent, prop_flags)
633 sbitmap blocks;
634 enum update_life_extent extent;
635 int prop_flags;
636 {
637 regset tmp;
638 regset_head tmp_head;
639 int i;
640
641 tmp = INITIALIZE_REG_SET (tmp_head);
642 ndead = 0;
643
644 timevar_push ((extent == UPDATE_LIFE_LOCAL || blocks)
645 ? TV_LIFE_UPDATE : TV_LIFE);
646
647 /* Changes to the CFG are only allowed when
648 doing a global update for the entire CFG. */
649 if ((prop_flags & PROP_ALLOW_CFG_CHANGES)
650 && (extent == UPDATE_LIFE_LOCAL || blocks))
651 abort ();
652
653 /* For a global update, we go through the relaxation process again. */
654 if (extent != UPDATE_LIFE_LOCAL)
655 {
656 for ( ; ; )
657 {
658 int changed = 0;
659
660 calculate_global_regs_live (blocks, blocks,
661 prop_flags & (PROP_SCAN_DEAD_CODE
662 | PROP_ALLOW_CFG_CHANGES));
663
664 if ((prop_flags & (PROP_KILL_DEAD_CODE | PROP_ALLOW_CFG_CHANGES))
665 != (PROP_KILL_DEAD_CODE | PROP_ALLOW_CFG_CHANGES))
666 break;
667
668 /* Removing dead code may allow the CFG to be simplified which
669 in turn may allow for further dead code detection / removal. */
670 for (i = n_basic_blocks - 1; i >= 0; --i)
671 {
672 basic_block bb = BASIC_BLOCK (i);
673
674 COPY_REG_SET (tmp, bb->global_live_at_end);
675 changed |= propagate_block (bb, tmp, NULL, NULL,
676 prop_flags & (PROP_SCAN_DEAD_CODE
677 | PROP_KILL_DEAD_CODE));
678 }
679
680 if (! changed || ! cleanup_cfg (CLEANUP_EXPENSIVE))
681 break;
682 }
683
684 /* If asked, remove notes from the blocks we'll update. */
685 if (extent == UPDATE_LIFE_GLOBAL_RM_NOTES)
686 count_or_remove_death_notes (blocks, 1);
687 }
688
689 /* Clear log links in case we are asked to (re)compute them. */
690 if (prop_flags & PROP_LOG_LINKS)
691 clear_log_links (blocks);
692
693 if (blocks)
694 {
695 EXECUTE_IF_SET_IN_SBITMAP (blocks, 0, i,
696 {
697 basic_block bb = BASIC_BLOCK (i);
698
699 COPY_REG_SET (tmp, bb->global_live_at_end);
700 propagate_block (bb, tmp, NULL, NULL, prop_flags);
701
702 if (extent == UPDATE_LIFE_LOCAL)
703 verify_local_live_at_start (tmp, bb);
704 });
705 }
706 else
707 {
708 for (i = n_basic_blocks - 1; i >= 0; --i)
709 {
710 basic_block bb = BASIC_BLOCK (i);
711
712 COPY_REG_SET (tmp, bb->global_live_at_end);
713 propagate_block (bb, tmp, NULL, NULL, prop_flags);
714
715 if (extent == UPDATE_LIFE_LOCAL)
716 verify_local_live_at_start (tmp, bb);
717 }
718 }
719
720 FREE_REG_SET (tmp);
721
722 if (prop_flags & PROP_REG_INFO)
723 {
724 /* The only pseudos that are live at the beginning of the function
725 are those that were not set anywhere in the function. local-alloc
726 doesn't know how to handle these correctly, so mark them as not
727 local to any one basic block. */
728 EXECUTE_IF_SET_IN_REG_SET (ENTRY_BLOCK_PTR->global_live_at_end,
729 FIRST_PSEUDO_REGISTER, i,
730 { REG_BASIC_BLOCK (i) = REG_BLOCK_GLOBAL; });
731
732 /* We have a problem with any pseudoreg that lives across the setjmp.
733 ANSI says that if a user variable does not change in value between
734 the setjmp and the longjmp, then the longjmp preserves it. This
735 includes longjmp from a place where the pseudo appears dead.
736 (In principle, the value still exists if it is in scope.)
737 If the pseudo goes in a hard reg, some other value may occupy
738 that hard reg where this pseudo is dead, thus clobbering the pseudo.
739 Conclusion: such a pseudo must not go in a hard reg. */
740 EXECUTE_IF_SET_IN_REG_SET (regs_live_at_setjmp,
741 FIRST_PSEUDO_REGISTER, i,
742 {
743 if (regno_reg_rtx[i] != 0)
744 {
745 REG_LIVE_LENGTH (i) = -1;
746 REG_BASIC_BLOCK (i) = REG_BLOCK_UNKNOWN;
747 }
748 });
749 }
750 timevar_pop ((extent == UPDATE_LIFE_LOCAL || blocks)
751 ? TV_LIFE_UPDATE : TV_LIFE);
752 if (ndead && rtl_dump_file)
753 fprintf (rtl_dump_file, "deleted %i dead insns\n", ndead);
754 return ndead;
755 }
756
757 /* Update life information in all blocks where BB_DIRTY is set. */
758
759 int
760 update_life_info_in_dirty_blocks (extent, prop_flags)
761 enum update_life_extent extent;
762 int prop_flags;
763 {
764 sbitmap update_life_blocks = sbitmap_alloc (n_basic_blocks);
765 int block_num;
766 int n = 0;
767 int ndead;
768
769 sbitmap_zero (update_life_blocks);
770 for (block_num = 0; block_num < n_basic_blocks; block_num++)
771 if (BASIC_BLOCK (block_num)->flags & BB_DIRTY)
772 {
773 SET_BIT (update_life_blocks, block_num);
774 n++;
775 }
776
777 if (n)
778 ndead = update_life_info (update_life_blocks, extent, prop_flags);
779
780 sbitmap_free (update_life_blocks);
781 return ndead;
782 }
783
784 /* Free the variables allocated by find_basic_blocks.
785
786 KEEP_HEAD_END_P is non-zero if basic_block_info is not to be freed. */
787
788 void
789 free_basic_block_vars (keep_head_end_p)
790 int keep_head_end_p;
791 {
792 if (! keep_head_end_p)
793 {
794 if (basic_block_info)
795 {
796 clear_edges ();
797 VARRAY_FREE (basic_block_info);
798 }
799 n_basic_blocks = 0;
800
801 ENTRY_BLOCK_PTR->aux = NULL;
802 ENTRY_BLOCK_PTR->global_live_at_end = NULL;
803 EXIT_BLOCK_PTR->aux = NULL;
804 EXIT_BLOCK_PTR->global_live_at_start = NULL;
805 }
806 }
807
808 /* Delete any insns that copy a register to itself. */
809
810 int
811 delete_noop_moves (f)
812 rtx f ATTRIBUTE_UNUSED;
813 {
814 int i;
815 rtx insn, next;
816 basic_block bb;
817 int nnoops = 0;
818
819 for (i = 0; i < n_basic_blocks; i++)
820 {
821 bb = BASIC_BLOCK (i);
822 for (insn = bb->head; insn != NEXT_INSN (bb->end); insn = next)
823 {
824 next = NEXT_INSN (insn);
825 if (INSN_P (insn) && noop_move_p (insn))
826 {
827 rtx note;
828
829 /* If we're about to remove the first insn of a libcall
830 then move the libcall note to the next real insn and
831 update the retval note. */
832 if ((note = find_reg_note (insn, REG_LIBCALL, NULL_RTX))
833 && XEXP (note, 0) != insn)
834 {
835 rtx new_libcall_insn = next_real_insn (insn);
836 rtx retval_note = find_reg_note (XEXP (note, 0),
837 REG_RETVAL, NULL_RTX);
838 REG_NOTES (new_libcall_insn)
839 = gen_rtx_INSN_LIST (REG_LIBCALL, XEXP (note, 0),
840 REG_NOTES (new_libcall_insn));
841 XEXP (retval_note, 0) = new_libcall_insn;
842 }
843
844 delete_insn_and_edges (insn);
845 nnoops++;
846 }
847 }
848 }
849 if (nnoops && rtl_dump_file)
850 fprintf (rtl_dump_file, "deleted %i noop moves", nnoops);
851 return nnoops;
852 }
853
854 /* Delete any jump tables never referenced. We can't delete them at the
855 time of removing tablejump insn as they are referenced by the preceding
856 insns computing the destination, so we delay deleting and garbagecollect
857 them once life information is computed. */
858 void
859 delete_dead_jumptables ()
860 {
861 rtx insn, next;
862 for (insn = get_insns (); insn; insn = next)
863 {
864 next = NEXT_INSN (insn);
865 if (GET_CODE (insn) == CODE_LABEL
866 && LABEL_NUSES (insn) == LABEL_PRESERVE_P (insn)
867 && GET_CODE (next) == JUMP_INSN
868 && (GET_CODE (PATTERN (next)) == ADDR_VEC
869 || GET_CODE (PATTERN (next)) == ADDR_DIFF_VEC))
870 {
871 if (rtl_dump_file)
872 fprintf (rtl_dump_file, "Dead jumptable %i removed\n", INSN_UID (insn));
873 delete_insn (NEXT_INSN (insn));
874 delete_insn (insn);
875 next = NEXT_INSN (next);
876 }
877 }
878 }
879
880 /* Determine if the stack pointer is constant over the life of the function.
881 Only useful before prologues have been emitted. */
882
883 static void
884 notice_stack_pointer_modification_1 (x, pat, data)
885 rtx x;
886 rtx pat ATTRIBUTE_UNUSED;
887 void *data ATTRIBUTE_UNUSED;
888 {
889 if (x == stack_pointer_rtx
890 /* The stack pointer is only modified indirectly as the result
891 of a push until later in flow. See the comments in rtl.texi
892 regarding Embedded Side-Effects on Addresses. */
893 || (GET_CODE (x) == MEM
894 && GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == 'a'
895 && XEXP (XEXP (x, 0), 0) == stack_pointer_rtx))
896 current_function_sp_is_unchanging = 0;
897 }
898
899 static void
900 notice_stack_pointer_modification (f)
901 rtx f;
902 {
903 rtx insn;
904
905 /* Assume that the stack pointer is unchanging if alloca hasn't
906 been used. */
907 current_function_sp_is_unchanging = !current_function_calls_alloca;
908 if (! current_function_sp_is_unchanging)
909 return;
910
911 for (insn = f; insn; insn = NEXT_INSN (insn))
912 {
913 if (INSN_P (insn))
914 {
915 /* Check if insn modifies the stack pointer. */
916 note_stores (PATTERN (insn), notice_stack_pointer_modification_1,
917 NULL);
918 if (! current_function_sp_is_unchanging)
919 return;
920 }
921 }
922 }
923
924 /* Mark a register in SET. Hard registers in large modes get all
925 of their component registers set as well. */
926
927 static void
928 mark_reg (reg, xset)
929 rtx reg;
930 void *xset;
931 {
932 regset set = (regset) xset;
933 int regno = REGNO (reg);
934
935 if (GET_MODE (reg) == BLKmode)
936 abort ();
937
938 SET_REGNO_REG_SET (set, regno);
939 if (regno < FIRST_PSEUDO_REGISTER)
940 {
941 int n = HARD_REGNO_NREGS (regno, GET_MODE (reg));
942 while (--n > 0)
943 SET_REGNO_REG_SET (set, regno + n);
944 }
945 }
946
947 /* Mark those regs which are needed at the end of the function as live
948 at the end of the last basic block. */
949
950 static void
951 mark_regs_live_at_end (set)
952 regset set;
953 {
954 unsigned int i;
955
956 /* If exiting needs the right stack value, consider the stack pointer
957 live at the end of the function. */
958 if ((HAVE_epilogue && reload_completed)
959 || ! EXIT_IGNORE_STACK
960 || (! FRAME_POINTER_REQUIRED
961 && ! current_function_calls_alloca
962 && flag_omit_frame_pointer)
963 || current_function_sp_is_unchanging)
964 {
965 SET_REGNO_REG_SET (set, STACK_POINTER_REGNUM);
966 }
967
968 /* Mark the frame pointer if needed at the end of the function. If
969 we end up eliminating it, it will be removed from the live list
970 of each basic block by reload. */
971
972 if (! reload_completed || frame_pointer_needed)
973 {
974 SET_REGNO_REG_SET (set, FRAME_POINTER_REGNUM);
975 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
976 /* If they are different, also mark the hard frame pointer as live. */
977 if (! LOCAL_REGNO (HARD_FRAME_POINTER_REGNUM))
978 SET_REGNO_REG_SET (set, HARD_FRAME_POINTER_REGNUM);
979 #endif
980 }
981
982 #ifndef PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
983 /* Many architectures have a GP register even without flag_pic.
984 Assume the pic register is not in use, or will be handled by
985 other means, if it is not fixed. */
986 if (PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM
987 && fixed_regs[PIC_OFFSET_TABLE_REGNUM])
988 SET_REGNO_REG_SET (set, PIC_OFFSET_TABLE_REGNUM);
989 #endif
990
991 /* Mark all global registers, and all registers used by the epilogue
992 as being live at the end of the function since they may be
993 referenced by our caller. */
994 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
995 if (global_regs[i] || EPILOGUE_USES (i))
996 SET_REGNO_REG_SET (set, i);
997
998 if (HAVE_epilogue && reload_completed)
999 {
1000 /* Mark all call-saved registers that we actually used. */
1001 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1002 if (regs_ever_live[i] && ! LOCAL_REGNO (i)
1003 && ! TEST_HARD_REG_BIT (regs_invalidated_by_call, i))
1004 SET_REGNO_REG_SET (set, i);
1005 }
1006
1007 #ifdef EH_RETURN_DATA_REGNO
1008 /* Mark the registers that will contain data for the handler. */
1009 if (reload_completed && current_function_calls_eh_return)
1010 for (i = 0; ; ++i)
1011 {
1012 unsigned regno = EH_RETURN_DATA_REGNO(i);
1013 if (regno == INVALID_REGNUM)
1014 break;
1015 SET_REGNO_REG_SET (set, regno);
1016 }
1017 #endif
1018 #ifdef EH_RETURN_STACKADJ_RTX
1019 if ((! HAVE_epilogue || ! reload_completed)
1020 && current_function_calls_eh_return)
1021 {
1022 rtx tmp = EH_RETURN_STACKADJ_RTX;
1023 if (tmp && REG_P (tmp))
1024 mark_reg (tmp, set);
1025 }
1026 #endif
1027 #ifdef EH_RETURN_HANDLER_RTX
1028 if ((! HAVE_epilogue || ! reload_completed)
1029 && current_function_calls_eh_return)
1030 {
1031 rtx tmp = EH_RETURN_HANDLER_RTX;
1032 if (tmp && REG_P (tmp))
1033 mark_reg (tmp, set);
1034 }
1035 #endif
1036
1037 /* Mark function return value. */
1038 diddle_return_value (mark_reg, set);
1039 }
1040
1041 /* Callback function for for_each_successor_phi. DATA is a regset.
1042 Sets the SRC_REGNO, the regno of the phi alternative for phi node
1043 INSN, in the regset. */
1044
1045 static int
1046 set_phi_alternative_reg (insn, dest_regno, src_regno, data)
1047 rtx insn ATTRIBUTE_UNUSED;
1048 int dest_regno ATTRIBUTE_UNUSED;
1049 int src_regno;
1050 void *data;
1051 {
1052 regset live = (regset) data;
1053 SET_REGNO_REG_SET (live, src_regno);
1054 return 0;
1055 }
1056
1057 /* Propagate global life info around the graph of basic blocks. Begin
1058 considering blocks with their corresponding bit set in BLOCKS_IN.
1059 If BLOCKS_IN is null, consider it the universal set.
1060
1061 BLOCKS_OUT is set for every block that was changed. */
1062
1063 static void
1064 calculate_global_regs_live (blocks_in, blocks_out, flags)
1065 sbitmap blocks_in, blocks_out;
1066 int flags;
1067 {
1068 basic_block *queue, *qhead, *qtail, *qend;
1069 regset tmp, new_live_at_end, call_used;
1070 regset_head tmp_head, call_used_head;
1071 regset_head new_live_at_end_head;
1072 int i;
1073
1074 tmp = INITIALIZE_REG_SET (tmp_head);
1075 new_live_at_end = INITIALIZE_REG_SET (new_live_at_end_head);
1076 call_used = INITIALIZE_REG_SET (call_used_head);
1077
1078 /* Inconveniently, this is only readily available in hard reg set form. */
1079 for (i = 0; i < FIRST_PSEUDO_REGISTER; ++i)
1080 if (call_used_regs[i])
1081 SET_REGNO_REG_SET (call_used, i);
1082
1083 /* Create a worklist. Allocate an extra slot for ENTRY_BLOCK, and one
1084 because the `head == tail' style test for an empty queue doesn't
1085 work with a full queue. */
1086 queue = (basic_block *) xmalloc ((n_basic_blocks + 2) * sizeof (*queue));
1087 qtail = queue;
1088 qhead = qend = queue + n_basic_blocks + 2;
1089
1090 /* Queue the blocks set in the initial mask. Do this in reverse block
1091 number order so that we are more likely for the first round to do
1092 useful work. We use AUX non-null to flag that the block is queued. */
1093 if (blocks_in)
1094 {
1095 /* Clear out the garbage that might be hanging out in bb->aux. */
1096 for (i = n_basic_blocks - 1; i >= 0; --i)
1097 BASIC_BLOCK (i)->aux = NULL;
1098
1099 EXECUTE_IF_SET_IN_SBITMAP (blocks_in, 0, i,
1100 {
1101 basic_block bb = BASIC_BLOCK (i);
1102 *--qhead = bb;
1103 bb->aux = bb;
1104 });
1105 }
1106 else
1107 {
1108 for (i = 0; i < n_basic_blocks; ++i)
1109 {
1110 basic_block bb = BASIC_BLOCK (i);
1111 *--qhead = bb;
1112 bb->aux = bb;
1113 }
1114 }
1115
1116 if (blocks_out)
1117 sbitmap_zero (blocks_out);
1118
1119 /* We work through the queue until there are no more blocks. What
1120 is live at the end of this block is precisely the union of what
1121 is live at the beginning of all its successors. So, we set its
1122 GLOBAL_LIVE_AT_END field based on the GLOBAL_LIVE_AT_START field
1123 for its successors. Then, we compute GLOBAL_LIVE_AT_START for
1124 this block by walking through the instructions in this block in
1125 reverse order and updating as we go. If that changed
1126 GLOBAL_LIVE_AT_START, we add the predecessors of the block to the
1127 queue; they will now need to recalculate GLOBAL_LIVE_AT_END.
1128
1129 We are guaranteed to terminate, because GLOBAL_LIVE_AT_START
1130 never shrinks. If a register appears in GLOBAL_LIVE_AT_START, it
1131 must either be live at the end of the block, or used within the
1132 block. In the latter case, it will certainly never disappear
1133 from GLOBAL_LIVE_AT_START. In the former case, the register
1134 could go away only if it disappeared from GLOBAL_LIVE_AT_START
1135 for one of the successor blocks. By induction, that cannot
1136 occur. */
1137 while (qhead != qtail)
1138 {
1139 int rescan, changed;
1140 basic_block bb;
1141 edge e;
1142
1143 bb = *qhead++;
1144 if (qhead == qend)
1145 qhead = queue;
1146 bb->aux = NULL;
1147
1148 /* Begin by propagating live_at_start from the successor blocks. */
1149 CLEAR_REG_SET (new_live_at_end);
1150
1151 if (bb->succ)
1152 for (e = bb->succ; e; e = e->succ_next)
1153 {
1154 basic_block sb = e->dest;
1155
1156 /* Call-clobbered registers die across exception and
1157 call edges. */
1158 /* ??? Abnormal call edges ignored for the moment, as this gets
1159 confused by sibling call edges, which crashes reg-stack. */
1160 if (e->flags & EDGE_EH)
1161 {
1162 bitmap_operation (tmp, sb->global_live_at_start,
1163 call_used, BITMAP_AND_COMPL);
1164 IOR_REG_SET (new_live_at_end, tmp);
1165 }
1166 else
1167 IOR_REG_SET (new_live_at_end, sb->global_live_at_start);
1168
1169 /* If a target saves one register in another (instead of on
1170 the stack) the save register will need to be live for EH. */
1171 if (e->flags & EDGE_EH)
1172 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1173 if (EH_USES (i))
1174 SET_REGNO_REG_SET (new_live_at_end, i);
1175 }
1176 else
1177 {
1178 /* This might be a noreturn function that throws. And
1179 even if it isn't, getting the unwind info right helps
1180 debugging. */
1181 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1182 if (EH_USES (i))
1183 SET_REGNO_REG_SET (new_live_at_end, i);
1184 }
1185
1186 /* The all-important stack pointer must always be live. */
1187 SET_REGNO_REG_SET (new_live_at_end, STACK_POINTER_REGNUM);
1188
1189 /* Before reload, there are a few registers that must be forced
1190 live everywhere -- which might not already be the case for
1191 blocks within infinite loops. */
1192 if (! reload_completed)
1193 {
1194 /* Any reference to any pseudo before reload is a potential
1195 reference of the frame pointer. */
1196 SET_REGNO_REG_SET (new_live_at_end, FRAME_POINTER_REGNUM);
1197
1198 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
1199 /* Pseudos with argument area equivalences may require
1200 reloading via the argument pointer. */
1201 if (fixed_regs[ARG_POINTER_REGNUM])
1202 SET_REGNO_REG_SET (new_live_at_end, ARG_POINTER_REGNUM);
1203 #endif
1204
1205 /* Any constant, or pseudo with constant equivalences, may
1206 require reloading from memory using the pic register. */
1207 if (PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM
1208 && fixed_regs[PIC_OFFSET_TABLE_REGNUM])
1209 SET_REGNO_REG_SET (new_live_at_end, PIC_OFFSET_TABLE_REGNUM);
1210 }
1211
1212 /* Regs used in phi nodes are not included in
1213 global_live_at_start, since they are live only along a
1214 particular edge. Set those regs that are live because of a
1215 phi node alternative corresponding to this particular block. */
1216 if (in_ssa_form)
1217 for_each_successor_phi (bb, &set_phi_alternative_reg,
1218 new_live_at_end);
1219
1220 if (bb == ENTRY_BLOCK_PTR)
1221 {
1222 COPY_REG_SET (bb->global_live_at_end, new_live_at_end);
1223 continue;
1224 }
1225
1226 /* On our first pass through this block, we'll go ahead and continue.
1227 Recognize first pass by local_set NULL. On subsequent passes, we
1228 get to skip out early if live_at_end wouldn't have changed. */
1229
1230 if (bb->local_set == NULL)
1231 {
1232 bb->local_set = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1233 bb->cond_local_set = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1234 rescan = 1;
1235 }
1236 else
1237 {
1238 /* If any bits were removed from live_at_end, we'll have to
1239 rescan the block. This wouldn't be necessary if we had
1240 precalculated local_live, however with PROP_SCAN_DEAD_CODE
1241 local_live is really dependent on live_at_end. */
1242 CLEAR_REG_SET (tmp);
1243 rescan = bitmap_operation (tmp, bb->global_live_at_end,
1244 new_live_at_end, BITMAP_AND_COMPL);
1245
1246 if (! rescan)
1247 {
1248 /* If any of the registers in the new live_at_end set are
1249 conditionally set in this basic block, we must rescan.
1250 This is because conditional lifetimes at the end of the
1251 block do not just take the live_at_end set into account,
1252 but also the liveness at the start of each successor
1253 block. We can miss changes in those sets if we only
1254 compare the new live_at_end against the previous one. */
1255 CLEAR_REG_SET (tmp);
1256 rescan = bitmap_operation (tmp, new_live_at_end,
1257 bb->cond_local_set, BITMAP_AND);
1258 }
1259
1260 if (! rescan)
1261 {
1262 /* Find the set of changed bits. Take this opportunity
1263 to notice that this set is empty and early out. */
1264 CLEAR_REG_SET (tmp);
1265 changed = bitmap_operation (tmp, bb->global_live_at_end,
1266 new_live_at_end, BITMAP_XOR);
1267 if (! changed)
1268 continue;
1269
1270 /* If any of the changed bits overlap with local_set,
1271 we'll have to rescan the block. Detect overlap by
1272 the AND with ~local_set turning off bits. */
1273 rescan = bitmap_operation (tmp, tmp, bb->local_set,
1274 BITMAP_AND_COMPL);
1275 }
1276 }
1277
1278 /* Let our caller know that BB changed enough to require its
1279 death notes updated. */
1280 if (blocks_out)
1281 SET_BIT (blocks_out, bb->index);
1282
1283 if (! rescan)
1284 {
1285 /* Add to live_at_start the set of all registers in
1286 new_live_at_end that aren't in the old live_at_end. */
1287
1288 bitmap_operation (tmp, new_live_at_end, bb->global_live_at_end,
1289 BITMAP_AND_COMPL);
1290 COPY_REG_SET (bb->global_live_at_end, new_live_at_end);
1291
1292 changed = bitmap_operation (bb->global_live_at_start,
1293 bb->global_live_at_start,
1294 tmp, BITMAP_IOR);
1295 if (! changed)
1296 continue;
1297 }
1298 else
1299 {
1300 COPY_REG_SET (bb->global_live_at_end, new_live_at_end);
1301
1302 /* Rescan the block insn by insn to turn (a copy of) live_at_end
1303 into live_at_start. */
1304 propagate_block (bb, new_live_at_end, bb->local_set,
1305 bb->cond_local_set, flags);
1306
1307 /* If live_at start didn't change, no need to go farther. */
1308 if (REG_SET_EQUAL_P (bb->global_live_at_start, new_live_at_end))
1309 continue;
1310
1311 COPY_REG_SET (bb->global_live_at_start, new_live_at_end);
1312 }
1313
1314 /* Queue all predecessors of BB so that we may re-examine
1315 their live_at_end. */
1316 for (e = bb->pred; e; e = e->pred_next)
1317 {
1318 basic_block pb = e->src;
1319 if (pb->aux == NULL)
1320 {
1321 *qtail++ = pb;
1322 if (qtail == qend)
1323 qtail = queue;
1324 pb->aux = pb;
1325 }
1326 }
1327 }
1328
1329 FREE_REG_SET (tmp);
1330 FREE_REG_SET (new_live_at_end);
1331 FREE_REG_SET (call_used);
1332
1333 if (blocks_out)
1334 {
1335 EXECUTE_IF_SET_IN_SBITMAP (blocks_out, 0, i,
1336 {
1337 basic_block bb = BASIC_BLOCK (i);
1338 FREE_REG_SET (bb->local_set);
1339 FREE_REG_SET (bb->cond_local_set);
1340 });
1341 }
1342 else
1343 {
1344 for (i = n_basic_blocks - 1; i >= 0; --i)
1345 {
1346 basic_block bb = BASIC_BLOCK (i);
1347 FREE_REG_SET (bb->local_set);
1348 FREE_REG_SET (bb->cond_local_set);
1349 }
1350 }
1351
1352 free (queue);
1353 }
1354
1355 \f
1356 /* This structure is used to pass parameters to an from the
1357 the function find_regno_partial(). It is used to pass in the
1358 register number we are looking, as well as to return any rtx
1359 we find. */
1360
1361 typedef struct {
1362 unsigned regno_to_find;
1363 rtx retval;
1364 } find_regno_partial_param;
1365
1366
1367 /* Find the rtx for the reg numbers specified in 'data' if it is
1368 part of an expression which only uses part of the register. Return
1369 it in the structure passed in. */
1370 static int
1371 find_regno_partial (ptr, data)
1372 rtx *ptr;
1373 void *data;
1374 {
1375 find_regno_partial_param *param = (find_regno_partial_param *)data;
1376 unsigned reg = param->regno_to_find;
1377 param->retval = NULL_RTX;
1378
1379 if (*ptr == NULL_RTX)
1380 return 0;
1381
1382 switch (GET_CODE (*ptr))
1383 {
1384 case ZERO_EXTRACT:
1385 case SIGN_EXTRACT:
1386 case STRICT_LOW_PART:
1387 if (GET_CODE (XEXP (*ptr, 0)) == REG && REGNO (XEXP (*ptr, 0)) == reg)
1388 {
1389 param->retval = XEXP (*ptr, 0);
1390 return 1;
1391 }
1392 break;
1393
1394 case SUBREG:
1395 if (GET_CODE (SUBREG_REG (*ptr)) == REG
1396 && REGNO (SUBREG_REG (*ptr)) == reg)
1397 {
1398 param->retval = SUBREG_REG (*ptr);
1399 return 1;
1400 }
1401 break;
1402
1403 default:
1404 break;
1405 }
1406
1407 return 0;
1408 }
1409
1410 /* Process all immediate successors of the entry block looking for pseudo
1411 registers which are live on entry. Find all of those whose first
1412 instance is a partial register reference of some kind, and initialize
1413 them to 0 after the entry block. This will prevent bit sets within
1414 registers whose value is unknown, and may contain some kind of sticky
1415 bits we don't want. */
1416
1417 int
1418 initialize_uninitialized_subregs ()
1419 {
1420 rtx insn;
1421 edge e;
1422 int reg, did_something = 0;
1423 find_regno_partial_param param;
1424
1425 for (e = ENTRY_BLOCK_PTR->succ; e; e = e->succ_next)
1426 {
1427 basic_block bb = e->dest;
1428 regset map = bb->global_live_at_start;
1429 EXECUTE_IF_SET_IN_REG_SET (map,
1430 FIRST_PSEUDO_REGISTER, reg,
1431 {
1432 int uid = REGNO_FIRST_UID (reg);
1433 rtx i;
1434
1435 /* Find an insn which mentions the register we are looking for.
1436 Its preferable to have an instance of the register's rtl since
1437 there may be various flags set which we need to duplicate.
1438 If we can't find it, its probably an automatic whose initial
1439 value doesn't matter, or hopefully something we don't care about. */
1440 for (i = get_insns (); i && INSN_UID (i) != uid; i = NEXT_INSN (i))
1441 ;
1442 if (i != NULL_RTX)
1443 {
1444 /* Found the insn, now get the REG rtx, if we can. */
1445 param.regno_to_find = reg;
1446 for_each_rtx (&i, find_regno_partial, &param);
1447 if (param.retval != NULL_RTX)
1448 {
1449 insn = gen_move_insn (param.retval,
1450 CONST0_RTX (GET_MODE (param.retval)));
1451 insert_insn_on_edge (insn, e);
1452 did_something = 1;
1453 }
1454 }
1455 });
1456 }
1457
1458 if (did_something)
1459 commit_edge_insertions ();
1460 return did_something;
1461 }
1462
1463 \f
1464 /* Subroutines of life analysis. */
1465
1466 /* Allocate the permanent data structures that represent the results
1467 of life analysis. Not static since used also for stupid life analysis. */
1468
1469 void
1470 allocate_bb_life_data ()
1471 {
1472 int i;
1473
1474 for (i = 0; i < n_basic_blocks; i++)
1475 {
1476 basic_block bb = BASIC_BLOCK (i);
1477
1478 bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1479 bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1480 }
1481
1482 ENTRY_BLOCK_PTR->global_live_at_end
1483 = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1484 EXIT_BLOCK_PTR->global_live_at_start
1485 = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1486
1487 regs_live_at_setjmp = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1488 }
1489
1490 void
1491 allocate_reg_life_data ()
1492 {
1493 int i;
1494
1495 max_regno = max_reg_num ();
1496
1497 /* Recalculate the register space, in case it has grown. Old style
1498 vector oriented regsets would set regset_{size,bytes} here also. */
1499 allocate_reg_info (max_regno, FALSE, FALSE);
1500
1501 /* Reset all the data we'll collect in propagate_block and its
1502 subroutines. */
1503 for (i = 0; i < max_regno; i++)
1504 {
1505 REG_N_SETS (i) = 0;
1506 REG_N_REFS (i) = 0;
1507 REG_N_DEATHS (i) = 0;
1508 REG_N_CALLS_CROSSED (i) = 0;
1509 REG_LIVE_LENGTH (i) = 0;
1510 REG_BASIC_BLOCK (i) = REG_BLOCK_UNKNOWN;
1511 }
1512 }
1513
1514 /* Delete dead instructions for propagate_block. */
1515
1516 static void
1517 propagate_block_delete_insn (insn)
1518 rtx insn;
1519 {
1520 rtx inote = find_reg_note (insn, REG_LABEL, NULL_RTX);
1521
1522 /* If the insn referred to a label, and that label was attached to
1523 an ADDR_VEC, it's safe to delete the ADDR_VEC. In fact, it's
1524 pretty much mandatory to delete it, because the ADDR_VEC may be
1525 referencing labels that no longer exist.
1526
1527 INSN may reference a deleted label, particularly when a jump
1528 table has been optimized into a direct jump. There's no
1529 real good way to fix up the reference to the deleted label
1530 when the label is deleted, so we just allow it here.
1531
1532 After dead code elimination is complete, we do search for
1533 any REG_LABEL notes which reference deleted labels as a
1534 sanity check. */
1535
1536 if (inote && GET_CODE (inote) == CODE_LABEL)
1537 {
1538 rtx label = XEXP (inote, 0);
1539 rtx next;
1540
1541 /* The label may be forced if it has been put in the constant
1542 pool. If that is the only use we must discard the table
1543 jump following it, but not the label itself. */
1544 if (LABEL_NUSES (label) == 1 + LABEL_PRESERVE_P (label)
1545 && (next = next_nonnote_insn (label)) != NULL
1546 && GET_CODE (next) == JUMP_INSN
1547 && (GET_CODE (PATTERN (next)) == ADDR_VEC
1548 || GET_CODE (PATTERN (next)) == ADDR_DIFF_VEC))
1549 {
1550 rtx pat = PATTERN (next);
1551 int diff_vec_p = GET_CODE (pat) == ADDR_DIFF_VEC;
1552 int len = XVECLEN (pat, diff_vec_p);
1553 int i;
1554
1555 for (i = 0; i < len; i++)
1556 LABEL_NUSES (XEXP (XVECEXP (pat, diff_vec_p, i), 0))--;
1557
1558 delete_insn_and_edges (next);
1559 ndead++;
1560 }
1561 }
1562
1563 delete_insn_and_edges (insn);
1564 ndead++;
1565 }
1566
1567 /* Delete dead libcalls for propagate_block. Return the insn
1568 before the libcall. */
1569
1570 static rtx
1571 propagate_block_delete_libcall ( insn, note)
1572 rtx insn, note;
1573 {
1574 rtx first = XEXP (note, 0);
1575 rtx before = PREV_INSN (first);
1576
1577 delete_insn_chain_and_edges (first, insn);
1578 ndead++;
1579 return before;
1580 }
1581
1582 /* Update the life-status of regs for one insn. Return the previous insn. */
1583
1584 rtx
1585 propagate_one_insn (pbi, insn)
1586 struct propagate_block_info *pbi;
1587 rtx insn;
1588 {
1589 rtx prev = PREV_INSN (insn);
1590 int flags = pbi->flags;
1591 int insn_is_dead = 0;
1592 int libcall_is_dead = 0;
1593 rtx note;
1594 int i;
1595
1596 if (! INSN_P (insn))
1597 return prev;
1598
1599 note = find_reg_note (insn, REG_RETVAL, NULL_RTX);
1600 if (flags & PROP_SCAN_DEAD_CODE)
1601 {
1602 insn_is_dead = insn_dead_p (pbi, PATTERN (insn), 0, REG_NOTES (insn));
1603 libcall_is_dead = (insn_is_dead && note != 0
1604 && libcall_dead_p (pbi, note, insn));
1605 }
1606
1607 /* If an instruction consists of just dead store(s) on final pass,
1608 delete it. */
1609 if ((flags & PROP_KILL_DEAD_CODE) && insn_is_dead)
1610 {
1611 /* If we're trying to delete a prologue or epilogue instruction
1612 that isn't flagged as possibly being dead, something is wrong.
1613 But if we are keeping the stack pointer depressed, we might well
1614 be deleting insns that are used to compute the amount to update
1615 it by, so they are fine. */
1616 if (reload_completed
1617 && !(TREE_CODE (TREE_TYPE (current_function_decl)) == FUNCTION_TYPE
1618 && (TYPE_RETURNS_STACK_DEPRESSED
1619 (TREE_TYPE (current_function_decl))))
1620 && (((HAVE_epilogue || HAVE_prologue)
1621 && prologue_epilogue_contains (insn))
1622 || (HAVE_sibcall_epilogue
1623 && sibcall_epilogue_contains (insn)))
1624 && find_reg_note (insn, REG_MAYBE_DEAD, NULL_RTX) == 0)
1625 fatal_insn ("Attempt to delete prologue/epilogue insn:", insn);
1626
1627 /* Record sets. Do this even for dead instructions, since they
1628 would have killed the values if they hadn't been deleted. */
1629 mark_set_regs (pbi, PATTERN (insn), insn);
1630
1631 /* CC0 is now known to be dead. Either this insn used it,
1632 in which case it doesn't anymore, or clobbered it,
1633 so the next insn can't use it. */
1634 pbi->cc0_live = 0;
1635
1636 if (libcall_is_dead)
1637 prev = propagate_block_delete_libcall ( insn, note);
1638 else
1639 propagate_block_delete_insn (insn);
1640
1641 return prev;
1642 }
1643
1644 /* See if this is an increment or decrement that can be merged into
1645 a following memory address. */
1646 #ifdef AUTO_INC_DEC
1647 {
1648 rtx x = single_set (insn);
1649
1650 /* Does this instruction increment or decrement a register? */
1651 if ((flags & PROP_AUTOINC)
1652 && x != 0
1653 && GET_CODE (SET_DEST (x)) == REG
1654 && (GET_CODE (SET_SRC (x)) == PLUS
1655 || GET_CODE (SET_SRC (x)) == MINUS)
1656 && XEXP (SET_SRC (x), 0) == SET_DEST (x)
1657 && GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
1658 /* Ok, look for a following memory ref we can combine with.
1659 If one is found, change the memory ref to a PRE_INC
1660 or PRE_DEC, cancel this insn, and return 1.
1661 Return 0 if nothing has been done. */
1662 && try_pre_increment_1 (pbi, insn))
1663 return prev;
1664 }
1665 #endif /* AUTO_INC_DEC */
1666
1667 CLEAR_REG_SET (pbi->new_set);
1668
1669 /* If this is not the final pass, and this insn is copying the value of
1670 a library call and it's dead, don't scan the insns that perform the
1671 library call, so that the call's arguments are not marked live. */
1672 if (libcall_is_dead)
1673 {
1674 /* Record the death of the dest reg. */
1675 mark_set_regs (pbi, PATTERN (insn), insn);
1676
1677 insn = XEXP (note, 0);
1678 return PREV_INSN (insn);
1679 }
1680 else if (GET_CODE (PATTERN (insn)) == SET
1681 && SET_DEST (PATTERN (insn)) == stack_pointer_rtx
1682 && GET_CODE (SET_SRC (PATTERN (insn))) == PLUS
1683 && XEXP (SET_SRC (PATTERN (insn)), 0) == stack_pointer_rtx
1684 && GET_CODE (XEXP (SET_SRC (PATTERN (insn)), 1)) == CONST_INT)
1685 /* We have an insn to pop a constant amount off the stack.
1686 (Such insns use PLUS regardless of the direction of the stack,
1687 and any insn to adjust the stack by a constant is always a pop.)
1688 These insns, if not dead stores, have no effect on life. */
1689 ;
1690 else
1691 {
1692 rtx note;
1693 /* Any regs live at the time of a call instruction must not go
1694 in a register clobbered by calls. Find all regs now live and
1695 record this for them. */
1696
1697 if (GET_CODE (insn) == CALL_INSN && (flags & PROP_REG_INFO))
1698 EXECUTE_IF_SET_IN_REG_SET (pbi->reg_live, 0, i,
1699 { REG_N_CALLS_CROSSED (i)++; });
1700
1701 /* Record sets. Do this even for dead instructions, since they
1702 would have killed the values if they hadn't been deleted. */
1703 mark_set_regs (pbi, PATTERN (insn), insn);
1704
1705 if (GET_CODE (insn) == CALL_INSN)
1706 {
1707 int i;
1708 rtx note, cond;
1709
1710 cond = NULL_RTX;
1711 if (GET_CODE (PATTERN (insn)) == COND_EXEC)
1712 cond = COND_EXEC_TEST (PATTERN (insn));
1713
1714 /* Non-constant calls clobber memory. */
1715 if (! CONST_OR_PURE_CALL_P (insn))
1716 {
1717 free_EXPR_LIST_list (&pbi->mem_set_list);
1718 pbi->mem_set_list_len = 0;
1719 }
1720
1721 /* There may be extra registers to be clobbered. */
1722 for (note = CALL_INSN_FUNCTION_USAGE (insn);
1723 note;
1724 note = XEXP (note, 1))
1725 if (GET_CODE (XEXP (note, 0)) == CLOBBER)
1726 mark_set_1 (pbi, CLOBBER, XEXP (XEXP (note, 0), 0),
1727 cond, insn, pbi->flags);
1728
1729 /* Calls change all call-used and global registers. */
1730 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1731 if (TEST_HARD_REG_BIT (regs_invalidated_by_call, i))
1732 {
1733 /* We do not want REG_UNUSED notes for these registers. */
1734 mark_set_1 (pbi, CLOBBER, gen_rtx_REG (reg_raw_mode[i], i),
1735 cond, insn,
1736 pbi->flags & ~(PROP_DEATH_NOTES | PROP_REG_INFO));
1737 }
1738 }
1739
1740 /* If an insn doesn't use CC0, it becomes dead since we assume
1741 that every insn clobbers it. So show it dead here;
1742 mark_used_regs will set it live if it is referenced. */
1743 pbi->cc0_live = 0;
1744
1745 /* Record uses. */
1746 if (! insn_is_dead)
1747 mark_used_regs (pbi, PATTERN (insn), NULL_RTX, insn);
1748 if ((flags & PROP_EQUAL_NOTES)
1749 && ((note = find_reg_note (insn, REG_EQUAL, NULL_RTX))
1750 || (note = find_reg_note (insn, REG_EQUIV, NULL_RTX))))
1751 mark_used_regs (pbi, XEXP (note, 0), NULL_RTX, insn);
1752
1753 /* Sometimes we may have inserted something before INSN (such as a move)
1754 when we make an auto-inc. So ensure we will scan those insns. */
1755 #ifdef AUTO_INC_DEC
1756 prev = PREV_INSN (insn);
1757 #endif
1758
1759 if (! insn_is_dead && GET_CODE (insn) == CALL_INSN)
1760 {
1761 int i;
1762 rtx note, cond;
1763
1764 cond = NULL_RTX;
1765 if (GET_CODE (PATTERN (insn)) == COND_EXEC)
1766 cond = COND_EXEC_TEST (PATTERN (insn));
1767
1768 /* Calls use their arguments. */
1769 for (note = CALL_INSN_FUNCTION_USAGE (insn);
1770 note;
1771 note = XEXP (note, 1))
1772 if (GET_CODE (XEXP (note, 0)) == USE)
1773 mark_used_regs (pbi, XEXP (XEXP (note, 0), 0),
1774 cond, insn);
1775
1776 /* The stack ptr is used (honorarily) by a CALL insn. */
1777 SET_REGNO_REG_SET (pbi->reg_live, STACK_POINTER_REGNUM);
1778
1779 /* Calls may also reference any of the global registers,
1780 so they are made live. */
1781 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1782 if (global_regs[i])
1783 mark_used_reg (pbi, gen_rtx_REG (reg_raw_mode[i], i),
1784 cond, insn);
1785 }
1786 }
1787
1788 /* On final pass, update counts of how many insns in which each reg
1789 is live. */
1790 if (flags & PROP_REG_INFO)
1791 EXECUTE_IF_SET_IN_REG_SET (pbi->reg_live, 0, i,
1792 { REG_LIVE_LENGTH (i)++; });
1793
1794 return prev;
1795 }
1796
1797 /* Initialize a propagate_block_info struct for public consumption.
1798 Note that the structure itself is opaque to this file, but that
1799 the user can use the regsets provided here. */
1800
1801 struct propagate_block_info *
1802 init_propagate_block_info (bb, live, local_set, cond_local_set, flags)
1803 basic_block bb;
1804 regset live, local_set, cond_local_set;
1805 int flags;
1806 {
1807 struct propagate_block_info *pbi = xmalloc (sizeof (*pbi));
1808
1809 pbi->bb = bb;
1810 pbi->reg_live = live;
1811 pbi->mem_set_list = NULL_RTX;
1812 pbi->mem_set_list_len = 0;
1813 pbi->local_set = local_set;
1814 pbi->cond_local_set = cond_local_set;
1815 pbi->cc0_live = 0;
1816 pbi->flags = flags;
1817
1818 if (flags & (PROP_LOG_LINKS | PROP_AUTOINC))
1819 pbi->reg_next_use = (rtx *) xcalloc (max_reg_num (), sizeof (rtx));
1820 else
1821 pbi->reg_next_use = NULL;
1822
1823 pbi->new_set = BITMAP_XMALLOC ();
1824
1825 #ifdef HAVE_conditional_execution
1826 pbi->reg_cond_dead = splay_tree_new (splay_tree_compare_ints, NULL,
1827 free_reg_cond_life_info);
1828 pbi->reg_cond_reg = BITMAP_XMALLOC ();
1829
1830 /* If this block ends in a conditional branch, for each register live
1831 from one side of the branch and not the other, record the register
1832 as conditionally dead. */
1833 if (GET_CODE (bb->end) == JUMP_INSN
1834 && any_condjump_p (bb->end))
1835 {
1836 regset_head diff_head;
1837 regset diff = INITIALIZE_REG_SET (diff_head);
1838 basic_block bb_true, bb_false;
1839 rtx cond_true, cond_false, set_src;
1840 int i;
1841
1842 /* Identify the successor blocks. */
1843 bb_true = bb->succ->dest;
1844 if (bb->succ->succ_next != NULL)
1845 {
1846 bb_false = bb->succ->succ_next->dest;
1847
1848 if (bb->succ->flags & EDGE_FALLTHRU)
1849 {
1850 basic_block t = bb_false;
1851 bb_false = bb_true;
1852 bb_true = t;
1853 }
1854 else if (! (bb->succ->succ_next->flags & EDGE_FALLTHRU))
1855 abort ();
1856 }
1857 else
1858 {
1859 /* This can happen with a conditional jump to the next insn. */
1860 if (JUMP_LABEL (bb->end) != bb_true->head)
1861 abort ();
1862
1863 /* Simplest way to do nothing. */
1864 bb_false = bb_true;
1865 }
1866
1867 /* Extract the condition from the branch. */
1868 set_src = SET_SRC (pc_set (bb->end));
1869 cond_true = XEXP (set_src, 0);
1870 cond_false = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond_true)),
1871 GET_MODE (cond_true), XEXP (cond_true, 0),
1872 XEXP (cond_true, 1));
1873 if (GET_CODE (XEXP (set_src, 1)) == PC)
1874 {
1875 rtx t = cond_false;
1876 cond_false = cond_true;
1877 cond_true = t;
1878 }
1879
1880 /* Compute which register lead different lives in the successors. */
1881 if (bitmap_operation (diff, bb_true->global_live_at_start,
1882 bb_false->global_live_at_start, BITMAP_XOR))
1883 {
1884 rtx reg = XEXP (cond_true, 0);
1885
1886 if (GET_CODE (reg) == SUBREG)
1887 reg = SUBREG_REG (reg);
1888
1889 if (GET_CODE (reg) != REG)
1890 abort ();
1891
1892 SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (reg));
1893
1894 /* For each such register, mark it conditionally dead. */
1895 EXECUTE_IF_SET_IN_REG_SET
1896 (diff, 0, i,
1897 {
1898 struct reg_cond_life_info *rcli;
1899 rtx cond;
1900
1901 rcli = (struct reg_cond_life_info *) xmalloc (sizeof (*rcli));
1902
1903 if (REGNO_REG_SET_P (bb_true->global_live_at_start, i))
1904 cond = cond_false;
1905 else
1906 cond = cond_true;
1907 rcli->condition = cond;
1908 rcli->stores = const0_rtx;
1909 rcli->orig_condition = cond;
1910
1911 splay_tree_insert (pbi->reg_cond_dead, i,
1912 (splay_tree_value) rcli);
1913 });
1914 }
1915
1916 FREE_REG_SET (diff);
1917 }
1918 #endif
1919
1920 /* If this block has no successors, any stores to the frame that aren't
1921 used later in the block are dead. So make a pass over the block
1922 recording any such that are made and show them dead at the end. We do
1923 a very conservative and simple job here. */
1924 if (optimize
1925 && ! (TREE_CODE (TREE_TYPE (current_function_decl)) == FUNCTION_TYPE
1926 && (TYPE_RETURNS_STACK_DEPRESSED
1927 (TREE_TYPE (current_function_decl))))
1928 && (flags & PROP_SCAN_DEAD_CODE)
1929 && (bb->succ == NULL
1930 || (bb->succ->succ_next == NULL
1931 && bb->succ->dest == EXIT_BLOCK_PTR
1932 && ! current_function_calls_eh_return)))
1933 {
1934 rtx insn, set;
1935 for (insn = bb->end; insn != bb->head; insn = PREV_INSN (insn))
1936 if (GET_CODE (insn) == INSN
1937 && (set = single_set (insn))
1938 && GET_CODE (SET_DEST (set)) == MEM)
1939 {
1940 rtx mem = SET_DEST (set);
1941 rtx canon_mem = canon_rtx (mem);
1942
1943 /* This optimization is performed by faking a store to the
1944 memory at the end of the block. This doesn't work for
1945 unchanging memories because multiple stores to unchanging
1946 memory is illegal and alias analysis doesn't consider it. */
1947 if (RTX_UNCHANGING_P (canon_mem))
1948 continue;
1949
1950 if (XEXP (canon_mem, 0) == frame_pointer_rtx
1951 || (GET_CODE (XEXP (canon_mem, 0)) == PLUS
1952 && XEXP (XEXP (canon_mem, 0), 0) == frame_pointer_rtx
1953 && GET_CODE (XEXP (XEXP (canon_mem, 0), 1)) == CONST_INT))
1954 add_to_mem_set_list (pbi, canon_mem);
1955 }
1956 }
1957
1958 return pbi;
1959 }
1960
1961 /* Release a propagate_block_info struct. */
1962
1963 void
1964 free_propagate_block_info (pbi)
1965 struct propagate_block_info *pbi;
1966 {
1967 free_EXPR_LIST_list (&pbi->mem_set_list);
1968
1969 BITMAP_XFREE (pbi->new_set);
1970
1971 #ifdef HAVE_conditional_execution
1972 splay_tree_delete (pbi->reg_cond_dead);
1973 BITMAP_XFREE (pbi->reg_cond_reg);
1974 #endif
1975
1976 if (pbi->reg_next_use)
1977 free (pbi->reg_next_use);
1978
1979 free (pbi);
1980 }
1981
1982 /* Compute the registers live at the beginning of a basic block BB from
1983 those live at the end.
1984
1985 When called, REG_LIVE contains those live at the end. On return, it
1986 contains those live at the beginning.
1987
1988 LOCAL_SET, if non-null, will be set with all registers killed
1989 unconditionally by this basic block.
1990 Likewise, COND_LOCAL_SET, if non-null, will be set with all registers
1991 killed conditionally by this basic block. If there is any unconditional
1992 set of a register, then the corresponding bit will be set in LOCAL_SET
1993 and cleared in COND_LOCAL_SET.
1994 It is valid for LOCAL_SET and COND_LOCAL_SET to be the same set. In this
1995 case, the resulting set will be equal to the union of the two sets that
1996 would otherwise be computed.
1997
1998 Return non-zero if an INSN is deleted (i.e. by dead code removal). */
1999
2000 int
2001 propagate_block (bb, live, local_set, cond_local_set, flags)
2002 basic_block bb;
2003 regset live;
2004 regset local_set;
2005 regset cond_local_set;
2006 int flags;
2007 {
2008 struct propagate_block_info *pbi;
2009 rtx insn, prev;
2010 int changed;
2011
2012 pbi = init_propagate_block_info (bb, live, local_set, cond_local_set, flags);
2013
2014 if (flags & PROP_REG_INFO)
2015 {
2016 int i;
2017
2018 /* Process the regs live at the end of the block.
2019 Mark them as not local to any one basic block. */
2020 EXECUTE_IF_SET_IN_REG_SET (live, 0, i,
2021 { REG_BASIC_BLOCK (i) = REG_BLOCK_GLOBAL; });
2022 }
2023
2024 /* Scan the block an insn at a time from end to beginning. */
2025
2026 changed = 0;
2027 for (insn = bb->end;; insn = prev)
2028 {
2029 /* If this is a call to `setjmp' et al, warn if any
2030 non-volatile datum is live. */
2031 if ((flags & PROP_REG_INFO)
2032 && GET_CODE (insn) == CALL_INSN
2033 && find_reg_note (insn, REG_SETJMP, NULL))
2034 IOR_REG_SET (regs_live_at_setjmp, pbi->reg_live);
2035
2036 prev = propagate_one_insn (pbi, insn);
2037 changed |= NEXT_INSN (prev) != insn;
2038
2039 if (insn == bb->head)
2040 break;
2041 }
2042
2043 free_propagate_block_info (pbi);
2044
2045 return changed;
2046 }
2047 \f
2048 /* Return 1 if X (the body of an insn, or part of it) is just dead stores
2049 (SET expressions whose destinations are registers dead after the insn).
2050 NEEDED is the regset that says which regs are alive after the insn.
2051
2052 Unless CALL_OK is non-zero, an insn is needed if it contains a CALL.
2053
2054 If X is the entire body of an insn, NOTES contains the reg notes
2055 pertaining to the insn. */
2056
2057 static int
2058 insn_dead_p (pbi, x, call_ok, notes)
2059 struct propagate_block_info *pbi;
2060 rtx x;
2061 int call_ok;
2062 rtx notes ATTRIBUTE_UNUSED;
2063 {
2064 enum rtx_code code = GET_CODE (x);
2065
2066 #ifdef AUTO_INC_DEC
2067 /* As flow is invoked after combine, we must take existing AUTO_INC
2068 expressions into account. */
2069 for (; notes; notes = XEXP (notes, 1))
2070 {
2071 if (REG_NOTE_KIND (notes) == REG_INC)
2072 {
2073 int regno = REGNO (XEXP (notes, 0));
2074
2075 /* Don't delete insns to set global regs. */
2076 if ((regno < FIRST_PSEUDO_REGISTER && global_regs[regno])
2077 || REGNO_REG_SET_P (pbi->reg_live, regno))
2078 return 0;
2079 }
2080 }
2081 #endif
2082
2083 /* If setting something that's a reg or part of one,
2084 see if that register's altered value will be live. */
2085
2086 if (code == SET)
2087 {
2088 rtx r = SET_DEST (x);
2089
2090 #ifdef HAVE_cc0
2091 if (GET_CODE (r) == CC0)
2092 return ! pbi->cc0_live;
2093 #endif
2094
2095 /* A SET that is a subroutine call cannot be dead. */
2096 if (GET_CODE (SET_SRC (x)) == CALL)
2097 {
2098 if (! call_ok)
2099 return 0;
2100 }
2101
2102 /* Don't eliminate loads from volatile memory or volatile asms. */
2103 else if (volatile_refs_p (SET_SRC (x)))
2104 return 0;
2105
2106 if (GET_CODE (r) == MEM)
2107 {
2108 rtx temp, canon_r;
2109
2110 if (MEM_VOLATILE_P (r) || GET_MODE (r) == BLKmode)
2111 return 0;
2112
2113 canon_r = canon_rtx (r);
2114
2115 /* Walk the set of memory locations we are currently tracking
2116 and see if one is an identical match to this memory location.
2117 If so, this memory write is dead (remember, we're walking
2118 backwards from the end of the block to the start). Since
2119 rtx_equal_p does not check the alias set or flags, we also
2120 must have the potential for them to conflict (anti_dependence). */
2121 for (temp = pbi->mem_set_list; temp != 0; temp = XEXP (temp, 1))
2122 if (anti_dependence (r, XEXP (temp, 0)))
2123 {
2124 rtx mem = XEXP (temp, 0);
2125
2126 if (rtx_equal_p (XEXP (canon_r, 0), XEXP (mem, 0))
2127 && (GET_MODE_SIZE (GET_MODE (canon_r))
2128 <= GET_MODE_SIZE (GET_MODE (mem))))
2129 return 1;
2130
2131 #ifdef AUTO_INC_DEC
2132 /* Check if memory reference matches an auto increment. Only
2133 post increment/decrement or modify are valid. */
2134 if (GET_MODE (mem) == GET_MODE (r)
2135 && (GET_CODE (XEXP (mem, 0)) == POST_DEC
2136 || GET_CODE (XEXP (mem, 0)) == POST_INC
2137 || GET_CODE (XEXP (mem, 0)) == POST_MODIFY)
2138 && GET_MODE (XEXP (mem, 0)) == GET_MODE (r)
2139 && rtx_equal_p (XEXP (XEXP (mem, 0), 0), XEXP (r, 0)))
2140 return 1;
2141 #endif
2142 }
2143 }
2144 else
2145 {
2146 while (GET_CODE (r) == SUBREG
2147 || GET_CODE (r) == STRICT_LOW_PART
2148 || GET_CODE (r) == ZERO_EXTRACT)
2149 r = XEXP (r, 0);
2150
2151 if (GET_CODE (r) == REG)
2152 {
2153 int regno = REGNO (r);
2154
2155 /* Obvious. */
2156 if (REGNO_REG_SET_P (pbi->reg_live, regno))
2157 return 0;
2158
2159 /* If this is a hard register, verify that subsequent
2160 words are not needed. */
2161 if (regno < FIRST_PSEUDO_REGISTER)
2162 {
2163 int n = HARD_REGNO_NREGS (regno, GET_MODE (r));
2164
2165 while (--n > 0)
2166 if (REGNO_REG_SET_P (pbi->reg_live, regno+n))
2167 return 0;
2168 }
2169
2170 /* Don't delete insns to set global regs. */
2171 if (regno < FIRST_PSEUDO_REGISTER && global_regs[regno])
2172 return 0;
2173
2174 /* Make sure insns to set the stack pointer aren't deleted. */
2175 if (regno == STACK_POINTER_REGNUM)
2176 return 0;
2177
2178 /* ??? These bits might be redundant with the force live bits
2179 in calculate_global_regs_live. We would delete from
2180 sequential sets; whether this actually affects real code
2181 for anything but the stack pointer I don't know. */
2182 /* Make sure insns to set the frame pointer aren't deleted. */
2183 if (regno == FRAME_POINTER_REGNUM
2184 && (! reload_completed || frame_pointer_needed))
2185 return 0;
2186 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
2187 if (regno == HARD_FRAME_POINTER_REGNUM
2188 && (! reload_completed || frame_pointer_needed))
2189 return 0;
2190 #endif
2191
2192 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
2193 /* Make sure insns to set arg pointer are never deleted
2194 (if the arg pointer isn't fixed, there will be a USE
2195 for it, so we can treat it normally). */
2196 if (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
2197 return 0;
2198 #endif
2199
2200 /* Otherwise, the set is dead. */
2201 return 1;
2202 }
2203 }
2204 }
2205
2206 /* If performing several activities, insn is dead if each activity
2207 is individually dead. Also, CLOBBERs and USEs can be ignored; a
2208 CLOBBER or USE that's inside a PARALLEL doesn't make the insn
2209 worth keeping. */
2210 else if (code == PARALLEL)
2211 {
2212 int i = XVECLEN (x, 0);
2213
2214 for (i--; i >= 0; i--)
2215 if (GET_CODE (XVECEXP (x, 0, i)) != CLOBBER
2216 && GET_CODE (XVECEXP (x, 0, i)) != USE
2217 && ! insn_dead_p (pbi, XVECEXP (x, 0, i), call_ok, NULL_RTX))
2218 return 0;
2219
2220 return 1;
2221 }
2222
2223 /* A CLOBBER of a pseudo-register that is dead serves no purpose. That
2224 is not necessarily true for hard registers. */
2225 else if (code == CLOBBER && GET_CODE (XEXP (x, 0)) == REG
2226 && REGNO (XEXP (x, 0)) >= FIRST_PSEUDO_REGISTER
2227 && ! REGNO_REG_SET_P (pbi->reg_live, REGNO (XEXP (x, 0))))
2228 return 1;
2229
2230 /* We do not check other CLOBBER or USE here. An insn consisting of just
2231 a CLOBBER or just a USE should not be deleted. */
2232 return 0;
2233 }
2234
2235 /* If INSN is the last insn in a libcall, and assuming INSN is dead,
2236 return 1 if the entire library call is dead.
2237 This is true if INSN copies a register (hard or pseudo)
2238 and if the hard return reg of the call insn is dead.
2239 (The caller should have tested the destination of the SET inside
2240 INSN already for death.)
2241
2242 If this insn doesn't just copy a register, then we don't
2243 have an ordinary libcall. In that case, cse could not have
2244 managed to substitute the source for the dest later on,
2245 so we can assume the libcall is dead.
2246
2247 PBI is the block info giving pseudoregs live before this insn.
2248 NOTE is the REG_RETVAL note of the insn. */
2249
2250 static int
2251 libcall_dead_p (pbi, note, insn)
2252 struct propagate_block_info *pbi;
2253 rtx note;
2254 rtx insn;
2255 {
2256 rtx x = single_set (insn);
2257
2258 if (x)
2259 {
2260 rtx r = SET_SRC (x);
2261
2262 if (GET_CODE (r) == REG)
2263 {
2264 rtx call = XEXP (note, 0);
2265 rtx call_pat;
2266 int i;
2267
2268 /* Find the call insn. */
2269 while (call != insn && GET_CODE (call) != CALL_INSN)
2270 call = NEXT_INSN (call);
2271
2272 /* If there is none, do nothing special,
2273 since ordinary death handling can understand these insns. */
2274 if (call == insn)
2275 return 0;
2276
2277 /* See if the hard reg holding the value is dead.
2278 If this is a PARALLEL, find the call within it. */
2279 call_pat = PATTERN (call);
2280 if (GET_CODE (call_pat) == PARALLEL)
2281 {
2282 for (i = XVECLEN (call_pat, 0) - 1; i >= 0; i--)
2283 if (GET_CODE (XVECEXP (call_pat, 0, i)) == SET
2284 && GET_CODE (SET_SRC (XVECEXP (call_pat, 0, i))) == CALL)
2285 break;
2286
2287 /* This may be a library call that is returning a value
2288 via invisible pointer. Do nothing special, since
2289 ordinary death handling can understand these insns. */
2290 if (i < 0)
2291 return 0;
2292
2293 call_pat = XVECEXP (call_pat, 0, i);
2294 }
2295
2296 return insn_dead_p (pbi, call_pat, 1, REG_NOTES (call));
2297 }
2298 }
2299 return 1;
2300 }
2301
2302 /* Return 1 if register REGNO was used before it was set, i.e. if it is
2303 live at function entry. Don't count global register variables, variables
2304 in registers that can be used for function arg passing, or variables in
2305 fixed hard registers. */
2306
2307 int
2308 regno_uninitialized (regno)
2309 unsigned int regno;
2310 {
2311 if (n_basic_blocks == 0
2312 || (regno < FIRST_PSEUDO_REGISTER
2313 && (global_regs[regno]
2314 || fixed_regs[regno]
2315 || FUNCTION_ARG_REGNO_P (regno))))
2316 return 0;
2317
2318 return REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start, regno);
2319 }
2320
2321 /* 1 if register REGNO was alive at a place where `setjmp' was called
2322 and was set more than once or is an argument.
2323 Such regs may be clobbered by `longjmp'. */
2324
2325 int
2326 regno_clobbered_at_setjmp (regno)
2327 int regno;
2328 {
2329 if (n_basic_blocks == 0)
2330 return 0;
2331
2332 return ((REG_N_SETS (regno) > 1
2333 || REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start, regno))
2334 && REGNO_REG_SET_P (regs_live_at_setjmp, regno));
2335 }
2336 \f
2337 /* Add MEM to PBI->MEM_SET_LIST. MEM should be canonical. Respect the
2338 maximal list size; look for overlaps in mode and select the largest. */
2339 static void
2340 add_to_mem_set_list (pbi, mem)
2341 struct propagate_block_info *pbi;
2342 rtx mem;
2343 {
2344 rtx i;
2345
2346 /* We don't know how large a BLKmode store is, so we must not
2347 take them into consideration. */
2348 if (GET_MODE (mem) == BLKmode)
2349 return;
2350
2351 for (i = pbi->mem_set_list; i ; i = XEXP (i, 1))
2352 {
2353 rtx e = XEXP (i, 0);
2354 if (rtx_equal_p (XEXP (mem, 0), XEXP (e, 0)))
2355 {
2356 if (GET_MODE_SIZE (GET_MODE (mem)) > GET_MODE_SIZE (GET_MODE (e)))
2357 {
2358 #ifdef AUTO_INC_DEC
2359 /* If we must store a copy of the mem, we can just modify
2360 the mode of the stored copy. */
2361 if (pbi->flags & PROP_AUTOINC)
2362 PUT_MODE (e, GET_MODE (mem));
2363 else
2364 #endif
2365 XEXP (i, 0) = mem;
2366 }
2367 return;
2368 }
2369 }
2370
2371 if (pbi->mem_set_list_len < MAX_MEM_SET_LIST_LEN)
2372 {
2373 #ifdef AUTO_INC_DEC
2374 /* Store a copy of mem, otherwise the address may be
2375 scrogged by find_auto_inc. */
2376 if (pbi->flags & PROP_AUTOINC)
2377 mem = shallow_copy_rtx (mem);
2378 #endif
2379 pbi->mem_set_list = alloc_EXPR_LIST (0, mem, pbi->mem_set_list);
2380 pbi->mem_set_list_len++;
2381 }
2382 }
2383
2384 /* INSN references memory, possibly using autoincrement addressing modes.
2385 Find any entries on the mem_set_list that need to be invalidated due
2386 to an address change. */
2387
2388 static void
2389 invalidate_mems_from_autoinc (pbi, insn)
2390 struct propagate_block_info *pbi;
2391 rtx insn;
2392 {
2393 rtx note = REG_NOTES (insn);
2394 for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
2395 if (REG_NOTE_KIND (note) == REG_INC)
2396 invalidate_mems_from_set (pbi, XEXP (note, 0));
2397 }
2398
2399 /* EXP is a REG. Remove any dependent entries from pbi->mem_set_list. */
2400
2401 static void
2402 invalidate_mems_from_set (pbi, exp)
2403 struct propagate_block_info *pbi;
2404 rtx exp;
2405 {
2406 rtx temp = pbi->mem_set_list;
2407 rtx prev = NULL_RTX;
2408 rtx next;
2409
2410 while (temp)
2411 {
2412 next = XEXP (temp, 1);
2413 if (reg_overlap_mentioned_p (exp, XEXP (temp, 0)))
2414 {
2415 /* Splice this entry out of the list. */
2416 if (prev)
2417 XEXP (prev, 1) = next;
2418 else
2419 pbi->mem_set_list = next;
2420 free_EXPR_LIST_node (temp);
2421 pbi->mem_set_list_len--;
2422 }
2423 else
2424 prev = temp;
2425 temp = next;
2426 }
2427 }
2428
2429 /* Process the registers that are set within X. Their bits are set to
2430 1 in the regset DEAD, because they are dead prior to this insn.
2431
2432 If INSN is nonzero, it is the insn being processed.
2433
2434 FLAGS is the set of operations to perform. */
2435
2436 static void
2437 mark_set_regs (pbi, x, insn)
2438 struct propagate_block_info *pbi;
2439 rtx x, insn;
2440 {
2441 rtx cond = NULL_RTX;
2442 rtx link;
2443 enum rtx_code code;
2444
2445 if (insn)
2446 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
2447 {
2448 if (REG_NOTE_KIND (link) == REG_INC)
2449 mark_set_1 (pbi, SET, XEXP (link, 0),
2450 (GET_CODE (x) == COND_EXEC
2451 ? COND_EXEC_TEST (x) : NULL_RTX),
2452 insn, pbi->flags);
2453 }
2454 retry:
2455 switch (code = GET_CODE (x))
2456 {
2457 case SET:
2458 case CLOBBER:
2459 mark_set_1 (pbi, code, SET_DEST (x), cond, insn, pbi->flags);
2460 return;
2461
2462 case COND_EXEC:
2463 cond = COND_EXEC_TEST (x);
2464 x = COND_EXEC_CODE (x);
2465 goto retry;
2466
2467 case PARALLEL:
2468 {
2469 int i;
2470
2471 for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
2472 {
2473 rtx sub = XVECEXP (x, 0, i);
2474 switch (code = GET_CODE (sub))
2475 {
2476 case COND_EXEC:
2477 if (cond != NULL_RTX)
2478 abort ();
2479
2480 cond = COND_EXEC_TEST (sub);
2481 sub = COND_EXEC_CODE (sub);
2482 if (GET_CODE (sub) != SET && GET_CODE (sub) != CLOBBER)
2483 break;
2484 /* Fall through. */
2485
2486 case SET:
2487 case CLOBBER:
2488 mark_set_1 (pbi, code, SET_DEST (sub), cond, insn, pbi->flags);
2489 break;
2490
2491 default:
2492 break;
2493 }
2494 }
2495 break;
2496 }
2497
2498 default:
2499 break;
2500 }
2501 }
2502
2503 /* Process a single set, which appears in INSN. REG (which may not
2504 actually be a REG, it may also be a SUBREG, PARALLEL, etc.) is
2505 being set using the CODE (which may be SET, CLOBBER, or COND_EXEC).
2506 If the set is conditional (because it appear in a COND_EXEC), COND
2507 will be the condition. */
2508
2509 static void
2510 mark_set_1 (pbi, code, reg, cond, insn, flags)
2511 struct propagate_block_info *pbi;
2512 enum rtx_code code;
2513 rtx reg, cond, insn;
2514 int flags;
2515 {
2516 int regno_first = -1, regno_last = -1;
2517 unsigned long not_dead = 0;
2518 int i;
2519
2520 /* Modifying just one hardware register of a multi-reg value or just a
2521 byte field of a register does not mean the value from before this insn
2522 is now dead. Of course, if it was dead after it's unused now. */
2523
2524 switch (GET_CODE (reg))
2525 {
2526 case PARALLEL:
2527 /* Some targets place small structures in registers for return values of
2528 functions. We have to detect this case specially here to get correct
2529 flow information. */
2530 for (i = XVECLEN (reg, 0) - 1; i >= 0; i--)
2531 if (XEXP (XVECEXP (reg, 0, i), 0) != 0)
2532 mark_set_1 (pbi, code, XEXP (XVECEXP (reg, 0, i), 0), cond, insn,
2533 flags);
2534 return;
2535
2536 case ZERO_EXTRACT:
2537 case SIGN_EXTRACT:
2538 case STRICT_LOW_PART:
2539 /* ??? Assumes STRICT_LOW_PART not used on multi-word registers. */
2540 do
2541 reg = XEXP (reg, 0);
2542 while (GET_CODE (reg) == SUBREG
2543 || GET_CODE (reg) == ZERO_EXTRACT
2544 || GET_CODE (reg) == SIGN_EXTRACT
2545 || GET_CODE (reg) == STRICT_LOW_PART);
2546 if (GET_CODE (reg) == MEM)
2547 break;
2548 not_dead = (unsigned long) REGNO_REG_SET_P (pbi->reg_live, REGNO (reg));
2549 /* Fall through. */
2550
2551 case REG:
2552 regno_last = regno_first = REGNO (reg);
2553 if (regno_first < FIRST_PSEUDO_REGISTER)
2554 regno_last += HARD_REGNO_NREGS (regno_first, GET_MODE (reg)) - 1;
2555 break;
2556
2557 case SUBREG:
2558 if (GET_CODE (SUBREG_REG (reg)) == REG)
2559 {
2560 enum machine_mode outer_mode = GET_MODE (reg);
2561 enum machine_mode inner_mode = GET_MODE (SUBREG_REG (reg));
2562
2563 /* Identify the range of registers affected. This is moderately
2564 tricky for hard registers. See alter_subreg. */
2565
2566 regno_last = regno_first = REGNO (SUBREG_REG (reg));
2567 if (regno_first < FIRST_PSEUDO_REGISTER)
2568 {
2569 regno_first += subreg_regno_offset (regno_first, inner_mode,
2570 SUBREG_BYTE (reg),
2571 outer_mode);
2572 regno_last = (regno_first
2573 + HARD_REGNO_NREGS (regno_first, outer_mode) - 1);
2574
2575 /* Since we've just adjusted the register number ranges, make
2576 sure REG matches. Otherwise some_was_live will be clear
2577 when it shouldn't have been, and we'll create incorrect
2578 REG_UNUSED notes. */
2579 reg = gen_rtx_REG (outer_mode, regno_first);
2580 }
2581 else
2582 {
2583 /* If the number of words in the subreg is less than the number
2584 of words in the full register, we have a well-defined partial
2585 set. Otherwise the high bits are undefined.
2586
2587 This is only really applicable to pseudos, since we just took
2588 care of multi-word hard registers. */
2589 if (((GET_MODE_SIZE (outer_mode)
2590 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
2591 < ((GET_MODE_SIZE (inner_mode)
2592 + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
2593 not_dead = (unsigned long) REGNO_REG_SET_P (pbi->reg_live,
2594 regno_first);
2595
2596 reg = SUBREG_REG (reg);
2597 }
2598 }
2599 else
2600 reg = SUBREG_REG (reg);
2601 break;
2602
2603 default:
2604 break;
2605 }
2606
2607 /* If this set is a MEM, then it kills any aliased writes.
2608 If this set is a REG, then it kills any MEMs which use the reg. */
2609 if (optimize && (flags & PROP_SCAN_DEAD_CODE))
2610 {
2611 if (GET_CODE (reg) == REG)
2612 invalidate_mems_from_set (pbi, reg);
2613
2614 /* If the memory reference had embedded side effects (autoincrement
2615 address modes. Then we may need to kill some entries on the
2616 memory set list. */
2617 if (insn && GET_CODE (reg) == MEM)
2618 invalidate_mems_from_autoinc (pbi, insn);
2619
2620 if (GET_CODE (reg) == MEM && ! side_effects_p (reg)
2621 /* ??? With more effort we could track conditional memory life. */
2622 && ! cond
2623 /* There are no REG_INC notes for SP, so we can't assume we'll see
2624 everything that invalidates it. To be safe, don't eliminate any
2625 stores though SP; none of them should be redundant anyway. */
2626 && ! reg_mentioned_p (stack_pointer_rtx, reg))
2627 add_to_mem_set_list (pbi, canon_rtx (reg));
2628 }
2629
2630 if (GET_CODE (reg) == REG
2631 && ! (regno_first == FRAME_POINTER_REGNUM
2632 && (! reload_completed || frame_pointer_needed))
2633 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
2634 && ! (regno_first == HARD_FRAME_POINTER_REGNUM
2635 && (! reload_completed || frame_pointer_needed))
2636 #endif
2637 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
2638 && ! (regno_first == ARG_POINTER_REGNUM && fixed_regs[regno_first])
2639 #endif
2640 )
2641 {
2642 int some_was_live = 0, some_was_dead = 0;
2643
2644 for (i = regno_first; i <= regno_last; ++i)
2645 {
2646 int needed_regno = REGNO_REG_SET_P (pbi->reg_live, i);
2647 if (pbi->local_set)
2648 {
2649 /* Order of the set operation matters here since both
2650 sets may be the same. */
2651 CLEAR_REGNO_REG_SET (pbi->cond_local_set, i);
2652 if (cond != NULL_RTX
2653 && ! REGNO_REG_SET_P (pbi->local_set, i))
2654 SET_REGNO_REG_SET (pbi->cond_local_set, i);
2655 else
2656 SET_REGNO_REG_SET (pbi->local_set, i);
2657 }
2658 if (code != CLOBBER)
2659 SET_REGNO_REG_SET (pbi->new_set, i);
2660
2661 some_was_live |= needed_regno;
2662 some_was_dead |= ! needed_regno;
2663 }
2664
2665 #ifdef HAVE_conditional_execution
2666 /* Consider conditional death in deciding that the register needs
2667 a death note. */
2668 if (some_was_live && ! not_dead
2669 /* The stack pointer is never dead. Well, not strictly true,
2670 but it's very difficult to tell from here. Hopefully
2671 combine_stack_adjustments will fix up the most egregious
2672 errors. */
2673 && regno_first != STACK_POINTER_REGNUM)
2674 {
2675 for (i = regno_first; i <= regno_last; ++i)
2676 if (! mark_regno_cond_dead (pbi, i, cond))
2677 not_dead |= ((unsigned long) 1) << (i - regno_first);
2678 }
2679 #endif
2680
2681 /* Additional data to record if this is the final pass. */
2682 if (flags & (PROP_LOG_LINKS | PROP_REG_INFO
2683 | PROP_DEATH_NOTES | PROP_AUTOINC))
2684 {
2685 rtx y;
2686 int blocknum = pbi->bb->index;
2687
2688 y = NULL_RTX;
2689 if (flags & (PROP_LOG_LINKS | PROP_AUTOINC))
2690 {
2691 y = pbi->reg_next_use[regno_first];
2692
2693 /* The next use is no longer next, since a store intervenes. */
2694 for (i = regno_first; i <= regno_last; ++i)
2695 pbi->reg_next_use[i] = 0;
2696 }
2697
2698 if (flags & PROP_REG_INFO)
2699 {
2700 for (i = regno_first; i <= regno_last; ++i)
2701 {
2702 /* Count (weighted) references, stores, etc. This counts a
2703 register twice if it is modified, but that is correct. */
2704 REG_N_SETS (i) += 1;
2705 REG_N_REFS (i) += 1;
2706 REG_FREQ (i) += REG_FREQ_FROM_BB (pbi->bb);
2707
2708 /* The insns where a reg is live are normally counted
2709 elsewhere, but we want the count to include the insn
2710 where the reg is set, and the normal counting mechanism
2711 would not count it. */
2712 REG_LIVE_LENGTH (i) += 1;
2713 }
2714
2715 /* If this is a hard reg, record this function uses the reg. */
2716 if (regno_first < FIRST_PSEUDO_REGISTER)
2717 {
2718 for (i = regno_first; i <= regno_last; i++)
2719 regs_ever_live[i] = 1;
2720 }
2721 else
2722 {
2723 /* Keep track of which basic blocks each reg appears in. */
2724 if (REG_BASIC_BLOCK (regno_first) == REG_BLOCK_UNKNOWN)
2725 REG_BASIC_BLOCK (regno_first) = blocknum;
2726 else if (REG_BASIC_BLOCK (regno_first) != blocknum)
2727 REG_BASIC_BLOCK (regno_first) = REG_BLOCK_GLOBAL;
2728 }
2729 }
2730
2731 if (! some_was_dead)
2732 {
2733 if (flags & PROP_LOG_LINKS)
2734 {
2735 /* Make a logical link from the next following insn
2736 that uses this register, back to this insn.
2737 The following insns have already been processed.
2738
2739 We don't build a LOG_LINK for hard registers containing
2740 in ASM_OPERANDs. If these registers get replaced,
2741 we might wind up changing the semantics of the insn,
2742 even if reload can make what appear to be valid
2743 assignments later. */
2744 if (y && (BLOCK_NUM (y) == blocknum)
2745 && (regno_first >= FIRST_PSEUDO_REGISTER
2746 || asm_noperands (PATTERN (y)) < 0))
2747 LOG_LINKS (y) = alloc_INSN_LIST (insn, LOG_LINKS (y));
2748 }
2749 }
2750 else if (not_dead)
2751 ;
2752 else if (! some_was_live)
2753 {
2754 if (flags & PROP_REG_INFO)
2755 REG_N_DEATHS (regno_first) += 1;
2756
2757 if (flags & PROP_DEATH_NOTES)
2758 {
2759 /* Note that dead stores have already been deleted
2760 when possible. If we get here, we have found a
2761 dead store that cannot be eliminated (because the
2762 same insn does something useful). Indicate this
2763 by marking the reg being set as dying here. */
2764 REG_NOTES (insn)
2765 = alloc_EXPR_LIST (REG_UNUSED, reg, REG_NOTES (insn));
2766 }
2767 }
2768 else
2769 {
2770 if (flags & PROP_DEATH_NOTES)
2771 {
2772 /* This is a case where we have a multi-word hard register
2773 and some, but not all, of the words of the register are
2774 needed in subsequent insns. Write REG_UNUSED notes
2775 for those parts that were not needed. This case should
2776 be rare. */
2777
2778 for (i = regno_first; i <= regno_last; ++i)
2779 if (! REGNO_REG_SET_P (pbi->reg_live, i))
2780 REG_NOTES (insn)
2781 = alloc_EXPR_LIST (REG_UNUSED,
2782 gen_rtx_REG (reg_raw_mode[i], i),
2783 REG_NOTES (insn));
2784 }
2785 }
2786 }
2787
2788 /* Mark the register as being dead. */
2789 if (some_was_live
2790 /* The stack pointer is never dead. Well, not strictly true,
2791 but it's very difficult to tell from here. Hopefully
2792 combine_stack_adjustments will fix up the most egregious
2793 errors. */
2794 && regno_first != STACK_POINTER_REGNUM)
2795 {
2796 for (i = regno_first; i <= regno_last; ++i)
2797 if (!(not_dead & (((unsigned long) 1) << (i - regno_first))))
2798 CLEAR_REGNO_REG_SET (pbi->reg_live, i);
2799 }
2800 }
2801 else if (GET_CODE (reg) == REG)
2802 {
2803 if (flags & (PROP_LOG_LINKS | PROP_AUTOINC))
2804 pbi->reg_next_use[regno_first] = 0;
2805 }
2806
2807 /* If this is the last pass and this is a SCRATCH, show it will be dying
2808 here and count it. */
2809 else if (GET_CODE (reg) == SCRATCH)
2810 {
2811 if (flags & PROP_DEATH_NOTES)
2812 REG_NOTES (insn)
2813 = alloc_EXPR_LIST (REG_UNUSED, reg, REG_NOTES (insn));
2814 }
2815 }
2816 \f
2817 #ifdef HAVE_conditional_execution
2818 /* Mark REGNO conditionally dead.
2819 Return true if the register is now unconditionally dead. */
2820
2821 static int
2822 mark_regno_cond_dead (pbi, regno, cond)
2823 struct propagate_block_info *pbi;
2824 int regno;
2825 rtx cond;
2826 {
2827 /* If this is a store to a predicate register, the value of the
2828 predicate is changing, we don't know that the predicate as seen
2829 before is the same as that seen after. Flush all dependent
2830 conditions from reg_cond_dead. This will make all such
2831 conditionally live registers unconditionally live. */
2832 if (REGNO_REG_SET_P (pbi->reg_cond_reg, regno))
2833 flush_reg_cond_reg (pbi, regno);
2834
2835 /* If this is an unconditional store, remove any conditional
2836 life that may have existed. */
2837 if (cond == NULL_RTX)
2838 splay_tree_remove (pbi->reg_cond_dead, regno);
2839 else
2840 {
2841 splay_tree_node node;
2842 struct reg_cond_life_info *rcli;
2843 rtx ncond;
2844
2845 /* Otherwise this is a conditional set. Record that fact.
2846 It may have been conditionally used, or there may be a
2847 subsequent set with a complimentary condition. */
2848
2849 node = splay_tree_lookup (pbi->reg_cond_dead, regno);
2850 if (node == NULL)
2851 {
2852 /* The register was unconditionally live previously.
2853 Record the current condition as the condition under
2854 which it is dead. */
2855 rcli = (struct reg_cond_life_info *) xmalloc (sizeof (*rcli));
2856 rcli->condition = cond;
2857 rcli->stores = cond;
2858 rcli->orig_condition = const0_rtx;
2859 splay_tree_insert (pbi->reg_cond_dead, regno,
2860 (splay_tree_value) rcli);
2861
2862 SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (XEXP (cond, 0)));
2863
2864 /* Not unconditionally dead. */
2865 return 0;
2866 }
2867 else
2868 {
2869 /* The register was conditionally live previously.
2870 Add the new condition to the old. */
2871 rcli = (struct reg_cond_life_info *) node->value;
2872 ncond = rcli->condition;
2873 ncond = ior_reg_cond (ncond, cond, 1);
2874 if (rcli->stores == const0_rtx)
2875 rcli->stores = cond;
2876 else if (rcli->stores != const1_rtx)
2877 rcli->stores = ior_reg_cond (rcli->stores, cond, 1);
2878
2879 /* If the register is now unconditionally dead, remove the entry
2880 in the splay_tree. A register is unconditionally dead if the
2881 dead condition ncond is true. A register is also unconditionally
2882 dead if the sum of all conditional stores is an unconditional
2883 store (stores is true), and the dead condition is identically the
2884 same as the original dead condition initialized at the end of
2885 the block. This is a pointer compare, not an rtx_equal_p
2886 compare. */
2887 if (ncond == const1_rtx
2888 || (ncond == rcli->orig_condition && rcli->stores == const1_rtx))
2889 splay_tree_remove (pbi->reg_cond_dead, regno);
2890 else
2891 {
2892 rcli->condition = ncond;
2893
2894 SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (XEXP (cond, 0)));
2895
2896 /* Not unconditionally dead. */
2897 return 0;
2898 }
2899 }
2900 }
2901
2902 return 1;
2903 }
2904
2905 /* Called from splay_tree_delete for pbi->reg_cond_life. */
2906
2907 static void
2908 free_reg_cond_life_info (value)
2909 splay_tree_value value;
2910 {
2911 struct reg_cond_life_info *rcli = (struct reg_cond_life_info *) value;
2912 free (rcli);
2913 }
2914
2915 /* Helper function for flush_reg_cond_reg. */
2916
2917 static int
2918 flush_reg_cond_reg_1 (node, data)
2919 splay_tree_node node;
2920 void *data;
2921 {
2922 struct reg_cond_life_info *rcli;
2923 int *xdata = (int *) data;
2924 unsigned int regno = xdata[0];
2925
2926 /* Don't need to search if last flushed value was farther on in
2927 the in-order traversal. */
2928 if (xdata[1] >= (int) node->key)
2929 return 0;
2930
2931 /* Splice out portions of the expression that refer to regno. */
2932 rcli = (struct reg_cond_life_info *) node->value;
2933 rcli->condition = elim_reg_cond (rcli->condition, regno);
2934 if (rcli->stores != const0_rtx && rcli->stores != const1_rtx)
2935 rcli->stores = elim_reg_cond (rcli->stores, regno);
2936
2937 /* If the entire condition is now false, signal the node to be removed. */
2938 if (rcli->condition == const0_rtx)
2939 {
2940 xdata[1] = node->key;
2941 return -1;
2942 }
2943 else if (rcli->condition == const1_rtx)
2944 abort ();
2945
2946 return 0;
2947 }
2948
2949 /* Flush all (sub) expressions referring to REGNO from REG_COND_LIVE. */
2950
2951 static void
2952 flush_reg_cond_reg (pbi, regno)
2953 struct propagate_block_info *pbi;
2954 int regno;
2955 {
2956 int pair[2];
2957
2958 pair[0] = regno;
2959 pair[1] = -1;
2960 while (splay_tree_foreach (pbi->reg_cond_dead,
2961 flush_reg_cond_reg_1, pair) == -1)
2962 splay_tree_remove (pbi->reg_cond_dead, pair[1]);
2963
2964 CLEAR_REGNO_REG_SET (pbi->reg_cond_reg, regno);
2965 }
2966
2967 /* Logical arithmetic on predicate conditions. IOR, NOT and AND.
2968 For ior/and, the ADD flag determines whether we want to add the new
2969 condition X to the old one unconditionally. If it is zero, we will
2970 only return a new expression if X allows us to simplify part of
2971 OLD, otherwise we return NULL to the caller.
2972 If ADD is nonzero, we will return a new condition in all cases. The
2973 toplevel caller of one of these functions should always pass 1 for
2974 ADD. */
2975
2976 static rtx
2977 ior_reg_cond (old, x, add)
2978 rtx old, x;
2979 int add;
2980 {
2981 rtx op0, op1;
2982
2983 if (GET_RTX_CLASS (GET_CODE (old)) == '<')
2984 {
2985 if (GET_RTX_CLASS (GET_CODE (x)) == '<'
2986 && REVERSE_CONDEXEC_PREDICATES_P (GET_CODE (x), GET_CODE (old))
2987 && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
2988 return const1_rtx;
2989 if (GET_CODE (x) == GET_CODE (old)
2990 && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
2991 return old;
2992 if (! add)
2993 return NULL;
2994 return gen_rtx_IOR (0, old, x);
2995 }
2996
2997 switch (GET_CODE (old))
2998 {
2999 case IOR:
3000 op0 = ior_reg_cond (XEXP (old, 0), x, 0);
3001 op1 = ior_reg_cond (XEXP (old, 1), x, 0);
3002 if (op0 != NULL || op1 != NULL)
3003 {
3004 if (op0 == const0_rtx)
3005 return op1 ? op1 : gen_rtx_IOR (0, XEXP (old, 1), x);
3006 if (op1 == const0_rtx)
3007 return op0 ? op0 : gen_rtx_IOR (0, XEXP (old, 0), x);
3008 if (op0 == const1_rtx || op1 == const1_rtx)
3009 return const1_rtx;
3010 if (op0 == NULL)
3011 op0 = gen_rtx_IOR (0, XEXP (old, 0), x);
3012 else if (rtx_equal_p (x, op0))
3013 /* (x | A) | x ~ (x | A). */
3014 return old;
3015 if (op1 == NULL)
3016 op1 = gen_rtx_IOR (0, XEXP (old, 1), x);
3017 else if (rtx_equal_p (x, op1))
3018 /* (A | x) | x ~ (A | x). */
3019 return old;
3020 return gen_rtx_IOR (0, op0, op1);
3021 }
3022 if (! add)
3023 return NULL;
3024 return gen_rtx_IOR (0, old, x);
3025
3026 case AND:
3027 op0 = ior_reg_cond (XEXP (old, 0), x, 0);
3028 op1 = ior_reg_cond (XEXP (old, 1), x, 0);
3029 if (op0 != NULL || op1 != NULL)
3030 {
3031 if (op0 == const1_rtx)
3032 return op1 ? op1 : gen_rtx_IOR (0, XEXP (old, 1), x);
3033 if (op1 == const1_rtx)
3034 return op0 ? op0 : gen_rtx_IOR (0, XEXP (old, 0), x);
3035 if (op0 == const0_rtx || op1 == const0_rtx)
3036 return const0_rtx;
3037 if (op0 == NULL)
3038 op0 = gen_rtx_IOR (0, XEXP (old, 0), x);
3039 else if (rtx_equal_p (x, op0))
3040 /* (x & A) | x ~ x. */
3041 return op0;
3042 if (op1 == NULL)
3043 op1 = gen_rtx_IOR (0, XEXP (old, 1), x);
3044 else if (rtx_equal_p (x, op1))
3045 /* (A & x) | x ~ x. */
3046 return op1;
3047 return gen_rtx_AND (0, op0, op1);
3048 }
3049 if (! add)
3050 return NULL;
3051 return gen_rtx_IOR (0, old, x);
3052
3053 case NOT:
3054 op0 = and_reg_cond (XEXP (old, 0), not_reg_cond (x), 0);
3055 if (op0 != NULL)
3056 return not_reg_cond (op0);
3057 if (! add)
3058 return NULL;
3059 return gen_rtx_IOR (0, old, x);
3060
3061 default:
3062 abort ();
3063 }
3064 }
3065
3066 static rtx
3067 not_reg_cond (x)
3068 rtx x;
3069 {
3070 enum rtx_code x_code;
3071
3072 if (x == const0_rtx)
3073 return const1_rtx;
3074 else if (x == const1_rtx)
3075 return const0_rtx;
3076 x_code = GET_CODE (x);
3077 if (x_code == NOT)
3078 return XEXP (x, 0);
3079 if (GET_RTX_CLASS (x_code) == '<'
3080 && GET_CODE (XEXP (x, 0)) == REG)
3081 {
3082 if (XEXP (x, 1) != const0_rtx)
3083 abort ();
3084
3085 return gen_rtx_fmt_ee (reverse_condition (x_code),
3086 VOIDmode, XEXP (x, 0), const0_rtx);
3087 }
3088 return gen_rtx_NOT (0, x);
3089 }
3090
3091 static rtx
3092 and_reg_cond (old, x, add)
3093 rtx old, x;
3094 int add;
3095 {
3096 rtx op0, op1;
3097
3098 if (GET_RTX_CLASS (GET_CODE (old)) == '<')
3099 {
3100 if (GET_RTX_CLASS (GET_CODE (x)) == '<'
3101 && GET_CODE (x) == reverse_condition (GET_CODE (old))
3102 && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
3103 return const0_rtx;
3104 if (GET_CODE (x) == GET_CODE (old)
3105 && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
3106 return old;
3107 if (! add)
3108 return NULL;
3109 return gen_rtx_AND (0, old, x);
3110 }
3111
3112 switch (GET_CODE (old))
3113 {
3114 case IOR:
3115 op0 = and_reg_cond (XEXP (old, 0), x, 0);
3116 op1 = and_reg_cond (XEXP (old, 1), x, 0);
3117 if (op0 != NULL || op1 != NULL)
3118 {
3119 if (op0 == const0_rtx)
3120 return op1 ? op1 : gen_rtx_AND (0, XEXP (old, 1), x);
3121 if (op1 == const0_rtx)
3122 return op0 ? op0 : gen_rtx_AND (0, XEXP (old, 0), x);
3123 if (op0 == const1_rtx || op1 == const1_rtx)
3124 return const1_rtx;
3125 if (op0 == NULL)
3126 op0 = gen_rtx_AND (0, XEXP (old, 0), x);
3127 else if (rtx_equal_p (x, op0))
3128 /* (x | A) & x ~ x. */
3129 return op0;
3130 if (op1 == NULL)
3131 op1 = gen_rtx_AND (0, XEXP (old, 1), x);
3132 else if (rtx_equal_p (x, op1))
3133 /* (A | x) & x ~ x. */
3134 return op1;
3135 return gen_rtx_IOR (0, op0, op1);
3136 }
3137 if (! add)
3138 return NULL;
3139 return gen_rtx_AND (0, old, x);
3140
3141 case AND:
3142 op0 = and_reg_cond (XEXP (old, 0), x, 0);
3143 op1 = and_reg_cond (XEXP (old, 1), x, 0);
3144 if (op0 != NULL || op1 != NULL)
3145 {
3146 if (op0 == const1_rtx)
3147 return op1 ? op1 : gen_rtx_AND (0, XEXP (old, 1), x);
3148 if (op1 == const1_rtx)
3149 return op0 ? op0 : gen_rtx_AND (0, XEXP (old, 0), x);
3150 if (op0 == const0_rtx || op1 == const0_rtx)
3151 return const0_rtx;
3152 if (op0 == NULL)
3153 op0 = gen_rtx_AND (0, XEXP (old, 0), x);
3154 else if (rtx_equal_p (x, op0))
3155 /* (x & A) & x ~ (x & A). */
3156 return old;
3157 if (op1 == NULL)
3158 op1 = gen_rtx_AND (0, XEXP (old, 1), x);
3159 else if (rtx_equal_p (x, op1))
3160 /* (A & x) & x ~ (A & x). */
3161 return old;
3162 return gen_rtx_AND (0, op0, op1);
3163 }
3164 if (! add)
3165 return NULL;
3166 return gen_rtx_AND (0, old, x);
3167
3168 case NOT:
3169 op0 = ior_reg_cond (XEXP (old, 0), not_reg_cond (x), 0);
3170 if (op0 != NULL)
3171 return not_reg_cond (op0);
3172 if (! add)
3173 return NULL;
3174 return gen_rtx_AND (0, old, x);
3175
3176 default:
3177 abort ();
3178 }
3179 }
3180
3181 /* Given a condition X, remove references to reg REGNO and return the
3182 new condition. The removal will be done so that all conditions
3183 involving REGNO are considered to evaluate to false. This function
3184 is used when the value of REGNO changes. */
3185
3186 static rtx
3187 elim_reg_cond (x, regno)
3188 rtx x;
3189 unsigned int regno;
3190 {
3191 rtx op0, op1;
3192
3193 if (GET_RTX_CLASS (GET_CODE (x)) == '<')
3194 {
3195 if (REGNO (XEXP (x, 0)) == regno)
3196 return const0_rtx;
3197 return x;
3198 }
3199
3200 switch (GET_CODE (x))
3201 {
3202 case AND:
3203 op0 = elim_reg_cond (XEXP (x, 0), regno);
3204 op1 = elim_reg_cond (XEXP (x, 1), regno);
3205 if (op0 == const0_rtx || op1 == const0_rtx)
3206 return const0_rtx;
3207 if (op0 == const1_rtx)
3208 return op1;
3209 if (op1 == const1_rtx)
3210 return op0;
3211 if (op0 == XEXP (x, 0) && op1 == XEXP (x, 1))
3212 return x;
3213 return gen_rtx_AND (0, op0, op1);
3214
3215 case IOR:
3216 op0 = elim_reg_cond (XEXP (x, 0), regno);
3217 op1 = elim_reg_cond (XEXP (x, 1), regno);
3218 if (op0 == const1_rtx || op1 == const1_rtx)
3219 return const1_rtx;
3220 if (op0 == const0_rtx)
3221 return op1;
3222 if (op1 == const0_rtx)
3223 return op0;
3224 if (op0 == XEXP (x, 0) && op1 == XEXP (x, 1))
3225 return x;
3226 return gen_rtx_IOR (0, op0, op1);
3227
3228 case NOT:
3229 op0 = elim_reg_cond (XEXP (x, 0), regno);
3230 if (op0 == const0_rtx)
3231 return const1_rtx;
3232 if (op0 == const1_rtx)
3233 return const0_rtx;
3234 if (op0 != XEXP (x, 0))
3235 return not_reg_cond (op0);
3236 return x;
3237
3238 default:
3239 abort ();
3240 }
3241 }
3242 #endif /* HAVE_conditional_execution */
3243 \f
3244 #ifdef AUTO_INC_DEC
3245
3246 /* Try to substitute the auto-inc expression INC as the address inside
3247 MEM which occurs in INSN. Currently, the address of MEM is an expression
3248 involving INCR_REG, and INCR is the next use of INCR_REG; it is an insn
3249 that has a single set whose source is a PLUS of INCR_REG and something
3250 else. */
3251
3252 static void
3253 attempt_auto_inc (pbi, inc, insn, mem, incr, incr_reg)
3254 struct propagate_block_info *pbi;
3255 rtx inc, insn, mem, incr, incr_reg;
3256 {
3257 int regno = REGNO (incr_reg);
3258 rtx set = single_set (incr);
3259 rtx q = SET_DEST (set);
3260 rtx y = SET_SRC (set);
3261 int opnum = XEXP (y, 0) == incr_reg ? 0 : 1;
3262
3263 /* Make sure this reg appears only once in this insn. */
3264 if (count_occurrences (PATTERN (insn), incr_reg, 1) != 1)
3265 return;
3266
3267 if (dead_or_set_p (incr, incr_reg)
3268 /* Mustn't autoinc an eliminable register. */
3269 && (regno >= FIRST_PSEUDO_REGISTER
3270 || ! TEST_HARD_REG_BIT (elim_reg_set, regno)))
3271 {
3272 /* This is the simple case. Try to make the auto-inc. If
3273 we can't, we are done. Otherwise, we will do any
3274 needed updates below. */
3275 if (! validate_change (insn, &XEXP (mem, 0), inc, 0))
3276 return;
3277 }
3278 else if (GET_CODE (q) == REG
3279 /* PREV_INSN used here to check the semi-open interval
3280 [insn,incr). */
3281 && ! reg_used_between_p (q, PREV_INSN (insn), incr)
3282 /* We must also check for sets of q as q may be
3283 a call clobbered hard register and there may
3284 be a call between PREV_INSN (insn) and incr. */
3285 && ! reg_set_between_p (q, PREV_INSN (insn), incr))
3286 {
3287 /* We have *p followed sometime later by q = p+size.
3288 Both p and q must be live afterward,
3289 and q is not used between INSN and its assignment.
3290 Change it to q = p, ...*q..., q = q+size.
3291 Then fall into the usual case. */
3292 rtx insns, temp;
3293
3294 start_sequence ();
3295 emit_move_insn (q, incr_reg);
3296 insns = get_insns ();
3297 end_sequence ();
3298
3299 /* If we can't make the auto-inc, or can't make the
3300 replacement into Y, exit. There's no point in making
3301 the change below if we can't do the auto-inc and doing
3302 so is not correct in the pre-inc case. */
3303
3304 XEXP (inc, 0) = q;
3305 validate_change (insn, &XEXP (mem, 0), inc, 1);
3306 validate_change (incr, &XEXP (y, opnum), q, 1);
3307 if (! apply_change_group ())
3308 return;
3309
3310 /* We now know we'll be doing this change, so emit the
3311 new insn(s) and do the updates. */
3312 emit_insns_before (insns, insn);
3313
3314 if (pbi->bb->head == insn)
3315 pbi->bb->head = insns;
3316
3317 /* INCR will become a NOTE and INSN won't contain a
3318 use of INCR_REG. If a use of INCR_REG was just placed in
3319 the insn before INSN, make that the next use.
3320 Otherwise, invalidate it. */
3321 if (GET_CODE (PREV_INSN (insn)) == INSN
3322 && GET_CODE (PATTERN (PREV_INSN (insn))) == SET
3323 && SET_SRC (PATTERN (PREV_INSN (insn))) == incr_reg)
3324 pbi->reg_next_use[regno] = PREV_INSN (insn);
3325 else
3326 pbi->reg_next_use[regno] = 0;
3327
3328 incr_reg = q;
3329 regno = REGNO (q);
3330
3331 /* REGNO is now used in INCR which is below INSN, but
3332 it previously wasn't live here. If we don't mark
3333 it as live, we'll put a REG_DEAD note for it
3334 on this insn, which is incorrect. */
3335 SET_REGNO_REG_SET (pbi->reg_live, regno);
3336
3337 /* If there are any calls between INSN and INCR, show
3338 that REGNO now crosses them. */
3339 for (temp = insn; temp != incr; temp = NEXT_INSN (temp))
3340 if (GET_CODE (temp) == CALL_INSN)
3341 REG_N_CALLS_CROSSED (regno)++;
3342
3343 /* Invalidate alias info for Q since we just changed its value. */
3344 clear_reg_alias_info (q);
3345 }
3346 else
3347 return;
3348
3349 /* If we haven't returned, it means we were able to make the
3350 auto-inc, so update the status. First, record that this insn
3351 has an implicit side effect. */
3352
3353 REG_NOTES (insn) = alloc_EXPR_LIST (REG_INC, incr_reg, REG_NOTES (insn));
3354
3355 /* Modify the old increment-insn to simply copy
3356 the already-incremented value of our register. */
3357 if (! validate_change (incr, &SET_SRC (set), incr_reg, 0))
3358 abort ();
3359
3360 /* If that makes it a no-op (copying the register into itself) delete
3361 it so it won't appear to be a "use" and a "set" of this
3362 register. */
3363 if (REGNO (SET_DEST (set)) == REGNO (incr_reg))
3364 {
3365 /* If the original source was dead, it's dead now. */
3366 rtx note;
3367
3368 while ((note = find_reg_note (incr, REG_DEAD, NULL_RTX)) != NULL_RTX)
3369 {
3370 remove_note (incr, note);
3371 if (XEXP (note, 0) != incr_reg)
3372 CLEAR_REGNO_REG_SET (pbi->reg_live, REGNO (XEXP (note, 0)));
3373 }
3374
3375 PUT_CODE (incr, NOTE);
3376 NOTE_LINE_NUMBER (incr) = NOTE_INSN_DELETED;
3377 NOTE_SOURCE_FILE (incr) = 0;
3378 }
3379
3380 if (regno >= FIRST_PSEUDO_REGISTER)
3381 {
3382 /* Count an extra reference to the reg. When a reg is
3383 incremented, spilling it is worse, so we want to make
3384 that less likely. */
3385 REG_FREQ (regno) += REG_FREQ_FROM_BB (pbi->bb);
3386
3387 /* Count the increment as a setting of the register,
3388 even though it isn't a SET in rtl. */
3389 REG_N_SETS (regno)++;
3390 }
3391 }
3392
3393 /* X is a MEM found in INSN. See if we can convert it into an auto-increment
3394 reference. */
3395
3396 static void
3397 find_auto_inc (pbi, x, insn)
3398 struct propagate_block_info *pbi;
3399 rtx x;
3400 rtx insn;
3401 {
3402 rtx addr = XEXP (x, 0);
3403 HOST_WIDE_INT offset = 0;
3404 rtx set, y, incr, inc_val;
3405 int regno;
3406 int size = GET_MODE_SIZE (GET_MODE (x));
3407
3408 if (GET_CODE (insn) == JUMP_INSN)
3409 return;
3410
3411 /* Here we detect use of an index register which might be good for
3412 postincrement, postdecrement, preincrement, or predecrement. */
3413
3414 if (GET_CODE (addr) == PLUS && GET_CODE (XEXP (addr, 1)) == CONST_INT)
3415 offset = INTVAL (XEXP (addr, 1)), addr = XEXP (addr, 0);
3416
3417 if (GET_CODE (addr) != REG)
3418 return;
3419
3420 regno = REGNO (addr);
3421
3422 /* Is the next use an increment that might make auto-increment? */
3423 incr = pbi->reg_next_use[regno];
3424 if (incr == 0 || BLOCK_NUM (incr) != BLOCK_NUM (insn))
3425 return;
3426 set = single_set (incr);
3427 if (set == 0 || GET_CODE (set) != SET)
3428 return;
3429 y = SET_SRC (set);
3430
3431 if (GET_CODE (y) != PLUS)
3432 return;
3433
3434 if (REG_P (XEXP (y, 0)) && REGNO (XEXP (y, 0)) == REGNO (addr))
3435 inc_val = XEXP (y, 1);
3436 else if (REG_P (XEXP (y, 1)) && REGNO (XEXP (y, 1)) == REGNO (addr))
3437 inc_val = XEXP (y, 0);
3438 else
3439 return;
3440
3441 if (GET_CODE (inc_val) == CONST_INT)
3442 {
3443 if (HAVE_POST_INCREMENT
3444 && (INTVAL (inc_val) == size && offset == 0))
3445 attempt_auto_inc (pbi, gen_rtx_POST_INC (Pmode, addr), insn, x,
3446 incr, addr);
3447 else if (HAVE_POST_DECREMENT
3448 && (INTVAL (inc_val) == -size && offset == 0))
3449 attempt_auto_inc (pbi, gen_rtx_POST_DEC (Pmode, addr), insn, x,
3450 incr, addr);
3451 else if (HAVE_PRE_INCREMENT
3452 && (INTVAL (inc_val) == size && offset == size))
3453 attempt_auto_inc (pbi, gen_rtx_PRE_INC (Pmode, addr), insn, x,
3454 incr, addr);
3455 else if (HAVE_PRE_DECREMENT
3456 && (INTVAL (inc_val) == -size && offset == -size))
3457 attempt_auto_inc (pbi, gen_rtx_PRE_DEC (Pmode, addr), insn, x,
3458 incr, addr);
3459 else if (HAVE_POST_MODIFY_DISP && offset == 0)
3460 attempt_auto_inc (pbi, gen_rtx_POST_MODIFY (Pmode, addr,
3461 gen_rtx_PLUS (Pmode,
3462 addr,
3463 inc_val)),
3464 insn, x, incr, addr);
3465 }
3466 else if (GET_CODE (inc_val) == REG
3467 && ! reg_set_between_p (inc_val, PREV_INSN (insn),
3468 NEXT_INSN (incr)))
3469
3470 {
3471 if (HAVE_POST_MODIFY_REG && offset == 0)
3472 attempt_auto_inc (pbi, gen_rtx_POST_MODIFY (Pmode, addr,
3473 gen_rtx_PLUS (Pmode,
3474 addr,
3475 inc_val)),
3476 insn, x, incr, addr);
3477 }
3478 }
3479
3480 #endif /* AUTO_INC_DEC */
3481 \f
3482 static void
3483 mark_used_reg (pbi, reg, cond, insn)
3484 struct propagate_block_info *pbi;
3485 rtx reg;
3486 rtx cond ATTRIBUTE_UNUSED;
3487 rtx insn;
3488 {
3489 unsigned int regno_first, regno_last, i;
3490 int some_was_live, some_was_dead, some_not_set;
3491
3492 regno_last = regno_first = REGNO (reg);
3493 if (regno_first < FIRST_PSEUDO_REGISTER)
3494 regno_last += HARD_REGNO_NREGS (regno_first, GET_MODE (reg)) - 1;
3495
3496 /* Find out if any of this register is live after this instruction. */
3497 some_was_live = some_was_dead = 0;
3498 for (i = regno_first; i <= regno_last; ++i)
3499 {
3500 int needed_regno = REGNO_REG_SET_P (pbi->reg_live, i);
3501 some_was_live |= needed_regno;
3502 some_was_dead |= ! needed_regno;
3503 }
3504
3505 /* Find out if any of the register was set this insn. */
3506 some_not_set = 0;
3507 for (i = regno_first; i <= regno_last; ++i)
3508 some_not_set |= ! REGNO_REG_SET_P (pbi->new_set, i);
3509
3510 if (pbi->flags & (PROP_LOG_LINKS | PROP_AUTOINC))
3511 {
3512 /* Record where each reg is used, so when the reg is set we know
3513 the next insn that uses it. */
3514 pbi->reg_next_use[regno_first] = insn;
3515 }
3516
3517 if (pbi->flags & PROP_REG_INFO)
3518 {
3519 if (regno_first < FIRST_PSEUDO_REGISTER)
3520 {
3521 /* If this is a register we are going to try to eliminate,
3522 don't mark it live here. If we are successful in
3523 eliminating it, it need not be live unless it is used for
3524 pseudos, in which case it will have been set live when it
3525 was allocated to the pseudos. If the register will not
3526 be eliminated, reload will set it live at that point.
3527
3528 Otherwise, record that this function uses this register. */
3529 /* ??? The PPC backend tries to "eliminate" on the pic
3530 register to itself. This should be fixed. In the mean
3531 time, hack around it. */
3532
3533 if (! (TEST_HARD_REG_BIT (elim_reg_set, regno_first)
3534 && (regno_first == FRAME_POINTER_REGNUM
3535 || regno_first == ARG_POINTER_REGNUM)))
3536 for (i = regno_first; i <= regno_last; ++i)
3537 regs_ever_live[i] = 1;
3538 }
3539 else
3540 {
3541 /* Keep track of which basic block each reg appears in. */
3542
3543 int blocknum = pbi->bb->index;
3544 if (REG_BASIC_BLOCK (regno_first) == REG_BLOCK_UNKNOWN)
3545 REG_BASIC_BLOCK (regno_first) = blocknum;
3546 else if (REG_BASIC_BLOCK (regno_first) != blocknum)
3547 REG_BASIC_BLOCK (regno_first) = REG_BLOCK_GLOBAL;
3548
3549 /* Count (weighted) number of uses of each reg. */
3550 REG_FREQ (regno_first) += REG_FREQ_FROM_BB (pbi->bb);
3551 REG_N_REFS (regno_first)++;
3552 }
3553 }
3554
3555 /* Record and count the insns in which a reg dies. If it is used in
3556 this insn and was dead below the insn then it dies in this insn.
3557 If it was set in this insn, we do not make a REG_DEAD note;
3558 likewise if we already made such a note. */
3559 if ((pbi->flags & (PROP_DEATH_NOTES | PROP_REG_INFO))
3560 && some_was_dead
3561 && some_not_set)
3562 {
3563 /* Check for the case where the register dying partially
3564 overlaps the register set by this insn. */
3565 if (regno_first != regno_last)
3566 for (i = regno_first; i <= regno_last; ++i)
3567 some_was_live |= REGNO_REG_SET_P (pbi->new_set, i);
3568
3569 /* If none of the words in X is needed, make a REG_DEAD note.
3570 Otherwise, we must make partial REG_DEAD notes. */
3571 if (! some_was_live)
3572 {
3573 if ((pbi->flags & PROP_DEATH_NOTES)
3574 && ! find_regno_note (insn, REG_DEAD, regno_first))
3575 REG_NOTES (insn)
3576 = alloc_EXPR_LIST (REG_DEAD, reg, REG_NOTES (insn));
3577
3578 if (pbi->flags & PROP_REG_INFO)
3579 REG_N_DEATHS (regno_first)++;
3580 }
3581 else
3582 {
3583 /* Don't make a REG_DEAD note for a part of a register
3584 that is set in the insn. */
3585 for (i = regno_first; i <= regno_last; ++i)
3586 if (! REGNO_REG_SET_P (pbi->reg_live, i)
3587 && ! dead_or_set_regno_p (insn, i))
3588 REG_NOTES (insn)
3589 = alloc_EXPR_LIST (REG_DEAD,
3590 gen_rtx_REG (reg_raw_mode[i], i),
3591 REG_NOTES (insn));
3592 }
3593 }
3594
3595 /* Mark the register as being live. */
3596 for (i = regno_first; i <= regno_last; ++i)
3597 {
3598 SET_REGNO_REG_SET (pbi->reg_live, i);
3599
3600 #ifdef HAVE_conditional_execution
3601 /* If this is a conditional use, record that fact. If it is later
3602 conditionally set, we'll know to kill the register. */
3603 if (cond != NULL_RTX)
3604 {
3605 splay_tree_node node;
3606 struct reg_cond_life_info *rcli;
3607 rtx ncond;
3608
3609 if (some_was_live)
3610 {
3611 node = splay_tree_lookup (pbi->reg_cond_dead, i);
3612 if (node == NULL)
3613 {
3614 /* The register was unconditionally live previously.
3615 No need to do anything. */
3616 }
3617 else
3618 {
3619 /* The register was conditionally live previously.
3620 Subtract the new life cond from the old death cond. */
3621 rcli = (struct reg_cond_life_info *) node->value;
3622 ncond = rcli->condition;
3623 ncond = and_reg_cond (ncond, not_reg_cond (cond), 1);
3624
3625 /* If the register is now unconditionally live,
3626 remove the entry in the splay_tree. */
3627 if (ncond == const0_rtx)
3628 splay_tree_remove (pbi->reg_cond_dead, i);
3629 else
3630 {
3631 rcli->condition = ncond;
3632 SET_REGNO_REG_SET (pbi->reg_cond_reg,
3633 REGNO (XEXP (cond, 0)));
3634 }
3635 }
3636 }
3637 else
3638 {
3639 /* The register was not previously live at all. Record
3640 the condition under which it is still dead. */
3641 rcli = (struct reg_cond_life_info *) xmalloc (sizeof (*rcli));
3642 rcli->condition = not_reg_cond (cond);
3643 rcli->stores = const0_rtx;
3644 rcli->orig_condition = const0_rtx;
3645 splay_tree_insert (pbi->reg_cond_dead, i,
3646 (splay_tree_value) rcli);
3647
3648 SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (XEXP (cond, 0)));
3649 }
3650 }
3651 else if (some_was_live)
3652 {
3653 /* The register may have been conditionally live previously, but
3654 is now unconditionally live. Remove it from the conditionally
3655 dead list, so that a conditional set won't cause us to think
3656 it dead. */
3657 splay_tree_remove (pbi->reg_cond_dead, i);
3658 }
3659 #endif
3660 }
3661 }
3662
3663 /* Scan expression X and store a 1-bit in NEW_LIVE for each reg it uses.
3664 This is done assuming the registers needed from X are those that
3665 have 1-bits in PBI->REG_LIVE.
3666
3667 INSN is the containing instruction. If INSN is dead, this function
3668 is not called. */
3669
3670 static void
3671 mark_used_regs (pbi, x, cond, insn)
3672 struct propagate_block_info *pbi;
3673 rtx x, cond, insn;
3674 {
3675 RTX_CODE code;
3676 int regno;
3677 int flags = pbi->flags;
3678
3679 retry:
3680 if (!x)
3681 return;
3682 code = GET_CODE (x);
3683 switch (code)
3684 {
3685 case LABEL_REF:
3686 case SYMBOL_REF:
3687 case CONST_INT:
3688 case CONST:
3689 case CONST_DOUBLE:
3690 case CONST_VECTOR:
3691 case PC:
3692 case ADDR_VEC:
3693 case ADDR_DIFF_VEC:
3694 return;
3695
3696 #ifdef HAVE_cc0
3697 case CC0:
3698 pbi->cc0_live = 1;
3699 return;
3700 #endif
3701
3702 case CLOBBER:
3703 /* If we are clobbering a MEM, mark any registers inside the address
3704 as being used. */
3705 if (GET_CODE (XEXP (x, 0)) == MEM)
3706 mark_used_regs (pbi, XEXP (XEXP (x, 0), 0), cond, insn);
3707 return;
3708
3709 case MEM:
3710 /* Don't bother watching stores to mems if this is not the
3711 final pass. We'll not be deleting dead stores this round. */
3712 if (optimize && (flags & PROP_SCAN_DEAD_CODE))
3713 {
3714 /* Invalidate the data for the last MEM stored, but only if MEM is
3715 something that can be stored into. */
3716 if (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
3717 && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)))
3718 /* Needn't clear the memory set list. */
3719 ;
3720 else
3721 {
3722 rtx temp = pbi->mem_set_list;
3723 rtx prev = NULL_RTX;
3724 rtx next;
3725
3726 while (temp)
3727 {
3728 next = XEXP (temp, 1);
3729 if (anti_dependence (XEXP (temp, 0), x))
3730 {
3731 /* Splice temp out of the list. */
3732 if (prev)
3733 XEXP (prev, 1) = next;
3734 else
3735 pbi->mem_set_list = next;
3736 free_EXPR_LIST_node (temp);
3737 pbi->mem_set_list_len--;
3738 }
3739 else
3740 prev = temp;
3741 temp = next;
3742 }
3743 }
3744
3745 /* If the memory reference had embedded side effects (autoincrement
3746 address modes. Then we may need to kill some entries on the
3747 memory set list. */
3748 if (insn)
3749 invalidate_mems_from_autoinc (pbi, insn);
3750 }
3751
3752 #ifdef AUTO_INC_DEC
3753 if (flags & PROP_AUTOINC)
3754 find_auto_inc (pbi, x, insn);
3755 #endif
3756 break;
3757
3758 case SUBREG:
3759 #ifdef CLASS_CANNOT_CHANGE_MODE
3760 if (GET_CODE (SUBREG_REG (x)) == REG
3761 && REGNO (SUBREG_REG (x)) >= FIRST_PSEUDO_REGISTER
3762 && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (x),
3763 GET_MODE (SUBREG_REG (x))))
3764 REG_CHANGES_MODE (REGNO (SUBREG_REG (x))) = 1;
3765 #endif
3766
3767 /* While we're here, optimize this case. */
3768 x = SUBREG_REG (x);
3769 if (GET_CODE (x) != REG)
3770 goto retry;
3771 /* Fall through. */
3772
3773 case REG:
3774 /* See a register other than being set => mark it as needed. */
3775 mark_used_reg (pbi, x, cond, insn);
3776 return;
3777
3778 case SET:
3779 {
3780 rtx testreg = SET_DEST (x);
3781 int mark_dest = 0;
3782
3783 /* If storing into MEM, don't show it as being used. But do
3784 show the address as being used. */
3785 if (GET_CODE (testreg) == MEM)
3786 {
3787 #ifdef AUTO_INC_DEC
3788 if (flags & PROP_AUTOINC)
3789 find_auto_inc (pbi, testreg, insn);
3790 #endif
3791 mark_used_regs (pbi, XEXP (testreg, 0), cond, insn);
3792 mark_used_regs (pbi, SET_SRC (x), cond, insn);
3793 return;
3794 }
3795
3796 /* Storing in STRICT_LOW_PART is like storing in a reg
3797 in that this SET might be dead, so ignore it in TESTREG.
3798 but in some other ways it is like using the reg.
3799
3800 Storing in a SUBREG or a bit field is like storing the entire
3801 register in that if the register's value is not used
3802 then this SET is not needed. */
3803 while (GET_CODE (testreg) == STRICT_LOW_PART
3804 || GET_CODE (testreg) == ZERO_EXTRACT
3805 || GET_CODE (testreg) == SIGN_EXTRACT
3806 || GET_CODE (testreg) == SUBREG)
3807 {
3808 #ifdef CLASS_CANNOT_CHANGE_MODE
3809 if (GET_CODE (testreg) == SUBREG
3810 && GET_CODE (SUBREG_REG (testreg)) == REG
3811 && REGNO (SUBREG_REG (testreg)) >= FIRST_PSEUDO_REGISTER
3812 && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (SUBREG_REG (testreg)),
3813 GET_MODE (testreg)))
3814 REG_CHANGES_MODE (REGNO (SUBREG_REG (testreg))) = 1;
3815 #endif
3816
3817 /* Modifying a single register in an alternate mode
3818 does not use any of the old value. But these other
3819 ways of storing in a register do use the old value. */
3820 if (GET_CODE (testreg) == SUBREG
3821 && !((REG_BYTES (SUBREG_REG (testreg))
3822 + UNITS_PER_WORD - 1) / UNITS_PER_WORD
3823 > (REG_BYTES (testreg)
3824 + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
3825 ;
3826 else
3827 mark_dest = 1;
3828
3829 testreg = XEXP (testreg, 0);
3830 }
3831
3832 /* If this is a store into a register or group of registers,
3833 recursively scan the value being stored. */
3834
3835 if ((GET_CODE (testreg) == PARALLEL
3836 && GET_MODE (testreg) == BLKmode)
3837 || (GET_CODE (testreg) == REG
3838 && (regno = REGNO (testreg),
3839 ! (regno == FRAME_POINTER_REGNUM
3840 && (! reload_completed || frame_pointer_needed)))
3841 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3842 && ! (regno == HARD_FRAME_POINTER_REGNUM
3843 && (! reload_completed || frame_pointer_needed))
3844 #endif
3845 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3846 && ! (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
3847 #endif
3848 ))
3849 {
3850 if (mark_dest)
3851 mark_used_regs (pbi, SET_DEST (x), cond, insn);
3852 mark_used_regs (pbi, SET_SRC (x), cond, insn);
3853 return;
3854 }
3855 }
3856 break;
3857
3858 case ASM_OPERANDS:
3859 case UNSPEC_VOLATILE:
3860 case TRAP_IF:
3861 case ASM_INPUT:
3862 {
3863 /* Traditional and volatile asm instructions must be considered to use
3864 and clobber all hard registers, all pseudo-registers and all of
3865 memory. So must TRAP_IF and UNSPEC_VOLATILE operations.
3866
3867 Consider for instance a volatile asm that changes the fpu rounding
3868 mode. An insn should not be moved across this even if it only uses
3869 pseudo-regs because it might give an incorrectly rounded result.
3870
3871 ?!? Unfortunately, marking all hard registers as live causes massive
3872 problems for the register allocator and marking all pseudos as live
3873 creates mountains of uninitialized variable warnings.
3874
3875 So for now, just clear the memory set list and mark any regs
3876 we can find in ASM_OPERANDS as used. */
3877 if (code != ASM_OPERANDS || MEM_VOLATILE_P (x))
3878 {
3879 free_EXPR_LIST_list (&pbi->mem_set_list);
3880 pbi->mem_set_list_len = 0;
3881 }
3882
3883 /* For all ASM_OPERANDS, we must traverse the vector of input operands.
3884 We can not just fall through here since then we would be confused
3885 by the ASM_INPUT rtx inside ASM_OPERANDS, which do not indicate
3886 traditional asms unlike their normal usage. */
3887 if (code == ASM_OPERANDS)
3888 {
3889 int j;
3890
3891 for (j = 0; j < ASM_OPERANDS_INPUT_LENGTH (x); j++)
3892 mark_used_regs (pbi, ASM_OPERANDS_INPUT (x, j), cond, insn);
3893 }
3894 break;
3895 }
3896
3897 case COND_EXEC:
3898 if (cond != NULL_RTX)
3899 abort ();
3900
3901 mark_used_regs (pbi, COND_EXEC_TEST (x), NULL_RTX, insn);
3902
3903 cond = COND_EXEC_TEST (x);
3904 x = COND_EXEC_CODE (x);
3905 goto retry;
3906
3907 case PHI:
3908 /* We _do_not_ want to scan operands of phi nodes. Operands of
3909 a phi function are evaluated only when control reaches this
3910 block along a particular edge. Therefore, regs that appear
3911 as arguments to phi should not be added to the global live at
3912 start. */
3913 return;
3914
3915 default:
3916 break;
3917 }
3918
3919 /* Recursively scan the operands of this expression. */
3920
3921 {
3922 const char * const fmt = GET_RTX_FORMAT (code);
3923 int i;
3924
3925 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3926 {
3927 if (fmt[i] == 'e')
3928 {
3929 /* Tail recursive case: save a function call level. */
3930 if (i == 0)
3931 {
3932 x = XEXP (x, 0);
3933 goto retry;
3934 }
3935 mark_used_regs (pbi, XEXP (x, i), cond, insn);
3936 }
3937 else if (fmt[i] == 'E')
3938 {
3939 int j;
3940 for (j = 0; j < XVECLEN (x, i); j++)
3941 mark_used_regs (pbi, XVECEXP (x, i, j), cond, insn);
3942 }
3943 }
3944 }
3945 }
3946 \f
3947 #ifdef AUTO_INC_DEC
3948
3949 static int
3950 try_pre_increment_1 (pbi, insn)
3951 struct propagate_block_info *pbi;
3952 rtx insn;
3953 {
3954 /* Find the next use of this reg. If in same basic block,
3955 make it do pre-increment or pre-decrement if appropriate. */
3956 rtx x = single_set (insn);
3957 HOST_WIDE_INT amount = ((GET_CODE (SET_SRC (x)) == PLUS ? 1 : -1)
3958 * INTVAL (XEXP (SET_SRC (x), 1)));
3959 int regno = REGNO (SET_DEST (x));
3960 rtx y = pbi->reg_next_use[regno];
3961 if (y != 0
3962 && SET_DEST (x) != stack_pointer_rtx
3963 && BLOCK_NUM (y) == BLOCK_NUM (insn)
3964 /* Don't do this if the reg dies, or gets set in y; a standard addressing
3965 mode would be better. */
3966 && ! dead_or_set_p (y, SET_DEST (x))
3967 && try_pre_increment (y, SET_DEST (x), amount))
3968 {
3969 /* We have found a suitable auto-increment and already changed
3970 insn Y to do it. So flush this increment instruction. */
3971 propagate_block_delete_insn (insn);
3972
3973 /* Count a reference to this reg for the increment insn we are
3974 deleting. When a reg is incremented, spilling it is worse,
3975 so we want to make that less likely. */
3976 if (regno >= FIRST_PSEUDO_REGISTER)
3977 {
3978 REG_FREQ (regno) += REG_FREQ_FROM_BB (pbi->bb);
3979 REG_N_SETS (regno)++;
3980 }
3981
3982 /* Flush any remembered memories depending on the value of
3983 the incremented register. */
3984 invalidate_mems_from_set (pbi, SET_DEST (x));
3985
3986 return 1;
3987 }
3988 return 0;
3989 }
3990
3991 /* Try to change INSN so that it does pre-increment or pre-decrement
3992 addressing on register REG in order to add AMOUNT to REG.
3993 AMOUNT is negative for pre-decrement.
3994 Returns 1 if the change could be made.
3995 This checks all about the validity of the result of modifying INSN. */
3996
3997 static int
3998 try_pre_increment (insn, reg, amount)
3999 rtx insn, reg;
4000 HOST_WIDE_INT amount;
4001 {
4002 rtx use;
4003
4004 /* Nonzero if we can try to make a pre-increment or pre-decrement.
4005 For example, addl $4,r1; movl (r1),... can become movl +(r1),... */
4006 int pre_ok = 0;
4007 /* Nonzero if we can try to make a post-increment or post-decrement.
4008 For example, addl $4,r1; movl -4(r1),... can become movl (r1)+,...
4009 It is possible for both PRE_OK and POST_OK to be nonzero if the machine
4010 supports both pre-inc and post-inc, or both pre-dec and post-dec. */
4011 int post_ok = 0;
4012
4013 /* Nonzero if the opportunity actually requires post-inc or post-dec. */
4014 int do_post = 0;
4015
4016 /* From the sign of increment, see which possibilities are conceivable
4017 on this target machine. */
4018 if (HAVE_PRE_INCREMENT && amount > 0)
4019 pre_ok = 1;
4020 if (HAVE_POST_INCREMENT && amount > 0)
4021 post_ok = 1;
4022
4023 if (HAVE_PRE_DECREMENT && amount < 0)
4024 pre_ok = 1;
4025 if (HAVE_POST_DECREMENT && amount < 0)
4026 post_ok = 1;
4027
4028 if (! (pre_ok || post_ok))
4029 return 0;
4030
4031 /* It is not safe to add a side effect to a jump insn
4032 because if the incremented register is spilled and must be reloaded
4033 there would be no way to store the incremented value back in memory. */
4034
4035 if (GET_CODE (insn) == JUMP_INSN)
4036 return 0;
4037
4038 use = 0;
4039 if (pre_ok)
4040 use = find_use_as_address (PATTERN (insn), reg, 0);
4041 if (post_ok && (use == 0 || use == (rtx) (size_t) 1))
4042 {
4043 use = find_use_as_address (PATTERN (insn), reg, -amount);
4044 do_post = 1;
4045 }
4046
4047 if (use == 0 || use == (rtx) (size_t) 1)
4048 return 0;
4049
4050 if (GET_MODE_SIZE (GET_MODE (use)) != (amount > 0 ? amount : - amount))
4051 return 0;
4052
4053 /* See if this combination of instruction and addressing mode exists. */
4054 if (! validate_change (insn, &XEXP (use, 0),
4055 gen_rtx_fmt_e (amount > 0
4056 ? (do_post ? POST_INC : PRE_INC)
4057 : (do_post ? POST_DEC : PRE_DEC),
4058 Pmode, reg), 0))
4059 return 0;
4060
4061 /* Record that this insn now has an implicit side effect on X. */
4062 REG_NOTES (insn) = alloc_EXPR_LIST (REG_INC, reg, REG_NOTES (insn));
4063 return 1;
4064 }
4065
4066 #endif /* AUTO_INC_DEC */
4067 \f
4068 /* Find the place in the rtx X where REG is used as a memory address.
4069 Return the MEM rtx that so uses it.
4070 If PLUSCONST is nonzero, search instead for a memory address equivalent to
4071 (plus REG (const_int PLUSCONST)).
4072
4073 If such an address does not appear, return 0.
4074 If REG appears more than once, or is used other than in such an address,
4075 return (rtx) 1. */
4076
4077 rtx
4078 find_use_as_address (x, reg, plusconst)
4079 rtx x;
4080 rtx reg;
4081 HOST_WIDE_INT plusconst;
4082 {
4083 enum rtx_code code = GET_CODE (x);
4084 const char * const fmt = GET_RTX_FORMAT (code);
4085 int i;
4086 rtx value = 0;
4087 rtx tem;
4088
4089 if (code == MEM && XEXP (x, 0) == reg && plusconst == 0)
4090 return x;
4091
4092 if (code == MEM && GET_CODE (XEXP (x, 0)) == PLUS
4093 && XEXP (XEXP (x, 0), 0) == reg
4094 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
4095 && INTVAL (XEXP (XEXP (x, 0), 1)) == plusconst)
4096 return x;
4097
4098 if (code == SIGN_EXTRACT || code == ZERO_EXTRACT)
4099 {
4100 /* If REG occurs inside a MEM used in a bit-field reference,
4101 that is unacceptable. */
4102 if (find_use_as_address (XEXP (x, 0), reg, 0) != 0)
4103 return (rtx) (size_t) 1;
4104 }
4105
4106 if (x == reg)
4107 return (rtx) (size_t) 1;
4108
4109 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4110 {
4111 if (fmt[i] == 'e')
4112 {
4113 tem = find_use_as_address (XEXP (x, i), reg, plusconst);
4114 if (value == 0)
4115 value = tem;
4116 else if (tem != 0)
4117 return (rtx) (size_t) 1;
4118 }
4119 else if (fmt[i] == 'E')
4120 {
4121 int j;
4122 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
4123 {
4124 tem = find_use_as_address (XVECEXP (x, i, j), reg, plusconst);
4125 if (value == 0)
4126 value = tem;
4127 else if (tem != 0)
4128 return (rtx) (size_t) 1;
4129 }
4130 }
4131 }
4132
4133 return value;
4134 }
4135 \f
4136 /* Write information about registers and basic blocks into FILE.
4137 This is part of making a debugging dump. */
4138
4139 void
4140 dump_regset (r, outf)
4141 regset r;
4142 FILE *outf;
4143 {
4144 int i;
4145 if (r == NULL)
4146 {
4147 fputs (" (nil)", outf);
4148 return;
4149 }
4150
4151 EXECUTE_IF_SET_IN_REG_SET (r, 0, i,
4152 {
4153 fprintf (outf, " %d", i);
4154 if (i < FIRST_PSEUDO_REGISTER)
4155 fprintf (outf, " [%s]",
4156 reg_names[i]);
4157 });
4158 }
4159
4160 /* Print a human-reaable representation of R on the standard error
4161 stream. This function is designed to be used from within the
4162 debugger. */
4163
4164 void
4165 debug_regset (r)
4166 regset r;
4167 {
4168 dump_regset (r, stderr);
4169 putc ('\n', stderr);
4170 }
4171
4172 /* Recompute register set/reference counts immediately prior to register
4173 allocation.
4174
4175 This avoids problems with set/reference counts changing to/from values
4176 which have special meanings to the register allocators.
4177
4178 Additionally, the reference counts are the primary component used by the
4179 register allocators to prioritize pseudos for allocation to hard regs.
4180 More accurate reference counts generally lead to better register allocation.
4181
4182 F is the first insn to be scanned.
4183
4184 LOOP_STEP denotes how much loop_depth should be incremented per
4185 loop nesting level in order to increase the ref count more for
4186 references in a loop.
4187
4188 It might be worthwhile to update REG_LIVE_LENGTH, REG_BASIC_BLOCK and
4189 possibly other information which is used by the register allocators. */
4190
4191 void
4192 recompute_reg_usage (f, loop_step)
4193 rtx f ATTRIBUTE_UNUSED;
4194 int loop_step ATTRIBUTE_UNUSED;
4195 {
4196 allocate_reg_life_data ();
4197 update_life_info (NULL, UPDATE_LIFE_LOCAL, PROP_REG_INFO);
4198 }
4199
4200 /* Optionally removes all the REG_DEAD and REG_UNUSED notes from a set of
4201 blocks. If BLOCKS is NULL, assume the universal set. Returns a count
4202 of the number of registers that died. */
4203
4204 int
4205 count_or_remove_death_notes (blocks, kill)
4206 sbitmap blocks;
4207 int kill;
4208 {
4209 int i, count = 0;
4210
4211 for (i = n_basic_blocks - 1; i >= 0; --i)
4212 {
4213 basic_block bb;
4214 rtx insn;
4215
4216 if (blocks && ! TEST_BIT (blocks, i))
4217 continue;
4218
4219 bb = BASIC_BLOCK (i);
4220
4221 for (insn = bb->head;; insn = NEXT_INSN (insn))
4222 {
4223 if (INSN_P (insn))
4224 {
4225 rtx *pprev = &REG_NOTES (insn);
4226 rtx link = *pprev;
4227
4228 while (link)
4229 {
4230 switch (REG_NOTE_KIND (link))
4231 {
4232 case REG_DEAD:
4233 if (GET_CODE (XEXP (link, 0)) == REG)
4234 {
4235 rtx reg = XEXP (link, 0);
4236 int n;
4237
4238 if (REGNO (reg) >= FIRST_PSEUDO_REGISTER)
4239 n = 1;
4240 else
4241 n = HARD_REGNO_NREGS (REGNO (reg), GET_MODE (reg));
4242 count += n;
4243 }
4244 /* Fall through. */
4245
4246 case REG_UNUSED:
4247 if (kill)
4248 {
4249 rtx next = XEXP (link, 1);
4250 free_EXPR_LIST_node (link);
4251 *pprev = link = next;
4252 break;
4253 }
4254 /* Fall through. */
4255
4256 default:
4257 pprev = &XEXP (link, 1);
4258 link = *pprev;
4259 break;
4260 }
4261 }
4262 }
4263
4264 if (insn == bb->end)
4265 break;
4266 }
4267 }
4268
4269 return count;
4270 }
4271 /* Clear LOG_LINKS fields of insns in a selected blocks or whole chain
4272 if blocks is NULL. */
4273
4274 static void
4275 clear_log_links (blocks)
4276 sbitmap blocks;
4277 {
4278 rtx insn;
4279 int i;
4280
4281 if (!blocks)
4282 {
4283 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
4284 if (INSN_P (insn))
4285 free_INSN_LIST_list (&LOG_LINKS (insn));
4286 }
4287 else
4288 EXECUTE_IF_SET_IN_SBITMAP (blocks, 0, i,
4289 {
4290 basic_block bb = BASIC_BLOCK (i);
4291
4292 for (insn = bb->head; insn != NEXT_INSN (bb->end);
4293 insn = NEXT_INSN (insn))
4294 if (INSN_P (insn))
4295 free_INSN_LIST_list (&LOG_LINKS (insn));
4296 });
4297 }
4298
4299 /* Given a register bitmap, turn on the bits in a HARD_REG_SET that
4300 correspond to the hard registers, if any, set in that map. This
4301 could be done far more efficiently by having all sorts of special-cases
4302 with moving single words, but probably isn't worth the trouble. */
4303
4304 void
4305 reg_set_to_hard_reg_set (to, from)
4306 HARD_REG_SET *to;
4307 bitmap from;
4308 {
4309 int i;
4310
4311 EXECUTE_IF_SET_IN_BITMAP
4312 (from, 0, i,
4313 {
4314 if (i >= FIRST_PSEUDO_REGISTER)
4315 return;
4316 SET_HARD_REG_BIT (*to, i);
4317 });
4318 }