1 /* Move constant computations out of loops.
2 Copyright (C) 1987, 88, 89, 91-4, 1995 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
22 /* This is the loop optimization pass of the compiler.
23 It finds invariant computations within loops and moves them
24 to the beginning of the loop. Then it identifies basic and
25 general induction variables. Strength reduction is applied to the general
26 induction variables, and induction variable elimination is applied to
27 the basic induction variables.
29 It also finds cases where
30 a register is set within the loop by zero-extending a narrower value
31 and changes these to zero the entire register once before the loop
32 and merely copy the low part within the loop.
34 Most of the complexity is in heuristics to decide when it is worth
35 while to do these things. */
42 #include "insn-config.h"
43 #include "insn-flags.h"
45 #include "hard-reg-set.h"
51 /* Vector mapping INSN_UIDs to luids.
52 The luids are like uids but increase monotonically always.
53 We use them to see whether a jump comes from outside a given loop. */
57 /* Indexed by INSN_UID, contains the ordinal giving the (innermost) loop
58 number the insn is contained in. */
62 /* 1 + largest uid of any insn. */
66 /* 1 + luid of last insn. */
70 /* Number of loops detected in current function. Used as index to the
73 static int max_loop_num
;
75 /* Indexed by loop number, contains the first and last insn of each loop. */
77 static rtx
*loop_number_loop_starts
, *loop_number_loop_ends
;
79 /* For each loop, gives the containing loop number, -1 if none. */
83 /* Indexed by loop number, contains a nonzero value if the "loop" isn't
84 really a loop (an insn outside the loop branches into it). */
86 static char *loop_invalid
;
88 /* Indexed by loop number, links together all LABEL_REFs which refer to
89 code labels outside the loop. Used by routines that need to know all
90 loop exits, such as final_biv_value and final_giv_value.
92 This does not include loop exits due to return instructions. This is
93 because all bivs and givs are pseudos, and hence must be dead after a
94 return, so the presense of a return does not affect any of the
95 optimizations that use this info. It is simpler to just not include return
96 instructions on this list. */
98 rtx
*loop_number_exit_labels
;
100 /* Holds the number of loop iterations. It is zero if the number could not be
101 calculated. Must be unsigned since the number of iterations can
102 be as high as 2^wordsize-1. For loops with a wider iterator, this number
103 will will be zero if the number of loop iterations is too large for an
104 unsigned integer to hold. */
106 unsigned HOST_WIDE_INT loop_n_iterations
;
108 /* Nonzero if there is a subroutine call in the current loop.
109 (unknown_address_altered is also nonzero in this case.) */
111 static int loop_has_call
;
113 /* Nonzero if there is a volatile memory reference in the current
116 static int loop_has_volatile
;
118 /* Added loop_continue which is the NOTE_INSN_LOOP_CONT of the
119 current loop. A continue statement will generate a branch to
120 NEXT_INSN (loop_continue). */
122 static rtx loop_continue
;
124 /* Indexed by register number, contains the number of times the reg
125 is set during the loop being scanned.
126 During code motion, a negative value indicates a reg that has been
127 made a candidate; in particular -2 means that it is an candidate that
128 we know is equal to a constant and -1 means that it is an candidate
129 not known equal to a constant.
130 After code motion, regs moved have 0 (which is accurate now)
131 while the failed candidates have the original number of times set.
133 Therefore, at all times, == 0 indicates an invariant register;
134 < 0 a conditionally invariant one. */
136 static short *n_times_set
;
138 /* Original value of n_times_set; same except that this value
139 is not set negative for a reg whose sets have been made candidates
140 and not set to 0 for a reg that is moved. */
142 static short *n_times_used
;
144 /* Index by register number, 1 indicates that the register
145 cannot be moved or strength reduced. */
147 static char *may_not_optimize
;
149 /* Nonzero means reg N has already been moved out of one loop.
150 This reduces the desire to move it out of another. */
152 static char *moved_once
;
154 /* Array of MEMs that are stored in this loop. If there are too many to fit
155 here, we just turn on unknown_address_altered. */
157 #define NUM_STORES 20
158 static rtx loop_store_mems
[NUM_STORES
];
160 /* Index of first available slot in above array. */
161 static int loop_store_mems_idx
;
163 /* Nonzero if we don't know what MEMs were changed in the current loop.
164 This happens if the loop contains a call (in which case `loop_has_call'
165 will also be set) or if we store into more than NUM_STORES MEMs. */
167 static int unknown_address_altered
;
169 /* Count of movable (i.e. invariant) instructions discovered in the loop. */
170 static int num_movables
;
172 /* Count of memory write instructions discovered in the loop. */
173 static int num_mem_sets
;
175 /* Number of loops contained within the current one, including itself. */
176 static int loops_enclosed
;
178 /* Bound on pseudo register number before loop optimization.
179 A pseudo has valid regscan info if its number is < max_reg_before_loop. */
180 int max_reg_before_loop
;
182 /* This obstack is used in product_cheap_p to allocate its rtl. It
183 may call gen_reg_rtx which, in turn, may reallocate regno_reg_rtx.
184 If we used the same obstack that it did, we would be deallocating
187 static struct obstack temp_obstack
;
189 /* This is where the pointer to the obstack being used for RTL is stored. */
191 extern struct obstack
*rtl_obstack
;
193 #define obstack_chunk_alloc xmalloc
194 #define obstack_chunk_free free
196 extern char *oballoc ();
198 /* During the analysis of a loop, a chain of `struct movable's
199 is made to record all the movable insns found.
200 Then the entire chain can be scanned to decide which to move. */
204 rtx insn
; /* A movable insn */
205 rtx set_src
; /* The expression this reg is set from. */
206 rtx set_dest
; /* The destination of this SET. */
207 rtx dependencies
; /* When INSN is libcall, this is an EXPR_LIST
208 of any registers used within the LIBCALL. */
209 int consec
; /* Number of consecutive following insns
210 that must be moved with this one. */
211 int regno
; /* The register it sets */
212 short lifetime
; /* lifetime of that register;
213 may be adjusted when matching movables
214 that load the same value are found. */
215 short savings
; /* Number of insns we can move for this reg,
216 including other movables that force this
217 or match this one. */
218 unsigned int cond
: 1; /* 1 if only conditionally movable */
219 unsigned int force
: 1; /* 1 means MUST move this insn */
220 unsigned int global
: 1; /* 1 means reg is live outside this loop */
221 /* If PARTIAL is 1, GLOBAL means something different:
222 that the reg is live outside the range from where it is set
223 to the following label. */
224 unsigned int done
: 1; /* 1 inhibits further processing of this */
226 unsigned int partial
: 1; /* 1 means this reg is used for zero-extending.
227 In particular, moving it does not make it
229 unsigned int move_insn
: 1; /* 1 means that we call emit_move_insn to
230 load SRC, rather than copying INSN. */
231 unsigned int is_equiv
: 1; /* 1 means a REG_EQUIV is present on INSN. */
232 enum machine_mode savemode
; /* Nonzero means it is a mode for a low part
233 that we should avoid changing when clearing
234 the rest of the reg. */
235 struct movable
*match
; /* First entry for same value */
236 struct movable
*forces
; /* An insn that must be moved if this is */
237 struct movable
*next
;
240 FILE *loop_dump_stream
;
242 /* Forward declarations. */
244 static void find_and_verify_loops ();
245 static void mark_loop_jump ();
246 static void prescan_loop ();
247 static int reg_in_basic_block_p ();
248 static int consec_sets_invariant_p ();
249 static rtx
libcall_other_reg ();
250 static int labels_in_range_p ();
251 static void count_loop_regs_set ();
252 static void note_addr_stored ();
253 static int loop_reg_used_before_p ();
254 static void scan_loop ();
255 static void replace_call_address ();
256 static rtx
skip_consec_insns ();
257 static int libcall_benefit ();
258 static void ignore_some_movables ();
259 static void force_movables ();
260 static void combine_movables ();
261 static int rtx_equal_for_loop_p ();
262 static void move_movables ();
263 static void strength_reduce ();
264 static int valid_initial_value_p ();
265 static void find_mem_givs ();
266 static void record_biv ();
267 static void check_final_value ();
268 static void record_giv ();
269 static void update_giv_derive ();
270 static int basic_induction_var ();
271 static rtx
simplify_giv_expr ();
272 static int general_induction_var ();
273 static int consec_sets_giv ();
274 static int check_dbra_loop ();
275 static rtx
express_from ();
276 static int combine_givs_p ();
277 static void combine_givs ();
278 static int product_cheap_p ();
279 static int maybe_eliminate_biv ();
280 static int maybe_eliminate_biv_1 ();
281 static int last_use_this_basic_block ();
282 static void record_initial ();
283 static void update_reg_last_use ();
285 /* Relative gain of eliminating various kinds of operations. */
292 /* Benefit penalty, if a giv is not replaceable, i.e. must emit an insn to
293 copy the value of the strength reduced giv to its original register. */
299 char *free_point
= (char *) oballoc (1);
300 rtx reg
= gen_rtx (REG
, word_mode
, 0);
302 add_cost
= rtx_cost (gen_rtx (PLUS
, word_mode
, reg
, reg
), SET
);
304 /* We multiply by 2 to reconcile the difference in scale between
305 these two ways of computing costs. Otherwise the cost of a copy
306 will be far less than the cost of an add. */
310 /* Free the objects we just allocated. */
313 /* Initialize the obstack used for rtl in product_cheap_p. */
314 gcc_obstack_init (&temp_obstack
);
317 /* Entry point of this file. Perform loop optimization
318 on the current function. F is the first insn of the function
319 and DUMPFILE is a stream for output of a trace of actions taken
320 (or 0 if none should be output). */
323 loop_optimize (f
, dumpfile
)
324 /* f is the first instruction of a chain of insns for one function */
332 loop_dump_stream
= dumpfile
;
334 init_recog_no_volatile ();
335 init_alias_analysis ();
337 max_reg_before_loop
= max_reg_num ();
339 moved_once
= (char *) alloca (max_reg_before_loop
);
340 bzero (moved_once
, max_reg_before_loop
);
344 /* Count the number of loops. */
347 for (insn
= f
; insn
; insn
= NEXT_INSN (insn
))
349 if (GET_CODE (insn
) == NOTE
350 && NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_BEG
)
354 /* Don't waste time if no loops. */
355 if (max_loop_num
== 0)
358 /* Get size to use for tables indexed by uids.
359 Leave some space for labels allocated by find_and_verify_loops. */
360 max_uid_for_loop
= get_max_uid () + 1 + max_loop_num
* 32;
362 uid_luid
= (int *) alloca (max_uid_for_loop
* sizeof (int));
363 uid_loop_num
= (int *) alloca (max_uid_for_loop
* sizeof (int));
365 bzero ((char *) uid_luid
, max_uid_for_loop
* sizeof (int));
366 bzero ((char *) uid_loop_num
, max_uid_for_loop
* sizeof (int));
368 /* Allocate tables for recording each loop. We set each entry, so they need
370 loop_number_loop_starts
= (rtx
*) alloca (max_loop_num
* sizeof (rtx
));
371 loop_number_loop_ends
= (rtx
*) alloca (max_loop_num
* sizeof (rtx
));
372 loop_outer_loop
= (int *) alloca (max_loop_num
* sizeof (int));
373 loop_invalid
= (char *) alloca (max_loop_num
* sizeof (char));
374 loop_number_exit_labels
= (rtx
*) alloca (max_loop_num
* sizeof (rtx
));
376 /* Find and process each loop.
377 First, find them, and record them in order of their beginnings. */
378 find_and_verify_loops (f
);
380 /* Now find all register lifetimes. This must be done after
381 find_and_verify_loops, because it might reorder the insns in the
383 reg_scan (f
, max_reg_num (), 1);
385 /* See if we went too far. */
386 if (get_max_uid () > max_uid_for_loop
)
389 /* Compute the mapping from uids to luids.
390 LUIDs are numbers assigned to insns, like uids,
391 except that luids increase monotonically through the code.
392 Don't assign luids to line-number NOTEs, so that the distance in luids
393 between two insns is not affected by -g. */
395 for (insn
= f
, i
= 0; insn
; insn
= NEXT_INSN (insn
))
398 if (GET_CODE (insn
) != NOTE
399 || NOTE_LINE_NUMBER (insn
) <= 0)
400 uid_luid
[INSN_UID (insn
)] = ++i
;
402 /* Give a line number note the same luid as preceding insn. */
403 uid_luid
[INSN_UID (insn
)] = i
;
408 /* Don't leave gaps in uid_luid for insns that have been
409 deleted. It is possible that the first or last insn
410 using some register has been deleted by cross-jumping.
411 Make sure that uid_luid for that former insn's uid
412 points to the general area where that insn used to be. */
413 for (i
= 0; i
< max_uid_for_loop
; i
++)
415 uid_luid
[0] = uid_luid
[i
];
416 if (uid_luid
[0] != 0)
419 for (i
= 0; i
< max_uid_for_loop
; i
++)
420 if (uid_luid
[i
] == 0)
421 uid_luid
[i
] = uid_luid
[i
- 1];
423 /* Create a mapping from loops to BLOCK tree nodes. */
424 if (flag_unroll_loops
&& write_symbols
!= NO_DEBUG
)
425 find_loop_tree_blocks ();
427 /* Now scan the loops, last ones first, since this means inner ones are done
428 before outer ones. */
429 for (i
= max_loop_num
-1; i
>= 0; i
--)
430 if (! loop_invalid
[i
] && loop_number_loop_ends
[i
])
431 scan_loop (loop_number_loop_starts
[i
], loop_number_loop_ends
[i
],
434 /* If debugging and unrolling loops, we must replicate the tree nodes
435 corresponding to the blocks inside the loop, so that the original one
436 to one mapping will remain. */
437 if (flag_unroll_loops
&& write_symbols
!= NO_DEBUG
)
438 unroll_block_trees ();
441 /* Optimize one loop whose start is LOOP_START and end is END.
442 LOOP_START is the NOTE_INSN_LOOP_BEG and END is the matching
443 NOTE_INSN_LOOP_END. */
445 /* ??? Could also move memory writes out of loops if the destination address
446 is invariant, the source is invariant, the memory write is not volatile,
447 and if we can prove that no read inside the loop can read this address
448 before the write occurs. If there is a read of this address after the
449 write, then we can also mark the memory read as invariant. */
452 scan_loop (loop_start
, end
, nregs
)
458 /* 1 if we are scanning insns that could be executed zero times. */
460 /* 1 if we are scanning insns that might never be executed
461 due to a subroutine call which might exit before they are reached. */
463 /* For a rotated loop that is entered near the bottom,
464 this is the label at the top. Otherwise it is zero. */
466 /* Jump insn that enters the loop, or 0 if control drops in. */
467 rtx loop_entry_jump
= 0;
468 /* Place in the loop where control enters. */
470 /* Number of insns in the loop. */
475 /* The SET from an insn, if it is the only SET in the insn. */
477 /* Chain describing insns movable in current loop. */
478 struct movable
*movables
= 0;
479 /* Last element in `movables' -- so we can add elements at the end. */
480 struct movable
*last_movable
= 0;
481 /* Ratio of extra register life span we can justify
482 for saving an instruction. More if loop doesn't call subroutines
483 since in that case saving an insn makes more difference
484 and more registers are available. */
486 /* If we have calls, contains the insn in which a register was used
487 if it was used exactly once; contains const0_rtx if it was used more
489 rtx
*reg_single_usage
= 0;
490 /* Nonzero if we are scanning instructions in a sub-loop. */
493 n_times_set
= (short *) alloca (nregs
* sizeof (short));
494 n_times_used
= (short *) alloca (nregs
* sizeof (short));
495 may_not_optimize
= (char *) alloca (nregs
);
497 /* Determine whether this loop starts with a jump down to a test at
498 the end. This will occur for a small number of loops with a test
499 that is too complex to duplicate in front of the loop.
501 We search for the first insn or label in the loop, skipping NOTEs.
502 However, we must be careful not to skip past a NOTE_INSN_LOOP_BEG
503 (because we might have a loop executed only once that contains a
504 loop which starts with a jump to its exit test) or a NOTE_INSN_LOOP_END
505 (in case we have a degenerate loop).
507 Note that if we mistakenly think that a loop is entered at the top
508 when, in fact, it is entered at the exit test, the only effect will be
509 slightly poorer optimization. Making the opposite error can generate
510 incorrect code. Since very few loops now start with a jump to the
511 exit test, the code here to detect that case is very conservative. */
513 for (p
= NEXT_INSN (loop_start
);
515 && GET_CODE (p
) != CODE_LABEL
&& GET_RTX_CLASS (GET_CODE (p
)) != 'i'
516 && (GET_CODE (p
) != NOTE
517 || (NOTE_LINE_NUMBER (p
) != NOTE_INSN_LOOP_BEG
518 && NOTE_LINE_NUMBER (p
) != NOTE_INSN_LOOP_END
));
524 /* Set up variables describing this loop. */
525 prescan_loop (loop_start
, end
);
526 threshold
= (loop_has_call
? 1 : 2) * (1 + n_non_fixed_regs
);
528 /* If loop has a jump before the first label,
529 the true entry is the target of that jump.
530 Start scan from there.
531 But record in LOOP_TOP the place where the end-test jumps
532 back to so we can scan that after the end of the loop. */
533 if (GET_CODE (p
) == JUMP_INSN
)
537 /* Loop entry must be unconditional jump (and not a RETURN) */
539 && JUMP_LABEL (p
) != 0
540 /* Check to see whether the jump actually
541 jumps out of the loop (meaning it's no loop).
542 This case can happen for things like
543 do {..} while (0). If this label was generated previously
544 by loop, we can't tell anything about it and have to reject
546 && INSN_UID (JUMP_LABEL (p
)) < max_uid_for_loop
547 && INSN_LUID (JUMP_LABEL (p
)) >= INSN_LUID (loop_start
)
548 && INSN_LUID (JUMP_LABEL (p
)) < INSN_LUID (end
))
550 loop_top
= next_label (scan_start
);
551 scan_start
= JUMP_LABEL (p
);
555 /* If SCAN_START was an insn created by loop, we don't know its luid
556 as required by loop_reg_used_before_p. So skip such loops. (This
557 test may never be true, but it's best to play it safe.)
559 Also, skip loops where we do not start scanning at a label. This
560 test also rejects loops starting with a JUMP_INSN that failed the
563 if (INSN_UID (scan_start
) >= max_uid_for_loop
564 || GET_CODE (scan_start
) != CODE_LABEL
)
566 if (loop_dump_stream
)
567 fprintf (loop_dump_stream
, "\nLoop from %d to %d is phony.\n\n",
568 INSN_UID (loop_start
), INSN_UID (end
));
572 /* Count number of times each reg is set during this loop.
573 Set may_not_optimize[I] if it is not safe to move out
574 the setting of register I. If this loop has calls, set
575 reg_single_usage[I]. */
577 bzero ((char *) n_times_set
, nregs
* sizeof (short));
578 bzero (may_not_optimize
, nregs
);
582 reg_single_usage
= (rtx
*) alloca (nregs
* sizeof (rtx
));
583 bzero ((char *) reg_single_usage
, nregs
* sizeof (rtx
));
586 count_loop_regs_set (loop_top
? loop_top
: loop_start
, end
,
587 may_not_optimize
, reg_single_usage
, &insn_count
, nregs
);
589 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
590 may_not_optimize
[i
] = 1, n_times_set
[i
] = 1;
591 bcopy ((char *) n_times_set
, (char *) n_times_used
, nregs
* sizeof (short));
593 if (loop_dump_stream
)
595 fprintf (loop_dump_stream
, "\nLoop from %d to %d: %d real insns.\n",
596 INSN_UID (loop_start
), INSN_UID (end
), insn_count
);
598 fprintf (loop_dump_stream
, "Continue at insn %d.\n",
599 INSN_UID (loop_continue
));
602 /* Scan through the loop finding insns that are safe to move.
603 Set n_times_set negative for the reg being set, so that
604 this reg will be considered invariant for subsequent insns.
605 We consider whether subsequent insns use the reg
606 in deciding whether it is worth actually moving.
608 MAYBE_NEVER is nonzero if we have passed a conditional jump insn
609 and therefore it is possible that the insns we are scanning
610 would never be executed. At such times, we must make sure
611 that it is safe to execute the insn once instead of zero times.
612 When MAYBE_NEVER is 0, all insns will be executed at least once
613 so that is not a problem. */
619 /* At end of a straight-in loop, we are done.
620 At end of a loop entered at the bottom, scan the top. */
633 if (GET_RTX_CLASS (GET_CODE (p
)) == 'i'
634 && find_reg_note (p
, REG_LIBCALL
, NULL_RTX
))
636 else if (GET_RTX_CLASS (GET_CODE (p
)) == 'i'
637 && find_reg_note (p
, REG_RETVAL
, NULL_RTX
))
640 if (GET_CODE (p
) == INSN
641 && (set
= single_set (p
))
642 && GET_CODE (SET_DEST (set
)) == REG
643 && ! may_not_optimize
[REGNO (SET_DEST (set
))])
648 rtx src
= SET_SRC (set
);
649 rtx dependencies
= 0;
651 /* Figure out what to use as a source of this insn. If a REG_EQUIV
652 note is given or if a REG_EQUAL note with a constant operand is
653 specified, use it as the source and mark that we should move
654 this insn by calling emit_move_insn rather that duplicating the
657 Otherwise, only use the REG_EQUAL contents if a REG_RETVAL note
659 temp
= find_reg_note (p
, REG_EQUIV
, NULL_RTX
);
661 src
= XEXP (temp
, 0), move_insn
= 1;
664 temp
= find_reg_note (p
, REG_EQUAL
, NULL_RTX
);
665 if (temp
&& CONSTANT_P (XEXP (temp
, 0)))
666 src
= XEXP (temp
, 0), move_insn
= 1;
667 if (temp
&& find_reg_note (p
, REG_RETVAL
, NULL_RTX
))
669 src
= XEXP (temp
, 0);
670 /* A libcall block can use regs that don't appear in
671 the equivalent expression. To move the libcall,
672 we must move those regs too. */
673 dependencies
= libcall_other_reg (p
, src
);
677 /* Don't try to optimize a register that was made
678 by loop-optimization for an inner loop.
679 We don't know its life-span, so we can't compute the benefit. */
680 if (REGNO (SET_DEST (set
)) >= max_reg_before_loop
)
682 /* In order to move a register, we need to have one of three cases:
683 (1) it is used only in the same basic block as the set
684 (2) it is not a user variable and it is not used in the
685 exit test (this can cause the variable to be used
686 before it is set just like a user-variable).
687 (3) the set is guaranteed to be executed once the loop starts,
688 and the reg is not used until after that. */
689 else if (! ((! maybe_never
690 && ! loop_reg_used_before_p (set
, p
, loop_start
,
692 || (! REG_USERVAR_P (SET_DEST (set
))
693 && ! REG_LOOP_TEST_P (SET_DEST (set
)))
694 || reg_in_basic_block_p (p
, SET_DEST (set
))))
696 else if ((tem
= invariant_p (src
))
697 && (dependencies
== 0
698 || (tem2
= invariant_p (dependencies
)) != 0)
699 && (n_times_set
[REGNO (SET_DEST (set
))] == 1
701 = consec_sets_invariant_p (SET_DEST (set
),
702 n_times_set
[REGNO (SET_DEST (set
))],
704 /* If the insn can cause a trap (such as divide by zero),
705 can't move it unless it's guaranteed to be executed
706 once loop is entered. Even a function call might
707 prevent the trap insn from being reached
708 (since it might exit!) */
709 && ! ((maybe_never
|| call_passed
)
710 && may_trap_p (src
)))
712 register struct movable
*m
;
713 register int regno
= REGNO (SET_DEST (set
));
715 /* A potential lossage is where we have a case where two insns
716 can be combined as long as they are both in the loop, but
717 we move one of them outside the loop. For large loops,
718 this can lose. The most common case of this is the address
719 of a function being called.
721 Therefore, if this register is marked as being used exactly
722 once if we are in a loop with calls (a "large loop"), see if
723 we can replace the usage of this register with the source
724 of this SET. If we can, delete this insn.
726 Don't do this if P has a REG_RETVAL note or if we have
727 SMALL_REGISTER_CLASSES and SET_SRC is a hard register. */
729 if (reg_single_usage
&& reg_single_usage
[regno
] != 0
730 && reg_single_usage
[regno
] != const0_rtx
731 && regno_first_uid
[regno
] == INSN_UID (p
)
732 && (regno_last_uid
[regno
]
733 == INSN_UID (reg_single_usage
[regno
]))
734 && n_times_set
[REGNO (SET_DEST (set
))] == 1
735 && ! side_effects_p (SET_SRC (set
))
736 && ! find_reg_note (p
, REG_RETVAL
, NULL_RTX
)
737 #ifdef SMALL_REGISTER_CLASSES
738 && ! (GET_CODE (SET_SRC (set
)) == REG
739 && REGNO (SET_SRC (set
)) < FIRST_PSEUDO_REGISTER
)
741 /* This test is not redundant; SET_SRC (set) might be
742 a call-clobbered register and the life of REGNO
743 might span a call. */
744 && ! modified_between_p (SET_SRC (set
), p
,
745 reg_single_usage
[regno
])
746 && no_labels_between_p (p
, reg_single_usage
[regno
])
747 && validate_replace_rtx (SET_DEST (set
), SET_SRC (set
),
748 reg_single_usage
[regno
]))
750 /* Replace any usage in a REG_EQUAL note. Must copy the
751 new source, so that we don't get rtx sharing between the
752 SET_SOURCE and REG_NOTES of insn p. */
753 REG_NOTES (reg_single_usage
[regno
])
754 = replace_rtx (REG_NOTES (reg_single_usage
[regno
]),
755 SET_DEST (set
), copy_rtx (SET_SRC (set
)));
758 NOTE_LINE_NUMBER (p
) = NOTE_INSN_DELETED
;
759 NOTE_SOURCE_FILE (p
) = 0;
760 n_times_set
[regno
] = 0;
764 m
= (struct movable
*) alloca (sizeof (struct movable
));
768 m
->dependencies
= dependencies
;
769 m
->set_dest
= SET_DEST (set
);
771 m
->consec
= n_times_set
[REGNO (SET_DEST (set
))] - 1;
775 m
->move_insn
= move_insn
;
776 m
->is_equiv
= (find_reg_note (p
, REG_EQUIV
, NULL_RTX
) != 0);
777 m
->savemode
= VOIDmode
;
779 /* Set M->cond if either invariant_p or consec_sets_invariant_p
780 returned 2 (only conditionally invariant). */
781 m
->cond
= ((tem
| tem1
| tem2
) > 1);
782 m
->global
= (uid_luid
[regno_last_uid
[regno
]] > INSN_LUID (end
)
783 || uid_luid
[regno_first_uid
[regno
]] < INSN_LUID (loop_start
));
785 m
->lifetime
= (uid_luid
[regno_last_uid
[regno
]]
786 - uid_luid
[regno_first_uid
[regno
]]);
787 m
->savings
= n_times_used
[regno
];
788 if (find_reg_note (p
, REG_RETVAL
, NULL_RTX
))
789 m
->savings
+= libcall_benefit (p
);
790 n_times_set
[regno
] = move_insn
? -2 : -1;
791 /* Add M to the end of the chain MOVABLES. */
795 last_movable
->next
= m
;
800 /* Skip this insn, not checking REG_LIBCALL notes. */
801 p
= next_nonnote_insn (p
);
802 /* Skip the consecutive insns, if there are any. */
803 p
= skip_consec_insns (p
, m
->consec
);
804 /* Back up to the last insn of the consecutive group. */
805 p
= prev_nonnote_insn (p
);
807 /* We must now reset m->move_insn, m->is_equiv, and possibly
808 m->set_src to correspond to the effects of all the
810 temp
= find_reg_note (p
, REG_EQUIV
, NULL_RTX
);
812 m
->set_src
= XEXP (temp
, 0), m
->move_insn
= 1;
815 temp
= find_reg_note (p
, REG_EQUAL
, NULL_RTX
);
816 if (temp
&& CONSTANT_P (XEXP (temp
, 0)))
817 m
->set_src
= XEXP (temp
, 0), m
->move_insn
= 1;
822 m
->is_equiv
= (find_reg_note (p
, REG_EQUIV
, NULL_RTX
) != 0);
825 /* If this register is always set within a STRICT_LOW_PART
826 or set to zero, then its high bytes are constant.
827 So clear them outside the loop and within the loop
828 just load the low bytes.
829 We must check that the machine has an instruction to do so.
830 Also, if the value loaded into the register
831 depends on the same register, this cannot be done. */
832 else if (SET_SRC (set
) == const0_rtx
833 && GET_CODE (NEXT_INSN (p
)) == INSN
834 && (set1
= single_set (NEXT_INSN (p
)))
835 && GET_CODE (set1
) == SET
836 && (GET_CODE (SET_DEST (set1
)) == STRICT_LOW_PART
)
837 && (GET_CODE (XEXP (SET_DEST (set1
), 0)) == SUBREG
)
838 && (SUBREG_REG (XEXP (SET_DEST (set1
), 0))
840 && !reg_mentioned_p (SET_DEST (set
), SET_SRC (set1
)))
842 register int regno
= REGNO (SET_DEST (set
));
843 if (n_times_set
[regno
] == 2)
845 register struct movable
*m
;
846 m
= (struct movable
*) alloca (sizeof (struct movable
));
849 m
->set_dest
= SET_DEST (set
);
857 /* If the insn may not be executed on some cycles,
858 we can't clear the whole reg; clear just high part.
859 Not even if the reg is used only within this loop.
866 Clearing x before the inner loop could clobber a value
867 being saved from the last time around the outer loop.
868 However, if the reg is not used outside this loop
869 and all uses of the register are in the same
870 basic block as the store, there is no problem.
872 If this insn was made by loop, we don't know its
873 INSN_LUID and hence must make a conservative
875 m
->global
= (INSN_UID (p
) >= max_uid_for_loop
876 || (uid_luid
[regno_last_uid
[regno
]]
878 || (uid_luid
[regno_first_uid
[regno
]]
880 || (labels_in_range_p
881 (p
, uid_luid
[regno_first_uid
[regno
]])));
882 if (maybe_never
&& m
->global
)
883 m
->savemode
= GET_MODE (SET_SRC (set1
));
885 m
->savemode
= VOIDmode
;
889 m
->lifetime
= (uid_luid
[regno_last_uid
[regno
]]
890 - uid_luid
[regno_first_uid
[regno
]]);
892 n_times_set
[regno
] = -1;
893 /* Add M to the end of the chain MOVABLES. */
897 last_movable
->next
= m
;
902 /* Past a call insn, we get to insns which might not be executed
903 because the call might exit. This matters for insns that trap.
904 Call insns inside a REG_LIBCALL/REG_RETVAL block always return,
905 so they don't count. */
906 else if (GET_CODE (p
) == CALL_INSN
&& ! in_libcall
)
908 /* Past a label or a jump, we get to insns for which we
909 can't count on whether or how many times they will be
910 executed during each iteration. Therefore, we can
911 only move out sets of trivial variables
912 (those not used after the loop). */
913 /* This code appears in three places, once in scan_loop, and twice
914 in strength_reduce. */
915 else if ((GET_CODE (p
) == CODE_LABEL
|| GET_CODE (p
) == JUMP_INSN
)
916 /* If we enter the loop in the middle, and scan around to the
917 beginning, don't set maybe_never for that. This must be an
918 unconditional jump, otherwise the code at the top of the
919 loop might never be executed. Unconditional jumps are
920 followed a by barrier then loop end. */
921 && ! (GET_CODE (p
) == JUMP_INSN
&& JUMP_LABEL (p
) == loop_top
922 && NEXT_INSN (NEXT_INSN (p
)) == end
923 && simplejump_p (p
)))
925 else if (GET_CODE (p
) == NOTE
)
927 /* At the virtual top of a converted loop, insns are again known to
928 be executed: logically, the loop begins here even though the exit
929 code has been duplicated. */
930 if (NOTE_LINE_NUMBER (p
) == NOTE_INSN_LOOP_VTOP
&& loop_depth
== 0)
931 maybe_never
= call_passed
= 0;
932 else if (NOTE_LINE_NUMBER (p
) == NOTE_INSN_LOOP_BEG
)
934 else if (NOTE_LINE_NUMBER (p
) == NOTE_INSN_LOOP_END
)
939 /* If one movable subsumes another, ignore that other. */
941 ignore_some_movables (movables
);
943 /* For each movable insn, see if the reg that it loads
944 leads when it dies right into another conditionally movable insn.
945 If so, record that the second insn "forces" the first one,
946 since the second can be moved only if the first is. */
948 force_movables (movables
);
950 /* See if there are multiple movable insns that load the same value.
951 If there are, make all but the first point at the first one
952 through the `match' field, and add the priorities of them
953 all together as the priority of the first. */
955 combine_movables (movables
, nregs
);
957 /* Now consider each movable insn to decide whether it is worth moving.
958 Store 0 in n_times_set for each reg that is moved. */
960 move_movables (movables
, threshold
,
961 insn_count
, loop_start
, end
, nregs
);
963 /* Now candidates that still are negative are those not moved.
964 Change n_times_set to indicate that those are not actually invariant. */
965 for (i
= 0; i
< nregs
; i
++)
966 if (n_times_set
[i
] < 0)
967 n_times_set
[i
] = n_times_used
[i
];
969 if (flag_strength_reduce
)
970 strength_reduce (scan_start
, end
, loop_top
,
971 insn_count
, loop_start
, end
);
974 /* Add elements to *OUTPUT to record all the pseudo-regs
975 mentioned in IN_THIS but not mentioned in NOT_IN_THIS. */
978 record_excess_regs (in_this
, not_in_this
, output
)
979 rtx in_this
, not_in_this
;
986 code
= GET_CODE (in_this
);
1000 if (REGNO (in_this
) >= FIRST_PSEUDO_REGISTER
1001 && ! reg_mentioned_p (in_this
, not_in_this
))
1002 *output
= gen_rtx (EXPR_LIST
, VOIDmode
, in_this
, *output
);
1006 fmt
= GET_RTX_FORMAT (code
);
1007 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1014 for (j
= 0; j
< XVECLEN (in_this
, i
); j
++)
1015 record_excess_regs (XVECEXP (in_this
, i
, j
), not_in_this
, output
);
1019 record_excess_regs (XEXP (in_this
, i
), not_in_this
, output
);
1025 /* Check what regs are referred to in the libcall block ending with INSN,
1026 aside from those mentioned in the equivalent value.
1027 If there are none, return 0.
1028 If there are one or more, return an EXPR_LIST containing all of them. */
1031 libcall_other_reg (insn
, equiv
)
1034 rtx note
= find_reg_note (insn
, REG_RETVAL
, NULL_RTX
);
1035 rtx p
= XEXP (note
, 0);
1038 /* First, find all the regs used in the libcall block
1039 that are not mentioned as inputs to the result. */
1043 if (GET_CODE (p
) == INSN
|| GET_CODE (p
) == JUMP_INSN
1044 || GET_CODE (p
) == CALL_INSN
)
1045 record_excess_regs (PATTERN (p
), equiv
, &output
);
1052 /* Return 1 if all uses of REG
1053 are between INSN and the end of the basic block. */
1056 reg_in_basic_block_p (insn
, reg
)
1059 int regno
= REGNO (reg
);
1062 if (regno_first_uid
[regno
] != INSN_UID (insn
))
1065 /* Search this basic block for the already recorded last use of the reg. */
1066 for (p
= insn
; p
; p
= NEXT_INSN (p
))
1068 switch (GET_CODE (p
))
1075 /* Ordinary insn: if this is the last use, we win. */
1076 if (regno_last_uid
[regno
] == INSN_UID (p
))
1081 /* Jump insn: if this is the last use, we win. */
1082 if (regno_last_uid
[regno
] == INSN_UID (p
))
1084 /* Otherwise, it's the end of the basic block, so we lose. */
1089 /* It's the end of the basic block, so we lose. */
1094 /* The "last use" doesn't follow the "first use"?? */
1098 /* Compute the benefit of eliminating the insns in the block whose
1099 last insn is LAST. This may be a group of insns used to compute a
1100 value directly or can contain a library call. */
1103 libcall_benefit (last
)
1109 for (insn
= XEXP (find_reg_note (last
, REG_RETVAL
, NULL_RTX
), 0);
1110 insn
!= last
; insn
= NEXT_INSN (insn
))
1112 if (GET_CODE (insn
) == CALL_INSN
)
1113 benefit
+= 10; /* Assume at least this many insns in a library
1115 else if (GET_CODE (insn
) == INSN
1116 && GET_CODE (PATTERN (insn
)) != USE
1117 && GET_CODE (PATTERN (insn
)) != CLOBBER
)
1124 /* Skip COUNT insns from INSN, counting library calls as 1 insn. */
1127 skip_consec_insns (insn
, count
)
1131 for (; count
> 0; count
--)
1135 /* If first insn of libcall sequence, skip to end. */
1136 /* Do this at start of loop, since INSN is guaranteed to
1138 if (GET_CODE (insn
) != NOTE
1139 && (temp
= find_reg_note (insn
, REG_LIBCALL
, NULL_RTX
)))
1140 insn
= XEXP (temp
, 0);
1142 do insn
= NEXT_INSN (insn
);
1143 while (GET_CODE (insn
) == NOTE
);
1149 /* Ignore any movable whose insn falls within a libcall
1150 which is part of another movable.
1151 We make use of the fact that the movable for the libcall value
1152 was made later and so appears later on the chain. */
1155 ignore_some_movables (movables
)
1156 struct movable
*movables
;
1158 register struct movable
*m
, *m1
;
1160 for (m
= movables
; m
; m
= m
->next
)
1162 /* Is this a movable for the value of a libcall? */
1163 rtx note
= find_reg_note (m
->insn
, REG_RETVAL
, NULL_RTX
);
1167 /* Check for earlier movables inside that range,
1168 and mark them invalid. We cannot use LUIDs here because
1169 insns created by loop.c for prior loops don't have LUIDs.
1170 Rather than reject all such insns from movables, we just
1171 explicitly check each insn in the libcall (since invariant
1172 libcalls aren't that common). */
1173 for (insn
= XEXP (note
, 0); insn
!= m
->insn
; insn
= NEXT_INSN (insn
))
1174 for (m1
= movables
; m1
!= m
; m1
= m1
->next
)
1175 if (m1
->insn
== insn
)
1181 /* For each movable insn, see if the reg that it loads
1182 leads when it dies right into another conditionally movable insn.
1183 If so, record that the second insn "forces" the first one,
1184 since the second can be moved only if the first is. */
1187 force_movables (movables
)
1188 struct movable
*movables
;
1190 register struct movable
*m
, *m1
;
1191 for (m1
= movables
; m1
; m1
= m1
->next
)
1192 /* Omit this if moving just the (SET (REG) 0) of a zero-extend. */
1193 if (!m1
->partial
&& !m1
->done
)
1195 int regno
= m1
->regno
;
1196 for (m
= m1
->next
; m
; m
= m
->next
)
1197 /* ??? Could this be a bug? What if CSE caused the
1198 register of M1 to be used after this insn?
1199 Since CSE does not update regno_last_uid,
1200 this insn M->insn might not be where it dies.
1201 But very likely this doesn't matter; what matters is
1202 that M's reg is computed from M1's reg. */
1203 if (INSN_UID (m
->insn
) == regno_last_uid
[regno
]
1206 if (m
!= 0 && m
->set_src
== m1
->set_dest
1207 /* If m->consec, m->set_src isn't valid. */
1211 /* Increase the priority of the moving the first insn
1212 since it permits the second to be moved as well. */
1216 m1
->lifetime
+= m
->lifetime
;
1217 m1
->savings
+= m1
->savings
;
1222 /* Find invariant expressions that are equal and can be combined into
1226 combine_movables (movables
, nregs
)
1227 struct movable
*movables
;
1230 register struct movable
*m
;
1231 char *matched_regs
= (char *) alloca (nregs
);
1232 enum machine_mode mode
;
1234 /* Regs that are set more than once are not allowed to match
1235 or be matched. I'm no longer sure why not. */
1236 /* Perhaps testing m->consec_sets would be more appropriate here? */
1238 for (m
= movables
; m
; m
= m
->next
)
1239 if (m
->match
== 0 && n_times_used
[m
->regno
] == 1 && !m
->partial
)
1241 register struct movable
*m1
;
1242 int regno
= m
->regno
;
1244 bzero (matched_regs
, nregs
);
1245 matched_regs
[regno
] = 1;
1247 for (m1
= movables
; m1
; m1
= m1
->next
)
1248 if (m
!= m1
&& m1
->match
== 0 && n_times_used
[m1
->regno
] == 1
1249 /* A reg used outside the loop mustn't be eliminated. */
1251 /* A reg used for zero-extending mustn't be eliminated. */
1253 && (matched_regs
[m1
->regno
]
1256 /* Can combine regs with different modes loaded from the
1257 same constant only if the modes are the same or
1258 if both are integer modes with M wider or the same
1259 width as M1. The check for integer is redundant, but
1260 safe, since the only case of differing destination
1261 modes with equal sources is when both sources are
1262 VOIDmode, i.e., CONST_INT. */
1263 (GET_MODE (m
->set_dest
) == GET_MODE (m1
->set_dest
)
1264 || (GET_MODE_CLASS (GET_MODE (m
->set_dest
)) == MODE_INT
1265 && GET_MODE_CLASS (GET_MODE (m1
->set_dest
)) == MODE_INT
1266 && (GET_MODE_BITSIZE (GET_MODE (m
->set_dest
))
1267 >= GET_MODE_BITSIZE (GET_MODE (m1
->set_dest
)))))
1268 /* See if the source of M1 says it matches M. */
1269 && ((GET_CODE (m1
->set_src
) == REG
1270 && matched_regs
[REGNO (m1
->set_src
)])
1271 || rtx_equal_for_loop_p (m
->set_src
, m1
->set_src
,
1273 && ((m
->dependencies
== m1
->dependencies
)
1274 || rtx_equal_p (m
->dependencies
, m1
->dependencies
)))
1276 m
->lifetime
+= m1
->lifetime
;
1277 m
->savings
+= m1
->savings
;
1280 matched_regs
[m1
->regno
] = 1;
1284 /* Now combine the regs used for zero-extension.
1285 This can be done for those not marked `global'
1286 provided their lives don't overlap. */
1288 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_INT
); mode
!= VOIDmode
;
1289 mode
= GET_MODE_WIDER_MODE (mode
))
1291 register struct movable
*m0
= 0;
1293 /* Combine all the registers for extension from mode MODE.
1294 Don't combine any that are used outside this loop. */
1295 for (m
= movables
; m
; m
= m
->next
)
1296 if (m
->partial
&& ! m
->global
1297 && mode
== GET_MODE (SET_SRC (PATTERN (NEXT_INSN (m
->insn
)))))
1299 register struct movable
*m1
;
1300 int first
= uid_luid
[regno_first_uid
[m
->regno
]];
1301 int last
= uid_luid
[regno_last_uid
[m
->regno
]];
1305 /* First one: don't check for overlap, just record it. */
1310 /* Make sure they extend to the same mode.
1311 (Almost always true.) */
1312 if (GET_MODE (m
->set_dest
) != GET_MODE (m0
->set_dest
))
1315 /* We already have one: check for overlap with those
1316 already combined together. */
1317 for (m1
= movables
; m1
!= m
; m1
= m1
->next
)
1318 if (m1
== m0
|| (m1
->partial
&& m1
->match
== m0
))
1319 if (! (uid_luid
[regno_first_uid
[m1
->regno
]] > last
1320 || uid_luid
[regno_last_uid
[m1
->regno
]] < first
))
1323 /* No overlap: we can combine this with the others. */
1324 m0
->lifetime
+= m
->lifetime
;
1325 m0
->savings
+= m
->savings
;
1334 /* Return 1 if regs X and Y will become the same if moved. */
1337 regs_match_p (x
, y
, movables
)
1339 struct movable
*movables
;
1343 struct movable
*mx
, *my
;
1345 for (mx
= movables
; mx
; mx
= mx
->next
)
1346 if (mx
->regno
== xn
)
1349 for (my
= movables
; my
; my
= my
->next
)
1350 if (my
->regno
== yn
)
1354 && ((mx
->match
== my
->match
&& mx
->match
!= 0)
1356 || mx
== my
->match
));
1359 /* Return 1 if X and Y are identical-looking rtx's.
1360 This is the Lisp function EQUAL for rtx arguments.
1362 If two registers are matching movables or a movable register and an
1363 equivalent constant, consider them equal. */
1366 rtx_equal_for_loop_p (x
, y
, movables
)
1368 struct movable
*movables
;
1372 register struct movable
*m
;
1373 register enum rtx_code code
;
1378 if (x
== 0 || y
== 0)
1381 code
= GET_CODE (x
);
1383 /* If we have a register and a constant, they may sometimes be
1385 if (GET_CODE (x
) == REG
&& n_times_set
[REGNO (x
)] == -2
1387 for (m
= movables
; m
; m
= m
->next
)
1388 if (m
->move_insn
&& m
->regno
== REGNO (x
)
1389 && rtx_equal_p (m
->set_src
, y
))
1392 else if (GET_CODE (y
) == REG
&& n_times_set
[REGNO (y
)] == -2
1394 for (m
= movables
; m
; m
= m
->next
)
1395 if (m
->move_insn
&& m
->regno
== REGNO (y
)
1396 && rtx_equal_p (m
->set_src
, x
))
1399 /* Otherwise, rtx's of different codes cannot be equal. */
1400 if (code
!= GET_CODE (y
))
1403 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent.
1404 (REG:SI x) and (REG:HI x) are NOT equivalent. */
1406 if (GET_MODE (x
) != GET_MODE (y
))
1409 /* These three types of rtx's can be compared nonrecursively. */
1411 return (REGNO (x
) == REGNO (y
) || regs_match_p (x
, y
, movables
));
1413 if (code
== LABEL_REF
)
1414 return XEXP (x
, 0) == XEXP (y
, 0);
1415 if (code
== SYMBOL_REF
)
1416 return XSTR (x
, 0) == XSTR (y
, 0);
1418 /* Compare the elements. If any pair of corresponding elements
1419 fail to match, return 0 for the whole things. */
1421 fmt
= GET_RTX_FORMAT (code
);
1422 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1427 if (XWINT (x
, i
) != XWINT (y
, i
))
1432 if (XINT (x
, i
) != XINT (y
, i
))
1437 /* Two vectors must have the same length. */
1438 if (XVECLEN (x
, i
) != XVECLEN (y
, i
))
1441 /* And the corresponding elements must match. */
1442 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
1443 if (rtx_equal_for_loop_p (XVECEXP (x
, i
, j
), XVECEXP (y
, i
, j
), movables
) == 0)
1448 if (rtx_equal_for_loop_p (XEXP (x
, i
), XEXP (y
, i
), movables
) == 0)
1453 if (strcmp (XSTR (x
, i
), XSTR (y
, i
)))
1458 /* These are just backpointers, so they don't matter. */
1464 /* It is believed that rtx's at this level will never
1465 contain anything but integers and other rtx's,
1466 except for within LABEL_REFs and SYMBOL_REFs. */
1474 /* If X contains any LABEL_REF's, add REG_LABEL notes for them to all
1475 insns in INSNS which use thet reference. */
1478 add_label_notes (x
, insns
)
1482 enum rtx_code code
= GET_CODE (x
);
1487 if (code
== LABEL_REF
&& !LABEL_REF_NONLOCAL_P (x
))
1489 rtx next
= next_real_insn (XEXP (x
, 0));
1491 /* Don't record labels that refer to dispatch tables.
1492 This is not necessary, since the tablejump references the same label.
1493 And if we did record them, flow.c would make worse code. */
1495 || ! (GET_CODE (next
) == JUMP_INSN
1496 && (GET_CODE (PATTERN (next
)) == ADDR_VEC
1497 || GET_CODE (PATTERN (next
)) == ADDR_DIFF_VEC
)))
1499 for (insn
= insns
; insn
; insn
= NEXT_INSN (insn
))
1500 if (reg_mentioned_p (XEXP (x
, 0), insn
))
1501 REG_NOTES (insn
) = gen_rtx (EXPR_LIST
, REG_LABEL
, XEXP (x
, 0),
1507 fmt
= GET_RTX_FORMAT (code
);
1508 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1511 add_label_notes (XEXP (x
, i
), insns
);
1512 else if (fmt
[i
] == 'E')
1513 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
1514 add_label_notes (XVECEXP (x
, i
, j
), insns
);
1518 /* Scan MOVABLES, and move the insns that deserve to be moved.
1519 If two matching movables are combined, replace one reg with the
1520 other throughout. */
1523 move_movables (movables
, threshold
, insn_count
, loop_start
, end
, nregs
)
1524 struct movable
*movables
;
1532 register struct movable
*m
;
1534 /* Map of pseudo-register replacements to handle combining
1535 when we move several insns that load the same value
1536 into different pseudo-registers. */
1537 rtx
*reg_map
= (rtx
*) alloca (nregs
* sizeof (rtx
));
1538 char *already_moved
= (char *) alloca (nregs
);
1540 bzero (already_moved
, nregs
);
1541 bzero ((char *) reg_map
, nregs
* sizeof (rtx
));
1545 for (m
= movables
; m
; m
= m
->next
)
1547 /* Describe this movable insn. */
1549 if (loop_dump_stream
)
1551 fprintf (loop_dump_stream
, "Insn %d: regno %d (life %d), ",
1552 INSN_UID (m
->insn
), m
->regno
, m
->lifetime
);
1554 fprintf (loop_dump_stream
, "consec %d, ", m
->consec
);
1556 fprintf (loop_dump_stream
, "cond ");
1558 fprintf (loop_dump_stream
, "force ");
1560 fprintf (loop_dump_stream
, "global ");
1562 fprintf (loop_dump_stream
, "done ");
1564 fprintf (loop_dump_stream
, "move-insn ");
1566 fprintf (loop_dump_stream
, "matches %d ",
1567 INSN_UID (m
->match
->insn
));
1569 fprintf (loop_dump_stream
, "forces %d ",
1570 INSN_UID (m
->forces
->insn
));
1573 /* Count movables. Value used in heuristics in strength_reduce. */
1576 /* Ignore the insn if it's already done (it matched something else).
1577 Otherwise, see if it is now safe to move. */
1581 || (1 == invariant_p (m
->set_src
)
1582 && (m
->dependencies
== 0
1583 || 1 == invariant_p (m
->dependencies
))
1585 || 1 == consec_sets_invariant_p (m
->set_dest
,
1588 && (! m
->forces
|| m
->forces
->done
))
1592 int savings
= m
->savings
;
1594 /* We have an insn that is safe to move.
1595 Compute its desirability. */
1600 if (loop_dump_stream
)
1601 fprintf (loop_dump_stream
, "savings %d ", savings
);
1603 if (moved_once
[regno
])
1607 if (loop_dump_stream
)
1608 fprintf (loop_dump_stream
, "halved since already moved ");
1611 /* An insn MUST be moved if we already moved something else
1612 which is safe only if this one is moved too: that is,
1613 if already_moved[REGNO] is nonzero. */
1615 /* An insn is desirable to move if the new lifetime of the
1616 register is no more than THRESHOLD times the old lifetime.
1617 If it's not desirable, it means the loop is so big
1618 that moving won't speed things up much,
1619 and it is liable to make register usage worse. */
1621 /* It is also desirable to move if it can be moved at no
1622 extra cost because something else was already moved. */
1624 if (already_moved
[regno
]
1625 || (threshold
* savings
* m
->lifetime
) >= insn_count
1626 || (m
->forces
&& m
->forces
->done
1627 && n_times_used
[m
->forces
->regno
] == 1))
1630 register struct movable
*m1
;
1633 /* Now move the insns that set the reg. */
1635 if (m
->partial
&& m
->match
)
1639 /* Find the end of this chain of matching regs.
1640 Thus, we load each reg in the chain from that one reg.
1641 And that reg is loaded with 0 directly,
1642 since it has ->match == 0. */
1643 for (m1
= m
; m1
->match
; m1
= m1
->match
);
1644 newpat
= gen_move_insn (SET_DEST (PATTERN (m
->insn
)),
1645 SET_DEST (PATTERN (m1
->insn
)));
1646 i1
= emit_insn_before (newpat
, loop_start
);
1648 /* Mark the moved, invariant reg as being allowed to
1649 share a hard reg with the other matching invariant. */
1650 REG_NOTES (i1
) = REG_NOTES (m
->insn
);
1651 r1
= SET_DEST (PATTERN (m
->insn
));
1652 r2
= SET_DEST (PATTERN (m1
->insn
));
1653 regs_may_share
= gen_rtx (EXPR_LIST
, VOIDmode
, r1
,
1654 gen_rtx (EXPR_LIST
, VOIDmode
, r2
,
1656 delete_insn (m
->insn
);
1661 if (loop_dump_stream
)
1662 fprintf (loop_dump_stream
, " moved to %d", INSN_UID (i1
));
1664 /* If we are to re-generate the item being moved with a
1665 new move insn, first delete what we have and then emit
1666 the move insn before the loop. */
1667 else if (m
->move_insn
)
1671 for (count
= m
->consec
; count
>= 0; count
--)
1673 /* If this is the first insn of a library call sequence,
1675 if (GET_CODE (p
) != NOTE
1676 && (temp
= find_reg_note (p
, REG_LIBCALL
, NULL_RTX
)))
1679 /* If this is the last insn of a libcall sequence, then
1680 delete every insn in the sequence except the last.
1681 The last insn is handled in the normal manner. */
1682 if (GET_CODE (p
) != NOTE
1683 && (temp
= find_reg_note (p
, REG_RETVAL
, NULL_RTX
)))
1685 temp
= XEXP (temp
, 0);
1687 temp
= delete_insn (temp
);
1690 p
= delete_insn (p
);
1691 while (p
&& GET_CODE (p
) == NOTE
)
1696 emit_move_insn (m
->set_dest
, m
->set_src
);
1697 temp
= get_insns ();
1700 add_label_notes (m
->set_src
, temp
);
1702 i1
= emit_insns_before (temp
, loop_start
);
1703 if (! find_reg_note (i1
, REG_EQUAL
, NULL_RTX
))
1705 = gen_rtx (EXPR_LIST
,
1706 m
->is_equiv
? REG_EQUIV
: REG_EQUAL
,
1707 m
->set_src
, REG_NOTES (i1
));
1709 if (loop_dump_stream
)
1710 fprintf (loop_dump_stream
, " moved to %d", INSN_UID (i1
));
1712 /* The more regs we move, the less we like moving them. */
1717 for (count
= m
->consec
; count
>= 0; count
--)
1721 /* If first insn of libcall sequence, skip to end. */
1722 /* Do this at start of loop, since p is guaranteed to
1724 if (GET_CODE (p
) != NOTE
1725 && (temp
= find_reg_note (p
, REG_LIBCALL
, NULL_RTX
)))
1728 /* If last insn of libcall sequence, move all
1729 insns except the last before the loop. The last
1730 insn is handled in the normal manner. */
1731 if (GET_CODE (p
) != NOTE
1732 && (temp
= find_reg_note (p
, REG_RETVAL
, NULL_RTX
)))
1736 rtx fn_address_insn
= 0;
1739 for (temp
= XEXP (temp
, 0); temp
!= p
;
1740 temp
= NEXT_INSN (temp
))
1746 if (GET_CODE (temp
) == NOTE
)
1749 body
= PATTERN (temp
);
1751 /* Find the next insn after TEMP,
1752 not counting USE or NOTE insns. */
1753 for (next
= NEXT_INSN (temp
); next
!= p
;
1754 next
= NEXT_INSN (next
))
1755 if (! (GET_CODE (next
) == INSN
1756 && GET_CODE (PATTERN (next
)) == USE
)
1757 && GET_CODE (next
) != NOTE
)
1760 /* If that is the call, this may be the insn
1761 that loads the function address.
1763 Extract the function address from the insn
1764 that loads it into a register.
1765 If this insn was cse'd, we get incorrect code.
1767 So emit a new move insn that copies the
1768 function address into the register that the
1769 call insn will use. flow.c will delete any
1770 redundant stores that we have created. */
1771 if (GET_CODE (next
) == CALL_INSN
1772 && GET_CODE (body
) == SET
1773 && GET_CODE (SET_DEST (body
)) == REG
1774 && (n
= find_reg_note (temp
, REG_EQUAL
,
1777 fn_reg
= SET_SRC (body
);
1778 if (GET_CODE (fn_reg
) != REG
)
1779 fn_reg
= SET_DEST (body
);
1780 fn_address
= XEXP (n
, 0);
1781 fn_address_insn
= temp
;
1783 /* We have the call insn.
1784 If it uses the register we suspect it might,
1785 load it with the correct address directly. */
1786 if (GET_CODE (temp
) == CALL_INSN
1788 && reg_referenced_p (fn_reg
, body
))
1789 emit_insn_after (gen_move_insn (fn_reg
,
1793 if (GET_CODE (temp
) == CALL_INSN
)
1795 i1
= emit_call_insn_before (body
, loop_start
);
1796 /* Because the USAGE information potentially
1797 contains objects other than hard registers
1798 we need to copy it. */
1799 if (CALL_INSN_FUNCTION_USAGE (temp
))
1800 CALL_INSN_FUNCTION_USAGE (i1
) =
1801 copy_rtx (CALL_INSN_FUNCTION_USAGE (temp
));
1804 i1
= emit_insn_before (body
, loop_start
);
1807 if (temp
== fn_address_insn
)
1808 fn_address_insn
= i1
;
1809 REG_NOTES (i1
) = REG_NOTES (temp
);
1813 if (m
->savemode
!= VOIDmode
)
1815 /* P sets REG to zero; but we should clear only
1816 the bits that are not covered by the mode
1818 rtx reg
= m
->set_dest
;
1824 (GET_MODE (reg
), and_optab
, reg
,
1825 GEN_INT ((((HOST_WIDE_INT
) 1
1826 << GET_MODE_BITSIZE (m
->savemode
)))
1828 reg
, 1, OPTAB_LIB_WIDEN
);
1832 emit_move_insn (reg
, tem
);
1833 sequence
= gen_sequence ();
1835 i1
= emit_insn_before (sequence
, loop_start
);
1837 else if (GET_CODE (p
) == CALL_INSN
)
1839 i1
= emit_call_insn_before (PATTERN (p
), loop_start
);
1840 /* Because the USAGE information potentially
1841 contains objects other than hard registers
1842 we need to copy it. */
1843 if (CALL_INSN_FUNCTION_USAGE (p
))
1844 CALL_INSN_FUNCTION_USAGE (i1
) =
1845 copy_rtx (CALL_INSN_FUNCTION_USAGE (p
));
1848 i1
= emit_insn_before (PATTERN (p
), loop_start
);
1850 REG_NOTES (i1
) = REG_NOTES (p
);
1852 /* If there is a REG_EQUAL note present whose value is
1853 not loop invariant, then delete it, since it may
1854 cause problems with later optimization passes.
1855 It is possible for cse to create such notes
1856 like this as a result of record_jump_cond. */
1858 if ((temp
= find_reg_note (i1
, REG_EQUAL
, NULL_RTX
))
1859 && ! invariant_p (XEXP (temp
, 0)))
1860 remove_note (i1
, temp
);
1865 if (loop_dump_stream
)
1866 fprintf (loop_dump_stream
, " moved to %d",
1870 /* This isn't needed because REG_NOTES is copied
1871 below and is wrong since P might be a PARALLEL. */
1872 if (REG_NOTES (i1
) == 0
1873 && ! m
->partial
/* But not if it's a zero-extend clr. */
1874 && ! m
->global
/* and not if used outside the loop
1875 (since it might get set outside). */
1876 && CONSTANT_P (SET_SRC (PATTERN (p
))))
1878 = gen_rtx (EXPR_LIST
, REG_EQUAL
,
1879 SET_SRC (PATTERN (p
)), REG_NOTES (i1
));
1882 /* If library call, now fix the REG_NOTES that contain
1883 insn pointers, namely REG_LIBCALL on FIRST
1884 and REG_RETVAL on I1. */
1885 if (temp
= find_reg_note (i1
, REG_RETVAL
, NULL_RTX
))
1887 XEXP (temp
, 0) = first
;
1888 temp
= find_reg_note (first
, REG_LIBCALL
, NULL_RTX
);
1889 XEXP (temp
, 0) = i1
;
1893 do p
= NEXT_INSN (p
);
1894 while (p
&& GET_CODE (p
) == NOTE
);
1897 /* The more regs we move, the less we like moving them. */
1901 /* Any other movable that loads the same register
1903 already_moved
[regno
] = 1;
1905 /* This reg has been moved out of one loop. */
1906 moved_once
[regno
] = 1;
1908 /* The reg set here is now invariant. */
1910 n_times_set
[regno
] = 0;
1914 /* Change the length-of-life info for the register
1915 to say it lives at least the full length of this loop.
1916 This will help guide optimizations in outer loops. */
1918 if (uid_luid
[regno_first_uid
[regno
]] > INSN_LUID (loop_start
))
1919 /* This is the old insn before all the moved insns.
1920 We can't use the moved insn because it is out of range
1921 in uid_luid. Only the old insns have luids. */
1922 regno_first_uid
[regno
] = INSN_UID (loop_start
);
1923 if (uid_luid
[regno_last_uid
[regno
]] < INSN_LUID (end
))
1924 regno_last_uid
[regno
] = INSN_UID (end
);
1926 /* Combine with this moved insn any other matching movables. */
1929 for (m1
= movables
; m1
; m1
= m1
->next
)
1934 /* Schedule the reg loaded by M1
1935 for replacement so that shares the reg of M.
1936 If the modes differ (only possible in restricted
1937 circumstances, make a SUBREG. */
1938 if (GET_MODE (m
->set_dest
) == GET_MODE (m1
->set_dest
))
1939 reg_map
[m1
->regno
] = m
->set_dest
;
1942 = gen_lowpart_common (GET_MODE (m1
->set_dest
),
1945 /* Get rid of the matching insn
1946 and prevent further processing of it. */
1949 /* if library call, delete all insn except last, which
1951 if (temp
= find_reg_note (m1
->insn
, REG_RETVAL
,
1954 for (temp
= XEXP (temp
, 0); temp
!= m1
->insn
;
1955 temp
= NEXT_INSN (temp
))
1958 delete_insn (m1
->insn
);
1960 /* Any other movable that loads the same register
1962 already_moved
[m1
->regno
] = 1;
1964 /* The reg merged here is now invariant,
1965 if the reg it matches is invariant. */
1967 n_times_set
[m1
->regno
] = 0;
1970 else if (loop_dump_stream
)
1971 fprintf (loop_dump_stream
, "not desirable");
1973 else if (loop_dump_stream
&& !m
->match
)
1974 fprintf (loop_dump_stream
, "not safe");
1976 if (loop_dump_stream
)
1977 fprintf (loop_dump_stream
, "\n");
1981 new_start
= loop_start
;
1983 /* Go through all the instructions in the loop, making
1984 all the register substitutions scheduled in REG_MAP. */
1985 for (p
= new_start
; p
!= end
; p
= NEXT_INSN (p
))
1986 if (GET_CODE (p
) == INSN
|| GET_CODE (p
) == JUMP_INSN
1987 || GET_CODE (p
) == CALL_INSN
)
1989 replace_regs (PATTERN (p
), reg_map
, nregs
, 0);
1990 replace_regs (REG_NOTES (p
), reg_map
, nregs
, 0);
1996 /* Scan X and replace the address of any MEM in it with ADDR.
1997 REG is the address that MEM should have before the replacement. */
2000 replace_call_address (x
, reg
, addr
)
2003 register enum rtx_code code
;
2009 code
= GET_CODE (x
);
2023 /* Short cut for very common case. */
2024 replace_call_address (XEXP (x
, 1), reg
, addr
);
2028 /* Short cut for very common case. */
2029 replace_call_address (XEXP (x
, 0), reg
, addr
);
2033 /* If this MEM uses a reg other than the one we expected,
2034 something is wrong. */
2035 if (XEXP (x
, 0) != reg
)
2041 fmt
= GET_RTX_FORMAT (code
);
2042 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
2045 replace_call_address (XEXP (x
, i
), reg
, addr
);
2049 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
2050 replace_call_address (XVECEXP (x
, i
, j
), reg
, addr
);
2056 /* Return the number of memory refs to addresses that vary
2060 count_nonfixed_reads (x
)
2063 register enum rtx_code code
;
2071 code
= GET_CODE (x
);
2085 return ((invariant_p (XEXP (x
, 0)) != 1)
2086 + count_nonfixed_reads (XEXP (x
, 0)));
2090 fmt
= GET_RTX_FORMAT (code
);
2091 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
2094 value
+= count_nonfixed_reads (XEXP (x
, i
));
2098 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
2099 value
+= count_nonfixed_reads (XVECEXP (x
, i
, j
));
2107 /* P is an instruction that sets a register to the result of a ZERO_EXTEND.
2108 Replace it with an instruction to load just the low bytes
2109 if the machine supports such an instruction,
2110 and insert above LOOP_START an instruction to clear the register. */
2113 constant_high_bytes (p
, loop_start
)
2117 register int insn_code_number
;
2119 /* Try to change (SET (REG ...) (ZERO_EXTEND (..:B ...)))
2120 to (SET (STRICT_LOW_PART (SUBREG:B (REG...))) ...). */
2122 new = gen_rtx (SET
, VOIDmode
,
2123 gen_rtx (STRICT_LOW_PART
, VOIDmode
,
2124 gen_rtx (SUBREG
, GET_MODE (XEXP (SET_SRC (PATTERN (p
)), 0)),
2125 SET_DEST (PATTERN (p
)),
2127 XEXP (SET_SRC (PATTERN (p
)), 0));
2128 insn_code_number
= recog (new, p
);
2130 if (insn_code_number
)
2134 /* Clear destination register before the loop. */
2135 emit_insn_before (gen_rtx (SET
, VOIDmode
,
2136 SET_DEST (PATTERN (p
)),
2140 /* Inside the loop, just load the low part. */
2146 /* Scan a loop setting the variables `unknown_address_altered',
2147 `num_mem_sets', `loop_continue', loops_enclosed', `loop_has_call',
2148 and `loop_has_volatile'.
2149 Also, fill in the array `loop_store_mems'. */
2152 prescan_loop (start
, end
)
2155 register int level
= 1;
2158 unknown_address_altered
= 0;
2160 loop_has_volatile
= 0;
2161 loop_store_mems_idx
= 0;
2167 for (insn
= NEXT_INSN (start
); insn
!= NEXT_INSN (end
);
2168 insn
= NEXT_INSN (insn
))
2170 if (GET_CODE (insn
) == NOTE
)
2172 if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_BEG
)
2175 /* Count number of loops contained in this one. */
2178 else if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_END
)
2187 else if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_CONT
)
2190 loop_continue
= insn
;
2193 else if (GET_CODE (insn
) == CALL_INSN
)
2195 unknown_address_altered
= 1;
2200 if (GET_CODE (insn
) == INSN
|| GET_CODE (insn
) == JUMP_INSN
)
2202 if (volatile_refs_p (PATTERN (insn
)))
2203 loop_has_volatile
= 1;
2205 note_stores (PATTERN (insn
), note_addr_stored
);
2211 /* Scan the function looking for loops. Record the start and end of each loop.
2212 Also mark as invalid loops any loops that contain a setjmp or are branched
2213 to from outside the loop. */
2216 find_and_verify_loops (f
)
2220 int current_loop
= -1;
2224 /* If there are jumps to undefined labels,
2225 treat them as jumps out of any/all loops.
2226 This also avoids writing past end of tables when there are no loops. */
2227 uid_loop_num
[0] = -1;
2229 /* Find boundaries of loops, mark which loops are contained within
2230 loops, and invalidate loops that have setjmp. */
2232 for (insn
= f
; insn
; insn
= NEXT_INSN (insn
))
2234 if (GET_CODE (insn
) == NOTE
)
2235 switch (NOTE_LINE_NUMBER (insn
))
2237 case NOTE_INSN_LOOP_BEG
:
2238 loop_number_loop_starts
[++next_loop
] = insn
;
2239 loop_number_loop_ends
[next_loop
] = 0;
2240 loop_outer_loop
[next_loop
] = current_loop
;
2241 loop_invalid
[next_loop
] = 0;
2242 loop_number_exit_labels
[next_loop
] = 0;
2243 current_loop
= next_loop
;
2246 case NOTE_INSN_SETJMP
:
2247 /* In this case, we must invalidate our current loop and any
2249 for (loop
= current_loop
; loop
!= -1; loop
= loop_outer_loop
[loop
])
2251 loop_invalid
[loop
] = 1;
2252 if (loop_dump_stream
)
2253 fprintf (loop_dump_stream
,
2254 "\nLoop at %d ignored due to setjmp.\n",
2255 INSN_UID (loop_number_loop_starts
[loop
]));
2259 case NOTE_INSN_LOOP_END
:
2260 if (current_loop
== -1)
2263 loop_number_loop_ends
[current_loop
] = insn
;
2264 current_loop
= loop_outer_loop
[current_loop
];
2269 /* Note that this will mark the NOTE_INSN_LOOP_END note as being in the
2270 enclosing loop, but this doesn't matter. */
2271 uid_loop_num
[INSN_UID (insn
)] = current_loop
;
2274 /* Any loop containing a label used in an initializer must be invalidated,
2275 because it can be jumped into from anywhere. */
2277 for (label
= forced_labels
; label
; label
= XEXP (label
, 1))
2281 for (loop_num
= uid_loop_num
[INSN_UID (XEXP (label
, 0))];
2283 loop_num
= loop_outer_loop
[loop_num
])
2284 loop_invalid
[loop_num
] = 1;
2287 /* Now scan all insn's in the function. If any JUMP_INSN branches into a
2288 loop that it is not contained within, that loop is marked invalid.
2289 If any INSN or CALL_INSN uses a label's address, then the loop containing
2290 that label is marked invalid, because it could be jumped into from
2293 Also look for blocks of code ending in an unconditional branch that
2294 exits the loop. If such a block is surrounded by a conditional
2295 branch around the block, move the block elsewhere (see below) and
2296 invert the jump to point to the code block. This may eliminate a
2297 label in our loop and will simplify processing by both us and a
2298 possible second cse pass. */
2300 for (insn
= f
; insn
; insn
= NEXT_INSN (insn
))
2301 if (GET_RTX_CLASS (GET_CODE (insn
)) == 'i')
2303 int this_loop_num
= uid_loop_num
[INSN_UID (insn
)];
2305 if (GET_CODE (insn
) == INSN
|| GET_CODE (insn
) == CALL_INSN
)
2307 rtx note
= find_reg_note (insn
, REG_LABEL
, NULL_RTX
);
2312 for (loop_num
= uid_loop_num
[INSN_UID (XEXP (note
, 0))];
2314 loop_num
= loop_outer_loop
[loop_num
])
2315 loop_invalid
[loop_num
] = 1;
2319 if (GET_CODE (insn
) != JUMP_INSN
)
2322 mark_loop_jump (PATTERN (insn
), this_loop_num
);
2324 /* See if this is an unconditional branch outside the loop. */
2325 if (this_loop_num
!= -1
2326 && (GET_CODE (PATTERN (insn
)) == RETURN
2327 || (simplejump_p (insn
)
2328 && (uid_loop_num
[INSN_UID (JUMP_LABEL (insn
))]
2330 && get_max_uid () < max_uid_for_loop
)
2333 rtx our_next
= next_real_insn (insn
);
2335 /* Go backwards until we reach the start of the loop, a label,
2337 for (p
= PREV_INSN (insn
);
2338 GET_CODE (p
) != CODE_LABEL
2339 && ! (GET_CODE (p
) == NOTE
2340 && NOTE_LINE_NUMBER (p
) == NOTE_INSN_LOOP_BEG
)
2341 && GET_CODE (p
) != JUMP_INSN
;
2345 /* If we stopped on a JUMP_INSN to the next insn after INSN,
2346 we have a block of code to try to move.
2348 We look backward and then forward from the target of INSN
2349 to find a BARRIER at the same loop depth as the target.
2350 If we find such a BARRIER, we make a new label for the start
2351 of the block, invert the jump in P and point it to that label,
2352 and move the block of code to the spot we found. */
2354 if (GET_CODE (p
) == JUMP_INSN
2355 && JUMP_LABEL (p
) != 0
2356 /* Just ignore jumps to labels that were never emitted.
2357 These always indicate compilation errors. */
2358 && INSN_UID (JUMP_LABEL (p
)) != 0
2360 && ! simplejump_p (p
)
2361 && next_real_insn (JUMP_LABEL (p
)) == our_next
)
2364 = JUMP_LABEL (insn
) ? JUMP_LABEL (insn
) : get_last_insn ();
2365 int target_loop_num
= uid_loop_num
[INSN_UID (target
)];
2368 for (loc
= target
; loc
; loc
= PREV_INSN (loc
))
2369 if (GET_CODE (loc
) == BARRIER
2370 && uid_loop_num
[INSN_UID (loc
)] == target_loop_num
)
2374 for (loc
= target
; loc
; loc
= NEXT_INSN (loc
))
2375 if (GET_CODE (loc
) == BARRIER
2376 && uid_loop_num
[INSN_UID (loc
)] == target_loop_num
)
2381 rtx cond_label
= JUMP_LABEL (p
);
2382 rtx new_label
= get_label_after (p
);
2384 /* Ensure our label doesn't go away. */
2385 LABEL_NUSES (cond_label
)++;
2387 /* Verify that uid_loop_num is large enough and that
2389 if (invert_jump (p
, new_label
))
2393 /* Include the BARRIER after INSN and copy the
2395 new_label
= squeeze_notes (new_label
, NEXT_INSN (insn
));
2396 reorder_insns (new_label
, NEXT_INSN (insn
), loc
);
2398 /* All those insns are now in TARGET_LOOP_NUM. */
2399 for (q
= new_label
; q
!= NEXT_INSN (NEXT_INSN (insn
));
2401 uid_loop_num
[INSN_UID (q
)] = target_loop_num
;
2403 /* The label jumped to by INSN is no longer a loop exit.
2404 Unless INSN does not have a label (e.g., it is a
2405 RETURN insn), search loop_number_exit_labels to find
2406 its label_ref, and remove it. Also turn off
2407 LABEL_OUTSIDE_LOOP_P bit. */
2408 if (JUMP_LABEL (insn
))
2411 r
= loop_number_exit_labels
[this_loop_num
];
2412 r
; q
= r
, r
= LABEL_NEXTREF (r
))
2413 if (XEXP (r
, 0) == JUMP_LABEL (insn
))
2415 LABEL_OUTSIDE_LOOP_P (r
) = 0;
2417 LABEL_NEXTREF (q
) = LABEL_NEXTREF (r
);
2419 loop_number_exit_labels
[this_loop_num
]
2420 = LABEL_NEXTREF (r
);
2424 /* If we didn't find it, then something is wrong. */
2429 /* P is now a jump outside the loop, so it must be put
2430 in loop_number_exit_labels, and marked as such.
2431 The easiest way to do this is to just call
2432 mark_loop_jump again for P. */
2433 mark_loop_jump (PATTERN (p
), this_loop_num
);
2435 /* If INSN now jumps to the insn after it,
2437 if (JUMP_LABEL (insn
) != 0
2438 && (next_real_insn (JUMP_LABEL (insn
))
2439 == next_real_insn (insn
)))
2443 /* Continue the loop after where the conditional
2444 branch used to jump, since the only branch insn
2445 in the block (if it still remains) is an inter-loop
2446 branch and hence needs no processing. */
2447 insn
= NEXT_INSN (cond_label
);
2449 if (--LABEL_NUSES (cond_label
) == 0)
2450 delete_insn (cond_label
);
2452 /* This loop will be continued with NEXT_INSN (insn). */
2453 insn
= PREV_INSN (insn
);
2460 /* If any label in X jumps to a loop different from LOOP_NUM and any of the
2461 loops it is contained in, mark the target loop invalid.
2463 For speed, we assume that X is part of a pattern of a JUMP_INSN. */
2466 mark_loop_jump (x
, loop_num
)
2474 switch (GET_CODE (x
))
2487 /* There could be a label reference in here. */
2488 mark_loop_jump (XEXP (x
, 0), loop_num
);
2494 mark_loop_jump (XEXP (x
, 0), loop_num
);
2495 mark_loop_jump (XEXP (x
, 1), loop_num
);
2500 mark_loop_jump (XEXP (x
, 0), loop_num
);
2504 dest_loop
= uid_loop_num
[INSN_UID (XEXP (x
, 0))];
2506 /* Link together all labels that branch outside the loop. This
2507 is used by final_[bg]iv_value and the loop unrolling code. Also
2508 mark this LABEL_REF so we know that this branch should predict
2511 if (dest_loop
!= loop_num
&& loop_num
!= -1)
2513 LABEL_OUTSIDE_LOOP_P (x
) = 1;
2514 LABEL_NEXTREF (x
) = loop_number_exit_labels
[loop_num
];
2515 loop_number_exit_labels
[loop_num
] = x
;
2518 /* If this is inside a loop, but not in the current loop or one enclosed
2519 by it, it invalidates at least one loop. */
2521 if (dest_loop
== -1)
2524 /* We must invalidate every nested loop containing the target of this
2525 label, except those that also contain the jump insn. */
2527 for (; dest_loop
!= -1; dest_loop
= loop_outer_loop
[dest_loop
])
2529 /* Stop when we reach a loop that also contains the jump insn. */
2530 for (outer_loop
= loop_num
; outer_loop
!= -1;
2531 outer_loop
= loop_outer_loop
[outer_loop
])
2532 if (dest_loop
== outer_loop
)
2535 /* If we get here, we know we need to invalidate a loop. */
2536 if (loop_dump_stream
&& ! loop_invalid
[dest_loop
])
2537 fprintf (loop_dump_stream
,
2538 "\nLoop at %d ignored due to multiple entry points.\n",
2539 INSN_UID (loop_number_loop_starts
[dest_loop
]));
2541 loop_invalid
[dest_loop
] = 1;
2546 /* If this is not setting pc, ignore. */
2547 if (SET_DEST (x
) == pc_rtx
)
2548 mark_loop_jump (SET_SRC (x
), loop_num
);
2552 mark_loop_jump (XEXP (x
, 1), loop_num
);
2553 mark_loop_jump (XEXP (x
, 2), loop_num
);
2558 for (i
= 0; i
< XVECLEN (x
, 0); i
++)
2559 mark_loop_jump (XVECEXP (x
, 0, i
), loop_num
);
2563 for (i
= 0; i
< XVECLEN (x
, 1); i
++)
2564 mark_loop_jump (XVECEXP (x
, 1, i
), loop_num
);
2568 /* Treat anything else (such as a symbol_ref)
2569 as a branch out of this loop, but not into any loop. */
2572 loop_number_exit_labels
[loop_num
] = x
;
2578 /* Return nonzero if there is a label in the range from
2579 insn INSN to and including the insn whose luid is END
2580 INSN must have an assigned luid (i.e., it must not have
2581 been previously created by loop.c). */
2584 labels_in_range_p (insn
, end
)
2588 while (insn
&& INSN_LUID (insn
) <= end
)
2590 if (GET_CODE (insn
) == CODE_LABEL
)
2592 insn
= NEXT_INSN (insn
);
2598 /* Record that a memory reference X is being set. */
2601 note_addr_stored (x
)
2606 if (x
== 0 || GET_CODE (x
) != MEM
)
2609 /* Count number of memory writes.
2610 This affects heuristics in strength_reduce. */
2613 /* BLKmode MEM means all memory is clobbered. */
2614 if (GET_MODE (x
) == BLKmode
)
2615 unknown_address_altered
= 1;
2617 if (unknown_address_altered
)
2620 for (i
= 0; i
< loop_store_mems_idx
; i
++)
2621 if (rtx_equal_p (XEXP (loop_store_mems
[i
], 0), XEXP (x
, 0))
2622 && MEM_IN_STRUCT_P (x
) == MEM_IN_STRUCT_P (loop_store_mems
[i
]))
2624 /* We are storing at the same address as previously noted. Save the
2626 if (GET_MODE_SIZE (GET_MODE (x
))
2627 > GET_MODE_SIZE (GET_MODE (loop_store_mems
[i
])))
2628 loop_store_mems
[i
] = x
;
2632 if (i
== NUM_STORES
)
2633 unknown_address_altered
= 1;
2635 else if (i
== loop_store_mems_idx
)
2636 loop_store_mems
[loop_store_mems_idx
++] = x
;
2639 /* Return nonzero if the rtx X is invariant over the current loop.
2641 The value is 2 if we refer to something only conditionally invariant.
2643 If `unknown_address_altered' is nonzero, no memory ref is invariant.
2644 Otherwise, a memory ref is invariant if it does not conflict with
2645 anything stored in `loop_store_mems'. */
2652 register enum rtx_code code
;
2654 int conditional
= 0;
2658 code
= GET_CODE (x
);
2668 /* A LABEL_REF is normally invariant, however, if we are unrolling
2669 loops, and this label is inside the loop, then it isn't invariant.
2670 This is because each unrolled copy of the loop body will have
2671 a copy of this label. If this was invariant, then an insn loading
2672 the address of this label into a register might get moved outside
2673 the loop, and then each loop body would end up using the same label.
2675 We don't know the loop bounds here though, so just fail for all
2677 if (flag_unroll_loops
)
2684 case UNSPEC_VOLATILE
:
2688 /* We used to check RTX_UNCHANGING_P (x) here, but that is invalid
2689 since the reg might be set by initialization within the loop. */
2690 if (x
== frame_pointer_rtx
|| x
== hard_frame_pointer_rtx
2691 || x
== arg_pointer_rtx
)
2694 && REGNO (x
) < FIRST_PSEUDO_REGISTER
&& call_used_regs
[REGNO (x
)])
2696 if (n_times_set
[REGNO (x
)] < 0)
2698 return n_times_set
[REGNO (x
)] == 0;
2701 /* Volatile memory references must be rejected. Do this before
2702 checking for read-only items, so that volatile read-only items
2703 will be rejected also. */
2704 if (MEM_VOLATILE_P (x
))
2707 /* Read-only items (such as constants in a constant pool) are
2708 invariant if their address is. */
2709 if (RTX_UNCHANGING_P (x
))
2712 /* If we filled the table (or had a subroutine call), any location
2713 in memory could have been clobbered. */
2714 if (unknown_address_altered
)
2717 /* See if there is any dependence between a store and this load. */
2718 for (i
= loop_store_mems_idx
- 1; i
>= 0; i
--)
2719 if (true_dependence (loop_store_mems
[i
], x
))
2722 /* It's not invalidated by a store in memory
2723 but we must still verify the address is invariant. */
2727 /* Don't mess with insns declared volatile. */
2728 if (MEM_VOLATILE_P (x
))
2732 fmt
= GET_RTX_FORMAT (code
);
2733 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
2737 int tem
= invariant_p (XEXP (x
, i
));
2743 else if (fmt
[i
] == 'E')
2746 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
2748 int tem
= invariant_p (XVECEXP (x
, i
, j
));
2758 return 1 + conditional
;
2762 /* Return nonzero if all the insns in the loop that set REG
2763 are INSN and the immediately following insns,
2764 and if each of those insns sets REG in an invariant way
2765 (not counting uses of REG in them).
2767 The value is 2 if some of these insns are only conditionally invariant.
2769 We assume that INSN itself is the first set of REG
2770 and that its source is invariant. */
2773 consec_sets_invariant_p (reg
, n_sets
, insn
)
2777 register rtx p
= insn
;
2778 register int regno
= REGNO (reg
);
2780 /* Number of sets we have to insist on finding after INSN. */
2781 int count
= n_sets
- 1;
2782 int old
= n_times_set
[regno
];
2786 /* If N_SETS hit the limit, we can't rely on its value. */
2790 n_times_set
[regno
] = 0;
2794 register enum rtx_code code
;
2798 code
= GET_CODE (p
);
2800 /* If library call, skip to end of of it. */
2801 if (code
== INSN
&& (temp
= find_reg_note (p
, REG_LIBCALL
, NULL_RTX
)))
2806 && (set
= single_set (p
))
2807 && GET_CODE (SET_DEST (set
)) == REG
2808 && REGNO (SET_DEST (set
)) == regno
)
2810 this = invariant_p (SET_SRC (set
));
2813 else if (temp
= find_reg_note (p
, REG_EQUAL
, NULL_RTX
))
2815 /* If this is a libcall, then any invariant REG_EQUAL note is OK.
2816 If this is an ordinary insn, then only CONSTANT_P REG_EQUAL
2818 this = (CONSTANT_P (XEXP (temp
, 0))
2819 || (find_reg_note (p
, REG_RETVAL
, NULL_RTX
)
2820 && invariant_p (XEXP (temp
, 0))));
2827 else if (code
!= NOTE
)
2829 n_times_set
[regno
] = old
;
2834 n_times_set
[regno
] = old
;
2835 /* If invariant_p ever returned 2, we return 2. */
2836 return 1 + (value
& 2);
2840 /* I don't think this condition is sufficient to allow INSN
2841 to be moved, so we no longer test it. */
2843 /* Return 1 if all insns in the basic block of INSN and following INSN
2844 that set REG are invariant according to TABLE. */
2847 all_sets_invariant_p (reg
, insn
, table
)
2851 register rtx p
= insn
;
2852 register int regno
= REGNO (reg
);
2856 register enum rtx_code code
;
2858 code
= GET_CODE (p
);
2859 if (code
== CODE_LABEL
|| code
== JUMP_INSN
)
2861 if (code
== INSN
&& GET_CODE (PATTERN (p
)) == SET
2862 && GET_CODE (SET_DEST (PATTERN (p
))) == REG
2863 && REGNO (SET_DEST (PATTERN (p
))) == regno
)
2865 if (!invariant_p (SET_SRC (PATTERN (p
)), table
))
2872 /* Look at all uses (not sets) of registers in X. For each, if it is
2873 the single use, set USAGE[REGNO] to INSN; if there was a previous use in
2874 a different insn, set USAGE[REGNO] to const0_rtx. */
2877 find_single_use_in_loop (insn
, x
, usage
)
2882 enum rtx_code code
= GET_CODE (x
);
2883 char *fmt
= GET_RTX_FORMAT (code
);
2888 = (usage
[REGNO (x
)] != 0 && usage
[REGNO (x
)] != insn
)
2889 ? const0_rtx
: insn
;
2891 else if (code
== SET
)
2893 /* Don't count SET_DEST if it is a REG; otherwise count things
2894 in SET_DEST because if a register is partially modified, it won't
2895 show up as a potential movable so we don't care how USAGE is set
2897 if (GET_CODE (SET_DEST (x
)) != REG
)
2898 find_single_use_in_loop (insn
, SET_DEST (x
), usage
);
2899 find_single_use_in_loop (insn
, SET_SRC (x
), usage
);
2902 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
2904 if (fmt
[i
] == 'e' && XEXP (x
, i
) != 0)
2905 find_single_use_in_loop (insn
, XEXP (x
, i
), usage
);
2906 else if (fmt
[i
] == 'E')
2907 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
2908 find_single_use_in_loop (insn
, XVECEXP (x
, i
, j
), usage
);
2912 /* Increment N_TIMES_SET at the index of each register
2913 that is modified by an insn between FROM and TO.
2914 If the value of an element of N_TIMES_SET becomes 127 or more,
2915 stop incrementing it, to avoid overflow.
2917 Store in SINGLE_USAGE[I] the single insn in which register I is
2918 used, if it is only used once. Otherwise, it is set to 0 (for no
2919 uses) or const0_rtx for more than one use. This parameter may be zero,
2920 in which case this processing is not done.
2922 Store in *COUNT_PTR the number of actual instruction
2923 in the loop. We use this to decide what is worth moving out. */
2925 /* last_set[n] is nonzero iff reg n has been set in the current basic block.
2926 In that case, it is the insn that last set reg n. */
2929 count_loop_regs_set (from
, to
, may_not_move
, single_usage
, count_ptr
, nregs
)
2930 register rtx from
, to
;
2936 register rtx
*last_set
= (rtx
*) alloca (nregs
* sizeof (rtx
));
2938 register int count
= 0;
2941 bzero ((char *) last_set
, nregs
* sizeof (rtx
));
2942 for (insn
= from
; insn
!= to
; insn
= NEXT_INSN (insn
))
2944 if (GET_RTX_CLASS (GET_CODE (insn
)) == 'i')
2948 /* If requested, record registers that have exactly one use. */
2951 find_single_use_in_loop (insn
, PATTERN (insn
), single_usage
);
2953 /* Include uses in REG_EQUAL notes. */
2954 if (REG_NOTES (insn
))
2955 find_single_use_in_loop (insn
, REG_NOTES (insn
), single_usage
);
2958 if (GET_CODE (PATTERN (insn
)) == CLOBBER
2959 && GET_CODE (XEXP (PATTERN (insn
), 0)) == REG
)
2960 /* Don't move a reg that has an explicit clobber.
2961 We might do so sometimes, but it's not worth the pain. */
2962 may_not_move
[REGNO (XEXP (PATTERN (insn
), 0))] = 1;
2964 if (GET_CODE (PATTERN (insn
)) == SET
2965 || GET_CODE (PATTERN (insn
)) == CLOBBER
)
2967 dest
= SET_DEST (PATTERN (insn
));
2968 while (GET_CODE (dest
) == SUBREG
2969 || GET_CODE (dest
) == ZERO_EXTRACT
2970 || GET_CODE (dest
) == SIGN_EXTRACT
2971 || GET_CODE (dest
) == STRICT_LOW_PART
)
2972 dest
= XEXP (dest
, 0);
2973 if (GET_CODE (dest
) == REG
)
2975 register int regno
= REGNO (dest
);
2976 /* If this is the first setting of this reg
2977 in current basic block, and it was set before,
2978 it must be set in two basic blocks, so it cannot
2979 be moved out of the loop. */
2980 if (n_times_set
[regno
] > 0 && last_set
[regno
] == 0)
2981 may_not_move
[regno
] = 1;
2982 /* If this is not first setting in current basic block,
2983 see if reg was used in between previous one and this.
2984 If so, neither one can be moved. */
2985 if (last_set
[regno
] != 0
2986 && reg_used_between_p (dest
, last_set
[regno
], insn
))
2987 may_not_move
[regno
] = 1;
2988 if (n_times_set
[regno
] < 127)
2989 ++n_times_set
[regno
];
2990 last_set
[regno
] = insn
;
2993 else if (GET_CODE (PATTERN (insn
)) == PARALLEL
)
2996 for (i
= XVECLEN (PATTERN (insn
), 0) - 1; i
>= 0; i
--)
2998 register rtx x
= XVECEXP (PATTERN (insn
), 0, i
);
2999 if (GET_CODE (x
) == CLOBBER
&& GET_CODE (XEXP (x
, 0)) == REG
)
3000 /* Don't move a reg that has an explicit clobber.
3001 It's not worth the pain to try to do it correctly. */
3002 may_not_move
[REGNO (XEXP (x
, 0))] = 1;
3004 if (GET_CODE (x
) == SET
|| GET_CODE (x
) == CLOBBER
)
3006 dest
= SET_DEST (x
);
3007 while (GET_CODE (dest
) == SUBREG
3008 || GET_CODE (dest
) == ZERO_EXTRACT
3009 || GET_CODE (dest
) == SIGN_EXTRACT
3010 || GET_CODE (dest
) == STRICT_LOW_PART
)
3011 dest
= XEXP (dest
, 0);
3012 if (GET_CODE (dest
) == REG
)
3014 register int regno
= REGNO (dest
);
3015 if (n_times_set
[regno
] > 0 && last_set
[regno
] == 0)
3016 may_not_move
[regno
] = 1;
3017 if (last_set
[regno
] != 0
3018 && reg_used_between_p (dest
, last_set
[regno
], insn
))
3019 may_not_move
[regno
] = 1;
3020 if (n_times_set
[regno
] < 127)
3021 ++n_times_set
[regno
];
3022 last_set
[regno
] = insn
;
3029 if (GET_CODE (insn
) == CODE_LABEL
|| GET_CODE (insn
) == JUMP_INSN
)
3030 bzero ((char *) last_set
, nregs
* sizeof (rtx
));
3035 /* Given a loop that is bounded by LOOP_START and LOOP_END
3036 and that is entered at SCAN_START,
3037 return 1 if the register set in SET contained in insn INSN is used by
3038 any insn that precedes INSN in cyclic order starting
3039 from the loop entry point.
3041 We don't want to use INSN_LUID here because if we restrict INSN to those
3042 that have a valid INSN_LUID, it means we cannot move an invariant out
3043 from an inner loop past two loops. */
3046 loop_reg_used_before_p (set
, insn
, loop_start
, scan_start
, loop_end
)
3047 rtx set
, insn
, loop_start
, scan_start
, loop_end
;
3049 rtx reg
= SET_DEST (set
);
3052 /* Scan forward checking for register usage. If we hit INSN, we
3053 are done. Otherwise, if we hit LOOP_END, wrap around to LOOP_START. */
3054 for (p
= scan_start
; p
!= insn
; p
= NEXT_INSN (p
))
3056 if (GET_RTX_CLASS (GET_CODE (p
)) == 'i'
3057 && reg_overlap_mentioned_p (reg
, PATTERN (p
)))
3067 /* A "basic induction variable" or biv is a pseudo reg that is set
3068 (within this loop) only by incrementing or decrementing it. */
3069 /* A "general induction variable" or giv is a pseudo reg whose
3070 value is a linear function of a biv. */
3072 /* Bivs are recognized by `basic_induction_var';
3073 Givs by `general_induct_var'. */
3075 /* Indexed by register number, indicates whether or not register is an
3076 induction variable, and if so what type. */
3078 enum iv_mode
*reg_iv_type
;
3080 /* Indexed by register number, contains pointer to `struct induction'
3081 if register is an induction variable. This holds general info for
3082 all induction variables. */
3084 struct induction
**reg_iv_info
;
3086 /* Indexed by register number, contains pointer to `struct iv_class'
3087 if register is a basic induction variable. This holds info describing
3088 the class (a related group) of induction variables that the biv belongs
3091 struct iv_class
**reg_biv_class
;
3093 /* The head of a list which links together (via the next field)
3094 every iv class for the current loop. */
3096 struct iv_class
*loop_iv_list
;
3098 /* Communication with routines called via `note_stores'. */
3100 static rtx note_insn
;
3102 /* Dummy register to have non-zero DEST_REG for DEST_ADDR type givs. */
3104 static rtx addr_placeholder
;
3106 /* ??? Unfinished optimizations, and possible future optimizations,
3107 for the strength reduction code. */
3109 /* ??? There is one more optimization you might be interested in doing: to
3110 allocate pseudo registers for frequently-accessed memory locations.
3111 If the same memory location is referenced each time around, it might
3112 be possible to copy it into a register before and out after.
3113 This is especially useful when the memory location is a variable which
3114 is in a stack slot because somewhere its address is taken. If the
3115 loop doesn't contain a function call and the variable isn't volatile,
3116 it is safe to keep the value in a register for the duration of the
3117 loop. One tricky thing is that the copying of the value back from the
3118 register has to be done on all exits from the loop. You need to check that
3119 all the exits from the loop go to the same place. */
3121 /* ??? The interaction of biv elimination, and recognition of 'constant'
3122 bivs, may cause problems. */
3124 /* ??? Add heuristics so that DEST_ADDR strength reduction does not cause
3125 performance problems.
3127 Perhaps don't eliminate things that can be combined with an addressing
3128 mode. Find all givs that have the same biv, mult_val, and add_val;
3129 then for each giv, check to see if its only use dies in a following
3130 memory address. If so, generate a new memory address and check to see
3131 if it is valid. If it is valid, then store the modified memory address,
3132 otherwise, mark the giv as not done so that it will get its own iv. */
3134 /* ??? Could try to optimize branches when it is known that a biv is always
3137 /* ??? When replace a biv in a compare insn, we should replace with closest
3138 giv so that an optimized branch can still be recognized by the combiner,
3139 e.g. the VAX acb insn. */
3141 /* ??? Many of the checks involving uid_luid could be simplified if regscan
3142 was rerun in loop_optimize whenever a register was added or moved.
3143 Also, some of the optimizations could be a little less conservative. */
3145 /* Perform strength reduction and induction variable elimination. */
3147 /* Pseudo registers created during this function will be beyond the last
3148 valid index in several tables including n_times_set and regno_last_uid.
3149 This does not cause a problem here, because the added registers cannot be
3150 givs outside of their loop, and hence will never be reconsidered.
3151 But scan_loop must check regnos to make sure they are in bounds. */
3154 strength_reduce (scan_start
, end
, loop_top
, insn_count
,
3155 loop_start
, loop_end
)
3168 /* This is 1 if current insn is not executed at least once for every loop
3170 int not_every_iteration
= 0;
3171 /* This is 1 if current insn may be executed more than once for every
3173 int maybe_multiple
= 0;
3174 /* Temporary list pointers for traversing loop_iv_list. */
3175 struct iv_class
*bl
, **backbl
;
3176 /* Ratio of extra register life span we can justify
3177 for saving an instruction. More if loop doesn't call subroutines
3178 since in that case saving an insn makes more difference
3179 and more registers are available. */
3180 /* ??? could set this to last value of threshold in move_movables */
3181 int threshold
= (loop_has_call
? 1 : 2) * (3 + n_non_fixed_regs
);
3182 /* Map of pseudo-register replacements. */
3186 rtx end_insert_before
;
3189 reg_iv_type
= (enum iv_mode
*) alloca (max_reg_before_loop
3190 * sizeof (enum iv_mode
*));
3191 bzero ((char *) reg_iv_type
, max_reg_before_loop
* sizeof (enum iv_mode
*));
3192 reg_iv_info
= (struct induction
**)
3193 alloca (max_reg_before_loop
* sizeof (struct induction
*));
3194 bzero ((char *) reg_iv_info
, (max_reg_before_loop
3195 * sizeof (struct induction
*)));
3196 reg_biv_class
= (struct iv_class
**)
3197 alloca (max_reg_before_loop
* sizeof (struct iv_class
*));
3198 bzero ((char *) reg_biv_class
, (max_reg_before_loop
3199 * sizeof (struct iv_class
*)));
3202 addr_placeholder
= gen_reg_rtx (Pmode
);
3204 /* Save insn immediately after the loop_end. Insns inserted after loop_end
3205 must be put before this insn, so that they will appear in the right
3206 order (i.e. loop order).
3208 If loop_end is the end of the current function, then emit a
3209 NOTE_INSN_DELETED after loop_end and set end_insert_before to the
3211 if (NEXT_INSN (loop_end
) != 0)
3212 end_insert_before
= NEXT_INSN (loop_end
);
3214 end_insert_before
= emit_note_after (NOTE_INSN_DELETED
, loop_end
);
3216 /* Scan through loop to find all possible bivs. */
3222 /* At end of a straight-in loop, we are done.
3223 At end of a loop entered at the bottom, scan the top. */
3224 if (p
== scan_start
)
3232 if (p
== scan_start
)
3236 if (GET_CODE (p
) == INSN
3237 && (set
= single_set (p
))
3238 && GET_CODE (SET_DEST (set
)) == REG
)
3240 dest_reg
= SET_DEST (set
);
3241 if (REGNO (dest_reg
) < max_reg_before_loop
3242 && REGNO (dest_reg
) >= FIRST_PSEUDO_REGISTER
3243 && reg_iv_type
[REGNO (dest_reg
)] != NOT_BASIC_INDUCT
)
3245 if (basic_induction_var (SET_SRC (set
), GET_MODE (SET_SRC (set
)),
3246 dest_reg
, p
, &inc_val
, &mult_val
))
3248 /* It is a possible basic induction variable.
3249 Create and initialize an induction structure for it. */
3252 = (struct induction
*) alloca (sizeof (struct induction
));
3254 record_biv (v
, p
, dest_reg
, inc_val
, mult_val
,
3255 not_every_iteration
, maybe_multiple
);
3256 reg_iv_type
[REGNO (dest_reg
)] = BASIC_INDUCT
;
3258 else if (REGNO (dest_reg
) < max_reg_before_loop
)
3259 reg_iv_type
[REGNO (dest_reg
)] = NOT_BASIC_INDUCT
;
3263 /* Past CODE_LABEL, we get to insns that may be executed multiple
3264 times. The only way we can be sure that they can't is if every
3265 every jump insn between here and the end of the loop either
3266 returns, exits the loop, or is a forward jump. */
3268 if (GET_CODE (p
) == CODE_LABEL
)
3276 insn
= NEXT_INSN (insn
);
3277 if (insn
== scan_start
)
3285 if (insn
== scan_start
)
3289 if (GET_CODE (insn
) == JUMP_INSN
3290 && GET_CODE (PATTERN (insn
)) != RETURN
3291 && (! condjump_p (insn
)
3292 || (JUMP_LABEL (insn
) != 0
3293 && (INSN_UID (JUMP_LABEL (insn
)) >= max_uid_for_loop
3294 || INSN_UID (insn
) >= max_uid_for_loop
3295 || (INSN_LUID (JUMP_LABEL (insn
))
3296 < INSN_LUID (insn
))))))
3304 /* Past a label or a jump, we get to insns for which we can't count
3305 on whether or how many times they will be executed during each
3307 /* This code appears in three places, once in scan_loop, and twice
3308 in strength_reduce. */
3309 if ((GET_CODE (p
) == CODE_LABEL
|| GET_CODE (p
) == JUMP_INSN
)
3310 /* If we enter the loop in the middle, and scan around to the
3311 beginning, don't set not_every_iteration for that.
3312 This can be any kind of jump, since we want to know if insns
3313 will be executed if the loop is executed. */
3314 && ! (GET_CODE (p
) == JUMP_INSN
&& JUMP_LABEL (p
) == loop_top
3315 && ((NEXT_INSN (NEXT_INSN (p
)) == loop_end
&& simplejump_p (p
))
3316 || (NEXT_INSN (p
) == loop_end
&& condjump_p (p
)))))
3317 not_every_iteration
= 1;
3319 else if (GET_CODE (p
) == NOTE
)
3321 /* At the virtual top of a converted loop, insns are again known to
3322 be executed each iteration: logically, the loop begins here
3323 even though the exit code has been duplicated. */
3324 if (NOTE_LINE_NUMBER (p
) == NOTE_INSN_LOOP_VTOP
&& loop_depth
== 0)
3325 not_every_iteration
= 0;
3326 else if (NOTE_LINE_NUMBER (p
) == NOTE_INSN_LOOP_BEG
)
3328 else if (NOTE_LINE_NUMBER (p
) == NOTE_INSN_LOOP_END
)
3332 /* Unlike in the code motion pass where MAYBE_NEVER indicates that
3333 an insn may never be executed, NOT_EVERY_ITERATION indicates whether
3334 or not an insn is known to be executed each iteration of the
3335 loop, whether or not any iterations are known to occur.
3337 Therefore, if we have just passed a label and have no more labels
3338 between here and the test insn of the loop, we know these insns
3339 will be executed each iteration. This can also happen if we
3340 have just passed a jump, for example, when there are nested loops. */
3342 if (not_every_iteration
&& GET_CODE (p
) == CODE_LABEL
3343 && no_labels_between_p (p
, loop_end
))
3344 not_every_iteration
= 0;
3347 /* Scan loop_iv_list to remove all regs that proved not to be bivs.
3348 Make a sanity check against n_times_set. */
3349 for (backbl
= &loop_iv_list
, bl
= *backbl
; bl
; bl
= bl
->next
)
3351 if (reg_iv_type
[bl
->regno
] != BASIC_INDUCT
3352 /* Above happens if register modified by subreg, etc. */
3353 /* Make sure it is not recognized as a basic induction var: */
3354 || n_times_set
[bl
->regno
] != bl
->biv_count
3355 /* If never incremented, it is invariant that we decided not to
3356 move. So leave it alone. */
3357 || ! bl
->incremented
)
3359 if (loop_dump_stream
)
3360 fprintf (loop_dump_stream
, "Reg %d: biv discarded, %s\n",
3362 (reg_iv_type
[bl
->regno
] != BASIC_INDUCT
3363 ? "not induction variable"
3364 : (! bl
->incremented
? "never incremented"
3367 reg_iv_type
[bl
->regno
] = NOT_BASIC_INDUCT
;
3374 if (loop_dump_stream
)
3375 fprintf (loop_dump_stream
, "Reg %d: biv verified\n", bl
->regno
);
3379 /* Exit if there are no bivs. */
3382 /* Can still unroll the loop anyways, but indicate that there is no
3383 strength reduction info available. */
3384 if (flag_unroll_loops
)
3385 unroll_loop (loop_end
, insn_count
, loop_start
, end_insert_before
, 0);
3390 /* Find initial value for each biv by searching backwards from loop_start,
3391 halting at first label. Also record any test condition. */
3394 for (p
= loop_start
; p
&& GET_CODE (p
) != CODE_LABEL
; p
= PREV_INSN (p
))
3398 if (GET_CODE (p
) == CALL_INSN
)
3401 if (GET_CODE (p
) == INSN
|| GET_CODE (p
) == JUMP_INSN
3402 || GET_CODE (p
) == CALL_INSN
)
3403 note_stores (PATTERN (p
), record_initial
);
3405 /* Record any test of a biv that branches around the loop if no store
3406 between it and the start of loop. We only care about tests with
3407 constants and registers and only certain of those. */
3408 if (GET_CODE (p
) == JUMP_INSN
3409 && JUMP_LABEL (p
) != 0
3410 && next_real_insn (JUMP_LABEL (p
)) == next_real_insn (loop_end
)
3411 && (test
= get_condition_for_loop (p
)) != 0
3412 && GET_CODE (XEXP (test
, 0)) == REG
3413 && REGNO (XEXP (test
, 0)) < max_reg_before_loop
3414 && (bl
= reg_biv_class
[REGNO (XEXP (test
, 0))]) != 0
3415 && valid_initial_value_p (XEXP (test
, 1), p
, call_seen
, loop_start
)
3416 && bl
->init_insn
== 0)
3418 /* If an NE test, we have an initial value! */
3419 if (GET_CODE (test
) == NE
)
3422 bl
->init_set
= gen_rtx (SET
, VOIDmode
,
3423 XEXP (test
, 0), XEXP (test
, 1));
3426 bl
->initial_test
= test
;
3430 /* Look at the each biv and see if we can say anything better about its
3431 initial value from any initializing insns set up above. (This is done
3432 in two passes to avoid missing SETs in a PARALLEL.) */
3433 for (bl
= loop_iv_list
; bl
; bl
= bl
->next
)
3437 if (! bl
->init_insn
)
3440 src
= SET_SRC (bl
->init_set
);
3442 if (loop_dump_stream
)
3443 fprintf (loop_dump_stream
,
3444 "Biv %d initialized at insn %d: initial value ",
3445 bl
->regno
, INSN_UID (bl
->init_insn
));
3447 if ((GET_MODE (src
) == GET_MODE (regno_reg_rtx
[bl
->regno
])
3448 || GET_MODE (src
) == VOIDmode
)
3449 && valid_initial_value_p (src
, bl
->init_insn
, call_seen
, loop_start
))
3451 bl
->initial_value
= src
;
3453 if (loop_dump_stream
)
3455 if (GET_CODE (src
) == CONST_INT
)
3456 fprintf (loop_dump_stream
, "%d\n", INTVAL (src
));
3459 print_rtl (loop_dump_stream
, src
);
3460 fprintf (loop_dump_stream
, "\n");
3466 /* Biv initial value is not simple move,
3467 so let it keep initial value of "itself". */
3469 if (loop_dump_stream
)
3470 fprintf (loop_dump_stream
, "is complex\n");
3474 /* Search the loop for general induction variables. */
3476 /* A register is a giv if: it is only set once, it is a function of a
3477 biv and a constant (or invariant), and it is not a biv. */
3479 not_every_iteration
= 0;
3485 /* At end of a straight-in loop, we are done.
3486 At end of a loop entered at the bottom, scan the top. */
3487 if (p
== scan_start
)
3495 if (p
== scan_start
)
3499 /* Look for a general induction variable in a register. */
3500 if (GET_CODE (p
) == INSN
3501 && (set
= single_set (p
))
3502 && GET_CODE (SET_DEST (set
)) == REG
3503 && ! may_not_optimize
[REGNO (SET_DEST (set
))])
3511 dest_reg
= SET_DEST (set
);
3512 if (REGNO (dest_reg
) < FIRST_PSEUDO_REGISTER
)
3515 if (/* SET_SRC is a giv. */
3516 ((benefit
= general_induction_var (SET_SRC (set
),
3519 /* Equivalent expression is a giv. */
3520 || ((regnote
= find_reg_note (p
, REG_EQUAL
, NULL_RTX
))
3521 && (benefit
= general_induction_var (XEXP (regnote
, 0),
3523 &add_val
, &mult_val
))))
3524 /* Don't try to handle any regs made by loop optimization.
3525 We have nothing on them in regno_first_uid, etc. */
3526 && REGNO (dest_reg
) < max_reg_before_loop
3527 /* Don't recognize a BASIC_INDUCT_VAR here. */
3528 && dest_reg
!= src_reg
3529 /* This must be the only place where the register is set. */
3530 && (n_times_set
[REGNO (dest_reg
)] == 1
3531 /* or all sets must be consecutive and make a giv. */
3532 || (benefit
= consec_sets_giv (benefit
, p
,
3534 &add_val
, &mult_val
))))
3538 = (struct induction
*) alloca (sizeof (struct induction
));
3541 /* If this is a library call, increase benefit. */
3542 if (find_reg_note (p
, REG_RETVAL
, NULL_RTX
))
3543 benefit
+= libcall_benefit (p
);
3545 /* Skip the consecutive insns, if there are any. */
3546 for (count
= n_times_set
[REGNO (dest_reg
)] - 1;
3549 /* If first insn of libcall sequence, skip to end.
3550 Do this at start of loop, since INSN is guaranteed to
3552 if (GET_CODE (p
) != NOTE
3553 && (temp
= find_reg_note (p
, REG_LIBCALL
, NULL_RTX
)))
3556 do p
= NEXT_INSN (p
);
3557 while (GET_CODE (p
) == NOTE
);
3560 record_giv (v
, p
, src_reg
, dest_reg
, mult_val
, add_val
, benefit
,
3561 DEST_REG
, not_every_iteration
, NULL_PTR
, loop_start
,
3567 #ifndef DONT_REDUCE_ADDR
3568 /* Look for givs which are memory addresses. */
3569 /* This resulted in worse code on a VAX 8600. I wonder if it
3571 if (GET_CODE (p
) == INSN
)
3572 find_mem_givs (PATTERN (p
), p
, not_every_iteration
, loop_start
,
3576 /* Update the status of whether giv can derive other givs. This can
3577 change when we pass a label or an insn that updates a biv. */
3578 if (GET_CODE (p
) == INSN
|| GET_CODE (p
) == JUMP_INSN
3579 || GET_CODE (p
) == CODE_LABEL
)
3580 update_giv_derive (p
);
3582 /* Past a label or a jump, we get to insns for which we can't count
3583 on whether or how many times they will be executed during each
3585 /* This code appears in three places, once in scan_loop, and twice
3586 in strength_reduce. */
3587 if ((GET_CODE (p
) == CODE_LABEL
|| GET_CODE (p
) == JUMP_INSN
)
3588 /* If we enter the loop in the middle, and scan around
3589 to the beginning, don't set not_every_iteration for that.
3590 This can be any kind of jump, since we want to know if insns
3591 will be executed if the loop is executed. */
3592 && ! (GET_CODE (p
) == JUMP_INSN
&& JUMP_LABEL (p
) == loop_top
3593 && ((NEXT_INSN (NEXT_INSN (p
)) == loop_end
&& simplejump_p (p
))
3594 || (NEXT_INSN (p
) == loop_end
&& condjump_p (p
)))))
3595 not_every_iteration
= 1;
3597 else if (GET_CODE (p
) == NOTE
)
3599 /* At the virtual top of a converted loop, insns are again known to
3600 be executed each iteration: logically, the loop begins here
3601 even though the exit code has been duplicated. */
3602 if (NOTE_LINE_NUMBER (p
) == NOTE_INSN_LOOP_VTOP
&& loop_depth
== 0)
3603 not_every_iteration
= 0;
3604 else if (NOTE_LINE_NUMBER (p
) == NOTE_INSN_LOOP_BEG
)
3606 else if (NOTE_LINE_NUMBER (p
) == NOTE_INSN_LOOP_END
)
3610 /* Unlike in the code motion pass where MAYBE_NEVER indicates that
3611 an insn may never be executed, NOT_EVERY_ITERATION indicates whether
3612 or not an insn is known to be executed each iteration of the
3613 loop, whether or not any iterations are known to occur.
3615 Therefore, if we have just passed a label and have no more labels
3616 between here and the test insn of the loop, we know these insns
3617 will be executed each iteration. */
3619 if (not_every_iteration
&& GET_CODE (p
) == CODE_LABEL
3620 && no_labels_between_p (p
, loop_end
))
3621 not_every_iteration
= 0;
3624 /* Try to calculate and save the number of loop iterations. This is
3625 set to zero if the actual number can not be calculated. This must
3626 be called after all giv's have been identified, since otherwise it may
3627 fail if the iteration variable is a giv. */
3629 loop_n_iterations
= loop_iterations (loop_start
, loop_end
);
3631 /* Now for each giv for which we still don't know whether or not it is
3632 replaceable, check to see if it is replaceable because its final value
3633 can be calculated. This must be done after loop_iterations is called,
3634 so that final_giv_value will work correctly. */
3636 for (bl
= loop_iv_list
; bl
; bl
= bl
->next
)
3638 struct induction
*v
;
3640 for (v
= bl
->giv
; v
; v
= v
->next_iv
)
3641 if (! v
->replaceable
&& ! v
->not_replaceable
)
3642 check_final_value (v
, loop_start
, loop_end
);
3645 /* Try to prove that the loop counter variable (if any) is always
3646 nonnegative; if so, record that fact with a REG_NONNEG note
3647 so that "decrement and branch until zero" insn can be used. */
3648 check_dbra_loop (loop_end
, insn_count
, loop_start
);
3650 /* Create reg_map to hold substitutions for replaceable giv regs. */
3651 reg_map
= (rtx
*) alloca (max_reg_before_loop
* sizeof (rtx
));
3652 bzero ((char *) reg_map
, max_reg_before_loop
* sizeof (rtx
));
3654 /* Examine each iv class for feasibility of strength reduction/induction
3655 variable elimination. */
3657 for (bl
= loop_iv_list
; bl
; bl
= bl
->next
)
3659 struct induction
*v
;
3662 rtx final_value
= 0;
3664 /* Test whether it will be possible to eliminate this biv
3665 provided all givs are reduced. This is possible if either
3666 the reg is not used outside the loop, or we can compute
3667 what its final value will be.
3669 For architectures with a decrement_and_branch_until_zero insn,
3670 don't do this if we put a REG_NONNEG note on the endtest for
3673 /* Compare against bl->init_insn rather than loop_start.
3674 We aren't concerned with any uses of the biv between
3675 init_insn and loop_start since these won't be affected
3676 by the value of the biv elsewhere in the function, so
3677 long as init_insn doesn't use the biv itself.
3678 March 14, 1989 -- self@bayes.arc.nasa.gov */
3680 if ((uid_luid
[regno_last_uid
[bl
->regno
]] < INSN_LUID (loop_end
)
3682 && INSN_UID (bl
->init_insn
) < max_uid_for_loop
3683 && uid_luid
[regno_first_uid
[bl
->regno
]] >= INSN_LUID (bl
->init_insn
)
3684 #ifdef HAVE_decrement_and_branch_until_zero
3687 && ! reg_mentioned_p (bl
->biv
->dest_reg
, SET_SRC (bl
->init_set
)))
3688 || ((final_value
= final_biv_value (bl
, loop_start
, loop_end
))
3689 #ifdef HAVE_decrement_and_branch_until_zero
3693 bl
->eliminable
= maybe_eliminate_biv (bl
, loop_start
, end
, 0,
3694 threshold
, insn_count
);
3697 if (loop_dump_stream
)
3699 fprintf (loop_dump_stream
,
3700 "Cannot eliminate biv %d.\n",
3702 fprintf (loop_dump_stream
,
3703 "First use: insn %d, last use: insn %d.\n",
3704 regno_first_uid
[bl
->regno
],
3705 regno_last_uid
[bl
->regno
]);
3709 /* Combine all giv's for this iv_class. */
3712 /* This will be true at the end, if all givs which depend on this
3713 biv have been strength reduced.
3714 We can't (currently) eliminate the biv unless this is so. */
3717 /* Check each giv in this class to see if we will benefit by reducing
3718 it. Skip giv's combined with others. */
3719 for (v
= bl
->giv
; v
; v
= v
->next_iv
)
3721 struct induction
*tv
;
3723 if (v
->ignore
|| v
->same
)
3726 benefit
= v
->benefit
;
3728 /* Reduce benefit if not replaceable, since we will insert
3729 a move-insn to replace the insn that calculates this giv.
3730 Don't do this unless the giv is a user variable, since it
3731 will often be marked non-replaceable because of the duplication
3732 of the exit code outside the loop. In such a case, the copies
3733 we insert are dead and will be deleted. So they don't have
3734 a cost. Similar situations exist. */
3735 /* ??? The new final_[bg]iv_value code does a much better job
3736 of finding replaceable giv's, and hence this code may no longer
3738 if (! v
->replaceable
&& ! bl
->eliminable
3739 && REG_USERVAR_P (v
->dest_reg
))
3740 benefit
-= copy_cost
;
3742 /* Decrease the benefit to count the add-insns that we will
3743 insert to increment the reduced reg for the giv. */
3744 benefit
-= add_cost
* bl
->biv_count
;
3746 /* Decide whether to strength-reduce this giv or to leave the code
3747 unchanged (recompute it from the biv each time it is used).
3748 This decision can be made independently for each giv. */
3750 /* ??? Perhaps attempt to guess whether autoincrement will handle
3751 some of the new add insns; if so, can increase BENEFIT
3752 (undo the subtraction of add_cost that was done above). */
3754 /* If an insn is not to be strength reduced, then set its ignore
3755 flag, and clear all_reduced. */
3757 /* A giv that depends on a reversed biv must be reduced if it is
3758 used after the loop exit, otherwise, it would have the wrong
3759 value after the loop exit. To make it simple, just reduce all
3760 of such giv's whether or not we know they are used after the loop
3763 if (v
->lifetime
* threshold
* benefit
< insn_count
3766 if (loop_dump_stream
)
3767 fprintf (loop_dump_stream
,
3768 "giv of insn %d not worth while, %d vs %d.\n",
3770 v
->lifetime
* threshold
* benefit
, insn_count
);
3776 /* Check that we can increment the reduced giv without a
3777 multiply insn. If not, reject it. */
3779 for (tv
= bl
->biv
; tv
; tv
= tv
->next_iv
)
3780 if (tv
->mult_val
== const1_rtx
3781 && ! product_cheap_p (tv
->add_val
, v
->mult_val
))
3783 if (loop_dump_stream
)
3784 fprintf (loop_dump_stream
,
3785 "giv of insn %d: would need a multiply.\n",
3786 INSN_UID (v
->insn
));
3794 /* Reduce each giv that we decided to reduce. */
3796 for (v
= bl
->giv
; v
; v
= v
->next_iv
)
3798 struct induction
*tv
;
3799 if (! v
->ignore
&& v
->same
== 0)
3801 v
->new_reg
= gen_reg_rtx (v
->mode
);
3803 /* For each place where the biv is incremented,
3804 add an insn to increment the new, reduced reg for the giv. */
3805 for (tv
= bl
->biv
; tv
; tv
= tv
->next_iv
)
3807 if (tv
->mult_val
== const1_rtx
)
3808 emit_iv_add_mult (tv
->add_val
, v
->mult_val
,
3809 v
->new_reg
, v
->new_reg
, tv
->insn
);
3810 else /* tv->mult_val == const0_rtx */
3811 /* A multiply is acceptable here
3812 since this is presumed to be seldom executed. */
3813 emit_iv_add_mult (tv
->add_val
, v
->mult_val
,
3814 v
->add_val
, v
->new_reg
, tv
->insn
);
3817 /* Add code at loop start to initialize giv's reduced reg. */
3819 emit_iv_add_mult (bl
->initial_value
, v
->mult_val
,
3820 v
->add_val
, v
->new_reg
, loop_start
);
3824 /* Rescan all givs. If a giv is the same as a giv not reduced, mark it
3827 For each giv register that can be reduced now: if replaceable,
3828 substitute reduced reg wherever the old giv occurs;
3829 else add new move insn "giv_reg = reduced_reg".
3831 Also check for givs whose first use is their definition and whose
3832 last use is the definition of another giv. If so, it is likely
3833 dead and should not be used to eliminate a biv. */
3834 for (v
= bl
->giv
; v
; v
= v
->next_iv
)
3836 if (v
->same
&& v
->same
->ignore
)
3842 if (v
->giv_type
== DEST_REG
3843 && regno_first_uid
[REGNO (v
->dest_reg
)] == INSN_UID (v
->insn
))
3845 struct induction
*v1
;
3847 for (v1
= bl
->giv
; v1
; v1
= v1
->next_iv
)
3848 if (regno_last_uid
[REGNO (v
->dest_reg
)] == INSN_UID (v1
->insn
))
3852 /* Update expression if this was combined, in case other giv was
3855 v
->new_reg
= replace_rtx (v
->new_reg
,
3856 v
->same
->dest_reg
, v
->same
->new_reg
);
3858 if (v
->giv_type
== DEST_ADDR
)
3859 /* Store reduced reg as the address in the memref where we found
3861 validate_change (v
->insn
, v
->location
, v
->new_reg
, 0);
3862 else if (v
->replaceable
)
3864 reg_map
[REGNO (v
->dest_reg
)] = v
->new_reg
;
3867 /* I can no longer duplicate the original problem. Perhaps
3868 this is unnecessary now? */
3870 /* Replaceable; it isn't strictly necessary to delete the old
3871 insn and emit a new one, because v->dest_reg is now dead.
3873 However, especially when unrolling loops, the special
3874 handling for (set REG0 REG1) in the second cse pass may
3875 make v->dest_reg live again. To avoid this problem, emit
3876 an insn to set the original giv reg from the reduced giv.
3877 We can not delete the original insn, since it may be part
3878 of a LIBCALL, and the code in flow that eliminates dead
3879 libcalls will fail if it is deleted. */
3880 emit_insn_after (gen_move_insn (v
->dest_reg
, v
->new_reg
),
3886 /* Not replaceable; emit an insn to set the original giv reg from
3887 the reduced giv, same as above. */
3888 emit_insn_after (gen_move_insn (v
->dest_reg
, v
->new_reg
),
3892 /* When a loop is reversed, givs which depend on the reversed
3893 biv, and which are live outside the loop, must be set to their
3894 correct final value. This insn is only needed if the giv is
3895 not replaceable. The correct final value is the same as the
3896 value that the giv starts the reversed loop with. */
3897 if (bl
->reversed
&& ! v
->replaceable
)
3898 emit_iv_add_mult (bl
->initial_value
, v
->mult_val
,
3899 v
->add_val
, v
->dest_reg
, end_insert_before
);
3900 else if (v
->final_value
)
3904 /* If the loop has multiple exits, emit the insn before the
3905 loop to ensure that it will always be executed no matter
3906 how the loop exits. Otherwise, emit the insn after the loop,
3907 since this is slightly more efficient. */
3908 if (loop_number_exit_labels
[uid_loop_num
[INSN_UID (loop_start
)]])
3909 insert_before
= loop_start
;
3911 insert_before
= end_insert_before
;
3912 emit_insn_before (gen_move_insn (v
->dest_reg
, v
->final_value
),
3916 /* If the insn to set the final value of the giv was emitted
3917 before the loop, then we must delete the insn inside the loop
3918 that sets it. If this is a LIBCALL, then we must delete
3919 every insn in the libcall. Note, however, that
3920 final_giv_value will only succeed when there are multiple
3921 exits if the giv is dead at each exit, hence it does not
3922 matter that the original insn remains because it is dead
3924 /* Delete the insn inside the loop that sets the giv since
3925 the giv is now set before (or after) the loop. */
3926 delete_insn (v
->insn
);
3930 if (loop_dump_stream
)
3932 fprintf (loop_dump_stream
, "giv at %d reduced to ",
3933 INSN_UID (v
->insn
));
3934 print_rtl (loop_dump_stream
, v
->new_reg
);
3935 fprintf (loop_dump_stream
, "\n");
3939 /* All the givs based on the biv bl have been reduced if they
3942 /* For each giv not marked as maybe dead that has been combined with a
3943 second giv, clear any "maybe dead" mark on that second giv.
3944 v->new_reg will either be or refer to the register of the giv it
3947 Doing this clearing avoids problems in biv elimination where a
3948 giv's new_reg is a complex value that can't be put in the insn but
3949 the giv combined with (with a reg as new_reg) is marked maybe_dead.
3950 Since the register will be used in either case, we'd prefer it be
3951 used from the simpler giv. */
3953 for (v
= bl
->giv
; v
; v
= v
->next_iv
)
3954 if (! v
->maybe_dead
&& v
->same
)
3955 v
->same
->maybe_dead
= 0;
3957 /* Try to eliminate the biv, if it is a candidate.
3958 This won't work if ! all_reduced,
3959 since the givs we planned to use might not have been reduced.
3961 We have to be careful that we didn't initially think we could eliminate
3962 this biv because of a giv that we now think may be dead and shouldn't
3963 be used as a biv replacement.
3965 Also, there is the possibility that we may have a giv that looks
3966 like it can be used to eliminate a biv, but the resulting insn
3967 isn't valid. This can happen, for example, on the 88k, where a
3968 JUMP_INSN can compare a register only with zero. Attempts to
3969 replace it with a compare with a constant will fail.
3971 Note that in cases where this call fails, we may have replaced some
3972 of the occurrences of the biv with a giv, but no harm was done in
3973 doing so in the rare cases where it can occur. */
3975 if (all_reduced
== 1 && bl
->eliminable
3976 && maybe_eliminate_biv (bl
, loop_start
, end
, 1,
3977 threshold
, insn_count
))
3980 /* ?? If we created a new test to bypass the loop entirely,
3981 or otherwise drop straight in, based on this test, then
3982 we might want to rewrite it also. This way some later
3983 pass has more hope of removing the initialization of this
3986 /* If final_value != 0, then the biv may be used after loop end
3987 and we must emit an insn to set it just in case.
3989 Reversed bivs already have an insn after the loop setting their
3990 value, so we don't need another one. We can't calculate the
3991 proper final value for such a biv here anyways. */
3992 if (final_value
!= 0 && ! bl
->reversed
)
3996 /* If the loop has multiple exits, emit the insn before the
3997 loop to ensure that it will always be executed no matter
3998 how the loop exits. Otherwise, emit the insn after the
3999 loop, since this is slightly more efficient. */
4000 if (loop_number_exit_labels
[uid_loop_num
[INSN_UID (loop_start
)]])
4001 insert_before
= loop_start
;
4003 insert_before
= end_insert_before
;
4005 emit_insn_before (gen_move_insn (bl
->biv
->dest_reg
, final_value
),
4010 /* Delete all of the instructions inside the loop which set
4011 the biv, as they are all dead. If is safe to delete them,
4012 because an insn setting a biv will never be part of a libcall. */
4013 /* However, deleting them will invalidate the regno_last_uid info,
4014 so keeping them around is more convenient. Final_biv_value
4015 will only succeed when there are multiple exits if the biv
4016 is dead at each exit, hence it does not matter that the original
4017 insn remains, because it is dead anyways. */
4018 for (v
= bl
->biv
; v
; v
= v
->next_iv
)
4019 delete_insn (v
->insn
);
4022 if (loop_dump_stream
)
4023 fprintf (loop_dump_stream
, "Reg %d: biv eliminated\n",
4028 /* Go through all the instructions in the loop, making all the
4029 register substitutions scheduled in REG_MAP. */
4031 for (p
= loop_start
; p
!= end
; p
= NEXT_INSN (p
))
4032 if (GET_CODE (p
) == INSN
|| GET_CODE (p
) == JUMP_INSN
4033 || GET_CODE (p
) == CALL_INSN
)
4035 replace_regs (PATTERN (p
), reg_map
, max_reg_before_loop
, 0);
4036 replace_regs (REG_NOTES (p
), reg_map
, max_reg_before_loop
, 0);
4040 /* Unroll loops from within strength reduction so that we can use the
4041 induction variable information that strength_reduce has already
4044 if (flag_unroll_loops
)
4045 unroll_loop (loop_end
, insn_count
, loop_start
, end_insert_before
, 1);
4047 if (loop_dump_stream
)
4048 fprintf (loop_dump_stream
, "\n");
4051 /* Return 1 if X is a valid source for an initial value (or as value being
4052 compared against in an initial test).
4054 X must be either a register or constant and must not be clobbered between
4055 the current insn and the start of the loop.
4057 INSN is the insn containing X. */
4060 valid_initial_value_p (x
, insn
, call_seen
, loop_start
)
4069 /* Only consider pseudos we know about initialized in insns whose luids
4071 if (GET_CODE (x
) != REG
4072 || REGNO (x
) >= max_reg_before_loop
)
4075 /* Don't use call-clobbered registers across a call which clobbers it. On
4076 some machines, don't use any hard registers at all. */
4077 if (REGNO (x
) < FIRST_PSEUDO_REGISTER
4078 #ifndef SMALL_REGISTER_CLASSES
4079 && call_used_regs
[REGNO (x
)] && call_seen
4084 /* Don't use registers that have been clobbered before the start of the
4086 if (reg_set_between_p (x
, insn
, loop_start
))
4092 /* Scan X for memory refs and check each memory address
4093 as a possible giv. INSN is the insn whose pattern X comes from.
4094 NOT_EVERY_ITERATION is 1 if the insn might not be executed during
4095 every loop iteration. */
4098 find_mem_givs (x
, insn
, not_every_iteration
, loop_start
, loop_end
)
4101 int not_every_iteration
;
4102 rtx loop_start
, loop_end
;
4105 register enum rtx_code code
;
4111 code
= GET_CODE (x
);
4135 benefit
= general_induction_var (XEXP (x
, 0),
4136 &src_reg
, &add_val
, &mult_val
);
4138 /* Don't make a DEST_ADDR giv with mult_val == 1 && add_val == 0.
4139 Such a giv isn't useful. */
4140 if (benefit
> 0 && (mult_val
!= const1_rtx
|| add_val
!= const0_rtx
))
4142 /* Found one; record it. */
4144 = (struct induction
*) oballoc (sizeof (struct induction
));
4146 record_giv (v
, insn
, src_reg
, addr_placeholder
, mult_val
,
4147 add_val
, benefit
, DEST_ADDR
, not_every_iteration
,
4148 &XEXP (x
, 0), loop_start
, loop_end
);
4150 v
->mem_mode
= GET_MODE (x
);
4156 /* Recursively scan the subexpressions for other mem refs. */
4158 fmt
= GET_RTX_FORMAT (code
);
4159 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
4161 find_mem_givs (XEXP (x
, i
), insn
, not_every_iteration
, loop_start
,
4163 else if (fmt
[i
] == 'E')
4164 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
4165 find_mem_givs (XVECEXP (x
, i
, j
), insn
, not_every_iteration
,
4166 loop_start
, loop_end
);
4169 /* Fill in the data about one biv update.
4170 V is the `struct induction' in which we record the biv. (It is
4171 allocated by the caller, with alloca.)
4172 INSN is the insn that sets it.
4173 DEST_REG is the biv's reg.
4175 MULT_VAL is const1_rtx if the biv is being incremented here, in which case
4176 INC_VAL is the increment. Otherwise, MULT_VAL is const0_rtx and the biv is
4177 being set to INC_VAL.
4179 NOT_EVERY_ITERATION is nonzero if this biv update is not know to be
4180 executed every iteration; MAYBE_MULTIPLE is nonzero if this biv update
4181 can be executed more than once per iteration. If MAYBE_MULTIPLE
4182 and NOT_EVERY_ITERATION are both zero, we know that the biv update is
4183 executed exactly once per iteration. */
4186 record_biv (v
, insn
, dest_reg
, inc_val
, mult_val
,
4187 not_every_iteration
, maybe_multiple
)
4188 struct induction
*v
;
4193 int not_every_iteration
;
4196 struct iv_class
*bl
;
4199 v
->src_reg
= dest_reg
;
4200 v
->dest_reg
= dest_reg
;
4201 v
->mult_val
= mult_val
;
4202 v
->add_val
= inc_val
;
4203 v
->mode
= GET_MODE (dest_reg
);
4204 v
->always_computable
= ! not_every_iteration
;
4205 v
->maybe_multiple
= maybe_multiple
;
4207 /* Add this to the reg's iv_class, creating a class
4208 if this is the first incrementation of the reg. */
4210 bl
= reg_biv_class
[REGNO (dest_reg
)];
4213 /* Create and initialize new iv_class. */
4215 bl
= (struct iv_class
*) oballoc (sizeof (struct iv_class
));
4217 bl
->regno
= REGNO (dest_reg
);
4223 /* Set initial value to the reg itself. */
4224 bl
->initial_value
= dest_reg
;
4225 /* We haven't seen the initializing insn yet */
4228 bl
->initial_test
= 0;
4229 bl
->incremented
= 0;
4233 bl
->total_benefit
= 0;
4235 /* Add this class to loop_iv_list. */
4236 bl
->next
= loop_iv_list
;
4239 /* Put it in the array of biv register classes. */
4240 reg_biv_class
[REGNO (dest_reg
)] = bl
;
4243 /* Update IV_CLASS entry for this biv. */
4244 v
->next_iv
= bl
->biv
;
4247 if (mult_val
== const1_rtx
)
4248 bl
->incremented
= 1;
4250 if (loop_dump_stream
)
4252 fprintf (loop_dump_stream
,
4253 "Insn %d: possible biv, reg %d,",
4254 INSN_UID (insn
), REGNO (dest_reg
));
4255 if (GET_CODE (inc_val
) == CONST_INT
)
4256 fprintf (loop_dump_stream
, " const = %d\n",
4260 fprintf (loop_dump_stream
, " const = ");
4261 print_rtl (loop_dump_stream
, inc_val
);
4262 fprintf (loop_dump_stream
, "\n");
4267 /* Fill in the data about one giv.
4268 V is the `struct induction' in which we record the giv. (It is
4269 allocated by the caller, with alloca.)
4270 INSN is the insn that sets it.
4271 BENEFIT estimates the savings from deleting this insn.
4272 TYPE is DEST_REG or DEST_ADDR; it says whether the giv is computed
4273 into a register or is used as a memory address.
4275 SRC_REG is the biv reg which the giv is computed from.
4276 DEST_REG is the giv's reg (if the giv is stored in a reg).
4277 MULT_VAL and ADD_VAL are the coefficients used to compute the giv.
4278 LOCATION points to the place where this giv's value appears in INSN. */
4281 record_giv (v
, insn
, src_reg
, dest_reg
, mult_val
, add_val
, benefit
,
4282 type
, not_every_iteration
, location
, loop_start
, loop_end
)
4283 struct induction
*v
;
4287 rtx mult_val
, add_val
;
4290 int not_every_iteration
;
4292 rtx loop_start
, loop_end
;
4294 struct induction
*b
;
4295 struct iv_class
*bl
;
4296 rtx set
= single_set (insn
);
4300 v
->src_reg
= src_reg
;
4302 v
->dest_reg
= dest_reg
;
4303 v
->mult_val
= mult_val
;
4304 v
->add_val
= add_val
;
4305 v
->benefit
= benefit
;
4306 v
->location
= location
;
4308 v
->combined_with
= 0;
4309 v
->maybe_multiple
= 0;
4311 v
->derive_adjustment
= 0;
4318 /* The v->always_computable field is used in update_giv_derive, to
4319 determine whether a giv can be used to derive another giv. For a
4320 DEST_REG giv, INSN computes a new value for the giv, so its value
4321 isn't computable if INSN insn't executed every iteration.
4322 However, for a DEST_ADDR giv, INSN merely uses the value of the giv;
4323 it does not compute a new value. Hence the value is always computable
4324 regardless of whether INSN is executed each iteration. */
4326 if (type
== DEST_ADDR
)
4327 v
->always_computable
= 1;
4329 v
->always_computable
= ! not_every_iteration
;
4331 if (type
== DEST_ADDR
)
4333 v
->mode
= GET_MODE (*location
);
4337 else /* type == DEST_REG */
4339 v
->mode
= GET_MODE (SET_DEST (set
));
4341 v
->lifetime
= (uid_luid
[regno_last_uid
[REGNO (dest_reg
)]]
4342 - uid_luid
[regno_first_uid
[REGNO (dest_reg
)]]);
4344 v
->times_used
= n_times_used
[REGNO (dest_reg
)];
4346 /* If the lifetime is zero, it means that this register is
4347 really a dead store. So mark this as a giv that can be
4348 ignored. This will not prevent the biv from being eliminated. */
4349 if (v
->lifetime
== 0)
4352 reg_iv_type
[REGNO (dest_reg
)] = GENERAL_INDUCT
;
4353 reg_iv_info
[REGNO (dest_reg
)] = v
;
4356 /* Add the giv to the class of givs computed from one biv. */
4358 bl
= reg_biv_class
[REGNO (src_reg
)];
4361 v
->next_iv
= bl
->giv
;
4363 /* Don't count DEST_ADDR. This is supposed to count the number of
4364 insns that calculate givs. */
4365 if (type
== DEST_REG
)
4367 bl
->total_benefit
+= benefit
;
4370 /* Fatal error, biv missing for this giv? */
4373 if (type
== DEST_ADDR
)
4377 /* The giv can be replaced outright by the reduced register only if all
4378 of the following conditions are true:
4379 - the insn that sets the giv is always executed on any iteration
4380 on which the giv is used at all
4381 (there are two ways to deduce this:
4382 either the insn is executed on every iteration,
4383 or all uses follow that insn in the same basic block),
4384 - the giv is not used outside the loop
4385 - no assignments to the biv occur during the giv's lifetime. */
4387 if (regno_first_uid
[REGNO (dest_reg
)] == INSN_UID (insn
)
4388 /* Previous line always fails if INSN was moved by loop opt. */
4389 && uid_luid
[regno_last_uid
[REGNO (dest_reg
)]] < INSN_LUID (loop_end
)
4390 && (! not_every_iteration
4391 || last_use_this_basic_block (dest_reg
, insn
)))
4393 /* Now check that there are no assignments to the biv within the
4394 giv's lifetime. This requires two separate checks. */
4396 /* Check each biv update, and fail if any are between the first
4397 and last use of the giv.
4399 If this loop contains an inner loop that was unrolled, then
4400 the insn modifying the biv may have been emitted by the loop
4401 unrolling code, and hence does not have a valid luid. Just
4402 mark the biv as not replaceable in this case. It is not very
4403 useful as a biv, because it is used in two different loops.
4404 It is very unlikely that we would be able to optimize the giv
4405 using this biv anyways. */
4408 for (b
= bl
->biv
; b
; b
= b
->next_iv
)
4410 if (INSN_UID (b
->insn
) >= max_uid_for_loop
4411 || ((uid_luid
[INSN_UID (b
->insn
)]
4412 >= uid_luid
[regno_first_uid
[REGNO (dest_reg
)]])
4413 && (uid_luid
[INSN_UID (b
->insn
)]
4414 <= uid_luid
[regno_last_uid
[REGNO (dest_reg
)]])))
4417 v
->not_replaceable
= 1;
4422 /* If there are any backwards branches that go from after the
4423 biv update to before it, then this giv is not replaceable. */
4425 for (b
= bl
->biv
; b
; b
= b
->next_iv
)
4426 if (back_branch_in_range_p (b
->insn
, loop_start
, loop_end
))
4429 v
->not_replaceable
= 1;
4435 /* May still be replaceable, we don't have enough info here to
4438 v
->not_replaceable
= 0;
4442 if (loop_dump_stream
)
4444 if (type
== DEST_REG
)
4445 fprintf (loop_dump_stream
, "Insn %d: giv reg %d",
4446 INSN_UID (insn
), REGNO (dest_reg
));
4448 fprintf (loop_dump_stream
, "Insn %d: dest address",
4451 fprintf (loop_dump_stream
, " src reg %d benefit %d",
4452 REGNO (src_reg
), v
->benefit
);
4453 fprintf (loop_dump_stream
, " used %d lifetime %d",
4454 v
->times_used
, v
->lifetime
);
4457 fprintf (loop_dump_stream
, " replaceable");
4459 if (GET_CODE (mult_val
) == CONST_INT
)
4460 fprintf (loop_dump_stream
, " mult %d",
4464 fprintf (loop_dump_stream
, " mult ");
4465 print_rtl (loop_dump_stream
, mult_val
);
4468 if (GET_CODE (add_val
) == CONST_INT
)
4469 fprintf (loop_dump_stream
, " add %d",
4473 fprintf (loop_dump_stream
, " add ");
4474 print_rtl (loop_dump_stream
, add_val
);
4478 if (loop_dump_stream
)
4479 fprintf (loop_dump_stream
, "\n");
4484 /* All this does is determine whether a giv can be made replaceable because
4485 its final value can be calculated. This code can not be part of record_giv
4486 above, because final_giv_value requires that the number of loop iterations
4487 be known, and that can not be accurately calculated until after all givs
4488 have been identified. */
4491 check_final_value (v
, loop_start
, loop_end
)
4492 struct induction
*v
;
4493 rtx loop_start
, loop_end
;
4495 struct iv_class
*bl
;
4496 rtx final_value
= 0;
4498 bl
= reg_biv_class
[REGNO (v
->src_reg
)];
4500 /* DEST_ADDR givs will never reach here, because they are always marked
4501 replaceable above in record_giv. */
4503 /* The giv can be replaced outright by the reduced register only if all
4504 of the following conditions are true:
4505 - the insn that sets the giv is always executed on any iteration
4506 on which the giv is used at all
4507 (there are two ways to deduce this:
4508 either the insn is executed on every iteration,
4509 or all uses follow that insn in the same basic block),
4510 - its final value can be calculated (this condition is different
4511 than the one above in record_giv)
4512 - no assignments to the biv occur during the giv's lifetime. */
4515 /* This is only called now when replaceable is known to be false. */
4516 /* Clear replaceable, so that it won't confuse final_giv_value. */
4520 if ((final_value
= final_giv_value (v
, loop_start
, loop_end
))
4521 && (v
->always_computable
|| last_use_this_basic_block (v
->dest_reg
, v
->insn
)))
4523 int biv_increment_seen
= 0;
4529 /* When trying to determine whether or not a biv increment occurs
4530 during the lifetime of the giv, we can ignore uses of the variable
4531 outside the loop because final_value is true. Hence we can not
4532 use regno_last_uid and regno_first_uid as above in record_giv. */
4534 /* Search the loop to determine whether any assignments to the
4535 biv occur during the giv's lifetime. Start with the insn
4536 that sets the giv, and search around the loop until we come
4537 back to that insn again.
4539 Also fail if there is a jump within the giv's lifetime that jumps
4540 to somewhere outside the lifetime but still within the loop. This
4541 catches spaghetti code where the execution order is not linear, and
4542 hence the above test fails. Here we assume that the giv lifetime
4543 does not extend from one iteration of the loop to the next, so as
4544 to make the test easier. Since the lifetime isn't known yet,
4545 this requires two loops. See also record_giv above. */
4547 last_giv_use
= v
->insn
;
4553 p
= NEXT_INSN (loop_start
);
4557 if (GET_CODE (p
) == INSN
|| GET_CODE (p
) == JUMP_INSN
4558 || GET_CODE (p
) == CALL_INSN
)
4560 if (biv_increment_seen
)
4562 if (reg_mentioned_p (v
->dest_reg
, PATTERN (p
)))
4565 v
->not_replaceable
= 1;
4569 else if (GET_CODE (PATTERN (p
)) == SET
4570 && SET_DEST (PATTERN (p
)) == v
->src_reg
)
4571 biv_increment_seen
= 1;
4572 else if (reg_mentioned_p (v
->dest_reg
, PATTERN (p
)))
4577 /* Now that the lifetime of the giv is known, check for branches
4578 from within the lifetime to outside the lifetime if it is still
4588 p
= NEXT_INSN (loop_start
);
4589 if (p
== last_giv_use
)
4592 if (GET_CODE (p
) == JUMP_INSN
&& JUMP_LABEL (p
)
4593 && LABEL_NAME (JUMP_LABEL (p
))
4594 && ((INSN_LUID (JUMP_LABEL (p
)) < INSN_LUID (v
->insn
)
4595 && INSN_LUID (JUMP_LABEL (p
)) > INSN_LUID (loop_start
))
4596 || (INSN_LUID (JUMP_LABEL (p
)) > INSN_LUID (last_giv_use
)
4597 && INSN_LUID (JUMP_LABEL (p
)) < INSN_LUID (loop_end
))))
4600 v
->not_replaceable
= 1;
4602 if (loop_dump_stream
)
4603 fprintf (loop_dump_stream
,
4604 "Found branch outside giv lifetime.\n");
4611 /* If it is replaceable, then save the final value. */
4613 v
->final_value
= final_value
;
4616 if (loop_dump_stream
&& v
->replaceable
)
4617 fprintf (loop_dump_stream
, "Insn %d: giv reg %d final_value replaceable\n",
4618 INSN_UID (v
->insn
), REGNO (v
->dest_reg
));
4621 /* Update the status of whether a giv can derive other givs.
4623 We need to do something special if there is or may be an update to the biv
4624 between the time the giv is defined and the time it is used to derive
4627 In addition, a giv that is only conditionally set is not allowed to
4628 derive another giv once a label has been passed.
4630 The cases we look at are when a label or an update to a biv is passed. */
4633 update_giv_derive (p
)
4636 struct iv_class
*bl
;
4637 struct induction
*biv
, *giv
;
4641 /* Search all IV classes, then all bivs, and finally all givs.
4643 There are three cases we are concerned with. First we have the situation
4644 of a giv that is only updated conditionally. In that case, it may not
4645 derive any givs after a label is passed.
4647 The second case is when a biv update occurs, or may occur, after the
4648 definition of a giv. For certain biv updates (see below) that are
4649 known to occur between the giv definition and use, we can adjust the
4650 giv definition. For others, or when the biv update is conditional,
4651 we must prevent the giv from deriving any other givs. There are two
4652 sub-cases within this case.
4654 If this is a label, we are concerned with any biv update that is done
4655 conditionally, since it may be done after the giv is defined followed by
4656 a branch here (actually, we need to pass both a jump and a label, but
4657 this extra tracking doesn't seem worth it).
4659 If this is a jump, we are concerned about any biv update that may be
4660 executed multiple times. We are actually only concerned about
4661 backward jumps, but it is probably not worth performing the test
4662 on the jump again here.
4664 If this is a biv update, we must adjust the giv status to show that a
4665 subsequent biv update was performed. If this adjustment cannot be done,
4666 the giv cannot derive further givs. */
4668 for (bl
= loop_iv_list
; bl
; bl
= bl
->next
)
4669 for (biv
= bl
->biv
; biv
; biv
= biv
->next_iv
)
4670 if (GET_CODE (p
) == CODE_LABEL
|| GET_CODE (p
) == JUMP_INSN
4673 for (giv
= bl
->giv
; giv
; giv
= giv
->next_iv
)
4675 /* If cant_derive is already true, there is no point in
4676 checking all of these conditions again. */
4677 if (giv
->cant_derive
)
4680 /* If this giv is conditionally set and we have passed a label,
4681 it cannot derive anything. */
4682 if (GET_CODE (p
) == CODE_LABEL
&& ! giv
->always_computable
)
4683 giv
->cant_derive
= 1;
4685 /* Skip givs that have mult_val == 0, since
4686 they are really invariants. Also skip those that are
4687 replaceable, since we know their lifetime doesn't contain
4689 else if (giv
->mult_val
== const0_rtx
|| giv
->replaceable
)
4692 /* The only way we can allow this giv to derive another
4693 is if this is a biv increment and we can form the product
4694 of biv->add_val and giv->mult_val. In this case, we will
4695 be able to compute a compensation. */
4696 else if (biv
->insn
== p
)
4700 if (biv
->mult_val
== const1_rtx
)
4701 tem
= simplify_giv_expr (gen_rtx (MULT
, giv
->mode
,
4706 if (tem
&& giv
->derive_adjustment
)
4707 tem
= simplify_giv_expr (gen_rtx (PLUS
, giv
->mode
, tem
,
4708 giv
->derive_adjustment
),
4711 giv
->derive_adjustment
= tem
;
4713 giv
->cant_derive
= 1;
4715 else if ((GET_CODE (p
) == CODE_LABEL
&& ! biv
->always_computable
)
4716 || (GET_CODE (p
) == JUMP_INSN
&& biv
->maybe_multiple
))
4717 giv
->cant_derive
= 1;
4722 /* Check whether an insn is an increment legitimate for a basic induction var.
4723 X is the source of insn P, or a part of it.
4724 MODE is the mode in which X should be interpreted.
4726 DEST_REG is the putative biv, also the destination of the insn.
4727 We accept patterns of these forms:
4728 REG = REG + INVARIANT (includes REG = REG - CONSTANT)
4729 REG = INVARIANT + REG
4731 If X is suitable, we return 1, set *MULT_VAL to CONST1_RTX,
4732 and store the additive term into *INC_VAL.
4734 If X is an assignment of an invariant into DEST_REG, we set
4735 *MULT_VAL to CONST0_RTX, and store the invariant into *INC_VAL.
4737 We also want to detect a BIV when it corresponds to a variable
4738 whose mode was promoted via PROMOTED_MODE. In that case, an increment
4739 of the variable may be a PLUS that adds a SUBREG of that variable to
4740 an invariant and then sign- or zero-extends the result of the PLUS
4743 Most GIVs in such cases will be in the promoted mode, since that is the
4744 probably the natural computation mode (and almost certainly the mode
4745 used for addresses) on the machine. So we view the pseudo-reg containing
4746 the variable as the BIV, as if it were simply incremented.
4748 Note that treating the entire pseudo as a BIV will result in making
4749 simple increments to any GIVs based on it. However, if the variable
4750 overflows in its declared mode but not its promoted mode, the result will
4751 be incorrect. This is acceptable if the variable is signed, since
4752 overflows in such cases are undefined, but not if it is unsigned, since
4753 those overflows are defined. So we only check for SIGN_EXTEND and
4756 If we cannot find a biv, we return 0. */
4759 basic_induction_var (x
, mode
, dest_reg
, p
, inc_val
, mult_val
)
4761 enum machine_mode mode
;
4767 register enum rtx_code code
;
4771 code
= GET_CODE (x
);
4775 if (XEXP (x
, 0) == dest_reg
4776 || (GET_CODE (XEXP (x
, 0)) == SUBREG
4777 && SUBREG_PROMOTED_VAR_P (XEXP (x
, 0))
4778 && SUBREG_REG (XEXP (x
, 0)) == dest_reg
))
4780 else if (XEXP (x
, 1) == dest_reg
4781 || (GET_CODE (XEXP (x
, 1)) == SUBREG
4782 && SUBREG_PROMOTED_VAR_P (XEXP (x
, 1))
4783 && SUBREG_REG (XEXP (x
, 1)) == dest_reg
))
4788 if (invariant_p (arg
) != 1)
4791 *inc_val
= convert_modes (GET_MODE (dest_reg
), GET_MODE (x
), arg
, 0);
4792 *mult_val
= const1_rtx
;
4796 /* If this is a SUBREG for a promoted variable, check the inner
4798 if (SUBREG_PROMOTED_VAR_P (x
))
4799 return basic_induction_var (SUBREG_REG (x
), GET_MODE (SUBREG_REG (x
)),
4800 dest_reg
, p
, inc_val
, mult_val
);
4803 /* If this register is assigned in the previous insn, look at its
4804 source, but don't go outside the loop or past a label. */
4806 for (insn
= PREV_INSN (p
);
4807 (insn
&& GET_CODE (insn
) == NOTE
4808 && NOTE_LINE_NUMBER (insn
) != NOTE_INSN_LOOP_BEG
);
4809 insn
= PREV_INSN (insn
))
4813 set
= single_set (insn
);
4816 && (SET_DEST (set
) == x
4817 || (GET_CODE (SET_DEST (set
)) == SUBREG
4818 && (GET_MODE_SIZE (GET_MODE (SET_DEST (set
)))
4820 && SUBREG_REG (SET_DEST (set
)) == x
)))
4821 return basic_induction_var (SET_SRC (set
),
4822 (GET_MODE (SET_SRC (set
)) == VOIDmode
4824 : GET_MODE (SET_SRC (set
))),
4827 /* ... fall through ... */
4829 /* Can accept constant setting of biv only when inside inner most loop.
4830 Otherwise, a biv of an inner loop may be incorrectly recognized
4831 as a biv of the outer loop,
4832 causing code to be moved INTO the inner loop. */
4834 if (invariant_p (x
) != 1)
4839 if (loops_enclosed
== 1)
4841 /* Possible bug here? Perhaps we don't know the mode of X. */
4842 *inc_val
= convert_modes (GET_MODE (dest_reg
), mode
, x
, 0);
4843 *mult_val
= const0_rtx
;
4850 return basic_induction_var (XEXP (x
, 0), GET_MODE (XEXP (x
, 0)),
4851 dest_reg
, p
, inc_val
, mult_val
);
4853 /* Similar, since this can be a sign extension. */
4854 for (insn
= PREV_INSN (p
);
4855 (insn
&& GET_CODE (insn
) == NOTE
4856 && NOTE_LINE_NUMBER (insn
) != NOTE_INSN_LOOP_BEG
);
4857 insn
= PREV_INSN (insn
))
4861 set
= single_set (insn
);
4863 if (set
&& SET_DEST (set
) == XEXP (x
, 0)
4864 && GET_CODE (XEXP (x
, 1)) == CONST_INT
4865 && INTVAL (XEXP (x
, 1)) >= 0
4866 && GET_CODE (SET_SRC (set
)) == ASHIFT
4867 && XEXP (x
, 1) == XEXP (SET_SRC (set
), 1))
4868 return basic_induction_var (XEXP (SET_SRC (set
), 0),
4869 GET_MODE (XEXP (x
, 0)),
4870 dest_reg
, insn
, inc_val
, mult_val
);
4878 /* A general induction variable (giv) is any quantity that is a linear
4879 function of a basic induction variable,
4880 i.e. giv = biv * mult_val + add_val.
4881 The coefficients can be any loop invariant quantity.
4882 A giv need not be computed directly from the biv;
4883 it can be computed by way of other givs. */
4885 /* Determine whether X computes a giv.
4886 If it does, return a nonzero value
4887 which is the benefit from eliminating the computation of X;
4888 set *SRC_REG to the register of the biv that it is computed from;
4889 set *ADD_VAL and *MULT_VAL to the coefficients,
4890 such that the value of X is biv * mult + add; */
4893 general_induction_var (x
, src_reg
, add_val
, mult_val
)
4903 /* If this is an invariant, forget it, it isn't a giv. */
4904 if (invariant_p (x
) == 1)
4907 /* See if the expression could be a giv and get its form.
4908 Mark our place on the obstack in case we don't find a giv. */
4909 storage
= (char *) oballoc (0);
4910 x
= simplify_giv_expr (x
, &benefit
);
4917 switch (GET_CODE (x
))
4921 /* Since this is now an invariant and wasn't before, it must be a giv
4922 with MULT_VAL == 0. It doesn't matter which BIV we associate this
4924 *src_reg
= loop_iv_list
->biv
->dest_reg
;
4925 *mult_val
= const0_rtx
;
4930 /* This is equivalent to a BIV. */
4932 *mult_val
= const1_rtx
;
4933 *add_val
= const0_rtx
;
4937 /* Either (plus (biv) (invar)) or
4938 (plus (mult (biv) (invar_1)) (invar_2)). */
4939 if (GET_CODE (XEXP (x
, 0)) == MULT
)
4941 *src_reg
= XEXP (XEXP (x
, 0), 0);
4942 *mult_val
= XEXP (XEXP (x
, 0), 1);
4946 *src_reg
= XEXP (x
, 0);
4947 *mult_val
= const1_rtx
;
4949 *add_val
= XEXP (x
, 1);
4953 /* ADD_VAL is zero. */
4954 *src_reg
= XEXP (x
, 0);
4955 *mult_val
= XEXP (x
, 1);
4956 *add_val
= const0_rtx
;
4963 /* Remove any enclosing USE from ADD_VAL and MULT_VAL (there will be
4964 unless they are CONST_INT). */
4965 if (GET_CODE (*add_val
) == USE
)
4966 *add_val
= XEXP (*add_val
, 0);
4967 if (GET_CODE (*mult_val
) == USE
)
4968 *mult_val
= XEXP (*mult_val
, 0);
4970 benefit
+= rtx_cost (orig_x
, SET
);
4972 /* Always return some benefit if this is a giv so it will be detected
4973 as such. This allows elimination of bivs that might otherwise
4974 not be eliminated. */
4975 return benefit
== 0 ? 1 : benefit
;
4978 /* Given an expression, X, try to form it as a linear function of a biv.
4979 We will canonicalize it to be of the form
4980 (plus (mult (BIV) (invar_1))
4982 with possible degeneracies.
4984 The invariant expressions must each be of a form that can be used as a
4985 machine operand. We surround then with a USE rtx (a hack, but localized
4986 and certainly unambiguous!) if not a CONST_INT for simplicity in this
4987 routine; it is the caller's responsibility to strip them.
4989 If no such canonicalization is possible (i.e., two biv's are used or an
4990 expression that is neither invariant nor a biv or giv), this routine
4993 For a non-zero return, the result will have a code of CONST_INT, USE,
4994 REG (for a BIV), PLUS, or MULT. No other codes will occur.
4996 *BENEFIT will be incremented by the benefit of any sub-giv encountered. */
4999 simplify_giv_expr (x
, benefit
)
5003 enum machine_mode mode
= GET_MODE (x
);
5007 /* If this is not an integer mode, or if we cannot do arithmetic in this
5008 mode, this can't be a giv. */
5009 if (mode
!= VOIDmode
5010 && (GET_MODE_CLASS (mode
) != MODE_INT
5011 || GET_MODE_BITSIZE (mode
) > HOST_BITS_PER_WIDE_INT
))
5014 switch (GET_CODE (x
))
5017 arg0
= simplify_giv_expr (XEXP (x
, 0), benefit
);
5018 arg1
= simplify_giv_expr (XEXP (x
, 1), benefit
);
5019 if (arg0
== 0 || arg1
== 0)
5022 /* Put constant last, CONST_INT last if both constant. */
5023 if ((GET_CODE (arg0
) == USE
5024 || GET_CODE (arg0
) == CONST_INT
)
5025 && GET_CODE (arg1
) != CONST_INT
)
5026 tem
= arg0
, arg0
= arg1
, arg1
= tem
;
5028 /* Handle addition of zero, then addition of an invariant. */
5029 if (arg1
== const0_rtx
)
5031 else if (GET_CODE (arg1
) == CONST_INT
|| GET_CODE (arg1
) == USE
)
5032 switch (GET_CODE (arg0
))
5036 /* Both invariant. Only valid if sum is machine operand.
5037 First strip off possible USE on first operand. */
5038 if (GET_CODE (arg0
) == USE
)
5039 arg0
= XEXP (arg0
, 0);
5042 if (CONSTANT_P (arg0
) && GET_CODE (arg1
) == CONST_INT
)
5044 tem
= plus_constant (arg0
, INTVAL (arg1
));
5045 if (GET_CODE (tem
) != CONST_INT
)
5046 tem
= gen_rtx (USE
, mode
, tem
);
5053 /* biv + invar or mult + invar. Return sum. */
5054 return gen_rtx (PLUS
, mode
, arg0
, arg1
);
5057 /* (a + invar_1) + invar_2. Associate. */
5058 return simplify_giv_expr (gen_rtx (PLUS
, mode
,
5060 gen_rtx (PLUS
, mode
,
5061 XEXP (arg0
, 1), arg1
)),
5068 /* Each argument must be either REG, PLUS, or MULT. Convert REG to
5069 MULT to reduce cases. */
5070 if (GET_CODE (arg0
) == REG
)
5071 arg0
= gen_rtx (MULT
, mode
, arg0
, const1_rtx
);
5072 if (GET_CODE (arg1
) == REG
)
5073 arg1
= gen_rtx (MULT
, mode
, arg1
, const1_rtx
);
5075 /* Now have PLUS + PLUS, PLUS + MULT, MULT + PLUS, or MULT + MULT.
5076 Put a MULT first, leaving PLUS + PLUS, MULT + PLUS, or MULT + MULT.
5077 Recurse to associate the second PLUS. */
5078 if (GET_CODE (arg1
) == MULT
)
5079 tem
= arg0
, arg0
= arg1
, arg1
= tem
;
5081 if (GET_CODE (arg1
) == PLUS
)
5082 return simplify_giv_expr (gen_rtx (PLUS
, mode
,
5083 gen_rtx (PLUS
, mode
,
5084 arg0
, XEXP (arg1
, 0)),
5088 /* Now must have MULT + MULT. Distribute if same biv, else not giv. */
5089 if (GET_CODE (arg0
) != MULT
|| GET_CODE (arg1
) != MULT
)
5092 if (XEXP (arg0
, 0) != XEXP (arg1
, 0))
5095 return simplify_giv_expr (gen_rtx (MULT
, mode
,
5097 gen_rtx (PLUS
, mode
,
5103 /* Handle "a - b" as "a + b * (-1)". */
5104 return simplify_giv_expr (gen_rtx (PLUS
, mode
,
5106 gen_rtx (MULT
, mode
,
5107 XEXP (x
, 1), constm1_rtx
)),
5111 arg0
= simplify_giv_expr (XEXP (x
, 0), benefit
);
5112 arg1
= simplify_giv_expr (XEXP (x
, 1), benefit
);
5113 if (arg0
== 0 || arg1
== 0)
5116 /* Put constant last, CONST_INT last if both constant. */
5117 if ((GET_CODE (arg0
) == USE
|| GET_CODE (arg0
) == CONST_INT
)
5118 && GET_CODE (arg1
) != CONST_INT
)
5119 tem
= arg0
, arg0
= arg1
, arg1
= tem
;
5121 /* If second argument is not now constant, not giv. */
5122 if (GET_CODE (arg1
) != USE
&& GET_CODE (arg1
) != CONST_INT
)
5125 /* Handle multiply by 0 or 1. */
5126 if (arg1
== const0_rtx
)
5129 else if (arg1
== const1_rtx
)
5132 switch (GET_CODE (arg0
))
5135 /* biv * invar. Done. */
5136 return gen_rtx (MULT
, mode
, arg0
, arg1
);
5139 /* Product of two constants. */
5140 return GEN_INT (INTVAL (arg0
) * INTVAL (arg1
));
5143 /* invar * invar. Not giv. */
5147 /* (a * invar_1) * invar_2. Associate. */
5148 return simplify_giv_expr (gen_rtx (MULT
, mode
,
5150 gen_rtx (MULT
, mode
,
5151 XEXP (arg0
, 1), arg1
)),
5155 /* (a + invar_1) * invar_2. Distribute. */
5156 return simplify_giv_expr (gen_rtx (PLUS
, mode
,
5157 gen_rtx (MULT
, mode
,
5158 XEXP (arg0
, 0), arg1
),
5159 gen_rtx (MULT
, mode
,
5160 XEXP (arg0
, 1), arg1
)),
5168 /* Shift by constant is multiply by power of two. */
5169 if (GET_CODE (XEXP (x
, 1)) != CONST_INT
)
5172 return simplify_giv_expr (gen_rtx (MULT
, mode
,
5174 GEN_INT ((HOST_WIDE_INT
) 1
5175 << INTVAL (XEXP (x
, 1)))),
5179 /* "-a" is "a * (-1)" */
5180 return simplify_giv_expr (gen_rtx (MULT
, mode
, XEXP (x
, 0), constm1_rtx
),
5184 /* "~a" is "-a - 1". Silly, but easy. */
5185 return simplify_giv_expr (gen_rtx (MINUS
, mode
,
5186 gen_rtx (NEG
, mode
, XEXP (x
, 0)),
5191 /* Already in proper form for invariant. */
5195 /* If this is a new register, we can't deal with it. */
5196 if (REGNO (x
) >= max_reg_before_loop
)
5199 /* Check for biv or giv. */
5200 switch (reg_iv_type
[REGNO (x
)])
5204 case GENERAL_INDUCT
:
5206 struct induction
*v
= reg_iv_info
[REGNO (x
)];
5208 /* Form expression from giv and add benefit. Ensure this giv
5209 can derive another and subtract any needed adjustment if so. */
5210 *benefit
+= v
->benefit
;
5214 tem
= gen_rtx (PLUS
, mode
, gen_rtx (MULT
, mode
,
5215 v
->src_reg
, v
->mult_val
),
5217 if (v
->derive_adjustment
)
5218 tem
= gen_rtx (MINUS
, mode
, tem
, v
->derive_adjustment
);
5219 return simplify_giv_expr (tem
, benefit
);
5223 /* Fall through to general case. */
5225 /* If invariant, return as USE (unless CONST_INT).
5226 Otherwise, not giv. */
5227 if (GET_CODE (x
) == USE
)
5230 if (invariant_p (x
) == 1)
5232 if (GET_CODE (x
) == CONST_INT
)
5235 return gen_rtx (USE
, mode
, x
);
5242 /* Help detect a giv that is calculated by several consecutive insns;
5246 The caller has already identified the first insn P as having a giv as dest;
5247 we check that all other insns that set the same register follow
5248 immediately after P, that they alter nothing else,
5249 and that the result of the last is still a giv.
5251 The value is 0 if the reg set in P is not really a giv.
5252 Otherwise, the value is the amount gained by eliminating
5253 all the consecutive insns that compute the value.
5255 FIRST_BENEFIT is the amount gained by eliminating the first insn, P.
5256 SRC_REG is the reg of the biv; DEST_REG is the reg of the giv.
5258 The coefficients of the ultimate giv value are stored in
5259 *MULT_VAL and *ADD_VAL. */
5262 consec_sets_giv (first_benefit
, p
, src_reg
, dest_reg
,
5277 /* Indicate that this is a giv so that we can update the value produced in
5278 each insn of the multi-insn sequence.
5280 This induction structure will be used only by the call to
5281 general_induction_var below, so we can allocate it on our stack.
5282 If this is a giv, our caller will replace the induct var entry with
5283 a new induction structure. */
5285 = (struct induction
*) alloca (sizeof (struct induction
));
5286 v
->src_reg
= src_reg
;
5287 v
->mult_val
= *mult_val
;
5288 v
->add_val
= *add_val
;
5289 v
->benefit
= first_benefit
;
5291 v
->derive_adjustment
= 0;
5293 reg_iv_type
[REGNO (dest_reg
)] = GENERAL_INDUCT
;
5294 reg_iv_info
[REGNO (dest_reg
)] = v
;
5296 count
= n_times_set
[REGNO (dest_reg
)] - 1;
5301 code
= GET_CODE (p
);
5303 /* If libcall, skip to end of call sequence. */
5304 if (code
== INSN
&& (temp
= find_reg_note (p
, REG_LIBCALL
, NULL_RTX
)))
5308 && (set
= single_set (p
))
5309 && GET_CODE (SET_DEST (set
)) == REG
5310 && SET_DEST (set
) == dest_reg
5311 && ((benefit
= general_induction_var (SET_SRC (set
), &src_reg
,
5313 /* Giv created by equivalent expression. */
5314 || ((temp
= find_reg_note (p
, REG_EQUAL
, NULL_RTX
))
5315 && (benefit
= general_induction_var (XEXP (temp
, 0), &src_reg
,
5316 add_val
, mult_val
))))
5317 && src_reg
== v
->src_reg
)
5319 if (find_reg_note (p
, REG_RETVAL
, NULL_RTX
))
5320 benefit
+= libcall_benefit (p
);
5323 v
->mult_val
= *mult_val
;
5324 v
->add_val
= *add_val
;
5325 v
->benefit
= benefit
;
5327 else if (code
!= NOTE
)
5329 /* Allow insns that set something other than this giv to a
5330 constant. Such insns are needed on machines which cannot
5331 include long constants and should not disqualify a giv. */
5333 && (set
= single_set (p
))
5334 && SET_DEST (set
) != dest_reg
5335 && CONSTANT_P (SET_SRC (set
)))
5338 reg_iv_type
[REGNO (dest_reg
)] = UNKNOWN_INDUCT
;
5346 /* Return an rtx, if any, that expresses giv G2 as a function of the register
5347 represented by G1. If no such expression can be found, or it is clear that
5348 it cannot possibly be a valid address, 0 is returned.
5350 To perform the computation, we note that
5353 where `v' is the biv.
5355 So G2 = (c/a) * G1 + (d - b*c/a) */
5359 express_from (g1
, g2
)
5360 struct induction
*g1
, *g2
;
5364 /* The value that G1 will be multiplied by must be a constant integer. Also,
5365 the only chance we have of getting a valid address is if b*c/a (see above
5366 for notation) is also an integer. */
5367 if (GET_CODE (g1
->mult_val
) != CONST_INT
5368 || GET_CODE (g2
->mult_val
) != CONST_INT
5369 || GET_CODE (g1
->add_val
) != CONST_INT
5370 || g1
->mult_val
== const0_rtx
5371 || INTVAL (g2
->mult_val
) % INTVAL (g1
->mult_val
) != 0)
5374 mult
= GEN_INT (INTVAL (g2
->mult_val
) / INTVAL (g1
->mult_val
));
5375 add
= plus_constant (g2
->add_val
, - INTVAL (g1
->add_val
) * INTVAL (mult
));
5377 /* Form simplified final result. */
5378 if (mult
== const0_rtx
)
5380 else if (mult
== const1_rtx
)
5381 mult
= g1
->dest_reg
;
5383 mult
= gen_rtx (MULT
, g2
->mode
, g1
->dest_reg
, mult
);
5385 if (add
== const0_rtx
)
5388 return gen_rtx (PLUS
, g2
->mode
, mult
, add
);
5392 /* Return 1 if giv G2 can be combined with G1. This means that G2 can use
5393 (either directly or via an address expression) a register used to represent
5394 G1. Set g2->new_reg to a represtation of G1 (normally just
5398 combine_givs_p (g1
, g2
)
5399 struct induction
*g1
, *g2
;
5403 /* If these givs are identical, they can be combined. */
5404 if (rtx_equal_p (g1
->mult_val
, g2
->mult_val
)
5405 && rtx_equal_p (g1
->add_val
, g2
->add_val
))
5407 g2
->new_reg
= g1
->dest_reg
;
5412 /* If G2 can be expressed as a function of G1 and that function is valid
5413 as an address and no more expensive than using a register for G2,
5414 the expression of G2 in terms of G1 can be used. */
5415 if (g2
->giv_type
== DEST_ADDR
5416 && (tem
= express_from (g1
, g2
)) != 0
5417 && memory_address_p (g2
->mem_mode
, tem
)
5418 && ADDRESS_COST (tem
) <= ADDRESS_COST (*g2
->location
))
5428 /* Check all pairs of givs for iv_class BL and see if any can be combined with
5429 any other. If so, point SAME to the giv combined with and set NEW_REG to
5430 be an expression (in terms of the other giv's DEST_REG) equivalent to the
5431 giv. Also, update BENEFIT and related fields for cost/benefit analysis. */
5435 struct iv_class
*bl
;
5437 struct induction
*g1
, *g2
;
5440 for (g1
= bl
->giv
; g1
; g1
= g1
->next_iv
)
5441 for (pass
= 0; pass
<= 1; pass
++)
5442 for (g2
= bl
->giv
; g2
; g2
= g2
->next_iv
)
5444 /* First try to combine with replaceable givs, then all givs. */
5445 && (g1
->replaceable
|| pass
== 1)
5446 /* If either has already been combined or is to be ignored, can't
5448 && ! g1
->ignore
&& ! g2
->ignore
&& ! g1
->same
&& ! g2
->same
5449 /* If something has been based on G2, G2 cannot itself be based
5450 on something else. */
5451 && ! g2
->combined_with
5452 && combine_givs_p (g1
, g2
))
5454 /* g2->new_reg set by `combine_givs_p' */
5456 g1
->combined_with
= 1;
5457 g1
->benefit
+= g2
->benefit
;
5458 /* ??? The new final_[bg]iv_value code does a much better job
5459 of finding replaceable giv's, and hence this code may no
5460 longer be necessary. */
5461 if (! g2
->replaceable
&& REG_USERVAR_P (g2
->dest_reg
))
5462 g1
->benefit
-= copy_cost
;
5463 g1
->lifetime
+= g2
->lifetime
;
5464 g1
->times_used
+= g2
->times_used
;
5466 if (loop_dump_stream
)
5467 fprintf (loop_dump_stream
, "giv at %d combined with giv at %d\n",
5468 INSN_UID (g2
->insn
), INSN_UID (g1
->insn
));
5472 /* EMIT code before INSERT_BEFORE to set REG = B * M + A. */
5475 emit_iv_add_mult (b
, m
, a
, reg
, insert_before
)
5476 rtx b
; /* initial value of basic induction variable */
5477 rtx m
; /* multiplicative constant */
5478 rtx a
; /* additive constant */
5479 rtx reg
; /* destination register */
5485 /* Prevent unexpected sharing of these rtx. */
5489 /* Increase the lifetime of any invariants moved further in code. */
5490 update_reg_last_use (a
, insert_before
);
5491 update_reg_last_use (b
, insert_before
);
5492 update_reg_last_use (m
, insert_before
);
5495 result
= expand_mult_add (b
, reg
, m
, a
, GET_MODE (reg
), 0);
5497 emit_move_insn (reg
, result
);
5498 seq
= gen_sequence ();
5501 emit_insn_before (seq
, insert_before
);
5504 /* Test whether A * B can be computed without
5505 an actual multiply insn. Value is 1 if so. */
5508 product_cheap_p (a
, b
)
5514 struct obstack
*old_rtl_obstack
= rtl_obstack
;
5515 char *storage
= (char *) obstack_alloc (&temp_obstack
, 0);
5518 /* If only one is constant, make it B. */
5519 if (GET_CODE (a
) == CONST_INT
)
5520 tmp
= a
, a
= b
, b
= tmp
;
5522 /* If first constant, both constant, so don't need multiply. */
5523 if (GET_CODE (a
) == CONST_INT
)
5526 /* If second not constant, neither is constant, so would need multiply. */
5527 if (GET_CODE (b
) != CONST_INT
)
5530 /* One operand is constant, so might not need multiply insn. Generate the
5531 code for the multiply and see if a call or multiply, or long sequence
5532 of insns is generated. */
5534 rtl_obstack
= &temp_obstack
;
5536 expand_mult (GET_MODE (a
), a
, b
, NULL_RTX
, 0);
5537 tmp
= gen_sequence ();
5540 if (GET_CODE (tmp
) == SEQUENCE
)
5542 if (XVEC (tmp
, 0) == 0)
5544 else if (XVECLEN (tmp
, 0) > 3)
5547 for (i
= 0; i
< XVECLEN (tmp
, 0); i
++)
5549 rtx insn
= XVECEXP (tmp
, 0, i
);
5551 if (GET_CODE (insn
) != INSN
5552 || (GET_CODE (PATTERN (insn
)) == SET
5553 && GET_CODE (SET_SRC (PATTERN (insn
))) == MULT
)
5554 || (GET_CODE (PATTERN (insn
)) == PARALLEL
5555 && GET_CODE (XVECEXP (PATTERN (insn
), 0, 0)) == SET
5556 && GET_CODE (SET_SRC (XVECEXP (PATTERN (insn
), 0, 0))) == MULT
))
5563 else if (GET_CODE (tmp
) == SET
5564 && GET_CODE (SET_SRC (tmp
)) == MULT
)
5566 else if (GET_CODE (tmp
) == PARALLEL
5567 && GET_CODE (XVECEXP (tmp
, 0, 0)) == SET
5568 && GET_CODE (SET_SRC (XVECEXP (tmp
, 0, 0))) == MULT
)
5571 /* Free any storage we obtained in generating this multiply and restore rtl
5572 allocation to its normal obstack. */
5573 obstack_free (&temp_obstack
, storage
);
5574 rtl_obstack
= old_rtl_obstack
;
5579 /* Check to see if loop can be terminated by a "decrement and branch until
5580 zero" instruction. If so, add a REG_NONNEG note to the branch insn if so.
5581 Also try reversing an increment loop to a decrement loop
5582 to see if the optimization can be performed.
5583 Value is nonzero if optimization was performed. */
5585 /* This is useful even if the architecture doesn't have such an insn,
5586 because it might change a loops which increments from 0 to n to a loop
5587 which decrements from n to 0. A loop that decrements to zero is usually
5588 faster than one that increments from zero. */
5590 /* ??? This could be rewritten to use some of the loop unrolling procedures,
5591 such as approx_final_value, biv_total_increment, loop_iterations, and
5592 final_[bg]iv_value. */
5595 check_dbra_loop (loop_end
, insn_count
, loop_start
)
5600 struct iv_class
*bl
;
5607 rtx before_comparison
;
5610 /* If last insn is a conditional branch, and the insn before tests a
5611 register value, try to optimize it. Otherwise, we can't do anything. */
5613 comparison
= get_condition_for_loop (PREV_INSN (loop_end
));
5614 if (comparison
== 0)
5617 /* Check all of the bivs to see if the compare uses one of them.
5618 Skip biv's set more than once because we can't guarantee that
5619 it will be zero on the last iteration. Also skip if the biv is
5620 used between its update and the test insn. */
5622 for (bl
= loop_iv_list
; bl
; bl
= bl
->next
)
5624 if (bl
->biv_count
== 1
5625 && bl
->biv
->dest_reg
== XEXP (comparison
, 0)
5626 && ! reg_used_between_p (regno_reg_rtx
[bl
->regno
], bl
->biv
->insn
,
5627 PREV_INSN (PREV_INSN (loop_end
))))
5634 /* Look for the case where the basic induction variable is always
5635 nonnegative, and equals zero on the last iteration.
5636 In this case, add a reg_note REG_NONNEG, which allows the
5637 m68k DBRA instruction to be used. */
5639 if (((GET_CODE (comparison
) == GT
5640 && GET_CODE (XEXP (comparison
, 1)) == CONST_INT
5641 && INTVAL (XEXP (comparison
, 1)) == -1)
5642 || (GET_CODE (comparison
) == NE
&& XEXP (comparison
, 1) == const0_rtx
))
5643 && GET_CODE (bl
->biv
->add_val
) == CONST_INT
5644 && INTVAL (bl
->biv
->add_val
) < 0)
5646 /* Initial value must be greater than 0,
5647 init_val % -dec_value == 0 to ensure that it equals zero on
5648 the last iteration */
5650 if (GET_CODE (bl
->initial_value
) == CONST_INT
5651 && INTVAL (bl
->initial_value
) > 0
5652 && (INTVAL (bl
->initial_value
) %
5653 (-INTVAL (bl
->biv
->add_val
))) == 0)
5655 /* register always nonnegative, add REG_NOTE to branch */
5656 REG_NOTES (PREV_INSN (loop_end
))
5657 = gen_rtx (EXPR_LIST
, REG_NONNEG
, NULL_RTX
,
5658 REG_NOTES (PREV_INSN (loop_end
)));
5664 /* If the decrement is 1 and the value was tested as >= 0 before
5665 the loop, then we can safely optimize. */
5666 for (p
= loop_start
; p
; p
= PREV_INSN (p
))
5668 if (GET_CODE (p
) == CODE_LABEL
)
5670 if (GET_CODE (p
) != JUMP_INSN
)
5673 before_comparison
= get_condition_for_loop (p
);
5674 if (before_comparison
5675 && XEXP (before_comparison
, 0) == bl
->biv
->dest_reg
5676 && GET_CODE (before_comparison
) == LT
5677 && XEXP (before_comparison
, 1) == const0_rtx
5678 && ! reg_set_between_p (bl
->biv
->dest_reg
, p
, loop_start
)
5679 && INTVAL (bl
->biv
->add_val
) == -1)
5681 REG_NOTES (PREV_INSN (loop_end
))
5682 = gen_rtx (EXPR_LIST
, REG_NONNEG
, NULL_RTX
,
5683 REG_NOTES (PREV_INSN (loop_end
)));
5690 else if (num_mem_sets
<= 1)
5692 /* Try to change inc to dec, so can apply above optimization. */
5694 all registers modified are induction variables or invariant,
5695 all memory references have non-overlapping addresses
5696 (obviously true if only one write)
5697 allow 2 insns for the compare/jump at the end of the loop. */
5698 /* Also, we must avoid any instructions which use both the reversed
5699 biv and another biv. Such instructions will fail if the loop is
5700 reversed. We meet this condition by requiring that either
5701 no_use_except_counting is true, or else that there is only
5703 int num_nonfixed_reads
= 0;
5704 /* 1 if the iteration var is used only to count iterations. */
5705 int no_use_except_counting
= 0;
5706 /* 1 if the loop has no memory store, or it has a single memory store
5707 which is reversible. */
5708 int reversible_mem_store
= 1;
5710 for (p
= loop_start
; p
!= loop_end
; p
= NEXT_INSN (p
))
5711 if (GET_RTX_CLASS (GET_CODE (p
)) == 'i')
5712 num_nonfixed_reads
+= count_nonfixed_reads (PATTERN (p
));
5714 if (bl
->giv_count
== 0
5715 && ! loop_number_exit_labels
[uid_loop_num
[INSN_UID (loop_start
)]])
5717 rtx bivreg
= regno_reg_rtx
[bl
->regno
];
5719 /* If there are no givs for this biv, and the only exit is the
5720 fall through at the end of the the loop, then
5721 see if perhaps there are no uses except to count. */
5722 no_use_except_counting
= 1;
5723 for (p
= loop_start
; p
!= loop_end
; p
= NEXT_INSN (p
))
5724 if (GET_RTX_CLASS (GET_CODE (p
)) == 'i')
5726 rtx set
= single_set (p
);
5728 if (set
&& GET_CODE (SET_DEST (set
)) == REG
5729 && REGNO (SET_DEST (set
)) == bl
->regno
)
5730 /* An insn that sets the biv is okay. */
5732 else if (p
== prev_nonnote_insn (prev_nonnote_insn (loop_end
))
5733 || p
== prev_nonnote_insn (loop_end
))
5734 /* Don't bother about the end test. */
5736 else if (reg_mentioned_p (bivreg
, PATTERN (p
)))
5737 /* Any other use of the biv is no good. */
5739 no_use_except_counting
= 0;
5745 /* If the loop has a single store, and the destination address is
5746 invariant, then we can't reverse the loop, because this address
5747 might then have the wrong value at loop exit.
5748 This would work if the source was invariant also, however, in that
5749 case, the insn should have been moved out of the loop. */
5751 if (num_mem_sets
== 1)
5752 reversible_mem_store
5753 = (! unknown_address_altered
5754 && ! invariant_p (XEXP (loop_store_mems
[0], 0)));
5756 /* This code only acts for innermost loops. Also it simplifies
5757 the memory address check by only reversing loops with
5758 zero or one memory access.
5759 Two memory accesses could involve parts of the same array,
5760 and that can't be reversed. */
5762 if (num_nonfixed_reads
<= 1
5764 && !loop_has_volatile
5765 && reversible_mem_store
5766 && (no_use_except_counting
5767 || ((bl
->giv_count
+ bl
->biv_count
+ num_mem_sets
5768 + num_movables
+ 2 == insn_count
)
5769 && (bl
== loop_iv_list
&& bl
->next
== 0))))
5773 /* Loop can be reversed. */
5774 if (loop_dump_stream
)
5775 fprintf (loop_dump_stream
, "Can reverse loop\n");
5777 /* Now check other conditions:
5778 initial_value must be zero,
5779 final_value % add_val == 0, so that when reversed, the
5780 biv will be zero on the last iteration.
5782 This test can probably be improved since +/- 1 in the constant
5783 can be obtained by changing LT to LE and vice versa; this is
5786 if (comparison
&& bl
->initial_value
== const0_rtx
5787 && GET_CODE (XEXP (comparison
, 1)) == CONST_INT
5788 /* LE gets turned into LT */
5789 && GET_CODE (comparison
) == LT
5790 && (INTVAL (XEXP (comparison
, 1))
5791 % INTVAL (bl
->biv
->add_val
)) == 0)
5793 /* Register will always be nonnegative, with value
5794 0 on last iteration if loop reversed */
5796 /* Save some info needed to produce the new insns. */
5797 reg
= bl
->biv
->dest_reg
;
5798 jump_label
= XEXP (SET_SRC (PATTERN (PREV_INSN (loop_end
))), 1);
5799 new_add_val
= GEN_INT (- INTVAL (bl
->biv
->add_val
));
5801 final_value
= XEXP (comparison
, 1);
5802 start_value
= GEN_INT (INTVAL (XEXP (comparison
, 1))
5803 - INTVAL (bl
->biv
->add_val
));
5805 /* Initialize biv to start_value before loop start.
5806 The old initializing insn will be deleted as a
5807 dead store by flow.c. */
5808 emit_insn_before (gen_move_insn (reg
, start_value
), loop_start
);
5810 /* Add insn to decrement register, and delete insn
5811 that incremented the register. */
5812 p
= emit_insn_before (gen_add2_insn (reg
, new_add_val
),
5814 delete_insn (bl
->biv
->insn
);
5816 /* Update biv info to reflect its new status. */
5818 bl
->initial_value
= start_value
;
5819 bl
->biv
->add_val
= new_add_val
;
5821 /* Inc LABEL_NUSES so that delete_insn will
5822 not delete the label. */
5823 LABEL_NUSES (XEXP (jump_label
, 0)) ++;
5825 /* Emit an insn after the end of the loop to set the biv's
5826 proper exit value if it is used anywhere outside the loop. */
5827 if ((regno_last_uid
[bl
->regno
]
5828 != INSN_UID (PREV_INSN (PREV_INSN (loop_end
))))
5830 || regno_first_uid
[bl
->regno
] != INSN_UID (bl
->init_insn
))
5831 emit_insn_after (gen_move_insn (reg
, final_value
),
5834 /* Delete compare/branch at end of loop. */
5835 delete_insn (PREV_INSN (loop_end
));
5836 delete_insn (PREV_INSN (loop_end
));
5838 /* Add new compare/branch insn at end of loop. */
5840 emit_cmp_insn (reg
, const0_rtx
, GE
, NULL_RTX
,
5841 GET_MODE (reg
), 0, 0);
5842 emit_jump_insn (gen_bge (XEXP (jump_label
, 0)));
5843 tem
= gen_sequence ();
5845 emit_jump_insn_before (tem
, loop_end
);
5847 for (tem
= PREV_INSN (loop_end
);
5848 tem
&& GET_CODE (tem
) != JUMP_INSN
; tem
= PREV_INSN (tem
))
5852 JUMP_LABEL (tem
) = XEXP (jump_label
, 0);
5854 /* Increment of LABEL_NUSES done above. */
5855 /* Register is now always nonnegative,
5856 so add REG_NONNEG note to the branch. */
5857 REG_NOTES (tem
) = gen_rtx (EXPR_LIST
, REG_NONNEG
, NULL_RTX
,
5863 /* Mark that this biv has been reversed. Each giv which depends
5864 on this biv, and which is also live past the end of the loop
5865 will have to be fixed up. */
5869 if (loop_dump_stream
)
5870 fprintf (loop_dump_stream
,
5871 "Reversed loop and added reg_nonneg\n");
5881 /* Verify whether the biv BL appears to be eliminable,
5882 based on the insns in the loop that refer to it.
5883 LOOP_START is the first insn of the loop, and END is the end insn.
5885 If ELIMINATE_P is non-zero, actually do the elimination.
5887 THRESHOLD and INSN_COUNT are from loop_optimize and are used to
5888 determine whether invariant insns should be placed inside or at the
5889 start of the loop. */
5892 maybe_eliminate_biv (bl
, loop_start
, end
, eliminate_p
, threshold
, insn_count
)
5893 struct iv_class
*bl
;
5897 int threshold
, insn_count
;
5899 rtx reg
= bl
->biv
->dest_reg
;
5902 /* Scan all insns in the loop, stopping if we find one that uses the
5903 biv in a way that we cannot eliminate. */
5905 for (p
= loop_start
; p
!= end
; p
= NEXT_INSN (p
))
5907 enum rtx_code code
= GET_CODE (p
);
5908 rtx where
= threshold
>= insn_count
? loop_start
: p
;
5910 if ((code
== INSN
|| code
== JUMP_INSN
|| code
== CALL_INSN
)
5911 && reg_mentioned_p (reg
, PATTERN (p
))
5912 && ! maybe_eliminate_biv_1 (PATTERN (p
), p
, bl
, eliminate_p
, where
))
5914 if (loop_dump_stream
)
5915 fprintf (loop_dump_stream
,
5916 "Cannot eliminate biv %d: biv used in insn %d.\n",
5917 bl
->regno
, INSN_UID (p
));
5924 if (loop_dump_stream
)
5925 fprintf (loop_dump_stream
, "biv %d %s eliminated.\n",
5926 bl
->regno
, eliminate_p
? "was" : "can be");
5933 /* If BL appears in X (part of the pattern of INSN), see if we can
5934 eliminate its use. If so, return 1. If not, return 0.
5936 If BIV does not appear in X, return 1.
5938 If ELIMINATE_P is non-zero, actually do the elimination. WHERE indicates
5939 where extra insns should be added. Depending on how many items have been
5940 moved out of the loop, it will either be before INSN or at the start of
5944 maybe_eliminate_biv_1 (x
, insn
, bl
, eliminate_p
, where
)
5946 struct iv_class
*bl
;
5950 enum rtx_code code
= GET_CODE (x
);
5951 rtx reg
= bl
->biv
->dest_reg
;
5952 enum machine_mode mode
= GET_MODE (reg
);
5953 struct induction
*v
;
5962 /* If we haven't already been able to do something with this BIV,
5963 we can't eliminate it. */
5969 /* If this sets the BIV, it is not a problem. */
5970 if (SET_DEST (x
) == reg
)
5973 /* If this is an insn that defines a giv, it is also ok because
5974 it will go away when the giv is reduced. */
5975 for (v
= bl
->giv
; v
; v
= v
->next_iv
)
5976 if (v
->giv_type
== DEST_REG
&& SET_DEST (x
) == v
->dest_reg
)
5980 if (SET_DEST (x
) == cc0_rtx
&& SET_SRC (x
) == reg
)
5982 /* Can replace with any giv that was reduced and
5983 that has (MULT_VAL != 0) and (ADD_VAL == 0).
5984 Require a constant for MULT_VAL, so we know it's nonzero. */
5986 for (v
= bl
->giv
; v
; v
= v
->next_iv
)
5987 if (CONSTANT_P (v
->mult_val
) && v
->mult_val
!= const0_rtx
5988 && v
->add_val
== const0_rtx
5989 && ! v
->ignore
&& ! v
->maybe_dead
&& v
->always_computable
5995 /* If the giv has the opposite direction of change,
5996 then reverse the comparison. */
5997 if (INTVAL (v
->mult_val
) < 0)
5998 new = gen_rtx (COMPARE
, GET_MODE (v
->new_reg
),
5999 const0_rtx
, v
->new_reg
);
6003 /* We can probably test that giv's reduced reg. */
6004 if (validate_change (insn
, &SET_SRC (x
), new, 0))
6008 /* Look for a giv with (MULT_VAL != 0) and (ADD_VAL != 0);
6009 replace test insn with a compare insn (cmp REDUCED_GIV ADD_VAL).
6010 Require a constant for MULT_VAL, so we know it's nonzero. */
6012 for (v
= bl
->giv
; v
; v
= v
->next_iv
)
6013 if (CONSTANT_P (v
->mult_val
) && v
->mult_val
!= const0_rtx
6014 && ! v
->ignore
&& ! v
->maybe_dead
&& v
->always_computable
6020 /* If the giv has the opposite direction of change,
6021 then reverse the comparison. */
6022 if (INTVAL (v
->mult_val
) < 0)
6023 new = gen_rtx (COMPARE
, VOIDmode
, copy_rtx (v
->add_val
),
6026 new = gen_rtx (COMPARE
, VOIDmode
, v
->new_reg
,
6027 copy_rtx (v
->add_val
));
6029 /* Replace biv with the giv's reduced register. */
6030 update_reg_last_use (v
->add_val
, insn
);
6031 if (validate_change (insn
, &SET_SRC (PATTERN (insn
)), new, 0))
6034 /* Insn doesn't support that constant or invariant. Copy it
6035 into a register (it will be a loop invariant.) */
6036 tem
= gen_reg_rtx (GET_MODE (v
->new_reg
));
6038 emit_insn_before (gen_move_insn (tem
, copy_rtx (v
->add_val
)),
6041 if (validate_change (insn
, &SET_SRC (PATTERN (insn
)),
6042 gen_rtx (COMPARE
, VOIDmode
,
6043 v
->new_reg
, tem
), 0))
6052 case GT
: case GE
: case GTU
: case GEU
:
6053 case LT
: case LE
: case LTU
: case LEU
:
6054 /* See if either argument is the biv. */
6055 if (XEXP (x
, 0) == reg
)
6056 arg
= XEXP (x
, 1), arg_operand
= 1;
6057 else if (XEXP (x
, 1) == reg
)
6058 arg
= XEXP (x
, 0), arg_operand
= 0;
6062 if (CONSTANT_P (arg
))
6064 /* First try to replace with any giv that has constant positive
6065 mult_val and constant add_val. We might be able to support
6066 negative mult_val, but it seems complex to do it in general. */
6068 for (v
= bl
->giv
; v
; v
= v
->next_iv
)
6069 if (CONSTANT_P (v
->mult_val
) && INTVAL (v
->mult_val
) > 0
6070 && CONSTANT_P (v
->add_val
)
6071 && ! v
->ignore
&& ! v
->maybe_dead
&& v
->always_computable
6077 /* Replace biv with the giv's reduced reg. */
6078 XEXP (x
, 1-arg_operand
) = v
->new_reg
;
6080 /* If all constants are actually constant integers and
6081 the derived constant can be directly placed in the COMPARE,
6083 if (GET_CODE (arg
) == CONST_INT
6084 && GET_CODE (v
->mult_val
) == CONST_INT
6085 && GET_CODE (v
->add_val
) == CONST_INT
6086 && validate_change (insn
, &XEXP (x
, arg_operand
),
6087 GEN_INT (INTVAL (arg
)
6088 * INTVAL (v
->mult_val
)
6089 + INTVAL (v
->add_val
)), 0))
6092 /* Otherwise, load it into a register. */
6093 tem
= gen_reg_rtx (mode
);
6094 emit_iv_add_mult (arg
, v
->mult_val
, v
->add_val
, tem
, where
);
6095 if (validate_change (insn
, &XEXP (x
, arg_operand
), tem
, 0))
6098 /* If that failed, put back the change we made above. */
6099 XEXP (x
, 1-arg_operand
) = reg
;
6102 /* Look for giv with positive constant mult_val and nonconst add_val.
6103 Insert insns to calculate new compare value. */
6105 for (v
= bl
->giv
; v
; v
= v
->next_iv
)
6106 if (CONSTANT_P (v
->mult_val
) && INTVAL (v
->mult_val
) > 0
6107 && ! v
->ignore
&& ! v
->maybe_dead
&& v
->always_computable
6115 tem
= gen_reg_rtx (mode
);
6117 /* Replace biv with giv's reduced register. */
6118 validate_change (insn
, &XEXP (x
, 1 - arg_operand
),
6121 /* Compute value to compare against. */
6122 emit_iv_add_mult (arg
, v
->mult_val
, v
->add_val
, tem
, where
);
6123 /* Use it in this insn. */
6124 validate_change (insn
, &XEXP (x
, arg_operand
), tem
, 1);
6125 if (apply_change_group ())
6129 else if (GET_CODE (arg
) == REG
|| GET_CODE (arg
) == MEM
)
6131 if (invariant_p (arg
) == 1)
6133 /* Look for giv with constant positive mult_val and nonconst
6134 add_val. Insert insns to compute new compare value. */
6136 for (v
= bl
->giv
; v
; v
= v
->next_iv
)
6137 if (CONSTANT_P (v
->mult_val
) && INTVAL (v
->mult_val
) > 0
6138 && ! v
->ignore
&& ! v
->maybe_dead
&& v
->always_computable
6146 tem
= gen_reg_rtx (mode
);
6148 /* Replace biv with giv's reduced register. */
6149 validate_change (insn
, &XEXP (x
, 1 - arg_operand
),
6152 /* Compute value to compare against. */
6153 emit_iv_add_mult (arg
, v
->mult_val
, v
->add_val
,
6155 validate_change (insn
, &XEXP (x
, arg_operand
), tem
, 1);
6156 if (apply_change_group ())
6161 /* This code has problems. Basically, you can't know when
6162 seeing if we will eliminate BL, whether a particular giv
6163 of ARG will be reduced. If it isn't going to be reduced,
6164 we can't eliminate BL. We can try forcing it to be reduced,
6165 but that can generate poor code.
6167 The problem is that the benefit of reducing TV, below should
6168 be increased if BL can actually be eliminated, but this means
6169 we might have to do a topological sort of the order in which
6170 we try to process biv. It doesn't seem worthwhile to do
6171 this sort of thing now. */
6174 /* Otherwise the reg compared with had better be a biv. */
6175 if (GET_CODE (arg
) != REG
6176 || reg_iv_type
[REGNO (arg
)] != BASIC_INDUCT
)
6179 /* Look for a pair of givs, one for each biv,
6180 with identical coefficients. */
6181 for (v
= bl
->giv
; v
; v
= v
->next_iv
)
6183 struct induction
*tv
;
6185 if (v
->ignore
|| v
->maybe_dead
|| v
->mode
!= mode
)
6188 for (tv
= reg_biv_class
[REGNO (arg
)]->giv
; tv
; tv
= tv
->next_iv
)
6189 if (! tv
->ignore
&& ! tv
->maybe_dead
6190 && rtx_equal_p (tv
->mult_val
, v
->mult_val
)
6191 && rtx_equal_p (tv
->add_val
, v
->add_val
)
6192 && tv
->mode
== mode
)
6197 /* Replace biv with its giv's reduced reg. */
6198 XEXP (x
, 1-arg_operand
) = v
->new_reg
;
6199 /* Replace other operand with the other giv's
6201 XEXP (x
, arg_operand
) = tv
->new_reg
;
6208 /* If we get here, the biv can't be eliminated. */
6212 /* If this address is a DEST_ADDR giv, it doesn't matter if the
6213 biv is used in it, since it will be replaced. */
6214 for (v
= bl
->giv
; v
; v
= v
->next_iv
)
6215 if (v
->giv_type
== DEST_ADDR
&& v
->location
== &XEXP (x
, 0))
6220 /* See if any subexpression fails elimination. */
6221 fmt
= GET_RTX_FORMAT (code
);
6222 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
6227 if (! maybe_eliminate_biv_1 (XEXP (x
, i
), insn
, bl
,
6228 eliminate_p
, where
))
6233 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
6234 if (! maybe_eliminate_biv_1 (XVECEXP (x
, i
, j
), insn
, bl
,
6235 eliminate_p
, where
))
6244 /* Return nonzero if the last use of REG
6245 is in an insn following INSN in the same basic block. */
6248 last_use_this_basic_block (reg
, insn
)
6254 n
&& GET_CODE (n
) != CODE_LABEL
&& GET_CODE (n
) != JUMP_INSN
;
6257 if (regno_last_uid
[REGNO (reg
)] == INSN_UID (n
))
6263 /* Called via `note_stores' to record the initial value of a biv. Here we
6264 just record the location of the set and process it later. */
6267 record_initial (dest
, set
)
6271 struct iv_class
*bl
;
6273 if (GET_CODE (dest
) != REG
6274 || REGNO (dest
) >= max_reg_before_loop
6275 || reg_iv_type
[REGNO (dest
)] != BASIC_INDUCT
)
6278 bl
= reg_biv_class
[REGNO (dest
)];
6280 /* If this is the first set found, record it. */
6281 if (bl
->init_insn
== 0)
6283 bl
->init_insn
= note_insn
;
6288 /* If any of the registers in X are "old" and currently have a last use earlier
6289 than INSN, update them to have a last use of INSN. Their actual last use
6290 will be the previous insn but it will not have a valid uid_luid so we can't
6294 update_reg_last_use (x
, insn
)
6298 /* Check for the case where INSN does not have a valid luid. In this case,
6299 there is no need to modify the regno_last_uid, as this can only happen
6300 when code is inserted after the loop_end to set a pseudo's final value,
6301 and hence this insn will never be the last use of x. */
6302 if (GET_CODE (x
) == REG
&& REGNO (x
) < max_reg_before_loop
6303 && INSN_UID (insn
) < max_uid_for_loop
6304 && uid_luid
[regno_last_uid
[REGNO (x
)]] < uid_luid
[INSN_UID (insn
)])
6305 regno_last_uid
[REGNO (x
)] = INSN_UID (insn
);
6309 register char *fmt
= GET_RTX_FORMAT (GET_CODE (x
));
6310 for (i
= GET_RTX_LENGTH (GET_CODE (x
)) - 1; i
>= 0; i
--)
6313 update_reg_last_use (XEXP (x
, i
), insn
);
6314 else if (fmt
[i
] == 'E')
6315 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
6316 update_reg_last_use (XVECEXP (x
, i
, j
), insn
);
6321 /* Given a jump insn JUMP, return the condition that will cause it to branch
6322 to its JUMP_LABEL. If the condition cannot be understood, or is an
6323 inequality floating-point comparison which needs to be reversed, 0 will
6326 If EARLIEST is non-zero, it is a pointer to a place where the earliest
6327 insn used in locating the condition was found. If a replacement test
6328 of the condition is desired, it should be placed in front of that
6329 insn and we will be sure that the inputs are still valid.
6331 The condition will be returned in a canonical form to simplify testing by
6332 callers. Specifically:
6334 (1) The code will always be a comparison operation (EQ, NE, GT, etc.).
6335 (2) Both operands will be machine operands; (cc0) will have been replaced.
6336 (3) If an operand is a constant, it will be the second operand.
6337 (4) (LE x const) will be replaced with (LT x <const+1>) and similarly
6338 for GE, GEU, and LEU. */
6341 get_condition (jump
, earliest
)
6350 int reverse_code
= 0;
6351 int did_reverse_condition
= 0;
6353 /* If this is not a standard conditional jump, we can't parse it. */
6354 if (GET_CODE (jump
) != JUMP_INSN
6355 || ! condjump_p (jump
) || simplejump_p (jump
))
6358 code
= GET_CODE (XEXP (SET_SRC (PATTERN (jump
)), 0));
6359 op0
= XEXP (XEXP (SET_SRC (PATTERN (jump
)), 0), 0);
6360 op1
= XEXP (XEXP (SET_SRC (PATTERN (jump
)), 0), 1);
6365 /* If this branches to JUMP_LABEL when the condition is false, reverse
6367 if (GET_CODE (XEXP (SET_SRC (PATTERN (jump
)), 2)) == LABEL_REF
6368 && XEXP (XEXP (SET_SRC (PATTERN (jump
)), 2), 0) == JUMP_LABEL (jump
))
6369 code
= reverse_condition (code
), did_reverse_condition
^= 1;
6371 /* If we are comparing a register with zero, see if the register is set
6372 in the previous insn to a COMPARE or a comparison operation. Perform
6373 the same tests as a function of STORE_FLAG_VALUE as find_comparison_args
6376 while (GET_RTX_CLASS (code
) == '<' && op1
== CONST0_RTX (GET_MODE (op0
)))
6378 /* Set non-zero when we find something of interest. */
6382 /* If comparison with cc0, import actual comparison from compare
6386 if ((prev
= prev_nonnote_insn (prev
)) == 0
6387 || GET_CODE (prev
) != INSN
6388 || (set
= single_set (prev
)) == 0
6389 || SET_DEST (set
) != cc0_rtx
)
6392 op0
= SET_SRC (set
);
6393 op1
= CONST0_RTX (GET_MODE (op0
));
6399 /* If this is a COMPARE, pick up the two things being compared. */
6400 if (GET_CODE (op0
) == COMPARE
)
6402 op1
= XEXP (op0
, 1);
6403 op0
= XEXP (op0
, 0);
6406 else if (GET_CODE (op0
) != REG
)
6409 /* Go back to the previous insn. Stop if it is not an INSN. We also
6410 stop if it isn't a single set or if it has a REG_INC note because
6411 we don't want to bother dealing with it. */
6413 if ((prev
= prev_nonnote_insn (prev
)) == 0
6414 || GET_CODE (prev
) != INSN
6415 || FIND_REG_INC_NOTE (prev
, 0)
6416 || (set
= single_set (prev
)) == 0)
6419 /* If this is setting OP0, get what it sets it to if it looks
6421 if (SET_DEST (set
) == op0
)
6423 enum machine_mode inner_mode
= GET_MODE (SET_SRC (set
));
6425 if ((GET_CODE (SET_SRC (set
)) == COMPARE
6428 && GET_MODE_CLASS (inner_mode
) == MODE_INT
6429 && (GET_MODE_BITSIZE (inner_mode
)
6430 <= HOST_BITS_PER_WIDE_INT
)
6431 && (STORE_FLAG_VALUE
6432 & ((HOST_WIDE_INT
) 1
6433 << (GET_MODE_BITSIZE (inner_mode
) - 1))))
6434 #ifdef FLOAT_STORE_FLAG_VALUE
6436 && GET_MODE_CLASS (inner_mode
) == MODE_FLOAT
6437 && FLOAT_STORE_FLAG_VALUE
< 0)
6440 && GET_RTX_CLASS (GET_CODE (SET_SRC (set
))) == '<')))
6442 else if (((code
== EQ
6444 && (GET_MODE_BITSIZE (inner_mode
)
6445 <= HOST_BITS_PER_WIDE_INT
)
6446 && GET_MODE_CLASS (inner_mode
) == MODE_INT
6447 && (STORE_FLAG_VALUE
6448 & ((HOST_WIDE_INT
) 1
6449 << (GET_MODE_BITSIZE (inner_mode
) - 1))))
6450 #ifdef FLOAT_STORE_FLAG_VALUE
6452 && GET_MODE_CLASS (inner_mode
) == MODE_FLOAT
6453 && FLOAT_STORE_FLAG_VALUE
< 0)
6456 && GET_RTX_CLASS (GET_CODE (SET_SRC (set
))) == '<')
6458 /* We might have reversed a LT to get a GE here. But this wasn't
6459 actually the comparison of data, so we don't flag that we
6460 have had to reverse the condition. */
6461 did_reverse_condition
^= 1;
6469 else if (reg_set_p (op0
, prev
))
6470 /* If this sets OP0, but not directly, we have to give up. */
6475 if (GET_RTX_CLASS (GET_CODE (x
)) == '<')
6476 code
= GET_CODE (x
);
6479 code
= reverse_condition (code
);
6480 did_reverse_condition
^= 1;
6484 op0
= XEXP (x
, 0), op1
= XEXP (x
, 1);
6490 /* If constant is first, put it last. */
6491 if (CONSTANT_P (op0
))
6492 code
= swap_condition (code
), tem
= op0
, op0
= op1
, op1
= tem
;
6494 /* If OP0 is the result of a comparison, we weren't able to find what
6495 was really being compared, so fail. */
6496 if (GET_MODE_CLASS (GET_MODE (op0
)) == MODE_CC
)
6499 /* Canonicalize any ordered comparison with integers involving equality
6500 if we can do computations in the relevant mode and we do not
6503 if (GET_CODE (op1
) == CONST_INT
6504 && GET_MODE (op0
) != VOIDmode
6505 && GET_MODE_BITSIZE (GET_MODE (op0
)) <= HOST_BITS_PER_WIDE_INT
)
6507 HOST_WIDE_INT const_val
= INTVAL (op1
);
6508 unsigned HOST_WIDE_INT uconst_val
= const_val
;
6509 unsigned HOST_WIDE_INT max_val
6510 = (unsigned HOST_WIDE_INT
) GET_MODE_MASK (GET_MODE (op0
));
6515 if (const_val
!= max_val
>> 1)
6516 code
= LT
, op1
= GEN_INT (const_val
+ 1);
6521 != (((HOST_WIDE_INT
) 1
6522 << (GET_MODE_BITSIZE (GET_MODE (op0
)) - 1))))
6523 code
= GT
, op1
= GEN_INT (const_val
- 1);
6527 if (uconst_val
!= max_val
)
6528 code
= LTU
, op1
= GEN_INT (uconst_val
+ 1);
6532 if (uconst_val
!= 0)
6533 code
= GTU
, op1
= GEN_INT (uconst_val
- 1);
6538 /* If this was floating-point and we reversed anything other than an
6539 EQ or NE, return zero. */
6540 if (TARGET_FLOAT_FORMAT
== IEEE_FLOAT_FORMAT
6541 && did_reverse_condition
&& code
!= NE
&& code
!= EQ
6543 && GET_MODE_CLASS (GET_MODE (op0
)) == MODE_FLOAT
)
6547 /* Never return CC0; return zero instead. */
6552 return gen_rtx (code
, VOIDmode
, op0
, op1
);
6555 /* Similar to above routine, except that we also put an invariant last
6556 unless both operands are invariants. */
6559 get_condition_for_loop (x
)
6562 rtx comparison
= get_condition (x
, NULL_PTR
);
6565 || ! invariant_p (XEXP (comparison
, 0))
6566 || invariant_p (XEXP (comparison
, 1)))
6569 return gen_rtx (swap_condition (GET_CODE (comparison
)), VOIDmode
,
6570 XEXP (comparison
, 1), XEXP (comparison
, 0));