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)
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
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
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
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
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)
98 char *p = (char *) buffer;
99 char *q = ((char *) buffer) + len - 1;
100 int iterations = (len + 1) >> 1;
102 for (p; p < q; p++, q--;)
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
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
};
154 #include "insn-config.h"
155 #include "integrate.h"
159 #include "function.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
169 #ifndef MAX_UNROLLED_INSNS
170 #define MAX_UNROLLED_INSNS 100
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
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
,
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
228 This function is intended to be called from within `strength_reduce'
232 unroll_loop (loop
, insn_count
, end_insert_before
, strength_reduce_p
)
235 rtx end_insert_before
;
236 int strength_reduce_p
;
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
;
246 struct inline_remap
*map
;
247 char *local_label
= NULL
;
249 unsigned int max_local_regnum
;
250 unsigned int maxregnum
;
254 int splitting_not_safe
= 0;
255 enum unroll_types unroll_type
= UNROLL_NAIVE
;
256 int loop_preconditioned
= 0;
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
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
269 if (insn_count
> MAX_UNROLLED_INSNS
/ 2)
271 if (loop_dump_stream
)
272 fprintf (loop_dump_stream
, "Unrolling failure: Loop too big.\n");
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;
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
)
296 else if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_BLOCK_END
)
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");
314 if (block_begins
!= block_ends
)
316 if (loop_dump_stream
)
317 fprintf (loop_dump_stream
,
318 "Unrolling failure: Unbalanced block notes.\n");
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
)
366 rtx prev
= PREV_INSN (last_loop_insn
);
368 delete_insn (last_loop_insn
);
370 /* The immediately preceding insn may be a compare which must be
372 if (sets_cc0_p (prev
))
377 /* Remove the loop notes since this is no longer a loop. */
379 delete_insn (loop
->vtop
);
381 delete_insn (loop
->cont
);
383 delete_insn (loop_start
);
385 delete_insn (loop_end
);
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)
411 temp
= temp
/ factors
[i
].factor
;
414 /* Start with the larger factors first so that we generally
415 get lots of unrolling. */
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
;
431 /* If we couldn't find any factors, then unroll as in the normal
433 if (unroll_number
== 1)
435 if (loop_dump_stream
)
436 fprintf (loop_dump_stream
,
437 "Loop unrolling: No factors found.\n");
440 unroll_type
= UNROLL_MODULO
;
444 /* Default case, calculate number of times to unroll loop based on its
446 if (unroll_type
== UNROLL_NAIVE
)
448 if (8 * insn_count
< MAX_UNROLLED_INSNS
)
450 else if (4 * insn_count
< MAX_UNROLLED_INSNS
)
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
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. */
489 while (GET_CODE (insn
) != CODE_LABEL
&& GET_CODE (insn
) != JUMP_INSN
)
490 insn
= NEXT_INSN (insn
);
491 if (GET_CODE (insn
) == JUMP_INSN
)
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
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
);
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
);
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");
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
;
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
);
562 copy_end
= PREV_INSN (insert_before
);
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");
578 /* Normal case: Must copy the compare and branch instructions at the
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
599 insert_before
= NEXT_INSN (last_loop_insn
);
600 copy_end
= last_loop_insn
;
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");
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 ();
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
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");
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");
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
674 if (loop_dump_stream
)
675 fprintf (loop_dump_stream
,
676 "Unrolling failure: loop start label is gone\n");
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
703 if (loop_dump_stream
)
704 fprintf (loop_dump_stream
,
705 "Unrolling failure: final conditional branch not to loop start\n");
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. */
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
))
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
)),
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
);
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
),
766 else if ((note
= find_reg_note (insn
, REG_LABEL
, NULL_RTX
)))
767 set_label_in_map (map
, CODE_LABEL_NUMBER (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
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));
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
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
)
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. */
821 if (GET_CODE (copy_end
) == JUMP_INSN
&& sets_cc0_p (PREV_INSN (copy_end
)))
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
829 if (copy_start
== loop_start
)
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
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
))
856 if (loop_dump_stream
)
859 fprintf (loop_dump_stream
, "Marked reg %d as local\n", r
);
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
867 for (r
= first_increment_giv
; r
<= last_increment_giv
; r
++)
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
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
,
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
920 if (unroll_number
> 4)
923 /* Save the absolute value of the increment, and also whether or
924 not it is negative. */
926 abs_inc
= INTVAL (increment
);
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
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,
947 /* Now calculate (diff % (unroll * abs (increment))) by using an
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
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
,
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
++)
991 enum rtx_code cmp_code
;
993 /* For negative increments, must invert the constant compared
994 against, except when comparing against zero. */
1002 cmp_const
= unroll_number
- i
;
1011 emit_cmp_and_jump_insns (diff
, GEN_INT (abs_inc
* cmp_const
),
1012 cmp_code
, NULL_RTX
, mode
, 0, 0,
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. */
1030 enum rtx_code cmp_code
;
1034 cmp_const
= abs_inc
- 1;
1039 cmp_const
= abs_inc
* (unroll_number
- 1) + 1;
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 ();
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
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
);
1064 /* The immediately preceding insn may be a compare which we do not
1066 if (sets_cc0_p (PREV_INSN (copy_end
)))
1067 copy_end
= PREV_INSN (copy_end
);
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
)));
1084 for (j
= 0; j
< max_labelno
; j
++)
1086 set_label_in_map (map
, j
, gen_label_rtx ());
1088 for (r
= FIRST_PSEUDO_REGISTER
; r
< max_local_regnum
; 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
1100 if (i
== unroll_number
- 1)
1102 if (GET_CODE (last_loop_insn
) == BARRIER
)
1103 copy_end
= PREV_INSN (PREV_INSN (last_loop_insn
));
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
);
1123 insert_before
= last_loop_insn
;
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
);
1130 copy_end
= PREV_INSN (insert_before
);
1133 /* Set unroll type to MODULO now. */
1134 unroll_type
= UNROLL_MODULO
;
1135 loop_preconditioned
= 1;
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");
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
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
)
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,
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
;
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
;
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
));
1228 for (j
= 0; j
< max_labelno
; j
++)
1230 set_label_in_map (map
, j
, gen_label_rtx ());
1232 for (r
= FIRST_PSEUDO_REGISTER
; r
< max_local_regnum
; 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
,
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
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
);
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
);
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
))
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
1312 emit_label_after (exit_label
, loop_end
);
1315 if (unroll_type
== UNROLL_COMPLETELY
)
1317 /* Remove the loop notes since this is no longer a loop. */
1319 delete_insn (loop
->vtop
);
1321 delete_insn (loop
->cont
);
1323 delete_insn (loop_start
);
1325 delete_insn (loop_end
);
1328 if (map
->const_equiv_varray
)
1329 VARRAY_FREE (map
->const_equiv_varray
);
1332 free (map
->label_map
);
1335 free (map
->insn_map
);
1336 free (splittable_regs
);
1337 free (derived_regs
);
1338 free (splittable_regs_updates
);
1339 free (addr_combined_regs
);
1342 free (map
->reg_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
);
1379 if (loop_dump_stream
)
1381 fputs ("Preconditioning: Success, number of iterations known, ",
1383 fprintf (loop_dump_stream
, HOST_WIDE_INT_PRINT_DEC
,
1384 loop_info
->n_iterations
);
1385 fputs (".\n", loop_dump_stream
);
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");
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");
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");
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");
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");
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");
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");
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");
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
)
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
);
1498 if (loop_dump_stream
)
1499 fprintf (loop_dump_stream
, "Preconditioning: Successful.\n");
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
1512 init_reg_map (map
, maxregnum
)
1513 struct inline_remap
*map
;
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. */
1539 calculate_giv_inc (pattern
, src_insn
, regno
)
1540 rtx pattern
, src_insn
;
1544 rtx increment_total
= 0;
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
1554 src_insn
= PREV_INSN (src_insn
);
1555 pattern
= PATTERN (src_insn
);
1556 if (GET_CODE (SET_SRC (pattern
)) != PLUS
)
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);
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
)
1607 increment
= GEN_INT (INTVAL (increment
) | INTVAL (second_part
));
1608 else if (code
== PLUS
)
1609 increment
= GEN_INT (INTVAL (increment
) + INTVAL (second_part
));
1611 increment
= GEN_INT (INTVAL (increment
) << INTVAL (second_part
));
1614 if (GET_CODE (increment
) != CONST_INT
)
1617 /* The insn loading the constant into a register is no longer needed,
1619 delete_insn (get_last_insn ());
1622 if (increment_total
)
1623 increment_total
= GEN_INT (INTVAL (increment_total
) + INTVAL (increment
));
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. */
1640 src_insn
= PREV_INSN (src_insn
);
1641 pattern
= PATTERN (src_insn
);
1643 delete_insn (get_last_insn ());
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. */
1659 initial_reg_note_copy (notes
, map
)
1661 struct inline_remap
*map
;
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);
1679 XEXP (copy
, 1) = initial_reg_note_copy (XEXP (notes
, 1), map
);
1684 /* Fixup insn references in copied REG_NOTES. */
1687 final_reg_note_copy (notes
, map
)
1689 struct inline_remap
*map
;
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. */
1702 copy_loop_body (copy_start
, copy_end
, map
, exit_label
, last_iteration
,
1703 unroll_type
, start_label
, loop_end
, insert_before
,
1705 rtx copy_start
, copy_end
;
1706 struct inline_remap
*map
;
1709 enum unroll_types unroll_type
;
1710 rtx start_label
, loop_end
, insert_before
, copy_notes_from
;
1713 rtx set
, tem
, copy
= NULL_RTX
;
1714 int dest_reg_was_split
, i
;
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
1727 if (! last_iteration
)
1729 final_label
= gen_label_rtx ();
1730 set_label_in_map (map
, CODE_LABEL_NUMBER (start_label
),
1734 set_label_in_map (map
, CODE_LABEL_NUMBER (start_label
), start_label
);
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
);
1747 insn
= NEXT_INSN (insn
);
1749 map
->orig_asm_operands_vector
= 0;
1751 switch (GET_CODE (insn
))
1754 pattern
= PATTERN (insn
);
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
1788 for (tv
= bl
->giv
; tv
; tv
= tv
->next_iv
)
1789 if (tv
->giv_type
== DEST_ADDR
&& tv
->same
== v
)
1793 /* If this DEST_ADDR giv was not split, then ignore it. */
1794 if (*tv
->location
!= tv
->dest_reg
)
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
;
1819 dest_reg
= XEXP (tv
->dest_reg
, 0);
1821 /* Check for shared address givs, and avoid
1822 incrementing the shared pseudo reg more than
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
,
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
1838 emit_unrolled_add (dest_reg
, XEXP (value
, 0),
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
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);
1882 giv_src_reg
= giv_dest_reg
;
1883 /* Compute the increment value for the giv, if it wasn't
1884 already computed above. */
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
],
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);
1908 /* The splittable_regs value must be a REG or a
1909 CONST_INT, so put the entire value in the giv_src_reg
1911 giv_src_reg
= splittable_regs
[regno
];
1912 giv_inc
= const0_rtx
;
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
;
1937 /* If non-reduced/final-value givs were split, then
1938 this would have to remap those givs also. See
1939 find_splittable_regs. */
1942 splittable_regs
[regno
]
1943 = GEN_INT (INTVAL (giv_inc
)
1944 + INTVAL (splittable_regs
[src_regno
]));
1945 giv_inc
= splittable_regs
[regno
];
1947 /* Now split the induction variable by changing the dest
1948 of this insn to a new register, and setting its
1949 reg_map entry to point to this new register.
1951 If this is the last iteration, and this is the last insn
1952 that will update the iv, then reuse the original dest,
1953 to ensure that the iv will have the proper value when
1954 the loop exits or repeats.
1956 Using splittable_regs_updates here like this is safe,
1957 because it can only be greater than one if all
1958 instructions modifying the iv are always executed in
1961 if (! last_iteration
1962 || (splittable_regs_updates
[regno
]-- != 1))
1964 tem
= gen_reg_rtx (GET_MODE (giv_src_reg
));
1966 map
->reg_map
[regno
] = tem
;
1967 record_base_value (REGNO (tem
),
1968 giv_inc
== const0_rtx
1970 : gen_rtx_PLUS (GET_MODE (giv_src_reg
),
1971 giv_src_reg
, giv_inc
),
1975 map
->reg_map
[regno
] = giv_src_reg
;
1978 /* The constant being added could be too large for an add
1979 immediate, so can't directly emit an insn here. */
1980 emit_unrolled_add (giv_dest_reg
, giv_src_reg
, giv_inc
);
1981 copy
= get_last_insn ();
1982 pattern
= PATTERN (copy
);
1986 pattern
= copy_rtx_and_substitute (pattern
, map
, 0);
1987 copy
= emit_insn (pattern
);
1989 REG_NOTES (copy
) = initial_reg_note_copy (REG_NOTES (insn
), map
);
1992 /* If this insn is setting CC0, it may need to look at
1993 the insn that uses CC0 to see what type of insn it is.
1994 In that case, the call to recog via validate_change will
1995 fail. So don't substitute constants here. Instead,
1996 do it when we emit the following insn.
1998 For example, see the pyr.md file. That machine has signed and
1999 unsigned compares. The compare patterns must check the
2000 following branch insn to see which what kind of compare to
2003 If the previous insn set CC0, substitute constants on it as
2005 if (sets_cc0_p (PATTERN (copy
)) != 0)
2010 try_constants (cc0_insn
, map
);
2012 try_constants (copy
, map
);
2015 try_constants (copy
, map
);
2018 /* Make split induction variable constants `permanent' since we
2019 know there are no backward branches across iteration variable
2020 settings which would invalidate this. */
2021 if (dest_reg_was_split
)
2023 int regno
= REGNO (SET_DEST (set
));
2025 if ((size_t) regno
< VARRAY_SIZE (map
->const_equiv_varray
)
2026 && (VARRAY_CONST_EQUIV (map
->const_equiv_varray
, regno
).age
2028 VARRAY_CONST_EQUIV (map
->const_equiv_varray
, regno
).age
= -1;
2033 pattern
= copy_rtx_and_substitute (PATTERN (insn
), map
, 0);
2034 copy
= emit_jump_insn (pattern
);
2035 REG_NOTES (copy
) = initial_reg_note_copy (REG_NOTES (insn
), map
);
2037 if (JUMP_LABEL (insn
) == start_label
&& insn
== copy_end
2038 && ! last_iteration
)
2040 /* Update JUMP_LABEL correctly to make invert_jump working. */
2041 JUMP_LABEL (copy
) = get_label_from_map (map
,
2043 (JUMP_LABEL (insn
)));
2044 /* This is a branch to the beginning of the loop; this is the
2045 last insn being copied; and this is not the last iteration.
2046 In this case, we want to change the original fall through
2047 case to be a branch past the end of the loop, and the
2048 original jump label case to fall_through. */
2050 if (!invert_jump (copy
, exit_label
, 0))
2053 rtx lab
= gen_label_rtx ();
2054 /* Can't do it by reversing the jump (probably because we
2055 couldn't reverse the conditions), so emit a new
2056 jump_insn after COPY, and redirect the jump around
2058 jmp
= emit_jump_insn_after (gen_jump (exit_label
), copy
);
2059 jmp
= emit_barrier_after (jmp
);
2060 emit_label_after (lab
, jmp
);
2061 LABEL_NUSES (lab
) = 0;
2062 if (!redirect_jump (copy
, lab
, 0))
2069 try_constants (cc0_insn
, map
);
2072 try_constants (copy
, map
);
2074 /* Set the jump label of COPY correctly to avoid problems with
2075 later passes of unroll_loop, if INSN had jump label set. */
2076 if (JUMP_LABEL (insn
))
2080 /* Can't use the label_map for every insn, since this may be
2081 the backward branch, and hence the label was not mapped. */
2082 if ((set
= single_set (copy
)))
2084 tem
= SET_SRC (set
);
2085 if (GET_CODE (tem
) == LABEL_REF
)
2086 label
= XEXP (tem
, 0);
2087 else if (GET_CODE (tem
) == IF_THEN_ELSE
)
2089 if (XEXP (tem
, 1) != pc_rtx
)
2090 label
= XEXP (XEXP (tem
, 1), 0);
2092 label
= XEXP (XEXP (tem
, 2), 0);
2096 if (label
&& GET_CODE (label
) == CODE_LABEL
)
2097 JUMP_LABEL (copy
) = label
;
2100 /* An unrecognizable jump insn, probably the entry jump
2101 for a switch statement. This label must have been mapped,
2102 so just use the label_map to get the new jump label. */
2104 = get_label_from_map (map
,
2105 CODE_LABEL_NUMBER (JUMP_LABEL (insn
)));
2108 /* If this is a non-local jump, then must increase the label
2109 use count so that the label will not be deleted when the
2110 original jump is deleted. */
2111 LABEL_NUSES (JUMP_LABEL (copy
))++;
2113 else if (GET_CODE (PATTERN (copy
)) == ADDR_VEC
2114 || GET_CODE (PATTERN (copy
)) == ADDR_DIFF_VEC
)
2116 rtx pat
= PATTERN (copy
);
2117 int diff_vec_p
= GET_CODE (pat
) == ADDR_DIFF_VEC
;
2118 int len
= XVECLEN (pat
, diff_vec_p
);
2121 for (i
= 0; i
< len
; i
++)
2122 LABEL_NUSES (XEXP (XVECEXP (pat
, diff_vec_p
, i
), 0))++;
2125 /* If this used to be a conditional jump insn but whose branch
2126 direction is now known, we must do something special. */
2127 if (any_condjump_p (insn
) && onlyjump_p (insn
) && map
->last_pc_value
)
2130 /* If the previous insn set cc0 for us, delete it. */
2131 if (sets_cc0_p (PREV_INSN (copy
)))
2132 delete_insn (PREV_INSN (copy
));
2135 /* If this is now a no-op, delete it. */
2136 if (map
->last_pc_value
== pc_rtx
)
2138 /* Don't let delete_insn delete the label referenced here,
2139 because we might possibly need it later for some other
2140 instruction in the loop. */
2141 if (JUMP_LABEL (copy
))
2142 LABEL_NUSES (JUMP_LABEL (copy
))++;
2144 if (JUMP_LABEL (copy
))
2145 LABEL_NUSES (JUMP_LABEL (copy
))--;
2149 /* Otherwise, this is unconditional jump so we must put a
2150 BARRIER after it. We could do some dead code elimination
2151 here, but jump.c will do it just as well. */
2157 pattern
= copy_rtx_and_substitute (PATTERN (insn
), map
, 0);
2158 copy
= emit_call_insn (pattern
);
2159 REG_NOTES (copy
) = initial_reg_note_copy (REG_NOTES (insn
), map
);
2161 /* Because the USAGE information potentially contains objects other
2162 than hard registers, we need to copy it. */
2163 CALL_INSN_FUNCTION_USAGE (copy
)
2164 = copy_rtx_and_substitute (CALL_INSN_FUNCTION_USAGE (insn
),
2169 try_constants (cc0_insn
, map
);
2172 try_constants (copy
, map
);
2174 /* Be lazy and assume CALL_INSNs clobber all hard registers. */
2175 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
2176 VARRAY_CONST_EQUIV (map
->const_equiv_varray
, i
).rtx
= 0;
2180 /* If this is the loop start label, then we don't need to emit a
2181 copy of this label since no one will use it. */
2183 if (insn
!= start_label
)
2185 copy
= emit_label (get_label_from_map (map
,
2186 CODE_LABEL_NUMBER (insn
)));
2192 copy
= emit_barrier ();
2196 /* VTOP and CONT notes are valid only before the loop exit test.
2197 If placed anywhere else, loop may generate bad code. */
2198 /* BASIC_BLOCK notes exist to stabilize basic block structures with
2199 the associated rtl. We do not want to share the structure in
2202 if (NOTE_LINE_NUMBER (insn
) != NOTE_INSN_DELETED
2203 && NOTE_LINE_NUMBER (insn
) != NOTE_INSN_DELETED_LABEL
2204 && NOTE_LINE_NUMBER (insn
) != NOTE_INSN_BASIC_BLOCK
2205 && ((NOTE_LINE_NUMBER (insn
) != NOTE_INSN_LOOP_VTOP
2206 && NOTE_LINE_NUMBER (insn
) != NOTE_INSN_LOOP_CONT
)
2207 || (last_iteration
&& unroll_type
!= UNROLL_COMPLETELY
)))
2208 copy
= emit_note (NOTE_SOURCE_FILE (insn
),
2209 NOTE_LINE_NUMBER (insn
));
2218 map
->insn_map
[INSN_UID (insn
)] = copy
;
2220 while (insn
!= copy_end
);
2222 /* Now finish coping the REG_NOTES. */
2226 insn
= NEXT_INSN (insn
);
2227 if ((GET_CODE (insn
) == INSN
|| GET_CODE (insn
) == JUMP_INSN
2228 || GET_CODE (insn
) == CALL_INSN
)
2229 && map
->insn_map
[INSN_UID (insn
)])
2230 final_reg_note_copy (REG_NOTES (map
->insn_map
[INSN_UID (insn
)]), map
);
2232 while (insn
!= copy_end
);
2234 /* There may be notes between copy_notes_from and loop_end. Emit a copy of
2235 each of these notes here, since there may be some important ones, such as
2236 NOTE_INSN_BLOCK_END notes, in this group. We don't do this on the last
2237 iteration, because the original notes won't be deleted.
2239 We can't use insert_before here, because when from preconditioning,
2240 insert_before points before the loop. We can't use copy_end, because
2241 there may be insns already inserted after it (which we don't want to
2242 copy) when not from preconditioning code. */
2244 if (! last_iteration
)
2246 for (insn
= copy_notes_from
; insn
!= loop_end
; insn
= NEXT_INSN (insn
))
2248 /* VTOP notes are valid only before the loop exit test.
2249 If placed anywhere else, loop may generate bad code.
2250 There is no need to test for NOTE_INSN_LOOP_CONT notes
2251 here, since COPY_NOTES_FROM will be at most one or two (for cc0)
2252 instructions before the last insn in the loop, and if the
2253 end test is that short, there will be a VTOP note between
2254 the CONT note and the test. */
2255 if (GET_CODE (insn
) == NOTE
2256 && NOTE_LINE_NUMBER (insn
) != NOTE_INSN_DELETED
2257 && NOTE_LINE_NUMBER (insn
) != NOTE_INSN_BASIC_BLOCK
2258 && NOTE_LINE_NUMBER (insn
) != NOTE_INSN_LOOP_VTOP
)
2259 emit_note (NOTE_SOURCE_FILE (insn
), NOTE_LINE_NUMBER (insn
));
2263 if (final_label
&& LABEL_NUSES (final_label
) > 0)
2264 emit_label (final_label
);
2266 tem
= gen_sequence ();
2268 emit_insn_before (tem
, insert_before
);
2271 /* Emit an insn, using the expand_binop to ensure that a valid insn is
2272 emitted. This will correctly handle the case where the increment value
2273 won't fit in the immediate field of a PLUS insns. */
2276 emit_unrolled_add (dest_reg
, src_reg
, increment
)
2277 rtx dest_reg
, src_reg
, increment
;
2281 result
= expand_binop (GET_MODE (dest_reg
), add_optab
, src_reg
, increment
,
2282 dest_reg
, 0, OPTAB_LIB_WIDEN
);
2284 if (dest_reg
!= result
)
2285 emit_move_insn (dest_reg
, result
);
2288 /* Searches the insns between INSN and LOOP->END. Returns 1 if there
2289 is a backward branch in that range that branches to somewhere between
2290 LOOP->START and INSN. Returns 0 otherwise. */
2292 /* ??? This is quadratic algorithm. Could be rewritten to be linear.
2293 In practice, this is not a problem, because this function is seldom called,
2294 and uses a negligible amount of CPU time on average. */
2297 back_branch_in_range_p (loop
, insn
)
2298 const struct loop
*loop
;
2301 rtx p
, q
, target_insn
;
2302 rtx loop_start
= loop
->start
;
2303 rtx loop_end
= loop
->end
;
2304 rtx orig_loop_end
= loop
->end
;
2306 /* Stop before we get to the backward branch at the end of the loop. */
2307 loop_end
= prev_nonnote_insn (loop_end
);
2308 if (GET_CODE (loop_end
) == BARRIER
)
2309 loop_end
= PREV_INSN (loop_end
);
2311 /* Check in case insn has been deleted, search forward for first non
2312 deleted insn following it. */
2313 while (INSN_DELETED_P (insn
))
2314 insn
= NEXT_INSN (insn
);
2316 /* Check for the case where insn is the last insn in the loop. Deal
2317 with the case where INSN was a deleted loop test insn, in which case
2318 it will now be the NOTE_LOOP_END. */
2319 if (insn
== loop_end
|| insn
== orig_loop_end
)
2322 for (p
= NEXT_INSN (insn
); p
!= loop_end
; p
= NEXT_INSN (p
))
2324 if (GET_CODE (p
) == JUMP_INSN
)
2326 target_insn
= JUMP_LABEL (p
);
2328 /* Search from loop_start to insn, to see if one of them is
2329 the target_insn. We can't use INSN_LUID comparisons here,
2330 since insn may not have an LUID entry. */
2331 for (q
= loop_start
; q
!= insn
; q
= NEXT_INSN (q
))
2332 if (q
== target_insn
)
2340 /* Try to generate the simplest rtx for the expression
2341 (PLUS (MULT mult1 mult2) add1). This is used to calculate the initial
2345 fold_rtx_mult_add (mult1
, mult2
, add1
, mode
)
2346 rtx mult1
, mult2
, add1
;
2347 enum machine_mode mode
;
2352 /* The modes must all be the same. This should always be true. For now,
2353 check to make sure. */
2354 if ((GET_MODE (mult1
) != mode
&& GET_MODE (mult1
) != VOIDmode
)
2355 || (GET_MODE (mult2
) != mode
&& GET_MODE (mult2
) != VOIDmode
)
2356 || (GET_MODE (add1
) != mode
&& GET_MODE (add1
) != VOIDmode
))
2359 /* Ensure that if at least one of mult1/mult2 are constant, then mult2
2360 will be a constant. */
2361 if (GET_CODE (mult1
) == CONST_INT
)
2368 mult_res
= simplify_binary_operation (MULT
, mode
, mult1
, mult2
);
2370 mult_res
= gen_rtx_MULT (mode
, mult1
, mult2
);
2372 /* Again, put the constant second. */
2373 if (GET_CODE (add1
) == CONST_INT
)
2380 result
= simplify_binary_operation (PLUS
, mode
, add1
, mult_res
);
2382 result
= gen_rtx_PLUS (mode
, add1
, mult_res
);
2387 /* Searches the list of induction struct's for the biv BL, to try to calculate
2388 the total increment value for one iteration of the loop as a constant.
2390 Returns the increment value as an rtx, simplified as much as possible,
2391 if it can be calculated. Otherwise, returns 0. */
2394 biv_total_increment (bl
)
2395 struct iv_class
*bl
;
2397 struct induction
*v
;
2400 /* For increment, must check every instruction that sets it. Each
2401 instruction must be executed only once each time through the loop.
2402 To verify this, we check that the insn is always executed, and that
2403 there are no backward branches after the insn that branch to before it.
2404 Also, the insn must have a mult_val of one (to make sure it really is
2407 result
= const0_rtx
;
2408 for (v
= bl
->biv
; v
; v
= v
->next_iv
)
2410 if (v
->always_computable
&& v
->mult_val
== const1_rtx
2411 && ! v
->maybe_multiple
)
2412 result
= fold_rtx_mult_add (result
, const1_rtx
, v
->add_val
, v
->mode
);
2420 /* Determine the initial value of the iteration variable, and the amount
2421 that it is incremented each loop. Use the tables constructed by
2422 the strength reduction pass to calculate these values.
2424 Initial_value and/or increment are set to zero if their values could not
2428 iteration_info (loop
, iteration_var
, initial_value
, increment
)
2429 const struct loop
*loop ATTRIBUTE_UNUSED
;
2430 rtx iteration_var
, *initial_value
, *increment
;
2432 struct iv_class
*bl
;
2434 /* Clear the result values, in case no answer can be found. */
2438 /* The iteration variable can be either a giv or a biv. Check to see
2439 which it is, and compute the variable's initial value, and increment
2440 value if possible. */
2442 /* If this is a new register, can't handle it since we don't have any
2443 reg_iv_type entry for it. */
2444 if ((unsigned) REGNO (iteration_var
) >= reg_iv_type
->num_elements
)
2446 if (loop_dump_stream
)
2447 fprintf (loop_dump_stream
,
2448 "Loop unrolling: No reg_iv_type entry for iteration var.\n");
2452 /* Reject iteration variables larger than the host wide int size, since they
2453 could result in a number of iterations greater than the range of our
2454 `unsigned HOST_WIDE_INT' variable loop_info->n_iterations. */
2455 else if ((GET_MODE_BITSIZE (GET_MODE (iteration_var
))
2456 > HOST_BITS_PER_WIDE_INT
))
2458 if (loop_dump_stream
)
2459 fprintf (loop_dump_stream
,
2460 "Loop unrolling: Iteration var rejected because mode too large.\n");
2463 else if (GET_MODE_CLASS (GET_MODE (iteration_var
)) != MODE_INT
)
2465 if (loop_dump_stream
)
2466 fprintf (loop_dump_stream
,
2467 "Loop unrolling: Iteration var not an integer.\n");
2470 else if (REG_IV_TYPE (REGNO (iteration_var
)) == BASIC_INDUCT
)
2472 /* When reg_iv_type / reg_iv_info is resized for biv increments
2473 that are turned into givs, reg_biv_class is not resized.
2474 So check here that we don't make an out-of-bounds access. */
2475 if (REGNO (iteration_var
) >= max_reg_before_loop
)
2478 /* Grab initial value, only useful if it is a constant. */
2479 bl
= reg_biv_class
[REGNO (iteration_var
)];
2480 *initial_value
= bl
->initial_value
;
2482 *increment
= biv_total_increment (bl
);
2484 else if (REG_IV_TYPE (REGNO (iteration_var
)) == GENERAL_INDUCT
)
2486 HOST_WIDE_INT offset
= 0;
2487 struct induction
*v
= REG_IV_INFO (REGNO (iteration_var
));
2489 if (REGNO (v
->src_reg
) >= max_reg_before_loop
)
2492 bl
= reg_biv_class
[REGNO (v
->src_reg
)];
2494 /* Increment value is mult_val times the increment value of the biv. */
2496 *increment
= biv_total_increment (bl
);
2499 struct induction
*biv_inc
;
2502 = fold_rtx_mult_add (v
->mult_val
, *increment
, const0_rtx
, v
->mode
);
2503 /* The caller assumes that one full increment has occured at the
2504 first loop test. But that's not true when the biv is incremented
2505 after the giv is set (which is the usual case), e.g.:
2506 i = 6; do {;} while (i++ < 9) .
2507 Therefore, we bias the initial value by subtracting the amount of
2508 the increment that occurs between the giv set and the giv test. */
2509 for (biv_inc
= bl
->biv
; biv_inc
; biv_inc
= biv_inc
->next_iv
)
2511 if (loop_insn_first_p (v
->insn
, biv_inc
->insn
))
2512 offset
-= INTVAL (biv_inc
->add_val
);
2514 offset
*= INTVAL (v
->mult_val
);
2516 if (loop_dump_stream
)
2517 fprintf (loop_dump_stream
,
2518 "Loop unrolling: Giv iterator, initial value bias %ld.\n",
2520 /* Initial value is mult_val times the biv's initial value plus
2521 add_val. Only useful if it is a constant. */
2523 = fold_rtx_mult_add (v
->mult_val
,
2524 plus_constant (bl
->initial_value
, offset
),
2525 v
->add_val
, v
->mode
);
2529 if (loop_dump_stream
)
2530 fprintf (loop_dump_stream
,
2531 "Loop unrolling: Not basic or general induction var.\n");
2537 /* For each biv and giv, determine whether it can be safely split into
2538 a different variable for each unrolled copy of the loop body. If it
2539 is safe to split, then indicate that by saving some useful info
2540 in the splittable_regs array.
2542 If the loop is being completely unrolled, then splittable_regs will hold
2543 the current value of the induction variable while the loop is unrolled.
2544 It must be set to the initial value of the induction variable here.
2545 Otherwise, splittable_regs will hold the difference between the current
2546 value of the induction variable and the value the induction variable had
2547 at the top of the loop. It must be set to the value 0 here.
2549 Returns the total number of instructions that set registers that are
2552 /* ?? If the loop is only unrolled twice, then most of the restrictions to
2553 constant values are unnecessary, since we can easily calculate increment
2554 values in this case even if nothing is constant. The increment value
2555 should not involve a multiply however. */
2557 /* ?? Even if the biv/giv increment values aren't constant, it may still
2558 be beneficial to split the variable if the loop is only unrolled a few
2559 times, since multiplies by small integers (1,2,3,4) are very cheap. */
2562 find_splittable_regs (loop
, unroll_type
, end_insert_before
, unroll_number
)
2563 const struct loop
*loop
;
2564 enum unroll_types unroll_type
;
2565 rtx end_insert_before
;
2568 struct iv_class
*bl
;
2569 struct induction
*v
;
2571 rtx biv_final_value
;
2574 rtx loop_start
= loop
->start
;
2575 rtx loop_end
= loop
->end
;
2577 for (bl
= loop_iv_list
; bl
; bl
= bl
->next
)
2579 /* Biv_total_increment must return a constant value,
2580 otherwise we can not calculate the split values. */
2582 increment
= biv_total_increment (bl
);
2583 if (! increment
|| GET_CODE (increment
) != CONST_INT
)
2586 /* The loop must be unrolled completely, or else have a known number
2587 of iterations and only one exit, or else the biv must be dead
2588 outside the loop, or else the final value must be known. Otherwise,
2589 it is unsafe to split the biv since it may not have the proper
2590 value on loop exit. */
2592 /* loop_number_exit_count is non-zero if the loop has an exit other than
2593 a fall through at the end. */
2596 biv_final_value
= 0;
2597 if (unroll_type
!= UNROLL_COMPLETELY
2598 && (loop
->exit_count
|| unroll_type
== UNROLL_NAIVE
)
2599 && (uid_luid
[REGNO_LAST_UID (bl
->regno
)] >= INSN_LUID (loop_end
)
2601 || INSN_UID (bl
->init_insn
) >= max_uid_for_loop
2602 || (uid_luid
[REGNO_FIRST_UID (bl
->regno
)]
2603 < INSN_LUID (bl
->init_insn
))
2604 || reg_mentioned_p (bl
->biv
->dest_reg
, SET_SRC (bl
->init_set
)))
2605 && ! (biv_final_value
= final_biv_value (loop
, bl
)))
2608 /* If any of the insns setting the BIV don't do so with a simple
2609 PLUS, we don't know how to split it. */
2610 for (v
= bl
->biv
; biv_splittable
&& v
; v
= v
->next_iv
)
2611 if ((tem
= single_set (v
->insn
)) == 0
2612 || GET_CODE (SET_DEST (tem
)) != REG
2613 || REGNO (SET_DEST (tem
)) != bl
->regno
2614 || GET_CODE (SET_SRC (tem
)) != PLUS
)
2617 /* If final value is non-zero, then must emit an instruction which sets
2618 the value of the biv to the proper value. This is done after
2619 handling all of the givs, since some of them may need to use the
2620 biv's value in their initialization code. */
2622 /* This biv is splittable. If completely unrolling the loop, save
2623 the biv's initial value. Otherwise, save the constant zero. */
2625 if (biv_splittable
== 1)
2627 if (unroll_type
== UNROLL_COMPLETELY
)
2629 /* If the initial value of the biv is itself (i.e. it is too
2630 complicated for strength_reduce to compute), or is a hard
2631 register, or it isn't invariant, then we must create a new
2632 pseudo reg to hold the initial value of the biv. */
2634 if (GET_CODE (bl
->initial_value
) == REG
2635 && (REGNO (bl
->initial_value
) == bl
->regno
2636 || REGNO (bl
->initial_value
) < FIRST_PSEUDO_REGISTER
2637 || ! loop_invariant_p (loop
, bl
->initial_value
)))
2639 rtx tem
= gen_reg_rtx (bl
->biv
->mode
);
2641 record_base_value (REGNO (tem
), bl
->biv
->add_val
, 0);
2642 emit_insn_before (gen_move_insn (tem
, bl
->biv
->src_reg
),
2645 if (loop_dump_stream
)
2646 fprintf (loop_dump_stream
, "Biv %d initial value remapped to %d.\n",
2647 bl
->regno
, REGNO (tem
));
2649 splittable_regs
[bl
->regno
] = tem
;
2652 splittable_regs
[bl
->regno
] = bl
->initial_value
;
2655 splittable_regs
[bl
->regno
] = const0_rtx
;
2657 /* Save the number of instructions that modify the biv, so that
2658 we can treat the last one specially. */
2660 splittable_regs_updates
[bl
->regno
] = bl
->biv_count
;
2661 result
+= bl
->biv_count
;
2663 if (loop_dump_stream
)
2664 fprintf (loop_dump_stream
,
2665 "Biv %d safe to split.\n", bl
->regno
);
2668 /* Check every giv that depends on this biv to see whether it is
2669 splittable also. Even if the biv isn't splittable, givs which
2670 depend on it may be splittable if the biv is live outside the
2671 loop, and the givs aren't. */
2673 result
+= find_splittable_givs (loop
, bl
, unroll_type
, increment
,
2676 /* If final value is non-zero, then must emit an instruction which sets
2677 the value of the biv to the proper value. This is done after
2678 handling all of the givs, since some of them may need to use the
2679 biv's value in their initialization code. */
2680 if (biv_final_value
)
2682 /* If the loop has multiple exits, emit the insns before the
2683 loop to ensure that it will always be executed no matter
2684 how the loop exits. Otherwise emit the insn after the loop,
2685 since this is slightly more efficient. */
2686 if (! loop
->exit_count
)
2687 emit_insn_before (gen_move_insn (bl
->biv
->src_reg
,
2692 /* Create a new register to hold the value of the biv, and then
2693 set the biv to its final value before the loop start. The biv
2694 is set to its final value before loop start to ensure that
2695 this insn will always be executed, no matter how the loop
2697 rtx tem
= gen_reg_rtx (bl
->biv
->mode
);
2698 record_base_value (REGNO (tem
), bl
->biv
->add_val
, 0);
2700 emit_insn_before (gen_move_insn (tem
, bl
->biv
->src_reg
),
2702 emit_insn_before (gen_move_insn (bl
->biv
->src_reg
,
2706 if (loop_dump_stream
)
2707 fprintf (loop_dump_stream
, "Biv %d mapped to %d for split.\n",
2708 REGNO (bl
->biv
->src_reg
), REGNO (tem
));
2710 /* Set up the mapping from the original biv register to the new
2712 bl
->biv
->src_reg
= tem
;
2719 /* Return 1 if the first and last unrolled copy of the address giv V is valid
2720 for the instruction that is using it. Do not make any changes to that
2724 verify_addresses (v
, giv_inc
, unroll_number
)
2725 struct induction
*v
;
2730 rtx orig_addr
= *v
->location
;
2731 rtx last_addr
= plus_constant (v
->dest_reg
,
2732 INTVAL (giv_inc
) * (unroll_number
- 1));
2734 /* First check to see if either address would fail. Handle the fact
2735 that we have may have a match_dup. */
2736 if (! validate_replace_rtx (*v
->location
, v
->dest_reg
, v
->insn
)
2737 || ! validate_replace_rtx (*v
->location
, last_addr
, v
->insn
))
2740 /* Now put things back the way they were before. This should always
2742 if (! validate_replace_rtx (*v
->location
, orig_addr
, v
->insn
))
2748 /* For every giv based on the biv BL, check to determine whether it is
2749 splittable. This is a subroutine to find_splittable_regs ().
2751 Return the number of instructions that set splittable registers. */
2754 find_splittable_givs (loop
, bl
, unroll_type
, increment
, unroll_number
)
2755 const struct loop
*loop
;
2756 struct iv_class
*bl
;
2757 enum unroll_types unroll_type
;
2761 struct induction
*v
, *v2
;
2766 /* Scan the list of givs, and set the same_insn field when there are
2767 multiple identical givs in the same insn. */
2768 for (v
= bl
->giv
; v
; v
= v
->next_iv
)
2769 for (v2
= v
->next_iv
; v2
; v2
= v2
->next_iv
)
2770 if (v
->insn
== v2
->insn
&& rtx_equal_p (v
->new_reg
, v2
->new_reg
)
2774 for (v
= bl
->giv
; v
; v
= v
->next_iv
)
2778 /* Only split the giv if it has already been reduced, or if the loop is
2779 being completely unrolled. */
2780 if (unroll_type
!= UNROLL_COMPLETELY
&& v
->ignore
)
2783 /* The giv can be split if the insn that sets the giv is executed once
2784 and only once on every iteration of the loop. */
2785 /* An address giv can always be split. v->insn is just a use not a set,
2786 and hence it does not matter whether it is always executed. All that
2787 matters is that all the biv increments are always executed, and we
2788 won't reach here if they aren't. */
2789 if (v
->giv_type
!= DEST_ADDR
2790 && (! v
->always_computable
2791 || back_branch_in_range_p (loop
, v
->insn
)))
2794 /* The giv increment value must be a constant. */
2795 giv_inc
= fold_rtx_mult_add (v
->mult_val
, increment
, const0_rtx
,
2797 if (! giv_inc
|| GET_CODE (giv_inc
) != CONST_INT
)
2800 /* The loop must be unrolled completely, or else have a known number of
2801 iterations and only one exit, or else the giv must be dead outside
2802 the loop, or else the final value of the giv must be known.
2803 Otherwise, it is not safe to split the giv since it may not have the
2804 proper value on loop exit. */
2806 /* The used outside loop test will fail for DEST_ADDR givs. They are
2807 never used outside the loop anyways, so it is always safe to split a
2811 if (unroll_type
!= UNROLL_COMPLETELY
2812 && (loop
->exit_count
|| unroll_type
== UNROLL_NAIVE
)
2813 && v
->giv_type
!= DEST_ADDR
2814 /* The next part is true if the pseudo is used outside the loop.
2815 We assume that this is true for any pseudo created after loop
2816 starts, because we don't have a reg_n_info entry for them. */
2817 && (REGNO (v
->dest_reg
) >= max_reg_before_loop
2818 || (REGNO_FIRST_UID (REGNO (v
->dest_reg
)) != INSN_UID (v
->insn
)
2819 /* Check for the case where the pseudo is set by a shift/add
2820 sequence, in which case the first insn setting the pseudo
2821 is the first insn of the shift/add sequence. */
2822 && (! (tem
= find_reg_note (v
->insn
, REG_RETVAL
, NULL_RTX
))
2823 || (REGNO_FIRST_UID (REGNO (v
->dest_reg
))
2824 != INSN_UID (XEXP (tem
, 0)))))
2825 /* Line above always fails if INSN was moved by loop opt. */
2826 || (uid_luid
[REGNO_LAST_UID (REGNO (v
->dest_reg
))]
2827 >= INSN_LUID (loop
->end
)))
2828 /* Givs made from biv increments are missed by the above test, so
2829 test explicitly for them. */
2830 && (REGNO (v
->dest_reg
) < first_increment_giv
2831 || REGNO (v
->dest_reg
) > last_increment_giv
)
2832 && ! (final_value
= v
->final_value
))
2836 /* Currently, non-reduced/final-value givs are never split. */
2837 /* Should emit insns after the loop if possible, as the biv final value
2840 /* If the final value is non-zero, and the giv has not been reduced,
2841 then must emit an instruction to set the final value. */
2842 if (final_value
&& !v
->new_reg
)
2844 /* Create a new register to hold the value of the giv, and then set
2845 the giv to its final value before the loop start. The giv is set
2846 to its final value before loop start to ensure that this insn
2847 will always be executed, no matter how we exit. */
2848 tem
= gen_reg_rtx (v
->mode
);
2849 emit_insn_before (gen_move_insn (tem
, v
->dest_reg
), loop_start
);
2850 emit_insn_before (gen_move_insn (v
->dest_reg
, final_value
),
2853 if (loop_dump_stream
)
2854 fprintf (loop_dump_stream
, "Giv %d mapped to %d for split.\n",
2855 REGNO (v
->dest_reg
), REGNO (tem
));
2861 /* This giv is splittable. If completely unrolling the loop, save the
2862 giv's initial value. Otherwise, save the constant zero for it. */
2864 if (unroll_type
== UNROLL_COMPLETELY
)
2866 /* It is not safe to use bl->initial_value here, because it may not
2867 be invariant. It is safe to use the initial value stored in
2868 the splittable_regs array if it is set. In rare cases, it won't
2869 be set, so then we do exactly the same thing as
2870 find_splittable_regs does to get a safe value. */
2871 rtx biv_initial_value
;
2873 if (splittable_regs
[bl
->regno
])
2874 biv_initial_value
= splittable_regs
[bl
->regno
];
2875 else if (GET_CODE (bl
->initial_value
) != REG
2876 || (REGNO (bl
->initial_value
) != bl
->regno
2877 && REGNO (bl
->initial_value
) >= FIRST_PSEUDO_REGISTER
))
2878 biv_initial_value
= bl
->initial_value
;
2881 rtx tem
= gen_reg_rtx (bl
->biv
->mode
);
2883 record_base_value (REGNO (tem
), bl
->biv
->add_val
, 0);
2884 emit_insn_before (gen_move_insn (tem
, bl
->biv
->src_reg
),
2886 biv_initial_value
= tem
;
2888 value
= fold_rtx_mult_add (v
->mult_val
, biv_initial_value
,
2889 v
->add_val
, v
->mode
);
2896 /* If a giv was combined with another giv, then we can only split
2897 this giv if the giv it was combined with was reduced. This
2898 is because the value of v->new_reg is meaningless in this
2900 if (v
->same
&& ! v
->same
->new_reg
)
2902 if (loop_dump_stream
)
2903 fprintf (loop_dump_stream
,
2904 "giv combined with unreduced giv not split.\n");
2907 /* If the giv is an address destination, it could be something other
2908 than a simple register, these have to be treated differently. */
2909 else if (v
->giv_type
== DEST_REG
)
2911 /* If value is not a constant, register, or register plus
2912 constant, then compute its value into a register before
2913 loop start. This prevents invalid rtx sharing, and should
2914 generate better code. We can use bl->initial_value here
2915 instead of splittable_regs[bl->regno] because this code
2916 is going before the loop start. */
2917 if (unroll_type
== UNROLL_COMPLETELY
2918 && GET_CODE (value
) != CONST_INT
2919 && GET_CODE (value
) != REG
2920 && (GET_CODE (value
) != PLUS
2921 || GET_CODE (XEXP (value
, 0)) != REG
2922 || GET_CODE (XEXP (value
, 1)) != CONST_INT
))
2924 rtx tem
= gen_reg_rtx (v
->mode
);
2925 record_base_value (REGNO (tem
), v
->add_val
, 0);
2926 emit_iv_add_mult (bl
->initial_value
, v
->mult_val
,
2927 v
->add_val
, tem
, loop
->start
);
2931 splittable_regs
[REGNO (v
->new_reg
)] = value
;
2932 derived_regs
[REGNO (v
->new_reg
)] = v
->derived_from
!= 0;
2936 /* Splitting address givs is useful since it will often allow us
2937 to eliminate some increment insns for the base giv as
2940 /* If the addr giv is combined with a dest_reg giv, then all
2941 references to that dest reg will be remapped, which is NOT
2942 what we want for split addr regs. We always create a new
2943 register for the split addr giv, just to be safe. */
2945 /* If we have multiple identical address givs within a
2946 single instruction, then use a single pseudo reg for
2947 both. This is necessary in case one is a match_dup
2950 v
->const_adjust
= 0;
2954 v
->dest_reg
= v
->same_insn
->dest_reg
;
2955 if (loop_dump_stream
)
2956 fprintf (loop_dump_stream
,
2957 "Sharing address givs in insn %d\n",
2958 INSN_UID (v
->insn
));
2960 /* If multiple address GIVs have been combined with the
2961 same dest_reg GIV, do not create a new register for
2963 else if (unroll_type
!= UNROLL_COMPLETELY
2964 && v
->giv_type
== DEST_ADDR
2965 && v
->same
&& v
->same
->giv_type
== DEST_ADDR
2966 && v
->same
->unrolled
2967 /* combine_givs_p may return true for some cases
2968 where the add and mult values are not equal.
2969 To share a register here, the values must be
2971 && rtx_equal_p (v
->same
->mult_val
, v
->mult_val
)
2972 && rtx_equal_p (v
->same
->add_val
, v
->add_val
)
2973 /* If the memory references have different modes,
2974 then the address may not be valid and we must
2975 not share registers. */
2976 && verify_addresses (v
, giv_inc
, unroll_number
))
2978 v
->dest_reg
= v
->same
->dest_reg
;
2981 else if (unroll_type
!= UNROLL_COMPLETELY
)
2983 /* If not completely unrolling the loop, then create a new
2984 register to hold the split value of the DEST_ADDR giv.
2985 Emit insn to initialize its value before loop start. */
2987 rtx tem
= gen_reg_rtx (v
->mode
);
2988 struct induction
*same
= v
->same
;
2989 rtx new_reg
= v
->new_reg
;
2990 record_base_value (REGNO (tem
), v
->add_val
, 0);
2992 if (same
&& same
->derived_from
)
2994 /* calculate_giv_inc doesn't work for derived givs.
2995 copy_loop_body works around the problem for the
2996 DEST_REG givs themselves, but it can't handle
2997 DEST_ADDR givs that have been combined with
2998 a derived DEST_REG giv.
2999 So Handle V as if the giv from which V->SAME has
3000 been derived has been combined with V.
3001 recombine_givs only derives givs from givs that
3002 are reduced the ordinary, so we need not worry
3003 about same->derived_from being in turn derived. */
3005 same
= same
->derived_from
;
3006 new_reg
= express_from (same
, v
);
3007 new_reg
= replace_rtx (new_reg
, same
->dest_reg
,
3011 /* If the address giv has a constant in its new_reg value,
3012 then this constant can be pulled out and put in value,
3013 instead of being part of the initialization code. */
3015 if (GET_CODE (new_reg
) == PLUS
3016 && GET_CODE (XEXP (new_reg
, 1)) == CONST_INT
)
3019 = plus_constant (tem
, INTVAL (XEXP (new_reg
, 1)));
3021 /* Only succeed if this will give valid addresses.
3022 Try to validate both the first and the last
3023 address resulting from loop unrolling, if
3024 one fails, then can't do const elim here. */
3025 if (verify_addresses (v
, giv_inc
, unroll_number
))
3027 /* Save the negative of the eliminated const, so
3028 that we can calculate the dest_reg's increment
3030 v
->const_adjust
= - INTVAL (XEXP (new_reg
, 1));
3032 new_reg
= XEXP (new_reg
, 0);
3033 if (loop_dump_stream
)
3034 fprintf (loop_dump_stream
,
3035 "Eliminating constant from giv %d\n",
3044 /* If the address hasn't been checked for validity yet, do so
3045 now, and fail completely if either the first or the last
3046 unrolled copy of the address is not a valid address
3047 for the instruction that uses it. */
3048 if (v
->dest_reg
== tem
3049 && ! verify_addresses (v
, giv_inc
, unroll_number
))
3051 for (v2
= v
->next_iv
; v2
; v2
= v2
->next_iv
)
3052 if (v2
->same_insn
== v
)
3055 if (loop_dump_stream
)
3056 fprintf (loop_dump_stream
,
3057 "Invalid address for giv at insn %d\n",
3058 INSN_UID (v
->insn
));
3062 v
->new_reg
= new_reg
;
3065 /* We set this after the address check, to guarantee that
3066 the register will be initialized. */
3069 /* To initialize the new register, just move the value of
3070 new_reg into it. This is not guaranteed to give a valid
3071 instruction on machines with complex addressing modes.
3072 If we can't recognize it, then delete it and emit insns
3073 to calculate the value from scratch. */
3074 emit_insn_before (gen_rtx_SET (VOIDmode
, tem
,
3075 copy_rtx (v
->new_reg
)),
3077 if (recog_memoized (PREV_INSN (loop
->start
)) < 0)
3081 /* We can't use bl->initial_value to compute the initial
3082 value, because the loop may have been preconditioned.
3083 We must calculate it from NEW_REG. Try using
3084 force_operand instead of emit_iv_add_mult. */
3085 delete_insn (PREV_INSN (loop
->start
));
3088 ret
= force_operand (v
->new_reg
, tem
);
3090 emit_move_insn (tem
, ret
);
3091 sequence
= gen_sequence ();
3093 emit_insn_before (sequence
, loop
->start
);
3095 if (loop_dump_stream
)
3096 fprintf (loop_dump_stream
,
3097 "Invalid init insn, rewritten.\n");
3102 v
->dest_reg
= value
;
3104 /* Check the resulting address for validity, and fail
3105 if the resulting address would be invalid. */
3106 if (! verify_addresses (v
, giv_inc
, unroll_number
))
3108 for (v2
= v
->next_iv
; v2
; v2
= v2
->next_iv
)
3109 if (v2
->same_insn
== v
)
3112 if (loop_dump_stream
)
3113 fprintf (loop_dump_stream
,
3114 "Invalid address for giv at insn %d\n",
3115 INSN_UID (v
->insn
));
3118 if (v
->same
&& v
->same
->derived_from
)
3120 /* Handle V as if the giv from which V->SAME has
3121 been derived has been combined with V. */
3123 v
->same
= v
->same
->derived_from
;
3124 v
->new_reg
= express_from (v
->same
, v
);
3125 v
->new_reg
= replace_rtx (v
->new_reg
, v
->same
->dest_reg
,
3131 /* Store the value of dest_reg into the insn. This sharing
3132 will not be a problem as this insn will always be copied
3135 *v
->location
= v
->dest_reg
;
3137 /* If this address giv is combined with a dest reg giv, then
3138 save the base giv's induction pointer so that we will be
3139 able to handle this address giv properly. The base giv
3140 itself does not have to be splittable. */
3142 if (v
->same
&& v
->same
->giv_type
== DEST_REG
)
3143 addr_combined_regs
[REGNO (v
->same
->new_reg
)] = v
->same
;
3145 if (GET_CODE (v
->new_reg
) == REG
)
3147 /* This giv maybe hasn't been combined with any others.
3148 Make sure that it's giv is marked as splittable here. */
3150 splittable_regs
[REGNO (v
->new_reg
)] = value
;
3151 derived_regs
[REGNO (v
->new_reg
)] = v
->derived_from
!= 0;
3153 /* Make it appear to depend upon itself, so that the
3154 giv will be properly split in the main loop above. */
3158 addr_combined_regs
[REGNO (v
->new_reg
)] = v
;
3162 if (loop_dump_stream
)
3163 fprintf (loop_dump_stream
, "DEST_ADDR giv being split.\n");
3169 /* Currently, unreduced giv's can't be split. This is not too much
3170 of a problem since unreduced giv's are not live across loop
3171 iterations anyways. When unrolling a loop completely though,
3172 it makes sense to reduce&split givs when possible, as this will
3173 result in simpler instructions, and will not require that a reg
3174 be live across loop iterations. */
3176 splittable_regs
[REGNO (v
->dest_reg
)] = value
;
3177 fprintf (stderr
, "Giv %d at insn %d not reduced\n",
3178 REGNO (v
->dest_reg
), INSN_UID (v
->insn
));
3184 /* Unreduced givs are only updated once by definition. Reduced givs
3185 are updated as many times as their biv is. Mark it so if this is
3186 a splittable register. Don't need to do anything for address givs
3187 where this may not be a register. */
3189 if (GET_CODE (v
->new_reg
) == REG
)
3193 count
= reg_biv_class
[REGNO (v
->src_reg
)]->biv_count
;
3195 if (count
> 1 && v
->derived_from
)
3196 /* In this case, there is one set where the giv insn was and one
3197 set each after each biv increment. (Most are likely dead.) */
3200 splittable_regs_updates
[REGNO (v
->new_reg
)] = count
;
3205 if (loop_dump_stream
)
3209 if (GET_CODE (v
->dest_reg
) == CONST_INT
)
3211 else if (GET_CODE (v
->dest_reg
) != REG
)
3212 regnum
= REGNO (XEXP (v
->dest_reg
, 0));
3214 regnum
= REGNO (v
->dest_reg
);
3215 fprintf (loop_dump_stream
, "Giv %d at insn %d safe to split.\n",
3216 regnum
, INSN_UID (v
->insn
));
3223 /* Try to prove that the register is dead after the loop exits. Trace every
3224 loop exit looking for an insn that will always be executed, which sets
3225 the register to some value, and appears before the first use of the register
3226 is found. If successful, then return 1, otherwise return 0. */
3228 /* ?? Could be made more intelligent in the handling of jumps, so that
3229 it can search past if statements and other similar structures. */
3232 reg_dead_after_loop (loop
, reg
)
3233 const struct loop
*loop
;
3239 int label_count
= 0;
3241 /* In addition to checking all exits of this loop, we must also check
3242 all exits of inner nested loops that would exit this loop. We don't
3243 have any way to identify those, so we just give up if there are any
3244 such inner loop exits. */
3246 for (label
= loop
->exit_labels
; label
; label
= LABEL_NEXTREF (label
))
3249 if (label_count
!= loop
->exit_count
)
3252 /* HACK: Must also search the loop fall through exit, create a label_ref
3253 here which points to the loop->end, and append the loop_number_exit_labels
3255 label
= gen_rtx_LABEL_REF (VOIDmode
, loop
->end
);
3256 LABEL_NEXTREF (label
) = loop
->exit_labels
;
3258 for ( ; label
; label
= LABEL_NEXTREF (label
))
3260 /* Succeed if find an insn which sets the biv or if reach end of
3261 function. Fail if find an insn that uses the biv, or if come to
3262 a conditional jump. */
3264 insn
= NEXT_INSN (XEXP (label
, 0));
3267 code
= GET_CODE (insn
);
3268 if (GET_RTX_CLASS (code
) == 'i')
3272 if (reg_referenced_p (reg
, PATTERN (insn
)))
3275 set
= single_set (insn
);
3276 if (set
&& rtx_equal_p (SET_DEST (set
), reg
))
3280 if (code
== JUMP_INSN
)
3282 if (GET_CODE (PATTERN (insn
)) == RETURN
)
3284 else if (!any_uncondjump_p (insn
)
3285 /* Prevent infinite loop following infinite loops. */
3286 || jump_count
++ > 20)
3289 insn
= JUMP_LABEL (insn
);
3292 insn
= NEXT_INSN (insn
);
3296 /* Success, the register is dead on all loop exits. */
3300 /* Try to calculate the final value of the biv, the value it will have at
3301 the end of the loop. If we can do it, return that value. */
3304 final_biv_value (loop
, bl
)
3305 const struct loop
*loop
;
3306 struct iv_class
*bl
;
3308 rtx loop_end
= loop
->end
;
3309 unsigned HOST_WIDE_INT n_iterations
= LOOP_INFO (loop
)->n_iterations
;
3312 /* ??? This only works for MODE_INT biv's. Reject all others for now. */
3314 if (GET_MODE_CLASS (bl
->biv
->mode
) != MODE_INT
)
3317 /* The final value for reversed bivs must be calculated differently than
3318 for ordinary bivs. In this case, there is already an insn after the
3319 loop which sets this biv's final value (if necessary), and there are
3320 no other loop exits, so we can return any value. */
3323 if (loop_dump_stream
)
3324 fprintf (loop_dump_stream
,
3325 "Final biv value for %d, reversed biv.\n", bl
->regno
);
3330 /* Try to calculate the final value as initial value + (number of iterations
3331 * increment). For this to work, increment must be invariant, the only
3332 exit from the loop must be the fall through at the bottom (otherwise
3333 it may not have its final value when the loop exits), and the initial
3334 value of the biv must be invariant. */
3336 if (n_iterations
!= 0
3337 && ! loop
->exit_count
3338 && loop_invariant_p (loop
, bl
->initial_value
))
3340 increment
= biv_total_increment (bl
);
3342 if (increment
&& loop_invariant_p (loop
, increment
))
3344 /* Can calculate the loop exit value, emit insns after loop
3345 end to calculate this value into a temporary register in
3346 case it is needed later. */
3348 tem
= gen_reg_rtx (bl
->biv
->mode
);
3349 record_base_value (REGNO (tem
), bl
->biv
->add_val
, 0);
3350 /* Make sure loop_end is not the last insn. */
3351 if (NEXT_INSN (loop_end
) == 0)
3352 emit_note_after (NOTE_INSN_DELETED
, loop_end
);
3353 emit_iv_add_mult (increment
, GEN_INT (n_iterations
),
3354 bl
->initial_value
, tem
, NEXT_INSN (loop_end
));
3356 if (loop_dump_stream
)
3357 fprintf (loop_dump_stream
,
3358 "Final biv value for %d, calculated.\n", bl
->regno
);
3364 /* Check to see if the biv is dead at all loop exits. */
3365 if (reg_dead_after_loop (loop
, bl
->biv
->src_reg
))
3367 if (loop_dump_stream
)
3368 fprintf (loop_dump_stream
,
3369 "Final biv value for %d, biv dead after loop exit.\n",
3378 /* Try to calculate the final value of the giv, the value it will have at
3379 the end of the loop. If we can do it, return that value. */
3382 final_giv_value (loop
, v
)
3383 const struct loop
*loop
;
3384 struct induction
*v
;
3386 struct iv_class
*bl
;
3389 rtx insert_before
, seq
;
3390 rtx loop_end
= loop
->end
;
3391 unsigned HOST_WIDE_INT n_iterations
= LOOP_INFO (loop
)->n_iterations
;
3393 bl
= reg_biv_class
[REGNO (v
->src_reg
)];
3395 /* The final value for givs which depend on reversed bivs must be calculated
3396 differently than for ordinary givs. In this case, there is already an
3397 insn after the loop which sets this giv's final value (if necessary),
3398 and there are no other loop exits, so we can return any value. */
3401 if (loop_dump_stream
)
3402 fprintf (loop_dump_stream
,
3403 "Final giv value for %d, depends on reversed biv\n",
3404 REGNO (v
->dest_reg
));
3408 /* Try to calculate the final value as a function of the biv it depends
3409 upon. The only exit from the loop must be the fall through at the bottom
3410 (otherwise it may not have its final value when the loop exits). */
3412 /* ??? Can calculate the final giv value by subtracting off the
3413 extra biv increments times the giv's mult_val. The loop must have
3414 only one exit for this to work, but the loop iterations does not need
3417 if (n_iterations
!= 0
3418 && ! loop
->exit_count
)
3420 /* ?? It is tempting to use the biv's value here since these insns will
3421 be put after the loop, and hence the biv will have its final value
3422 then. However, this fails if the biv is subsequently eliminated.
3423 Perhaps determine whether biv's are eliminable before trying to
3424 determine whether giv's are replaceable so that we can use the
3425 biv value here if it is not eliminable. */
3427 /* We are emitting code after the end of the loop, so we must make
3428 sure that bl->initial_value is still valid then. It will still
3429 be valid if it is invariant. */
3431 increment
= biv_total_increment (bl
);
3433 if (increment
&& loop_invariant_p (loop
, increment
)
3434 && loop_invariant_p (loop
, bl
->initial_value
))
3436 /* Can calculate the loop exit value of its biv as
3437 (n_iterations * increment) + initial_value */
3439 /* The loop exit value of the giv is then
3440 (final_biv_value - extra increments) * mult_val + add_val.
3441 The extra increments are any increments to the biv which
3442 occur in the loop after the giv's value is calculated.
3443 We must search from the insn that sets the giv to the end
3444 of the loop to calculate this value. */
3446 insert_before
= NEXT_INSN (loop_end
);
3448 /* Put the final biv value in tem. */
3449 tem
= gen_reg_rtx (bl
->biv
->mode
);
3450 record_base_value (REGNO (tem
), bl
->biv
->add_val
, 0);
3451 emit_iv_add_mult (increment
, GEN_INT (n_iterations
),
3452 bl
->initial_value
, tem
, insert_before
);
3454 /* Subtract off extra increments as we find them. */
3455 for (insn
= NEXT_INSN (v
->insn
); insn
!= loop_end
;
3456 insn
= NEXT_INSN (insn
))
3458 struct induction
*biv
;
3460 for (biv
= bl
->biv
; biv
; biv
= biv
->next_iv
)
3461 if (biv
->insn
== insn
)
3464 tem
= expand_binop (GET_MODE (tem
), sub_optab
, tem
,
3465 biv
->add_val
, NULL_RTX
, 0,
3467 seq
= gen_sequence ();
3469 emit_insn_before (seq
, insert_before
);
3473 /* Now calculate the giv's final value. */
3474 emit_iv_add_mult (tem
, v
->mult_val
, v
->add_val
, tem
,
3477 if (loop_dump_stream
)
3478 fprintf (loop_dump_stream
,
3479 "Final giv value for %d, calc from biv's value.\n",
3480 REGNO (v
->dest_reg
));
3486 /* Replaceable giv's should never reach here. */
3490 /* Check to see if the biv is dead at all loop exits. */
3491 if (reg_dead_after_loop (loop
, v
->dest_reg
))
3493 if (loop_dump_stream
)
3494 fprintf (loop_dump_stream
,
3495 "Final giv value for %d, giv dead after loop exit.\n",
3496 REGNO (v
->dest_reg
));
3505 /* Look back before LOOP->START for then insn that sets REG and return
3506 the equivalent constant if there is a REG_EQUAL note otherwise just
3507 the SET_SRC of REG. */
3510 loop_find_equiv_value (loop
, reg
)
3511 const struct loop
*loop
;
3514 rtx loop_start
= loop
->start
;
3519 for (insn
= PREV_INSN (loop_start
); insn
; insn
= PREV_INSN (insn
))
3521 if (GET_CODE (insn
) == CODE_LABEL
)
3524 else if (GET_RTX_CLASS (GET_CODE (insn
)) == 'i'
3525 && 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);
3542 ret
= SET_SRC (set
);
3550 /* Return a simplified rtx for the expression OP - REG.
3552 REG must appear in OP, and OP must be a register or the sum of a register
3555 Thus, the return value must be const0_rtx or the second term.
3557 The caller is responsible for verifying that REG appears in OP and OP has
3561 subtract_reg_term (op
, reg
)
3566 if (GET_CODE (op
) == PLUS
)
3568 if (XEXP (op
, 0) == reg
)
3569 return XEXP (op
, 1);
3570 else if (XEXP (op
, 1) == reg
)
3571 return XEXP (op
, 0);
3573 /* OP does not contain REG as a term. */
3578 /* Find and return register term common to both expressions OP0 and
3579 OP1 or NULL_RTX if no such term exists. Each expression must be a
3580 REG or a PLUS of a REG. */
3583 find_common_reg_term (op0
, op1
)
3586 if ((GET_CODE (op0
) == REG
|| GET_CODE (op0
) == PLUS
)
3587 && (GET_CODE (op1
) == REG
|| GET_CODE (op1
) == PLUS
))
3594 if (GET_CODE (op0
) == PLUS
)
3595 op01
= XEXP (op0
, 1), op00
= XEXP (op0
, 0);
3597 op01
= const0_rtx
, op00
= op0
;
3599 if (GET_CODE (op1
) == PLUS
)
3600 op11
= XEXP (op1
, 1), op10
= XEXP (op1
, 0);
3602 op11
= const0_rtx
, op10
= op1
;
3604 /* Find and return common register term if present. */
3605 if (REG_P (op00
) && (op00
== op10
|| op00
== op11
))
3607 else if (REG_P (op01
) && (op01
== op10
|| op01
== op11
))
3611 /* No common register term found. */
3615 /* Calculate the number of loop iterations. Returns the exact number of loop
3616 iterations if it can be calculated, otherwise returns zero. */
3618 unsigned HOST_WIDE_INT
3619 loop_iterations (loop
)
3622 rtx comparison
, comparison_value
;
3623 rtx iteration_var
, initial_value
, increment
, final_value
;
3624 enum rtx_code comparison_code
;
3625 HOST_WIDE_INT abs_inc
;
3626 unsigned HOST_WIDE_INT abs_diff
;
3629 int unsigned_p
, compare_dir
, final_larger
;
3632 struct loop_info
*loop_info
= LOOP_INFO (loop
);
3634 loop_info
->n_iterations
= 0;
3635 loop_info
->initial_value
= 0;
3636 loop_info
->initial_equiv_value
= 0;
3637 loop_info
->comparison_value
= 0;
3638 loop_info
->final_value
= 0;
3639 loop_info
->final_equiv_value
= 0;
3640 loop_info
->increment
= 0;
3641 loop_info
->iteration_var
= 0;
3642 loop_info
->unroll_number
= 1;
3644 /* We used to use prev_nonnote_insn here, but that fails because it might
3645 accidentally get the branch for a contained loop if the branch for this
3646 loop was deleted. We can only trust branches immediately before the
3648 last_loop_insn
= PREV_INSN (loop
->end
);
3650 /* ??? We should probably try harder to find the jump insn
3651 at the end of the loop. The following code assumes that
3652 the last loop insn is a jump to the top of the loop. */
3653 if (GET_CODE (last_loop_insn
) != JUMP_INSN
)
3655 if (loop_dump_stream
)
3656 fprintf (loop_dump_stream
,
3657 "Loop iterations: No final conditional branch found.\n");
3661 /* If there is a more than a single jump to the top of the loop
3662 we cannot (easily) determine the iteration count. */
3663 if (LABEL_NUSES (JUMP_LABEL (last_loop_insn
)) > 1)
3665 if (loop_dump_stream
)
3666 fprintf (loop_dump_stream
,
3667 "Loop iterations: Loop has multiple back edges.\n");
3671 /* Find the iteration variable. If the last insn is a conditional
3672 branch, and the insn before tests a register value, make that the
3673 iteration variable. */
3675 comparison
= get_condition_for_loop (loop
, last_loop_insn
);
3676 if (comparison
== 0)
3678 if (loop_dump_stream
)
3679 fprintf (loop_dump_stream
,
3680 "Loop iterations: No final comparison found.\n");
3684 /* ??? Get_condition may switch position of induction variable and
3685 invariant register when it canonicalizes the comparison. */
3687 comparison_code
= GET_CODE (comparison
);
3688 iteration_var
= XEXP (comparison
, 0);
3689 comparison_value
= XEXP (comparison
, 1);
3691 if (GET_CODE (iteration_var
) != REG
)
3693 if (loop_dump_stream
)
3694 fprintf (loop_dump_stream
,
3695 "Loop iterations: Comparison not against register.\n");
3699 /* The only new registers that are created before loop iterations
3700 are givs made from biv increments or registers created by
3701 load_mems. In the latter case, it is possible that try_copy_prop
3702 will propagate a new pseudo into the old iteration register but
3703 this will be marked by having the REG_USERVAR_P bit set. */
3705 if ((unsigned) REGNO (iteration_var
) >= reg_iv_type
->num_elements
3706 && ! REG_USERVAR_P (iteration_var
))
3709 iteration_info (loop
, iteration_var
, &initial_value
, &increment
);
3711 if (initial_value
== 0)
3712 /* iteration_info already printed a message. */
3717 switch (comparison_code
)
3732 /* Cannot determine loop iterations with this case. */
3751 /* If the comparison value is an invariant register, then try to find
3752 its value from the insns before the start of the loop. */
3754 final_value
= comparison_value
;
3755 if (GET_CODE (comparison_value
) == REG
3756 && loop_invariant_p (loop
, comparison_value
))
3758 final_value
= loop_find_equiv_value (loop
, comparison_value
);
3760 /* If we don't get an invariant final value, we are better
3761 off with the original register. */
3762 if (! loop_invariant_p (loop
, final_value
))
3763 final_value
= comparison_value
;
3766 /* Calculate the approximate final value of the induction variable
3767 (on the last successful iteration). The exact final value
3768 depends on the branch operator, and increment sign. It will be
3769 wrong if the iteration variable is not incremented by one each
3770 time through the loop and (comparison_value + off_by_one -
3771 initial_value) % increment != 0.
3772 ??? Note that the final_value may overflow and thus final_larger
3773 will be bogus. A potentially infinite loop will be classified
3774 as immediate, e.g. for (i = 0x7ffffff0; i <= 0x7fffffff; i++) */
3776 final_value
= plus_constant (final_value
, off_by_one
);
3778 /* Save the calculated values describing this loop's bounds, in case
3779 precondition_loop_p will need them later. These values can not be
3780 recalculated inside precondition_loop_p because strength reduction
3781 optimizations may obscure the loop's structure.
3783 These values are only required by precondition_loop_p and insert_bct
3784 whenever the number of iterations cannot be computed at compile time.
3785 Only the difference between final_value and initial_value is
3786 important. Note that final_value is only approximate. */
3787 loop_info
->initial_value
= initial_value
;
3788 loop_info
->comparison_value
= comparison_value
;
3789 loop_info
->final_value
= plus_constant (comparison_value
, off_by_one
);
3790 loop_info
->increment
= increment
;
3791 loop_info
->iteration_var
= iteration_var
;
3792 loop_info
->comparison_code
= comparison_code
;
3794 /* Try to determine the iteration count for loops such
3795 as (for i = init; i < init + const; i++). When running the
3796 loop optimization twice, the first pass often converts simple
3797 loops into this form. */
3799 if (REG_P (initial_value
))
3805 reg1
= initial_value
;
3806 if (GET_CODE (final_value
) == PLUS
)
3807 reg2
= XEXP (final_value
, 0), const2
= XEXP (final_value
, 1);
3809 reg2
= final_value
, const2
= const0_rtx
;
3811 /* Check for initial_value = reg1, final_value = reg2 + const2,
3812 where reg1 != reg2. */
3813 if (REG_P (reg2
) && reg2
!= reg1
)
3817 /* Find what reg1 is equivalent to. Hopefully it will
3818 either be reg2 or reg2 plus a constant. */
3819 temp
= loop_find_equiv_value (loop
, reg1
);
3821 if (find_common_reg_term (temp
, reg2
))
3822 initial_value
= temp
;
3825 /* Find what reg2 is equivalent to. Hopefully it will
3826 either be reg1 or reg1 plus a constant. Let's ignore
3827 the latter case for now since it is not so common. */
3828 temp
= loop_find_equiv_value (loop
, reg2
);
3830 if (temp
== loop_info
->iteration_var
)
3831 temp
= initial_value
;
3833 final_value
= (const2
== const0_rtx
)
3834 ? reg1
: gen_rtx_PLUS (GET_MODE (reg1
), reg1
, const2
);
3837 else if (loop
->vtop
&& GET_CODE (reg2
) == CONST_INT
)
3841 /* When running the loop optimizer twice, check_dbra_loop
3842 further obfuscates reversible loops of the form:
3843 for (i = init; i < init + const; i++). We often end up with
3844 final_value = 0, initial_value = temp, temp = temp2 - init,
3845 where temp2 = init + const. If the loop has a vtop we
3846 can replace initial_value with const. */
3848 temp
= loop_find_equiv_value (loop
, reg1
);
3850 if (GET_CODE (temp
) == MINUS
&& REG_P (XEXP (temp
, 0)))
3852 rtx temp2
= loop_find_equiv_value (loop
, XEXP (temp
, 0));
3854 if (GET_CODE (temp2
) == PLUS
3855 && XEXP (temp2
, 0) == XEXP (temp
, 1))
3856 initial_value
= XEXP (temp2
, 1);
3861 /* If have initial_value = reg + const1 and final_value = reg +
3862 const2, then replace initial_value with const1 and final_value
3863 with const2. This should be safe since we are protected by the
3864 initial comparison before entering the loop if we have a vtop.
3865 For example, a + b < a + c is not equivalent to b < c for all a
3866 when using modulo arithmetic.
3868 ??? Without a vtop we could still perform the optimization if we check
3869 the initial and final values carefully. */
3871 && (reg_term
= find_common_reg_term (initial_value
, final_value
)))
3873 initial_value
= subtract_reg_term (initial_value
, reg_term
);
3874 final_value
= subtract_reg_term (final_value
, reg_term
);
3877 loop_info
->initial_equiv_value
= initial_value
;
3878 loop_info
->final_equiv_value
= final_value
;
3880 /* For EQ comparison loops, we don't have a valid final value.
3881 Check this now so that we won't leave an invalid value if we
3882 return early for any other reason. */
3883 if (comparison_code
== EQ
)
3884 loop_info
->final_equiv_value
= loop_info
->final_value
= 0;
3888 if (loop_dump_stream
)
3889 fprintf (loop_dump_stream
,
3890 "Loop iterations: Increment value can't be calculated.\n");
3894 if (GET_CODE (increment
) != CONST_INT
)
3896 /* If we have a REG, check to see if REG holds a constant value. */
3897 /* ??? Other RTL, such as (neg (reg)) is possible here, but it isn't
3898 clear if it is worthwhile to try to handle such RTL. */
3899 if (GET_CODE (increment
) == REG
|| GET_CODE (increment
) == SUBREG
)
3900 increment
= loop_find_equiv_value (loop
, increment
);
3902 if (GET_CODE (increment
) != CONST_INT
)
3904 if (loop_dump_stream
)
3906 fprintf (loop_dump_stream
,
3907 "Loop iterations: Increment value not constant ");
3908 print_rtl (loop_dump_stream
, increment
);
3909 fprintf (loop_dump_stream
, ".\n");
3913 loop_info
->increment
= increment
;
3916 if (GET_CODE (initial_value
) != CONST_INT
)
3918 if (loop_dump_stream
)
3920 fprintf (loop_dump_stream
,
3921 "Loop iterations: Initial value not constant ");
3922 print_rtl (loop_dump_stream
, initial_value
);
3923 fprintf (loop_dump_stream
, ".\n");
3927 else if (comparison_code
== EQ
)
3929 if (loop_dump_stream
)
3930 fprintf (loop_dump_stream
,
3931 "Loop iterations: EQ comparison loop.\n");
3934 else if (GET_CODE (final_value
) != CONST_INT
)
3936 if (loop_dump_stream
)
3938 fprintf (loop_dump_stream
,
3939 "Loop iterations: Final value not constant ");
3940 print_rtl (loop_dump_stream
, final_value
);
3941 fprintf (loop_dump_stream
, ".\n");
3946 /* Final_larger is 1 if final larger, 0 if they are equal, otherwise -1. */
3949 = ((unsigned HOST_WIDE_INT
) INTVAL (final_value
)
3950 > (unsigned HOST_WIDE_INT
) INTVAL (initial_value
))
3951 - ((unsigned HOST_WIDE_INT
) INTVAL (final_value
)
3952 < (unsigned HOST_WIDE_INT
) INTVAL (initial_value
));
3954 final_larger
= (INTVAL (final_value
) > INTVAL (initial_value
))
3955 - (INTVAL (final_value
) < INTVAL (initial_value
));
3957 if (INTVAL (increment
) > 0)
3959 else if (INTVAL (increment
) == 0)
3964 /* There are 27 different cases: compare_dir = -1, 0, 1;
3965 final_larger = -1, 0, 1; increment_dir = -1, 0, 1.
3966 There are 4 normal cases, 4 reverse cases (where the iteration variable
3967 will overflow before the loop exits), 4 infinite loop cases, and 15
3968 immediate exit (0 or 1 iteration depending on loop type) cases.
3969 Only try to optimize the normal cases. */
3971 /* (compare_dir/final_larger/increment_dir)
3972 Normal cases: (0/-1/-1), (0/1/1), (-1/-1/-1), (1/1/1)
3973 Reverse cases: (0/-1/1), (0/1/-1), (-1/-1/1), (1/1/-1)
3974 Infinite loops: (0/-1/0), (0/1/0), (-1/-1/0), (1/1/0)
3975 Immediate exit: (0/0/X), (-1/0/X), (-1/1/X), (1/0/X), (1/-1/X) */
3977 /* ?? If the meaning of reverse loops (where the iteration variable
3978 will overflow before the loop exits) is undefined, then could
3979 eliminate all of these special checks, and just always assume
3980 the loops are normal/immediate/infinite. Note that this means
3981 the sign of increment_dir does not have to be known. Also,
3982 since it does not really hurt if immediate exit loops or infinite loops
3983 are optimized, then that case could be ignored also, and hence all
3984 loops can be optimized.
3986 According to ANSI Spec, the reverse loop case result is undefined,
3987 because the action on overflow is undefined.
3989 See also the special test for NE loops below. */
3991 if (final_larger
== increment_dir
&& final_larger
!= 0
3992 && (final_larger
== compare_dir
|| compare_dir
== 0))
3997 if (loop_dump_stream
)
3998 fprintf (loop_dump_stream
,
3999 "Loop iterations: Not normal loop.\n");
4003 /* Calculate the number of iterations, final_value is only an approximation,
4004 so correct for that. Note that abs_diff and n_iterations are
4005 unsigned, because they can be as large as 2^n - 1. */
4007 abs_inc
= INTVAL (increment
);
4009 abs_diff
= INTVAL (final_value
) - INTVAL (initial_value
);
4010 else if (abs_inc
< 0)
4012 abs_diff
= INTVAL (initial_value
) - INTVAL (final_value
);
4018 /* For NE tests, make sure that the iteration variable won't miss
4019 the final value. If abs_diff mod abs_incr is not zero, then the
4020 iteration variable will overflow before the loop exits, and we
4021 can not calculate the number of iterations. */
4022 if (compare_dir
== 0 && (abs_diff
% abs_inc
) != 0)
4025 /* Note that the number of iterations could be calculated using
4026 (abs_diff + abs_inc - 1) / abs_inc, provided care was taken to
4027 handle potential overflow of the summation. */
4028 loop_info
->n_iterations
= abs_diff
/ abs_inc
+ ((abs_diff
% abs_inc
) != 0);
4029 return loop_info
->n_iterations
;
4033 /* Replace uses of split bivs with their split pseudo register. This is
4034 for original instructions which remain after loop unrolling without
4038 remap_split_bivs (x
)
4041 register enum rtx_code code
;
4043 register const char *fmt
;
4048 code
= GET_CODE (x
);
4063 /* If non-reduced/final-value givs were split, then this would also
4064 have to remap those givs also. */
4066 if (REGNO (x
) < max_reg_before_loop
4067 && REG_IV_TYPE (REGNO (x
)) == BASIC_INDUCT
)
4068 return reg_biv_class
[REGNO (x
)]->biv
->src_reg
;
4075 fmt
= GET_RTX_FORMAT (code
);
4076 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
4079 XEXP (x
, i
) = remap_split_bivs (XEXP (x
, i
));
4080 else if (fmt
[i
] == 'E')
4083 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
4084 XVECEXP (x
, i
, j
) = remap_split_bivs (XVECEXP (x
, i
, j
));
4090 /* If FIRST_UID is a set of REGNO, and FIRST_UID dominates LAST_UID (e.g.
4091 FIST_UID is always executed if LAST_UID is), then return 1. Otherwise
4092 return 0. COPY_START is where we can start looking for the insns
4093 FIRST_UID and LAST_UID. COPY_END is where we stop looking for these
4096 If there is no JUMP_INSN between LOOP_START and FIRST_UID, then FIRST_UID
4097 must dominate LAST_UID.
4099 If there is a CODE_LABEL between FIRST_UID and LAST_UID, then FIRST_UID
4100 may not dominate LAST_UID.
4102 If there is no CODE_LABEL between FIRST_UID and LAST_UID, then FIRST_UID
4103 must dominate LAST_UID. */
4106 set_dominates_use (regno
, first_uid
, last_uid
, copy_start
, copy_end
)
4113 int passed_jump
= 0;
4114 rtx p
= NEXT_INSN (copy_start
);
4116 while (INSN_UID (p
) != first_uid
)
4118 if (GET_CODE (p
) == JUMP_INSN
)
4120 /* Could not find FIRST_UID. */
4126 /* Verify that FIRST_UID is an insn that entirely sets REGNO. */
4127 if (GET_RTX_CLASS (GET_CODE (p
)) != 'i'
4128 || ! dead_or_set_regno_p (p
, regno
))
4131 /* FIRST_UID is always executed. */
4132 if (passed_jump
== 0)
4135 while (INSN_UID (p
) != last_uid
)
4137 /* If we see a CODE_LABEL between FIRST_UID and LAST_UID, then we
4138 can not be sure that FIRST_UID dominates LAST_UID. */
4139 if (GET_CODE (p
) == CODE_LABEL
)
4141 /* Could not find LAST_UID, but we reached the end of the loop, so
4143 else if (p
== copy_end
)
4148 /* FIRST_UID is always executed if LAST_UID is executed. */