PR target/9164
[official-gcc.git] / gcc / unroll.c
blob3b5dd7c91f8c1eeccea8a5d75ccf86d2fe91b995
1 /* Try to unroll loops, and split induction variables.
2 Copyright (C) 1992, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2001, 2002
3 Free Software Foundation, Inc.
4 Contributed by James E. Wilson, Cygnus Support/UC Berkeley.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21 02111-1307, USA. */
23 /* Try to unroll a loop, and split induction variables.
25 Loops for which the number of iterations can be calculated exactly are
26 handled specially. If the number of iterations times the insn_count is
27 less than MAX_UNROLLED_INSNS, then the loop is unrolled completely.
28 Otherwise, we try to unroll the loop a number of times modulo the number
29 of iterations, so that only one exit test will be needed. It is unrolled
30 a number of times approximately equal to MAX_UNROLLED_INSNS divided by
31 the insn count.
33 Otherwise, if the number of iterations can be calculated exactly at
34 run time, and the loop is always entered at the top, then we try to
35 precondition the loop. That is, at run time, calculate how many times
36 the loop will execute, and then execute the loop body a few times so
37 that the remaining iterations will be some multiple of 4 (or 2 if the
38 loop is large). Then fall through to a loop unrolled 4 (or 2) times,
39 with only one exit test needed at the end of the loop.
41 Otherwise, if the number of iterations can not be calculated exactly,
42 not even at run time, then we still unroll the loop a number of times
43 approximately equal to MAX_UNROLLED_INSNS divided by the insn count,
44 but there must be an exit test after each copy of the loop body.
46 For each induction variable, which is dead outside the loop (replaceable)
47 or for which we can easily calculate the final value, if we can easily
48 calculate its value at each place where it is set as a function of the
49 current loop unroll count and the variable's value at loop entry, then
50 the induction variable is split into `N' different variables, one for
51 each copy of the loop body. One variable is live across the backward
52 branch, and the others are all calculated as a function of this variable.
53 This helps eliminate data dependencies, and leads to further opportunities
54 for cse. */
56 /* Possible improvements follow: */
58 /* ??? Add an extra pass somewhere to determine whether unrolling will
59 give any benefit. E.g. after generating all unrolled insns, compute the
60 cost of all insns and compare against cost of insns in rolled loop.
62 - On traditional architectures, unrolling a non-constant bound loop
63 is a win if there is a giv whose only use is in memory addresses, the
64 memory addresses can be split, and hence giv increments can be
65 eliminated.
66 - It is also a win if the loop is executed many times, and preconditioning
67 can be performed for the loop.
68 Add code to check for these and similar cases. */
70 /* ??? Improve control of which loops get unrolled. Could use profiling
71 info to only unroll the most commonly executed loops. Perhaps have
72 a user specifiable option to control the amount of code expansion,
73 or the percent of loops to consider for unrolling. Etc. */
75 /* ??? Look at the register copies inside the loop to see if they form a
76 simple permutation. If so, iterate the permutation until it gets back to
77 the start state. This is how many times we should unroll the loop, for
78 best results, because then all register copies can be eliminated.
79 For example, the lisp nreverse function should be unrolled 3 times
80 while (this)
82 next = this->cdr;
83 this->cdr = prev;
84 prev = this;
85 this = next;
88 ??? The number of times to unroll the loop may also be based on data
89 references in the loop. For example, if we have a loop that references
90 x[i-1], x[i], and x[i+1], we should unroll it a multiple of 3 times. */
92 /* ??? Add some simple linear equation solving capability so that we can
93 determine the number of loop iterations for more complex loops.
94 For example, consider this loop from gdb
95 #define SWAP_TARGET_AND_HOST(buffer,len)
97 char tmp;
98 char *p = (char *) buffer;
99 char *q = ((char *) buffer) + len - 1;
100 int iterations = (len + 1) >> 1;
101 int i;
102 for (p; p < q; p++, q--;)
104 tmp = *q;
105 *q = *p;
106 *p = tmp;
109 Note that:
110 start value = p = &buffer + current_iteration
111 end value = q = &buffer + len - 1 - current_iteration
112 Given the loop exit test of "p < q", then there must be "q - p" iterations,
113 set equal to zero and solve for number of iterations:
114 q - p = len - 1 - 2*current_iteration = 0
115 current_iteration = (len - 1) / 2
116 Hence, there are (len - 1) / 2 (rounded up to the nearest integer)
117 iterations of this loop. */
119 /* ??? Currently, no labels are marked as loop invariant when doing loop
120 unrolling. This is because an insn inside the loop, that loads the address
121 of a label inside the loop into a register, could be moved outside the loop
122 by the invariant code motion pass if labels were invariant. If the loop
123 is subsequently unrolled, the code will be wrong because each unrolled
124 body of the loop will use the same address, whereas each actually needs a
125 different address. A case where this happens is when a loop containing
126 a switch statement is unrolled.
128 It would be better to let labels be considered invariant. When we
129 unroll loops here, check to see if any insns using a label local to the
130 loop were moved before the loop. If so, then correct the problem, by
131 moving the insn back into the loop, or perhaps replicate the insn before
132 the loop, one copy for each time the loop is unrolled. */
134 #include "config.h"
135 #include "system.h"
136 #include "coretypes.h"
137 #include "tm.h"
138 #include "rtl.h"
139 #include "tm_p.h"
140 #include "insn-config.h"
141 #include "integrate.h"
142 #include "regs.h"
143 #include "recog.h"
144 #include "flags.h"
145 #include "function.h"
146 #include "expr.h"
147 #include "loop.h"
148 #include "toplev.h"
149 #include "hard-reg-set.h"
150 #include "basic-block.h"
151 #include "predict.h"
152 #include "params.h"
153 #include "cfgloop.h"
155 /* The prime factors looked for when trying to unroll a loop by some
156 number which is modulo the total number of iterations. Just checking
157 for these 4 prime factors will find at least one factor for 75% of
158 all numbers theoretically. Practically speaking, this will succeed
159 almost all of the time since loops are generally a multiple of 2
160 and/or 5. */
162 #define NUM_FACTORS 4
164 static struct _factor { const int factor; int count; }
165 factors[NUM_FACTORS] = { {2, 0}, {3, 0}, {5, 0}, {7, 0}};
167 /* Describes the different types of loop unrolling performed. */
169 enum unroll_types
171 UNROLL_COMPLETELY,
172 UNROLL_MODULO,
173 UNROLL_NAIVE
176 /* Indexed by register number, if nonzero, then it contains a pointer
177 to a struct induction for a DEST_REG giv which has been combined with
178 one of more address givs. This is needed because whenever such a DEST_REG
179 giv is modified, we must modify the value of all split address givs
180 that were combined with this DEST_REG giv. */
182 static struct induction **addr_combined_regs;
184 /* Indexed by register number, if this is a splittable induction variable,
185 then this will hold the current value of the register, which depends on the
186 iteration number. */
188 static rtx *splittable_regs;
190 /* Indexed by register number, if this is a splittable induction variable,
191 then this will hold the number of instructions in the loop that modify
192 the induction variable. Used to ensure that only the last insn modifying
193 a split iv will update the original iv of the dest. */
195 static int *splittable_regs_updates;
197 /* Forward declarations. */
199 static rtx simplify_cmp_and_jump_insns PARAMS ((enum rtx_code,
200 enum machine_mode,
201 rtx, rtx, rtx));
202 static void init_reg_map PARAMS ((struct inline_remap *, int));
203 static rtx calculate_giv_inc PARAMS ((rtx, rtx, unsigned int));
204 static rtx initial_reg_note_copy PARAMS ((rtx, struct inline_remap *));
205 static void final_reg_note_copy PARAMS ((rtx *, struct inline_remap *));
206 static void copy_loop_body PARAMS ((struct loop *, rtx, rtx,
207 struct inline_remap *, rtx, int,
208 enum unroll_types, rtx, rtx, rtx, rtx));
209 static int find_splittable_regs PARAMS ((const struct loop *,
210 enum unroll_types, int));
211 static int find_splittable_givs PARAMS ((const struct loop *,
212 struct iv_class *, enum unroll_types,
213 rtx, int));
214 static int reg_dead_after_loop PARAMS ((const struct loop *, rtx));
215 static rtx fold_rtx_mult_add PARAMS ((rtx, rtx, rtx, enum machine_mode));
216 static rtx remap_split_bivs PARAMS ((struct loop *, rtx));
217 static rtx find_common_reg_term PARAMS ((rtx, rtx));
218 static rtx subtract_reg_term PARAMS ((rtx, rtx));
219 static rtx loop_find_equiv_value PARAMS ((const struct loop *, rtx));
220 static rtx ujump_to_loop_cont PARAMS ((rtx, rtx));
222 /* Try to unroll one loop and split induction variables in the loop.
224 The loop is described by the arguments LOOP and INSN_COUNT.
225 STRENGTH_REDUCTION_P indicates whether information generated in the
226 strength reduction pass is available.
228 This function is intended to be called from within `strength_reduce'
229 in loop.c. */
231 void
232 unroll_loop (loop, insn_count, strength_reduce_p)
233 struct loop *loop;
234 int insn_count;
235 int strength_reduce_p;
237 struct loop_info *loop_info = LOOP_INFO (loop);
238 struct loop_ivs *ivs = LOOP_IVS (loop);
239 int i, j;
240 unsigned int r;
241 unsigned HOST_WIDE_INT temp;
242 int unroll_number = 1;
243 rtx copy_start, copy_end;
244 rtx insn, sequence, pattern, tem;
245 int max_labelno, max_insnno;
246 rtx insert_before;
247 struct inline_remap *map;
248 char *local_label = NULL;
249 char *local_regno;
250 unsigned int max_local_regnum;
251 unsigned int maxregnum;
252 rtx exit_label = 0;
253 rtx start_label;
254 struct iv_class *bl;
255 int splitting_not_safe = 0;
256 enum unroll_types unroll_type = UNROLL_NAIVE;
257 int loop_preconditioned = 0;
258 rtx safety_label;
259 /* This points to the last real insn in the loop, which should be either
260 a JUMP_INSN (for conditional jumps) or a BARRIER (for unconditional
261 jumps). */
262 rtx last_loop_insn;
263 rtx loop_start = loop->start;
264 rtx loop_end = loop->end;
266 /* Don't bother unrolling huge loops. Since the minimum factor is
267 two, loops greater than one half of MAX_UNROLLED_INSNS will never
268 be unrolled. */
269 if (insn_count > MAX_UNROLLED_INSNS / 2)
271 if (loop_dump_stream)
272 fprintf (loop_dump_stream, "Unrolling failure: Loop too big.\n");
273 return;
276 /* Determine type of unroll to perform. Depends on the number of iterations
277 and the size of the loop. */
279 /* If there is no strength reduce info, then set
280 loop_info->n_iterations to zero. This can happen if
281 strength_reduce can't find any bivs in the loop. A value of zero
282 indicates that the number of iterations could not be calculated. */
284 if (! strength_reduce_p)
285 loop_info->n_iterations = 0;
287 if (loop_dump_stream && loop_info->n_iterations > 0)
289 fputs ("Loop unrolling: ", loop_dump_stream);
290 fprintf (loop_dump_stream, HOST_WIDE_INT_PRINT_DEC,
291 loop_info->n_iterations);
292 fputs (" iterations.\n", loop_dump_stream);
295 /* Find and save a pointer to the last nonnote insn in the loop. */
297 last_loop_insn = prev_nonnote_insn (loop_end);
299 /* Calculate how many times to unroll the loop. Indicate whether or
300 not the loop is being completely unrolled. */
302 if (loop_info->n_iterations == 1)
304 /* Handle the case where the loop begins with an unconditional
305 jump to the loop condition. Make sure to delete the jump
306 insn, otherwise the loop body will never execute. */
308 rtx ujump = ujump_to_loop_cont (loop->start, loop->cont);
309 if (ujump)
310 delete_related_insns (ujump);
312 /* If number of iterations is exactly 1, then eliminate the compare and
313 branch at the end of the loop since they will never be taken.
314 Then return, since no other action is needed here. */
316 /* If the last instruction is not a BARRIER or a JUMP_INSN, then
317 don't do anything. */
319 if (GET_CODE (last_loop_insn) == BARRIER)
321 /* Delete the jump insn. This will delete the barrier also. */
322 delete_related_insns (PREV_INSN (last_loop_insn));
324 else if (GET_CODE (last_loop_insn) == JUMP_INSN)
326 #ifdef HAVE_cc0
327 rtx prev = PREV_INSN (last_loop_insn);
328 #endif
329 delete_related_insns (last_loop_insn);
330 #ifdef HAVE_cc0
331 /* The immediately preceding insn may be a compare which must be
332 deleted. */
333 if (only_sets_cc0_p (prev))
334 delete_related_insns (prev);
335 #endif
338 /* Remove the loop notes since this is no longer a loop. */
339 if (loop->vtop)
340 delete_related_insns (loop->vtop);
341 if (loop->cont)
342 delete_related_insns (loop->cont);
343 if (loop_start)
344 delete_related_insns (loop_start);
345 if (loop_end)
346 delete_related_insns (loop_end);
348 return;
350 else if (loop_info->n_iterations > 0
351 /* Avoid overflow in the next expression. */
352 && loop_info->n_iterations < (unsigned) MAX_UNROLLED_INSNS
353 && loop_info->n_iterations * insn_count < (unsigned) MAX_UNROLLED_INSNS)
355 unroll_number = loop_info->n_iterations;
356 unroll_type = UNROLL_COMPLETELY;
358 else if (loop_info->n_iterations > 0)
360 /* Try to factor the number of iterations. Don't bother with the
361 general case, only using 2, 3, 5, and 7 will get 75% of all
362 numbers theoretically, and almost all in practice. */
364 for (i = 0; i < NUM_FACTORS; i++)
365 factors[i].count = 0;
367 temp = loop_info->n_iterations;
368 for (i = NUM_FACTORS - 1; i >= 0; i--)
369 while (temp % factors[i].factor == 0)
371 factors[i].count++;
372 temp = temp / factors[i].factor;
375 /* Start with the larger factors first so that we generally
376 get lots of unrolling. */
378 unroll_number = 1;
379 temp = insn_count;
380 for (i = 3; i >= 0; i--)
381 while (factors[i].count--)
383 if (temp * factors[i].factor < (unsigned) MAX_UNROLLED_INSNS)
385 unroll_number *= factors[i].factor;
386 temp *= factors[i].factor;
388 else
389 break;
392 /* If we couldn't find any factors, then unroll as in the normal
393 case. */
394 if (unroll_number == 1)
396 if (loop_dump_stream)
397 fprintf (loop_dump_stream, "Loop unrolling: No factors found.\n");
399 else
400 unroll_type = UNROLL_MODULO;
403 /* Default case, calculate number of times to unroll loop based on its
404 size. */
405 if (unroll_type == UNROLL_NAIVE)
407 if (8 * insn_count < MAX_UNROLLED_INSNS)
408 unroll_number = 8;
409 else if (4 * insn_count < MAX_UNROLLED_INSNS)
410 unroll_number = 4;
411 else
412 unroll_number = 2;
415 /* Now we know how many times to unroll the loop. */
417 if (loop_dump_stream)
418 fprintf (loop_dump_stream, "Unrolling loop %d times.\n", unroll_number);
420 if (unroll_type == UNROLL_COMPLETELY || unroll_type == UNROLL_MODULO)
422 /* Loops of these types can start with jump down to the exit condition
423 in rare circumstances.
425 Consider a pair of nested loops where the inner loop is part
426 of the exit code for the outer loop.
428 In this case jump.c will not duplicate the exit test for the outer
429 loop, so it will start with a jump to the exit code.
431 Then consider if the inner loop turns out to iterate once and
432 only once. We will end up deleting the jumps associated with
433 the inner loop. However, the loop notes are not removed from
434 the instruction stream.
436 And finally assume that we can compute the number of iterations
437 for the outer loop.
439 In this case unroll may want to unroll the outer loop even though
440 it starts with a jump to the outer loop's exit code.
442 We could try to optimize this case, but it hardly seems worth it.
443 Just return without unrolling the loop in such cases. */
445 insn = loop_start;
446 while (GET_CODE (insn) != CODE_LABEL && GET_CODE (insn) != JUMP_INSN)
447 insn = NEXT_INSN (insn);
448 if (GET_CODE (insn) == JUMP_INSN)
449 return;
452 if (unroll_type == UNROLL_COMPLETELY)
454 /* Completely unrolling the loop: Delete the compare and branch at
455 the end (the last two instructions). This delete must done at the
456 very end of loop unrolling, to avoid problems with calls to
457 back_branch_in_range_p, which is called by find_splittable_regs.
458 All increments of splittable bivs/givs are changed to load constant
459 instructions. */
461 copy_start = loop_start;
463 /* Set insert_before to the instruction immediately after the JUMP_INSN
464 (or BARRIER), so that any NOTEs between the JUMP_INSN and the end of
465 the loop will be correctly handled by copy_loop_body. */
466 insert_before = NEXT_INSN (last_loop_insn);
468 /* Set copy_end to the insn before the jump at the end of the loop. */
469 if (GET_CODE (last_loop_insn) == BARRIER)
470 copy_end = PREV_INSN (PREV_INSN (last_loop_insn));
471 else if (GET_CODE (last_loop_insn) == JUMP_INSN)
473 copy_end = PREV_INSN (last_loop_insn);
474 #ifdef HAVE_cc0
475 /* The instruction immediately before the JUMP_INSN may be a compare
476 instruction which we do not want to copy. */
477 if (sets_cc0_p (PREV_INSN (copy_end)))
478 copy_end = PREV_INSN (copy_end);
479 #endif
481 else
483 /* We currently can't unroll a loop if it doesn't end with a
484 JUMP_INSN. There would need to be a mechanism that recognizes
485 this case, and then inserts a jump after each loop body, which
486 jumps to after the last loop body. */
487 if (loop_dump_stream)
488 fprintf (loop_dump_stream,
489 "Unrolling failure: loop does not end with a JUMP_INSN.\n");
490 return;
493 else if (unroll_type == UNROLL_MODULO)
495 /* Partially unrolling the loop: The compare and branch at the end
496 (the last two instructions) must remain. Don't copy the compare
497 and branch instructions at the end of the loop. Insert the unrolled
498 code immediately before the compare/branch at the end so that the
499 code will fall through to them as before. */
501 copy_start = loop_start;
503 /* Set insert_before to the jump insn at the end of the loop.
504 Set copy_end to before the jump insn at the end of the loop. */
505 if (GET_CODE (last_loop_insn) == BARRIER)
507 insert_before = PREV_INSN (last_loop_insn);
508 copy_end = PREV_INSN (insert_before);
510 else if (GET_CODE (last_loop_insn) == JUMP_INSN)
512 insert_before = last_loop_insn;
513 #ifdef HAVE_cc0
514 /* The instruction immediately before the JUMP_INSN may be a compare
515 instruction which we do not want to copy or delete. */
516 if (sets_cc0_p (PREV_INSN (insert_before)))
517 insert_before = PREV_INSN (insert_before);
518 #endif
519 copy_end = PREV_INSN (insert_before);
521 else
523 /* We currently can't unroll a loop if it doesn't end with a
524 JUMP_INSN. There would need to be a mechanism that recognizes
525 this case, and then inserts a jump after each loop body, which
526 jumps to after the last loop body. */
527 if (loop_dump_stream)
528 fprintf (loop_dump_stream,
529 "Unrolling failure: loop does not end with a JUMP_INSN.\n");
530 return;
533 else
535 /* Normal case: Must copy the compare and branch instructions at the
536 end of the loop. */
538 if (GET_CODE (last_loop_insn) == BARRIER)
540 /* Loop ends with an unconditional jump and a barrier.
541 Handle this like above, don't copy jump and barrier.
542 This is not strictly necessary, but doing so prevents generating
543 unconditional jumps to an immediately following label.
545 This will be corrected below if the target of this jump is
546 not the start_label. */
548 insert_before = PREV_INSN (last_loop_insn);
549 copy_end = PREV_INSN (insert_before);
551 else if (GET_CODE (last_loop_insn) == JUMP_INSN)
553 /* Set insert_before to immediately after the JUMP_INSN, so that
554 NOTEs at the end of the loop will be correctly handled by
555 copy_loop_body. */
556 insert_before = NEXT_INSN (last_loop_insn);
557 copy_end = last_loop_insn;
559 else
561 /* We currently can't unroll a loop if it doesn't end with a
562 JUMP_INSN. There would need to be a mechanism that recognizes
563 this case, and then inserts a jump after each loop body, which
564 jumps to after the last loop body. */
565 if (loop_dump_stream)
566 fprintf (loop_dump_stream,
567 "Unrolling failure: loop does not end with a JUMP_INSN.\n");
568 return;
571 /* If copying exit test branches because they can not be eliminated,
572 then must convert the fall through case of the branch to a jump past
573 the end of the loop. Create a label to emit after the loop and save
574 it for later use. Do not use the label after the loop, if any, since
575 it might be used by insns outside the loop, or there might be insns
576 added before it later by final_[bg]iv_value which must be after
577 the real exit label. */
578 exit_label = gen_label_rtx ();
580 insn = loop_start;
581 while (GET_CODE (insn) != CODE_LABEL && GET_CODE (insn) != JUMP_INSN)
582 insn = NEXT_INSN (insn);
584 if (GET_CODE (insn) == JUMP_INSN)
586 /* The loop starts with a jump down to the exit condition test.
587 Start copying the loop after the barrier following this
588 jump insn. */
589 copy_start = NEXT_INSN (insn);
591 /* Splitting induction variables doesn't work when the loop is
592 entered via a jump to the bottom, because then we end up doing
593 a comparison against a new register for a split variable, but
594 we did not execute the set insn for the new register because
595 it was skipped over. */
596 splitting_not_safe = 1;
597 if (loop_dump_stream)
598 fprintf (loop_dump_stream,
599 "Splitting not safe, because loop not entered at top.\n");
601 else
602 copy_start = loop_start;
605 /* This should always be the first label in the loop. */
606 start_label = NEXT_INSN (copy_start);
607 /* There may be a line number note and/or a loop continue note here. */
608 while (GET_CODE (start_label) == NOTE)
609 start_label = NEXT_INSN (start_label);
610 if (GET_CODE (start_label) != CODE_LABEL)
612 /* This can happen as a result of jump threading. If the first insns in
613 the loop test the same condition as the loop's backward jump, or the
614 opposite condition, then the backward jump will be modified to point
615 to elsewhere, and the loop's start label is deleted.
617 This case currently can not be handled by the loop unrolling code. */
619 if (loop_dump_stream)
620 fprintf (loop_dump_stream,
621 "Unrolling failure: unknown insns between BEG note and loop label.\n");
622 return;
624 if (LABEL_NAME (start_label))
626 /* The jump optimization pass must have combined the original start label
627 with a named label for a goto. We can't unroll this case because
628 jumps which go to the named label must be handled differently than
629 jumps to the loop start, and it is impossible to differentiate them
630 in this case. */
631 if (loop_dump_stream)
632 fprintf (loop_dump_stream,
633 "Unrolling failure: loop start label is gone\n");
634 return;
637 if (unroll_type == UNROLL_NAIVE
638 && GET_CODE (last_loop_insn) == BARRIER
639 && GET_CODE (PREV_INSN (last_loop_insn)) == JUMP_INSN
640 && start_label != JUMP_LABEL (PREV_INSN (last_loop_insn)))
642 /* In this case, we must copy the jump and barrier, because they will
643 not be converted to jumps to an immediately following label. */
645 insert_before = NEXT_INSN (last_loop_insn);
646 copy_end = last_loop_insn;
649 if (unroll_type == UNROLL_NAIVE
650 && GET_CODE (last_loop_insn) == JUMP_INSN
651 && start_label != JUMP_LABEL (last_loop_insn))
653 /* ??? The loop ends with a conditional branch that does not branch back
654 to the loop start label. In this case, we must emit an unconditional
655 branch to the loop exit after emitting the final branch.
656 copy_loop_body does not have support for this currently, so we
657 give up. It doesn't seem worthwhile to unroll anyways since
658 unrolling would increase the number of branch instructions
659 executed. */
660 if (loop_dump_stream)
661 fprintf (loop_dump_stream,
662 "Unrolling failure: final conditional branch not to loop start\n");
663 return;
666 /* Allocate a translation table for the labels and insn numbers.
667 They will be filled in as we copy the insns in the loop. */
669 max_labelno = max_label_num ();
670 max_insnno = get_max_uid ();
672 /* Various paths through the unroll code may reach the "egress" label
673 without initializing fields within the map structure.
675 To be safe, we use xcalloc to zero the memory. */
676 map = (struct inline_remap *) xcalloc (1, sizeof (struct inline_remap));
678 /* Allocate the label map. */
680 if (max_labelno > 0)
682 map->label_map = (rtx *) xcalloc (max_labelno, sizeof (rtx));
683 local_label = (char *) xcalloc (max_labelno, sizeof (char));
686 /* Search the loop and mark all local labels, i.e. the ones which have to
687 be distinct labels when copied. For all labels which might be
688 non-local, set their label_map entries to point to themselves.
689 If they happen to be local their label_map entries will be overwritten
690 before the loop body is copied. The label_map entries for local labels
691 will be set to a different value each time the loop body is copied. */
693 for (insn = copy_start; insn != loop_end; insn = NEXT_INSN (insn))
695 rtx note;
697 if (GET_CODE (insn) == CODE_LABEL)
698 local_label[CODE_LABEL_NUMBER (insn)] = 1;
699 else if (GET_CODE (insn) == JUMP_INSN)
701 if (JUMP_LABEL (insn))
702 set_label_in_map (map,
703 CODE_LABEL_NUMBER (JUMP_LABEL (insn)),
704 JUMP_LABEL (insn));
705 else if (GET_CODE (PATTERN (insn)) == ADDR_VEC
706 || GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC)
708 rtx pat = PATTERN (insn);
709 int diff_vec_p = GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC;
710 int len = XVECLEN (pat, diff_vec_p);
711 rtx label;
713 for (i = 0; i < len; i++)
715 label = XEXP (XVECEXP (pat, diff_vec_p, i), 0);
716 set_label_in_map (map, CODE_LABEL_NUMBER (label), label);
720 if ((note = find_reg_note (insn, REG_LABEL, NULL_RTX)))
721 set_label_in_map (map, CODE_LABEL_NUMBER (XEXP (note, 0)),
722 XEXP (note, 0));
725 /* Allocate space for the insn map. */
727 map->insn_map = (rtx *) xmalloc (max_insnno * sizeof (rtx));
729 /* Set this to zero, to indicate that we are doing loop unrolling,
730 not function inlining. */
731 map->inline_target = 0;
733 /* The register and constant maps depend on the number of registers
734 present, so the final maps can't be created until after
735 find_splittable_regs is called. However, they are needed for
736 preconditioning, so we create temporary maps when preconditioning
737 is performed. */
739 /* The preconditioning code may allocate two new pseudo registers. */
740 maxregnum = max_reg_num ();
742 /* local_regno is only valid for regnos < max_local_regnum. */
743 max_local_regnum = maxregnum;
745 /* Allocate and zero out the splittable_regs and addr_combined_regs
746 arrays. These must be zeroed here because they will be used if
747 loop preconditioning is performed, and must be zero for that case.
749 It is safe to do this here, since the extra registers created by the
750 preconditioning code and find_splittable_regs will never be used
751 to access the splittable_regs[] and addr_combined_regs[] arrays. */
753 splittable_regs = (rtx *) xcalloc (maxregnum, sizeof (rtx));
754 splittable_regs_updates = (int *) xcalloc (maxregnum, sizeof (int));
755 addr_combined_regs
756 = (struct induction **) xcalloc (maxregnum, sizeof (struct induction *));
757 local_regno = (char *) xcalloc (maxregnum, sizeof (char));
759 /* Mark all local registers, i.e. the ones which are referenced only
760 inside the loop. */
761 if (INSN_UID (copy_end) < max_uid_for_loop)
763 int copy_start_luid = INSN_LUID (copy_start);
764 int copy_end_luid = INSN_LUID (copy_end);
766 /* If a register is used in the jump insn, we must not duplicate it
767 since it will also be used outside the loop. */
768 if (GET_CODE (copy_end) == JUMP_INSN)
769 copy_end_luid--;
771 /* If we have a target that uses cc0, then we also must not duplicate
772 the insn that sets cc0 before the jump insn, if one is present. */
773 #ifdef HAVE_cc0
774 if (GET_CODE (copy_end) == JUMP_INSN
775 && sets_cc0_p (PREV_INSN (copy_end)))
776 copy_end_luid--;
777 #endif
779 /* If copy_start points to the NOTE that starts the loop, then we must
780 use the next luid, because invariant pseudo-regs moved out of the loop
781 have their lifetimes modified to start here, but they are not safe
782 to duplicate. */
783 if (copy_start == loop_start)
784 copy_start_luid++;
786 /* If a pseudo's lifetime is entirely contained within this loop, then we
787 can use a different pseudo in each unrolled copy of the loop. This
788 results in better code. */
789 /* We must limit the generic test to max_reg_before_loop, because only
790 these pseudo registers have valid regno_first_uid info. */
791 for (r = FIRST_PSEUDO_REGISTER; r < max_reg_before_loop; ++r)
792 if (REGNO_FIRST_UID (r) > 0 && REGNO_FIRST_UID (r) <= max_uid_for_loop
793 && REGNO_FIRST_LUID (r) >= copy_start_luid
794 && REGNO_LAST_UID (r) > 0 && REGNO_LAST_UID (r) <= max_uid_for_loop
795 && REGNO_LAST_LUID (r) <= copy_end_luid)
797 /* However, we must also check for loop-carried dependencies.
798 If the value the pseudo has at the end of iteration X is
799 used by iteration X+1, then we can not use a different pseudo
800 for each unrolled copy of the loop. */
801 /* A pseudo is safe if regno_first_uid is a set, and this
802 set dominates all instructions from regno_first_uid to
803 regno_last_uid. */
804 /* ??? This check is simplistic. We would get better code if
805 this check was more sophisticated. */
806 if (set_dominates_use (r, REGNO_FIRST_UID (r), REGNO_LAST_UID (r),
807 copy_start, copy_end))
808 local_regno[r] = 1;
810 if (loop_dump_stream)
812 if (local_regno[r])
813 fprintf (loop_dump_stream, "Marked reg %d as local\n", r);
814 else
815 fprintf (loop_dump_stream, "Did not mark reg %d as local\n",
821 /* If this loop requires exit tests when unrolled, check to see if we
822 can precondition the loop so as to make the exit tests unnecessary.
823 Just like variable splitting, this is not safe if the loop is entered
824 via a jump to the bottom. Also, can not do this if no strength
825 reduce info, because precondition_loop_p uses this info. */
827 /* Must copy the loop body for preconditioning before the following
828 find_splittable_regs call since that will emit insns which need to
829 be after the preconditioned loop copies, but immediately before the
830 unrolled loop copies. */
832 /* Also, it is not safe to split induction variables for the preconditioned
833 copies of the loop body. If we split induction variables, then the code
834 assumes that each induction variable can be represented as a function
835 of its initial value and the loop iteration number. This is not true
836 in this case, because the last preconditioned copy of the loop body
837 could be any iteration from the first up to the `unroll_number-1'th,
838 depending on the initial value of the iteration variable. Therefore
839 we can not split induction variables here, because we can not calculate
840 their value. Hence, this code must occur before find_splittable_regs
841 is called. */
843 if (unroll_type == UNROLL_NAIVE && ! splitting_not_safe && strength_reduce_p)
845 rtx initial_value, final_value, increment;
846 enum machine_mode mode;
848 if (precondition_loop_p (loop,
849 &initial_value, &final_value, &increment,
850 &mode))
852 rtx diff, insn;
853 rtx *labels;
854 int abs_inc, neg_inc;
855 enum rtx_code cc = loop_info->comparison_code;
856 int less_p = (cc == LE || cc == LEU || cc == LT || cc == LTU);
857 int unsigned_p = (cc == LEU || cc == GEU || cc == LTU || cc == GTU);
859 map->reg_map = (rtx *) xmalloc (maxregnum * sizeof (rtx));
861 VARRAY_CONST_EQUIV_INIT (map->const_equiv_varray, maxregnum,
862 "unroll_loop_precondition");
863 global_const_equiv_varray = map->const_equiv_varray;
865 init_reg_map (map, maxregnum);
867 /* Limit loop unrolling to 4, since this will make 7 copies of
868 the loop body. */
869 if (unroll_number > 4)
870 unroll_number = 4;
872 /* Save the absolute value of the increment, and also whether or
873 not it is negative. */
874 neg_inc = 0;
875 abs_inc = INTVAL (increment);
876 if (abs_inc < 0)
878 abs_inc = -abs_inc;
879 neg_inc = 1;
882 start_sequence ();
884 /* We must copy the final and initial values here to avoid
885 improperly shared rtl. */
886 final_value = copy_rtx (final_value);
887 initial_value = copy_rtx (initial_value);
889 /* Final value may have form of (PLUS val1 const1_rtx). We need
890 to convert it into general operand, so compute the real value. */
892 final_value = force_operand (final_value, NULL_RTX);
893 if (!nonmemory_operand (final_value, VOIDmode))
894 final_value = force_reg (mode, final_value);
896 /* Calculate the difference between the final and initial values.
897 Final value may be a (plus (reg x) (const_int 1)) rtx.
899 We have to deal with for (i = 0; --i < 6;) type loops.
900 For such loops the real final value is the first time the
901 loop variable overflows, so the diff we calculate is the
902 distance from the overflow value. This is 0 or ~0 for
903 unsigned loops depending on the direction, or INT_MAX,
904 INT_MAX+1 for signed loops. We really do not need the
905 exact value, since we are only interested in the diff
906 modulo the increment, and the increment is a power of 2,
907 so we can pretend that the overflow value is 0/~0. */
909 if (cc == NE || less_p != neg_inc)
910 diff = simplify_gen_binary (MINUS, mode, final_value,
911 initial_value);
912 else
913 diff = simplify_gen_unary (neg_inc ? NOT : NEG, mode,
914 initial_value, mode);
915 diff = force_operand (diff, NULL_RTX);
917 /* Now calculate (diff % (unroll * abs (increment))) by using an
918 and instruction. */
919 diff = simplify_gen_binary (AND, mode, diff,
920 GEN_INT (unroll_number*abs_inc - 1));
921 diff = force_operand (diff, NULL_RTX);
923 /* Now emit a sequence of branches to jump to the proper precond
924 loop entry point. */
926 labels = (rtx *) xmalloc (sizeof (rtx) * unroll_number);
927 for (i = 0; i < unroll_number; i++)
928 labels[i] = gen_label_rtx ();
930 /* Check for the case where the initial value is greater than or
931 equal to the final value. In that case, we want to execute
932 exactly one loop iteration. The code below will fail for this
933 case. This check does not apply if the loop has a NE
934 comparison at the end. */
936 if (cc != NE)
938 rtx incremented_initval;
939 enum rtx_code cmp_code;
941 incremented_initval
942 = simplify_gen_binary (PLUS, mode, initial_value, increment);
943 incremented_initval
944 = force_operand (incremented_initval, NULL_RTX);
946 cmp_code = (less_p
947 ? (unsigned_p ? GEU : GE)
948 : (unsigned_p ? LEU : LE));
950 insn = simplify_cmp_and_jump_insns (cmp_code, mode,
951 incremented_initval,
952 final_value, labels[1]);
953 if (insn)
954 predict_insn_def (insn, PRED_LOOP_CONDITION, TAKEN);
957 /* Assuming the unroll_number is 4, and the increment is 2, then
958 for a negative increment: for a positive increment:
959 diff = 0,1 precond 0 diff = 0,7 precond 0
960 diff = 2,3 precond 3 diff = 1,2 precond 1
961 diff = 4,5 precond 2 diff = 3,4 precond 2
962 diff = 6,7 precond 1 diff = 5,6 precond 3 */
964 /* We only need to emit (unroll_number - 1) branches here, the
965 last case just falls through to the following code. */
967 /* ??? This would give better code if we emitted a tree of branches
968 instead of the current linear list of branches. */
970 for (i = 0; i < unroll_number - 1; i++)
972 int cmp_const;
973 enum rtx_code cmp_code;
975 /* For negative increments, must invert the constant compared
976 against, except when comparing against zero. */
977 if (i == 0)
979 cmp_const = 0;
980 cmp_code = EQ;
982 else if (neg_inc)
984 cmp_const = unroll_number - i;
985 cmp_code = GE;
987 else
989 cmp_const = i;
990 cmp_code = LE;
993 insn = simplify_cmp_and_jump_insns (cmp_code, mode, diff,
994 GEN_INT (abs_inc*cmp_const),
995 labels[i]);
996 if (insn)
997 predict_insn (insn, PRED_LOOP_PRECONDITIONING,
998 REG_BR_PROB_BASE / (unroll_number - i));
1001 /* If the increment is greater than one, then we need another branch,
1002 to handle other cases equivalent to 0. */
1004 /* ??? This should be merged into the code above somehow to help
1005 simplify the code here, and reduce the number of branches emitted.
1006 For the negative increment case, the branch here could easily
1007 be merged with the `0' case branch above. For the positive
1008 increment case, it is not clear how this can be simplified. */
1010 if (abs_inc != 1)
1012 int cmp_const;
1013 enum rtx_code cmp_code;
1015 if (neg_inc)
1017 cmp_const = abs_inc - 1;
1018 cmp_code = LE;
1020 else
1022 cmp_const = abs_inc * (unroll_number - 1) + 1;
1023 cmp_code = GE;
1026 simplify_cmp_and_jump_insns (cmp_code, mode, diff,
1027 GEN_INT (cmp_const), labels[0]);
1030 sequence = get_insns ();
1031 end_sequence ();
1032 loop_insn_hoist (loop, sequence);
1034 /* Only the last copy of the loop body here needs the exit
1035 test, so set copy_end to exclude the compare/branch here,
1036 and then reset it inside the loop when get to the last
1037 copy. */
1039 if (GET_CODE (last_loop_insn) == BARRIER)
1040 copy_end = PREV_INSN (PREV_INSN (last_loop_insn));
1041 else if (GET_CODE (last_loop_insn) == JUMP_INSN)
1043 copy_end = PREV_INSN (last_loop_insn);
1044 #ifdef HAVE_cc0
1045 /* The immediately preceding insn may be a compare which
1046 we do not want to copy. */
1047 if (sets_cc0_p (PREV_INSN (copy_end)))
1048 copy_end = PREV_INSN (copy_end);
1049 #endif
1051 else
1052 abort ();
1054 for (i = 1; i < unroll_number; i++)
1056 emit_label_after (labels[unroll_number - i],
1057 PREV_INSN (loop_start));
1059 memset ((char *) map->insn_map, 0, max_insnno * sizeof (rtx));
1060 memset ((char *) &VARRAY_CONST_EQUIV (map->const_equiv_varray, 0),
1061 0, (VARRAY_SIZE (map->const_equiv_varray)
1062 * sizeof (struct const_equiv_data)));
1063 map->const_age = 0;
1065 for (j = 0; j < max_labelno; j++)
1066 if (local_label[j])
1067 set_label_in_map (map, j, gen_label_rtx ());
1069 for (r = FIRST_PSEUDO_REGISTER; r < max_local_regnum; r++)
1070 if (local_regno[r])
1072 map->reg_map[r]
1073 = gen_reg_rtx (GET_MODE (regno_reg_rtx[r]));
1074 record_base_value (REGNO (map->reg_map[r]),
1075 regno_reg_rtx[r], 0);
1077 /* The last copy needs the compare/branch insns at the end,
1078 so reset copy_end here if the loop ends with a conditional
1079 branch. */
1081 if (i == unroll_number - 1)
1083 if (GET_CODE (last_loop_insn) == BARRIER)
1084 copy_end = PREV_INSN (PREV_INSN (last_loop_insn));
1085 else
1086 copy_end = last_loop_insn;
1089 /* None of the copies are the `last_iteration', so just
1090 pass zero for that parameter. */
1091 copy_loop_body (loop, copy_start, copy_end, map, exit_label, 0,
1092 unroll_type, start_label, loop_end,
1093 loop_start, copy_end);
1095 emit_label_after (labels[0], PREV_INSN (loop_start));
1097 if (GET_CODE (last_loop_insn) == BARRIER)
1099 insert_before = PREV_INSN (last_loop_insn);
1100 copy_end = PREV_INSN (insert_before);
1102 else
1104 insert_before = last_loop_insn;
1105 #ifdef HAVE_cc0
1106 /* The instruction immediately before the JUMP_INSN may
1107 be a compare instruction which we do not want to copy
1108 or delete. */
1109 if (sets_cc0_p (PREV_INSN (insert_before)))
1110 insert_before = PREV_INSN (insert_before);
1111 #endif
1112 copy_end = PREV_INSN (insert_before);
1115 /* Set unroll type to MODULO now. */
1116 unroll_type = UNROLL_MODULO;
1117 loop_preconditioned = 1;
1119 /* Clean up. */
1120 free (labels);
1124 /* If reach here, and the loop type is UNROLL_NAIVE, then don't unroll
1125 the loop unless all loops are being unrolled. */
1126 if (unroll_type == UNROLL_NAIVE && ! flag_old_unroll_all_loops)
1128 if (loop_dump_stream)
1129 fprintf (loop_dump_stream,
1130 "Unrolling failure: Naive unrolling not being done.\n");
1131 goto egress;
1134 /* At this point, we are guaranteed to unroll the loop. */
1136 /* Keep track of the unroll factor for the loop. */
1137 loop_info->unroll_number = unroll_number;
1139 /* And whether the loop has been preconditioned. */
1140 loop_info->preconditioned = loop_preconditioned;
1142 /* Remember whether it was preconditioned for the second loop pass. */
1143 NOTE_PRECONDITIONED (loop->end) = loop_preconditioned;
1145 /* For each biv and giv, determine whether it can be safely split into
1146 a different variable for each unrolled copy of the loop body.
1147 We precalculate and save this info here, since computing it is
1148 expensive.
1150 Do this before deleting any instructions from the loop, so that
1151 back_branch_in_range_p will work correctly. */
1153 if (splitting_not_safe)
1154 temp = 0;
1155 else
1156 temp = find_splittable_regs (loop, unroll_type, unroll_number);
1158 /* find_splittable_regs may have created some new registers, so must
1159 reallocate the reg_map with the new larger size, and must realloc
1160 the constant maps also. */
1162 maxregnum = max_reg_num ();
1163 map->reg_map = (rtx *) xmalloc (maxregnum * sizeof (rtx));
1165 init_reg_map (map, maxregnum);
1167 if (map->const_equiv_varray == 0)
1168 VARRAY_CONST_EQUIV_INIT (map->const_equiv_varray,
1169 maxregnum + temp * unroll_number * 2,
1170 "unroll_loop");
1171 global_const_equiv_varray = map->const_equiv_varray;
1173 /* Search the list of bivs and givs to find ones which need to be remapped
1174 when split, and set their reg_map entry appropriately. */
1176 for (bl = ivs->list; bl; bl = bl->next)
1178 if (REGNO (bl->biv->src_reg) != bl->regno)
1179 map->reg_map[bl->regno] = bl->biv->src_reg;
1180 #if 0
1181 /* Currently, non-reduced/final-value givs are never split. */
1182 for (v = bl->giv; v; v = v->next_iv)
1183 if (REGNO (v->src_reg) != bl->regno)
1184 map->reg_map[REGNO (v->dest_reg)] = v->src_reg;
1185 #endif
1188 /* Use our current register alignment and pointer flags. */
1189 map->regno_pointer_align = cfun->emit->regno_pointer_align;
1190 map->x_regno_reg_rtx = cfun->emit->x_regno_reg_rtx;
1192 /* If the loop is being partially unrolled, and the iteration variables
1193 are being split, and are being renamed for the split, then must fix up
1194 the compare/jump instruction at the end of the loop to refer to the new
1195 registers. This compare isn't copied, so the registers used in it
1196 will never be replaced if it isn't done here. */
1198 if (unroll_type == UNROLL_MODULO)
1200 insn = NEXT_INSN (copy_end);
1201 if (GET_CODE (insn) == INSN || GET_CODE (insn) == JUMP_INSN)
1202 PATTERN (insn) = remap_split_bivs (loop, PATTERN (insn));
1205 /* For unroll_number times, make a copy of each instruction
1206 between copy_start and copy_end, and insert these new instructions
1207 before the end of the loop. */
1209 for (i = 0; i < unroll_number; i++)
1211 memset ((char *) map->insn_map, 0, max_insnno * sizeof (rtx));
1212 memset ((char *) &VARRAY_CONST_EQUIV (map->const_equiv_varray, 0), 0,
1213 VARRAY_SIZE (map->const_equiv_varray) * sizeof (struct const_equiv_data));
1214 map->const_age = 0;
1216 for (j = 0; j < max_labelno; j++)
1217 if (local_label[j])
1218 set_label_in_map (map, j, gen_label_rtx ());
1220 for (r = FIRST_PSEUDO_REGISTER; r < max_local_regnum; r++)
1221 if (local_regno[r])
1223 map->reg_map[r] = gen_reg_rtx (GET_MODE (regno_reg_rtx[r]));
1224 record_base_value (REGNO (map->reg_map[r]),
1225 regno_reg_rtx[r], 0);
1228 /* If loop starts with a branch to the test, then fix it so that
1229 it points to the test of the first unrolled copy of the loop. */
1230 if (i == 0 && loop_start != copy_start)
1232 insn = PREV_INSN (copy_start);
1233 pattern = PATTERN (insn);
1235 tem = get_label_from_map (map,
1236 CODE_LABEL_NUMBER
1237 (XEXP (SET_SRC (pattern), 0)));
1238 SET_SRC (pattern) = gen_rtx_LABEL_REF (VOIDmode, tem);
1240 /* Set the jump label so that it can be used by later loop unrolling
1241 passes. */
1242 JUMP_LABEL (insn) = tem;
1243 LABEL_NUSES (tem)++;
1246 copy_loop_body (loop, copy_start, copy_end, map, exit_label,
1247 i == unroll_number - 1, unroll_type, start_label,
1248 loop_end, insert_before, insert_before);
1251 /* Before deleting any insns, emit a CODE_LABEL immediately after the last
1252 insn to be deleted. This prevents any runaway delete_insn call from
1253 more insns that it should, as it always stops at a CODE_LABEL. */
1255 /* Delete the compare and branch at the end of the loop if completely
1256 unrolling the loop. Deleting the backward branch at the end also
1257 deletes the code label at the start of the loop. This is done at
1258 the very end to avoid problems with back_branch_in_range_p. */
1260 if (unroll_type == UNROLL_COMPLETELY)
1261 safety_label = emit_label_after (gen_label_rtx (), last_loop_insn);
1262 else
1263 safety_label = emit_label_after (gen_label_rtx (), copy_end);
1265 /* Delete all of the original loop instructions. Don't delete the
1266 LOOP_BEG note, or the first code label in the loop. */
1268 insn = NEXT_INSN (copy_start);
1269 while (insn != safety_label)
1271 /* ??? Don't delete named code labels. They will be deleted when the
1272 jump that references them is deleted. Otherwise, we end up deleting
1273 them twice, which causes them to completely disappear instead of turn
1274 into NOTE_INSN_DELETED_LABEL notes. This in turn causes aborts in
1275 dwarfout.c/dwarf2out.c. We could perhaps fix the dwarf*out.c files
1276 to handle deleted labels instead. Or perhaps fix DECL_RTL of the
1277 associated LABEL_DECL to point to one of the new label instances. */
1278 /* ??? Likewise, we can't delete a NOTE_INSN_DELETED_LABEL note. */
1279 if (insn != start_label
1280 && ! (GET_CODE (insn) == CODE_LABEL && LABEL_NAME (insn))
1281 && ! (GET_CODE (insn) == NOTE
1282 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED_LABEL))
1283 insn = delete_related_insns (insn);
1284 else
1285 insn = NEXT_INSN (insn);
1288 /* Can now delete the 'safety' label emitted to protect us from runaway
1289 delete_related_insns calls. */
1290 if (INSN_DELETED_P (safety_label))
1291 abort ();
1292 delete_related_insns (safety_label);
1294 /* If exit_label exists, emit it after the loop. Doing the emit here
1295 forces it to have a higher INSN_UID than any insn in the unrolled loop.
1296 This is needed so that mostly_true_jump in reorg.c will treat jumps
1297 to this loop end label correctly, i.e. predict that they are usually
1298 not taken. */
1299 if (exit_label)
1300 emit_label_after (exit_label, loop_end);
1302 egress:
1303 if (unroll_type == UNROLL_COMPLETELY)
1305 /* Remove the loop notes since this is no longer a loop. */
1306 if (loop->vtop)
1307 delete_related_insns (loop->vtop);
1308 if (loop->cont)
1309 delete_related_insns (loop->cont);
1310 if (loop_start)
1311 delete_related_insns (loop_start);
1312 if (loop_end)
1313 delete_related_insns (loop_end);
1316 if (map->const_equiv_varray)
1317 VARRAY_FREE (map->const_equiv_varray);
1318 if (map->label_map)
1320 free (map->label_map);
1321 free (local_label);
1323 free (map->insn_map);
1324 free (splittable_regs);
1325 free (splittable_regs_updates);
1326 free (addr_combined_regs);
1327 free (local_regno);
1328 if (map->reg_map)
1329 free (map->reg_map);
1330 free (map);
1333 /* A helper function for unroll_loop. Emit a compare and branch to
1334 satisfy (CMP OP1 OP2), but pass this through the simplifier first.
1335 If the branch turned out to be conditional, return it, otherwise
1336 return NULL. */
1338 static rtx
1339 simplify_cmp_and_jump_insns (code, mode, op0, op1, label)
1340 enum rtx_code code;
1341 enum machine_mode mode;
1342 rtx op0, op1, label;
1344 rtx t, insn;
1346 t = simplify_relational_operation (code, mode, op0, op1);
1347 if (!t)
1349 enum rtx_code scode = signed_condition (code);
1350 emit_cmp_and_jump_insns (op0, op1, scode, NULL_RTX, mode,
1351 code != scode, label);
1352 insn = get_last_insn ();
1354 JUMP_LABEL (insn) = label;
1355 LABEL_NUSES (label) += 1;
1357 return insn;
1359 else if (t == const_true_rtx)
1361 insn = emit_jump_insn (gen_jump (label));
1362 emit_barrier ();
1363 JUMP_LABEL (insn) = label;
1364 LABEL_NUSES (label) += 1;
1367 return NULL_RTX;
1370 /* Return true if the loop can be safely, and profitably, preconditioned
1371 so that the unrolled copies of the loop body don't need exit tests.
1373 This only works if final_value, initial_value and increment can be
1374 determined, and if increment is a constant power of 2.
1375 If increment is not a power of 2, then the preconditioning modulo
1376 operation would require a real modulo instead of a boolean AND, and this
1377 is not considered `profitable'. */
1379 /* ??? If the loop is known to be executed very many times, or the machine
1380 has a very cheap divide instruction, then preconditioning is a win even
1381 when the increment is not a power of 2. Use RTX_COST to compute
1382 whether divide is cheap.
1383 ??? A divide by constant doesn't actually need a divide, look at
1384 expand_divmod. The reduced cost of this optimized modulo is not
1385 reflected in RTX_COST. */
1388 precondition_loop_p (loop, initial_value, final_value, increment, mode)
1389 const struct loop *loop;
1390 rtx *initial_value, *final_value, *increment;
1391 enum machine_mode *mode;
1393 rtx loop_start = loop->start;
1394 struct loop_info *loop_info = LOOP_INFO (loop);
1396 if (loop_info->n_iterations > 0)
1398 if (INTVAL (loop_info->increment) > 0)
1400 *initial_value = const0_rtx;
1401 *increment = const1_rtx;
1402 *final_value = GEN_INT (loop_info->n_iterations);
1404 else
1406 *initial_value = GEN_INT (loop_info->n_iterations);
1407 *increment = constm1_rtx;
1408 *final_value = const0_rtx;
1410 *mode = word_mode;
1412 if (loop_dump_stream)
1414 fputs ("Preconditioning: Success, number of iterations known, ",
1415 loop_dump_stream);
1416 fprintf (loop_dump_stream, HOST_WIDE_INT_PRINT_DEC,
1417 loop_info->n_iterations);
1418 fputs (".\n", loop_dump_stream);
1420 return 1;
1423 if (loop_info->iteration_var == 0)
1425 if (loop_dump_stream)
1426 fprintf (loop_dump_stream,
1427 "Preconditioning: Could not find iteration variable.\n");
1428 return 0;
1430 else if (loop_info->initial_value == 0)
1432 if (loop_dump_stream)
1433 fprintf (loop_dump_stream,
1434 "Preconditioning: Could not find initial value.\n");
1435 return 0;
1437 else if (loop_info->increment == 0)
1439 if (loop_dump_stream)
1440 fprintf (loop_dump_stream,
1441 "Preconditioning: Could not find increment value.\n");
1442 return 0;
1444 else if (GET_CODE (loop_info->increment) != CONST_INT)
1446 if (loop_dump_stream)
1447 fprintf (loop_dump_stream,
1448 "Preconditioning: Increment not a constant.\n");
1449 return 0;
1451 else if ((exact_log2 (INTVAL (loop_info->increment)) < 0)
1452 && (exact_log2 (-INTVAL (loop_info->increment)) < 0))
1454 if (loop_dump_stream)
1455 fprintf (loop_dump_stream,
1456 "Preconditioning: Increment not a constant power of 2.\n");
1457 return 0;
1460 /* Unsigned_compare and compare_dir can be ignored here, since they do
1461 not matter for preconditioning. */
1463 if (loop_info->final_value == 0)
1465 if (loop_dump_stream)
1466 fprintf (loop_dump_stream,
1467 "Preconditioning: EQ comparison loop.\n");
1468 return 0;
1471 /* Must ensure that final_value is invariant, so call
1472 loop_invariant_p to check. Before doing so, must check regno
1473 against max_reg_before_loop to make sure that the register is in
1474 the range covered by loop_invariant_p. If it isn't, then it is
1475 most likely a biv/giv which by definition are not invariant. */
1476 if ((GET_CODE (loop_info->final_value) == REG
1477 && REGNO (loop_info->final_value) >= max_reg_before_loop)
1478 || (GET_CODE (loop_info->final_value) == PLUS
1479 && REGNO (XEXP (loop_info->final_value, 0)) >= max_reg_before_loop)
1480 || ! loop_invariant_p (loop, loop_info->final_value))
1482 if (loop_dump_stream)
1483 fprintf (loop_dump_stream,
1484 "Preconditioning: Final value not invariant.\n");
1485 return 0;
1488 /* Fail for floating point values, since the caller of this function
1489 does not have code to deal with them. */
1490 if (GET_MODE_CLASS (GET_MODE (loop_info->final_value)) == MODE_FLOAT
1491 || GET_MODE_CLASS (GET_MODE (loop_info->initial_value)) == MODE_FLOAT)
1493 if (loop_dump_stream)
1494 fprintf (loop_dump_stream,
1495 "Preconditioning: Floating point final or initial value.\n");
1496 return 0;
1499 /* Fail if loop_info->iteration_var is not live before loop_start,
1500 since we need to test its value in the preconditioning code. */
1502 if (REGNO_FIRST_LUID (REGNO (loop_info->iteration_var))
1503 > INSN_LUID (loop_start))
1505 if (loop_dump_stream)
1506 fprintf (loop_dump_stream,
1507 "Preconditioning: Iteration var not live before loop start.\n");
1508 return 0;
1511 /* Note that loop_iterations biases the initial value for GIV iterators
1512 such as "while (i-- > 0)" so that we can calculate the number of
1513 iterations just like for BIV iterators.
1515 Also note that the absolute values of initial_value and
1516 final_value are unimportant as only their difference is used for
1517 calculating the number of loop iterations. */
1518 *initial_value = loop_info->initial_value;
1519 *increment = loop_info->increment;
1520 *final_value = loop_info->final_value;
1522 /* Decide what mode to do these calculations in. Choose the larger
1523 of final_value's mode and initial_value's mode, or a full-word if
1524 both are constants. */
1525 *mode = GET_MODE (*final_value);
1526 if (*mode == VOIDmode)
1528 *mode = GET_MODE (*initial_value);
1529 if (*mode == VOIDmode)
1530 *mode = word_mode;
1532 else if (*mode != GET_MODE (*initial_value)
1533 && (GET_MODE_SIZE (*mode)
1534 < GET_MODE_SIZE (GET_MODE (*initial_value))))
1535 *mode = GET_MODE (*initial_value);
1537 /* Success! */
1538 if (loop_dump_stream)
1539 fprintf (loop_dump_stream, "Preconditioning: Successful.\n");
1540 return 1;
1543 /* All pseudo-registers must be mapped to themselves. Two hard registers
1544 must be mapped, VIRTUAL_STACK_VARS_REGNUM and VIRTUAL_INCOMING_ARGS_
1545 REGNUM, to avoid function-inlining specific conversions of these
1546 registers. All other hard regs can not be mapped because they may be
1547 used with different
1548 modes. */
1550 static void
1551 init_reg_map (map, maxregnum)
1552 struct inline_remap *map;
1553 int maxregnum;
1555 int i;
1557 for (i = maxregnum - 1; i > LAST_VIRTUAL_REGISTER; i--)
1558 map->reg_map[i] = regno_reg_rtx[i];
1559 /* Just clear the rest of the entries. */
1560 for (i = LAST_VIRTUAL_REGISTER; i >= 0; i--)
1561 map->reg_map[i] = 0;
1563 map->reg_map[VIRTUAL_STACK_VARS_REGNUM]
1564 = regno_reg_rtx[VIRTUAL_STACK_VARS_REGNUM];
1565 map->reg_map[VIRTUAL_INCOMING_ARGS_REGNUM]
1566 = regno_reg_rtx[VIRTUAL_INCOMING_ARGS_REGNUM];
1569 /* Strength-reduction will often emit code for optimized biv/givs which
1570 calculates their value in a temporary register, and then copies the result
1571 to the iv. This procedure reconstructs the pattern computing the iv;
1572 verifying that all operands are of the proper form.
1574 PATTERN must be the result of single_set.
1575 The return value is the amount that the giv is incremented by. */
1577 static rtx
1578 calculate_giv_inc (pattern, src_insn, regno)
1579 rtx pattern, src_insn;
1580 unsigned int regno;
1582 rtx increment;
1583 rtx increment_total = 0;
1584 int tries = 0;
1586 retry:
1587 /* Verify that we have an increment insn here. First check for a plus
1588 as the set source. */
1589 if (GET_CODE (SET_SRC (pattern)) != PLUS)
1591 /* SR sometimes computes the new giv value in a temp, then copies it
1592 to the new_reg. */
1593 src_insn = PREV_INSN (src_insn);
1594 pattern = single_set (src_insn);
1595 if (GET_CODE (SET_SRC (pattern)) != PLUS)
1596 abort ();
1598 /* The last insn emitted is not needed, so delete it to avoid confusing
1599 the second cse pass. This insn sets the giv unnecessarily. */
1600 delete_related_insns (get_last_insn ());
1603 /* Verify that we have a constant as the second operand of the plus. */
1604 increment = XEXP (SET_SRC (pattern), 1);
1605 if (GET_CODE (increment) != CONST_INT)
1607 /* SR sometimes puts the constant in a register, especially if it is
1608 too big to be an add immed operand. */
1609 increment = find_last_value (increment, &src_insn, NULL_RTX, 0);
1611 /* SR may have used LO_SUM to compute the constant if it is too large
1612 for a load immed operand. In this case, the constant is in operand
1613 one of the LO_SUM rtx. */
1614 if (GET_CODE (increment) == LO_SUM)
1615 increment = XEXP (increment, 1);
1617 /* Some ports store large constants in memory and add a REG_EQUAL
1618 note to the store insn. */
1619 else if (GET_CODE (increment) == MEM)
1621 rtx note = find_reg_note (src_insn, REG_EQUAL, 0);
1622 if (note)
1623 increment = XEXP (note, 0);
1626 else if (GET_CODE (increment) == IOR
1627 || GET_CODE (increment) == PLUS
1628 || GET_CODE (increment) == ASHIFT
1629 || GET_CODE (increment) == LSHIFTRT)
1631 /* The rs6000 port loads some constants with IOR.
1632 The alpha port loads some constants with ASHIFT and PLUS.
1633 The sparc64 port loads some constants with LSHIFTRT. */
1634 rtx second_part = XEXP (increment, 1);
1635 enum rtx_code code = GET_CODE (increment);
1637 increment = find_last_value (XEXP (increment, 0),
1638 &src_insn, NULL_RTX, 0);
1639 /* Don't need the last insn anymore. */
1640 delete_related_insns (get_last_insn ());
1642 if (GET_CODE (second_part) != CONST_INT
1643 || GET_CODE (increment) != CONST_INT)
1644 abort ();
1646 if (code == IOR)
1647 increment = GEN_INT (INTVAL (increment) | INTVAL (second_part));
1648 else if (code == PLUS)
1649 increment = GEN_INT (INTVAL (increment) + INTVAL (second_part));
1650 else if (code == ASHIFT)
1651 increment = GEN_INT (INTVAL (increment) << INTVAL (second_part));
1652 else
1653 increment = GEN_INT ((unsigned HOST_WIDE_INT) INTVAL (increment) >> INTVAL (second_part));
1656 if (GET_CODE (increment) != CONST_INT)
1657 abort ();
1659 /* The insn loading the constant into a register is no longer needed,
1660 so delete it. */
1661 delete_related_insns (get_last_insn ());
1664 if (increment_total)
1665 increment_total = GEN_INT (INTVAL (increment_total) + INTVAL (increment));
1666 else
1667 increment_total = increment;
1669 /* Check that the source register is the same as the register we expected
1670 to see as the source. If not, something is seriously wrong. */
1671 if (GET_CODE (XEXP (SET_SRC (pattern), 0)) != REG
1672 || REGNO (XEXP (SET_SRC (pattern), 0)) != regno)
1674 /* Some machines (e.g. the romp), may emit two add instructions for
1675 certain constants, so lets try looking for another add immediately
1676 before this one if we have only seen one add insn so far. */
1678 if (tries == 0)
1680 tries++;
1682 src_insn = PREV_INSN (src_insn);
1683 pattern = single_set (src_insn);
1685 delete_related_insns (get_last_insn ());
1687 goto retry;
1690 abort ();
1693 return increment_total;
1696 /* Copy REG_NOTES, except for insn references, because not all insn_map
1697 entries are valid yet. We do need to copy registers now though, because
1698 the reg_map entries can change during copying. */
1700 static rtx
1701 initial_reg_note_copy (notes, map)
1702 rtx notes;
1703 struct inline_remap *map;
1705 rtx copy;
1707 if (notes == 0)
1708 return 0;
1710 copy = rtx_alloc (GET_CODE (notes));
1711 PUT_REG_NOTE_KIND (copy, REG_NOTE_KIND (notes));
1713 if (GET_CODE (notes) == EXPR_LIST)
1714 XEXP (copy, 0) = copy_rtx_and_substitute (XEXP (notes, 0), map, 0);
1715 else if (GET_CODE (notes) == INSN_LIST)
1716 /* Don't substitute for these yet. */
1717 XEXP (copy, 0) = copy_rtx (XEXP (notes, 0));
1718 else
1719 abort ();
1721 XEXP (copy, 1) = initial_reg_note_copy (XEXP (notes, 1), map);
1723 return copy;
1726 /* Fixup insn references in copied REG_NOTES. */
1728 static void
1729 final_reg_note_copy (notesp, map)
1730 rtx *notesp;
1731 struct inline_remap *map;
1733 while (*notesp)
1735 rtx note = *notesp;
1737 if (GET_CODE (note) == INSN_LIST)
1739 /* Sometimes, we have a REG_WAS_0 note that points to a
1740 deleted instruction. In that case, we can just delete the
1741 note. */
1742 if (REG_NOTE_KIND (note) == REG_WAS_0)
1744 *notesp = XEXP (note, 1);
1745 continue;
1747 else
1749 rtx insn = map->insn_map[INSN_UID (XEXP (note, 0))];
1751 /* If we failed to remap the note, something is awry.
1752 Allow REG_LABEL as it may reference label outside
1753 the unrolled loop. */
1754 if (!insn)
1756 if (REG_NOTE_KIND (note) != REG_LABEL)
1757 abort ();
1759 else
1760 XEXP (note, 0) = insn;
1764 notesp = &XEXP (note, 1);
1768 /* Copy each instruction in the loop, substituting from map as appropriate.
1769 This is very similar to a loop in expand_inline_function. */
1771 static void
1772 copy_loop_body (loop, copy_start, copy_end, map, exit_label, last_iteration,
1773 unroll_type, start_label, loop_end, insert_before,
1774 copy_notes_from)
1775 struct loop *loop;
1776 rtx copy_start, copy_end;
1777 struct inline_remap *map;
1778 rtx exit_label;
1779 int last_iteration;
1780 enum unroll_types unroll_type;
1781 rtx start_label, loop_end, insert_before, copy_notes_from;
1783 struct loop_ivs *ivs = LOOP_IVS (loop);
1784 rtx insn, pattern;
1785 rtx set, tem, copy = NULL_RTX;
1786 int dest_reg_was_split, i;
1787 #ifdef HAVE_cc0
1788 rtx cc0_insn = 0;
1789 #endif
1790 rtx final_label = 0;
1791 rtx giv_inc, giv_dest_reg, giv_src_reg;
1793 /* If this isn't the last iteration, then map any references to the
1794 start_label to final_label. Final label will then be emitted immediately
1795 after the end of this loop body if it was ever used.
1797 If this is the last iteration, then map references to the start_label
1798 to itself. */
1799 if (! last_iteration)
1801 final_label = gen_label_rtx ();
1802 set_label_in_map (map, CODE_LABEL_NUMBER (start_label), final_label);
1804 else
1805 set_label_in_map (map, CODE_LABEL_NUMBER (start_label), start_label);
1807 start_sequence ();
1809 insn = copy_start;
1812 insn = NEXT_INSN (insn);
1814 map->orig_asm_operands_vector = 0;
1816 switch (GET_CODE (insn))
1818 case INSN:
1819 pattern = PATTERN (insn);
1820 copy = 0;
1821 giv_inc = 0;
1823 /* Check to see if this is a giv that has been combined with
1824 some split address givs. (Combined in the sense that
1825 `combine_givs' in loop.c has put two givs in the same register.)
1826 In this case, we must search all givs based on the same biv to
1827 find the address givs. Then split the address givs.
1828 Do this before splitting the giv, since that may map the
1829 SET_DEST to a new register. */
1831 if ((set = single_set (insn))
1832 && GET_CODE (SET_DEST (set)) == REG
1833 && addr_combined_regs[REGNO (SET_DEST (set))])
1835 struct iv_class *bl;
1836 struct induction *v, *tv;
1837 unsigned int regno = REGNO (SET_DEST (set));
1839 v = addr_combined_regs[REGNO (SET_DEST (set))];
1840 bl = REG_IV_CLASS (ivs, REGNO (v->src_reg));
1842 /* Although the giv_inc amount is not needed here, we must call
1843 calculate_giv_inc here since it might try to delete the
1844 last insn emitted. If we wait until later to call it,
1845 we might accidentally delete insns generated immediately
1846 below by emit_unrolled_add. */
1848 giv_inc = calculate_giv_inc (set, insn, regno);
1850 /* Now find all address giv's that were combined with this
1851 giv 'v'. */
1852 for (tv = bl->giv; tv; tv = tv->next_iv)
1853 if (tv->giv_type == DEST_ADDR && tv->same == v)
1855 int this_giv_inc;
1857 /* If this DEST_ADDR giv was not split, then ignore it. */
1858 if (*tv->location != tv->dest_reg)
1859 continue;
1861 /* Scale this_giv_inc if the multiplicative factors of
1862 the two givs are different. */
1863 this_giv_inc = INTVAL (giv_inc);
1864 if (tv->mult_val != v->mult_val)
1865 this_giv_inc = (this_giv_inc / INTVAL (v->mult_val)
1866 * INTVAL (tv->mult_val));
1868 tv->dest_reg = plus_constant (tv->dest_reg, this_giv_inc);
1869 *tv->location = tv->dest_reg;
1871 if (last_iteration && unroll_type != UNROLL_COMPLETELY)
1873 /* Must emit an insn to increment the split address
1874 giv. Add in the const_adjust field in case there
1875 was a constant eliminated from the address. */
1876 rtx value, dest_reg;
1878 /* tv->dest_reg will be either a bare register,
1879 or else a register plus a constant. */
1880 if (GET_CODE (tv->dest_reg) == REG)
1881 dest_reg = tv->dest_reg;
1882 else
1883 dest_reg = XEXP (tv->dest_reg, 0);
1885 /* Check for shared address givs, and avoid
1886 incrementing the shared pseudo reg more than
1887 once. */
1888 if (! tv->same_insn && ! tv->shared)
1890 /* tv->dest_reg may actually be a (PLUS (REG)
1891 (CONST)) here, so we must call plus_constant
1892 to add the const_adjust amount before calling
1893 emit_unrolled_add below. */
1894 value = plus_constant (tv->dest_reg,
1895 tv->const_adjust);
1897 if (GET_CODE (value) == PLUS)
1899 /* The constant could be too large for an add
1900 immediate, so can't directly emit an insn
1901 here. */
1902 emit_unrolled_add (dest_reg, XEXP (value, 0),
1903 XEXP (value, 1));
1907 /* Reset the giv to be just the register again, in case
1908 it is used after the set we have just emitted.
1909 We must subtract the const_adjust factor added in
1910 above. */
1911 tv->dest_reg = plus_constant (dest_reg,
1912 -tv->const_adjust);
1913 *tv->location = tv->dest_reg;
1918 /* If this is a setting of a splittable variable, then determine
1919 how to split the variable, create a new set based on this split,
1920 and set up the reg_map so that later uses of the variable will
1921 use the new split variable. */
1923 dest_reg_was_split = 0;
1925 if ((set = single_set (insn))
1926 && GET_CODE (SET_DEST (set)) == REG
1927 && splittable_regs[REGNO (SET_DEST (set))])
1929 unsigned int regno = REGNO (SET_DEST (set));
1930 unsigned int src_regno;
1932 dest_reg_was_split = 1;
1934 giv_dest_reg = SET_DEST (set);
1935 giv_src_reg = giv_dest_reg;
1936 /* Compute the increment value for the giv, if it wasn't
1937 already computed above. */
1938 if (giv_inc == 0)
1939 giv_inc = calculate_giv_inc (set, insn, regno);
1941 src_regno = REGNO (giv_src_reg);
1943 if (unroll_type == UNROLL_COMPLETELY)
1945 /* Completely unrolling the loop. Set the induction
1946 variable to a known constant value. */
1948 /* The value in splittable_regs may be an invariant
1949 value, so we must use plus_constant here. */
1950 splittable_regs[regno]
1951 = plus_constant (splittable_regs[src_regno],
1952 INTVAL (giv_inc));
1954 if (GET_CODE (splittable_regs[regno]) == PLUS)
1956 giv_src_reg = XEXP (splittable_regs[regno], 0);
1957 giv_inc = XEXP (splittable_regs[regno], 1);
1959 else
1961 /* The splittable_regs value must be a REG or a
1962 CONST_INT, so put the entire value in the giv_src_reg
1963 variable. */
1964 giv_src_reg = splittable_regs[regno];
1965 giv_inc = const0_rtx;
1968 else
1970 /* Partially unrolling loop. Create a new pseudo
1971 register for the iteration variable, and set it to
1972 be a constant plus the original register. Except
1973 on the last iteration, when the result has to
1974 go back into the original iteration var register. */
1976 /* Handle bivs which must be mapped to a new register
1977 when split. This happens for bivs which need their
1978 final value set before loop entry. The new register
1979 for the biv was stored in the biv's first struct
1980 induction entry by find_splittable_regs. */
1982 if (regno < ivs->n_regs
1983 && REG_IV_TYPE (ivs, regno) == BASIC_INDUCT)
1985 giv_src_reg = REG_IV_CLASS (ivs, regno)->biv->src_reg;
1986 giv_dest_reg = giv_src_reg;
1989 #if 0
1990 /* If non-reduced/final-value givs were split, then
1991 this would have to remap those givs also. See
1992 find_splittable_regs. */
1993 #endif
1995 splittable_regs[regno]
1996 = simplify_gen_binary (PLUS, GET_MODE (giv_src_reg),
1997 giv_inc,
1998 splittable_regs[src_regno]);
1999 giv_inc = splittable_regs[regno];
2001 /* Now split the induction variable by changing the dest
2002 of this insn to a new register, and setting its
2003 reg_map entry to point to this new register.
2005 If this is the last iteration, and this is the last insn
2006 that will update the iv, then reuse the original dest,
2007 to ensure that the iv will have the proper value when
2008 the loop exits or repeats.
2010 Using splittable_regs_updates here like this is safe,
2011 because it can only be greater than one if all
2012 instructions modifying the iv are always executed in
2013 order. */
2015 if (! last_iteration
2016 || (splittable_regs_updates[regno]-- != 1))
2018 tem = gen_reg_rtx (GET_MODE (giv_src_reg));
2019 giv_dest_reg = tem;
2020 map->reg_map[regno] = tem;
2021 record_base_value (REGNO (tem),
2022 giv_inc == const0_rtx
2023 ? giv_src_reg
2024 : gen_rtx_PLUS (GET_MODE (giv_src_reg),
2025 giv_src_reg, giv_inc),
2028 else
2029 map->reg_map[regno] = giv_src_reg;
2032 /* The constant being added could be too large for an add
2033 immediate, so can't directly emit an insn here. */
2034 emit_unrolled_add (giv_dest_reg, giv_src_reg, giv_inc);
2035 copy = get_last_insn ();
2036 pattern = PATTERN (copy);
2038 else
2040 pattern = copy_rtx_and_substitute (pattern, map, 0);
2041 copy = emit_insn (pattern);
2043 REG_NOTES (copy) = initial_reg_note_copy (REG_NOTES (insn), map);
2044 INSN_SCOPE (copy) = INSN_SCOPE (insn);
2046 /* If there is a REG_EQUAL note present whose value
2047 is not loop invariant, then delete it, since it
2048 may cause problems with later optimization passes. */
2049 if ((tem = find_reg_note (copy, REG_EQUAL, NULL_RTX))
2050 && !loop_invariant_p (loop, XEXP (tem, 0)))
2051 remove_note (copy, tem);
2053 #ifdef HAVE_cc0
2054 /* If this insn is setting CC0, it may need to look at
2055 the insn that uses CC0 to see what type of insn it is.
2056 In that case, the call to recog via validate_change will
2057 fail. So don't substitute constants here. Instead,
2058 do it when we emit the following insn.
2060 For example, see the pyr.md file. That machine has signed and
2061 unsigned compares. The compare patterns must check the
2062 following branch insn to see which what kind of compare to
2063 emit.
2065 If the previous insn set CC0, substitute constants on it as
2066 well. */
2067 if (sets_cc0_p (PATTERN (copy)) != 0)
2068 cc0_insn = copy;
2069 else
2071 if (cc0_insn)
2072 try_constants (cc0_insn, map);
2073 cc0_insn = 0;
2074 try_constants (copy, map);
2076 #else
2077 try_constants (copy, map);
2078 #endif
2080 /* Make split induction variable constants `permanent' since we
2081 know there are no backward branches across iteration variable
2082 settings which would invalidate this. */
2083 if (dest_reg_was_split)
2085 int regno = REGNO (SET_DEST (set));
2087 if ((size_t) regno < VARRAY_SIZE (map->const_equiv_varray)
2088 && (VARRAY_CONST_EQUIV (map->const_equiv_varray, regno).age
2089 == map->const_age))
2090 VARRAY_CONST_EQUIV (map->const_equiv_varray, regno).age = -1;
2092 break;
2094 case JUMP_INSN:
2095 pattern = copy_rtx_and_substitute (PATTERN (insn), map, 0);
2096 copy = emit_jump_insn (pattern);
2097 REG_NOTES (copy) = initial_reg_note_copy (REG_NOTES (insn), map);
2098 INSN_SCOPE (copy) = INSN_SCOPE (insn);
2100 if (JUMP_LABEL (insn))
2102 JUMP_LABEL (copy) = get_label_from_map (map,
2103 CODE_LABEL_NUMBER
2104 (JUMP_LABEL (insn)));
2105 LABEL_NUSES (JUMP_LABEL (copy))++;
2107 if (JUMP_LABEL (insn) == start_label && insn == copy_end
2108 && ! last_iteration)
2111 /* This is a branch to the beginning of the loop; this is the
2112 last insn being copied; and this is not the last iteration.
2113 In this case, we want to change the original fall through
2114 case to be a branch past the end of the loop, and the
2115 original jump label case to fall_through. */
2117 if (!invert_jump (copy, exit_label, 0))
2119 rtx jmp;
2120 rtx lab = gen_label_rtx ();
2121 /* Can't do it by reversing the jump (probably because we
2122 couldn't reverse the conditions), so emit a new
2123 jump_insn after COPY, and redirect the jump around
2124 that. */
2125 jmp = emit_jump_insn_after (gen_jump (exit_label), copy);
2126 JUMP_LABEL (jmp) = exit_label;
2127 LABEL_NUSES (exit_label)++;
2128 jmp = emit_barrier_after (jmp);
2129 emit_label_after (lab, jmp);
2130 LABEL_NUSES (lab) = 0;
2131 if (!redirect_jump (copy, lab, 0))
2132 abort ();
2136 #ifdef HAVE_cc0
2137 if (cc0_insn)
2138 try_constants (cc0_insn, map);
2139 cc0_insn = 0;
2140 #endif
2141 try_constants (copy, map);
2143 /* Set the jump label of COPY correctly to avoid problems with
2144 later passes of unroll_loop, if INSN had jump label set. */
2145 if (JUMP_LABEL (insn))
2147 rtx label = 0;
2149 /* Can't use the label_map for every insn, since this may be
2150 the backward branch, and hence the label was not mapped. */
2151 if ((set = single_set (copy)))
2153 tem = SET_SRC (set);
2154 if (GET_CODE (tem) == LABEL_REF)
2155 label = XEXP (tem, 0);
2156 else if (GET_CODE (tem) == IF_THEN_ELSE)
2158 if (XEXP (tem, 1) != pc_rtx)
2159 label = XEXP (XEXP (tem, 1), 0);
2160 else
2161 label = XEXP (XEXP (tem, 2), 0);
2165 if (label && GET_CODE (label) == CODE_LABEL)
2166 JUMP_LABEL (copy) = label;
2167 else
2169 /* An unrecognizable jump insn, probably the entry jump
2170 for a switch statement. This label must have been mapped,
2171 so just use the label_map to get the new jump label. */
2172 JUMP_LABEL (copy)
2173 = get_label_from_map (map,
2174 CODE_LABEL_NUMBER (JUMP_LABEL (insn)));
2177 /* If this is a non-local jump, then must increase the label
2178 use count so that the label will not be deleted when the
2179 original jump is deleted. */
2180 LABEL_NUSES (JUMP_LABEL (copy))++;
2182 else if (GET_CODE (PATTERN (copy)) == ADDR_VEC
2183 || GET_CODE (PATTERN (copy)) == ADDR_DIFF_VEC)
2185 rtx pat = PATTERN (copy);
2186 int diff_vec_p = GET_CODE (pat) == ADDR_DIFF_VEC;
2187 int len = XVECLEN (pat, diff_vec_p);
2188 int i;
2190 for (i = 0; i < len; i++)
2191 LABEL_NUSES (XEXP (XVECEXP (pat, diff_vec_p, i), 0))++;
2194 /* If this used to be a conditional jump insn but whose branch
2195 direction is now known, we must do something special. */
2196 if (any_condjump_p (insn) && onlyjump_p (insn) && map->last_pc_value)
2198 #ifdef HAVE_cc0
2199 /* If the previous insn set cc0 for us, delete it. */
2200 if (only_sets_cc0_p (PREV_INSN (copy)))
2201 delete_related_insns (PREV_INSN (copy));
2202 #endif
2204 /* If this is now a no-op, delete it. */
2205 if (map->last_pc_value == pc_rtx)
2207 delete_insn (copy);
2208 copy = 0;
2210 else
2211 /* Otherwise, this is unconditional jump so we must put a
2212 BARRIER after it. We could do some dead code elimination
2213 here, but jump.c will do it just as well. */
2214 emit_barrier ();
2216 break;
2218 case CALL_INSN:
2219 pattern = copy_rtx_and_substitute (PATTERN (insn), map, 0);
2220 copy = emit_call_insn (pattern);
2221 REG_NOTES (copy) = initial_reg_note_copy (REG_NOTES (insn), map);
2222 INSN_SCOPE (copy) = INSN_SCOPE (insn);
2223 SIBLING_CALL_P (copy) = SIBLING_CALL_P (insn);
2224 CONST_OR_PURE_CALL_P (copy) = CONST_OR_PURE_CALL_P (insn);
2226 /* Because the USAGE information potentially contains objects other
2227 than hard registers, we need to copy it. */
2228 CALL_INSN_FUNCTION_USAGE (copy)
2229 = copy_rtx_and_substitute (CALL_INSN_FUNCTION_USAGE (insn),
2230 map, 0);
2232 #ifdef HAVE_cc0
2233 if (cc0_insn)
2234 try_constants (cc0_insn, map);
2235 cc0_insn = 0;
2236 #endif
2237 try_constants (copy, map);
2239 /* Be lazy and assume CALL_INSNs clobber all hard registers. */
2240 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
2241 VARRAY_CONST_EQUIV (map->const_equiv_varray, i).rtx = 0;
2242 break;
2244 case CODE_LABEL:
2245 /* If this is the loop start label, then we don't need to emit a
2246 copy of this label since no one will use it. */
2248 if (insn != start_label)
2250 copy = emit_label (get_label_from_map (map,
2251 CODE_LABEL_NUMBER (insn)));
2252 map->const_age++;
2254 break;
2256 case BARRIER:
2257 copy = emit_barrier ();
2258 break;
2260 case NOTE:
2261 /* VTOP and CONT notes are valid only before the loop exit test.
2262 If placed anywhere else, loop may generate bad code. */
2263 /* BASIC_BLOCK notes exist to stabilize basic block structures with
2264 the associated rtl. We do not want to share the structure in
2265 this new block. */
2267 if (NOTE_LINE_NUMBER (insn) != NOTE_INSN_DELETED
2268 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_DELETED_LABEL
2269 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_BASIC_BLOCK
2270 && ((NOTE_LINE_NUMBER (insn) != NOTE_INSN_LOOP_VTOP
2271 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_LOOP_CONT)
2272 || (last_iteration && unroll_type != UNROLL_COMPLETELY)))
2273 copy = emit_note (NOTE_SOURCE_FILE (insn),
2274 NOTE_LINE_NUMBER (insn));
2275 else
2276 copy = 0;
2277 break;
2279 default:
2280 abort ();
2283 map->insn_map[INSN_UID (insn)] = copy;
2285 while (insn != copy_end);
2287 /* Now finish coping the REG_NOTES. */
2288 insn = copy_start;
2291 insn = NEXT_INSN (insn);
2292 if ((GET_CODE (insn) == INSN || GET_CODE (insn) == JUMP_INSN
2293 || GET_CODE (insn) == CALL_INSN)
2294 && map->insn_map[INSN_UID (insn)])
2295 final_reg_note_copy (&REG_NOTES (map->insn_map[INSN_UID (insn)]), map);
2297 while (insn != copy_end);
2299 /* There may be notes between copy_notes_from and loop_end. Emit a copy of
2300 each of these notes here, since there may be some important ones, such as
2301 NOTE_INSN_BLOCK_END notes, in this group. We don't do this on the last
2302 iteration, because the original notes won't be deleted.
2304 We can't use insert_before here, because when from preconditioning,
2305 insert_before points before the loop. We can't use copy_end, because
2306 there may be insns already inserted after it (which we don't want to
2307 copy) when not from preconditioning code. */
2309 if (! last_iteration)
2311 for (insn = copy_notes_from; insn != loop_end; insn = NEXT_INSN (insn))
2313 /* VTOP notes are valid only before the loop exit test.
2314 If placed anywhere else, loop may generate bad code.
2315 Although COPY_NOTES_FROM will be at most one or two (for cc0)
2316 instructions before the last insn in the loop, COPY_NOTES_FROM
2317 can be a NOTE_INSN_LOOP_CONT note if there is no VTOP note,
2318 as in a do .. while loop. */
2319 if (GET_CODE (insn) == NOTE
2320 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_DELETED
2321 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_BASIC_BLOCK
2322 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_LOOP_VTOP
2323 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_LOOP_CONT)
2324 emit_note (NOTE_SOURCE_FILE (insn), NOTE_LINE_NUMBER (insn));
2328 if (final_label && LABEL_NUSES (final_label) > 0)
2329 emit_label (final_label);
2331 tem = get_insns ();
2332 end_sequence ();
2333 loop_insn_emit_before (loop, 0, insert_before, tem);
2336 /* Emit an insn, using the expand_binop to ensure that a valid insn is
2337 emitted. This will correctly handle the case where the increment value
2338 won't fit in the immediate field of a PLUS insns. */
2340 void
2341 emit_unrolled_add (dest_reg, src_reg, increment)
2342 rtx dest_reg, src_reg, increment;
2344 rtx result;
2346 result = expand_simple_binop (GET_MODE (dest_reg), PLUS, src_reg, increment,
2347 dest_reg, 0, OPTAB_LIB_WIDEN);
2349 if (dest_reg != result)
2350 emit_move_insn (dest_reg, result);
2353 /* Searches the insns between INSN and LOOP->END. Returns 1 if there
2354 is a backward branch in that range that branches to somewhere between
2355 LOOP->START and INSN. Returns 0 otherwise. */
2357 /* ??? This is quadratic algorithm. Could be rewritten to be linear.
2358 In practice, this is not a problem, because this function is seldom called,
2359 and uses a negligible amount of CPU time on average. */
2362 back_branch_in_range_p (loop, insn)
2363 const struct loop *loop;
2364 rtx insn;
2366 rtx p, q, target_insn;
2367 rtx loop_start = loop->start;
2368 rtx loop_end = loop->end;
2369 rtx orig_loop_end = loop->end;
2371 /* Stop before we get to the backward branch at the end of the loop. */
2372 loop_end = prev_nonnote_insn (loop_end);
2373 if (GET_CODE (loop_end) == BARRIER)
2374 loop_end = PREV_INSN (loop_end);
2376 /* Check in case insn has been deleted, search forward for first non
2377 deleted insn following it. */
2378 while (INSN_DELETED_P (insn))
2379 insn = NEXT_INSN (insn);
2381 /* Check for the case where insn is the last insn in the loop. Deal
2382 with the case where INSN was a deleted loop test insn, in which case
2383 it will now be the NOTE_LOOP_END. */
2384 if (insn == loop_end || insn == orig_loop_end)
2385 return 0;
2387 for (p = NEXT_INSN (insn); p != loop_end; p = NEXT_INSN (p))
2389 if (GET_CODE (p) == JUMP_INSN)
2391 target_insn = JUMP_LABEL (p);
2393 /* Search from loop_start to insn, to see if one of them is
2394 the target_insn. We can't use INSN_LUID comparisons here,
2395 since insn may not have an LUID entry. */
2396 for (q = loop_start; q != insn; q = NEXT_INSN (q))
2397 if (q == target_insn)
2398 return 1;
2402 return 0;
2405 /* Try to generate the simplest rtx for the expression
2406 (PLUS (MULT mult1 mult2) add1). This is used to calculate the initial
2407 value of giv's. */
2409 static rtx
2410 fold_rtx_mult_add (mult1, mult2, add1, mode)
2411 rtx mult1, mult2, add1;
2412 enum machine_mode mode;
2414 rtx temp, mult_res;
2415 rtx result;
2417 /* The modes must all be the same. This should always be true. For now,
2418 check to make sure. */
2419 if ((GET_MODE (mult1) != mode && GET_MODE (mult1) != VOIDmode)
2420 || (GET_MODE (mult2) != mode && GET_MODE (mult2) != VOIDmode)
2421 || (GET_MODE (add1) != mode && GET_MODE (add1) != VOIDmode))
2422 abort ();
2424 /* Ensure that if at least one of mult1/mult2 are constant, then mult2
2425 will be a constant. */
2426 if (GET_CODE (mult1) == CONST_INT)
2428 temp = mult2;
2429 mult2 = mult1;
2430 mult1 = temp;
2433 mult_res = simplify_binary_operation (MULT, mode, mult1, mult2);
2434 if (! mult_res)
2435 mult_res = gen_rtx_MULT (mode, mult1, mult2);
2437 /* Again, put the constant second. */
2438 if (GET_CODE (add1) == CONST_INT)
2440 temp = add1;
2441 add1 = mult_res;
2442 mult_res = temp;
2445 result = simplify_binary_operation (PLUS, mode, add1, mult_res);
2446 if (! result)
2447 result = gen_rtx_PLUS (mode, add1, mult_res);
2449 return result;
2452 /* Searches the list of induction struct's for the biv BL, to try to calculate
2453 the total increment value for one iteration of the loop as a constant.
2455 Returns the increment value as an rtx, simplified as much as possible,
2456 if it can be calculated. Otherwise, returns 0. */
2459 biv_total_increment (bl)
2460 const struct iv_class *bl;
2462 struct induction *v;
2463 rtx result;
2465 /* For increment, must check every instruction that sets it. Each
2466 instruction must be executed only once each time through the loop.
2467 To verify this, we check that the insn is always executed, and that
2468 there are no backward branches after the insn that branch to before it.
2469 Also, the insn must have a mult_val of one (to make sure it really is
2470 an increment). */
2472 result = const0_rtx;
2473 for (v = bl->biv; v; v = v->next_iv)
2475 if (v->always_computable && v->mult_val == const1_rtx
2476 && ! v->maybe_multiple
2477 && SCALAR_INT_MODE_P (v->mode))
2478 result = fold_rtx_mult_add (result, const1_rtx, v->add_val, v->mode);
2479 else
2480 return 0;
2483 return result;
2486 /* For each biv and giv, determine whether it can be safely split into
2487 a different variable for each unrolled copy of the loop body. If it
2488 is safe to split, then indicate that by saving some useful info
2489 in the splittable_regs array.
2491 If the loop is being completely unrolled, then splittable_regs will hold
2492 the current value of the induction variable while the loop is unrolled.
2493 It must be set to the initial value of the induction variable here.
2494 Otherwise, splittable_regs will hold the difference between the current
2495 value of the induction variable and the value the induction variable had
2496 at the top of the loop. It must be set to the value 0 here.
2498 Returns the total number of instructions that set registers that are
2499 splittable. */
2501 /* ?? If the loop is only unrolled twice, then most of the restrictions to
2502 constant values are unnecessary, since we can easily calculate increment
2503 values in this case even if nothing is constant. The increment value
2504 should not involve a multiply however. */
2506 /* ?? Even if the biv/giv increment values aren't constant, it may still
2507 be beneficial to split the variable if the loop is only unrolled a few
2508 times, since multiplies by small integers (1,2,3,4) are very cheap. */
2510 static int
2511 find_splittable_regs (loop, unroll_type, unroll_number)
2512 const struct loop *loop;
2513 enum unroll_types unroll_type;
2514 int unroll_number;
2516 struct loop_ivs *ivs = LOOP_IVS (loop);
2517 struct iv_class *bl;
2518 struct induction *v;
2519 rtx increment, tem;
2520 rtx biv_final_value;
2521 int biv_splittable;
2522 int result = 0;
2524 for (bl = ivs->list; bl; bl = bl->next)
2526 /* Biv_total_increment must return a constant value,
2527 otherwise we can not calculate the split values. */
2529 increment = biv_total_increment (bl);
2530 if (! increment || GET_CODE (increment) != CONST_INT)
2531 continue;
2533 /* The loop must be unrolled completely, or else have a known number
2534 of iterations and only one exit, or else the biv must be dead
2535 outside the loop, or else the final value must be known. Otherwise,
2536 it is unsafe to split the biv since it may not have the proper
2537 value on loop exit. */
2539 /* loop_number_exit_count is nonzero if the loop has an exit other than
2540 a fall through at the end. */
2542 biv_splittable = 1;
2543 biv_final_value = 0;
2544 if (unroll_type != UNROLL_COMPLETELY
2545 && (loop->exit_count || unroll_type == UNROLL_NAIVE)
2546 && (REGNO_LAST_LUID (bl->regno) >= INSN_LUID (loop->end)
2547 || ! bl->init_insn
2548 || INSN_UID (bl->init_insn) >= max_uid_for_loop
2549 || (REGNO_FIRST_LUID (bl->regno)
2550 < INSN_LUID (bl->init_insn))
2551 || reg_mentioned_p (bl->biv->dest_reg, SET_SRC (bl->init_set)))
2552 && ! (biv_final_value = final_biv_value (loop, bl)))
2553 biv_splittable = 0;
2555 /* If any of the insns setting the BIV don't do so with a simple
2556 PLUS, we don't know how to split it. */
2557 for (v = bl->biv; biv_splittable && v; v = v->next_iv)
2558 if ((tem = single_set (v->insn)) == 0
2559 || GET_CODE (SET_DEST (tem)) != REG
2560 || REGNO (SET_DEST (tem)) != bl->regno
2561 || GET_CODE (SET_SRC (tem)) != PLUS)
2562 biv_splittable = 0;
2564 /* If final value is nonzero, then must emit an instruction which sets
2565 the value of the biv to the proper value. This is done after
2566 handling all of the givs, since some of them may need to use the
2567 biv's value in their initialization code. */
2569 /* This biv is splittable. If completely unrolling the loop, save
2570 the biv's initial value. Otherwise, save the constant zero. */
2572 if (biv_splittable == 1)
2574 if (unroll_type == UNROLL_COMPLETELY)
2576 /* If the initial value of the biv is itself (i.e. it is too
2577 complicated for strength_reduce to compute), or is a hard
2578 register, or it isn't invariant, then we must create a new
2579 pseudo reg to hold the initial value of the biv. */
2581 if (GET_CODE (bl->initial_value) == REG
2582 && (REGNO (bl->initial_value) == bl->regno
2583 || REGNO (bl->initial_value) < FIRST_PSEUDO_REGISTER
2584 || ! loop_invariant_p (loop, bl->initial_value)))
2586 rtx tem = gen_reg_rtx (bl->biv->mode);
2588 record_base_value (REGNO (tem), bl->biv->add_val, 0);
2589 loop_insn_hoist (loop,
2590 gen_move_insn (tem, bl->biv->src_reg));
2592 if (loop_dump_stream)
2593 fprintf (loop_dump_stream,
2594 "Biv %d initial value remapped to %d.\n",
2595 bl->regno, REGNO (tem));
2597 splittable_regs[bl->regno] = tem;
2599 else
2600 splittable_regs[bl->regno] = bl->initial_value;
2602 else
2603 splittable_regs[bl->regno] = const0_rtx;
2605 /* Save the number of instructions that modify the biv, so that
2606 we can treat the last one specially. */
2608 splittable_regs_updates[bl->regno] = bl->biv_count;
2609 result += bl->biv_count;
2611 if (loop_dump_stream)
2612 fprintf (loop_dump_stream,
2613 "Biv %d safe to split.\n", bl->regno);
2616 /* Check every giv that depends on this biv to see whether it is
2617 splittable also. Even if the biv isn't splittable, givs which
2618 depend on it may be splittable if the biv is live outside the
2619 loop, and the givs aren't. */
2621 result += find_splittable_givs (loop, bl, unroll_type, increment,
2622 unroll_number);
2624 /* If final value is nonzero, then must emit an instruction which sets
2625 the value of the biv to the proper value. This is done after
2626 handling all of the givs, since some of them may need to use the
2627 biv's value in their initialization code. */
2628 if (biv_final_value)
2630 /* If the loop has multiple exits, emit the insns before the
2631 loop to ensure that it will always be executed no matter
2632 how the loop exits. Otherwise emit the insn after the loop,
2633 since this is slightly more efficient. */
2634 if (! loop->exit_count)
2635 loop_insn_sink (loop, gen_move_insn (bl->biv->src_reg,
2636 biv_final_value));
2637 else
2639 /* Create a new register to hold the value of the biv, and then
2640 set the biv to its final value before the loop start. The biv
2641 is set to its final value before loop start to ensure that
2642 this insn will always be executed, no matter how the loop
2643 exits. */
2644 rtx tem = gen_reg_rtx (bl->biv->mode);
2645 record_base_value (REGNO (tem), bl->biv->add_val, 0);
2647 loop_insn_hoist (loop, gen_move_insn (tem, bl->biv->src_reg));
2648 loop_insn_hoist (loop, gen_move_insn (bl->biv->src_reg,
2649 biv_final_value));
2651 if (loop_dump_stream)
2652 fprintf (loop_dump_stream, "Biv %d mapped to %d for split.\n",
2653 REGNO (bl->biv->src_reg), REGNO (tem));
2655 /* Set up the mapping from the original biv register to the new
2656 register. */
2657 bl->biv->src_reg = tem;
2661 return result;
2664 /* For every giv based on the biv BL, check to determine whether it is
2665 splittable. This is a subroutine to find_splittable_regs ().
2667 Return the number of instructions that set splittable registers. */
2669 static int
2670 find_splittable_givs (loop, bl, unroll_type, increment, unroll_number)
2671 const struct loop *loop;
2672 struct iv_class *bl;
2673 enum unroll_types unroll_type;
2674 rtx increment;
2675 int unroll_number ATTRIBUTE_UNUSED;
2677 struct loop_ivs *ivs = LOOP_IVS (loop);
2678 struct induction *v, *v2;
2679 rtx final_value;
2680 rtx tem;
2681 int result = 0;
2683 /* Scan the list of givs, and set the same_insn field when there are
2684 multiple identical givs in the same insn. */
2685 for (v = bl->giv; v; v = v->next_iv)
2686 for (v2 = v->next_iv; v2; v2 = v2->next_iv)
2687 if (v->insn == v2->insn && rtx_equal_p (v->new_reg, v2->new_reg)
2688 && ! v2->same_insn)
2689 v2->same_insn = v;
2691 for (v = bl->giv; v; v = v->next_iv)
2693 rtx giv_inc, value;
2695 /* Only split the giv if it has already been reduced, or if the loop is
2696 being completely unrolled. */
2697 if (unroll_type != UNROLL_COMPLETELY && v->ignore)
2698 continue;
2700 /* The giv can be split if the insn that sets the giv is executed once
2701 and only once on every iteration of the loop. */
2702 /* An address giv can always be split. v->insn is just a use not a set,
2703 and hence it does not matter whether it is always executed. All that
2704 matters is that all the biv increments are always executed, and we
2705 won't reach here if they aren't. */
2706 if (v->giv_type != DEST_ADDR
2707 && (! v->always_computable
2708 || back_branch_in_range_p (loop, v->insn)))
2709 continue;
2711 /* The giv increment value must be a constant. */
2712 giv_inc = fold_rtx_mult_add (v->mult_val, increment, const0_rtx,
2713 v->mode);
2714 if (! giv_inc || GET_CODE (giv_inc) != CONST_INT)
2715 continue;
2717 /* The loop must be unrolled completely, or else have a known number of
2718 iterations and only one exit, or else the giv must be dead outside
2719 the loop, or else the final value of the giv must be known.
2720 Otherwise, it is not safe to split the giv since it may not have the
2721 proper value on loop exit. */
2723 /* The used outside loop test will fail for DEST_ADDR givs. They are
2724 never used outside the loop anyways, so it is always safe to split a
2725 DEST_ADDR giv. */
2727 final_value = 0;
2728 if (unroll_type != UNROLL_COMPLETELY
2729 && (loop->exit_count || unroll_type == UNROLL_NAIVE)
2730 && v->giv_type != DEST_ADDR
2731 /* The next part is true if the pseudo is used outside the loop.
2732 We assume that this is true for any pseudo created after loop
2733 starts, because we don't have a reg_n_info entry for them. */
2734 && (REGNO (v->dest_reg) >= max_reg_before_loop
2735 || (REGNO_FIRST_UID (REGNO (v->dest_reg)) != INSN_UID (v->insn)
2736 /* Check for the case where the pseudo is set by a shift/add
2737 sequence, in which case the first insn setting the pseudo
2738 is the first insn of the shift/add sequence. */
2739 && (! (tem = find_reg_note (v->insn, REG_RETVAL, NULL_RTX))
2740 || (REGNO_FIRST_UID (REGNO (v->dest_reg))
2741 != INSN_UID (XEXP (tem, 0)))))
2742 /* Line above always fails if INSN was moved by loop opt. */
2743 || (REGNO_LAST_LUID (REGNO (v->dest_reg))
2744 >= INSN_LUID (loop->end)))
2745 && ! (final_value = v->final_value))
2746 continue;
2748 #if 0
2749 /* Currently, non-reduced/final-value givs are never split. */
2750 /* Should emit insns after the loop if possible, as the biv final value
2751 code below does. */
2753 /* If the final value is nonzero, and the giv has not been reduced,
2754 then must emit an instruction to set the final value. */
2755 if (final_value && !v->new_reg)
2757 /* Create a new register to hold the value of the giv, and then set
2758 the giv to its final value before the loop start. The giv is set
2759 to its final value before loop start to ensure that this insn
2760 will always be executed, no matter how we exit. */
2761 tem = gen_reg_rtx (v->mode);
2762 loop_insn_hoist (loop, gen_move_insn (tem, v->dest_reg));
2763 loop_insn_hoist (loop, gen_move_insn (v->dest_reg, final_value));
2765 if (loop_dump_stream)
2766 fprintf (loop_dump_stream, "Giv %d mapped to %d for split.\n",
2767 REGNO (v->dest_reg), REGNO (tem));
2769 v->src_reg = tem;
2771 #endif
2773 /* This giv is splittable. If completely unrolling the loop, save the
2774 giv's initial value. Otherwise, save the constant zero for it. */
2776 if (unroll_type == UNROLL_COMPLETELY)
2778 /* It is not safe to use bl->initial_value here, because it may not
2779 be invariant. It is safe to use the initial value stored in
2780 the splittable_regs array if it is set. In rare cases, it won't
2781 be set, so then we do exactly the same thing as
2782 find_splittable_regs does to get a safe value. */
2783 rtx biv_initial_value;
2785 if (splittable_regs[bl->regno])
2786 biv_initial_value = splittable_regs[bl->regno];
2787 else if (GET_CODE (bl->initial_value) != REG
2788 || (REGNO (bl->initial_value) != bl->regno
2789 && REGNO (bl->initial_value) >= FIRST_PSEUDO_REGISTER))
2790 biv_initial_value = bl->initial_value;
2791 else
2793 rtx tem = gen_reg_rtx (bl->biv->mode);
2795 record_base_value (REGNO (tem), bl->biv->add_val, 0);
2796 loop_insn_hoist (loop, gen_move_insn (tem, bl->biv->src_reg));
2797 biv_initial_value = tem;
2799 biv_initial_value = extend_value_for_giv (v, biv_initial_value);
2800 value = fold_rtx_mult_add (v->mult_val, biv_initial_value,
2801 v->add_val, v->mode);
2803 else
2804 value = const0_rtx;
2806 if (v->new_reg)
2808 /* If a giv was combined with another giv, then we can only split
2809 this giv if the giv it was combined with was reduced. This
2810 is because the value of v->new_reg is meaningless in this
2811 case. */
2812 if (v->same && ! v->same->new_reg)
2814 if (loop_dump_stream)
2815 fprintf (loop_dump_stream,
2816 "giv combined with unreduced giv not split.\n");
2817 continue;
2819 /* If the giv is an address destination, it could be something other
2820 than a simple register, these have to be treated differently. */
2821 else if (v->giv_type == DEST_REG)
2823 /* If value is not a constant, register, or register plus
2824 constant, then compute its value into a register before
2825 loop start. This prevents invalid rtx sharing, and should
2826 generate better code. We can use bl->initial_value here
2827 instead of splittable_regs[bl->regno] because this code
2828 is going before the loop start. */
2829 if (unroll_type == UNROLL_COMPLETELY
2830 && GET_CODE (value) != CONST_INT
2831 && GET_CODE (value) != REG
2832 && (GET_CODE (value) != PLUS
2833 || GET_CODE (XEXP (value, 0)) != REG
2834 || GET_CODE (XEXP (value, 1)) != CONST_INT))
2836 rtx tem = gen_reg_rtx (v->mode);
2837 record_base_value (REGNO (tem), v->add_val, 0);
2838 loop_iv_add_mult_hoist (loop, bl->initial_value, v->mult_val,
2839 v->add_val, tem);
2840 value = tem;
2843 splittable_regs[reg_or_subregno (v->new_reg)] = value;
2845 else
2846 continue;
2848 else
2850 #if 0
2851 /* Currently, unreduced giv's can't be split. This is not too much
2852 of a problem since unreduced giv's are not live across loop
2853 iterations anyways. When unrolling a loop completely though,
2854 it makes sense to reduce&split givs when possible, as this will
2855 result in simpler instructions, and will not require that a reg
2856 be live across loop iterations. */
2858 splittable_regs[REGNO (v->dest_reg)] = value;
2859 fprintf (stderr, "Giv %d at insn %d not reduced\n",
2860 REGNO (v->dest_reg), INSN_UID (v->insn));
2861 #else
2862 continue;
2863 #endif
2866 /* Unreduced givs are only updated once by definition. Reduced givs
2867 are updated as many times as their biv is. Mark it so if this is
2868 a splittable register. Don't need to do anything for address givs
2869 where this may not be a register. */
2871 if (GET_CODE (v->new_reg) == REG)
2873 int count = 1;
2874 if (! v->ignore)
2875 count = REG_IV_CLASS (ivs, REGNO (v->src_reg))->biv_count;
2877 splittable_regs_updates[reg_or_subregno (v->new_reg)] = count;
2880 result++;
2882 if (loop_dump_stream)
2884 int regnum;
2886 if (GET_CODE (v->dest_reg) == CONST_INT)
2887 regnum = -1;
2888 else if (GET_CODE (v->dest_reg) != REG)
2889 regnum = REGNO (XEXP (v->dest_reg, 0));
2890 else
2891 regnum = REGNO (v->dest_reg);
2892 fprintf (loop_dump_stream, "Giv %d at insn %d safe to split.\n",
2893 regnum, INSN_UID (v->insn));
2897 return result;
2900 /* Try to prove that the register is dead after the loop exits. Trace every
2901 loop exit looking for an insn that will always be executed, which sets
2902 the register to some value, and appears before the first use of the register
2903 is found. If successful, then return 1, otherwise return 0. */
2905 /* ?? Could be made more intelligent in the handling of jumps, so that
2906 it can search past if statements and other similar structures. */
2908 static int
2909 reg_dead_after_loop (loop, reg)
2910 const struct loop *loop;
2911 rtx reg;
2913 rtx insn, label;
2914 enum rtx_code code;
2915 int jump_count = 0;
2916 int label_count = 0;
2918 /* In addition to checking all exits of this loop, we must also check
2919 all exits of inner nested loops that would exit this loop. We don't
2920 have any way to identify those, so we just give up if there are any
2921 such inner loop exits. */
2923 for (label = loop->exit_labels; label; label = LABEL_NEXTREF (label))
2924 label_count++;
2926 if (label_count != loop->exit_count)
2927 return 0;
2929 /* HACK: Must also search the loop fall through exit, create a label_ref
2930 here which points to the loop->end, and append the loop_number_exit_labels
2931 list to it. */
2932 label = gen_rtx_LABEL_REF (VOIDmode, loop->end);
2933 LABEL_NEXTREF (label) = loop->exit_labels;
2935 for (; label; label = LABEL_NEXTREF (label))
2937 /* Succeed if find an insn which sets the biv or if reach end of
2938 function. Fail if find an insn that uses the biv, or if come to
2939 a conditional jump. */
2941 insn = NEXT_INSN (XEXP (label, 0));
2942 while (insn)
2944 code = GET_CODE (insn);
2945 if (GET_RTX_CLASS (code) == 'i')
2947 rtx set;
2949 if (reg_referenced_p (reg, PATTERN (insn)))
2950 return 0;
2952 set = single_set (insn);
2953 if (set && rtx_equal_p (SET_DEST (set), reg))
2954 break;
2957 if (code == JUMP_INSN)
2959 if (GET_CODE (PATTERN (insn)) == RETURN)
2960 break;
2961 else if (!any_uncondjump_p (insn)
2962 /* Prevent infinite loop following infinite loops. */
2963 || jump_count++ > 20)
2964 return 0;
2965 else
2966 insn = JUMP_LABEL (insn);
2969 insn = NEXT_INSN (insn);
2973 /* Success, the register is dead on all loop exits. */
2974 return 1;
2977 /* Try to calculate the final value of the biv, the value it will have at
2978 the end of the loop. If we can do it, return that value. */
2981 final_biv_value (loop, bl)
2982 const struct loop *loop;
2983 struct iv_class *bl;
2985 unsigned HOST_WIDE_INT n_iterations = LOOP_INFO (loop)->n_iterations;
2986 rtx increment, tem;
2988 /* ??? This only works for MODE_INT biv's. Reject all others for now. */
2990 if (GET_MODE_CLASS (bl->biv->mode) != MODE_INT)
2991 return 0;
2993 /* The final value for reversed bivs must be calculated differently than
2994 for ordinary bivs. In this case, there is already an insn after the
2995 loop which sets this biv's final value (if necessary), and there are
2996 no other loop exits, so we can return any value. */
2997 if (bl->reversed)
2999 if (loop_dump_stream)
3000 fprintf (loop_dump_stream,
3001 "Final biv value for %d, reversed biv.\n", bl->regno);
3003 return const0_rtx;
3006 /* Try to calculate the final value as initial value + (number of iterations
3007 * increment). For this to work, increment must be invariant, the only
3008 exit from the loop must be the fall through at the bottom (otherwise
3009 it may not have its final value when the loop exits), and the initial
3010 value of the biv must be invariant. */
3012 if (n_iterations != 0
3013 && ! loop->exit_count
3014 && loop_invariant_p (loop, bl->initial_value))
3016 increment = biv_total_increment (bl);
3018 if (increment && loop_invariant_p (loop, increment))
3020 /* Can calculate the loop exit value, emit insns after loop
3021 end to calculate this value into a temporary register in
3022 case it is needed later. */
3024 tem = gen_reg_rtx (bl->biv->mode);
3025 record_base_value (REGNO (tem), bl->biv->add_val, 0);
3026 loop_iv_add_mult_sink (loop, increment, GEN_INT (n_iterations),
3027 bl->initial_value, tem);
3029 if (loop_dump_stream)
3030 fprintf (loop_dump_stream,
3031 "Final biv value for %d, calculated.\n", bl->regno);
3033 return tem;
3037 /* Check to see if the biv is dead at all loop exits. */
3038 if (reg_dead_after_loop (loop, bl->biv->src_reg))
3040 if (loop_dump_stream)
3041 fprintf (loop_dump_stream,
3042 "Final biv value for %d, biv dead after loop exit.\n",
3043 bl->regno);
3045 return const0_rtx;
3048 return 0;
3051 /* Try to calculate the final value of the giv, the value it will have at
3052 the end of the loop. If we can do it, return that value. */
3055 final_giv_value (loop, v)
3056 const struct loop *loop;
3057 struct induction *v;
3059 struct loop_ivs *ivs = LOOP_IVS (loop);
3060 struct iv_class *bl;
3061 rtx insn;
3062 rtx increment, tem;
3063 rtx seq;
3064 rtx loop_end = loop->end;
3065 unsigned HOST_WIDE_INT n_iterations = LOOP_INFO (loop)->n_iterations;
3067 bl = REG_IV_CLASS (ivs, REGNO (v->src_reg));
3069 /* The final value for givs which depend on reversed bivs must be calculated
3070 differently than for ordinary givs. In this case, there is already an
3071 insn after the loop which sets this giv's final value (if necessary),
3072 and there are no other loop exits, so we can return any value. */
3073 if (bl->reversed)
3075 if (loop_dump_stream)
3076 fprintf (loop_dump_stream,
3077 "Final giv value for %d, depends on reversed biv\n",
3078 REGNO (v->dest_reg));
3079 return const0_rtx;
3082 /* Try to calculate the final value as a function of the biv it depends
3083 upon. The only exit from the loop must be the fall through at the bottom
3084 and the insn that sets the giv must be executed on every iteration
3085 (otherwise the giv may not have its final value when the loop exits). */
3087 /* ??? Can calculate the final giv value by subtracting off the
3088 extra biv increments times the giv's mult_val. The loop must have
3089 only one exit for this to work, but the loop iterations does not need
3090 to be known. */
3092 if (n_iterations != 0
3093 && ! loop->exit_count
3094 && v->always_executed)
3096 /* ?? It is tempting to use the biv's value here since these insns will
3097 be put after the loop, and hence the biv will have its final value
3098 then. However, this fails if the biv is subsequently eliminated.
3099 Perhaps determine whether biv's are eliminable before trying to
3100 determine whether giv's are replaceable so that we can use the
3101 biv value here if it is not eliminable. */
3103 /* We are emitting code after the end of the loop, so we must make
3104 sure that bl->initial_value is still valid then. It will still
3105 be valid if it is invariant. */
3107 increment = biv_total_increment (bl);
3109 if (increment && loop_invariant_p (loop, increment)
3110 && loop_invariant_p (loop, bl->initial_value))
3112 /* Can calculate the loop exit value of its biv as
3113 (n_iterations * increment) + initial_value */
3115 /* The loop exit value of the giv is then
3116 (final_biv_value - extra increments) * mult_val + add_val.
3117 The extra increments are any increments to the biv which
3118 occur in the loop after the giv's value is calculated.
3119 We must search from the insn that sets the giv to the end
3120 of the loop to calculate this value. */
3122 /* Put the final biv value in tem. */
3123 tem = gen_reg_rtx (v->mode);
3124 record_base_value (REGNO (tem), bl->biv->add_val, 0);
3125 loop_iv_add_mult_sink (loop, extend_value_for_giv (v, increment),
3126 GEN_INT (n_iterations),
3127 extend_value_for_giv (v, bl->initial_value),
3128 tem);
3130 /* Subtract off extra increments as we find them. */
3131 for (insn = NEXT_INSN (v->insn); insn != loop_end;
3132 insn = NEXT_INSN (insn))
3134 struct induction *biv;
3136 for (biv = bl->biv; biv; biv = biv->next_iv)
3137 if (biv->insn == insn)
3139 start_sequence ();
3140 tem = expand_simple_binop (GET_MODE (tem), MINUS, tem,
3141 biv->add_val, NULL_RTX, 0,
3142 OPTAB_LIB_WIDEN);
3143 seq = get_insns ();
3144 end_sequence ();
3145 loop_insn_sink (loop, seq);
3149 /* Now calculate the giv's final value. */
3150 loop_iv_add_mult_sink (loop, tem, v->mult_val, v->add_val, tem);
3152 if (loop_dump_stream)
3153 fprintf (loop_dump_stream,
3154 "Final giv value for %d, calc from biv's value.\n",
3155 REGNO (v->dest_reg));
3157 return tem;
3161 /* Replaceable giv's should never reach here. */
3162 if (v->replaceable)
3163 abort ();
3165 /* Check to see if the biv is dead at all loop exits. */
3166 if (reg_dead_after_loop (loop, v->dest_reg))
3168 if (loop_dump_stream)
3169 fprintf (loop_dump_stream,
3170 "Final giv value for %d, giv dead after loop exit.\n",
3171 REGNO (v->dest_reg));
3173 return const0_rtx;
3176 return 0;
3179 /* Look back before LOOP->START for the insn that sets REG and return
3180 the equivalent constant if there is a REG_EQUAL note otherwise just
3181 the SET_SRC of REG. */
3183 static rtx
3184 loop_find_equiv_value (loop, reg)
3185 const struct loop *loop;
3186 rtx reg;
3188 rtx loop_start = loop->start;
3189 rtx insn, set;
3190 rtx ret;
3192 ret = reg;
3193 for (insn = PREV_INSN (loop_start); insn; insn = PREV_INSN (insn))
3195 if (GET_CODE (insn) == CODE_LABEL)
3196 break;
3198 else if (INSN_P (insn) && reg_set_p (reg, insn))
3200 /* We found the last insn before the loop that sets the register.
3201 If it sets the entire register, and has a REG_EQUAL note,
3202 then use the value of the REG_EQUAL note. */
3203 if ((set = single_set (insn))
3204 && (SET_DEST (set) == reg))
3206 rtx note = find_reg_note (insn, REG_EQUAL, NULL_RTX);
3208 /* Only use the REG_EQUAL note if it is a constant.
3209 Other things, divide in particular, will cause
3210 problems later if we use them. */
3211 if (note && GET_CODE (XEXP (note, 0)) != EXPR_LIST
3212 && CONSTANT_P (XEXP (note, 0)))
3213 ret = XEXP (note, 0);
3214 else
3215 ret = SET_SRC (set);
3217 /* We cannot do this if it changes between the
3218 assignment and loop start though. */
3219 if (modified_between_p (ret, insn, loop_start))
3220 ret = reg;
3222 break;
3225 return ret;
3228 /* Return a simplified rtx for the expression OP - REG.
3230 REG must appear in OP, and OP must be a register or the sum of a register
3231 and a second term.
3233 Thus, the return value must be const0_rtx or the second term.
3235 The caller is responsible for verifying that REG appears in OP and OP has
3236 the proper form. */
3238 static rtx
3239 subtract_reg_term (op, reg)
3240 rtx op, reg;
3242 if (op == reg)
3243 return const0_rtx;
3244 if (GET_CODE (op) == PLUS)
3246 if (XEXP (op, 0) == reg)
3247 return XEXP (op, 1);
3248 else if (XEXP (op, 1) == reg)
3249 return XEXP (op, 0);
3251 /* OP does not contain REG as a term. */
3252 abort ();
3255 /* Find and return register term common to both expressions OP0 and
3256 OP1 or NULL_RTX if no such term exists. Each expression must be a
3257 REG or a PLUS of a REG. */
3259 static rtx
3260 find_common_reg_term (op0, op1)
3261 rtx op0, op1;
3263 if ((GET_CODE (op0) == REG || GET_CODE (op0) == PLUS)
3264 && (GET_CODE (op1) == REG || GET_CODE (op1) == PLUS))
3266 rtx op00;
3267 rtx op01;
3268 rtx op10;
3269 rtx op11;
3271 if (GET_CODE (op0) == PLUS)
3272 op01 = XEXP (op0, 1), op00 = XEXP (op0, 0);
3273 else
3274 op01 = const0_rtx, op00 = op0;
3276 if (GET_CODE (op1) == PLUS)
3277 op11 = XEXP (op1, 1), op10 = XEXP (op1, 0);
3278 else
3279 op11 = const0_rtx, op10 = op1;
3281 /* Find and return common register term if present. */
3282 if (REG_P (op00) && (op00 == op10 || op00 == op11))
3283 return op00;
3284 else if (REG_P (op01) && (op01 == op10 || op01 == op11))
3285 return op01;
3288 /* No common register term found. */
3289 return NULL_RTX;
3292 /* Determine the loop iterator and calculate the number of loop
3293 iterations. Returns the exact number of loop iterations if it can
3294 be calculated, otherwise returns zero. */
3296 unsigned HOST_WIDE_INT
3297 loop_iterations (loop)
3298 struct loop *loop;
3300 struct loop_info *loop_info = LOOP_INFO (loop);
3301 struct loop_ivs *ivs = LOOP_IVS (loop);
3302 rtx comparison, comparison_value;
3303 rtx iteration_var, initial_value, increment, final_value;
3304 enum rtx_code comparison_code;
3305 HOST_WIDE_INT inc;
3306 unsigned HOST_WIDE_INT abs_inc;
3307 unsigned HOST_WIDE_INT abs_diff;
3308 int off_by_one;
3309 int increment_dir;
3310 int unsigned_p, compare_dir, final_larger;
3311 rtx last_loop_insn;
3312 rtx reg_term;
3313 struct iv_class *bl;
3315 loop_info->n_iterations = 0;
3316 loop_info->initial_value = 0;
3317 loop_info->initial_equiv_value = 0;
3318 loop_info->comparison_value = 0;
3319 loop_info->final_value = 0;
3320 loop_info->final_equiv_value = 0;
3321 loop_info->increment = 0;
3322 loop_info->iteration_var = 0;
3323 loop_info->unroll_number = 1;
3324 loop_info->iv = 0;
3326 /* We used to use prev_nonnote_insn here, but that fails because it might
3327 accidentally get the branch for a contained loop if the branch for this
3328 loop was deleted. We can only trust branches immediately before the
3329 loop_end. */
3330 last_loop_insn = PREV_INSN (loop->end);
3332 /* ??? We should probably try harder to find the jump insn
3333 at the end of the loop. The following code assumes that
3334 the last loop insn is a jump to the top of the loop. */
3335 if (GET_CODE (last_loop_insn) != JUMP_INSN)
3337 if (loop_dump_stream)
3338 fprintf (loop_dump_stream,
3339 "Loop iterations: No final conditional branch found.\n");
3340 return 0;
3343 /* If there is a more than a single jump to the top of the loop
3344 we cannot (easily) determine the iteration count. */
3345 if (LABEL_NUSES (JUMP_LABEL (last_loop_insn)) > 1)
3347 if (loop_dump_stream)
3348 fprintf (loop_dump_stream,
3349 "Loop iterations: Loop has multiple back edges.\n");
3350 return 0;
3353 /* If there are multiple conditionalized loop exit tests, they may jump
3354 back to differing CODE_LABELs. */
3355 if (loop->top && loop->cont)
3357 rtx temp = PREV_INSN (last_loop_insn);
3361 if (GET_CODE (temp) == JUMP_INSN)
3363 /* There are some kinds of jumps we can't deal with easily. */
3364 if (JUMP_LABEL (temp) == 0)
3366 if (loop_dump_stream)
3367 fprintf
3368 (loop_dump_stream,
3369 "Loop iterations: Jump insn has null JUMP_LABEL.\n");
3370 return 0;
3373 if (/* Previous unrolling may have generated new insns not
3374 covered by the uid_luid array. */
3375 INSN_UID (JUMP_LABEL (temp)) < max_uid_for_loop
3376 /* Check if we jump back into the loop body. */
3377 && INSN_LUID (JUMP_LABEL (temp)) > INSN_LUID (loop->top)
3378 && INSN_LUID (JUMP_LABEL (temp)) < INSN_LUID (loop->cont))
3380 if (loop_dump_stream)
3381 fprintf
3382 (loop_dump_stream,
3383 "Loop iterations: Loop has multiple back edges.\n");
3384 return 0;
3388 while ((temp = PREV_INSN (temp)) != loop->cont);
3391 /* Find the iteration variable. If the last insn is a conditional
3392 branch, and the insn before tests a register value, make that the
3393 iteration variable. */
3395 comparison = get_condition_for_loop (loop, last_loop_insn);
3396 if (comparison == 0)
3398 if (loop_dump_stream)
3399 fprintf (loop_dump_stream,
3400 "Loop iterations: No final comparison found.\n");
3401 return 0;
3404 /* ??? Get_condition may switch position of induction variable and
3405 invariant register when it canonicalizes the comparison. */
3407 comparison_code = GET_CODE (comparison);
3408 iteration_var = XEXP (comparison, 0);
3409 comparison_value = XEXP (comparison, 1);
3411 if (GET_CODE (iteration_var) != REG)
3413 if (loop_dump_stream)
3414 fprintf (loop_dump_stream,
3415 "Loop iterations: Comparison not against register.\n");
3416 return 0;
3419 /* The only new registers that are created before loop iterations
3420 are givs made from biv increments or registers created by
3421 load_mems. In the latter case, it is possible that try_copy_prop
3422 will propagate a new pseudo into the old iteration register but
3423 this will be marked by having the REG_USERVAR_P bit set. */
3425 if ((unsigned) REGNO (iteration_var) >= ivs->n_regs
3426 && ! REG_USERVAR_P (iteration_var))
3427 abort ();
3429 /* Determine the initial value of the iteration variable, and the amount
3430 that it is incremented each loop. Use the tables constructed by
3431 the strength reduction pass to calculate these values. */
3433 /* Clear the result values, in case no answer can be found. */
3434 initial_value = 0;
3435 increment = 0;
3437 /* The iteration variable can be either a giv or a biv. Check to see
3438 which it is, and compute the variable's initial value, and increment
3439 value if possible. */
3441 /* If this is a new register, can't handle it since we don't have any
3442 reg_iv_type entry for it. */
3443 if ((unsigned) REGNO (iteration_var) >= ivs->n_regs)
3445 if (loop_dump_stream)
3446 fprintf (loop_dump_stream,
3447 "Loop iterations: No reg_iv_type entry for iteration var.\n");
3448 return 0;
3451 /* Reject iteration variables larger than the host wide int size, since they
3452 could result in a number of iterations greater than the range of our
3453 `unsigned HOST_WIDE_INT' variable loop_info->n_iterations. */
3454 else if ((GET_MODE_BITSIZE (GET_MODE (iteration_var))
3455 > HOST_BITS_PER_WIDE_INT))
3457 if (loop_dump_stream)
3458 fprintf (loop_dump_stream,
3459 "Loop iterations: Iteration var rejected because mode too large.\n");
3460 return 0;
3462 else if (GET_MODE_CLASS (GET_MODE (iteration_var)) != MODE_INT)
3464 if (loop_dump_stream)
3465 fprintf (loop_dump_stream,
3466 "Loop iterations: Iteration var not an integer.\n");
3467 return 0;
3469 else if (REG_IV_TYPE (ivs, REGNO (iteration_var)) == BASIC_INDUCT)
3471 if (REGNO (iteration_var) >= ivs->n_regs)
3472 abort ();
3474 /* Grab initial value, only useful if it is a constant. */
3475 bl = REG_IV_CLASS (ivs, REGNO (iteration_var));
3476 initial_value = bl->initial_value;
3477 if (!bl->biv->always_executed || bl->biv->maybe_multiple)
3479 if (loop_dump_stream)
3480 fprintf (loop_dump_stream,
3481 "Loop iterations: Basic induction var not set once in each iteration.\n");
3482 return 0;
3485 increment = biv_total_increment (bl);
3487 else if (REG_IV_TYPE (ivs, REGNO (iteration_var)) == GENERAL_INDUCT)
3489 HOST_WIDE_INT offset = 0;
3490 struct induction *v = REG_IV_INFO (ivs, REGNO (iteration_var));
3491 rtx biv_initial_value;
3493 if (REGNO (v->src_reg) >= ivs->n_regs)
3494 abort ();
3496 if (!v->always_executed || v->maybe_multiple)
3498 if (loop_dump_stream)
3499 fprintf (loop_dump_stream,
3500 "Loop iterations: General induction var not set once in each iteration.\n");
3501 return 0;
3504 bl = REG_IV_CLASS (ivs, REGNO (v->src_reg));
3506 /* Increment value is mult_val times the increment value of the biv. */
3508 increment = biv_total_increment (bl);
3509 if (increment)
3511 struct induction *biv_inc;
3513 increment = fold_rtx_mult_add (v->mult_val,
3514 extend_value_for_giv (v, increment),
3515 const0_rtx, v->mode);
3516 /* The caller assumes that one full increment has occurred at the
3517 first loop test. But that's not true when the biv is incremented
3518 after the giv is set (which is the usual case), e.g.:
3519 i = 6; do {;} while (i++ < 9) .
3520 Therefore, we bias the initial value by subtracting the amount of
3521 the increment that occurs between the giv set and the giv test. */
3522 for (biv_inc = bl->biv; biv_inc; biv_inc = biv_inc->next_iv)
3524 if (loop_insn_first_p (v->insn, biv_inc->insn))
3526 if (REG_P (biv_inc->add_val))
3528 if (loop_dump_stream)
3529 fprintf (loop_dump_stream,
3530 "Loop iterations: Basic induction var add_val is REG %d.\n",
3531 REGNO (biv_inc->add_val));
3532 return 0;
3535 offset -= INTVAL (biv_inc->add_val);
3539 if (loop_dump_stream)
3540 fprintf (loop_dump_stream,
3541 "Loop iterations: Giv iterator, initial value bias %ld.\n",
3542 (long) offset);
3544 /* Initial value is mult_val times the biv's initial value plus
3545 add_val. Only useful if it is a constant. */
3546 biv_initial_value = extend_value_for_giv (v, bl->initial_value);
3547 initial_value
3548 = fold_rtx_mult_add (v->mult_val,
3549 plus_constant (biv_initial_value, offset),
3550 v->add_val, v->mode);
3552 else
3554 if (loop_dump_stream)
3555 fprintf (loop_dump_stream,
3556 "Loop iterations: Not basic or general induction var.\n");
3557 return 0;
3560 if (initial_value == 0)
3561 return 0;
3563 unsigned_p = 0;
3564 off_by_one = 0;
3565 switch (comparison_code)
3567 case LEU:
3568 unsigned_p = 1;
3569 case LE:
3570 compare_dir = 1;
3571 off_by_one = 1;
3572 break;
3573 case GEU:
3574 unsigned_p = 1;
3575 case GE:
3576 compare_dir = -1;
3577 off_by_one = -1;
3578 break;
3579 case EQ:
3580 /* Cannot determine loop iterations with this case. */
3581 compare_dir = 0;
3582 break;
3583 case LTU:
3584 unsigned_p = 1;
3585 case LT:
3586 compare_dir = 1;
3587 break;
3588 case GTU:
3589 unsigned_p = 1;
3590 case GT:
3591 compare_dir = -1;
3592 case NE:
3593 compare_dir = 0;
3594 break;
3595 default:
3596 abort ();
3599 /* If the comparison value is an invariant register, then try to find
3600 its value from the insns before the start of the loop. */
3602 final_value = comparison_value;
3603 if (GET_CODE (comparison_value) == REG
3604 && loop_invariant_p (loop, comparison_value))
3606 final_value = loop_find_equiv_value (loop, comparison_value);
3608 /* If we don't get an invariant final value, we are better
3609 off with the original register. */
3610 if (! loop_invariant_p (loop, final_value))
3611 final_value = comparison_value;
3614 /* Calculate the approximate final value of the induction variable
3615 (on the last successful iteration). The exact final value
3616 depends on the branch operator, and increment sign. It will be
3617 wrong if the iteration variable is not incremented by one each
3618 time through the loop and (comparison_value + off_by_one -
3619 initial_value) % increment != 0.
3620 ??? Note that the final_value may overflow and thus final_larger
3621 will be bogus. A potentially infinite loop will be classified
3622 as immediate, e.g. for (i = 0x7ffffff0; i <= 0x7fffffff; i++) */
3623 if (off_by_one)
3624 final_value = plus_constant (final_value, off_by_one);
3626 /* Save the calculated values describing this loop's bounds, in case
3627 precondition_loop_p will need them later. These values can not be
3628 recalculated inside precondition_loop_p because strength reduction
3629 optimizations may obscure the loop's structure.
3631 These values are only required by precondition_loop_p and insert_bct
3632 whenever the number of iterations cannot be computed at compile time.
3633 Only the difference between final_value and initial_value is
3634 important. Note that final_value is only approximate. */
3635 loop_info->initial_value = initial_value;
3636 loop_info->comparison_value = comparison_value;
3637 loop_info->final_value = plus_constant (comparison_value, off_by_one);
3638 loop_info->increment = increment;
3639 loop_info->iteration_var = iteration_var;
3640 loop_info->comparison_code = comparison_code;
3641 loop_info->iv = bl;
3643 /* Try to determine the iteration count for loops such
3644 as (for i = init; i < init + const; i++). When running the
3645 loop optimization twice, the first pass often converts simple
3646 loops into this form. */
3648 if (REG_P (initial_value))
3650 rtx reg1;
3651 rtx reg2;
3652 rtx const2;
3654 reg1 = initial_value;
3655 if (GET_CODE (final_value) == PLUS)
3656 reg2 = XEXP (final_value, 0), const2 = XEXP (final_value, 1);
3657 else
3658 reg2 = final_value, const2 = const0_rtx;
3660 /* Check for initial_value = reg1, final_value = reg2 + const2,
3661 where reg1 != reg2. */
3662 if (REG_P (reg2) && reg2 != reg1)
3664 rtx temp;
3666 /* Find what reg1 is equivalent to. Hopefully it will
3667 either be reg2 or reg2 plus a constant. */
3668 temp = loop_find_equiv_value (loop, reg1);
3670 if (find_common_reg_term (temp, reg2))
3671 initial_value = temp;
3672 else
3674 /* Find what reg2 is equivalent to. Hopefully it will
3675 either be reg1 or reg1 plus a constant. Let's ignore
3676 the latter case for now since it is not so common. */
3677 temp = loop_find_equiv_value (loop, reg2);
3679 if (temp == loop_info->iteration_var)
3680 temp = initial_value;
3681 if (temp == reg1)
3682 final_value = (const2 == const0_rtx)
3683 ? reg1 : gen_rtx_PLUS (GET_MODE (reg1), reg1, const2);
3686 else if (loop->vtop && GET_CODE (reg2) == CONST_INT)
3688 rtx temp;
3690 /* When running the loop optimizer twice, check_dbra_loop
3691 further obfuscates reversible loops of the form:
3692 for (i = init; i < init + const; i++). We often end up with
3693 final_value = 0, initial_value = temp, temp = temp2 - init,
3694 where temp2 = init + const. If the loop has a vtop we
3695 can replace initial_value with const. */
3697 temp = loop_find_equiv_value (loop, reg1);
3699 if (GET_CODE (temp) == MINUS && REG_P (XEXP (temp, 0)))
3701 rtx temp2 = loop_find_equiv_value (loop, XEXP (temp, 0));
3703 if (GET_CODE (temp2) == PLUS
3704 && XEXP (temp2, 0) == XEXP (temp, 1))
3705 initial_value = XEXP (temp2, 1);
3710 /* If have initial_value = reg + const1 and final_value = reg +
3711 const2, then replace initial_value with const1 and final_value
3712 with const2. This should be safe since we are protected by the
3713 initial comparison before entering the loop if we have a vtop.
3714 For example, a + b < a + c is not equivalent to b < c for all a
3715 when using modulo arithmetic.
3717 ??? Without a vtop we could still perform the optimization if we check
3718 the initial and final values carefully. */
3719 if (loop->vtop
3720 && (reg_term = find_common_reg_term (initial_value, final_value)))
3722 initial_value = subtract_reg_term (initial_value, reg_term);
3723 final_value = subtract_reg_term (final_value, reg_term);
3726 loop_info->initial_equiv_value = initial_value;
3727 loop_info->final_equiv_value = final_value;
3729 /* For EQ comparison loops, we don't have a valid final value.
3730 Check this now so that we won't leave an invalid value if we
3731 return early for any other reason. */
3732 if (comparison_code == EQ)
3733 loop_info->final_equiv_value = loop_info->final_value = 0;
3735 if (increment == 0)
3737 if (loop_dump_stream)
3738 fprintf (loop_dump_stream,
3739 "Loop iterations: Increment value can't be calculated.\n");
3740 return 0;
3743 if (GET_CODE (increment) != CONST_INT)
3745 /* If we have a REG, check to see if REG holds a constant value. */
3746 /* ??? Other RTL, such as (neg (reg)) is possible here, but it isn't
3747 clear if it is worthwhile to try to handle such RTL. */
3748 if (GET_CODE (increment) == REG || GET_CODE (increment) == SUBREG)
3749 increment = loop_find_equiv_value (loop, increment);
3751 if (GET_CODE (increment) != CONST_INT)
3753 if (loop_dump_stream)
3755 fprintf (loop_dump_stream,
3756 "Loop iterations: Increment value not constant ");
3757 print_simple_rtl (loop_dump_stream, increment);
3758 fprintf (loop_dump_stream, ".\n");
3760 return 0;
3762 loop_info->increment = increment;
3765 if (GET_CODE (initial_value) != CONST_INT)
3767 if (loop_dump_stream)
3769 fprintf (loop_dump_stream,
3770 "Loop iterations: Initial value not constant ");
3771 print_simple_rtl (loop_dump_stream, initial_value);
3772 fprintf (loop_dump_stream, ".\n");
3774 return 0;
3776 else if (GET_CODE (final_value) != CONST_INT)
3778 if (loop_dump_stream)
3780 fprintf (loop_dump_stream,
3781 "Loop iterations: Final value not constant ");
3782 print_simple_rtl (loop_dump_stream, final_value);
3783 fprintf (loop_dump_stream, ".\n");
3785 return 0;
3787 else if (comparison_code == EQ)
3789 rtx inc_once;
3791 if (loop_dump_stream)
3792 fprintf (loop_dump_stream, "Loop iterations: EQ comparison loop.\n");
3794 inc_once = gen_int_mode (INTVAL (initial_value) + INTVAL (increment),
3795 GET_MODE (iteration_var));
3797 if (inc_once == final_value)
3799 /* The iterator value once through the loop is equal to the
3800 comparison value. Either we have an infinite loop, or
3801 we'll loop twice. */
3802 if (increment == const0_rtx)
3803 return 0;
3804 loop_info->n_iterations = 2;
3806 else
3807 loop_info->n_iterations = 1;
3809 if (GET_CODE (loop_info->initial_value) == CONST_INT)
3810 loop_info->final_value
3811 = gen_int_mode ((INTVAL (loop_info->initial_value)
3812 + loop_info->n_iterations * INTVAL (increment)),
3813 GET_MODE (iteration_var));
3814 else
3815 loop_info->final_value
3816 = plus_constant (loop_info->initial_value,
3817 loop_info->n_iterations * INTVAL (increment));
3818 loop_info->final_equiv_value
3819 = gen_int_mode ((INTVAL (initial_value)
3820 + loop_info->n_iterations * INTVAL (increment)),
3821 GET_MODE (iteration_var));
3822 return loop_info->n_iterations;
3825 /* Final_larger is 1 if final larger, 0 if they are equal, otherwise -1. */
3826 if (unsigned_p)
3827 final_larger
3828 = ((unsigned HOST_WIDE_INT) INTVAL (final_value)
3829 > (unsigned HOST_WIDE_INT) INTVAL (initial_value))
3830 - ((unsigned HOST_WIDE_INT) INTVAL (final_value)
3831 < (unsigned HOST_WIDE_INT) INTVAL (initial_value));
3832 else
3833 final_larger = (INTVAL (final_value) > INTVAL (initial_value))
3834 - (INTVAL (final_value) < INTVAL (initial_value));
3836 if (INTVAL (increment) > 0)
3837 increment_dir = 1;
3838 else if (INTVAL (increment) == 0)
3839 increment_dir = 0;
3840 else
3841 increment_dir = -1;
3843 /* There are 27 different cases: compare_dir = -1, 0, 1;
3844 final_larger = -1, 0, 1; increment_dir = -1, 0, 1.
3845 There are 4 normal cases, 4 reverse cases (where the iteration variable
3846 will overflow before the loop exits), 4 infinite loop cases, and 15
3847 immediate exit (0 or 1 iteration depending on loop type) cases.
3848 Only try to optimize the normal cases. */
3850 /* (compare_dir/final_larger/increment_dir)
3851 Normal cases: (0/-1/-1), (0/1/1), (-1/-1/-1), (1/1/1)
3852 Reverse cases: (0/-1/1), (0/1/-1), (-1/-1/1), (1/1/-1)
3853 Infinite loops: (0/-1/0), (0/1/0), (-1/-1/0), (1/1/0)
3854 Immediate exit: (0/0/X), (-1/0/X), (-1/1/X), (1/0/X), (1/-1/X) */
3856 /* ?? If the meaning of reverse loops (where the iteration variable
3857 will overflow before the loop exits) is undefined, then could
3858 eliminate all of these special checks, and just always assume
3859 the loops are normal/immediate/infinite. Note that this means
3860 the sign of increment_dir does not have to be known. Also,
3861 since it does not really hurt if immediate exit loops or infinite loops
3862 are optimized, then that case could be ignored also, and hence all
3863 loops can be optimized.
3865 According to ANSI Spec, the reverse loop case result is undefined,
3866 because the action on overflow is undefined.
3868 See also the special test for NE loops below. */
3870 if (final_larger == increment_dir && final_larger != 0
3871 && (final_larger == compare_dir || compare_dir == 0))
3872 /* Normal case. */
3874 else
3876 if (loop_dump_stream)
3877 fprintf (loop_dump_stream, "Loop iterations: Not normal loop.\n");
3878 return 0;
3881 /* Calculate the number of iterations, final_value is only an approximation,
3882 so correct for that. Note that abs_diff and n_iterations are
3883 unsigned, because they can be as large as 2^n - 1. */
3885 inc = INTVAL (increment);
3886 if (inc > 0)
3888 abs_diff = INTVAL (final_value) - INTVAL (initial_value);
3889 abs_inc = inc;
3891 else if (inc < 0)
3893 abs_diff = INTVAL (initial_value) - INTVAL (final_value);
3894 abs_inc = -inc;
3896 else
3897 abort ();
3899 /* Given that iteration_var is going to iterate over its own mode,
3900 not HOST_WIDE_INT, disregard higher bits that might have come
3901 into the picture due to sign extension of initial and final
3902 values. */
3903 abs_diff &= ((unsigned HOST_WIDE_INT) 1
3904 << (GET_MODE_BITSIZE (GET_MODE (iteration_var)) - 1)
3905 << 1) - 1;
3907 /* For NE tests, make sure that the iteration variable won't miss
3908 the final value. If abs_diff mod abs_incr is not zero, then the
3909 iteration variable will overflow before the loop exits, and we
3910 can not calculate the number of iterations. */
3911 if (compare_dir == 0 && (abs_diff % abs_inc) != 0)
3912 return 0;
3914 /* Note that the number of iterations could be calculated using
3915 (abs_diff + abs_inc - 1) / abs_inc, provided care was taken to
3916 handle potential overflow of the summation. */
3917 loop_info->n_iterations = abs_diff / abs_inc + ((abs_diff % abs_inc) != 0);
3918 return loop_info->n_iterations;
3921 /* Replace uses of split bivs with their split pseudo register. This is
3922 for original instructions which remain after loop unrolling without
3923 copying. */
3925 static rtx
3926 remap_split_bivs (loop, x)
3927 struct loop *loop;
3928 rtx x;
3930 struct loop_ivs *ivs = LOOP_IVS (loop);
3931 enum rtx_code code;
3932 int i;
3933 const char *fmt;
3935 if (x == 0)
3936 return x;
3938 code = GET_CODE (x);
3939 switch (code)
3941 case SCRATCH:
3942 case PC:
3943 case CC0:
3944 case CONST_INT:
3945 case CONST_DOUBLE:
3946 case CONST:
3947 case SYMBOL_REF:
3948 case LABEL_REF:
3949 return x;
3951 case REG:
3952 #if 0
3953 /* If non-reduced/final-value givs were split, then this would also
3954 have to remap those givs also. */
3955 #endif
3956 if (REGNO (x) < ivs->n_regs
3957 && REG_IV_TYPE (ivs, REGNO (x)) == BASIC_INDUCT)
3958 return REG_IV_CLASS (ivs, REGNO (x))->biv->src_reg;
3959 break;
3961 default:
3962 break;
3965 fmt = GET_RTX_FORMAT (code);
3966 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3968 if (fmt[i] == 'e')
3969 XEXP (x, i) = remap_split_bivs (loop, XEXP (x, i));
3970 else if (fmt[i] == 'E')
3972 int j;
3973 for (j = 0; j < XVECLEN (x, i); j++)
3974 XVECEXP (x, i, j) = remap_split_bivs (loop, XVECEXP (x, i, j));
3977 return x;
3980 /* If FIRST_UID is a set of REGNO, and FIRST_UID dominates LAST_UID (e.g.
3981 FIST_UID is always executed if LAST_UID is), then return 1. Otherwise
3982 return 0. COPY_START is where we can start looking for the insns
3983 FIRST_UID and LAST_UID. COPY_END is where we stop looking for these
3984 insns.
3986 If there is no JUMP_INSN between LOOP_START and FIRST_UID, then FIRST_UID
3987 must dominate LAST_UID.
3989 If there is a CODE_LABEL between FIRST_UID and LAST_UID, then FIRST_UID
3990 may not dominate LAST_UID.
3992 If there is no CODE_LABEL between FIRST_UID and LAST_UID, then FIRST_UID
3993 must dominate LAST_UID. */
3996 set_dominates_use (regno, first_uid, last_uid, copy_start, copy_end)
3997 int regno;
3998 int first_uid;
3999 int last_uid;
4000 rtx copy_start;
4001 rtx copy_end;
4003 int passed_jump = 0;
4004 rtx p = NEXT_INSN (copy_start);
4006 while (INSN_UID (p) != first_uid)
4008 if (GET_CODE (p) == JUMP_INSN)
4009 passed_jump = 1;
4010 /* Could not find FIRST_UID. */
4011 if (p == copy_end)
4012 return 0;
4013 p = NEXT_INSN (p);
4016 /* Verify that FIRST_UID is an insn that entirely sets REGNO. */
4017 if (! INSN_P (p) || ! dead_or_set_regno_p (p, regno))
4018 return 0;
4020 /* FIRST_UID is always executed. */
4021 if (passed_jump == 0)
4022 return 1;
4024 while (INSN_UID (p) != last_uid)
4026 /* If we see a CODE_LABEL between FIRST_UID and LAST_UID, then we
4027 can not be sure that FIRST_UID dominates LAST_UID. */
4028 if (GET_CODE (p) == CODE_LABEL)
4029 return 0;
4030 /* Could not find LAST_UID, but we reached the end of the loop, so
4031 it must be safe. */
4032 else if (p == copy_end)
4033 return 1;
4034 p = NEXT_INSN (p);
4037 /* FIRST_UID is always executed if LAST_UID is executed. */
4038 return 1;
4041 /* This routine is called when the number of iterations for the unrolled
4042 loop is one. The goal is to identify a loop that begins with an
4043 unconditional branch to the loop continuation note (or a label just after).
4044 In this case, the unconditional branch that starts the loop needs to be
4045 deleted so that we execute the single iteration. */
4047 static rtx
4048 ujump_to_loop_cont (loop_start, loop_cont)
4049 rtx loop_start;
4050 rtx loop_cont;
4052 rtx x, label, label_ref;
4054 /* See if loop start, or the next insn is an unconditional jump. */
4055 loop_start = next_nonnote_insn (loop_start);
4057 x = pc_set (loop_start);
4058 if (!x)
4059 return NULL_RTX;
4061 label_ref = SET_SRC (x);
4062 if (!label_ref)
4063 return NULL_RTX;
4065 /* Examine insn after loop continuation note. Return if not a label. */
4066 label = next_nonnote_insn (loop_cont);
4067 if (label == 0 || GET_CODE (label) != CODE_LABEL)
4068 return NULL_RTX;
4070 /* Return the loop start if the branch label matches the code label. */
4071 if (CODE_LABEL_NUMBER (label) == CODE_LABEL_NUMBER (XEXP (label_ref, 0)))
4072 return loop_start;
4073 else
4074 return NULL_RTX;