* config/rl78/rl78.c (rl78_alloc_address_registers_macax): Verify
[official-gcc.git] / gcc / tree-predcom.c
blobba3e1318e7b703264d1db7bdbefa64edcc5fe16c
1 /* Predictive commoning.
2 Copyright (C) 2005-2013 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 3, or (at your option) any
9 later version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file implements the predictive commoning optimization. Predictive
21 commoning can be viewed as CSE around a loop, and with some improvements,
22 as generalized strength reduction-- i.e., reusing values computed in
23 earlier iterations of a loop in the later ones. So far, the pass only
24 handles the most useful case, that is, reusing values of memory references.
25 If you think this is all just a special case of PRE, you are sort of right;
26 however, concentrating on loops is simpler, and makes it possible to
27 incorporate data dependence analysis to detect the opportunities, perform
28 loop unrolling to avoid copies together with renaming immediately,
29 and if needed, we could also take register pressure into account.
31 Let us demonstrate what is done on an example:
33 for (i = 0; i < 100; i++)
35 a[i+2] = a[i] + a[i+1];
36 b[10] = b[10] + i;
37 c[i] = c[99 - i];
38 d[i] = d[i + 1];
41 1) We find data references in the loop, and split them to mutually
42 independent groups (i.e., we find components of a data dependence
43 graph). We ignore read-read dependences whose distance is not constant.
44 (TODO -- we could also ignore antidependences). In this example, we
45 find the following groups:
47 a[i]{read}, a[i+1]{read}, a[i+2]{write}
48 b[10]{read}, b[10]{write}
49 c[99 - i]{read}, c[i]{write}
50 d[i + 1]{read}, d[i]{write}
52 2) Inside each of the group, we verify several conditions:
53 a) all the references must differ in indices only, and the indices
54 must all have the same step
55 b) the references must dominate loop latch (and thus, they must be
56 ordered by dominance relation).
57 c) the distance of the indices must be a small multiple of the step
58 We are then able to compute the difference of the references (# of
59 iterations before they point to the same place as the first of them).
60 Also, in case there are writes in the loop, we split the groups into
61 chains whose head is the write whose values are used by the reads in
62 the same chain. The chains are then processed independently,
63 making the further transformations simpler. Also, the shorter chains
64 need the same number of registers, but may require lower unrolling
65 factor in order to get rid of the copies on the loop latch.
67 In our example, we get the following chains (the chain for c is invalid).
69 a[i]{read,+0}, a[i+1]{read,-1}, a[i+2]{write,-2}
70 b[10]{read,+0}, b[10]{write,+0}
71 d[i + 1]{read,+0}, d[i]{write,+1}
73 3) For each read, we determine the read or write whose value it reuses,
74 together with the distance of this reuse. I.e. we take the last
75 reference before it with distance 0, or the last of the references
76 with the smallest positive distance to the read. Then, we remove
77 the references that are not used in any of these chains, discard the
78 empty groups, and propagate all the links so that they point to the
79 single root reference of the chain (adjusting their distance
80 appropriately). Some extra care needs to be taken for references with
81 step 0. In our example (the numbers indicate the distance of the
82 reuse),
84 a[i] --> (*) 2, a[i+1] --> (*) 1, a[i+2] (*)
85 b[10] --> (*) 1, b[10] (*)
87 4) The chains are combined together if possible. If the corresponding
88 elements of two chains are always combined together with the same
89 operator, we remember just the result of this combination, instead
90 of remembering the values separately. We may need to perform
91 reassociation to enable combining, for example
93 e[i] + f[i+1] + e[i+1] + f[i]
95 can be reassociated as
97 (e[i] + f[i]) + (e[i+1] + f[i+1])
99 and we can combine the chains for e and f into one chain.
101 5) For each root reference (end of the chain) R, let N be maximum distance
102 of a reference reusing its value. Variables R0 up to RN are created,
103 together with phi nodes that transfer values from R1 .. RN to
104 R0 .. R(N-1).
105 Initial values are loaded to R0..R(N-1) (in case not all references
106 must necessarily be accessed and they may trap, we may fail here;
107 TODO sometimes, the loads could be guarded by a check for the number
108 of iterations). Values loaded/stored in roots are also copied to
109 RN. Other reads are replaced with the appropriate variable Ri.
110 Everything is put to SSA form.
112 As a small improvement, if R0 is dead after the root (i.e., all uses of
113 the value with the maximum distance dominate the root), we can avoid
114 creating RN and use R0 instead of it.
116 In our example, we get (only the parts concerning a and b are shown):
117 for (i = 0; i < 100; i++)
119 f = phi (a[0], s);
120 s = phi (a[1], f);
121 x = phi (b[10], x);
123 f = f + s;
124 a[i+2] = f;
125 x = x + i;
126 b[10] = x;
129 6) Factor F for unrolling is determined as the smallest common multiple of
130 (N + 1) for each root reference (N for references for that we avoided
131 creating RN). If F and the loop is small enough, loop is unrolled F
132 times. The stores to RN (R0) in the copies of the loop body are
133 periodically replaced with R0, R1, ... (R1, R2, ...), so that they can
134 be coalesced and the copies can be eliminated.
136 TODO -- copy propagation and other optimizations may change the live
137 ranges of the temporary registers and prevent them from being coalesced;
138 this may increase the register pressure.
140 In our case, F = 2 and the (main loop of the) result is
142 for (i = 0; i < ...; i += 2)
144 f = phi (a[0], f);
145 s = phi (a[1], s);
146 x = phi (b[10], x);
148 f = f + s;
149 a[i+2] = f;
150 x = x + i;
151 b[10] = x;
153 s = s + f;
154 a[i+3] = s;
155 x = x + i;
156 b[10] = x;
159 TODO -- stores killing other stores can be taken into account, e.g.,
160 for (i = 0; i < n; i++)
162 a[i] = 1;
163 a[i+2] = 2;
166 can be replaced with
168 t0 = a[0];
169 t1 = a[1];
170 for (i = 0; i < n; i++)
172 a[i] = 1;
173 t2 = 2;
174 t0 = t1;
175 t1 = t2;
177 a[n] = t0;
178 a[n+1] = t1;
180 The interesting part is that this would generalize store motion; still, since
181 sm is performed elsewhere, it does not seem that important.
183 Predictive commoning can be generalized for arbitrary computations (not
184 just memory loads), and also nontrivial transfer functions (e.g., replacing
185 i * i with ii_last + 2 * i + 1), to generalize strength reduction. */
187 #include "config.h"
188 #include "system.h"
189 #include "coretypes.h"
190 #include "tm.h"
191 #include "tree.h"
192 #include "tm_p.h"
193 #include "cfgloop.h"
194 #include "tree-ssa.h"
195 #include "ggc.h"
196 #include "tree-data-ref.h"
197 #include "tree-scalar-evolution.h"
198 #include "tree-chrec.h"
199 #include "params.h"
200 #include "gimple-pretty-print.h"
201 #include "tree-pass.h"
202 #include "tree-affine.h"
203 #include "tree-inline.h"
205 /* The maximum number of iterations between the considered memory
206 references. */
208 #define MAX_DISTANCE (target_avail_regs < 16 ? 4 : 8)
210 /* Data references (or phi nodes that carry data reference values across
211 loop iterations). */
213 typedef struct dref_d
215 /* The reference itself. */
216 struct data_reference *ref;
218 /* The statement in that the reference appears. */
219 gimple stmt;
221 /* In case that STMT is a phi node, this field is set to the SSA name
222 defined by it in replace_phis_by_defined_names (in order to avoid
223 pointing to phi node that got reallocated in the meantime). */
224 tree name_defined_by_phi;
226 /* Distance of the reference from the root of the chain (in number of
227 iterations of the loop). */
228 unsigned distance;
230 /* Number of iterations offset from the first reference in the component. */
231 double_int offset;
233 /* Number of the reference in a component, in dominance ordering. */
234 unsigned pos;
236 /* True if the memory reference is always accessed when the loop is
237 entered. */
238 unsigned always_accessed : 1;
239 } *dref;
242 /* Type of the chain of the references. */
244 enum chain_type
246 /* The addresses of the references in the chain are constant. */
247 CT_INVARIANT,
249 /* There are only loads in the chain. */
250 CT_LOAD,
252 /* Root of the chain is store, the rest are loads. */
253 CT_STORE_LOAD,
255 /* A combination of two chains. */
256 CT_COMBINATION
259 /* Chains of data references. */
261 typedef struct chain
263 /* Type of the chain. */
264 enum chain_type type;
266 /* For combination chains, the operator and the two chains that are
267 combined, and the type of the result. */
268 enum tree_code op;
269 tree rslt_type;
270 struct chain *ch1, *ch2;
272 /* The references in the chain. */
273 vec<dref> refs;
275 /* The maximum distance of the reference in the chain from the root. */
276 unsigned length;
278 /* The variables used to copy the value throughout iterations. */
279 vec<tree> vars;
281 /* Initializers for the variables. */
282 vec<tree> inits;
284 /* True if there is a use of a variable with the maximal distance
285 that comes after the root in the loop. */
286 unsigned has_max_use_after : 1;
288 /* True if all the memory references in the chain are always accessed. */
289 unsigned all_always_accessed : 1;
291 /* True if this chain was combined together with some other chain. */
292 unsigned combined : 1;
293 } *chain_p;
296 /* Describes the knowledge about the step of the memory references in
297 the component. */
299 enum ref_step_type
301 /* The step is zero. */
302 RS_INVARIANT,
304 /* The step is nonzero. */
305 RS_NONZERO,
307 /* The step may or may not be nonzero. */
308 RS_ANY
311 /* Components of the data dependence graph. */
313 struct component
315 /* The references in the component. */
316 vec<dref> refs;
318 /* What we know about the step of the references in the component. */
319 enum ref_step_type comp_step;
321 /* Next component in the list. */
322 struct component *next;
325 /* Bitmap of ssa names defined by looparound phi nodes covered by chains. */
327 static bitmap looparound_phis;
329 /* Cache used by tree_to_aff_combination_expand. */
331 static struct pointer_map_t *name_expansions;
333 /* Dumps data reference REF to FILE. */
335 extern void dump_dref (FILE *, dref);
336 void
337 dump_dref (FILE *file, dref ref)
339 if (ref->ref)
341 fprintf (file, " ");
342 print_generic_expr (file, DR_REF (ref->ref), TDF_SLIM);
343 fprintf (file, " (id %u%s)\n", ref->pos,
344 DR_IS_READ (ref->ref) ? "" : ", write");
346 fprintf (file, " offset ");
347 dump_double_int (file, ref->offset, false);
348 fprintf (file, "\n");
350 fprintf (file, " distance %u\n", ref->distance);
352 else
354 if (gimple_code (ref->stmt) == GIMPLE_PHI)
355 fprintf (file, " looparound ref\n");
356 else
357 fprintf (file, " combination ref\n");
358 fprintf (file, " in statement ");
359 print_gimple_stmt (file, ref->stmt, 0, TDF_SLIM);
360 fprintf (file, "\n");
361 fprintf (file, " distance %u\n", ref->distance);
366 /* Dumps CHAIN to FILE. */
368 extern void dump_chain (FILE *, chain_p);
369 void
370 dump_chain (FILE *file, chain_p chain)
372 dref a;
373 const char *chain_type;
374 unsigned i;
375 tree var;
377 switch (chain->type)
379 case CT_INVARIANT:
380 chain_type = "Load motion";
381 break;
383 case CT_LOAD:
384 chain_type = "Loads-only";
385 break;
387 case CT_STORE_LOAD:
388 chain_type = "Store-loads";
389 break;
391 case CT_COMBINATION:
392 chain_type = "Combination";
393 break;
395 default:
396 gcc_unreachable ();
399 fprintf (file, "%s chain %p%s\n", chain_type, (void *) chain,
400 chain->combined ? " (combined)" : "");
401 if (chain->type != CT_INVARIANT)
402 fprintf (file, " max distance %u%s\n", chain->length,
403 chain->has_max_use_after ? "" : ", may reuse first");
405 if (chain->type == CT_COMBINATION)
407 fprintf (file, " equal to %p %s %p in type ",
408 (void *) chain->ch1, op_symbol_code (chain->op),
409 (void *) chain->ch2);
410 print_generic_expr (file, chain->rslt_type, TDF_SLIM);
411 fprintf (file, "\n");
414 if (chain->vars.exists ())
416 fprintf (file, " vars");
417 FOR_EACH_VEC_ELT (chain->vars, i, var)
419 fprintf (file, " ");
420 print_generic_expr (file, var, TDF_SLIM);
422 fprintf (file, "\n");
425 if (chain->inits.exists ())
427 fprintf (file, " inits");
428 FOR_EACH_VEC_ELT (chain->inits, i, var)
430 fprintf (file, " ");
431 print_generic_expr (file, var, TDF_SLIM);
433 fprintf (file, "\n");
436 fprintf (file, " references:\n");
437 FOR_EACH_VEC_ELT (chain->refs, i, a)
438 dump_dref (file, a);
440 fprintf (file, "\n");
443 /* Dumps CHAINS to FILE. */
445 extern void dump_chains (FILE *, vec<chain_p> );
446 void
447 dump_chains (FILE *file, vec<chain_p> chains)
449 chain_p chain;
450 unsigned i;
452 FOR_EACH_VEC_ELT (chains, i, chain)
453 dump_chain (file, chain);
456 /* Dumps COMP to FILE. */
458 extern void dump_component (FILE *, struct component *);
459 void
460 dump_component (FILE *file, struct component *comp)
462 dref a;
463 unsigned i;
465 fprintf (file, "Component%s:\n",
466 comp->comp_step == RS_INVARIANT ? " (invariant)" : "");
467 FOR_EACH_VEC_ELT (comp->refs, i, a)
468 dump_dref (file, a);
469 fprintf (file, "\n");
472 /* Dumps COMPS to FILE. */
474 extern void dump_components (FILE *, struct component *);
475 void
476 dump_components (FILE *file, struct component *comps)
478 struct component *comp;
480 for (comp = comps; comp; comp = comp->next)
481 dump_component (file, comp);
484 /* Frees a chain CHAIN. */
486 static void
487 release_chain (chain_p chain)
489 dref ref;
490 unsigned i;
492 if (chain == NULL)
493 return;
495 FOR_EACH_VEC_ELT (chain->refs, i, ref)
496 free (ref);
498 chain->refs.release ();
499 chain->vars.release ();
500 chain->inits.release ();
502 free (chain);
505 /* Frees CHAINS. */
507 static void
508 release_chains (vec<chain_p> chains)
510 unsigned i;
511 chain_p chain;
513 FOR_EACH_VEC_ELT (chains, i, chain)
514 release_chain (chain);
515 chains.release ();
518 /* Frees a component COMP. */
520 static void
521 release_component (struct component *comp)
523 comp->refs.release ();
524 free (comp);
527 /* Frees list of components COMPS. */
529 static void
530 release_components (struct component *comps)
532 struct component *act, *next;
534 for (act = comps; act; act = next)
536 next = act->next;
537 release_component (act);
541 /* Finds a root of tree given by FATHERS containing A, and performs path
542 shortening. */
544 static unsigned
545 component_of (unsigned fathers[], unsigned a)
547 unsigned root, n;
549 for (root = a; root != fathers[root]; root = fathers[root])
550 continue;
552 for (; a != root; a = n)
554 n = fathers[a];
555 fathers[a] = root;
558 return root;
561 /* Join operation for DFU. FATHERS gives the tree, SIZES are sizes of the
562 components, A and B are components to merge. */
564 static void
565 merge_comps (unsigned fathers[], unsigned sizes[], unsigned a, unsigned b)
567 unsigned ca = component_of (fathers, a);
568 unsigned cb = component_of (fathers, b);
570 if (ca == cb)
571 return;
573 if (sizes[ca] < sizes[cb])
575 sizes[cb] += sizes[ca];
576 fathers[ca] = cb;
578 else
580 sizes[ca] += sizes[cb];
581 fathers[cb] = ca;
585 /* Returns true if A is a reference that is suitable for predictive commoning
586 in the innermost loop that contains it. REF_STEP is set according to the
587 step of the reference A. */
589 static bool
590 suitable_reference_p (struct data_reference *a, enum ref_step_type *ref_step)
592 tree ref = DR_REF (a), step = DR_STEP (a);
594 if (!step
595 || TREE_THIS_VOLATILE (ref)
596 || !is_gimple_reg_type (TREE_TYPE (ref))
597 || tree_could_throw_p (ref))
598 return false;
600 if (integer_zerop (step))
601 *ref_step = RS_INVARIANT;
602 else if (integer_nonzerop (step))
603 *ref_step = RS_NONZERO;
604 else
605 *ref_step = RS_ANY;
607 return true;
610 /* Stores DR_OFFSET (DR) + DR_INIT (DR) to OFFSET. */
612 static void
613 aff_combination_dr_offset (struct data_reference *dr, aff_tree *offset)
615 tree type = TREE_TYPE (DR_OFFSET (dr));
616 aff_tree delta;
618 tree_to_aff_combination_expand (DR_OFFSET (dr), type, offset,
619 &name_expansions);
620 aff_combination_const (&delta, type, tree_to_double_int (DR_INIT (dr)));
621 aff_combination_add (offset, &delta);
624 /* Determines number of iterations of the innermost enclosing loop before B
625 refers to exactly the same location as A and stores it to OFF. If A and
626 B do not have the same step, they never meet, or anything else fails,
627 returns false, otherwise returns true. Both A and B are assumed to
628 satisfy suitable_reference_p. */
630 static bool
631 determine_offset (struct data_reference *a, struct data_reference *b,
632 double_int *off)
634 aff_tree diff, baseb, step;
635 tree typea, typeb;
637 /* Check that both the references access the location in the same type. */
638 typea = TREE_TYPE (DR_REF (a));
639 typeb = TREE_TYPE (DR_REF (b));
640 if (!useless_type_conversion_p (typeb, typea))
641 return false;
643 /* Check whether the base address and the step of both references is the
644 same. */
645 if (!operand_equal_p (DR_STEP (a), DR_STEP (b), 0)
646 || !operand_equal_p (DR_BASE_ADDRESS (a), DR_BASE_ADDRESS (b), 0))
647 return false;
649 if (integer_zerop (DR_STEP (a)))
651 /* If the references have loop invariant address, check that they access
652 exactly the same location. */
653 *off = double_int_zero;
654 return (operand_equal_p (DR_OFFSET (a), DR_OFFSET (b), 0)
655 && operand_equal_p (DR_INIT (a), DR_INIT (b), 0));
658 /* Compare the offsets of the addresses, and check whether the difference
659 is a multiple of step. */
660 aff_combination_dr_offset (a, &diff);
661 aff_combination_dr_offset (b, &baseb);
662 aff_combination_scale (&baseb, double_int_minus_one);
663 aff_combination_add (&diff, &baseb);
665 tree_to_aff_combination_expand (DR_STEP (a), TREE_TYPE (DR_STEP (a)),
666 &step, &name_expansions);
667 return aff_combination_constant_multiple_p (&diff, &step, off);
670 /* Returns the last basic block in LOOP for that we are sure that
671 it is executed whenever the loop is entered. */
673 static basic_block
674 last_always_executed_block (struct loop *loop)
676 unsigned i;
677 vec<edge> exits = get_loop_exit_edges (loop);
678 edge ex;
679 basic_block last = loop->latch;
681 FOR_EACH_VEC_ELT (exits, i, ex)
682 last = nearest_common_dominator (CDI_DOMINATORS, last, ex->src);
683 exits.release ();
685 return last;
688 /* Splits dependence graph on DATAREFS described by DEPENDS to components. */
690 static struct component *
691 split_data_refs_to_components (struct loop *loop,
692 vec<data_reference_p> datarefs,
693 vec<ddr_p> depends)
695 unsigned i, n = datarefs.length ();
696 unsigned ca, ia, ib, bad;
697 unsigned *comp_father = XNEWVEC (unsigned, n + 1);
698 unsigned *comp_size = XNEWVEC (unsigned, n + 1);
699 struct component **comps;
700 struct data_reference *dr, *dra, *drb;
701 struct data_dependence_relation *ddr;
702 struct component *comp_list = NULL, *comp;
703 dref dataref;
704 basic_block last_always_executed = last_always_executed_block (loop);
706 FOR_EACH_VEC_ELT (datarefs, i, dr)
708 if (!DR_REF (dr))
710 /* A fake reference for call or asm_expr that may clobber memory;
711 just fail. */
712 goto end;
714 dr->aux = (void *) (size_t) i;
715 comp_father[i] = i;
716 comp_size[i] = 1;
719 /* A component reserved for the "bad" data references. */
720 comp_father[n] = n;
721 comp_size[n] = 1;
723 FOR_EACH_VEC_ELT (datarefs, i, dr)
725 enum ref_step_type dummy;
727 if (!suitable_reference_p (dr, &dummy))
729 ia = (unsigned) (size_t) dr->aux;
730 merge_comps (comp_father, comp_size, n, ia);
734 FOR_EACH_VEC_ELT (depends, i, ddr)
736 double_int dummy_off;
738 if (DDR_ARE_DEPENDENT (ddr) == chrec_known)
739 continue;
741 dra = DDR_A (ddr);
742 drb = DDR_B (ddr);
743 ia = component_of (comp_father, (unsigned) (size_t) dra->aux);
744 ib = component_of (comp_father, (unsigned) (size_t) drb->aux);
745 if (ia == ib)
746 continue;
748 bad = component_of (comp_father, n);
750 /* If both A and B are reads, we may ignore unsuitable dependences. */
751 if (DR_IS_READ (dra) && DR_IS_READ (drb)
752 && (ia == bad || ib == bad
753 || !determine_offset (dra, drb, &dummy_off)))
754 continue;
756 merge_comps (comp_father, comp_size, ia, ib);
759 comps = XCNEWVEC (struct component *, n);
760 bad = component_of (comp_father, n);
761 FOR_EACH_VEC_ELT (datarefs, i, dr)
763 ia = (unsigned) (size_t) dr->aux;
764 ca = component_of (comp_father, ia);
765 if (ca == bad)
766 continue;
768 comp = comps[ca];
769 if (!comp)
771 comp = XCNEW (struct component);
772 comp->refs.create (comp_size[ca]);
773 comps[ca] = comp;
776 dataref = XCNEW (struct dref_d);
777 dataref->ref = dr;
778 dataref->stmt = DR_STMT (dr);
779 dataref->offset = double_int_zero;
780 dataref->distance = 0;
782 dataref->always_accessed
783 = dominated_by_p (CDI_DOMINATORS, last_always_executed,
784 gimple_bb (dataref->stmt));
785 dataref->pos = comp->refs.length ();
786 comp->refs.quick_push (dataref);
789 for (i = 0; i < n; i++)
791 comp = comps[i];
792 if (comp)
794 comp->next = comp_list;
795 comp_list = comp;
798 free (comps);
800 end:
801 free (comp_father);
802 free (comp_size);
803 return comp_list;
806 /* Returns true if the component COMP satisfies the conditions
807 described in 2) at the beginning of this file. LOOP is the current
808 loop. */
810 static bool
811 suitable_component_p (struct loop *loop, struct component *comp)
813 unsigned i;
814 dref a, first;
815 basic_block ba, bp = loop->header;
816 bool ok, has_write = false;
818 FOR_EACH_VEC_ELT (comp->refs, i, a)
820 ba = gimple_bb (a->stmt);
822 if (!just_once_each_iteration_p (loop, ba))
823 return false;
825 gcc_assert (dominated_by_p (CDI_DOMINATORS, ba, bp));
826 bp = ba;
828 if (DR_IS_WRITE (a->ref))
829 has_write = true;
832 first = comp->refs[0];
833 ok = suitable_reference_p (first->ref, &comp->comp_step);
834 gcc_assert (ok);
835 first->offset = double_int_zero;
837 for (i = 1; comp->refs.iterate (i, &a); i++)
839 if (!determine_offset (first->ref, a->ref, &a->offset))
840 return false;
842 #ifdef ENABLE_CHECKING
844 enum ref_step_type a_step;
845 ok = suitable_reference_p (a->ref, &a_step);
846 gcc_assert (ok && a_step == comp->comp_step);
848 #endif
851 /* If there is a write inside the component, we must know whether the
852 step is nonzero or not -- we would not otherwise be able to recognize
853 whether the value accessed by reads comes from the OFFSET-th iteration
854 or the previous one. */
855 if (has_write && comp->comp_step == RS_ANY)
856 return false;
858 return true;
861 /* Check the conditions on references inside each of components COMPS,
862 and remove the unsuitable components from the list. The new list
863 of components is returned. The conditions are described in 2) at
864 the beginning of this file. LOOP is the current loop. */
866 static struct component *
867 filter_suitable_components (struct loop *loop, struct component *comps)
869 struct component **comp, *act;
871 for (comp = &comps; *comp; )
873 act = *comp;
874 if (suitable_component_p (loop, act))
875 comp = &act->next;
876 else
878 dref ref;
879 unsigned i;
881 *comp = act->next;
882 FOR_EACH_VEC_ELT (act->refs, i, ref)
883 free (ref);
884 release_component (act);
888 return comps;
891 /* Compares two drefs A and B by their offset and position. Callback for
892 qsort. */
894 static int
895 order_drefs (const void *a, const void *b)
897 const dref *const da = (const dref *) a;
898 const dref *const db = (const dref *) b;
899 int offcmp = (*da)->offset.scmp ((*db)->offset);
901 if (offcmp != 0)
902 return offcmp;
904 return (*da)->pos - (*db)->pos;
907 /* Returns root of the CHAIN. */
909 static inline dref
910 get_chain_root (chain_p chain)
912 return chain->refs[0];
915 /* Adds REF to the chain CHAIN. */
917 static void
918 add_ref_to_chain (chain_p chain, dref ref)
920 dref root = get_chain_root (chain);
921 double_int dist;
923 gcc_assert (root->offset.sle (ref->offset));
924 dist = ref->offset - root->offset;
925 if (double_int::from_uhwi (MAX_DISTANCE).ule (dist))
927 free (ref);
928 return;
930 gcc_assert (dist.fits_uhwi ());
932 chain->refs.safe_push (ref);
934 ref->distance = dist.to_uhwi ();
936 if (ref->distance >= chain->length)
938 chain->length = ref->distance;
939 chain->has_max_use_after = false;
942 if (ref->distance == chain->length
943 && ref->pos > root->pos)
944 chain->has_max_use_after = true;
946 chain->all_always_accessed &= ref->always_accessed;
949 /* Returns the chain for invariant component COMP. */
951 static chain_p
952 make_invariant_chain (struct component *comp)
954 chain_p chain = XCNEW (struct chain);
955 unsigned i;
956 dref ref;
958 chain->type = CT_INVARIANT;
960 chain->all_always_accessed = true;
962 FOR_EACH_VEC_ELT (comp->refs, i, ref)
964 chain->refs.safe_push (ref);
965 chain->all_always_accessed &= ref->always_accessed;
968 return chain;
971 /* Make a new chain rooted at REF. */
973 static chain_p
974 make_rooted_chain (dref ref)
976 chain_p chain = XCNEW (struct chain);
978 chain->type = DR_IS_READ (ref->ref) ? CT_LOAD : CT_STORE_LOAD;
980 chain->refs.safe_push (ref);
981 chain->all_always_accessed = ref->always_accessed;
983 ref->distance = 0;
985 return chain;
988 /* Returns true if CHAIN is not trivial. */
990 static bool
991 nontrivial_chain_p (chain_p chain)
993 return chain != NULL && chain->refs.length () > 1;
996 /* Returns the ssa name that contains the value of REF, or NULL_TREE if there
997 is no such name. */
999 static tree
1000 name_for_ref (dref ref)
1002 tree name;
1004 if (is_gimple_assign (ref->stmt))
1006 if (!ref->ref || DR_IS_READ (ref->ref))
1007 name = gimple_assign_lhs (ref->stmt);
1008 else
1009 name = gimple_assign_rhs1 (ref->stmt);
1011 else
1012 name = PHI_RESULT (ref->stmt);
1014 return (TREE_CODE (name) == SSA_NAME ? name : NULL_TREE);
1017 /* Returns true if REF is a valid initializer for ROOT with given DISTANCE (in
1018 iterations of the innermost enclosing loop). */
1020 static bool
1021 valid_initializer_p (struct data_reference *ref,
1022 unsigned distance, struct data_reference *root)
1024 aff_tree diff, base, step;
1025 double_int off;
1027 /* Both REF and ROOT must be accessing the same object. */
1028 if (!operand_equal_p (DR_BASE_ADDRESS (ref), DR_BASE_ADDRESS (root), 0))
1029 return false;
1031 /* The initializer is defined outside of loop, hence its address must be
1032 invariant inside the loop. */
1033 gcc_assert (integer_zerop (DR_STEP (ref)));
1035 /* If the address of the reference is invariant, initializer must access
1036 exactly the same location. */
1037 if (integer_zerop (DR_STEP (root)))
1038 return (operand_equal_p (DR_OFFSET (ref), DR_OFFSET (root), 0)
1039 && operand_equal_p (DR_INIT (ref), DR_INIT (root), 0));
1041 /* Verify that this index of REF is equal to the root's index at
1042 -DISTANCE-th iteration. */
1043 aff_combination_dr_offset (root, &diff);
1044 aff_combination_dr_offset (ref, &base);
1045 aff_combination_scale (&base, double_int_minus_one);
1046 aff_combination_add (&diff, &base);
1048 tree_to_aff_combination_expand (DR_STEP (root), TREE_TYPE (DR_STEP (root)),
1049 &step, &name_expansions);
1050 if (!aff_combination_constant_multiple_p (&diff, &step, &off))
1051 return false;
1053 if (off != double_int::from_uhwi (distance))
1054 return false;
1056 return true;
1059 /* Finds looparound phi node of LOOP that copies the value of REF, and if its
1060 initial value is correct (equal to initial value of REF shifted by one
1061 iteration), returns the phi node. Otherwise, NULL_TREE is returned. ROOT
1062 is the root of the current chain. */
1064 static gimple
1065 find_looparound_phi (struct loop *loop, dref ref, dref root)
1067 tree name, init, init_ref;
1068 gimple phi = NULL, init_stmt;
1069 edge latch = loop_latch_edge (loop);
1070 struct data_reference init_dr;
1071 gimple_stmt_iterator psi;
1073 if (is_gimple_assign (ref->stmt))
1075 if (DR_IS_READ (ref->ref))
1076 name = gimple_assign_lhs (ref->stmt);
1077 else
1078 name = gimple_assign_rhs1 (ref->stmt);
1080 else
1081 name = PHI_RESULT (ref->stmt);
1082 if (!name)
1083 return NULL;
1085 for (psi = gsi_start_phis (loop->header); !gsi_end_p (psi); gsi_next (&psi))
1087 phi = gsi_stmt (psi);
1088 if (PHI_ARG_DEF_FROM_EDGE (phi, latch) == name)
1089 break;
1092 if (gsi_end_p (psi))
1093 return NULL;
1095 init = PHI_ARG_DEF_FROM_EDGE (phi, loop_preheader_edge (loop));
1096 if (TREE_CODE (init) != SSA_NAME)
1097 return NULL;
1098 init_stmt = SSA_NAME_DEF_STMT (init);
1099 if (gimple_code (init_stmt) != GIMPLE_ASSIGN)
1100 return NULL;
1101 gcc_assert (gimple_assign_lhs (init_stmt) == init);
1103 init_ref = gimple_assign_rhs1 (init_stmt);
1104 if (!REFERENCE_CLASS_P (init_ref)
1105 && !DECL_P (init_ref))
1106 return NULL;
1108 /* Analyze the behavior of INIT_REF with respect to LOOP (innermost
1109 loop enclosing PHI). */
1110 memset (&init_dr, 0, sizeof (struct data_reference));
1111 DR_REF (&init_dr) = init_ref;
1112 DR_STMT (&init_dr) = phi;
1113 if (!dr_analyze_innermost (&init_dr, loop))
1114 return NULL;
1116 if (!valid_initializer_p (&init_dr, ref->distance + 1, root->ref))
1117 return NULL;
1119 return phi;
1122 /* Adds a reference for the looparound copy of REF in PHI to CHAIN. */
1124 static void
1125 insert_looparound_copy (chain_p chain, dref ref, gimple phi)
1127 dref nw = XCNEW (struct dref_d), aref;
1128 unsigned i;
1130 nw->stmt = phi;
1131 nw->distance = ref->distance + 1;
1132 nw->always_accessed = 1;
1134 FOR_EACH_VEC_ELT (chain->refs, i, aref)
1135 if (aref->distance >= nw->distance)
1136 break;
1137 chain->refs.safe_insert (i, nw);
1139 if (nw->distance > chain->length)
1141 chain->length = nw->distance;
1142 chain->has_max_use_after = false;
1146 /* For references in CHAIN that are copied around the LOOP (created previously
1147 by PRE, or by user), add the results of such copies to the chain. This
1148 enables us to remove the copies by unrolling, and may need less registers
1149 (also, it may allow us to combine chains together). */
1151 static void
1152 add_looparound_copies (struct loop *loop, chain_p chain)
1154 unsigned i;
1155 dref ref, root = get_chain_root (chain);
1156 gimple phi;
1158 FOR_EACH_VEC_ELT (chain->refs, i, ref)
1160 phi = find_looparound_phi (loop, ref, root);
1161 if (!phi)
1162 continue;
1164 bitmap_set_bit (looparound_phis, SSA_NAME_VERSION (PHI_RESULT (phi)));
1165 insert_looparound_copy (chain, ref, phi);
1169 /* Find roots of the values and determine distances in the component COMP.
1170 The references are redistributed into CHAINS. LOOP is the current
1171 loop. */
1173 static void
1174 determine_roots_comp (struct loop *loop,
1175 struct component *comp,
1176 vec<chain_p> *chains)
1178 unsigned i;
1179 dref a;
1180 chain_p chain = NULL;
1181 double_int last_ofs = double_int_zero;
1183 /* Invariants are handled specially. */
1184 if (comp->comp_step == RS_INVARIANT)
1186 chain = make_invariant_chain (comp);
1187 chains->safe_push (chain);
1188 return;
1191 comp->refs.qsort (order_drefs);
1193 FOR_EACH_VEC_ELT (comp->refs, i, a)
1195 if (!chain || DR_IS_WRITE (a->ref)
1196 || double_int::from_uhwi (MAX_DISTANCE).ule (a->offset - last_ofs))
1198 if (nontrivial_chain_p (chain))
1200 add_looparound_copies (loop, chain);
1201 chains->safe_push (chain);
1203 else
1204 release_chain (chain);
1205 chain = make_rooted_chain (a);
1206 last_ofs = a->offset;
1207 continue;
1210 add_ref_to_chain (chain, a);
1213 if (nontrivial_chain_p (chain))
1215 add_looparound_copies (loop, chain);
1216 chains->safe_push (chain);
1218 else
1219 release_chain (chain);
1222 /* Find roots of the values and determine distances in components COMPS, and
1223 separates the references to CHAINS. LOOP is the current loop. */
1225 static void
1226 determine_roots (struct loop *loop,
1227 struct component *comps, vec<chain_p> *chains)
1229 struct component *comp;
1231 for (comp = comps; comp; comp = comp->next)
1232 determine_roots_comp (loop, comp, chains);
1235 /* Replace the reference in statement STMT with temporary variable
1236 NEW_TREE. If SET is true, NEW_TREE is instead initialized to the value of
1237 the reference in the statement. IN_LHS is true if the reference
1238 is in the lhs of STMT, false if it is in rhs. */
1240 static void
1241 replace_ref_with (gimple stmt, tree new_tree, bool set, bool in_lhs)
1243 tree val;
1244 gimple new_stmt;
1245 gimple_stmt_iterator bsi, psi;
1247 if (gimple_code (stmt) == GIMPLE_PHI)
1249 gcc_assert (!in_lhs && !set);
1251 val = PHI_RESULT (stmt);
1252 bsi = gsi_after_labels (gimple_bb (stmt));
1253 psi = gsi_for_stmt (stmt);
1254 remove_phi_node (&psi, false);
1256 /* Turn the phi node into GIMPLE_ASSIGN. */
1257 new_stmt = gimple_build_assign (val, new_tree);
1258 gsi_insert_before (&bsi, new_stmt, GSI_NEW_STMT);
1259 return;
1262 /* Since the reference is of gimple_reg type, it should only
1263 appear as lhs or rhs of modify statement. */
1264 gcc_assert (is_gimple_assign (stmt));
1266 bsi = gsi_for_stmt (stmt);
1268 /* If we do not need to initialize NEW_TREE, just replace the use of OLD. */
1269 if (!set)
1271 gcc_assert (!in_lhs);
1272 gimple_assign_set_rhs_from_tree (&bsi, new_tree);
1273 stmt = gsi_stmt (bsi);
1274 update_stmt (stmt);
1275 return;
1278 if (in_lhs)
1280 /* We have statement
1282 OLD = VAL
1284 If OLD is a memory reference, then VAL is gimple_val, and we transform
1285 this to
1287 OLD = VAL
1288 NEW = VAL
1290 Otherwise, we are replacing a combination chain,
1291 VAL is the expression that performs the combination, and OLD is an
1292 SSA name. In this case, we transform the assignment to
1294 OLD = VAL
1295 NEW = OLD
1299 val = gimple_assign_lhs (stmt);
1300 if (TREE_CODE (val) != SSA_NAME)
1302 val = gimple_assign_rhs1 (stmt);
1303 gcc_assert (gimple_assign_single_p (stmt));
1304 if (TREE_CLOBBER_P (val))
1305 val = get_or_create_ssa_default_def (cfun, SSA_NAME_VAR (new_tree));
1306 else
1307 gcc_assert (gimple_assign_copy_p (stmt));
1310 else
1312 /* VAL = OLD
1314 is transformed to
1316 VAL = OLD
1317 NEW = VAL */
1319 val = gimple_assign_lhs (stmt);
1322 new_stmt = gimple_build_assign (new_tree, unshare_expr (val));
1323 gsi_insert_after (&bsi, new_stmt, GSI_NEW_STMT);
1326 /* Returns the reference to the address of REF in the ITER-th iteration of
1327 LOOP, or NULL if we fail to determine it (ITER may be negative). We
1328 try to preserve the original shape of the reference (not rewrite it
1329 as an indirect ref to the address), to make tree_could_trap_p in
1330 prepare_initializers_chain return false more often. */
1332 static tree
1333 ref_at_iteration (struct loop *loop, tree ref, int iter)
1335 tree idx, *idx_p, type, val, op0 = NULL_TREE, ret;
1336 affine_iv iv;
1337 bool ok;
1339 if (handled_component_p (ref))
1341 op0 = ref_at_iteration (loop, TREE_OPERAND (ref, 0), iter);
1342 if (!op0)
1343 return NULL_TREE;
1345 else if (!INDIRECT_REF_P (ref)
1346 && TREE_CODE (ref) != MEM_REF)
1347 return unshare_expr (ref);
1349 if (TREE_CODE (ref) == MEM_REF)
1351 ret = unshare_expr (ref);
1352 idx = TREE_OPERAND (ref, 0);
1353 idx_p = &TREE_OPERAND (ret, 0);
1355 else if (TREE_CODE (ref) == COMPONENT_REF)
1357 /* Check that the offset is loop invariant. */
1358 if (TREE_OPERAND (ref, 2)
1359 && !expr_invariant_in_loop_p (loop, TREE_OPERAND (ref, 2)))
1360 return NULL_TREE;
1362 return build3 (COMPONENT_REF, TREE_TYPE (ref), op0,
1363 unshare_expr (TREE_OPERAND (ref, 1)),
1364 unshare_expr (TREE_OPERAND (ref, 2)));
1366 else if (TREE_CODE (ref) == ARRAY_REF)
1368 /* Check that the lower bound and the step are loop invariant. */
1369 if (TREE_OPERAND (ref, 2)
1370 && !expr_invariant_in_loop_p (loop, TREE_OPERAND (ref, 2)))
1371 return NULL_TREE;
1372 if (TREE_OPERAND (ref, 3)
1373 && !expr_invariant_in_loop_p (loop, TREE_OPERAND (ref, 3)))
1374 return NULL_TREE;
1376 ret = build4 (ARRAY_REF, TREE_TYPE (ref), op0, NULL_TREE,
1377 unshare_expr (TREE_OPERAND (ref, 2)),
1378 unshare_expr (TREE_OPERAND (ref, 3)));
1379 idx = TREE_OPERAND (ref, 1);
1380 idx_p = &TREE_OPERAND (ret, 1);
1382 else
1383 return NULL_TREE;
1385 ok = simple_iv (loop, loop, idx, &iv, true);
1386 if (!ok)
1387 return NULL_TREE;
1388 iv.base = expand_simple_operations (iv.base);
1389 if (integer_zerop (iv.step))
1390 *idx_p = unshare_expr (iv.base);
1391 else
1393 type = TREE_TYPE (iv.base);
1394 if (POINTER_TYPE_P (type))
1396 val = fold_build2 (MULT_EXPR, sizetype, iv.step,
1397 size_int (iter));
1398 val = fold_build_pointer_plus (iv.base, val);
1400 else
1402 val = fold_build2 (MULT_EXPR, type, iv.step,
1403 build_int_cst_type (type, iter));
1404 val = fold_build2 (PLUS_EXPR, type, iv.base, val);
1406 *idx_p = unshare_expr (val);
1409 return ret;
1412 /* Get the initialization expression for the INDEX-th temporary variable
1413 of CHAIN. */
1415 static tree
1416 get_init_expr (chain_p chain, unsigned index)
1418 if (chain->type == CT_COMBINATION)
1420 tree e1 = get_init_expr (chain->ch1, index);
1421 tree e2 = get_init_expr (chain->ch2, index);
1423 return fold_build2 (chain->op, chain->rslt_type, e1, e2);
1425 else
1426 return chain->inits[index];
1429 /* Returns a new temporary variable used for the I-th variable carrying
1430 value of REF. The variable's uid is marked in TMP_VARS. */
1432 static tree
1433 predcom_tmp_var (tree ref, unsigned i, bitmap tmp_vars)
1435 tree type = TREE_TYPE (ref);
1436 /* We never access the components of the temporary variable in predictive
1437 commoning. */
1438 tree var = create_tmp_reg (type, get_lsm_tmp_name (ref, i));
1439 bitmap_set_bit (tmp_vars, DECL_UID (var));
1440 return var;
1443 /* Creates the variables for CHAIN, as well as phi nodes for them and
1444 initialization on entry to LOOP. Uids of the newly created
1445 temporary variables are marked in TMP_VARS. */
1447 static void
1448 initialize_root_vars (struct loop *loop, chain_p chain, bitmap tmp_vars)
1450 unsigned i;
1451 unsigned n = chain->length;
1452 dref root = get_chain_root (chain);
1453 bool reuse_first = !chain->has_max_use_after;
1454 tree ref, init, var, next;
1455 gimple phi;
1456 gimple_seq stmts;
1457 edge entry = loop_preheader_edge (loop), latch = loop_latch_edge (loop);
1459 /* If N == 0, then all the references are within the single iteration. And
1460 since this is an nonempty chain, reuse_first cannot be true. */
1461 gcc_assert (n > 0 || !reuse_first);
1463 chain->vars.create (n + 1);
1465 if (chain->type == CT_COMBINATION)
1466 ref = gimple_assign_lhs (root->stmt);
1467 else
1468 ref = DR_REF (root->ref);
1470 for (i = 0; i < n + (reuse_first ? 0 : 1); i++)
1472 var = predcom_tmp_var (ref, i, tmp_vars);
1473 chain->vars.quick_push (var);
1475 if (reuse_first)
1476 chain->vars.quick_push (chain->vars[0]);
1478 FOR_EACH_VEC_ELT (chain->vars, i, var)
1479 chain->vars[i] = make_ssa_name (var, NULL);
1481 for (i = 0; i < n; i++)
1483 var = chain->vars[i];
1484 next = chain->vars[i + 1];
1485 init = get_init_expr (chain, i);
1487 init = force_gimple_operand (init, &stmts, true, NULL_TREE);
1488 if (stmts)
1489 gsi_insert_seq_on_edge_immediate (entry, stmts);
1491 phi = create_phi_node (var, loop->header);
1492 add_phi_arg (phi, init, entry, UNKNOWN_LOCATION);
1493 add_phi_arg (phi, next, latch, UNKNOWN_LOCATION);
1497 /* Create the variables and initialization statement for root of chain
1498 CHAIN. Uids of the newly created temporary variables are marked
1499 in TMP_VARS. */
1501 static void
1502 initialize_root (struct loop *loop, chain_p chain, bitmap tmp_vars)
1504 dref root = get_chain_root (chain);
1505 bool in_lhs = (chain->type == CT_STORE_LOAD
1506 || chain->type == CT_COMBINATION);
1508 initialize_root_vars (loop, chain, tmp_vars);
1509 replace_ref_with (root->stmt,
1510 chain->vars[chain->length],
1511 true, in_lhs);
1514 /* Initializes a variable for load motion for ROOT and prepares phi nodes and
1515 initialization on entry to LOOP if necessary. The ssa name for the variable
1516 is stored in VARS. If WRITTEN is true, also a phi node to copy its value
1517 around the loop is created. Uid of the newly created temporary variable
1518 is marked in TMP_VARS. INITS is the list containing the (single)
1519 initializer. */
1521 static void
1522 initialize_root_vars_lm (struct loop *loop, dref root, bool written,
1523 vec<tree> *vars, vec<tree> inits,
1524 bitmap tmp_vars)
1526 unsigned i;
1527 tree ref = DR_REF (root->ref), init, var, next;
1528 gimple_seq stmts;
1529 gimple phi;
1530 edge entry = loop_preheader_edge (loop), latch = loop_latch_edge (loop);
1532 /* Find the initializer for the variable, and check that it cannot
1533 trap. */
1534 init = inits[0];
1536 vars->create (written ? 2 : 1);
1537 var = predcom_tmp_var (ref, 0, tmp_vars);
1538 vars->quick_push (var);
1539 if (written)
1540 vars->quick_push ((*vars)[0]);
1542 FOR_EACH_VEC_ELT (*vars, i, var)
1543 (*vars)[i] = make_ssa_name (var, NULL);
1545 var = (*vars)[0];
1547 init = force_gimple_operand (init, &stmts, written, NULL_TREE);
1548 if (stmts)
1549 gsi_insert_seq_on_edge_immediate (entry, stmts);
1551 if (written)
1553 next = (*vars)[1];
1554 phi = create_phi_node (var, loop->header);
1555 add_phi_arg (phi, init, entry, UNKNOWN_LOCATION);
1556 add_phi_arg (phi, next, latch, UNKNOWN_LOCATION);
1558 else
1560 gimple init_stmt = gimple_build_assign (var, init);
1561 gsi_insert_on_edge_immediate (entry, init_stmt);
1566 /* Execute load motion for references in chain CHAIN. Uids of the newly
1567 created temporary variables are marked in TMP_VARS. */
1569 static void
1570 execute_load_motion (struct loop *loop, chain_p chain, bitmap tmp_vars)
1572 vec<tree> vars;
1573 dref a;
1574 unsigned n_writes = 0, ridx, i;
1575 tree var;
1577 gcc_assert (chain->type == CT_INVARIANT);
1578 gcc_assert (!chain->combined);
1579 FOR_EACH_VEC_ELT (chain->refs, i, a)
1580 if (DR_IS_WRITE (a->ref))
1581 n_writes++;
1583 /* If there are no reads in the loop, there is nothing to do. */
1584 if (n_writes == chain->refs.length ())
1585 return;
1587 initialize_root_vars_lm (loop, get_chain_root (chain), n_writes > 0,
1588 &vars, chain->inits, tmp_vars);
1590 ridx = 0;
1591 FOR_EACH_VEC_ELT (chain->refs, i, a)
1593 bool is_read = DR_IS_READ (a->ref);
1595 if (DR_IS_WRITE (a->ref))
1597 n_writes--;
1598 if (n_writes)
1600 var = vars[0];
1601 var = make_ssa_name (SSA_NAME_VAR (var), NULL);
1602 vars[0] = var;
1604 else
1605 ridx = 1;
1608 replace_ref_with (a->stmt, vars[ridx],
1609 !is_read, !is_read);
1612 vars.release ();
1615 /* Returns the single statement in that NAME is used, excepting
1616 the looparound phi nodes contained in one of the chains. If there is no
1617 such statement, or more statements, NULL is returned. */
1619 static gimple
1620 single_nonlooparound_use (tree name)
1622 use_operand_p use;
1623 imm_use_iterator it;
1624 gimple stmt, ret = NULL;
1626 FOR_EACH_IMM_USE_FAST (use, it, name)
1628 stmt = USE_STMT (use);
1630 if (gimple_code (stmt) == GIMPLE_PHI)
1632 /* Ignore uses in looparound phi nodes. Uses in other phi nodes
1633 could not be processed anyway, so just fail for them. */
1634 if (bitmap_bit_p (looparound_phis,
1635 SSA_NAME_VERSION (PHI_RESULT (stmt))))
1636 continue;
1638 return NULL;
1640 else if (is_gimple_debug (stmt))
1641 continue;
1642 else if (ret != NULL)
1643 return NULL;
1644 else
1645 ret = stmt;
1648 return ret;
1651 /* Remove statement STMT, as well as the chain of assignments in that it is
1652 used. */
1654 static void
1655 remove_stmt (gimple stmt)
1657 tree name;
1658 gimple next;
1659 gimple_stmt_iterator psi;
1661 if (gimple_code (stmt) == GIMPLE_PHI)
1663 name = PHI_RESULT (stmt);
1664 next = single_nonlooparound_use (name);
1665 reset_debug_uses (stmt);
1666 psi = gsi_for_stmt (stmt);
1667 remove_phi_node (&psi, true);
1669 if (!next
1670 || !gimple_assign_ssa_name_copy_p (next)
1671 || gimple_assign_rhs1 (next) != name)
1672 return;
1674 stmt = next;
1677 while (1)
1679 gimple_stmt_iterator bsi;
1681 bsi = gsi_for_stmt (stmt);
1683 name = gimple_assign_lhs (stmt);
1684 gcc_assert (TREE_CODE (name) == SSA_NAME);
1686 next = single_nonlooparound_use (name);
1687 reset_debug_uses (stmt);
1689 unlink_stmt_vdef (stmt);
1690 gsi_remove (&bsi, true);
1691 release_defs (stmt);
1693 if (!next
1694 || !gimple_assign_ssa_name_copy_p (next)
1695 || gimple_assign_rhs1 (next) != name)
1696 return;
1698 stmt = next;
1702 /* Perform the predictive commoning optimization for a chain CHAIN.
1703 Uids of the newly created temporary variables are marked in TMP_VARS.*/
1705 static void
1706 execute_pred_commoning_chain (struct loop *loop, chain_p chain,
1707 bitmap tmp_vars)
1709 unsigned i;
1710 dref a;
1711 tree var;
1713 if (chain->combined)
1715 /* For combined chains, just remove the statements that are used to
1716 compute the values of the expression (except for the root one). */
1717 for (i = 1; chain->refs.iterate (i, &a); i++)
1718 remove_stmt (a->stmt);
1720 else
1722 /* For non-combined chains, set up the variables that hold its value,
1723 and replace the uses of the original references by these
1724 variables. */
1725 initialize_root (loop, chain, tmp_vars);
1726 for (i = 1; chain->refs.iterate (i, &a); i++)
1728 var = chain->vars[chain->length - a->distance];
1729 replace_ref_with (a->stmt, var, false, false);
1734 /* Determines the unroll factor necessary to remove as many temporary variable
1735 copies as possible. CHAINS is the list of chains that will be
1736 optimized. */
1738 static unsigned
1739 determine_unroll_factor (vec<chain_p> chains)
1741 chain_p chain;
1742 unsigned factor = 1, af, nfactor, i;
1743 unsigned max = PARAM_VALUE (PARAM_MAX_UNROLL_TIMES);
1745 FOR_EACH_VEC_ELT (chains, i, chain)
1747 if (chain->type == CT_INVARIANT || chain->combined)
1748 continue;
1750 /* The best unroll factor for this chain is equal to the number of
1751 temporary variables that we create for it. */
1752 af = chain->length;
1753 if (chain->has_max_use_after)
1754 af++;
1756 nfactor = factor * af / gcd (factor, af);
1757 if (nfactor <= max)
1758 factor = nfactor;
1761 return factor;
1764 /* Perform the predictive commoning optimization for CHAINS.
1765 Uids of the newly created temporary variables are marked in TMP_VARS. */
1767 static void
1768 execute_pred_commoning (struct loop *loop, vec<chain_p> chains,
1769 bitmap tmp_vars)
1771 chain_p chain;
1772 unsigned i;
1774 FOR_EACH_VEC_ELT (chains, i, chain)
1776 if (chain->type == CT_INVARIANT)
1777 execute_load_motion (loop, chain, tmp_vars);
1778 else
1779 execute_pred_commoning_chain (loop, chain, tmp_vars);
1782 update_ssa (TODO_update_ssa_only_virtuals);
1785 /* For each reference in CHAINS, if its defining statement is
1786 phi node, record the ssa name that is defined by it. */
1788 static void
1789 replace_phis_by_defined_names (vec<chain_p> chains)
1791 chain_p chain;
1792 dref a;
1793 unsigned i, j;
1795 FOR_EACH_VEC_ELT (chains, i, chain)
1796 FOR_EACH_VEC_ELT (chain->refs, j, a)
1798 if (gimple_code (a->stmt) == GIMPLE_PHI)
1800 a->name_defined_by_phi = PHI_RESULT (a->stmt);
1801 a->stmt = NULL;
1806 /* For each reference in CHAINS, if name_defined_by_phi is not
1807 NULL, use it to set the stmt field. */
1809 static void
1810 replace_names_by_phis (vec<chain_p> chains)
1812 chain_p chain;
1813 dref a;
1814 unsigned i, j;
1816 FOR_EACH_VEC_ELT (chains, i, chain)
1817 FOR_EACH_VEC_ELT (chain->refs, j, a)
1818 if (a->stmt == NULL)
1820 a->stmt = SSA_NAME_DEF_STMT (a->name_defined_by_phi);
1821 gcc_assert (gimple_code (a->stmt) == GIMPLE_PHI);
1822 a->name_defined_by_phi = NULL_TREE;
1826 /* Wrapper over execute_pred_commoning, to pass it as a callback
1827 to tree_transform_and_unroll_loop. */
1829 struct epcc_data
1831 vec<chain_p> chains;
1832 bitmap tmp_vars;
1835 static void
1836 execute_pred_commoning_cbck (struct loop *loop, void *data)
1838 struct epcc_data *const dta = (struct epcc_data *) data;
1840 /* Restore phi nodes that were replaced by ssa names before
1841 tree_transform_and_unroll_loop (see detailed description in
1842 tree_predictive_commoning_loop). */
1843 replace_names_by_phis (dta->chains);
1844 execute_pred_commoning (loop, dta->chains, dta->tmp_vars);
1847 /* Base NAME and all the names in the chain of phi nodes that use it
1848 on variable VAR. The phi nodes are recognized by being in the copies of
1849 the header of the LOOP. */
1851 static void
1852 base_names_in_chain_on (struct loop *loop, tree name, tree var)
1854 gimple stmt, phi;
1855 imm_use_iterator iter;
1857 replace_ssa_name_symbol (name, var);
1859 while (1)
1861 phi = NULL;
1862 FOR_EACH_IMM_USE_STMT (stmt, iter, name)
1864 if (gimple_code (stmt) == GIMPLE_PHI
1865 && flow_bb_inside_loop_p (loop, gimple_bb (stmt)))
1867 phi = stmt;
1868 BREAK_FROM_IMM_USE_STMT (iter);
1871 if (!phi)
1872 return;
1874 name = PHI_RESULT (phi);
1875 replace_ssa_name_symbol (name, var);
1879 /* Given an unrolled LOOP after predictive commoning, remove the
1880 register copies arising from phi nodes by changing the base
1881 variables of SSA names. TMP_VARS is the set of the temporary variables
1882 for those we want to perform this. */
1884 static void
1885 eliminate_temp_copies (struct loop *loop, bitmap tmp_vars)
1887 edge e;
1888 gimple phi, stmt;
1889 tree name, use, var;
1890 gimple_stmt_iterator psi;
1892 e = loop_latch_edge (loop);
1893 for (psi = gsi_start_phis (loop->header); !gsi_end_p (psi); gsi_next (&psi))
1895 phi = gsi_stmt (psi);
1896 name = PHI_RESULT (phi);
1897 var = SSA_NAME_VAR (name);
1898 if (!var || !bitmap_bit_p (tmp_vars, DECL_UID (var)))
1899 continue;
1900 use = PHI_ARG_DEF_FROM_EDGE (phi, e);
1901 gcc_assert (TREE_CODE (use) == SSA_NAME);
1903 /* Base all the ssa names in the ud and du chain of NAME on VAR. */
1904 stmt = SSA_NAME_DEF_STMT (use);
1905 while (gimple_code (stmt) == GIMPLE_PHI
1906 /* In case we could not unroll the loop enough to eliminate
1907 all copies, we may reach the loop header before the defining
1908 statement (in that case, some register copies will be present
1909 in loop latch in the final code, corresponding to the newly
1910 created looparound phi nodes). */
1911 && gimple_bb (stmt) != loop->header)
1913 gcc_assert (single_pred_p (gimple_bb (stmt)));
1914 use = PHI_ARG_DEF (stmt, 0);
1915 stmt = SSA_NAME_DEF_STMT (use);
1918 base_names_in_chain_on (loop, use, var);
1922 /* Returns true if CHAIN is suitable to be combined. */
1924 static bool
1925 chain_can_be_combined_p (chain_p chain)
1927 return (!chain->combined
1928 && (chain->type == CT_LOAD || chain->type == CT_COMBINATION));
1931 /* Returns the modify statement that uses NAME. Skips over assignment
1932 statements, NAME is replaced with the actual name used in the returned
1933 statement. */
1935 static gimple
1936 find_use_stmt (tree *name)
1938 gimple stmt;
1939 tree rhs, lhs;
1941 /* Skip over assignments. */
1942 while (1)
1944 stmt = single_nonlooparound_use (*name);
1945 if (!stmt)
1946 return NULL;
1948 if (gimple_code (stmt) != GIMPLE_ASSIGN)
1949 return NULL;
1951 lhs = gimple_assign_lhs (stmt);
1952 if (TREE_CODE (lhs) != SSA_NAME)
1953 return NULL;
1955 if (gimple_assign_copy_p (stmt))
1957 rhs = gimple_assign_rhs1 (stmt);
1958 if (rhs != *name)
1959 return NULL;
1961 *name = lhs;
1963 else if (get_gimple_rhs_class (gimple_assign_rhs_code (stmt))
1964 == GIMPLE_BINARY_RHS)
1965 return stmt;
1966 else
1967 return NULL;
1971 /* Returns true if we may perform reassociation for operation CODE in TYPE. */
1973 static bool
1974 may_reassociate_p (tree type, enum tree_code code)
1976 if (FLOAT_TYPE_P (type)
1977 && !flag_unsafe_math_optimizations)
1978 return false;
1980 return (commutative_tree_code (code)
1981 && associative_tree_code (code));
1984 /* If the operation used in STMT is associative and commutative, go through the
1985 tree of the same operations and returns its root. Distance to the root
1986 is stored in DISTANCE. */
1988 static gimple
1989 find_associative_operation_root (gimple stmt, unsigned *distance)
1991 tree lhs;
1992 gimple next;
1993 enum tree_code code = gimple_assign_rhs_code (stmt);
1994 tree type = TREE_TYPE (gimple_assign_lhs (stmt));
1995 unsigned dist = 0;
1997 if (!may_reassociate_p (type, code))
1998 return NULL;
2000 while (1)
2002 lhs = gimple_assign_lhs (stmt);
2003 gcc_assert (TREE_CODE (lhs) == SSA_NAME);
2005 next = find_use_stmt (&lhs);
2006 if (!next
2007 || gimple_assign_rhs_code (next) != code)
2008 break;
2010 stmt = next;
2011 dist++;
2014 if (distance)
2015 *distance = dist;
2016 return stmt;
2019 /* Returns the common statement in that NAME1 and NAME2 have a use. If there
2020 is no such statement, returns NULL_TREE. In case the operation used on
2021 NAME1 and NAME2 is associative and commutative, returns the root of the
2022 tree formed by this operation instead of the statement that uses NAME1 or
2023 NAME2. */
2025 static gimple
2026 find_common_use_stmt (tree *name1, tree *name2)
2028 gimple stmt1, stmt2;
2030 stmt1 = find_use_stmt (name1);
2031 if (!stmt1)
2032 return NULL;
2034 stmt2 = find_use_stmt (name2);
2035 if (!stmt2)
2036 return NULL;
2038 if (stmt1 == stmt2)
2039 return stmt1;
2041 stmt1 = find_associative_operation_root (stmt1, NULL);
2042 if (!stmt1)
2043 return NULL;
2044 stmt2 = find_associative_operation_root (stmt2, NULL);
2045 if (!stmt2)
2046 return NULL;
2048 return (stmt1 == stmt2 ? stmt1 : NULL);
2051 /* Checks whether R1 and R2 are combined together using CODE, with the result
2052 in RSLT_TYPE, in order R1 CODE R2 if SWAP is false and in order R2 CODE R1
2053 if it is true. If CODE is ERROR_MARK, set these values instead. */
2055 static bool
2056 combinable_refs_p (dref r1, dref r2,
2057 enum tree_code *code, bool *swap, tree *rslt_type)
2059 enum tree_code acode;
2060 bool aswap;
2061 tree atype;
2062 tree name1, name2;
2063 gimple stmt;
2065 name1 = name_for_ref (r1);
2066 name2 = name_for_ref (r2);
2067 gcc_assert (name1 != NULL_TREE && name2 != NULL_TREE);
2069 stmt = find_common_use_stmt (&name1, &name2);
2071 if (!stmt)
2072 return false;
2074 acode = gimple_assign_rhs_code (stmt);
2075 aswap = (!commutative_tree_code (acode)
2076 && gimple_assign_rhs1 (stmt) != name1);
2077 atype = TREE_TYPE (gimple_assign_lhs (stmt));
2079 if (*code == ERROR_MARK)
2081 *code = acode;
2082 *swap = aswap;
2083 *rslt_type = atype;
2084 return true;
2087 return (*code == acode
2088 && *swap == aswap
2089 && *rslt_type == atype);
2092 /* Remove OP from the operation on rhs of STMT, and replace STMT with
2093 an assignment of the remaining operand. */
2095 static void
2096 remove_name_from_operation (gimple stmt, tree op)
2098 tree other_op;
2099 gimple_stmt_iterator si;
2101 gcc_assert (is_gimple_assign (stmt));
2103 if (gimple_assign_rhs1 (stmt) == op)
2104 other_op = gimple_assign_rhs2 (stmt);
2105 else
2106 other_op = gimple_assign_rhs1 (stmt);
2108 si = gsi_for_stmt (stmt);
2109 gimple_assign_set_rhs_from_tree (&si, other_op);
2111 /* We should not have reallocated STMT. */
2112 gcc_assert (gsi_stmt (si) == stmt);
2114 update_stmt (stmt);
2117 /* Reassociates the expression in that NAME1 and NAME2 are used so that they
2118 are combined in a single statement, and returns this statement. */
2120 static gimple
2121 reassociate_to_the_same_stmt (tree name1, tree name2)
2123 gimple stmt1, stmt2, root1, root2, s1, s2;
2124 gimple new_stmt, tmp_stmt;
2125 tree new_name, tmp_name, var, r1, r2;
2126 unsigned dist1, dist2;
2127 enum tree_code code;
2128 tree type = TREE_TYPE (name1);
2129 gimple_stmt_iterator bsi;
2131 stmt1 = find_use_stmt (&name1);
2132 stmt2 = find_use_stmt (&name2);
2133 root1 = find_associative_operation_root (stmt1, &dist1);
2134 root2 = find_associative_operation_root (stmt2, &dist2);
2135 code = gimple_assign_rhs_code (stmt1);
2137 gcc_assert (root1 && root2 && root1 == root2
2138 && code == gimple_assign_rhs_code (stmt2));
2140 /* Find the root of the nearest expression in that both NAME1 and NAME2
2141 are used. */
2142 r1 = name1;
2143 s1 = stmt1;
2144 r2 = name2;
2145 s2 = stmt2;
2147 while (dist1 > dist2)
2149 s1 = find_use_stmt (&r1);
2150 r1 = gimple_assign_lhs (s1);
2151 dist1--;
2153 while (dist2 > dist1)
2155 s2 = find_use_stmt (&r2);
2156 r2 = gimple_assign_lhs (s2);
2157 dist2--;
2160 while (s1 != s2)
2162 s1 = find_use_stmt (&r1);
2163 r1 = gimple_assign_lhs (s1);
2164 s2 = find_use_stmt (&r2);
2165 r2 = gimple_assign_lhs (s2);
2168 /* Remove NAME1 and NAME2 from the statements in that they are used
2169 currently. */
2170 remove_name_from_operation (stmt1, name1);
2171 remove_name_from_operation (stmt2, name2);
2173 /* Insert the new statement combining NAME1 and NAME2 before S1, and
2174 combine it with the rhs of S1. */
2175 var = create_tmp_reg (type, "predreastmp");
2176 new_name = make_ssa_name (var, NULL);
2177 new_stmt = gimple_build_assign_with_ops (code, new_name, name1, name2);
2179 var = create_tmp_reg (type, "predreastmp");
2180 tmp_name = make_ssa_name (var, NULL);
2182 /* Rhs of S1 may now be either a binary expression with operation
2183 CODE, or gimple_val (in case that stmt1 == s1 or stmt2 == s1,
2184 so that name1 or name2 was removed from it). */
2185 tmp_stmt = gimple_build_assign_with_ops (gimple_assign_rhs_code (s1),
2186 tmp_name,
2187 gimple_assign_rhs1 (s1),
2188 gimple_assign_rhs2 (s1));
2190 bsi = gsi_for_stmt (s1);
2191 gimple_assign_set_rhs_with_ops (&bsi, code, new_name, tmp_name);
2192 s1 = gsi_stmt (bsi);
2193 update_stmt (s1);
2195 gsi_insert_before (&bsi, new_stmt, GSI_SAME_STMT);
2196 gsi_insert_before (&bsi, tmp_stmt, GSI_SAME_STMT);
2198 return new_stmt;
2201 /* Returns the statement that combines references R1 and R2. In case R1
2202 and R2 are not used in the same statement, but they are used with an
2203 associative and commutative operation in the same expression, reassociate
2204 the expression so that they are used in the same statement. */
2206 static gimple
2207 stmt_combining_refs (dref r1, dref r2)
2209 gimple stmt1, stmt2;
2210 tree name1 = name_for_ref (r1);
2211 tree name2 = name_for_ref (r2);
2213 stmt1 = find_use_stmt (&name1);
2214 stmt2 = find_use_stmt (&name2);
2215 if (stmt1 == stmt2)
2216 return stmt1;
2218 return reassociate_to_the_same_stmt (name1, name2);
2221 /* Tries to combine chains CH1 and CH2 together. If this succeeds, the
2222 description of the new chain is returned, otherwise we return NULL. */
2224 static chain_p
2225 combine_chains (chain_p ch1, chain_p ch2)
2227 dref r1, r2, nw;
2228 enum tree_code op = ERROR_MARK;
2229 bool swap = false;
2230 chain_p new_chain;
2231 unsigned i;
2232 gimple root_stmt;
2233 tree rslt_type = NULL_TREE;
2235 if (ch1 == ch2)
2236 return NULL;
2237 if (ch1->length != ch2->length)
2238 return NULL;
2240 if (ch1->refs.length () != ch2->refs.length ())
2241 return NULL;
2243 for (i = 0; (ch1->refs.iterate (i, &r1)
2244 && ch2->refs.iterate (i, &r2)); i++)
2246 if (r1->distance != r2->distance)
2247 return NULL;
2249 if (!combinable_refs_p (r1, r2, &op, &swap, &rslt_type))
2250 return NULL;
2253 if (swap)
2255 chain_p tmp = ch1;
2256 ch1 = ch2;
2257 ch2 = tmp;
2260 new_chain = XCNEW (struct chain);
2261 new_chain->type = CT_COMBINATION;
2262 new_chain->op = op;
2263 new_chain->ch1 = ch1;
2264 new_chain->ch2 = ch2;
2265 new_chain->rslt_type = rslt_type;
2266 new_chain->length = ch1->length;
2268 for (i = 0; (ch1->refs.iterate (i, &r1)
2269 && ch2->refs.iterate (i, &r2)); i++)
2271 nw = XCNEW (struct dref_d);
2272 nw->stmt = stmt_combining_refs (r1, r2);
2273 nw->distance = r1->distance;
2275 new_chain->refs.safe_push (nw);
2278 new_chain->has_max_use_after = false;
2279 root_stmt = get_chain_root (new_chain)->stmt;
2280 for (i = 1; new_chain->refs.iterate (i, &nw); i++)
2282 if (nw->distance == new_chain->length
2283 && !stmt_dominates_stmt_p (nw->stmt, root_stmt))
2285 new_chain->has_max_use_after = true;
2286 break;
2290 ch1->combined = true;
2291 ch2->combined = true;
2292 return new_chain;
2295 /* Try to combine the CHAINS. */
2297 static void
2298 try_combine_chains (vec<chain_p> *chains)
2300 unsigned i, j;
2301 chain_p ch1, ch2, cch;
2302 vec<chain_p> worklist = vNULL;
2304 FOR_EACH_VEC_ELT (*chains, i, ch1)
2305 if (chain_can_be_combined_p (ch1))
2306 worklist.safe_push (ch1);
2308 while (!worklist.is_empty ())
2310 ch1 = worklist.pop ();
2311 if (!chain_can_be_combined_p (ch1))
2312 continue;
2314 FOR_EACH_VEC_ELT (*chains, j, ch2)
2316 if (!chain_can_be_combined_p (ch2))
2317 continue;
2319 cch = combine_chains (ch1, ch2);
2320 if (cch)
2322 worklist.safe_push (cch);
2323 chains->safe_push (cch);
2324 break;
2329 worklist.release ();
2332 /* Prepare initializers for CHAIN in LOOP. Returns false if this is
2333 impossible because one of these initializers may trap, true otherwise. */
2335 static bool
2336 prepare_initializers_chain (struct loop *loop, chain_p chain)
2338 unsigned i, n = (chain->type == CT_INVARIANT) ? 1 : chain->length;
2339 struct data_reference *dr = get_chain_root (chain)->ref;
2340 tree init;
2341 gimple_seq stmts;
2342 dref laref;
2343 edge entry = loop_preheader_edge (loop);
2345 /* Find the initializers for the variables, and check that they cannot
2346 trap. */
2347 chain->inits.create (n);
2348 for (i = 0; i < n; i++)
2349 chain->inits.quick_push (NULL_TREE);
2351 /* If we have replaced some looparound phi nodes, use their initializers
2352 instead of creating our own. */
2353 FOR_EACH_VEC_ELT (chain->refs, i, laref)
2355 if (gimple_code (laref->stmt) != GIMPLE_PHI)
2356 continue;
2358 gcc_assert (laref->distance > 0);
2359 chain->inits[n - laref->distance]
2360 = PHI_ARG_DEF_FROM_EDGE (laref->stmt, entry);
2363 for (i = 0; i < n; i++)
2365 if (chain->inits[i] != NULL_TREE)
2366 continue;
2368 init = ref_at_iteration (loop, DR_REF (dr), (int) i - n);
2369 if (!init)
2370 return false;
2372 if (!chain->all_always_accessed && tree_could_trap_p (init))
2373 return false;
2375 init = force_gimple_operand (init, &stmts, false, NULL_TREE);
2376 if (stmts)
2377 gsi_insert_seq_on_edge_immediate (entry, stmts);
2379 chain->inits[i] = init;
2382 return true;
2385 /* Prepare initializers for CHAINS in LOOP, and free chains that cannot
2386 be used because the initializers might trap. */
2388 static void
2389 prepare_initializers (struct loop *loop, vec<chain_p> chains)
2391 chain_p chain;
2392 unsigned i;
2394 for (i = 0; i < chains.length (); )
2396 chain = chains[i];
2397 if (prepare_initializers_chain (loop, chain))
2398 i++;
2399 else
2401 release_chain (chain);
2402 chains.unordered_remove (i);
2407 /* Performs predictive commoning for LOOP. Returns true if LOOP was
2408 unrolled. */
2410 static bool
2411 tree_predictive_commoning_loop (struct loop *loop)
2413 vec<loop_p> loop_nest;
2414 vec<data_reference_p> datarefs;
2415 vec<ddr_p> dependences;
2416 struct component *components;
2417 vec<chain_p> chains = vNULL;
2418 unsigned unroll_factor;
2419 struct tree_niter_desc desc;
2420 bool unroll = false;
2421 edge exit;
2422 bitmap tmp_vars;
2424 if (dump_file && (dump_flags & TDF_DETAILS))
2425 fprintf (dump_file, "Processing loop %d\n", loop->num);
2427 /* Find the data references and split them into components according to their
2428 dependence relations. */
2429 datarefs.create (10);
2430 dependences.create (10);
2431 loop_nest.create (3);
2432 if (! compute_data_dependences_for_loop (loop, true, &loop_nest, &datarefs,
2433 &dependences))
2435 if (dump_file && (dump_flags & TDF_DETAILS))
2436 fprintf (dump_file, "Cannot analyze data dependencies\n");
2437 loop_nest.release ();
2438 free_data_refs (datarefs);
2439 free_dependence_relations (dependences);
2440 return false;
2443 if (dump_file && (dump_flags & TDF_DETAILS))
2444 dump_data_dependence_relations (dump_file, dependences);
2446 components = split_data_refs_to_components (loop, datarefs, dependences);
2447 loop_nest.release ();
2448 free_dependence_relations (dependences);
2449 if (!components)
2451 free_data_refs (datarefs);
2452 return false;
2455 if (dump_file && (dump_flags & TDF_DETAILS))
2457 fprintf (dump_file, "Initial state:\n\n");
2458 dump_components (dump_file, components);
2461 /* Find the suitable components and split them into chains. */
2462 components = filter_suitable_components (loop, components);
2464 tmp_vars = BITMAP_ALLOC (NULL);
2465 looparound_phis = BITMAP_ALLOC (NULL);
2466 determine_roots (loop, components, &chains);
2467 release_components (components);
2469 if (!chains.exists ())
2471 if (dump_file && (dump_flags & TDF_DETAILS))
2472 fprintf (dump_file,
2473 "Predictive commoning failed: no suitable chains\n");
2474 goto end;
2476 prepare_initializers (loop, chains);
2478 /* Try to combine the chains that are always worked with together. */
2479 try_combine_chains (&chains);
2481 if (dump_file && (dump_flags & TDF_DETAILS))
2483 fprintf (dump_file, "Before commoning:\n\n");
2484 dump_chains (dump_file, chains);
2487 /* Determine the unroll factor, and if the loop should be unrolled, ensure
2488 that its number of iterations is divisible by the factor. */
2489 unroll_factor = determine_unroll_factor (chains);
2490 scev_reset ();
2491 unroll = (unroll_factor > 1
2492 && can_unroll_loop_p (loop, unroll_factor, &desc));
2493 exit = single_dom_exit (loop);
2495 /* Execute the predictive commoning transformations, and possibly unroll the
2496 loop. */
2497 if (unroll)
2499 struct epcc_data dta;
2501 if (dump_file && (dump_flags & TDF_DETAILS))
2502 fprintf (dump_file, "Unrolling %u times.\n", unroll_factor);
2504 dta.chains = chains;
2505 dta.tmp_vars = tmp_vars;
2507 update_ssa (TODO_update_ssa_only_virtuals);
2509 /* Cfg manipulations performed in tree_transform_and_unroll_loop before
2510 execute_pred_commoning_cbck is called may cause phi nodes to be
2511 reallocated, which is a problem since CHAINS may point to these
2512 statements. To fix this, we store the ssa names defined by the
2513 phi nodes here instead of the phi nodes themselves, and restore
2514 the phi nodes in execute_pred_commoning_cbck. A bit hacky. */
2515 replace_phis_by_defined_names (chains);
2517 tree_transform_and_unroll_loop (loop, unroll_factor, exit, &desc,
2518 execute_pred_commoning_cbck, &dta);
2519 eliminate_temp_copies (loop, tmp_vars);
2521 else
2523 if (dump_file && (dump_flags & TDF_DETAILS))
2524 fprintf (dump_file,
2525 "Executing predictive commoning without unrolling.\n");
2526 execute_pred_commoning (loop, chains, tmp_vars);
2529 end: ;
2530 release_chains (chains);
2531 free_data_refs (datarefs);
2532 BITMAP_FREE (tmp_vars);
2533 BITMAP_FREE (looparound_phis);
2535 free_affine_expand_cache (&name_expansions);
2537 return unroll;
2540 /* Runs predictive commoning. */
2542 unsigned
2543 tree_predictive_commoning (void)
2545 bool unrolled = false;
2546 struct loop *loop;
2547 loop_iterator li;
2548 unsigned ret = 0;
2550 initialize_original_copy_tables ();
2551 FOR_EACH_LOOP (li, loop, LI_ONLY_INNERMOST)
2552 if (optimize_loop_for_speed_p (loop))
2554 unrolled |= tree_predictive_commoning_loop (loop);
2557 if (unrolled)
2559 scev_reset ();
2560 ret = TODO_cleanup_cfg;
2562 free_original_copy_tables ();
2564 return ret;
2567 /* Predictive commoning Pass. */
2569 static unsigned
2570 run_tree_predictive_commoning (void)
2572 if (!current_loops)
2573 return 0;
2575 return tree_predictive_commoning ();
2578 static bool
2579 gate_tree_predictive_commoning (void)
2581 return flag_predictive_commoning != 0;
2584 namespace {
2586 const pass_data pass_data_predcom =
2588 GIMPLE_PASS, /* type */
2589 "pcom", /* name */
2590 OPTGROUP_LOOP, /* optinfo_flags */
2591 true, /* has_gate */
2592 true, /* has_execute */
2593 TV_PREDCOM, /* tv_id */
2594 PROP_cfg, /* properties_required */
2595 0, /* properties_provided */
2596 0, /* properties_destroyed */
2597 0, /* todo_flags_start */
2598 TODO_update_ssa_only_virtuals, /* todo_flags_finish */
2601 class pass_predcom : public gimple_opt_pass
2603 public:
2604 pass_predcom (gcc::context *ctxt)
2605 : gimple_opt_pass (pass_data_predcom, ctxt)
2608 /* opt_pass methods: */
2609 bool gate () { return gate_tree_predictive_commoning (); }
2610 unsigned int execute () { return run_tree_predictive_commoning (); }
2612 }; // class pass_predcom
2614 } // anon namespace
2616 gimple_opt_pass *
2617 make_pass_predcom (gcc::context *ctxt)
2619 return new pass_predcom (ctxt);