2000-08-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
[official-gcc.git] / gcc / unroll.c
blobc09f036eb5fdacc4167f040a4179b6f014195619
1 /* Try to unroll loops, and split induction variables.
2 Copyright (C) 1992, 1993, 1994, 1995, 1997, 1998,
3 1999, 2000 Free Software Foundation, Inc.
4 Contributed by James E. Wilson, Cygnus Support/UC Berkeley.
6 This file is part of GNU CC.
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 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 specifyable 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 /* The prime factors looked for when trying to unroll a loop by some
135 number which is modulo the total number of iterations. Just checking
136 for these 4 prime factors will find at least one factor for 75% of
137 all numbers theoretically. Practically speaking, this will succeed
138 almost all of the time since loops are generally a multiple of 2
139 and/or 5. */
141 #define NUM_FACTORS 4
143 struct _factor { int factor, count; } factors[NUM_FACTORS]
144 = { {2, 0}, {3, 0}, {5, 0}, {7, 0}};
146 /* Describes the different types of loop unrolling performed. */
148 enum unroll_types { UNROLL_COMPLETELY, UNROLL_MODULO, UNROLL_NAIVE };
150 #include "config.h"
151 #include "system.h"
152 #include "rtl.h"
153 #include "tm_p.h"
154 #include "insn-config.h"
155 #include "integrate.h"
156 #include "regs.h"
157 #include "recog.h"
158 #include "flags.h"
159 #include "function.h"
160 #include "expr.h"
161 #include "loop.h"
162 #include "toplev.h"
163 #include "hard-reg-set.h"
164 #include "basic-block.h"
166 /* This controls which loops are unrolled, and by how much we unroll
167 them. */
169 #ifndef MAX_UNROLLED_INSNS
170 #define MAX_UNROLLED_INSNS 100
171 #endif
173 /* Indexed by register number, if non-zero, then it contains a pointer
174 to a struct induction for a DEST_REG giv which has been combined with
175 one of more address givs. This is needed because whenever such a DEST_REG
176 giv is modified, we must modify the value of all split address givs
177 that were combined with this DEST_REG giv. */
179 static struct induction **addr_combined_regs;
181 /* Indexed by register number, if this is a splittable induction variable,
182 then this will hold the current value of the register, which depends on the
183 iteration number. */
185 static rtx *splittable_regs;
187 /* Indexed by register number, if this is a splittable induction variable,
188 this indicates if it was made from a derived giv. */
189 static char *derived_regs;
191 /* Indexed by register number, if this is a splittable induction variable,
192 then this will hold the number of instructions in the loop that modify
193 the induction variable. Used to ensure that only the last insn modifying
194 a split iv will update the original iv of the dest. */
196 static int *splittable_regs_updates;
198 /* Forward declarations. */
200 static void init_reg_map PARAMS ((struct inline_remap *, int));
201 static rtx calculate_giv_inc PARAMS ((rtx, rtx, unsigned int));
202 static rtx initial_reg_note_copy PARAMS ((rtx, struct inline_remap *));
203 static void final_reg_note_copy PARAMS ((rtx, struct inline_remap *));
204 static void copy_loop_body PARAMS ((rtx, rtx, struct inline_remap *, rtx, int,
205 enum unroll_types, rtx, rtx, rtx, rtx));
206 static void iteration_info PARAMS ((const struct loop *, rtx, rtx *, rtx *));
207 static int find_splittable_regs PARAMS ((const struct loop *,
208 enum unroll_types, rtx, int));
209 static int find_splittable_givs PARAMS ((const struct loop *,
210 struct iv_class *, enum unroll_types,
211 rtx, int));
212 static int reg_dead_after_loop PARAMS ((const struct loop *, rtx));
213 static rtx fold_rtx_mult_add PARAMS ((rtx, rtx, rtx, enum machine_mode));
214 static int verify_addresses PARAMS ((struct induction *, rtx, int));
215 static rtx remap_split_bivs PARAMS ((rtx));
216 static rtx find_common_reg_term PARAMS ((rtx, rtx));
217 static rtx subtract_reg_term PARAMS ((rtx, rtx));
218 static rtx loop_find_equiv_value PARAMS ((const struct loop *, rtx));
220 /* Try to unroll one loop and split induction variables in the loop.
222 The loop is described by the arguments LOOP and INSN_COUNT.
223 END_INSERT_BEFORE indicates where insns should be added which need
224 to be executed when the loop falls through. STRENGTH_REDUCTION_P
225 indicates whether information generated in the strength reduction
226 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, end_insert_before, strength_reduce_p)
233 struct loop *loop;
234 int insn_count;
235 rtx end_insert_before;
236 int strength_reduce_p;
238 int i, j;
239 unsigned int r;
240 unsigned HOST_WIDE_INT temp;
241 int unroll_number = 1;
242 rtx copy_start, copy_end;
243 rtx insn, sequence, pattern, tem;
244 int max_labelno, max_insnno;
245 rtx insert_before;
246 struct inline_remap *map;
247 char *local_label = NULL;
248 char *local_regno;
249 unsigned int max_local_regnum;
250 unsigned int maxregnum;
251 rtx exit_label = 0;
252 rtx start_label;
253 struct iv_class *bl;
254 int splitting_not_safe = 0;
255 enum unroll_types unroll_type = UNROLL_NAIVE;
256 int loop_preconditioned = 0;
257 rtx safety_label;
258 /* This points to the last real insn in the loop, which should be either
259 a JUMP_INSN (for conditional jumps) or a BARRIER (for unconditional
260 jumps). */
261 rtx last_loop_insn;
262 rtx loop_start = loop->start;
263 rtx loop_end = loop->end;
264 struct loop_info *loop_info = LOOP_INFO (loop);
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 /* When emitting debugger info, we can't unroll loops with unequal numbers
277 of block_beg and block_end notes, because that would unbalance the block
278 structure of the function. This can happen as a result of the
279 "if (foo) bar; else break;" optimization in jump.c. */
280 /* ??? Gcc has a general policy that -g is never supposed to change the code
281 that the compiler emits, so we must disable this optimization always,
282 even if debug info is not being output. This is rare, so this should
283 not be a significant performance problem. */
285 if (1 /* write_symbols != NO_DEBUG */)
287 int block_begins = 0;
288 int block_ends = 0;
290 for (insn = loop_start; insn != loop_end; insn = NEXT_INSN (insn))
292 if (GET_CODE (insn) == NOTE)
294 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG)
295 block_begins++;
296 else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END)
297 block_ends++;
298 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_BEG
299 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_END)
301 /* Note, would be nice to add code to unroll EH
302 regions, but until that time, we punt (don't
303 unroll). For the proper way of doing it, see
304 expand_inline_function. */
306 if (loop_dump_stream)
307 fprintf (loop_dump_stream,
308 "Unrolling failure: cannot unroll EH regions.\n");
309 return;
314 if (block_begins != block_ends)
316 if (loop_dump_stream)
317 fprintf (loop_dump_stream,
318 "Unrolling failure: Unbalanced block notes.\n");
319 return;
323 /* Determine type of unroll to perform. Depends on the number of iterations
324 and the size of the loop. */
326 /* If there is no strength reduce info, then set
327 loop_info->n_iterations to zero. This can happen if
328 strength_reduce can't find any bivs in the loop. A value of zero
329 indicates that the number of iterations could not be calculated. */
331 if (! strength_reduce_p)
332 loop_info->n_iterations = 0;
334 if (loop_dump_stream && loop_info->n_iterations > 0)
336 fputs ("Loop unrolling: ", loop_dump_stream);
337 fprintf (loop_dump_stream, HOST_WIDE_INT_PRINT_DEC,
338 loop_info->n_iterations);
339 fputs (" iterations.\n", loop_dump_stream);
342 /* Find and save a pointer to the last nonnote insn in the loop. */
344 last_loop_insn = prev_nonnote_insn (loop_end);
346 /* Calculate how many times to unroll the loop. Indicate whether or
347 not the loop is being completely unrolled. */
349 if (loop_info->n_iterations == 1)
351 /* If number of iterations is exactly 1, then eliminate the compare and
352 branch at the end of the loop since they will never be taken.
353 Then return, since no other action is needed here. */
355 /* If the last instruction is not a BARRIER or a JUMP_INSN, then
356 don't do anything. */
358 if (GET_CODE (last_loop_insn) == BARRIER)
360 /* Delete the jump insn. This will delete the barrier also. */
361 delete_insn (PREV_INSN (last_loop_insn));
363 else if (GET_CODE (last_loop_insn) == JUMP_INSN)
365 #ifdef HAVE_cc0
366 rtx prev = PREV_INSN (last_loop_insn);
367 #endif
368 delete_insn (last_loop_insn);
369 #ifdef HAVE_cc0
370 /* The immediately preceding insn may be a compare which must be
371 deleted. */
372 if (sets_cc0_p (prev))
373 delete_insn (prev);
374 #endif
377 /* Remove the loop notes since this is no longer a loop. */
378 if (loop->vtop)
379 delete_insn (loop->vtop);
380 if (loop->cont)
381 delete_insn (loop->cont);
382 if (loop_start)
383 delete_insn (loop_start);
384 if (loop_end)
385 delete_insn (loop_end);
387 return;
389 else if (loop_info->n_iterations > 0
390 /* Avoid overflow in the next expression. */
391 && loop_info->n_iterations < MAX_UNROLLED_INSNS
392 && loop_info->n_iterations * insn_count < MAX_UNROLLED_INSNS)
394 unroll_number = loop_info->n_iterations;
395 unroll_type = UNROLL_COMPLETELY;
397 else if (loop_info->n_iterations > 0)
399 /* Try to factor the number of iterations. Don't bother with the
400 general case, only using 2, 3, 5, and 7 will get 75% of all
401 numbers theoretically, and almost all in practice. */
403 for (i = 0; i < NUM_FACTORS; i++)
404 factors[i].count = 0;
406 temp = loop_info->n_iterations;
407 for (i = NUM_FACTORS - 1; i >= 0; i--)
408 while (temp % factors[i].factor == 0)
410 factors[i].count++;
411 temp = temp / factors[i].factor;
414 /* Start with the larger factors first so that we generally
415 get lots of unrolling. */
417 unroll_number = 1;
418 temp = insn_count;
419 for (i = 3; i >= 0; i--)
420 while (factors[i].count--)
422 if (temp * factors[i].factor < MAX_UNROLLED_INSNS)
424 unroll_number *= factors[i].factor;
425 temp *= factors[i].factor;
427 else
428 break;
431 /* If we couldn't find any factors, then unroll as in the normal
432 case. */
433 if (unroll_number == 1)
435 if (loop_dump_stream)
436 fprintf (loop_dump_stream,
437 "Loop unrolling: No factors found.\n");
439 else
440 unroll_type = UNROLL_MODULO;
444 /* Default case, calculate number of times to unroll loop based on its
445 size. */
446 if (unroll_type == UNROLL_NAIVE)
448 if (8 * insn_count < MAX_UNROLLED_INSNS)
449 unroll_number = 8;
450 else if (4 * insn_count < MAX_UNROLLED_INSNS)
451 unroll_number = 4;
452 else
453 unroll_number = 2;
456 /* Now we know how many times to unroll the loop. */
458 if (loop_dump_stream)
459 fprintf (loop_dump_stream,
460 "Unrolling loop %d times.\n", unroll_number);
463 if (unroll_type == UNROLL_COMPLETELY || unroll_type == UNROLL_MODULO)
465 /* Loops of these types can start with jump down to the exit condition
466 in rare circumstances.
468 Consider a pair of nested loops where the inner loop is part
469 of the exit code for the outer loop.
471 In this case jump.c will not duplicate the exit test for the outer
472 loop, so it will start with a jump to the exit code.
474 Then consider if the inner loop turns out to iterate once and
475 only once. We will end up deleting the jumps associated with
476 the inner loop. However, the loop notes are not removed from
477 the instruction stream.
479 And finally assume that we can compute the number of iterations
480 for the outer loop.
482 In this case unroll may want to unroll the outer loop even though
483 it starts with a jump to the outer loop's exit code.
485 We could try to optimize this case, but it hardly seems worth it.
486 Just return without unrolling the loop in such cases. */
488 insn = loop_start;
489 while (GET_CODE (insn) != CODE_LABEL && GET_CODE (insn) != JUMP_INSN)
490 insn = NEXT_INSN (insn);
491 if (GET_CODE (insn) == JUMP_INSN)
492 return;
495 if (unroll_type == UNROLL_COMPLETELY)
497 /* Completely unrolling the loop: Delete the compare and branch at
498 the end (the last two instructions). This delete must done at the
499 very end of loop unrolling, to avoid problems with calls to
500 back_branch_in_range_p, which is called by find_splittable_regs.
501 All increments of splittable bivs/givs are changed to load constant
502 instructions. */
504 copy_start = loop_start;
506 /* Set insert_before to the instruction immediately after the JUMP_INSN
507 (or BARRIER), so that any NOTEs between the JUMP_INSN and the end of
508 the loop will be correctly handled by copy_loop_body. */
509 insert_before = NEXT_INSN (last_loop_insn);
511 /* Set copy_end to the insn before the jump at the end of the loop. */
512 if (GET_CODE (last_loop_insn) == BARRIER)
513 copy_end = PREV_INSN (PREV_INSN (last_loop_insn));
514 else if (GET_CODE (last_loop_insn) == JUMP_INSN)
516 copy_end = PREV_INSN (last_loop_insn);
517 #ifdef HAVE_cc0
518 /* The instruction immediately before the JUMP_INSN may be a compare
519 instruction which we do not want to copy. */
520 if (sets_cc0_p (PREV_INSN (copy_end)))
521 copy_end = PREV_INSN (copy_end);
522 #endif
524 else
526 /* We currently can't unroll a loop if it doesn't end with a
527 JUMP_INSN. There would need to be a mechanism that recognizes
528 this case, and then inserts a jump after each loop body, which
529 jumps to after the last loop body. */
530 if (loop_dump_stream)
531 fprintf (loop_dump_stream,
532 "Unrolling failure: loop does not end with a JUMP_INSN.\n");
533 return;
536 else if (unroll_type == UNROLL_MODULO)
538 /* Partially unrolling the loop: The compare and branch at the end
539 (the last two instructions) must remain. Don't copy the compare
540 and branch instructions at the end of the loop. Insert the unrolled
541 code immediately before the compare/branch at the end so that the
542 code will fall through to them as before. */
544 copy_start = loop_start;
546 /* Set insert_before to the jump insn at the end of the loop.
547 Set copy_end to before the jump insn at the end of the loop. */
548 if (GET_CODE (last_loop_insn) == BARRIER)
550 insert_before = PREV_INSN (last_loop_insn);
551 copy_end = PREV_INSN (insert_before);
553 else if (GET_CODE (last_loop_insn) == JUMP_INSN)
555 insert_before = last_loop_insn;
556 #ifdef HAVE_cc0
557 /* The instruction immediately before the JUMP_INSN may be a compare
558 instruction which we do not want to copy or delete. */
559 if (sets_cc0_p (PREV_INSN (insert_before)))
560 insert_before = PREV_INSN (insert_before);
561 #endif
562 copy_end = PREV_INSN (insert_before);
564 else
566 /* We currently can't unroll a loop if it doesn't end with a
567 JUMP_INSN. There would need to be a mechanism that recognizes
568 this case, and then inserts a jump after each loop body, which
569 jumps to after the last loop body. */
570 if (loop_dump_stream)
571 fprintf (loop_dump_stream,
572 "Unrolling failure: loop does not end with a JUMP_INSN.\n");
573 return;
576 else
578 /* Normal case: Must copy the compare and branch instructions at the
579 end of the loop. */
581 if (GET_CODE (last_loop_insn) == BARRIER)
583 /* Loop ends with an unconditional jump and a barrier.
584 Handle this like above, don't copy jump and barrier.
585 This is not strictly necessary, but doing so prevents generating
586 unconditional jumps to an immediately following label.
588 This will be corrected below if the target of this jump is
589 not the start_label. */
591 insert_before = PREV_INSN (last_loop_insn);
592 copy_end = PREV_INSN (insert_before);
594 else if (GET_CODE (last_loop_insn) == JUMP_INSN)
596 /* Set insert_before to immediately after the JUMP_INSN, so that
597 NOTEs at the end of the loop will be correctly handled by
598 copy_loop_body. */
599 insert_before = NEXT_INSN (last_loop_insn);
600 copy_end = last_loop_insn;
602 else
604 /* We currently can't unroll a loop if it doesn't end with a
605 JUMP_INSN. There would need to be a mechanism that recognizes
606 this case, and then inserts a jump after each loop body, which
607 jumps to after the last loop body. */
608 if (loop_dump_stream)
609 fprintf (loop_dump_stream,
610 "Unrolling failure: loop does not end with a JUMP_INSN.\n");
611 return;
614 /* If copying exit test branches because they can not be eliminated,
615 then must convert the fall through case of the branch to a jump past
616 the end of the loop. Create a label to emit after the loop and save
617 it for later use. Do not use the label after the loop, if any, since
618 it might be used by insns outside the loop, or there might be insns
619 added before it later by final_[bg]iv_value which must be after
620 the real exit label. */
621 exit_label = gen_label_rtx ();
623 insn = loop_start;
624 while (GET_CODE (insn) != CODE_LABEL && GET_CODE (insn) != JUMP_INSN)
625 insn = NEXT_INSN (insn);
627 if (GET_CODE (insn) == JUMP_INSN)
629 /* The loop starts with a jump down to the exit condition test.
630 Start copying the loop after the barrier following this
631 jump insn. */
632 copy_start = NEXT_INSN (insn);
634 /* Splitting induction variables doesn't work when the loop is
635 entered via a jump to the bottom, because then we end up doing
636 a comparison against a new register for a split variable, but
637 we did not execute the set insn for the new register because
638 it was skipped over. */
639 splitting_not_safe = 1;
640 if (loop_dump_stream)
641 fprintf (loop_dump_stream,
642 "Splitting not safe, because loop not entered at top.\n");
644 else
645 copy_start = loop_start;
648 /* This should always be the first label in the loop. */
649 start_label = NEXT_INSN (copy_start);
650 /* There may be a line number note and/or a loop continue note here. */
651 while (GET_CODE (start_label) == NOTE)
652 start_label = NEXT_INSN (start_label);
653 if (GET_CODE (start_label) != CODE_LABEL)
655 /* This can happen as a result of jump threading. If the first insns in
656 the loop test the same condition as the loop's backward jump, or the
657 opposite condition, then the backward jump will be modified to point
658 to elsewhere, and the loop's start label is deleted.
660 This case currently can not be handled by the loop unrolling code. */
662 if (loop_dump_stream)
663 fprintf (loop_dump_stream,
664 "Unrolling failure: unknown insns between BEG note and loop label.\n");
665 return;
667 if (LABEL_NAME (start_label))
669 /* The jump optimization pass must have combined the original start label
670 with a named label for a goto. We can't unroll this case because
671 jumps which go to the named label must be handled differently than
672 jumps to the loop start, and it is impossible to differentiate them
673 in this case. */
674 if (loop_dump_stream)
675 fprintf (loop_dump_stream,
676 "Unrolling failure: loop start label is gone\n");
677 return;
680 if (unroll_type == UNROLL_NAIVE
681 && GET_CODE (last_loop_insn) == BARRIER
682 && GET_CODE (PREV_INSN (last_loop_insn)) == JUMP_INSN
683 && start_label != JUMP_LABEL (PREV_INSN (last_loop_insn)))
685 /* In this case, we must copy the jump and barrier, because they will
686 not be converted to jumps to an immediately following label. */
688 insert_before = NEXT_INSN (last_loop_insn);
689 copy_end = last_loop_insn;
692 if (unroll_type == UNROLL_NAIVE
693 && GET_CODE (last_loop_insn) == JUMP_INSN
694 && start_label != JUMP_LABEL (last_loop_insn))
696 /* ??? The loop ends with a conditional branch that does not branch back
697 to the loop start label. In this case, we must emit an unconditional
698 branch to the loop exit after emitting the final branch.
699 copy_loop_body does not have support for this currently, so we
700 give up. It doesn't seem worthwhile to unroll anyways since
701 unrolling would increase the number of branch instructions
702 executed. */
703 if (loop_dump_stream)
704 fprintf (loop_dump_stream,
705 "Unrolling failure: final conditional branch not to loop start\n");
706 return;
709 /* Allocate a translation table for the labels and insn numbers.
710 They will be filled in as we copy the insns in the loop. */
712 max_labelno = max_label_num ();
713 max_insnno = get_max_uid ();
715 /* Various paths through the unroll code may reach the "egress" label
716 without initializing fields within the map structure.
718 To be safe, we use xcalloc to zero the memory. */
719 map = (struct inline_remap *) xcalloc (1, sizeof (struct inline_remap));
721 /* Allocate the label map. */
723 if (max_labelno > 0)
725 map->label_map = (rtx *) xmalloc (max_labelno * sizeof (rtx));
727 local_label = (char *) xcalloc (max_labelno, sizeof (char));
730 /* Search the loop and mark all local labels, i.e. the ones which have to
731 be distinct labels when copied. For all labels which might be
732 non-local, set their label_map entries to point to themselves.
733 If they happen to be local their label_map entries will be overwritten
734 before the loop body is copied. The label_map entries for local labels
735 will be set to a different value each time the loop body is copied. */
737 for (insn = copy_start; insn != loop_end; insn = NEXT_INSN (insn))
739 rtx note;
741 if (GET_CODE (insn) == CODE_LABEL)
742 local_label[CODE_LABEL_NUMBER (insn)] = 1;
743 else if (GET_CODE (insn) == JUMP_INSN)
745 if (JUMP_LABEL (insn))
746 set_label_in_map (map,
747 CODE_LABEL_NUMBER (JUMP_LABEL (insn)),
748 JUMP_LABEL (insn));
749 else if (GET_CODE (PATTERN (insn)) == ADDR_VEC
750 || GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC)
752 rtx pat = PATTERN (insn);
753 int diff_vec_p = GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC;
754 int len = XVECLEN (pat, diff_vec_p);
755 rtx label;
757 for (i = 0; i < len; i++)
759 label = XEXP (XVECEXP (pat, diff_vec_p, i), 0);
760 set_label_in_map (map,
761 CODE_LABEL_NUMBER (label),
762 label);
766 else if ((note = find_reg_note (insn, REG_LABEL, NULL_RTX)))
767 set_label_in_map (map, CODE_LABEL_NUMBER (XEXP (note, 0)),
768 XEXP (note, 0));
771 /* Allocate space for the insn map. */
773 map->insn_map = (rtx *) xmalloc (max_insnno * sizeof (rtx));
775 /* Set this to zero, to indicate that we are doing loop unrolling,
776 not function inlining. */
777 map->inline_target = 0;
779 /* The register and constant maps depend on the number of registers
780 present, so the final maps can't be created until after
781 find_splittable_regs is called. However, they are needed for
782 preconditioning, so we create temporary maps when preconditioning
783 is performed. */
785 /* The preconditioning code may allocate two new pseudo registers. */
786 maxregnum = max_reg_num ();
788 /* local_regno is only valid for regnos < max_local_regnum. */
789 max_local_regnum = maxregnum;
791 /* Allocate and zero out the splittable_regs and addr_combined_regs
792 arrays. These must be zeroed here because they will be used if
793 loop preconditioning is performed, and must be zero for that case.
795 It is safe to do this here, since the extra registers created by the
796 preconditioning code and find_splittable_regs will never be used
797 to access the splittable_regs[] and addr_combined_regs[] arrays. */
799 splittable_regs = (rtx *) xcalloc (maxregnum, sizeof (rtx));
800 derived_regs = (char *) xcalloc (maxregnum, sizeof (char));
801 splittable_regs_updates = (int *) xcalloc (maxregnum, sizeof (int));
802 addr_combined_regs
803 = (struct induction **) xcalloc (maxregnum, sizeof (struct induction *));
804 local_regno = (char *) xcalloc (maxregnum, sizeof (char));
806 /* Mark all local registers, i.e. the ones which are referenced only
807 inside the loop. */
808 if (INSN_UID (copy_end) < max_uid_for_loop)
810 int copy_start_luid = INSN_LUID (copy_start);
811 int copy_end_luid = INSN_LUID (copy_end);
813 /* If a register is used in the jump insn, we must not duplicate it
814 since it will also be used outside the loop. */
815 if (GET_CODE (copy_end) == JUMP_INSN)
816 copy_end_luid--;
818 /* If we have a target that uses cc0, then we also must not duplicate
819 the insn that sets cc0 before the jump insn, if one is present. */
820 #ifdef HAVE_cc0
821 if (GET_CODE (copy_end) == JUMP_INSN && sets_cc0_p (PREV_INSN (copy_end)))
822 copy_end_luid--;
823 #endif
825 /* If copy_start points to the NOTE that starts the loop, then we must
826 use the next luid, because invariant pseudo-regs moved out of the loop
827 have their lifetimes modified to start here, but they are not safe
828 to duplicate. */
829 if (copy_start == loop_start)
830 copy_start_luid++;
832 /* If a pseudo's lifetime is entirely contained within this loop, then we
833 can use a different pseudo in each unrolled copy of the loop. This
834 results in better code. */
835 /* We must limit the generic test to max_reg_before_loop, because only
836 these pseudo registers have valid regno_first_uid info. */
837 for (r = FIRST_PSEUDO_REGISTER; r < max_reg_before_loop; ++r)
838 if (REGNO_FIRST_UID (r) > 0 && REGNO_FIRST_UID (r) <= max_uid_for_loop
839 && uid_luid[REGNO_FIRST_UID (r)] >= copy_start_luid
840 && REGNO_LAST_UID (r) > 0 && REGNO_LAST_UID (r) <= max_uid_for_loop
841 && uid_luid[REGNO_LAST_UID (r)] <= copy_end_luid)
843 /* However, we must also check for loop-carried dependencies.
844 If the value the pseudo has at the end of iteration X is
845 used by iteration X+1, then we can not use a different pseudo
846 for each unrolled copy of the loop. */
847 /* A pseudo is safe if regno_first_uid is a set, and this
848 set dominates all instructions from regno_first_uid to
849 regno_last_uid. */
850 /* ??? This check is simplistic. We would get better code if
851 this check was more sophisticated. */
852 if (set_dominates_use (r, REGNO_FIRST_UID (r), REGNO_LAST_UID (r),
853 copy_start, copy_end))
854 local_regno[r] = 1;
856 if (loop_dump_stream)
858 if (local_regno[r])
859 fprintf (loop_dump_stream, "Marked reg %d as local\n", r);
860 else
861 fprintf (loop_dump_stream, "Did not mark reg %d as local\n",
865 /* Givs that have been created from multiple biv increments always have
866 local registers. */
867 for (r = first_increment_giv; r <= last_increment_giv; r++)
869 local_regno[r] = 1;
870 if (loop_dump_stream)
871 fprintf (loop_dump_stream, "Marked reg %d as local\n", r);
875 /* If this loop requires exit tests when unrolled, check to see if we
876 can precondition the loop so as to make the exit tests unnecessary.
877 Just like variable splitting, this is not safe if the loop is entered
878 via a jump to the bottom. Also, can not do this if no strength
879 reduce info, because precondition_loop_p uses this info. */
881 /* Must copy the loop body for preconditioning before the following
882 find_splittable_regs call since that will emit insns which need to
883 be after the preconditioned loop copies, but immediately before the
884 unrolled loop copies. */
886 /* Also, it is not safe to split induction variables for the preconditioned
887 copies of the loop body. If we split induction variables, then the code
888 assumes that each induction variable can be represented as a function
889 of its initial value and the loop iteration number. This is not true
890 in this case, because the last preconditioned copy of the loop body
891 could be any iteration from the first up to the `unroll_number-1'th,
892 depending on the initial value of the iteration variable. Therefore
893 we can not split induction variables here, because we can not calculate
894 their value. Hence, this code must occur before find_splittable_regs
895 is called. */
897 if (unroll_type == UNROLL_NAIVE && ! splitting_not_safe && strength_reduce_p)
899 rtx initial_value, final_value, increment;
900 enum machine_mode mode;
902 if (precondition_loop_p (loop,
903 &initial_value, &final_value, &increment,
904 &mode))
906 register rtx diff ;
907 rtx *labels;
908 int abs_inc, neg_inc;
910 map->reg_map = (rtx *) xmalloc (maxregnum * sizeof (rtx));
912 VARRAY_CONST_EQUIV_INIT (map->const_equiv_varray, maxregnum,
913 "unroll_loop_precondition");
914 global_const_equiv_varray = map->const_equiv_varray;
916 init_reg_map (map, maxregnum);
918 /* Limit loop unrolling to 4, since this will make 7 copies of
919 the loop body. */
920 if (unroll_number > 4)
921 unroll_number = 4;
923 /* Save the absolute value of the increment, and also whether or
924 not it is negative. */
925 neg_inc = 0;
926 abs_inc = INTVAL (increment);
927 if (abs_inc < 0)
929 abs_inc = - abs_inc;
930 neg_inc = 1;
933 start_sequence ();
935 /* Calculate the difference between the final and initial values.
936 Final value may be a (plus (reg x) (const_int 1)) rtx.
937 Let the following cse pass simplify this if initial value is
938 a constant.
940 We must copy the final and initial values here to avoid
941 improperly shared rtl. */
943 diff = expand_binop (mode, sub_optab, copy_rtx (final_value),
944 copy_rtx (initial_value), NULL_RTX, 0,
945 OPTAB_LIB_WIDEN);
947 /* Now calculate (diff % (unroll * abs (increment))) by using an
948 and instruction. */
949 diff = expand_binop (GET_MODE (diff), and_optab, diff,
950 GEN_INT (unroll_number * abs_inc - 1),
951 NULL_RTX, 0, OPTAB_LIB_WIDEN);
953 /* Now emit a sequence of branches to jump to the proper precond
954 loop entry point. */
956 labels = (rtx *) xmalloc (sizeof (rtx) * unroll_number);
957 for (i = 0; i < unroll_number; i++)
958 labels[i] = gen_label_rtx ();
960 /* Check for the case where the initial value is greater than or
961 equal to the final value. In that case, we want to execute
962 exactly one loop iteration. The code below will fail for this
963 case. This check does not apply if the loop has a NE
964 comparison at the end. */
966 if (loop_info->comparison_code != NE)
968 emit_cmp_and_jump_insns (initial_value, final_value,
969 neg_inc ? LE : GE,
970 NULL_RTX, mode, 0, 0, labels[1]);
971 JUMP_LABEL (get_last_insn ()) = labels[1];
972 LABEL_NUSES (labels[1])++;
975 /* Assuming the unroll_number is 4, and the increment is 2, then
976 for a negative increment: for a positive increment:
977 diff = 0,1 precond 0 diff = 0,7 precond 0
978 diff = 2,3 precond 3 diff = 1,2 precond 1
979 diff = 4,5 precond 2 diff = 3,4 precond 2
980 diff = 6,7 precond 1 diff = 5,6 precond 3 */
982 /* We only need to emit (unroll_number - 1) branches here, the
983 last case just falls through to the following code. */
985 /* ??? This would give better code if we emitted a tree of branches
986 instead of the current linear list of branches. */
988 for (i = 0; i < unroll_number - 1; i++)
990 int cmp_const;
991 enum rtx_code cmp_code;
993 /* For negative increments, must invert the constant compared
994 against, except when comparing against zero. */
995 if (i == 0)
997 cmp_const = 0;
998 cmp_code = EQ;
1000 else if (neg_inc)
1002 cmp_const = unroll_number - i;
1003 cmp_code = GE;
1005 else
1007 cmp_const = i;
1008 cmp_code = LE;
1011 emit_cmp_and_jump_insns (diff, GEN_INT (abs_inc * cmp_const),
1012 cmp_code, NULL_RTX, mode, 0, 0,
1013 labels[i]);
1014 JUMP_LABEL (get_last_insn ()) = labels[i];
1015 LABEL_NUSES (labels[i])++;
1018 /* If the increment is greater than one, then we need another branch,
1019 to handle other cases equivalent to 0. */
1021 /* ??? This should be merged into the code above somehow to help
1022 simplify the code here, and reduce the number of branches emitted.
1023 For the negative increment case, the branch here could easily
1024 be merged with the `0' case branch above. For the positive
1025 increment case, it is not clear how this can be simplified. */
1027 if (abs_inc != 1)
1029 int cmp_const;
1030 enum rtx_code cmp_code;
1032 if (neg_inc)
1034 cmp_const = abs_inc - 1;
1035 cmp_code = LE;
1037 else
1039 cmp_const = abs_inc * (unroll_number - 1) + 1;
1040 cmp_code = GE;
1043 emit_cmp_and_jump_insns (diff, GEN_INT (cmp_const), cmp_code,
1044 NULL_RTX, mode, 0, 0, labels[0]);
1045 JUMP_LABEL (get_last_insn ()) = labels[0];
1046 LABEL_NUSES (labels[0])++;
1049 sequence = gen_sequence ();
1050 end_sequence ();
1051 emit_insn_before (sequence, loop_start);
1053 /* Only the last copy of the loop body here needs the exit
1054 test, so set copy_end to exclude the compare/branch here,
1055 and then reset it inside the loop when get to the last
1056 copy. */
1058 if (GET_CODE (last_loop_insn) == BARRIER)
1059 copy_end = PREV_INSN (PREV_INSN (last_loop_insn));
1060 else if (GET_CODE (last_loop_insn) == JUMP_INSN)
1062 copy_end = PREV_INSN (last_loop_insn);
1063 #ifdef HAVE_cc0
1064 /* The immediately preceding insn may be a compare which we do not
1065 want to copy. */
1066 if (sets_cc0_p (PREV_INSN (copy_end)))
1067 copy_end = PREV_INSN (copy_end);
1068 #endif
1070 else
1071 abort ();
1073 for (i = 1; i < unroll_number; i++)
1075 emit_label_after (labels[unroll_number - i],
1076 PREV_INSN (loop_start));
1078 bzero ((char *) map->insn_map, max_insnno * sizeof (rtx));
1079 bzero ((char *) &VARRAY_CONST_EQUIV (map->const_equiv_varray, 0),
1080 (VARRAY_SIZE (map->const_equiv_varray)
1081 * sizeof (struct const_equiv_data)));
1082 map->const_age = 0;
1084 for (j = 0; j < max_labelno; j++)
1085 if (local_label[j])
1086 set_label_in_map (map, j, gen_label_rtx ());
1088 for (r = FIRST_PSEUDO_REGISTER; r < max_local_regnum; r++)
1089 if (local_regno[r])
1091 map->reg_map[r]
1092 = gen_reg_rtx (GET_MODE (regno_reg_rtx[r]));
1093 record_base_value (REGNO (map->reg_map[r]),
1094 regno_reg_rtx[r], 0);
1096 /* The last copy needs the compare/branch insns at the end,
1097 so reset copy_end here if the loop ends with a conditional
1098 branch. */
1100 if (i == unroll_number - 1)
1102 if (GET_CODE (last_loop_insn) == BARRIER)
1103 copy_end = PREV_INSN (PREV_INSN (last_loop_insn));
1104 else
1105 copy_end = last_loop_insn;
1108 /* None of the copies are the `last_iteration', so just
1109 pass zero for that parameter. */
1110 copy_loop_body (copy_start, copy_end, map, exit_label, 0,
1111 unroll_type, start_label, loop_end,
1112 loop_start, copy_end);
1114 emit_label_after (labels[0], PREV_INSN (loop_start));
1116 if (GET_CODE (last_loop_insn) == BARRIER)
1118 insert_before = PREV_INSN (last_loop_insn);
1119 copy_end = PREV_INSN (insert_before);
1121 else
1123 insert_before = last_loop_insn;
1124 #ifdef HAVE_cc0
1125 /* The instruction immediately before the JUMP_INSN may be a compare
1126 instruction which we do not want to copy or delete. */
1127 if (sets_cc0_p (PREV_INSN (insert_before)))
1128 insert_before = PREV_INSN (insert_before);
1129 #endif
1130 copy_end = PREV_INSN (insert_before);
1133 /* Set unroll type to MODULO now. */
1134 unroll_type = UNROLL_MODULO;
1135 loop_preconditioned = 1;
1137 /* Clean up. */
1138 free (labels);
1142 /* If reach here, and the loop type is UNROLL_NAIVE, then don't unroll
1143 the loop unless all loops are being unrolled. */
1144 if (unroll_type == UNROLL_NAIVE && ! flag_unroll_all_loops)
1146 if (loop_dump_stream)
1147 fprintf (loop_dump_stream, "Unrolling failure: Naive unrolling not being done.\n");
1148 goto egress;
1151 /* At this point, we are guaranteed to unroll the loop. */
1153 /* Keep track of the unroll factor for the loop. */
1154 loop_info->unroll_number = unroll_number;
1156 /* For each biv and giv, determine whether it can be safely split into
1157 a different variable for each unrolled copy of the loop body.
1158 We precalculate and save this info here, since computing it is
1159 expensive.
1161 Do this before deleting any instructions from the loop, so that
1162 back_branch_in_range_p will work correctly. */
1164 if (splitting_not_safe)
1165 temp = 0;
1166 else
1167 temp = find_splittable_regs (loop, unroll_type,
1168 end_insert_before, unroll_number);
1170 /* find_splittable_regs may have created some new registers, so must
1171 reallocate the reg_map with the new larger size, and must realloc
1172 the constant maps also. */
1174 maxregnum = max_reg_num ();
1175 map->reg_map = (rtx *) xmalloc (maxregnum * sizeof (rtx));
1177 init_reg_map (map, maxregnum);
1179 if (map->const_equiv_varray == 0)
1180 VARRAY_CONST_EQUIV_INIT (map->const_equiv_varray,
1181 maxregnum + temp * unroll_number * 2,
1182 "unroll_loop");
1183 global_const_equiv_varray = map->const_equiv_varray;
1185 /* Search the list of bivs and givs to find ones which need to be remapped
1186 when split, and set their reg_map entry appropriately. */
1188 for (bl = loop_iv_list; bl; bl = bl->next)
1190 if (REGNO (bl->biv->src_reg) != bl->regno)
1191 map->reg_map[bl->regno] = bl->biv->src_reg;
1192 #if 0
1193 /* Currently, non-reduced/final-value givs are never split. */
1194 for (v = bl->giv; v; v = v->next_iv)
1195 if (REGNO (v->src_reg) != bl->regno)
1196 map->reg_map[REGNO (v->dest_reg)] = v->src_reg;
1197 #endif
1200 /* Use our current register alignment and pointer flags. */
1201 map->regno_pointer_flag = cfun->emit->regno_pointer_flag;
1202 map->regno_pointer_align = cfun->emit->regno_pointer_align;
1204 /* If the loop is being partially unrolled, and the iteration variables
1205 are being split, and are being renamed for the split, then must fix up
1206 the compare/jump instruction at the end of the loop to refer to the new
1207 registers. This compare isn't copied, so the registers used in it
1208 will never be replaced if it isn't done here. */
1210 if (unroll_type == UNROLL_MODULO)
1212 insn = NEXT_INSN (copy_end);
1213 if (GET_CODE (insn) == INSN || GET_CODE (insn) == JUMP_INSN)
1214 PATTERN (insn) = remap_split_bivs (PATTERN (insn));
1217 /* For unroll_number times, make a copy of each instruction
1218 between copy_start and copy_end, and insert these new instructions
1219 before the end of the loop. */
1221 for (i = 0; i < unroll_number; i++)
1223 bzero ((char *) map->insn_map, max_insnno * sizeof (rtx));
1224 bzero ((char *) &VARRAY_CONST_EQUIV (map->const_equiv_varray, 0),
1225 VARRAY_SIZE (map->const_equiv_varray) * sizeof (struct const_equiv_data));
1226 map->const_age = 0;
1228 for (j = 0; j < max_labelno; j++)
1229 if (local_label[j])
1230 set_label_in_map (map, j, gen_label_rtx ());
1232 for (r = FIRST_PSEUDO_REGISTER; r < max_local_regnum; r++)
1233 if (local_regno[r])
1235 map->reg_map[r] = gen_reg_rtx (GET_MODE (regno_reg_rtx[r]));
1236 record_base_value (REGNO (map->reg_map[r]),
1237 regno_reg_rtx[r], 0);
1240 /* If loop starts with a branch to the test, then fix it so that
1241 it points to the test of the first unrolled copy of the loop. */
1242 if (i == 0 && loop_start != copy_start)
1244 insn = PREV_INSN (copy_start);
1245 pattern = PATTERN (insn);
1247 tem = get_label_from_map (map,
1248 CODE_LABEL_NUMBER
1249 (XEXP (SET_SRC (pattern), 0)));
1250 SET_SRC (pattern) = gen_rtx_LABEL_REF (VOIDmode, tem);
1252 /* Set the jump label so that it can be used by later loop unrolling
1253 passes. */
1254 JUMP_LABEL (insn) = tem;
1255 LABEL_NUSES (tem)++;
1258 copy_loop_body (copy_start, copy_end, map, exit_label,
1259 i == unroll_number - 1, unroll_type, start_label,
1260 loop_end, insert_before, insert_before);
1263 /* Before deleting any insns, emit a CODE_LABEL immediately after the last
1264 insn to be deleted. This prevents any runaway delete_insn call from
1265 more insns that it should, as it always stops at a CODE_LABEL. */
1267 /* Delete the compare and branch at the end of the loop if completely
1268 unrolling the loop. Deleting the backward branch at the end also
1269 deletes the code label at the start of the loop. This is done at
1270 the very end to avoid problems with back_branch_in_range_p. */
1272 if (unroll_type == UNROLL_COMPLETELY)
1273 safety_label = emit_label_after (gen_label_rtx (), last_loop_insn);
1274 else
1275 safety_label = emit_label_after (gen_label_rtx (), copy_end);
1277 /* Delete all of the original loop instructions. Don't delete the
1278 LOOP_BEG note, or the first code label in the loop. */
1280 insn = NEXT_INSN (copy_start);
1281 while (insn != safety_label)
1283 /* ??? Don't delete named code labels. They will be deleted when the
1284 jump that references them is deleted. Otherwise, we end up deleting
1285 them twice, which causes them to completely disappear instead of turn
1286 into NOTE_INSN_DELETED_LABEL notes. This in turn causes aborts in
1287 dwarfout.c/dwarf2out.c. We could perhaps fix the dwarf*out.c files
1288 to handle deleted labels instead. Or perhaps fix DECL_RTL of the
1289 associated LABEL_DECL to point to one of the new label instances. */
1290 /* ??? Likewise, we can't delete a NOTE_INSN_DELETED_LABEL note. */
1291 if (insn != start_label
1292 && ! (GET_CODE (insn) == CODE_LABEL && LABEL_NAME (insn))
1293 && ! (GET_CODE (insn) == NOTE
1294 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED_LABEL))
1295 insn = delete_insn (insn);
1296 else
1297 insn = NEXT_INSN (insn);
1300 /* Can now delete the 'safety' label emitted to protect us from runaway
1301 delete_insn calls. */
1302 if (INSN_DELETED_P (safety_label))
1303 abort ();
1304 delete_insn (safety_label);
1306 /* If exit_label exists, emit it after the loop. Doing the emit here
1307 forces it to have a higher INSN_UID than any insn in the unrolled loop.
1308 This is needed so that mostly_true_jump in reorg.c will treat jumps
1309 to this loop end label correctly, i.e. predict that they are usually
1310 not taken. */
1311 if (exit_label)
1312 emit_label_after (exit_label, loop_end);
1314 egress:
1315 if (unroll_type == UNROLL_COMPLETELY)
1317 /* Remove the loop notes since this is no longer a loop. */
1318 if (loop->vtop)
1319 delete_insn (loop->vtop);
1320 if (loop->cont)
1321 delete_insn (loop->cont);
1322 if (loop_start)
1323 delete_insn (loop_start);
1324 if (loop_end)
1325 delete_insn (loop_end);
1328 if (map->const_equiv_varray)
1329 VARRAY_FREE (map->const_equiv_varray);
1330 if (map->label_map)
1332 free (map->label_map);
1333 free (local_label);
1335 free (map->insn_map);
1336 free (splittable_regs);
1337 free (derived_regs);
1338 free (splittable_regs_updates);
1339 free (addr_combined_regs);
1340 free (local_regno);
1341 if (map->reg_map)
1342 free (map->reg_map);
1343 free (map);
1346 /* Return true if the loop can be safely, and profitably, preconditioned
1347 so that the unrolled copies of the loop body don't need exit tests.
1349 This only works if final_value, initial_value and increment can be
1350 determined, and if increment is a constant power of 2.
1351 If increment is not a power of 2, then the preconditioning modulo
1352 operation would require a real modulo instead of a boolean AND, and this
1353 is not considered `profitable'. */
1355 /* ??? If the loop is known to be executed very many times, or the machine
1356 has a very cheap divide instruction, then preconditioning is a win even
1357 when the increment is not a power of 2. Use RTX_COST to compute
1358 whether divide is cheap.
1359 ??? A divide by constant doesn't actually need a divide, look at
1360 expand_divmod. The reduced cost of this optimized modulo is not
1361 reflected in RTX_COST. */
1364 precondition_loop_p (loop, initial_value, final_value, increment, mode)
1365 const struct loop *loop;
1366 rtx *initial_value, *final_value, *increment;
1367 enum machine_mode *mode;
1369 rtx loop_start = loop->start;
1370 struct loop_info *loop_info = LOOP_INFO (loop);
1372 if (loop_info->n_iterations > 0)
1374 *initial_value = const0_rtx;
1375 *increment = const1_rtx;
1376 *final_value = GEN_INT (loop_info->n_iterations);
1377 *mode = word_mode;
1379 if (loop_dump_stream)
1381 fputs ("Preconditioning: Success, number of iterations known, ",
1382 loop_dump_stream);
1383 fprintf (loop_dump_stream, HOST_WIDE_INT_PRINT_DEC,
1384 loop_info->n_iterations);
1385 fputs (".\n", loop_dump_stream);
1387 return 1;
1390 if (loop_info->initial_value == 0)
1392 if (loop_dump_stream)
1393 fprintf (loop_dump_stream,
1394 "Preconditioning: Could not find initial value.\n");
1395 return 0;
1397 else if (loop_info->increment == 0)
1399 if (loop_dump_stream)
1400 fprintf (loop_dump_stream,
1401 "Preconditioning: Could not find increment value.\n");
1402 return 0;
1404 else if (GET_CODE (loop_info->increment) != CONST_INT)
1406 if (loop_dump_stream)
1407 fprintf (loop_dump_stream,
1408 "Preconditioning: Increment not a constant.\n");
1409 return 0;
1411 else if ((exact_log2 (INTVAL (loop_info->increment)) < 0)
1412 && (exact_log2 (- INTVAL (loop_info->increment)) < 0))
1414 if (loop_dump_stream)
1415 fprintf (loop_dump_stream,
1416 "Preconditioning: Increment not a constant power of 2.\n");
1417 return 0;
1420 /* Unsigned_compare and compare_dir can be ignored here, since they do
1421 not matter for preconditioning. */
1423 if (loop_info->final_value == 0)
1425 if (loop_dump_stream)
1426 fprintf (loop_dump_stream,
1427 "Preconditioning: EQ comparison loop.\n");
1428 return 0;
1431 /* Must ensure that final_value is invariant, so call
1432 loop_invariant_p to check. Before doing so, must check regno
1433 against max_reg_before_loop to make sure that the register is in
1434 the range covered by loop_invariant_p. If it isn't, then it is
1435 most likely a biv/giv which by definition are not invariant. */
1436 if ((GET_CODE (loop_info->final_value) == REG
1437 && REGNO (loop_info->final_value) >= max_reg_before_loop)
1438 || (GET_CODE (loop_info->final_value) == PLUS
1439 && REGNO (XEXP (loop_info->final_value, 0)) >= max_reg_before_loop)
1440 || ! loop_invariant_p (loop, loop_info->final_value))
1442 if (loop_dump_stream)
1443 fprintf (loop_dump_stream,
1444 "Preconditioning: Final value not invariant.\n");
1445 return 0;
1448 /* Fail for floating point values, since the caller of this function
1449 does not have code to deal with them. */
1450 if (GET_MODE_CLASS (GET_MODE (loop_info->final_value)) == MODE_FLOAT
1451 || GET_MODE_CLASS (GET_MODE (loop_info->initial_value)) == MODE_FLOAT)
1453 if (loop_dump_stream)
1454 fprintf (loop_dump_stream,
1455 "Preconditioning: Floating point final or initial value.\n");
1456 return 0;
1459 /* Fail if loop_info->iteration_var is not live before loop_start,
1460 since we need to test its value in the preconditioning code. */
1462 if (uid_luid[REGNO_FIRST_UID (REGNO (loop_info->iteration_var))]
1463 > INSN_LUID (loop_start))
1465 if (loop_dump_stream)
1466 fprintf (loop_dump_stream,
1467 "Preconditioning: Iteration var not live before loop start.\n");
1468 return 0;
1471 /* Note that iteration_info biases the initial value for GIV iterators
1472 such as "while (i-- > 0)" so that we can calculate the number of
1473 iterations just like for BIV iterators.
1475 Also note that the absolute values of initial_value and
1476 final_value are unimportant as only their difference is used for
1477 calculating the number of loop iterations. */
1478 *initial_value = loop_info->initial_value;
1479 *increment = loop_info->increment;
1480 *final_value = loop_info->final_value;
1482 /* Decide what mode to do these calculations in. Choose the larger
1483 of final_value's mode and initial_value's mode, or a full-word if
1484 both are constants. */
1485 *mode = GET_MODE (*final_value);
1486 if (*mode == VOIDmode)
1488 *mode = GET_MODE (*initial_value);
1489 if (*mode == VOIDmode)
1490 *mode = word_mode;
1492 else if (*mode != GET_MODE (*initial_value)
1493 && (GET_MODE_SIZE (*mode)
1494 < GET_MODE_SIZE (GET_MODE (*initial_value))))
1495 *mode = GET_MODE (*initial_value);
1497 /* Success! */
1498 if (loop_dump_stream)
1499 fprintf (loop_dump_stream, "Preconditioning: Successful.\n");
1500 return 1;
1504 /* All pseudo-registers must be mapped to themselves. Two hard registers
1505 must be mapped, VIRTUAL_STACK_VARS_REGNUM and VIRTUAL_INCOMING_ARGS_
1506 REGNUM, to avoid function-inlining specific conversions of these
1507 registers. All other hard regs can not be mapped because they may be
1508 used with different
1509 modes. */
1511 static void
1512 init_reg_map (map, maxregnum)
1513 struct inline_remap *map;
1514 int maxregnum;
1516 int i;
1518 for (i = maxregnum - 1; i > LAST_VIRTUAL_REGISTER; i--)
1519 map->reg_map[i] = regno_reg_rtx[i];
1520 /* Just clear the rest of the entries. */
1521 for (i = LAST_VIRTUAL_REGISTER; i >= 0; i--)
1522 map->reg_map[i] = 0;
1524 map->reg_map[VIRTUAL_STACK_VARS_REGNUM]
1525 = regno_reg_rtx[VIRTUAL_STACK_VARS_REGNUM];
1526 map->reg_map[VIRTUAL_INCOMING_ARGS_REGNUM]
1527 = regno_reg_rtx[VIRTUAL_INCOMING_ARGS_REGNUM];
1530 /* Strength-reduction will often emit code for optimized biv/givs which
1531 calculates their value in a temporary register, and then copies the result
1532 to the iv. This procedure reconstructs the pattern computing the iv;
1533 verifying that all operands are of the proper form.
1535 PATTERN must be the result of single_set.
1536 The return value is the amount that the giv is incremented by. */
1538 static rtx
1539 calculate_giv_inc (pattern, src_insn, regno)
1540 rtx pattern, src_insn;
1541 unsigned int regno;
1543 rtx increment;
1544 rtx increment_total = 0;
1545 int tries = 0;
1547 retry:
1548 /* Verify that we have an increment insn here. First check for a plus
1549 as the set source. */
1550 if (GET_CODE (SET_SRC (pattern)) != PLUS)
1552 /* SR sometimes computes the new giv value in a temp, then copies it
1553 to the new_reg. */
1554 src_insn = PREV_INSN (src_insn);
1555 pattern = PATTERN (src_insn);
1556 if (GET_CODE (SET_SRC (pattern)) != PLUS)
1557 abort ();
1559 /* The last insn emitted is not needed, so delete it to avoid confusing
1560 the second cse pass. This insn sets the giv unnecessarily. */
1561 delete_insn (get_last_insn ());
1564 /* Verify that we have a constant as the second operand of the plus. */
1565 increment = XEXP (SET_SRC (pattern), 1);
1566 if (GET_CODE (increment) != CONST_INT)
1568 /* SR sometimes puts the constant in a register, especially if it is
1569 too big to be an add immed operand. */
1570 src_insn = PREV_INSN (src_insn);
1571 increment = SET_SRC (PATTERN (src_insn));
1573 /* SR may have used LO_SUM to compute the constant if it is too large
1574 for a load immed operand. In this case, the constant is in operand
1575 one of the LO_SUM rtx. */
1576 if (GET_CODE (increment) == LO_SUM)
1577 increment = XEXP (increment, 1);
1579 /* Some ports store large constants in memory and add a REG_EQUAL
1580 note to the store insn. */
1581 else if (GET_CODE (increment) == MEM)
1583 rtx note = find_reg_note (src_insn, REG_EQUAL, 0);
1584 if (note)
1585 increment = XEXP (note, 0);
1588 else if (GET_CODE (increment) == IOR
1589 || GET_CODE (increment) == ASHIFT
1590 || GET_CODE (increment) == PLUS)
1592 /* The rs6000 port loads some constants with IOR.
1593 The alpha port loads some constants with ASHIFT and PLUS. */
1594 rtx second_part = XEXP (increment, 1);
1595 enum rtx_code code = GET_CODE (increment);
1597 src_insn = PREV_INSN (src_insn);
1598 increment = SET_SRC (PATTERN (src_insn));
1599 /* Don't need the last insn anymore. */
1600 delete_insn (get_last_insn ());
1602 if (GET_CODE (second_part) != CONST_INT
1603 || GET_CODE (increment) != CONST_INT)
1604 abort ();
1606 if (code == IOR)
1607 increment = GEN_INT (INTVAL (increment) | INTVAL (second_part));
1608 else if (code == PLUS)
1609 increment = GEN_INT (INTVAL (increment) + INTVAL (second_part));
1610 else
1611 increment = GEN_INT (INTVAL (increment) << INTVAL (second_part));
1614 if (GET_CODE (increment) != CONST_INT)
1615 abort ();
1617 /* The insn loading the constant into a register is no longer needed,
1618 so delete it. */
1619 delete_insn (get_last_insn ());
1622 if (increment_total)
1623 increment_total = GEN_INT (INTVAL (increment_total) + INTVAL (increment));
1624 else
1625 increment_total = increment;
1627 /* Check that the source register is the same as the register we expected
1628 to see as the source. If not, something is seriously wrong. */
1629 if (GET_CODE (XEXP (SET_SRC (pattern), 0)) != REG
1630 || REGNO (XEXP (SET_SRC (pattern), 0)) != regno)
1632 /* Some machines (e.g. the romp), may emit two add instructions for
1633 certain constants, so lets try looking for another add immediately
1634 before this one if we have only seen one add insn so far. */
1636 if (tries == 0)
1638 tries++;
1640 src_insn = PREV_INSN (src_insn);
1641 pattern = PATTERN (src_insn);
1643 delete_insn (get_last_insn ());
1645 goto retry;
1648 abort ();
1651 return increment_total;
1654 /* Copy REG_NOTES, except for insn references, because not all insn_map
1655 entries are valid yet. We do need to copy registers now though, because
1656 the reg_map entries can change during copying. */
1658 static rtx
1659 initial_reg_note_copy (notes, map)
1660 rtx notes;
1661 struct inline_remap *map;
1663 rtx copy;
1665 if (notes == 0)
1666 return 0;
1668 copy = rtx_alloc (GET_CODE (notes));
1669 PUT_MODE (copy, GET_MODE (notes));
1671 if (GET_CODE (notes) == EXPR_LIST)
1672 XEXP (copy, 0) = copy_rtx_and_substitute (XEXP (notes, 0), map, 0);
1673 else if (GET_CODE (notes) == INSN_LIST)
1674 /* Don't substitute for these yet. */
1675 XEXP (copy, 0) = XEXP (notes, 0);
1676 else
1677 abort ();
1679 XEXP (copy, 1) = initial_reg_note_copy (XEXP (notes, 1), map);
1681 return copy;
1684 /* Fixup insn references in copied REG_NOTES. */
1686 static void
1687 final_reg_note_copy (notes, map)
1688 rtx notes;
1689 struct inline_remap *map;
1691 rtx note;
1693 for (note = notes; note; note = XEXP (note, 1))
1694 if (GET_CODE (note) == INSN_LIST)
1695 XEXP (note, 0) = map->insn_map[INSN_UID (XEXP (note, 0))];
1698 /* Copy each instruction in the loop, substituting from map as appropriate.
1699 This is very similar to a loop in expand_inline_function. */
1701 static void
1702 copy_loop_body (copy_start, copy_end, map, exit_label, last_iteration,
1703 unroll_type, start_label, loop_end, insert_before,
1704 copy_notes_from)
1705 rtx copy_start, copy_end;
1706 struct inline_remap *map;
1707 rtx exit_label;
1708 int last_iteration;
1709 enum unroll_types unroll_type;
1710 rtx start_label, loop_end, insert_before, copy_notes_from;
1712 rtx insn, pattern;
1713 rtx set, tem, copy = NULL_RTX;
1714 int dest_reg_was_split, i;
1715 #ifdef HAVE_cc0
1716 rtx cc0_insn = 0;
1717 #endif
1718 rtx final_label = 0;
1719 rtx giv_inc, giv_dest_reg, giv_src_reg;
1721 /* If this isn't the last iteration, then map any references to the
1722 start_label to final_label. Final label will then be emitted immediately
1723 after the end of this loop body if it was ever used.
1725 If this is the last iteration, then map references to the start_label
1726 to itself. */
1727 if (! last_iteration)
1729 final_label = gen_label_rtx ();
1730 set_label_in_map (map, CODE_LABEL_NUMBER (start_label),
1731 final_label);
1733 else
1734 set_label_in_map (map, CODE_LABEL_NUMBER (start_label), start_label);
1736 start_sequence ();
1738 /* Emit a NOTE_INSN_DELETED to force at least two insns onto the sequence.
1739 Else gen_sequence could return a raw pattern for a jump which we pass
1740 off to emit_insn_before (instead of emit_jump_insn_before) which causes
1741 a variety of losing behaviors later. */
1742 emit_note (0, NOTE_INSN_DELETED);
1744 insn = copy_start;
1747 insn = NEXT_INSN (insn);
1749 map->orig_asm_operands_vector = 0;
1751 switch (GET_CODE (insn))
1753 case INSN:
1754 pattern = PATTERN (insn);
1755 copy = 0;
1756 giv_inc = 0;
1758 /* Check to see if this is a giv that has been combined with
1759 some split address givs. (Combined in the sense that
1760 `combine_givs' in loop.c has put two givs in the same register.)
1761 In this case, we must search all givs based on the same biv to
1762 find the address givs. Then split the address givs.
1763 Do this before splitting the giv, since that may map the
1764 SET_DEST to a new register. */
1766 if ((set = single_set (insn))
1767 && GET_CODE (SET_DEST (set)) == REG
1768 && addr_combined_regs[REGNO (SET_DEST (set))])
1770 struct iv_class *bl;
1771 struct induction *v, *tv;
1772 unsigned int regno = REGNO (SET_DEST (set));
1774 v = addr_combined_regs[REGNO (SET_DEST (set))];
1775 bl = reg_biv_class[REGNO (v->src_reg)];
1777 /* Although the giv_inc amount is not needed here, we must call
1778 calculate_giv_inc here since it might try to delete the
1779 last insn emitted. If we wait until later to call it,
1780 we might accidentally delete insns generated immediately
1781 below by emit_unrolled_add. */
1783 if (! derived_regs[regno])
1784 giv_inc = calculate_giv_inc (set, insn, regno);
1786 /* Now find all address giv's that were combined with this
1787 giv 'v'. */
1788 for (tv = bl->giv; tv; tv = tv->next_iv)
1789 if (tv->giv_type == DEST_ADDR && tv->same == v)
1791 int this_giv_inc;
1793 /* If this DEST_ADDR giv was not split, then ignore it. */
1794 if (*tv->location != tv->dest_reg)
1795 continue;
1797 /* Scale this_giv_inc if the multiplicative factors of
1798 the two givs are different. */
1799 this_giv_inc = INTVAL (giv_inc);
1800 if (tv->mult_val != v->mult_val)
1801 this_giv_inc = (this_giv_inc / INTVAL (v->mult_val)
1802 * INTVAL (tv->mult_val));
1804 tv->dest_reg = plus_constant (tv->dest_reg, this_giv_inc);
1805 *tv->location = tv->dest_reg;
1807 if (last_iteration && unroll_type != UNROLL_COMPLETELY)
1809 /* Must emit an insn to increment the split address
1810 giv. Add in the const_adjust field in case there
1811 was a constant eliminated from the address. */
1812 rtx value, dest_reg;
1814 /* tv->dest_reg will be either a bare register,
1815 or else a register plus a constant. */
1816 if (GET_CODE (tv->dest_reg) == REG)
1817 dest_reg = tv->dest_reg;
1818 else
1819 dest_reg = XEXP (tv->dest_reg, 0);
1821 /* Check for shared address givs, and avoid
1822 incrementing the shared pseudo reg more than
1823 once. */
1824 if (! tv->same_insn && ! tv->shared)
1826 /* tv->dest_reg may actually be a (PLUS (REG)
1827 (CONST)) here, so we must call plus_constant
1828 to add the const_adjust amount before calling
1829 emit_unrolled_add below. */
1830 value = plus_constant (tv->dest_reg,
1831 tv->const_adjust);
1833 if (GET_CODE (value) == PLUS)
1835 /* The constant could be too large for an add
1836 immediate, so can't directly emit an insn
1837 here. */
1838 emit_unrolled_add (dest_reg, XEXP (value, 0),
1839 XEXP (value, 1));
1843 /* Reset the giv to be just the register again, in case
1844 it is used after the set we have just emitted.
1845 We must subtract the const_adjust factor added in
1846 above. */
1847 tv->dest_reg = plus_constant (dest_reg,
1848 - tv->const_adjust);
1849 *tv->location = tv->dest_reg;
1854 /* If this is a setting of a splittable variable, then determine
1855 how to split the variable, create a new set based on this split,
1856 and set up the reg_map so that later uses of the variable will
1857 use the new split variable. */
1859 dest_reg_was_split = 0;
1861 if ((set = single_set (insn))
1862 && GET_CODE (SET_DEST (set)) == REG
1863 && splittable_regs[REGNO (SET_DEST (set))])
1865 unsigned int regno = REGNO (SET_DEST (set));
1866 unsigned int src_regno;
1868 dest_reg_was_split = 1;
1870 giv_dest_reg = SET_DEST (set);
1871 if (derived_regs[regno])
1873 /* ??? This relies on SET_SRC (SET) to be of
1874 the form (plus (reg) (const_int)), and thus
1875 forces recombine_givs to restrict the kind
1876 of giv derivations it does before unrolling. */
1877 giv_src_reg = XEXP (SET_SRC (set), 0);
1878 giv_inc = XEXP (SET_SRC (set), 1);
1880 else
1882 giv_src_reg = giv_dest_reg;
1883 /* Compute the increment value for the giv, if it wasn't
1884 already computed above. */
1885 if (giv_inc == 0)
1886 giv_inc = calculate_giv_inc (set, insn, regno);
1888 src_regno = REGNO (giv_src_reg);
1890 if (unroll_type == UNROLL_COMPLETELY)
1892 /* Completely unrolling the loop. Set the induction
1893 variable to a known constant value. */
1895 /* The value in splittable_regs may be an invariant
1896 value, so we must use plus_constant here. */
1897 splittable_regs[regno]
1898 = plus_constant (splittable_regs[src_regno],
1899 INTVAL (giv_inc));
1901 if (GET_CODE (splittable_regs[regno]) == PLUS)
1903 giv_src_reg = XEXP (splittable_regs[regno], 0);
1904 giv_inc = XEXP (splittable_regs[regno], 1);
1906 else
1908 /* The splittable_regs value must be a REG or a
1909 CONST_INT, so put the entire value in the giv_src_reg
1910 variable. */
1911 giv_src_reg = splittable_regs[regno];
1912 giv_inc = const0_rtx;
1915 else
1917 /* Partially unrolling loop. Create a new pseudo
1918 register for the iteration variable, and set it to
1919 be a constant plus the original register. Except
1920 on the last iteration, when the result has to
1921 go back into the original iteration var register. */
1923 /* Handle bivs which must be mapped to a new register
1924 when split. This happens for bivs which need their
1925 final value set before loop entry. The new register
1926 for the biv was stored in the biv's first struct
1927 induction entry by find_splittable_regs. */
1929 if (regno < max_reg_before_loop
1930 && REG_IV_TYPE (regno) == BASIC_INDUCT)
1932 giv_src_reg = reg_biv_class[regno]->biv->src_reg;
1933 giv_dest_reg = giv_src_reg;
1936 #if 0
1937 /* If non-reduced/final-value givs were split, then
1938 this would have to remap those givs also. See
1939 find_splittable_regs. */
1940 #endif
1942 splittable_regs[regno]
1943 = simplify_gen_binary (PLUS, GET_MODE (giv_src_reg),
1944 giv_inc,
1945 splittable_regs[src_regno]);
1946 giv_inc = splittable_regs[regno];
1948 /* Now split the induction variable by changing the dest
1949 of this insn to a new register, and setting its
1950 reg_map entry to point to this new register.
1952 If this is the last iteration, and this is the last insn
1953 that will update the iv, then reuse the original dest,
1954 to ensure that the iv will have the proper value when
1955 the loop exits or repeats.
1957 Using splittable_regs_updates here like this is safe,
1958 because it can only be greater than one if all
1959 instructions modifying the iv are always executed in
1960 order. */
1962 if (! last_iteration
1963 || (splittable_regs_updates[regno]-- != 1))
1965 tem = gen_reg_rtx (GET_MODE (giv_src_reg));
1966 giv_dest_reg = tem;
1967 map->reg_map[regno] = tem;
1968 record_base_value (REGNO (tem),
1969 giv_inc == const0_rtx
1970 ? giv_src_reg
1971 : gen_rtx_PLUS (GET_MODE (giv_src_reg),
1972 giv_src_reg, giv_inc),
1975 else
1976 map->reg_map[regno] = giv_src_reg;
1979 /* The constant being added could be too large for an add
1980 immediate, so can't directly emit an insn here. */
1981 emit_unrolled_add (giv_dest_reg, giv_src_reg, giv_inc);
1982 copy = get_last_insn ();
1983 pattern = PATTERN (copy);
1985 else
1987 pattern = copy_rtx_and_substitute (pattern, map, 0);
1988 copy = emit_insn (pattern);
1990 REG_NOTES (copy) = initial_reg_note_copy (REG_NOTES (insn), map);
1992 #ifdef HAVE_cc0
1993 /* If this insn is setting CC0, it may need to look at
1994 the insn that uses CC0 to see what type of insn it is.
1995 In that case, the call to recog via validate_change will
1996 fail. So don't substitute constants here. Instead,
1997 do it when we emit the following insn.
1999 For example, see the pyr.md file. That machine has signed and
2000 unsigned compares. The compare patterns must check the
2001 following branch insn to see which what kind of compare to
2002 emit.
2004 If the previous insn set CC0, substitute constants on it as
2005 well. */
2006 if (sets_cc0_p (PATTERN (copy)) != 0)
2007 cc0_insn = copy;
2008 else
2010 if (cc0_insn)
2011 try_constants (cc0_insn, map);
2012 cc0_insn = 0;
2013 try_constants (copy, map);
2015 #else
2016 try_constants (copy, map);
2017 #endif
2019 /* Make split induction variable constants `permanent' since we
2020 know there are no backward branches across iteration variable
2021 settings which would invalidate this. */
2022 if (dest_reg_was_split)
2024 int regno = REGNO (SET_DEST (set));
2026 if ((size_t) regno < VARRAY_SIZE (map->const_equiv_varray)
2027 && (VARRAY_CONST_EQUIV (map->const_equiv_varray, regno).age
2028 == map->const_age))
2029 VARRAY_CONST_EQUIV (map->const_equiv_varray, regno).age = -1;
2031 break;
2033 case JUMP_INSN:
2034 pattern = copy_rtx_and_substitute (PATTERN (insn), map, 0);
2035 copy = emit_jump_insn (pattern);
2036 REG_NOTES (copy) = initial_reg_note_copy (REG_NOTES (insn), map);
2038 if (JUMP_LABEL (insn) == start_label && insn == copy_end
2039 && ! last_iteration)
2041 /* Update JUMP_LABEL correctly to make invert_jump working. */
2042 JUMP_LABEL (copy) = get_label_from_map (map,
2043 CODE_LABEL_NUMBER
2044 (JUMP_LABEL (insn)));
2045 /* This is a branch to the beginning of the loop; this is the
2046 last insn being copied; and this is not the last iteration.
2047 In this case, we want to change the original fall through
2048 case to be a branch past the end of the loop, and the
2049 original jump label case to fall_through. */
2051 if (!invert_jump (copy, exit_label, 0))
2053 rtx jmp;
2054 rtx lab = gen_label_rtx ();
2055 /* Can't do it by reversing the jump (probably because we
2056 couldn't reverse the conditions), so emit a new
2057 jump_insn after COPY, and redirect the jump around
2058 that. */
2059 jmp = emit_jump_insn_after (gen_jump (exit_label), copy);
2060 jmp = emit_barrier_after (jmp);
2061 emit_label_after (lab, jmp);
2062 LABEL_NUSES (lab) = 0;
2063 if (!redirect_jump (copy, lab, 0))
2064 abort();
2068 #ifdef HAVE_cc0
2069 if (cc0_insn)
2070 try_constants (cc0_insn, map);
2071 cc0_insn = 0;
2072 #endif
2073 try_constants (copy, map);
2075 /* Set the jump label of COPY correctly to avoid problems with
2076 later passes of unroll_loop, if INSN had jump label set. */
2077 if (JUMP_LABEL (insn))
2079 rtx label = 0;
2081 /* Can't use the label_map for every insn, since this may be
2082 the backward branch, and hence the label was not mapped. */
2083 if ((set = single_set (copy)))
2085 tem = SET_SRC (set);
2086 if (GET_CODE (tem) == LABEL_REF)
2087 label = XEXP (tem, 0);
2088 else if (GET_CODE (tem) == IF_THEN_ELSE)
2090 if (XEXP (tem, 1) != pc_rtx)
2091 label = XEXP (XEXP (tem, 1), 0);
2092 else
2093 label = XEXP (XEXP (tem, 2), 0);
2097 if (label && GET_CODE (label) == CODE_LABEL)
2098 JUMP_LABEL (copy) = label;
2099 else
2101 /* An unrecognizable jump insn, probably the entry jump
2102 for a switch statement. This label must have been mapped,
2103 so just use the label_map to get the new jump label. */
2104 JUMP_LABEL (copy)
2105 = get_label_from_map (map,
2106 CODE_LABEL_NUMBER (JUMP_LABEL (insn)));
2109 /* If this is a non-local jump, then must increase the label
2110 use count so that the label will not be deleted when the
2111 original jump is deleted. */
2112 LABEL_NUSES (JUMP_LABEL (copy))++;
2114 else if (GET_CODE (PATTERN (copy)) == ADDR_VEC
2115 || GET_CODE (PATTERN (copy)) == ADDR_DIFF_VEC)
2117 rtx pat = PATTERN (copy);
2118 int diff_vec_p = GET_CODE (pat) == ADDR_DIFF_VEC;
2119 int len = XVECLEN (pat, diff_vec_p);
2120 int i;
2122 for (i = 0; i < len; i++)
2123 LABEL_NUSES (XEXP (XVECEXP (pat, diff_vec_p, i), 0))++;
2126 /* If this used to be a conditional jump insn but whose branch
2127 direction is now known, we must do something special. */
2128 if (any_condjump_p (insn) && onlyjump_p (insn) && map->last_pc_value)
2130 #ifdef HAVE_cc0
2131 /* If the previous insn set cc0 for us, delete it. */
2132 if (sets_cc0_p (PREV_INSN (copy)))
2133 delete_insn (PREV_INSN (copy));
2134 #endif
2136 /* If this is now a no-op, delete it. */
2137 if (map->last_pc_value == pc_rtx)
2139 /* Don't let delete_insn delete the label referenced here,
2140 because we might possibly need it later for some other
2141 instruction in the loop. */
2142 if (JUMP_LABEL (copy))
2143 LABEL_NUSES (JUMP_LABEL (copy))++;
2144 delete_insn (copy);
2145 if (JUMP_LABEL (copy))
2146 LABEL_NUSES (JUMP_LABEL (copy))--;
2147 copy = 0;
2149 else
2150 /* Otherwise, this is unconditional jump so we must put a
2151 BARRIER after it. We could do some dead code elimination
2152 here, but jump.c will do it just as well. */
2153 emit_barrier ();
2155 break;
2157 case CALL_INSN:
2158 pattern = copy_rtx_and_substitute (PATTERN (insn), map, 0);
2159 copy = emit_call_insn (pattern);
2160 REG_NOTES (copy) = initial_reg_note_copy (REG_NOTES (insn), map);
2162 /* Because the USAGE information potentially contains objects other
2163 than hard registers, we need to copy it. */
2164 CALL_INSN_FUNCTION_USAGE (copy)
2165 = copy_rtx_and_substitute (CALL_INSN_FUNCTION_USAGE (insn),
2166 map, 0);
2168 #ifdef HAVE_cc0
2169 if (cc0_insn)
2170 try_constants (cc0_insn, map);
2171 cc0_insn = 0;
2172 #endif
2173 try_constants (copy, map);
2175 /* Be lazy and assume CALL_INSNs clobber all hard registers. */
2176 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
2177 VARRAY_CONST_EQUIV (map->const_equiv_varray, i).rtx = 0;
2178 break;
2180 case CODE_LABEL:
2181 /* If this is the loop start label, then we don't need to emit a
2182 copy of this label since no one will use it. */
2184 if (insn != start_label)
2186 copy = emit_label (get_label_from_map (map,
2187 CODE_LABEL_NUMBER (insn)));
2188 map->const_age++;
2190 break;
2192 case BARRIER:
2193 copy = emit_barrier ();
2194 break;
2196 case NOTE:
2197 /* VTOP and CONT notes are valid only before the loop exit test.
2198 If placed anywhere else, loop may generate bad code. */
2199 /* BASIC_BLOCK notes exist to stabilize basic block structures with
2200 the associated rtl. We do not want to share the structure in
2201 this new block. */
2203 if (NOTE_LINE_NUMBER (insn) != NOTE_INSN_DELETED
2204 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_DELETED_LABEL
2205 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_BASIC_BLOCK
2206 && ((NOTE_LINE_NUMBER (insn) != NOTE_INSN_LOOP_VTOP
2207 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_LOOP_CONT)
2208 || (last_iteration && unroll_type != UNROLL_COMPLETELY)))
2209 copy = emit_note (NOTE_SOURCE_FILE (insn),
2210 NOTE_LINE_NUMBER (insn));
2211 else
2212 copy = 0;
2213 break;
2215 default:
2216 abort ();
2219 map->insn_map[INSN_UID (insn)] = copy;
2221 while (insn != copy_end);
2223 /* Now finish coping the REG_NOTES. */
2224 insn = copy_start;
2227 insn = NEXT_INSN (insn);
2228 if ((GET_CODE (insn) == INSN || GET_CODE (insn) == JUMP_INSN
2229 || GET_CODE (insn) == CALL_INSN)
2230 && map->insn_map[INSN_UID (insn)])
2231 final_reg_note_copy (REG_NOTES (map->insn_map[INSN_UID (insn)]), map);
2233 while (insn != copy_end);
2235 /* There may be notes between copy_notes_from and loop_end. Emit a copy of
2236 each of these notes here, since there may be some important ones, such as
2237 NOTE_INSN_BLOCK_END notes, in this group. We don't do this on the last
2238 iteration, because the original notes won't be deleted.
2240 We can't use insert_before here, because when from preconditioning,
2241 insert_before points before the loop. We can't use copy_end, because
2242 there may be insns already inserted after it (which we don't want to
2243 copy) when not from preconditioning code. */
2245 if (! last_iteration)
2247 for (insn = copy_notes_from; insn != loop_end; insn = NEXT_INSN (insn))
2249 /* VTOP notes are valid only before the loop exit test.
2250 If placed anywhere else, loop may generate bad code.
2251 There is no need to test for NOTE_INSN_LOOP_CONT notes
2252 here, since COPY_NOTES_FROM will be at most one or two (for cc0)
2253 instructions before the last insn in the loop, and if the
2254 end test is that short, there will be a VTOP note between
2255 the CONT note and the test. */
2256 if (GET_CODE (insn) == NOTE
2257 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_DELETED
2258 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_BASIC_BLOCK
2259 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_LOOP_VTOP)
2260 emit_note (NOTE_SOURCE_FILE (insn), NOTE_LINE_NUMBER (insn));
2264 if (final_label && LABEL_NUSES (final_label) > 0)
2265 emit_label (final_label);
2267 tem = gen_sequence ();
2268 end_sequence ();
2269 emit_insn_before (tem, insert_before);
2272 /* Emit an insn, using the expand_binop to ensure that a valid insn is
2273 emitted. This will correctly handle the case where the increment value
2274 won't fit in the immediate field of a PLUS insns. */
2276 void
2277 emit_unrolled_add (dest_reg, src_reg, increment)
2278 rtx dest_reg, src_reg, increment;
2280 rtx result;
2282 result = expand_binop (GET_MODE (dest_reg), add_optab, src_reg, increment,
2283 dest_reg, 0, OPTAB_LIB_WIDEN);
2285 if (dest_reg != result)
2286 emit_move_insn (dest_reg, result);
2289 /* Searches the insns between INSN and LOOP->END. Returns 1 if there
2290 is a backward branch in that range that branches to somewhere between
2291 LOOP->START and INSN. Returns 0 otherwise. */
2293 /* ??? This is quadratic algorithm. Could be rewritten to be linear.
2294 In practice, this is not a problem, because this function is seldom called,
2295 and uses a negligible amount of CPU time on average. */
2298 back_branch_in_range_p (loop, insn)
2299 const struct loop *loop;
2300 rtx insn;
2302 rtx p, q, target_insn;
2303 rtx loop_start = loop->start;
2304 rtx loop_end = loop->end;
2305 rtx orig_loop_end = loop->end;
2307 /* Stop before we get to the backward branch at the end of the loop. */
2308 loop_end = prev_nonnote_insn (loop_end);
2309 if (GET_CODE (loop_end) == BARRIER)
2310 loop_end = PREV_INSN (loop_end);
2312 /* Check in case insn has been deleted, search forward for first non
2313 deleted insn following it. */
2314 while (INSN_DELETED_P (insn))
2315 insn = NEXT_INSN (insn);
2317 /* Check for the case where insn is the last insn in the loop. Deal
2318 with the case where INSN was a deleted loop test insn, in which case
2319 it will now be the NOTE_LOOP_END. */
2320 if (insn == loop_end || insn == orig_loop_end)
2321 return 0;
2323 for (p = NEXT_INSN (insn); p != loop_end; p = NEXT_INSN (p))
2325 if (GET_CODE (p) == JUMP_INSN)
2327 target_insn = JUMP_LABEL (p);
2329 /* Search from loop_start to insn, to see if one of them is
2330 the target_insn. We can't use INSN_LUID comparisons here,
2331 since insn may not have an LUID entry. */
2332 for (q = loop_start; q != insn; q = NEXT_INSN (q))
2333 if (q == target_insn)
2334 return 1;
2338 return 0;
2341 /* Try to generate the simplest rtx for the expression
2342 (PLUS (MULT mult1 mult2) add1). This is used to calculate the initial
2343 value of giv's. */
2345 static rtx
2346 fold_rtx_mult_add (mult1, mult2, add1, mode)
2347 rtx mult1, mult2, add1;
2348 enum machine_mode mode;
2350 rtx temp, mult_res;
2351 rtx result;
2353 /* The modes must all be the same. This should always be true. For now,
2354 check to make sure. */
2355 if ((GET_MODE (mult1) != mode && GET_MODE (mult1) != VOIDmode)
2356 || (GET_MODE (mult2) != mode && GET_MODE (mult2) != VOIDmode)
2357 || (GET_MODE (add1) != mode && GET_MODE (add1) != VOIDmode))
2358 abort ();
2360 /* Ensure that if at least one of mult1/mult2 are constant, then mult2
2361 will be a constant. */
2362 if (GET_CODE (mult1) == CONST_INT)
2364 temp = mult2;
2365 mult2 = mult1;
2366 mult1 = temp;
2369 mult_res = simplify_binary_operation (MULT, mode, mult1, mult2);
2370 if (! mult_res)
2371 mult_res = gen_rtx_MULT (mode, mult1, mult2);
2373 /* Again, put the constant second. */
2374 if (GET_CODE (add1) == CONST_INT)
2376 temp = add1;
2377 add1 = mult_res;
2378 mult_res = temp;
2381 result = simplify_binary_operation (PLUS, mode, add1, mult_res);
2382 if (! result)
2383 result = gen_rtx_PLUS (mode, add1, mult_res);
2385 return result;
2388 /* Searches the list of induction struct's for the biv BL, to try to calculate
2389 the total increment value for one iteration of the loop as a constant.
2391 Returns the increment value as an rtx, simplified as much as possible,
2392 if it can be calculated. Otherwise, returns 0. */
2395 biv_total_increment (bl)
2396 struct iv_class *bl;
2398 struct induction *v;
2399 rtx result;
2401 /* For increment, must check every instruction that sets it. Each
2402 instruction must be executed only once each time through the loop.
2403 To verify this, we check that the insn is always executed, and that
2404 there are no backward branches after the insn that branch to before it.
2405 Also, the insn must have a mult_val of one (to make sure it really is
2406 an increment). */
2408 result = const0_rtx;
2409 for (v = bl->biv; v; v = v->next_iv)
2411 if (v->always_computable && v->mult_val == const1_rtx
2412 && ! v->maybe_multiple)
2413 result = fold_rtx_mult_add (result, const1_rtx, v->add_val, v->mode);
2414 else
2415 return 0;
2418 return result;
2421 /* Determine the initial value of the iteration variable, and the amount
2422 that it is incremented each loop. Use the tables constructed by
2423 the strength reduction pass to calculate these values.
2425 Initial_value and/or increment are set to zero if their values could not
2426 be calculated. */
2428 static void
2429 iteration_info (loop, iteration_var, initial_value, increment)
2430 const struct loop *loop ATTRIBUTE_UNUSED;
2431 rtx iteration_var, *initial_value, *increment;
2433 struct iv_class *bl;
2435 /* Clear the result values, in case no answer can be found. */
2436 *initial_value = 0;
2437 *increment = 0;
2439 /* The iteration variable can be either a giv or a biv. Check to see
2440 which it is, and compute the variable's initial value, and increment
2441 value if possible. */
2443 /* If this is a new register, can't handle it since we don't have any
2444 reg_iv_type entry for it. */
2445 if ((unsigned) REGNO (iteration_var) >= reg_iv_type->num_elements)
2447 if (loop_dump_stream)
2448 fprintf (loop_dump_stream,
2449 "Loop unrolling: No reg_iv_type entry for iteration var.\n");
2450 return;
2453 /* Reject iteration variables larger than the host wide int size, since they
2454 could result in a number of iterations greater than the range of our
2455 `unsigned HOST_WIDE_INT' variable loop_info->n_iterations. */
2456 else if ((GET_MODE_BITSIZE (GET_MODE (iteration_var))
2457 > HOST_BITS_PER_WIDE_INT))
2459 if (loop_dump_stream)
2460 fprintf (loop_dump_stream,
2461 "Loop unrolling: Iteration var rejected because mode too large.\n");
2462 return;
2464 else if (GET_MODE_CLASS (GET_MODE (iteration_var)) != MODE_INT)
2466 if (loop_dump_stream)
2467 fprintf (loop_dump_stream,
2468 "Loop unrolling: Iteration var not an integer.\n");
2469 return;
2471 else if (REG_IV_TYPE (REGNO (iteration_var)) == BASIC_INDUCT)
2473 /* When reg_iv_type / reg_iv_info is resized for biv increments
2474 that are turned into givs, reg_biv_class is not resized.
2475 So check here that we don't make an out-of-bounds access. */
2476 if (REGNO (iteration_var) >= max_reg_before_loop)
2477 abort ();
2479 /* Grab initial value, only useful if it is a constant. */
2480 bl = reg_biv_class[REGNO (iteration_var)];
2481 *initial_value = bl->initial_value;
2483 *increment = biv_total_increment (bl);
2485 else if (REG_IV_TYPE (REGNO (iteration_var)) == GENERAL_INDUCT)
2487 HOST_WIDE_INT offset = 0;
2488 struct induction *v = REG_IV_INFO (REGNO (iteration_var));
2490 if (REGNO (v->src_reg) >= max_reg_before_loop)
2491 abort ();
2493 bl = reg_biv_class[REGNO (v->src_reg)];
2495 /* Increment value is mult_val times the increment value of the biv. */
2497 *increment = biv_total_increment (bl);
2498 if (*increment)
2500 struct induction *biv_inc;
2502 *increment
2503 = fold_rtx_mult_add (v->mult_val, *increment, const0_rtx, v->mode);
2504 /* The caller assumes that one full increment has occured at the
2505 first loop test. But that's not true when the biv is incremented
2506 after the giv is set (which is the usual case), e.g.:
2507 i = 6; do {;} while (i++ < 9) .
2508 Therefore, we bias the initial value by subtracting the amount of
2509 the increment that occurs between the giv set and the giv test. */
2510 for (biv_inc = bl->biv; biv_inc; biv_inc = biv_inc->next_iv)
2512 if (loop_insn_first_p (v->insn, biv_inc->insn))
2513 offset -= INTVAL (biv_inc->add_val);
2515 offset *= INTVAL (v->mult_val);
2517 if (loop_dump_stream)
2518 fprintf (loop_dump_stream,
2519 "Loop unrolling: Giv iterator, initial value bias %ld.\n",
2520 (long) offset);
2521 /* Initial value is mult_val times the biv's initial value plus
2522 add_val. Only useful if it is a constant. */
2523 *initial_value
2524 = fold_rtx_mult_add (v->mult_val,
2525 plus_constant (bl->initial_value, offset),
2526 v->add_val, v->mode);
2528 else
2530 if (loop_dump_stream)
2531 fprintf (loop_dump_stream,
2532 "Loop unrolling: Not basic or general induction var.\n");
2533 return;
2538 /* For each biv and giv, determine whether it can be safely split into
2539 a different variable for each unrolled copy of the loop body. If it
2540 is safe to split, then indicate that by saving some useful info
2541 in the splittable_regs array.
2543 If the loop is being completely unrolled, then splittable_regs will hold
2544 the current value of the induction variable while the loop is unrolled.
2545 It must be set to the initial value of the induction variable here.
2546 Otherwise, splittable_regs will hold the difference between the current
2547 value of the induction variable and the value the induction variable had
2548 at the top of the loop. It must be set to the value 0 here.
2550 Returns the total number of instructions that set registers that are
2551 splittable. */
2553 /* ?? If the loop is only unrolled twice, then most of the restrictions to
2554 constant values are unnecessary, since we can easily calculate increment
2555 values in this case even if nothing is constant. The increment value
2556 should not involve a multiply however. */
2558 /* ?? Even if the biv/giv increment values aren't constant, it may still
2559 be beneficial to split the variable if the loop is only unrolled a few
2560 times, since multiplies by small integers (1,2,3,4) are very cheap. */
2562 static int
2563 find_splittable_regs (loop, unroll_type, end_insert_before, unroll_number)
2564 const struct loop *loop;
2565 enum unroll_types unroll_type;
2566 rtx end_insert_before;
2567 int unroll_number;
2569 struct iv_class *bl;
2570 struct induction *v;
2571 rtx increment, tem;
2572 rtx biv_final_value;
2573 int biv_splittable;
2574 int result = 0;
2575 rtx loop_start = loop->start;
2576 rtx loop_end = loop->end;
2578 for (bl = loop_iv_list; bl; bl = bl->next)
2580 /* Biv_total_increment must return a constant value,
2581 otherwise we can not calculate the split values. */
2583 increment = biv_total_increment (bl);
2584 if (! increment || GET_CODE (increment) != CONST_INT)
2585 continue;
2587 /* The loop must be unrolled completely, or else have a known number
2588 of iterations and only one exit, or else the biv must be dead
2589 outside the loop, or else the final value must be known. Otherwise,
2590 it is unsafe to split the biv since it may not have the proper
2591 value on loop exit. */
2593 /* loop_number_exit_count is non-zero if the loop has an exit other than
2594 a fall through at the end. */
2596 biv_splittable = 1;
2597 biv_final_value = 0;
2598 if (unroll_type != UNROLL_COMPLETELY
2599 && (loop->exit_count || unroll_type == UNROLL_NAIVE)
2600 && (uid_luid[REGNO_LAST_UID (bl->regno)] >= INSN_LUID (loop_end)
2601 || ! bl->init_insn
2602 || INSN_UID (bl->init_insn) >= max_uid_for_loop
2603 || (uid_luid[REGNO_FIRST_UID (bl->regno)]
2604 < INSN_LUID (bl->init_insn))
2605 || reg_mentioned_p (bl->biv->dest_reg, SET_SRC (bl->init_set)))
2606 && ! (biv_final_value = final_biv_value (loop, bl)))
2607 biv_splittable = 0;
2609 /* If any of the insns setting the BIV don't do so with a simple
2610 PLUS, we don't know how to split it. */
2611 for (v = bl->biv; biv_splittable && v; v = v->next_iv)
2612 if ((tem = single_set (v->insn)) == 0
2613 || GET_CODE (SET_DEST (tem)) != REG
2614 || REGNO (SET_DEST (tem)) != bl->regno
2615 || GET_CODE (SET_SRC (tem)) != PLUS)
2616 biv_splittable = 0;
2618 /* If final value is non-zero, then must emit an instruction which sets
2619 the value of the biv to the proper value. This is done after
2620 handling all of the givs, since some of them may need to use the
2621 biv's value in their initialization code. */
2623 /* This biv is splittable. If completely unrolling the loop, save
2624 the biv's initial value. Otherwise, save the constant zero. */
2626 if (biv_splittable == 1)
2628 if (unroll_type == UNROLL_COMPLETELY)
2630 /* If the initial value of the biv is itself (i.e. it is too
2631 complicated for strength_reduce to compute), or is a hard
2632 register, or it isn't invariant, then we must create a new
2633 pseudo reg to hold the initial value of the biv. */
2635 if (GET_CODE (bl->initial_value) == REG
2636 && (REGNO (bl->initial_value) == bl->regno
2637 || REGNO (bl->initial_value) < FIRST_PSEUDO_REGISTER
2638 || ! loop_invariant_p (loop, bl->initial_value)))
2640 rtx tem = gen_reg_rtx (bl->biv->mode);
2642 record_base_value (REGNO (tem), bl->biv->add_val, 0);
2643 emit_insn_before (gen_move_insn (tem, bl->biv->src_reg),
2644 loop_start);
2646 if (loop_dump_stream)
2647 fprintf (loop_dump_stream, "Biv %d initial value remapped to %d.\n",
2648 bl->regno, REGNO (tem));
2650 splittable_regs[bl->regno] = tem;
2652 else
2653 splittable_regs[bl->regno] = bl->initial_value;
2655 else
2656 splittable_regs[bl->regno] = const0_rtx;
2658 /* Save the number of instructions that modify the biv, so that
2659 we can treat the last one specially. */
2661 splittable_regs_updates[bl->regno] = bl->biv_count;
2662 result += bl->biv_count;
2664 if (loop_dump_stream)
2665 fprintf (loop_dump_stream,
2666 "Biv %d safe to split.\n", bl->regno);
2669 /* Check every giv that depends on this biv to see whether it is
2670 splittable also. Even if the biv isn't splittable, givs which
2671 depend on it may be splittable if the biv is live outside the
2672 loop, and the givs aren't. */
2674 result += find_splittable_givs (loop, bl, unroll_type, increment,
2675 unroll_number);
2677 /* If final value is non-zero, then must emit an instruction which sets
2678 the value of the biv to the proper value. This is done after
2679 handling all of the givs, since some of them may need to use the
2680 biv's value in their initialization code. */
2681 if (biv_final_value)
2683 /* If the loop has multiple exits, emit the insns before the
2684 loop to ensure that it will always be executed no matter
2685 how the loop exits. Otherwise emit the insn after the loop,
2686 since this is slightly more efficient. */
2687 if (! loop->exit_count)
2688 emit_insn_before (gen_move_insn (bl->biv->src_reg,
2689 biv_final_value),
2690 end_insert_before);
2691 else
2693 /* Create a new register to hold the value of the biv, and then
2694 set the biv to its final value before the loop start. The biv
2695 is set to its final value before loop start to ensure that
2696 this insn will always be executed, no matter how the loop
2697 exits. */
2698 rtx tem = gen_reg_rtx (bl->biv->mode);
2699 record_base_value (REGNO (tem), bl->biv->add_val, 0);
2701 emit_insn_before (gen_move_insn (tem, bl->biv->src_reg),
2702 loop_start);
2703 emit_insn_before (gen_move_insn (bl->biv->src_reg,
2704 biv_final_value),
2705 loop_start);
2707 if (loop_dump_stream)
2708 fprintf (loop_dump_stream, "Biv %d mapped to %d for split.\n",
2709 REGNO (bl->biv->src_reg), REGNO (tem));
2711 /* Set up the mapping from the original biv register to the new
2712 register. */
2713 bl->biv->src_reg = tem;
2717 return result;
2720 /* Return 1 if the first and last unrolled copy of the address giv V is valid
2721 for the instruction that is using it. Do not make any changes to that
2722 instruction. */
2724 static int
2725 verify_addresses (v, giv_inc, unroll_number)
2726 struct induction *v;
2727 rtx giv_inc;
2728 int unroll_number;
2730 int ret = 1;
2731 rtx orig_addr = *v->location;
2732 rtx last_addr = plus_constant (v->dest_reg,
2733 INTVAL (giv_inc) * (unroll_number - 1));
2735 /* First check to see if either address would fail. Handle the fact
2736 that we have may have a match_dup. */
2737 if (! validate_replace_rtx (*v->location, v->dest_reg, v->insn)
2738 || ! validate_replace_rtx (*v->location, last_addr, v->insn))
2739 ret = 0;
2741 /* Now put things back the way they were before. This should always
2742 succeed. */
2743 if (! validate_replace_rtx (*v->location, orig_addr, v->insn))
2744 abort ();
2746 return ret;
2749 /* For every giv based on the biv BL, check to determine whether it is
2750 splittable. This is a subroutine to find_splittable_regs ().
2752 Return the number of instructions that set splittable registers. */
2754 static int
2755 find_splittable_givs (loop, bl, unroll_type, increment, unroll_number)
2756 const struct loop *loop;
2757 struct iv_class *bl;
2758 enum unroll_types unroll_type;
2759 rtx increment;
2760 int unroll_number;
2762 struct induction *v, *v2;
2763 rtx final_value;
2764 rtx tem;
2765 int result = 0;
2767 /* Scan the list of givs, and set the same_insn field when there are
2768 multiple identical givs in the same insn. */
2769 for (v = bl->giv; v; v = v->next_iv)
2770 for (v2 = v->next_iv; v2; v2 = v2->next_iv)
2771 if (v->insn == v2->insn && rtx_equal_p (v->new_reg, v2->new_reg)
2772 && ! v2->same_insn)
2773 v2->same_insn = v;
2775 for (v = bl->giv; v; v = v->next_iv)
2777 rtx giv_inc, value;
2779 /* Only split the giv if it has already been reduced, or if the loop is
2780 being completely unrolled. */
2781 if (unroll_type != UNROLL_COMPLETELY && v->ignore)
2782 continue;
2784 /* The giv can be split if the insn that sets the giv is executed once
2785 and only once on every iteration of the loop. */
2786 /* An address giv can always be split. v->insn is just a use not a set,
2787 and hence it does not matter whether it is always executed. All that
2788 matters is that all the biv increments are always executed, and we
2789 won't reach here if they aren't. */
2790 if (v->giv_type != DEST_ADDR
2791 && (! v->always_computable
2792 || back_branch_in_range_p (loop, v->insn)))
2793 continue;
2795 /* The giv increment value must be a constant. */
2796 giv_inc = fold_rtx_mult_add (v->mult_val, increment, const0_rtx,
2797 v->mode);
2798 if (! giv_inc || GET_CODE (giv_inc) != CONST_INT)
2799 continue;
2801 /* The loop must be unrolled completely, or else have a known number of
2802 iterations and only one exit, or else the giv must be dead outside
2803 the loop, or else the final value of the giv must be known.
2804 Otherwise, it is not safe to split the giv since it may not have the
2805 proper value on loop exit. */
2807 /* The used outside loop test will fail for DEST_ADDR givs. They are
2808 never used outside the loop anyways, so it is always safe to split a
2809 DEST_ADDR giv. */
2811 final_value = 0;
2812 if (unroll_type != UNROLL_COMPLETELY
2813 && (loop->exit_count || unroll_type == UNROLL_NAIVE)
2814 && v->giv_type != DEST_ADDR
2815 /* The next part is true if the pseudo is used outside the loop.
2816 We assume that this is true for any pseudo created after loop
2817 starts, because we don't have a reg_n_info entry for them. */
2818 && (REGNO (v->dest_reg) >= max_reg_before_loop
2819 || (REGNO_FIRST_UID (REGNO (v->dest_reg)) != INSN_UID (v->insn)
2820 /* Check for the case where the pseudo is set by a shift/add
2821 sequence, in which case the first insn setting the pseudo
2822 is the first insn of the shift/add sequence. */
2823 && (! (tem = find_reg_note (v->insn, REG_RETVAL, NULL_RTX))
2824 || (REGNO_FIRST_UID (REGNO (v->dest_reg))
2825 != INSN_UID (XEXP (tem, 0)))))
2826 /* Line above always fails if INSN was moved by loop opt. */
2827 || (uid_luid[REGNO_LAST_UID (REGNO (v->dest_reg))]
2828 >= INSN_LUID (loop->end)))
2829 /* Givs made from biv increments are missed by the above test, so
2830 test explicitly for them. */
2831 && (REGNO (v->dest_reg) < first_increment_giv
2832 || REGNO (v->dest_reg) > last_increment_giv)
2833 && ! (final_value = v->final_value))
2834 continue;
2836 #if 0
2837 /* Currently, non-reduced/final-value givs are never split. */
2838 /* Should emit insns after the loop if possible, as the biv final value
2839 code below does. */
2841 /* If the final value is non-zero, and the giv has not been reduced,
2842 then must emit an instruction to set the final value. */
2843 if (final_value && !v->new_reg)
2845 /* Create a new register to hold the value of the giv, and then set
2846 the giv to its final value before the loop start. The giv is set
2847 to its final value before loop start to ensure that this insn
2848 will always be executed, no matter how we exit. */
2849 tem = gen_reg_rtx (v->mode);
2850 emit_insn_before (gen_move_insn (tem, v->dest_reg), loop_start);
2851 emit_insn_before (gen_move_insn (v->dest_reg, final_value),
2852 loop_start);
2854 if (loop_dump_stream)
2855 fprintf (loop_dump_stream, "Giv %d mapped to %d for split.\n",
2856 REGNO (v->dest_reg), REGNO (tem));
2858 v->src_reg = tem;
2860 #endif
2862 /* This giv is splittable. If completely unrolling the loop, save the
2863 giv's initial value. Otherwise, save the constant zero for it. */
2865 if (unroll_type == UNROLL_COMPLETELY)
2867 /* It is not safe to use bl->initial_value here, because it may not
2868 be invariant. It is safe to use the initial value stored in
2869 the splittable_regs array if it is set. In rare cases, it won't
2870 be set, so then we do exactly the same thing as
2871 find_splittable_regs does to get a safe value. */
2872 rtx biv_initial_value;
2874 if (splittable_regs[bl->regno])
2875 biv_initial_value = splittable_regs[bl->regno];
2876 else if (GET_CODE (bl->initial_value) != REG
2877 || (REGNO (bl->initial_value) != bl->regno
2878 && REGNO (bl->initial_value) >= FIRST_PSEUDO_REGISTER))
2879 biv_initial_value = bl->initial_value;
2880 else
2882 rtx tem = gen_reg_rtx (bl->biv->mode);
2884 record_base_value (REGNO (tem), bl->biv->add_val, 0);
2885 emit_insn_before (gen_move_insn (tem, bl->biv->src_reg),
2886 loop->start);
2887 biv_initial_value = tem;
2889 value = fold_rtx_mult_add (v->mult_val, biv_initial_value,
2890 v->add_val, v->mode);
2892 else
2893 value = const0_rtx;
2895 if (v->new_reg)
2897 /* If a giv was combined with another giv, then we can only split
2898 this giv if the giv it was combined with was reduced. This
2899 is because the value of v->new_reg is meaningless in this
2900 case. */
2901 if (v->same && ! v->same->new_reg)
2903 if (loop_dump_stream)
2904 fprintf (loop_dump_stream,
2905 "giv combined with unreduced giv not split.\n");
2906 continue;
2908 /* If the giv is an address destination, it could be something other
2909 than a simple register, these have to be treated differently. */
2910 else if (v->giv_type == DEST_REG)
2912 /* If value is not a constant, register, or register plus
2913 constant, then compute its value into a register before
2914 loop start. This prevents invalid rtx sharing, and should
2915 generate better code. We can use bl->initial_value here
2916 instead of splittable_regs[bl->regno] because this code
2917 is going before the loop start. */
2918 if (unroll_type == UNROLL_COMPLETELY
2919 && GET_CODE (value) != CONST_INT
2920 && GET_CODE (value) != REG
2921 && (GET_CODE (value) != PLUS
2922 || GET_CODE (XEXP (value, 0)) != REG
2923 || GET_CODE (XEXP (value, 1)) != CONST_INT))
2925 rtx tem = gen_reg_rtx (v->mode);
2926 record_base_value (REGNO (tem), v->add_val, 0);
2927 emit_iv_add_mult (bl->initial_value, v->mult_val,
2928 v->add_val, tem, loop->start);
2929 value = tem;
2932 splittable_regs[REGNO (v->new_reg)] = value;
2933 derived_regs[REGNO (v->new_reg)] = v->derived_from != 0;
2935 else
2937 /* Splitting address givs is useful since it will often allow us
2938 to eliminate some increment insns for the base giv as
2939 unnecessary. */
2941 /* If the addr giv is combined with a dest_reg giv, then all
2942 references to that dest reg will be remapped, which is NOT
2943 what we want for split addr regs. We always create a new
2944 register for the split addr giv, just to be safe. */
2946 /* If we have multiple identical address givs within a
2947 single instruction, then use a single pseudo reg for
2948 both. This is necessary in case one is a match_dup
2949 of the other. */
2951 v->const_adjust = 0;
2953 if (v->same_insn)
2955 v->dest_reg = v->same_insn->dest_reg;
2956 if (loop_dump_stream)
2957 fprintf (loop_dump_stream,
2958 "Sharing address givs in insn %d\n",
2959 INSN_UID (v->insn));
2961 /* If multiple address GIVs have been combined with the
2962 same dest_reg GIV, do not create a new register for
2963 each. */
2964 else if (unroll_type != UNROLL_COMPLETELY
2965 && v->giv_type == DEST_ADDR
2966 && v->same && v->same->giv_type == DEST_ADDR
2967 && v->same->unrolled
2968 /* combine_givs_p may return true for some cases
2969 where the add and mult values are not equal.
2970 To share a register here, the values must be
2971 equal. */
2972 && rtx_equal_p (v->same->mult_val, v->mult_val)
2973 && rtx_equal_p (v->same->add_val, v->add_val)
2974 /* If the memory references have different modes,
2975 then the address may not be valid and we must
2976 not share registers. */
2977 && verify_addresses (v, giv_inc, unroll_number))
2979 v->dest_reg = v->same->dest_reg;
2980 v->shared = 1;
2982 else if (unroll_type != UNROLL_COMPLETELY)
2984 /* If not completely unrolling the loop, then create a new
2985 register to hold the split value of the DEST_ADDR giv.
2986 Emit insn to initialize its value before loop start. */
2988 rtx tem = gen_reg_rtx (v->mode);
2989 struct induction *same = v->same;
2990 rtx new_reg = v->new_reg;
2991 record_base_value (REGNO (tem), v->add_val, 0);
2993 if (same && same->derived_from)
2995 /* calculate_giv_inc doesn't work for derived givs.
2996 copy_loop_body works around the problem for the
2997 DEST_REG givs themselves, but it can't handle
2998 DEST_ADDR givs that have been combined with
2999 a derived DEST_REG giv.
3000 So Handle V as if the giv from which V->SAME has
3001 been derived has been combined with V.
3002 recombine_givs only derives givs from givs that
3003 are reduced the ordinary, so we need not worry
3004 about same->derived_from being in turn derived. */
3006 same = same->derived_from;
3007 new_reg = express_from (same, v);
3008 new_reg = replace_rtx (new_reg, same->dest_reg,
3009 same->new_reg);
3012 /* If the address giv has a constant in its new_reg value,
3013 then this constant can be pulled out and put in value,
3014 instead of being part of the initialization code. */
3016 if (GET_CODE (new_reg) == PLUS
3017 && GET_CODE (XEXP (new_reg, 1)) == CONST_INT)
3019 v->dest_reg
3020 = plus_constant (tem, INTVAL (XEXP (new_reg, 1)));
3022 /* Only succeed if this will give valid addresses.
3023 Try to validate both the first and the last
3024 address resulting from loop unrolling, if
3025 one fails, then can't do const elim here. */
3026 if (verify_addresses (v, giv_inc, unroll_number))
3028 /* Save the negative of the eliminated const, so
3029 that we can calculate the dest_reg's increment
3030 value later. */
3031 v->const_adjust = - INTVAL (XEXP (new_reg, 1));
3033 new_reg = XEXP (new_reg, 0);
3034 if (loop_dump_stream)
3035 fprintf (loop_dump_stream,
3036 "Eliminating constant from giv %d\n",
3037 REGNO (tem));
3039 else
3040 v->dest_reg = tem;
3042 else
3043 v->dest_reg = tem;
3045 /* If the address hasn't been checked for validity yet, do so
3046 now, and fail completely if either the first or the last
3047 unrolled copy of the address is not a valid address
3048 for the instruction that uses it. */
3049 if (v->dest_reg == tem
3050 && ! verify_addresses (v, giv_inc, unroll_number))
3052 for (v2 = v->next_iv; v2; v2 = v2->next_iv)
3053 if (v2->same_insn == v)
3054 v2->same_insn = 0;
3056 if (loop_dump_stream)
3057 fprintf (loop_dump_stream,
3058 "Invalid address for giv at insn %d\n",
3059 INSN_UID (v->insn));
3060 continue;
3063 v->new_reg = new_reg;
3064 v->same = same;
3066 /* We set this after the address check, to guarantee that
3067 the register will be initialized. */
3068 v->unrolled = 1;
3070 /* To initialize the new register, just move the value of
3071 new_reg into it. This is not guaranteed to give a valid
3072 instruction on machines with complex addressing modes.
3073 If we can't recognize it, then delete it and emit insns
3074 to calculate the value from scratch. */
3075 emit_insn_before (gen_rtx_SET (VOIDmode, tem,
3076 copy_rtx (v->new_reg)),
3077 loop->start);
3078 if (recog_memoized (PREV_INSN (loop->start)) < 0)
3080 rtx sequence, ret;
3082 /* We can't use bl->initial_value to compute the initial
3083 value, because the loop may have been preconditioned.
3084 We must calculate it from NEW_REG. Try using
3085 force_operand instead of emit_iv_add_mult. */
3086 delete_insn (PREV_INSN (loop->start));
3088 start_sequence ();
3089 ret = force_operand (v->new_reg, tem);
3090 if (ret != tem)
3091 emit_move_insn (tem, ret);
3092 sequence = gen_sequence ();
3093 end_sequence ();
3094 emit_insn_before (sequence, loop->start);
3096 if (loop_dump_stream)
3097 fprintf (loop_dump_stream,
3098 "Invalid init insn, rewritten.\n");
3101 else
3103 v->dest_reg = value;
3105 /* Check the resulting address for validity, and fail
3106 if the resulting address would be invalid. */
3107 if (! verify_addresses (v, giv_inc, unroll_number))
3109 for (v2 = v->next_iv; v2; v2 = v2->next_iv)
3110 if (v2->same_insn == v)
3111 v2->same_insn = 0;
3113 if (loop_dump_stream)
3114 fprintf (loop_dump_stream,
3115 "Invalid address for giv at insn %d\n",
3116 INSN_UID (v->insn));
3117 continue;
3119 if (v->same && v->same->derived_from)
3121 /* Handle V as if the giv from which V->SAME has
3122 been derived has been combined with V. */
3124 v->same = v->same->derived_from;
3125 v->new_reg = express_from (v->same, v);
3126 v->new_reg = replace_rtx (v->new_reg, v->same->dest_reg,
3127 v->same->new_reg);
3132 /* Store the value of dest_reg into the insn. This sharing
3133 will not be a problem as this insn will always be copied
3134 later. */
3136 *v->location = v->dest_reg;
3138 /* If this address giv is combined with a dest reg giv, then
3139 save the base giv's induction pointer so that we will be
3140 able to handle this address giv properly. The base giv
3141 itself does not have to be splittable. */
3143 if (v->same && v->same->giv_type == DEST_REG)
3144 addr_combined_regs[REGNO (v->same->new_reg)] = v->same;
3146 if (GET_CODE (v->new_reg) == REG)
3148 /* This giv maybe hasn't been combined with any others.
3149 Make sure that it's giv is marked as splittable here. */
3151 splittable_regs[REGNO (v->new_reg)] = value;
3152 derived_regs[REGNO (v->new_reg)] = v->derived_from != 0;
3154 /* Make it appear to depend upon itself, so that the
3155 giv will be properly split in the main loop above. */
3156 if (! v->same)
3158 v->same = v;
3159 addr_combined_regs[REGNO (v->new_reg)] = v;
3163 if (loop_dump_stream)
3164 fprintf (loop_dump_stream, "DEST_ADDR giv being split.\n");
3167 else
3169 #if 0
3170 /* Currently, unreduced giv's can't be split. This is not too much
3171 of a problem since unreduced giv's are not live across loop
3172 iterations anyways. When unrolling a loop completely though,
3173 it makes sense to reduce&split givs when possible, as this will
3174 result in simpler instructions, and will not require that a reg
3175 be live across loop iterations. */
3177 splittable_regs[REGNO (v->dest_reg)] = value;
3178 fprintf (stderr, "Giv %d at insn %d not reduced\n",
3179 REGNO (v->dest_reg), INSN_UID (v->insn));
3180 #else
3181 continue;
3182 #endif
3185 /* Unreduced givs are only updated once by definition. Reduced givs
3186 are updated as many times as their biv is. Mark it so if this is
3187 a splittable register. Don't need to do anything for address givs
3188 where this may not be a register. */
3190 if (GET_CODE (v->new_reg) == REG)
3192 int count = 1;
3193 if (! v->ignore)
3194 count = reg_biv_class[REGNO (v->src_reg)]->biv_count;
3196 if (count > 1 && v->derived_from)
3197 /* In this case, there is one set where the giv insn was and one
3198 set each after each biv increment. (Most are likely dead.) */
3199 count++;
3201 splittable_regs_updates[REGNO (v->new_reg)] = count;
3204 result++;
3206 if (loop_dump_stream)
3208 int regnum;
3210 if (GET_CODE (v->dest_reg) == CONST_INT)
3211 regnum = -1;
3212 else if (GET_CODE (v->dest_reg) != REG)
3213 regnum = REGNO (XEXP (v->dest_reg, 0));
3214 else
3215 regnum = REGNO (v->dest_reg);
3216 fprintf (loop_dump_stream, "Giv %d at insn %d safe to split.\n",
3217 regnum, INSN_UID (v->insn));
3221 return result;
3224 /* Try to prove that the register is dead after the loop exits. Trace every
3225 loop exit looking for an insn that will always be executed, which sets
3226 the register to some value, and appears before the first use of the register
3227 is found. If successful, then return 1, otherwise return 0. */
3229 /* ?? Could be made more intelligent in the handling of jumps, so that
3230 it can search past if statements and other similar structures. */
3232 static int
3233 reg_dead_after_loop (loop, reg)
3234 const struct loop *loop;
3235 rtx reg;
3237 rtx insn, label;
3238 enum rtx_code code;
3239 int jump_count = 0;
3240 int label_count = 0;
3242 /* In addition to checking all exits of this loop, we must also check
3243 all exits of inner nested loops that would exit this loop. We don't
3244 have any way to identify those, so we just give up if there are any
3245 such inner loop exits. */
3247 for (label = loop->exit_labels; label; label = LABEL_NEXTREF (label))
3248 label_count++;
3250 if (label_count != loop->exit_count)
3251 return 0;
3253 /* HACK: Must also search the loop fall through exit, create a label_ref
3254 here which points to the loop->end, and append the loop_number_exit_labels
3255 list to it. */
3256 label = gen_rtx_LABEL_REF (VOIDmode, loop->end);
3257 LABEL_NEXTREF (label) = loop->exit_labels;
3259 for ( ; label; label = LABEL_NEXTREF (label))
3261 /* Succeed if find an insn which sets the biv or if reach end of
3262 function. Fail if find an insn that uses the biv, or if come to
3263 a conditional jump. */
3265 insn = NEXT_INSN (XEXP (label, 0));
3266 while (insn)
3268 code = GET_CODE (insn);
3269 if (GET_RTX_CLASS (code) == 'i')
3271 rtx set;
3273 if (reg_referenced_p (reg, PATTERN (insn)))
3274 return 0;
3276 set = single_set (insn);
3277 if (set && rtx_equal_p (SET_DEST (set), reg))
3278 break;
3281 if (code == JUMP_INSN)
3283 if (GET_CODE (PATTERN (insn)) == RETURN)
3284 break;
3285 else if (!any_uncondjump_p (insn)
3286 /* Prevent infinite loop following infinite loops. */
3287 || jump_count++ > 20)
3288 return 0;
3289 else
3290 insn = JUMP_LABEL (insn);
3293 insn = NEXT_INSN (insn);
3297 /* Success, the register is dead on all loop exits. */
3298 return 1;
3301 /* Try to calculate the final value of the biv, the value it will have at
3302 the end of the loop. If we can do it, return that value. */
3305 final_biv_value (loop, bl)
3306 const struct loop *loop;
3307 struct iv_class *bl;
3309 rtx loop_end = loop->end;
3310 unsigned HOST_WIDE_INT n_iterations = LOOP_INFO (loop)->n_iterations;
3311 rtx increment, tem;
3313 /* ??? This only works for MODE_INT biv's. Reject all others for now. */
3315 if (GET_MODE_CLASS (bl->biv->mode) != MODE_INT)
3316 return 0;
3318 /* The final value for reversed bivs must be calculated differently than
3319 for ordinary bivs. In this case, there is already an insn after the
3320 loop which sets this biv's final value (if necessary), and there are
3321 no other loop exits, so we can return any value. */
3322 if (bl->reversed)
3324 if (loop_dump_stream)
3325 fprintf (loop_dump_stream,
3326 "Final biv value for %d, reversed biv.\n", bl->regno);
3328 return const0_rtx;
3331 /* Try to calculate the final value as initial value + (number of iterations
3332 * increment). For this to work, increment must be invariant, the only
3333 exit from the loop must be the fall through at the bottom (otherwise
3334 it may not have its final value when the loop exits), and the initial
3335 value of the biv must be invariant. */
3337 if (n_iterations != 0
3338 && ! loop->exit_count
3339 && loop_invariant_p (loop, bl->initial_value))
3341 increment = biv_total_increment (bl);
3343 if (increment && loop_invariant_p (loop, increment))
3345 /* Can calculate the loop exit value, emit insns after loop
3346 end to calculate this value into a temporary register in
3347 case it is needed later. */
3349 tem = gen_reg_rtx (bl->biv->mode);
3350 record_base_value (REGNO (tem), bl->biv->add_val, 0);
3351 /* Make sure loop_end is not the last insn. */
3352 if (NEXT_INSN (loop_end) == 0)
3353 emit_note_after (NOTE_INSN_DELETED, loop_end);
3354 emit_iv_add_mult (increment, GEN_INT (n_iterations),
3355 bl->initial_value, tem, NEXT_INSN (loop_end));
3357 if (loop_dump_stream)
3358 fprintf (loop_dump_stream,
3359 "Final biv value for %d, calculated.\n", bl->regno);
3361 return tem;
3365 /* Check to see if the biv is dead at all loop exits. */
3366 if (reg_dead_after_loop (loop, bl->biv->src_reg))
3368 if (loop_dump_stream)
3369 fprintf (loop_dump_stream,
3370 "Final biv value for %d, biv dead after loop exit.\n",
3371 bl->regno);
3373 return const0_rtx;
3376 return 0;
3379 /* Try to calculate the final value of the giv, the value it will have at
3380 the end of the loop. If we can do it, return that value. */
3383 final_giv_value (loop, v)
3384 const struct loop *loop;
3385 struct induction *v;
3387 struct iv_class *bl;
3388 rtx insn;
3389 rtx increment, tem;
3390 rtx insert_before, seq;
3391 rtx loop_end = loop->end;
3392 unsigned HOST_WIDE_INT n_iterations = LOOP_INFO (loop)->n_iterations;
3394 bl = reg_biv_class[REGNO (v->src_reg)];
3396 /* The final value for givs which depend on reversed bivs must be calculated
3397 differently than for ordinary givs. In this case, there is already an
3398 insn after the loop which sets this giv's final value (if necessary),
3399 and there are no other loop exits, so we can return any value. */
3400 if (bl->reversed)
3402 if (loop_dump_stream)
3403 fprintf (loop_dump_stream,
3404 "Final giv value for %d, depends on reversed biv\n",
3405 REGNO (v->dest_reg));
3406 return const0_rtx;
3409 /* Try to calculate the final value as a function of the biv it depends
3410 upon. The only exit from the loop must be the fall through at the bottom
3411 (otherwise it may not have its final value when the loop exits). */
3413 /* ??? Can calculate the final giv value by subtracting off the
3414 extra biv increments times the giv's mult_val. The loop must have
3415 only one exit for this to work, but the loop iterations does not need
3416 to be known. */
3418 if (n_iterations != 0
3419 && ! loop->exit_count)
3421 /* ?? It is tempting to use the biv's value here since these insns will
3422 be put after the loop, and hence the biv will have its final value
3423 then. However, this fails if the biv is subsequently eliminated.
3424 Perhaps determine whether biv's are eliminable before trying to
3425 determine whether giv's are replaceable so that we can use the
3426 biv value here if it is not eliminable. */
3428 /* We are emitting code after the end of the loop, so we must make
3429 sure that bl->initial_value is still valid then. It will still
3430 be valid if it is invariant. */
3432 increment = biv_total_increment (bl);
3434 if (increment && loop_invariant_p (loop, increment)
3435 && loop_invariant_p (loop, bl->initial_value))
3437 /* Can calculate the loop exit value of its biv as
3438 (n_iterations * increment) + initial_value */
3440 /* The loop exit value of the giv is then
3441 (final_biv_value - extra increments) * mult_val + add_val.
3442 The extra increments are any increments to the biv which
3443 occur in the loop after the giv's value is calculated.
3444 We must search from the insn that sets the giv to the end
3445 of the loop to calculate this value. */
3447 insert_before = NEXT_INSN (loop_end);
3449 /* Put the final biv value in tem. */
3450 tem = gen_reg_rtx (bl->biv->mode);
3451 record_base_value (REGNO (tem), bl->biv->add_val, 0);
3452 emit_iv_add_mult (increment, GEN_INT (n_iterations),
3453 bl->initial_value, tem, insert_before);
3455 /* Subtract off extra increments as we find them. */
3456 for (insn = NEXT_INSN (v->insn); insn != loop_end;
3457 insn = NEXT_INSN (insn))
3459 struct induction *biv;
3461 for (biv = bl->biv; biv; biv = biv->next_iv)
3462 if (biv->insn == insn)
3464 start_sequence ();
3465 tem = expand_binop (GET_MODE (tem), sub_optab, tem,
3466 biv->add_val, NULL_RTX, 0,
3467 OPTAB_LIB_WIDEN);
3468 seq = gen_sequence ();
3469 end_sequence ();
3470 emit_insn_before (seq, insert_before);
3474 /* Now calculate the giv's final value. */
3475 emit_iv_add_mult (tem, v->mult_val, v->add_val, tem,
3476 insert_before);
3478 if (loop_dump_stream)
3479 fprintf (loop_dump_stream,
3480 "Final giv value for %d, calc from biv's value.\n",
3481 REGNO (v->dest_reg));
3483 return tem;
3487 /* Replaceable giv's should never reach here. */
3488 if (v->replaceable)
3489 abort ();
3491 /* Check to see if the biv is dead at all loop exits. */
3492 if (reg_dead_after_loop (loop, v->dest_reg))
3494 if (loop_dump_stream)
3495 fprintf (loop_dump_stream,
3496 "Final giv value for %d, giv dead after loop exit.\n",
3497 REGNO (v->dest_reg));
3499 return const0_rtx;
3502 return 0;
3506 /* Look back before LOOP->START for then insn that sets REG and return
3507 the equivalent constant if there is a REG_EQUAL note otherwise just
3508 the SET_SRC of REG. */
3510 static rtx
3511 loop_find_equiv_value (loop, reg)
3512 const struct loop *loop;
3513 rtx reg;
3515 rtx loop_start = loop->start;
3516 rtx insn, set;
3517 rtx ret;
3519 ret = reg;
3520 for (insn = PREV_INSN (loop_start); insn ; insn = PREV_INSN (insn))
3522 if (GET_CODE (insn) == CODE_LABEL)
3523 break;
3525 else if (INSN_P (insn) && reg_set_p (reg, insn))
3527 /* We found the last insn before the loop that sets the register.
3528 If it sets the entire register, and has a REG_EQUAL note,
3529 then use the value of the REG_EQUAL note. */
3530 if ((set = single_set (insn))
3531 && (SET_DEST (set) == reg))
3533 rtx note = find_reg_note (insn, REG_EQUAL, NULL_RTX);
3535 /* Only use the REG_EQUAL note if it is a constant.
3536 Other things, divide in particular, will cause
3537 problems later if we use them. */
3538 if (note && GET_CODE (XEXP (note, 0)) != EXPR_LIST
3539 && CONSTANT_P (XEXP (note, 0)))
3540 ret = XEXP (note, 0);
3541 else
3542 ret = SET_SRC (set);
3544 /* We cannot do this if it changes between the
3545 assignment and loop start though. */
3546 if (modified_between_p (ret, insn, loop_start))
3547 ret = reg;
3549 break;
3552 return ret;
3555 /* Return a simplified rtx for the expression OP - REG.
3557 REG must appear in OP, and OP must be a register or the sum of a register
3558 and a second term.
3560 Thus, the return value must be const0_rtx or the second term.
3562 The caller is responsible for verifying that REG appears in OP and OP has
3563 the proper form. */
3565 static rtx
3566 subtract_reg_term (op, reg)
3567 rtx op, reg;
3569 if (op == reg)
3570 return const0_rtx;
3571 if (GET_CODE (op) == PLUS)
3573 if (XEXP (op, 0) == reg)
3574 return XEXP (op, 1);
3575 else if (XEXP (op, 1) == reg)
3576 return XEXP (op, 0);
3578 /* OP does not contain REG as a term. */
3579 abort ();
3583 /* Find and return register term common to both expressions OP0 and
3584 OP1 or NULL_RTX if no such term exists. Each expression must be a
3585 REG or a PLUS of a REG. */
3587 static rtx
3588 find_common_reg_term (op0, op1)
3589 rtx op0, op1;
3591 if ((GET_CODE (op0) == REG || GET_CODE (op0) == PLUS)
3592 && (GET_CODE (op1) == REG || GET_CODE (op1) == PLUS))
3594 rtx op00;
3595 rtx op01;
3596 rtx op10;
3597 rtx op11;
3599 if (GET_CODE (op0) == PLUS)
3600 op01 = XEXP (op0, 1), op00 = XEXP (op0, 0);
3601 else
3602 op01 = const0_rtx, op00 = op0;
3604 if (GET_CODE (op1) == PLUS)
3605 op11 = XEXP (op1, 1), op10 = XEXP (op1, 0);
3606 else
3607 op11 = const0_rtx, op10 = op1;
3609 /* Find and return common register term if present. */
3610 if (REG_P (op00) && (op00 == op10 || op00 == op11))
3611 return op00;
3612 else if (REG_P (op01) && (op01 == op10 || op01 == op11))
3613 return op01;
3616 /* No common register term found. */
3617 return NULL_RTX;
3620 /* Calculate the number of loop iterations. Returns the exact number of loop
3621 iterations if it can be calculated, otherwise returns zero. */
3623 unsigned HOST_WIDE_INT
3624 loop_iterations (loop)
3625 struct loop *loop;
3627 rtx comparison, comparison_value;
3628 rtx iteration_var, initial_value, increment, final_value;
3629 enum rtx_code comparison_code;
3630 HOST_WIDE_INT abs_inc;
3631 unsigned HOST_WIDE_INT abs_diff;
3632 int off_by_one;
3633 int increment_dir;
3634 int unsigned_p, compare_dir, final_larger;
3635 rtx last_loop_insn;
3636 rtx reg_term;
3637 struct loop_info *loop_info = LOOP_INFO (loop);
3639 loop_info->n_iterations = 0;
3640 loop_info->initial_value = 0;
3641 loop_info->initial_equiv_value = 0;
3642 loop_info->comparison_value = 0;
3643 loop_info->final_value = 0;
3644 loop_info->final_equiv_value = 0;
3645 loop_info->increment = 0;
3646 loop_info->iteration_var = 0;
3647 loop_info->unroll_number = 1;
3649 /* We used to use prev_nonnote_insn here, but that fails because it might
3650 accidentally get the branch for a contained loop if the branch for this
3651 loop was deleted. We can only trust branches immediately before the
3652 loop_end. */
3653 last_loop_insn = PREV_INSN (loop->end);
3655 /* ??? We should probably try harder to find the jump insn
3656 at the end of the loop. The following code assumes that
3657 the last loop insn is a jump to the top of the loop. */
3658 if (GET_CODE (last_loop_insn) != JUMP_INSN)
3660 if (loop_dump_stream)
3661 fprintf (loop_dump_stream,
3662 "Loop iterations: No final conditional branch found.\n");
3663 return 0;
3666 /* If there is a more than a single jump to the top of the loop
3667 we cannot (easily) determine the iteration count. */
3668 if (LABEL_NUSES (JUMP_LABEL (last_loop_insn)) > 1)
3670 if (loop_dump_stream)
3671 fprintf (loop_dump_stream,
3672 "Loop iterations: Loop has multiple back edges.\n");
3673 return 0;
3676 /* Find the iteration variable. If the last insn is a conditional
3677 branch, and the insn before tests a register value, make that the
3678 iteration variable. */
3680 comparison = get_condition_for_loop (loop, last_loop_insn);
3681 if (comparison == 0)
3683 if (loop_dump_stream)
3684 fprintf (loop_dump_stream,
3685 "Loop iterations: No final comparison found.\n");
3686 return 0;
3689 /* ??? Get_condition may switch position of induction variable and
3690 invariant register when it canonicalizes the comparison. */
3692 comparison_code = GET_CODE (comparison);
3693 iteration_var = XEXP (comparison, 0);
3694 comparison_value = XEXP (comparison, 1);
3696 if (GET_CODE (iteration_var) != REG)
3698 if (loop_dump_stream)
3699 fprintf (loop_dump_stream,
3700 "Loop iterations: Comparison not against register.\n");
3701 return 0;
3704 /* The only new registers that are created before loop iterations
3705 are givs made from biv increments or registers created by
3706 load_mems. In the latter case, it is possible that try_copy_prop
3707 will propagate a new pseudo into the old iteration register but
3708 this will be marked by having the REG_USERVAR_P bit set. */
3710 if ((unsigned) REGNO (iteration_var) >= reg_iv_type->num_elements
3711 && ! REG_USERVAR_P (iteration_var))
3712 abort ();
3714 iteration_info (loop, iteration_var, &initial_value, &increment);
3716 if (initial_value == 0)
3717 /* iteration_info already printed a message. */
3718 return 0;
3720 unsigned_p = 0;
3721 off_by_one = 0;
3722 switch (comparison_code)
3724 case LEU:
3725 unsigned_p = 1;
3726 case LE:
3727 compare_dir = 1;
3728 off_by_one = 1;
3729 break;
3730 case GEU:
3731 unsigned_p = 1;
3732 case GE:
3733 compare_dir = -1;
3734 off_by_one = -1;
3735 break;
3736 case EQ:
3737 /* Cannot determine loop iterations with this case. */
3738 compare_dir = 0;
3739 break;
3740 case LTU:
3741 unsigned_p = 1;
3742 case LT:
3743 compare_dir = 1;
3744 break;
3745 case GTU:
3746 unsigned_p = 1;
3747 case GT:
3748 compare_dir = -1;
3749 case NE:
3750 compare_dir = 0;
3751 break;
3752 default:
3753 abort ();
3756 /* If the comparison value is an invariant register, then try to find
3757 its value from the insns before the start of the loop. */
3759 final_value = comparison_value;
3760 if (GET_CODE (comparison_value) == REG
3761 && loop_invariant_p (loop, comparison_value))
3763 final_value = loop_find_equiv_value (loop, comparison_value);
3765 /* If we don't get an invariant final value, we are better
3766 off with the original register. */
3767 if (! loop_invariant_p (loop, final_value))
3768 final_value = comparison_value;
3771 /* Calculate the approximate final value of the induction variable
3772 (on the last successful iteration). The exact final value
3773 depends on the branch operator, and increment sign. It will be
3774 wrong if the iteration variable is not incremented by one each
3775 time through the loop and (comparison_value + off_by_one -
3776 initial_value) % increment != 0.
3777 ??? Note that the final_value may overflow and thus final_larger
3778 will be bogus. A potentially infinite loop will be classified
3779 as immediate, e.g. for (i = 0x7ffffff0; i <= 0x7fffffff; i++) */
3780 if (off_by_one)
3781 final_value = plus_constant (final_value, off_by_one);
3783 /* Save the calculated values describing this loop's bounds, in case
3784 precondition_loop_p will need them later. These values can not be
3785 recalculated inside precondition_loop_p because strength reduction
3786 optimizations may obscure the loop's structure.
3788 These values are only required by precondition_loop_p and insert_bct
3789 whenever the number of iterations cannot be computed at compile time.
3790 Only the difference between final_value and initial_value is
3791 important. Note that final_value is only approximate. */
3792 loop_info->initial_value = initial_value;
3793 loop_info->comparison_value = comparison_value;
3794 loop_info->final_value = plus_constant (comparison_value, off_by_one);
3795 loop_info->increment = increment;
3796 loop_info->iteration_var = iteration_var;
3797 loop_info->comparison_code = comparison_code;
3799 /* Try to determine the iteration count for loops such
3800 as (for i = init; i < init + const; i++). When running the
3801 loop optimization twice, the first pass often converts simple
3802 loops into this form. */
3804 if (REG_P (initial_value))
3806 rtx reg1;
3807 rtx reg2;
3808 rtx const2;
3810 reg1 = initial_value;
3811 if (GET_CODE (final_value) == PLUS)
3812 reg2 = XEXP (final_value, 0), const2 = XEXP (final_value, 1);
3813 else
3814 reg2 = final_value, const2 = const0_rtx;
3816 /* Check for initial_value = reg1, final_value = reg2 + const2,
3817 where reg1 != reg2. */
3818 if (REG_P (reg2) && reg2 != reg1)
3820 rtx temp;
3822 /* Find what reg1 is equivalent to. Hopefully it will
3823 either be reg2 or reg2 plus a constant. */
3824 temp = loop_find_equiv_value (loop, reg1);
3826 if (find_common_reg_term (temp, reg2))
3827 initial_value = temp;
3828 else
3830 /* Find what reg2 is equivalent to. Hopefully it will
3831 either be reg1 or reg1 plus a constant. Let's ignore
3832 the latter case for now since it is not so common. */
3833 temp = loop_find_equiv_value (loop, reg2);
3835 if (temp == loop_info->iteration_var)
3836 temp = initial_value;
3837 if (temp == reg1)
3838 final_value = (const2 == const0_rtx)
3839 ? reg1 : gen_rtx_PLUS (GET_MODE (reg1), reg1, const2);
3842 else if (loop->vtop && GET_CODE (reg2) == CONST_INT)
3844 rtx temp;
3846 /* When running the loop optimizer twice, check_dbra_loop
3847 further obfuscates reversible loops of the form:
3848 for (i = init; i < init + const; i++). We often end up with
3849 final_value = 0, initial_value = temp, temp = temp2 - init,
3850 where temp2 = init + const. If the loop has a vtop we
3851 can replace initial_value with const. */
3853 temp = loop_find_equiv_value (loop, reg1);
3855 if (GET_CODE (temp) == MINUS && REG_P (XEXP (temp, 0)))
3857 rtx temp2 = loop_find_equiv_value (loop, XEXP (temp, 0));
3859 if (GET_CODE (temp2) == PLUS
3860 && XEXP (temp2, 0) == XEXP (temp, 1))
3861 initial_value = XEXP (temp2, 1);
3866 /* If have initial_value = reg + const1 and final_value = reg +
3867 const2, then replace initial_value with const1 and final_value
3868 with const2. This should be safe since we are protected by the
3869 initial comparison before entering the loop if we have a vtop.
3870 For example, a + b < a + c is not equivalent to b < c for all a
3871 when using modulo arithmetic.
3873 ??? Without a vtop we could still perform the optimization if we check
3874 the initial and final values carefully. */
3875 if (loop->vtop
3876 && (reg_term = find_common_reg_term (initial_value, final_value)))
3878 initial_value = subtract_reg_term (initial_value, reg_term);
3879 final_value = subtract_reg_term (final_value, reg_term);
3882 loop_info->initial_equiv_value = initial_value;
3883 loop_info->final_equiv_value = final_value;
3885 /* For EQ comparison loops, we don't have a valid final value.
3886 Check this now so that we won't leave an invalid value if we
3887 return early for any other reason. */
3888 if (comparison_code == EQ)
3889 loop_info->final_equiv_value = loop_info->final_value = 0;
3891 if (increment == 0)
3893 if (loop_dump_stream)
3894 fprintf (loop_dump_stream,
3895 "Loop iterations: Increment value can't be calculated.\n");
3896 return 0;
3899 if (GET_CODE (increment) != CONST_INT)
3901 /* If we have a REG, check to see if REG holds a constant value. */
3902 /* ??? Other RTL, such as (neg (reg)) is possible here, but it isn't
3903 clear if it is worthwhile to try to handle such RTL. */
3904 if (GET_CODE (increment) == REG || GET_CODE (increment) == SUBREG)
3905 increment = loop_find_equiv_value (loop, increment);
3907 if (GET_CODE (increment) != CONST_INT)
3909 if (loop_dump_stream)
3911 fprintf (loop_dump_stream,
3912 "Loop iterations: Increment value not constant ");
3913 print_rtl (loop_dump_stream, increment);
3914 fprintf (loop_dump_stream, ".\n");
3916 return 0;
3918 loop_info->increment = increment;
3921 if (GET_CODE (initial_value) != CONST_INT)
3923 if (loop_dump_stream)
3925 fprintf (loop_dump_stream,
3926 "Loop iterations: Initial value not constant ");
3927 print_rtl (loop_dump_stream, initial_value);
3928 fprintf (loop_dump_stream, ".\n");
3930 return 0;
3932 else if (comparison_code == EQ)
3934 if (loop_dump_stream)
3935 fprintf (loop_dump_stream,
3936 "Loop iterations: EQ comparison loop.\n");
3937 return 0;
3939 else if (GET_CODE (final_value) != CONST_INT)
3941 if (loop_dump_stream)
3943 fprintf (loop_dump_stream,
3944 "Loop iterations: Final value not constant ");
3945 print_rtl (loop_dump_stream, final_value);
3946 fprintf (loop_dump_stream, ".\n");
3948 return 0;
3951 /* Final_larger is 1 if final larger, 0 if they are equal, otherwise -1. */
3952 if (unsigned_p)
3953 final_larger
3954 = ((unsigned HOST_WIDE_INT) INTVAL (final_value)
3955 > (unsigned HOST_WIDE_INT) INTVAL (initial_value))
3956 - ((unsigned HOST_WIDE_INT) INTVAL (final_value)
3957 < (unsigned HOST_WIDE_INT) INTVAL (initial_value));
3958 else
3959 final_larger = (INTVAL (final_value) > INTVAL (initial_value))
3960 - (INTVAL (final_value) < INTVAL (initial_value));
3962 if (INTVAL (increment) > 0)
3963 increment_dir = 1;
3964 else if (INTVAL (increment) == 0)
3965 increment_dir = 0;
3966 else
3967 increment_dir = -1;
3969 /* There are 27 different cases: compare_dir = -1, 0, 1;
3970 final_larger = -1, 0, 1; increment_dir = -1, 0, 1.
3971 There are 4 normal cases, 4 reverse cases (where the iteration variable
3972 will overflow before the loop exits), 4 infinite loop cases, and 15
3973 immediate exit (0 or 1 iteration depending on loop type) cases.
3974 Only try to optimize the normal cases. */
3976 /* (compare_dir/final_larger/increment_dir)
3977 Normal cases: (0/-1/-1), (0/1/1), (-1/-1/-1), (1/1/1)
3978 Reverse cases: (0/-1/1), (0/1/-1), (-1/-1/1), (1/1/-1)
3979 Infinite loops: (0/-1/0), (0/1/0), (-1/-1/0), (1/1/0)
3980 Immediate exit: (0/0/X), (-1/0/X), (-1/1/X), (1/0/X), (1/-1/X) */
3982 /* ?? If the meaning of reverse loops (where the iteration variable
3983 will overflow before the loop exits) is undefined, then could
3984 eliminate all of these special checks, and just always assume
3985 the loops are normal/immediate/infinite. Note that this means
3986 the sign of increment_dir does not have to be known. Also,
3987 since it does not really hurt if immediate exit loops or infinite loops
3988 are optimized, then that case could be ignored also, and hence all
3989 loops can be optimized.
3991 According to ANSI Spec, the reverse loop case result is undefined,
3992 because the action on overflow is undefined.
3994 See also the special test for NE loops below. */
3996 if (final_larger == increment_dir && final_larger != 0
3997 && (final_larger == compare_dir || compare_dir == 0))
3998 /* Normal case. */
4000 else
4002 if (loop_dump_stream)
4003 fprintf (loop_dump_stream,
4004 "Loop iterations: Not normal loop.\n");
4005 return 0;
4008 /* Calculate the number of iterations, final_value is only an approximation,
4009 so correct for that. Note that abs_diff and n_iterations are
4010 unsigned, because they can be as large as 2^n - 1. */
4012 abs_inc = INTVAL (increment);
4013 if (abs_inc > 0)
4014 abs_diff = INTVAL (final_value) - INTVAL (initial_value);
4015 else if (abs_inc < 0)
4017 abs_diff = INTVAL (initial_value) - INTVAL (final_value);
4018 abs_inc = -abs_inc;
4020 else
4021 abort ();
4023 /* For NE tests, make sure that the iteration variable won't miss
4024 the final value. If abs_diff mod abs_incr is not zero, then the
4025 iteration variable will overflow before the loop exits, and we
4026 can not calculate the number of iterations. */
4027 if (compare_dir == 0 && (abs_diff % abs_inc) != 0)
4028 return 0;
4030 /* Note that the number of iterations could be calculated using
4031 (abs_diff + abs_inc - 1) / abs_inc, provided care was taken to
4032 handle potential overflow of the summation. */
4033 loop_info->n_iterations = abs_diff / abs_inc + ((abs_diff % abs_inc) != 0);
4034 return loop_info->n_iterations;
4038 /* Replace uses of split bivs with their split pseudo register. This is
4039 for original instructions which remain after loop unrolling without
4040 copying. */
4042 static rtx
4043 remap_split_bivs (x)
4044 rtx x;
4046 register enum rtx_code code;
4047 register int i;
4048 register const char *fmt;
4050 if (x == 0)
4051 return x;
4053 code = GET_CODE (x);
4054 switch (code)
4056 case SCRATCH:
4057 case PC:
4058 case CC0:
4059 case CONST_INT:
4060 case CONST_DOUBLE:
4061 case CONST:
4062 case SYMBOL_REF:
4063 case LABEL_REF:
4064 return x;
4066 case REG:
4067 #if 0
4068 /* If non-reduced/final-value givs were split, then this would also
4069 have to remap those givs also. */
4070 #endif
4071 if (REGNO (x) < max_reg_before_loop
4072 && REG_IV_TYPE (REGNO (x)) == BASIC_INDUCT)
4073 return reg_biv_class[REGNO (x)]->biv->src_reg;
4074 break;
4076 default:
4077 break;
4080 fmt = GET_RTX_FORMAT (code);
4081 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4083 if (fmt[i] == 'e')
4084 XEXP (x, i) = remap_split_bivs (XEXP (x, i));
4085 else if (fmt[i] == 'E')
4087 register int j;
4088 for (j = 0; j < XVECLEN (x, i); j++)
4089 XVECEXP (x, i, j) = remap_split_bivs (XVECEXP (x, i, j));
4092 return x;
4095 /* If FIRST_UID is a set of REGNO, and FIRST_UID dominates LAST_UID (e.g.
4096 FIST_UID is always executed if LAST_UID is), then return 1. Otherwise
4097 return 0. COPY_START is where we can start looking for the insns
4098 FIRST_UID and LAST_UID. COPY_END is where we stop looking for these
4099 insns.
4101 If there is no JUMP_INSN between LOOP_START and FIRST_UID, then FIRST_UID
4102 must dominate LAST_UID.
4104 If there is a CODE_LABEL between FIRST_UID and LAST_UID, then FIRST_UID
4105 may not dominate LAST_UID.
4107 If there is no CODE_LABEL between FIRST_UID and LAST_UID, then FIRST_UID
4108 must dominate LAST_UID. */
4111 set_dominates_use (regno, first_uid, last_uid, copy_start, copy_end)
4112 int regno;
4113 int first_uid;
4114 int last_uid;
4115 rtx copy_start;
4116 rtx copy_end;
4118 int passed_jump = 0;
4119 rtx p = NEXT_INSN (copy_start);
4121 while (INSN_UID (p) != first_uid)
4123 if (GET_CODE (p) == JUMP_INSN)
4124 passed_jump= 1;
4125 /* Could not find FIRST_UID. */
4126 if (p == copy_end)
4127 return 0;
4128 p = NEXT_INSN (p);
4131 /* Verify that FIRST_UID is an insn that entirely sets REGNO. */
4132 if (! INSN_P (p) || ! dead_or_set_regno_p (p, regno))
4133 return 0;
4135 /* FIRST_UID is always executed. */
4136 if (passed_jump == 0)
4137 return 1;
4139 while (INSN_UID (p) != last_uid)
4141 /* If we see a CODE_LABEL between FIRST_UID and LAST_UID, then we
4142 can not be sure that FIRST_UID dominates LAST_UID. */
4143 if (GET_CODE (p) == CODE_LABEL)
4144 return 0;
4145 /* Could not find LAST_UID, but we reached the end of the loop, so
4146 it must be safe. */
4147 else if (p == copy_end)
4148 return 1;
4149 p = NEXT_INSN (p);
4152 /* FIRST_UID is always executed if LAST_UID is executed. */
4153 return 1;