]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-predcom.c
2013-09-12 Martin Jambor <mjambor@suse.cz>
[thirdparty/gcc.git] / gcc / tree-predcom.c
CommitLineData
ad4a85ad 1/* Predictive commoning.
711789cc 2 Copyright (C) 2005-2013 Free Software Foundation, Inc.
48e1416a 3
ad4a85ad 4This file is part of GCC.
48e1416a 5
ad4a85ad 6GCC is free software; you can redistribute it and/or modify it
7under the terms of the GNU General Public License as published by the
8c4c00c1 8Free Software Foundation; either version 3, or (at your option) any
ad4a85ad 9later version.
48e1416a 10
ad4a85ad 11GCC is distributed in the hope that it will be useful, but WITHOUT
12ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
48e1416a 15
ad4a85ad 16You should have received a copy of the GNU General Public License
8c4c00c1 17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
ad4a85ad 19
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.
30
31 Let us demonstrate what is done on an example:
48e1416a 32
ad4a85ad 33 for (i = 0; i < 100; i++)
34 {
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];
39 }
40
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:
46
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}
51
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.
48e1416a 66
ad4a85ad 67 In our example, we get the following chains (the chain for c is invalid).
68
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}
72
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
48e1416a 79 single root reference of the chain (adjusting their distance
ad4a85ad 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),
83
84 a[i] --> (*) 2, a[i+1] --> (*) 1, a[i+2] (*)
85 b[10] --> (*) 1, b[10] (*)
86
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
92
93 e[i] + f[i+1] + e[i+1] + f[i]
94
95 can be reassociated as
96
97 (e[i] + f[i]) + (e[i+1] + f[i+1])
98
99 and we can combine the chains for e and f into one chain.
100
101 5) For each root reference (end of the chain) R, let N be maximum distance
9d75589a 102 of a reference reusing its value. Variables R0 up to RN are created,
ad4a85ad 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.
111
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.
115
116 In our example, we get (only the parts concerning a and b are shown):
117 for (i = 0; i < 100; i++)
118 {
119 f = phi (a[0], s);
120 s = phi (a[1], f);
121 x = phi (b[10], x);
122
123 f = f + s;
124 a[i+2] = f;
125 x = x + i;
126 b[10] = x;
127 }
128
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.
48e1416a 135
ad4a85ad 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.
139
140 In our case, F = 2 and the (main loop of the) result is
141
142 for (i = 0; i < ...; i += 2)
143 {
144 f = phi (a[0], f);
145 s = phi (a[1], s);
146 x = phi (b[10], x);
147
148 f = f + s;
149 a[i+2] = f;
150 x = x + i;
151 b[10] = x;
152
153 s = s + f;
154 a[i+3] = s;
155 x = x + i;
156 b[10] = x;
157 }
158
159 TODO -- stores killing other stores can be taken into account, e.g.,
160 for (i = 0; i < n; i++)
161 {
162 a[i] = 1;
163 a[i+2] = 2;
164 }
165
166 can be replaced with
167
168 t0 = a[0];
169 t1 = a[1];
170 for (i = 0; i < n; i++)
171 {
172 a[i] = 1;
173 t2 = 2;
174 t0 = t1;
175 t1 = t2;
176 }
177 a[n] = t0;
178 a[n+1] = t1;
179
180 The interesting part is that this would generalize store motion; still, since
181 sm is performed elsewhere, it does not seem that important.
182
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. */
186
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-flow.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"
ce084dfc 200#include "gimple-pretty-print.h"
ad4a85ad 201#include "tree-pass.h"
202#include "tree-affine.h"
203#include "tree-inline.h"
204
205/* The maximum number of iterations between the considered memory
206 references. */
207
208#define MAX_DISTANCE (target_avail_regs < 16 ? 4 : 8)
48e1416a 209
75a70cf9 210/* Data references (or phi nodes that carry data reference values across
211 loop iterations). */
ad4a85ad 212
26dbec0a 213typedef struct dref_d
ad4a85ad 214{
215 /* The reference itself. */
216 struct data_reference *ref;
217
218 /* The statement in that the reference appears. */
75a70cf9 219 gimple stmt;
220
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;
ad4a85ad 225
226 /* Distance of the reference from the root of the chain (in number of
227 iterations of the loop). */
228 unsigned distance;
229
230 /* Number of iterations offset from the first reference in the component. */
231 double_int offset;
232
233 /* Number of the reference in a component, in dominance ordering. */
234 unsigned pos;
235
236 /* True if the memory reference is always accessed when the loop is
237 entered. */
238 unsigned always_accessed : 1;
239} *dref;
240
ad4a85ad 241
242/* Type of the chain of the references. */
243
244enum chain_type
245{
246 /* The addresses of the references in the chain are constant. */
247 CT_INVARIANT,
248
249 /* There are only loads in the chain. */
250 CT_LOAD,
251
252 /* Root of the chain is store, the rest are loads. */
253 CT_STORE_LOAD,
254
255 /* A combination of two chains. */
256 CT_COMBINATION
257};
258
259/* Chains of data references. */
260
261typedef struct chain
262{
263 /* Type of the chain. */
264 enum chain_type type;
265
266 /* For combination chains, the operator and the two chains that are
267 combined, and the type of the result. */
f4e36c33 268 enum tree_code op;
ad4a85ad 269 tree rslt_type;
270 struct chain *ch1, *ch2;
271
272 /* The references in the chain. */
f1f41a6c 273 vec<dref> refs;
ad4a85ad 274
275 /* The maximum distance of the reference in the chain from the root. */
276 unsigned length;
277
278 /* The variables used to copy the value throughout iterations. */
f1f41a6c 279 vec<tree> vars;
ad4a85ad 280
281 /* Initializers for the variables. */
f1f41a6c 282 vec<tree> inits;
ad4a85ad 283
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;
287
288 /* True if all the memory references in the chain are always accessed. */
289 unsigned all_always_accessed : 1;
290
291 /* True if this chain was combined together with some other chain. */
292 unsigned combined : 1;
293} *chain_p;
294
ad4a85ad 295
296/* Describes the knowledge about the step of the memory references in
297 the component. */
298
299enum ref_step_type
300{
301 /* The step is zero. */
302 RS_INVARIANT,
303
304 /* The step is nonzero. */
305 RS_NONZERO,
306
307 /* The step may or may not be nonzero. */
308 RS_ANY
309};
310
311/* Components of the data dependence graph. */
312
313struct component
314{
315 /* The references in the component. */
f1f41a6c 316 vec<dref> refs;
ad4a85ad 317
318 /* What we know about the step of the references in the component. */
319 enum ref_step_type comp_step;
320
321 /* Next component in the list. */
322 struct component *next;
323};
324
325/* Bitmap of ssa names defined by looparound phi nodes covered by chains. */
326
327static bitmap looparound_phis;
328
329/* Cache used by tree_to_aff_combination_expand. */
330
331static struct pointer_map_t *name_expansions;
332
333/* Dumps data reference REF to FILE. */
334
335extern void dump_dref (FILE *, dref);
336void
337dump_dref (FILE *file, dref ref)
338{
339 if (ref->ref)
340 {
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");
345
346 fprintf (file, " offset ");
347 dump_double_int (file, ref->offset, false);
348 fprintf (file, "\n");
349
350 fprintf (file, " distance %u\n", ref->distance);
351 }
352 else
353 {
75a70cf9 354 if (gimple_code (ref->stmt) == GIMPLE_PHI)
ad4a85ad 355 fprintf (file, " looparound ref\n");
356 else
357 fprintf (file, " combination ref\n");
358 fprintf (file, " in statement ");
75a70cf9 359 print_gimple_stmt (file, ref->stmt, 0, TDF_SLIM);
ad4a85ad 360 fprintf (file, "\n");
361 fprintf (file, " distance %u\n", ref->distance);
362 }
363
364}
365
366/* Dumps CHAIN to FILE. */
367
368extern void dump_chain (FILE *, chain_p);
369void
370dump_chain (FILE *file, chain_p chain)
371{
372 dref a;
373 const char *chain_type;
374 unsigned i;
375 tree var;
376
377 switch (chain->type)
378 {
379 case CT_INVARIANT:
380 chain_type = "Load motion";
381 break;
382
383 case CT_LOAD:
384 chain_type = "Loads-only";
385 break;
386
387 case CT_STORE_LOAD:
388 chain_type = "Store-loads";
389 break;
390
391 case CT_COMBINATION:
392 chain_type = "Combination";
393 break;
394
395 default:
396 gcc_unreachable ();
397 }
398
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");
404
405 if (chain->type == CT_COMBINATION)
406 {
407 fprintf (file, " equal to %p %s %p in type ",
f4e36c33 408 (void *) chain->ch1, op_symbol_code (chain->op),
ad4a85ad 409 (void *) chain->ch2);
410 print_generic_expr (file, chain->rslt_type, TDF_SLIM);
411 fprintf (file, "\n");
412 }
413
f1f41a6c 414 if (chain->vars.exists ())
ad4a85ad 415 {
416 fprintf (file, " vars");
f1f41a6c 417 FOR_EACH_VEC_ELT (chain->vars, i, var)
ad4a85ad 418 {
419 fprintf (file, " ");
420 print_generic_expr (file, var, TDF_SLIM);
421 }
422 fprintf (file, "\n");
423 }
424
f1f41a6c 425 if (chain->inits.exists ())
ad4a85ad 426 {
427 fprintf (file, " inits");
f1f41a6c 428 FOR_EACH_VEC_ELT (chain->inits, i, var)
ad4a85ad 429 {
430 fprintf (file, " ");
431 print_generic_expr (file, var, TDF_SLIM);
432 }
433 fprintf (file, "\n");
434 }
435
436 fprintf (file, " references:\n");
f1f41a6c 437 FOR_EACH_VEC_ELT (chain->refs, i, a)
ad4a85ad 438 dump_dref (file, a);
439
440 fprintf (file, "\n");
441}
442
443/* Dumps CHAINS to FILE. */
444
f1f41a6c 445extern void dump_chains (FILE *, vec<chain_p> );
ad4a85ad 446void
f1f41a6c 447dump_chains (FILE *file, vec<chain_p> chains)
ad4a85ad 448{
449 chain_p chain;
450 unsigned i;
451
f1f41a6c 452 FOR_EACH_VEC_ELT (chains, i, chain)
ad4a85ad 453 dump_chain (file, chain);
454}
455
456/* Dumps COMP to FILE. */
457
458extern void dump_component (FILE *, struct component *);
459void
460dump_component (FILE *file, struct component *comp)
461{
462 dref a;
463 unsigned i;
464
465 fprintf (file, "Component%s:\n",
466 comp->comp_step == RS_INVARIANT ? " (invariant)" : "");
f1f41a6c 467 FOR_EACH_VEC_ELT (comp->refs, i, a)
ad4a85ad 468 dump_dref (file, a);
469 fprintf (file, "\n");
470}
471
472/* Dumps COMPS to FILE. */
473
474extern void dump_components (FILE *, struct component *);
475void
476dump_components (FILE *file, struct component *comps)
477{
478 struct component *comp;
479
480 for (comp = comps; comp; comp = comp->next)
481 dump_component (file, comp);
482}
483
484/* Frees a chain CHAIN. */
485
486static void
487release_chain (chain_p chain)
488{
489 dref ref;
490 unsigned i;
491
492 if (chain == NULL)
493 return;
494
f1f41a6c 495 FOR_EACH_VEC_ELT (chain->refs, i, ref)
ad4a85ad 496 free (ref);
497
f1f41a6c 498 chain->refs.release ();
499 chain->vars.release ();
500 chain->inits.release ();
ad4a85ad 501
502 free (chain);
503}
504
505/* Frees CHAINS. */
506
507static void
f1f41a6c 508release_chains (vec<chain_p> chains)
ad4a85ad 509{
510 unsigned i;
511 chain_p chain;
512
f1f41a6c 513 FOR_EACH_VEC_ELT (chains, i, chain)
ad4a85ad 514 release_chain (chain);
f1f41a6c 515 chains.release ();
ad4a85ad 516}
517
518/* Frees a component COMP. */
519
520static void
521release_component (struct component *comp)
522{
f1f41a6c 523 comp->refs.release ();
ad4a85ad 524 free (comp);
525}
526
527/* Frees list of components COMPS. */
528
529static void
530release_components (struct component *comps)
531{
532 struct component *act, *next;
533
534 for (act = comps; act; act = next)
535 {
536 next = act->next;
537 release_component (act);
538 }
539}
540
541/* Finds a root of tree given by FATHERS containing A, and performs path
542 shortening. */
543
544static unsigned
545component_of (unsigned fathers[], unsigned a)
546{
547 unsigned root, n;
548
549 for (root = a; root != fathers[root]; root = fathers[root])
550 continue;
551
552 for (; a != root; a = n)
553 {
554 n = fathers[a];
555 fathers[a] = root;
556 }
557
558 return root;
559}
560
561/* Join operation for DFU. FATHERS gives the tree, SIZES are sizes of the
562 components, A and B are components to merge. */
563
564static void
565merge_comps (unsigned fathers[], unsigned sizes[], unsigned a, unsigned b)
566{
567 unsigned ca = component_of (fathers, a);
568 unsigned cb = component_of (fathers, b);
569
570 if (ca == cb)
571 return;
572
573 if (sizes[ca] < sizes[cb])
574 {
575 sizes[cb] += sizes[ca];
576 fathers[ca] = cb;
577 }
578 else
579 {
580 sizes[ca] += sizes[cb];
581 fathers[cb] = ca;
582 }
583}
584
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. */
588
589static bool
590suitable_reference_p (struct data_reference *a, enum ref_step_type *ref_step)
591{
592 tree ref = DR_REF (a), step = DR_STEP (a);
593
594 if (!step
450c0971 595 || TREE_THIS_VOLATILE (ref)
154edec0 596 || !is_gimple_reg_type (TREE_TYPE (ref))
597 || tree_could_throw_p (ref))
ad4a85ad 598 return false;
599
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;
606
607 return true;
608}
609
610/* Stores DR_OFFSET (DR) + DR_INIT (DR) to OFFSET. */
611
612static void
613aff_combination_dr_offset (struct data_reference *dr, aff_tree *offset)
614{
a0553bff 615 tree type = TREE_TYPE (DR_OFFSET (dr));
ad4a85ad 616 aff_tree delta;
617
a0553bff 618 tree_to_aff_combination_expand (DR_OFFSET (dr), type, offset,
ad4a85ad 619 &name_expansions);
a0553bff 620 aff_combination_const (&delta, type, tree_to_double_int (DR_INIT (dr)));
ad4a85ad 621 aff_combination_add (offset, &delta);
622}
623
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. */
629
630static bool
631determine_offset (struct data_reference *a, struct data_reference *b,
632 double_int *off)
633{
634 aff_tree diff, baseb, step;
ca4882a2 635 tree typea, typeb;
636
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));
548044d8 640 if (!useless_type_conversion_p (typeb, typea))
ca4882a2 641 return false;
ad4a85ad 642
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;
648
649 if (integer_zerop (DR_STEP (a)))
650 {
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));
656 }
657
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);
664
a0553bff 665 tree_to_aff_combination_expand (DR_STEP (a), TREE_TYPE (DR_STEP (a)),
ad4a85ad 666 &step, &name_expansions);
667 return aff_combination_constant_multiple_p (&diff, &step, off);
668}
669
670/* Returns the last basic block in LOOP for that we are sure that
671 it is executed whenever the loop is entered. */
672
673static basic_block
674last_always_executed_block (struct loop *loop)
675{
676 unsigned i;
f1f41a6c 677 vec<edge> exits = get_loop_exit_edges (loop);
ad4a85ad 678 edge ex;
679 basic_block last = loop->latch;
680
f1f41a6c 681 FOR_EACH_VEC_ELT (exits, i, ex)
ad4a85ad 682 last = nearest_common_dominator (CDI_DOMINATORS, last, ex->src);
f1f41a6c 683 exits.release ();
ad4a85ad 684
685 return last;
686}
687
688/* Splits dependence graph on DATAREFS described by DEPENDS to components. */
689
690static struct component *
691split_data_refs_to_components (struct loop *loop,
f1f41a6c 692 vec<data_reference_p> datarefs,
693 vec<ddr_p> depends)
ad4a85ad 694{
f1f41a6c 695 unsigned i, n = datarefs.length ();
ad4a85ad 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);
48e1416a 705
f1f41a6c 706 FOR_EACH_VEC_ELT (datarefs, i, dr)
ad4a85ad 707 {
708 if (!DR_REF (dr))
709 {
710 /* A fake reference for call or asm_expr that may clobber memory;
711 just fail. */
712 goto end;
713 }
5c205353 714 dr->aux = (void *) (size_t) i;
ad4a85ad 715 comp_father[i] = i;
716 comp_size[i] = 1;
717 }
718
719 /* A component reserved for the "bad" data references. */
720 comp_father[n] = n;
721 comp_size[n] = 1;
722
f1f41a6c 723 FOR_EACH_VEC_ELT (datarefs, i, dr)
ad4a85ad 724 {
725 enum ref_step_type dummy;
726
727 if (!suitable_reference_p (dr, &dummy))
728 {
5c205353 729 ia = (unsigned) (size_t) dr->aux;
ad4a85ad 730 merge_comps (comp_father, comp_size, n, ia);
731 }
732 }
733
f1f41a6c 734 FOR_EACH_VEC_ELT (depends, i, ddr)
ad4a85ad 735 {
736 double_int dummy_off;
737
738 if (DDR_ARE_DEPENDENT (ddr) == chrec_known)
739 continue;
740
741 dra = DDR_A (ddr);
742 drb = DDR_B (ddr);
5c205353 743 ia = component_of (comp_father, (unsigned) (size_t) dra->aux);
744 ib = component_of (comp_father, (unsigned) (size_t) drb->aux);
ad4a85ad 745 if (ia == ib)
746 continue;
747
748 bad = component_of (comp_father, n);
749
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;
48e1416a 755
ad4a85ad 756 merge_comps (comp_father, comp_size, ia, ib);
757 }
758
759 comps = XCNEWVEC (struct component *, n);
760 bad = component_of (comp_father, n);
f1f41a6c 761 FOR_EACH_VEC_ELT (datarefs, i, dr)
ad4a85ad 762 {
5c205353 763 ia = (unsigned) (size_t) dr->aux;
ad4a85ad 764 ca = component_of (comp_father, ia);
765 if (ca == bad)
766 continue;
767
768 comp = comps[ca];
769 if (!comp)
770 {
771 comp = XCNEW (struct component);
f1f41a6c 772 comp->refs.create (comp_size[ca]);
ad4a85ad 773 comps[ca] = comp;
774 }
775
26dbec0a 776 dataref = XCNEW (struct dref_d);
ad4a85ad 777 dataref->ref = dr;
778 dataref->stmt = DR_STMT (dr);
779 dataref->offset = double_int_zero;
780 dataref->distance = 0;
781
782 dataref->always_accessed
783 = dominated_by_p (CDI_DOMINATORS, last_always_executed,
75a70cf9 784 gimple_bb (dataref->stmt));
f1f41a6c 785 dataref->pos = comp->refs.length ();
786 comp->refs.quick_push (dataref);
ad4a85ad 787 }
788
789 for (i = 0; i < n; i++)
790 {
791 comp = comps[i];
792 if (comp)
793 {
794 comp->next = comp_list;
795 comp_list = comp;
796 }
797 }
798 free (comps);
799
800end:
801 free (comp_father);
802 free (comp_size);
803 return comp_list;
804}
805
806/* Returns true if the component COMP satisfies the conditions
310d2511 807 described in 2) at the beginning of this file. LOOP is the current
ad4a85ad 808 loop. */
48e1416a 809
ad4a85ad 810static bool
811suitable_component_p (struct loop *loop, struct component *comp)
812{
813 unsigned i;
814 dref a, first;
815 basic_block ba, bp = loop->header;
816 bool ok, has_write = false;
817
f1f41a6c 818 FOR_EACH_VEC_ELT (comp->refs, i, a)
ad4a85ad 819 {
75a70cf9 820 ba = gimple_bb (a->stmt);
ad4a85ad 821
822 if (!just_once_each_iteration_p (loop, ba))
823 return false;
824
825 gcc_assert (dominated_by_p (CDI_DOMINATORS, ba, bp));
826 bp = ba;
827
9ff25603 828 if (DR_IS_WRITE (a->ref))
ad4a85ad 829 has_write = true;
830 }
831
f1f41a6c 832 first = comp->refs[0];
ad4a85ad 833 ok = suitable_reference_p (first->ref, &comp->comp_step);
834 gcc_assert (ok);
835 first->offset = double_int_zero;
836
f1f41a6c 837 for (i = 1; comp->refs.iterate (i, &a); i++)
ad4a85ad 838 {
839 if (!determine_offset (first->ref, a->ref, &a->offset))
840 return false;
841
842#ifdef ENABLE_CHECKING
843 {
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);
847 }
848#endif
849 }
850
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;
857
858 return true;
859}
48e1416a 860
ad4a85ad 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
310d2511 864 the beginning of this file. LOOP is the current loop. */
ad4a85ad 865
866static struct component *
867filter_suitable_components (struct loop *loop, struct component *comps)
868{
869 struct component **comp, *act;
870
871 for (comp = &comps; *comp; )
872 {
873 act = *comp;
874 if (suitable_component_p (loop, act))
875 comp = &act->next;
876 else
877 {
19af51e2 878 dref ref;
879 unsigned i;
880
ad4a85ad 881 *comp = act->next;
f1f41a6c 882 FOR_EACH_VEC_ELT (act->refs, i, ref)
19af51e2 883 free (ref);
ad4a85ad 884 release_component (act);
885 }
886 }
887
888 return comps;
889}
890
891/* Compares two drefs A and B by their offset and position. Callback for
892 qsort. */
893
894static int
895order_drefs (const void *a, const void *b)
896{
45ba1503 897 const dref *const da = (const dref *) a;
898 const dref *const db = (const dref *) b;
cf8f0e63 899 int offcmp = (*da)->offset.scmp ((*db)->offset);
ad4a85ad 900
901 if (offcmp != 0)
902 return offcmp;
903
904 return (*da)->pos - (*db)->pos;
905}
906
907/* Returns root of the CHAIN. */
908
909static inline dref
910get_chain_root (chain_p chain)
911{
f1f41a6c 912 return chain->refs[0];
ad4a85ad 913}
914
915/* Adds REF to the chain CHAIN. */
916
917static void
918add_ref_to_chain (chain_p chain, dref ref)
919{
920 dref root = get_chain_root (chain);
921 double_int dist;
922
cf8f0e63 923 gcc_assert (root->offset.sle (ref->offset));
924 dist = ref->offset - root->offset;
925 if (double_int::from_uhwi (MAX_DISTANCE).ule (dist))
19af51e2 926 {
927 free (ref);
928 return;
929 }
cf8f0e63 930 gcc_assert (dist.fits_uhwi ());
ad4a85ad 931
f1f41a6c 932 chain->refs.safe_push (ref);
ad4a85ad 933
cf8f0e63 934 ref->distance = dist.to_uhwi ();
ad4a85ad 935
936 if (ref->distance >= chain->length)
937 {
938 chain->length = ref->distance;
939 chain->has_max_use_after = false;
940 }
941
942 if (ref->distance == chain->length
943 && ref->pos > root->pos)
944 chain->has_max_use_after = true;
945
946 chain->all_always_accessed &= ref->always_accessed;
947}
948
949/* Returns the chain for invariant component COMP. */
950
951static chain_p
952make_invariant_chain (struct component *comp)
953{
954 chain_p chain = XCNEW (struct chain);
955 unsigned i;
956 dref ref;
957
958 chain->type = CT_INVARIANT;
959
960 chain->all_always_accessed = true;
961
f1f41a6c 962 FOR_EACH_VEC_ELT (comp->refs, i, ref)
ad4a85ad 963 {
f1f41a6c 964 chain->refs.safe_push (ref);
ad4a85ad 965 chain->all_always_accessed &= ref->always_accessed;
966 }
967
968 return chain;
969}
970
971/* Make a new chain rooted at REF. */
972
973static chain_p
974make_rooted_chain (dref ref)
975{
976 chain_p chain = XCNEW (struct chain);
977
978 chain->type = DR_IS_READ (ref->ref) ? CT_LOAD : CT_STORE_LOAD;
979
f1f41a6c 980 chain->refs.safe_push (ref);
ad4a85ad 981 chain->all_always_accessed = ref->always_accessed;
982
983 ref->distance = 0;
984
985 return chain;
986}
987
988/* Returns true if CHAIN is not trivial. */
989
990static bool
991nontrivial_chain_p (chain_p chain)
992{
f1f41a6c 993 return chain != NULL && chain->refs.length () > 1;
ad4a85ad 994}
995
996/* Returns the ssa name that contains the value of REF, or NULL_TREE if there
997 is no such name. */
998
999static tree
1000name_for_ref (dref ref)
1001{
1002 tree name;
1003
75a70cf9 1004 if (is_gimple_assign (ref->stmt))
ad4a85ad 1005 {
1006 if (!ref->ref || DR_IS_READ (ref->ref))
75a70cf9 1007 name = gimple_assign_lhs (ref->stmt);
ad4a85ad 1008 else
75a70cf9 1009 name = gimple_assign_rhs1 (ref->stmt);
ad4a85ad 1010 }
1011 else
1012 name = PHI_RESULT (ref->stmt);
1013
1014 return (TREE_CODE (name) == SSA_NAME ? name : NULL_TREE);
1015}
1016
1017/* Returns true if REF is a valid initializer for ROOT with given DISTANCE (in
1018 iterations of the innermost enclosing loop). */
1019
1020static bool
1021valid_initializer_p (struct data_reference *ref,
1022 unsigned distance, struct data_reference *root)
1023{
1024 aff_tree diff, base, step;
1025 double_int off;
1026
ad4a85ad 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;
1030
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)));
1034
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));
1040
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);
1047
a0553bff 1048 tree_to_aff_combination_expand (DR_STEP (root), TREE_TYPE (DR_STEP (root)),
1049 &step, &name_expansions);
ad4a85ad 1050 if (!aff_combination_constant_multiple_p (&diff, &step, &off))
1051 return false;
1052
cf8f0e63 1053 if (off != double_int::from_uhwi (distance))
ad4a85ad 1054 return false;
1055
1056 return true;
1057}
1058
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. */
1063
75a70cf9 1064static gimple
ad4a85ad 1065find_looparound_phi (struct loop *loop, dref ref, dref root)
1066{
75a70cf9 1067 tree name, init, init_ref;
1068 gimple phi = NULL, init_stmt;
ad4a85ad 1069 edge latch = loop_latch_edge (loop);
1070 struct data_reference init_dr;
75a70cf9 1071 gimple_stmt_iterator psi;
ad4a85ad 1072
75a70cf9 1073 if (is_gimple_assign (ref->stmt))
ad4a85ad 1074 {
1075 if (DR_IS_READ (ref->ref))
75a70cf9 1076 name = gimple_assign_lhs (ref->stmt);
ad4a85ad 1077 else
75a70cf9 1078 name = gimple_assign_rhs1 (ref->stmt);
ad4a85ad 1079 }
1080 else
1081 name = PHI_RESULT (ref->stmt);
1082 if (!name)
75a70cf9 1083 return NULL;
ad4a85ad 1084
75a70cf9 1085 for (psi = gsi_start_phis (loop->header); !gsi_end_p (psi); gsi_next (&psi))
1086 {
1087 phi = gsi_stmt (psi);
1088 if (PHI_ARG_DEF_FROM_EDGE (phi, latch) == name)
1089 break;
1090 }
ad4a85ad 1091
75a70cf9 1092 if (gsi_end_p (psi))
1093 return NULL;
ad4a85ad 1094
1095 init = PHI_ARG_DEF_FROM_EDGE (phi, loop_preheader_edge (loop));
1096 if (TREE_CODE (init) != SSA_NAME)
75a70cf9 1097 return NULL;
ad4a85ad 1098 init_stmt = SSA_NAME_DEF_STMT (init);
75a70cf9 1099 if (gimple_code (init_stmt) != GIMPLE_ASSIGN)
1100 return NULL;
1101 gcc_assert (gimple_assign_lhs (init_stmt) == init);
ad4a85ad 1102
75a70cf9 1103 init_ref = gimple_assign_rhs1 (init_stmt);
ad4a85ad 1104 if (!REFERENCE_CLASS_P (init_ref)
1105 && !DECL_P (init_ref))
75a70cf9 1106 return NULL;
ad4a85ad 1107
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;
0c257e4c 1113 if (!dr_analyze_innermost (&init_dr, loop))
880734c8 1114 return NULL;
ad4a85ad 1115
1116 if (!valid_initializer_p (&init_dr, ref->distance + 1, root->ref))
75a70cf9 1117 return NULL;
ad4a85ad 1118
1119 return phi;
1120}
1121
1122/* Adds a reference for the looparound copy of REF in PHI to CHAIN. */
1123
1124static void
75a70cf9 1125insert_looparound_copy (chain_p chain, dref ref, gimple phi)
ad4a85ad 1126{
26dbec0a 1127 dref nw = XCNEW (struct dref_d), aref;
ad4a85ad 1128 unsigned i;
1129
1130 nw->stmt = phi;
1131 nw->distance = ref->distance + 1;
1132 nw->always_accessed = 1;
1133
f1f41a6c 1134 FOR_EACH_VEC_ELT (chain->refs, i, aref)
ad4a85ad 1135 if (aref->distance >= nw->distance)
1136 break;
f1f41a6c 1137 chain->refs.safe_insert (i, nw);
ad4a85ad 1138
1139 if (nw->distance > chain->length)
1140 {
1141 chain->length = nw->distance;
1142 chain->has_max_use_after = false;
1143 }
1144}
1145
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). */
1150
1151static void
1152add_looparound_copies (struct loop *loop, chain_p chain)
1153{
1154 unsigned i;
1155 dref ref, root = get_chain_root (chain);
75a70cf9 1156 gimple phi;
ad4a85ad 1157
f1f41a6c 1158 FOR_EACH_VEC_ELT (chain->refs, i, ref)
ad4a85ad 1159 {
1160 phi = find_looparound_phi (loop, ref, root);
1161 if (!phi)
1162 continue;
1163
1164 bitmap_set_bit (looparound_phis, SSA_NAME_VERSION (PHI_RESULT (phi)));
1165 insert_looparound_copy (chain, ref, phi);
1166 }
1167}
1168
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. */
1172
1173static void
1174determine_roots_comp (struct loop *loop,
1175 struct component *comp,
f1f41a6c 1176 vec<chain_p> *chains)
ad4a85ad 1177{
1178 unsigned i;
1179 dref a;
1180 chain_p chain = NULL;
be2e5c02 1181 double_int last_ofs = double_int_zero;
ad4a85ad 1182
1183 /* Invariants are handled specially. */
1184 if (comp->comp_step == RS_INVARIANT)
1185 {
1186 chain = make_invariant_chain (comp);
f1f41a6c 1187 chains->safe_push (chain);
ad4a85ad 1188 return;
1189 }
1190
f1f41a6c 1191 comp->refs.qsort (order_drefs);
ad4a85ad 1192
f1f41a6c 1193 FOR_EACH_VEC_ELT (comp->refs, i, a)
ad4a85ad 1194 {
9ff25603 1195 if (!chain || DR_IS_WRITE (a->ref)
cf8f0e63 1196 || double_int::from_uhwi (MAX_DISTANCE).ule (a->offset - last_ofs))
ad4a85ad 1197 {
1198 if (nontrivial_chain_p (chain))
be2e5c02 1199 {
1200 add_looparound_copies (loop, chain);
f1f41a6c 1201 chains->safe_push (chain);
be2e5c02 1202 }
ad4a85ad 1203 else
1204 release_chain (chain);
1205 chain = make_rooted_chain (a);
be2e5c02 1206 last_ofs = a->offset;
ad4a85ad 1207 continue;
1208 }
1209
1210 add_ref_to_chain (chain, a);
1211 }
1212
1213 if (nontrivial_chain_p (chain))
1214 {
1215 add_looparound_copies (loop, chain);
f1f41a6c 1216 chains->safe_push (chain);
ad4a85ad 1217 }
1218 else
1219 release_chain (chain);
1220}
1221
1222/* Find roots of the values and determine distances in components COMPS, and
1223 separates the references to CHAINS. LOOP is the current loop. */
1224
1225static void
1226determine_roots (struct loop *loop,
f1f41a6c 1227 struct component *comps, vec<chain_p> *chains)
ad4a85ad 1228{
1229 struct component *comp;
1230
1231 for (comp = comps; comp; comp = comp->next)
1232 determine_roots_comp (loop, comp, chains);
1233}
1234
1235/* Replace the reference in statement STMT with temporary variable
f4e36c33 1236 NEW_TREE. If SET is true, NEW_TREE is instead initialized to the value of
ad4a85ad 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. */
1239
1240static void
f4e36c33 1241replace_ref_with (gimple stmt, tree new_tree, bool set, bool in_lhs)
ad4a85ad 1242{
75a70cf9 1243 tree val;
1244 gimple new_stmt;
1245 gimple_stmt_iterator bsi, psi;
ad4a85ad 1246
75a70cf9 1247 if (gimple_code (stmt) == GIMPLE_PHI)
ad4a85ad 1248 {
1249 gcc_assert (!in_lhs && !set);
1250
1251 val = PHI_RESULT (stmt);
75a70cf9 1252 bsi = gsi_after_labels (gimple_bb (stmt));
1253 psi = gsi_for_stmt (stmt);
1254 remove_phi_node (&psi, false);
ad4a85ad 1255
75a70cf9 1256 /* Turn the phi node into GIMPLE_ASSIGN. */
f4e36c33 1257 new_stmt = gimple_build_assign (val, new_tree);
75a70cf9 1258 gsi_insert_before (&bsi, new_stmt, GSI_NEW_STMT);
ad4a85ad 1259 return;
1260 }
48e1416a 1261
ad4a85ad 1262 /* Since the reference is of gimple_reg type, it should only
1263 appear as lhs or rhs of modify statement. */
75a70cf9 1264 gcc_assert (is_gimple_assign (stmt));
1265
1266 bsi = gsi_for_stmt (stmt);
ad4a85ad 1267
f4e36c33 1268 /* If we do not need to initialize NEW_TREE, just replace the use of OLD. */
ad4a85ad 1269 if (!set)
1270 {
1271 gcc_assert (!in_lhs);
f4e36c33 1272 gimple_assign_set_rhs_from_tree (&bsi, new_tree);
75a70cf9 1273 stmt = gsi_stmt (bsi);
ad4a85ad 1274 update_stmt (stmt);
1275 return;
1276 }
1277
ad4a85ad 1278 if (in_lhs)
1279 {
75a70cf9 1280 /* We have statement
48e1416a 1281
75a70cf9 1282 OLD = VAL
ad4a85ad 1283
75a70cf9 1284 If OLD is a memory reference, then VAL is gimple_val, and we transform
1285 this to
ad4a85ad 1286
1287 OLD = VAL
1288 NEW = VAL
1289
48e1416a 1290 Otherwise, we are replacing a combination chain,
75a70cf9 1291 VAL is the expression that performs the combination, and OLD is an
1292 SSA name. In this case, we transform the assignment to
1293
1294 OLD = VAL
1295 NEW = OLD
1296
1297 */
1298
1299 val = gimple_assign_lhs (stmt);
1300 if (TREE_CODE (val) != SSA_NAME)
1301 {
75a70cf9 1302 val = gimple_assign_rhs1 (stmt);
bbfbb5ba 1303 gcc_assert (gimple_assign_single_p (stmt));
1304 if (TREE_CLOBBER_P (val))
c6dfe037 1305 val = get_or_create_ssa_default_def (cfun, SSA_NAME_VAR (new_tree));
bbfbb5ba 1306 else
1307 gcc_assert (gimple_assign_copy_p (stmt));
75a70cf9 1308 }
ad4a85ad 1309 }
1310 else
1311 {
ad4a85ad 1312 /* VAL = OLD
1313
1314 is transformed to
1315
1316 VAL = OLD
1317 NEW = VAL */
75a70cf9 1318
1319 val = gimple_assign_lhs (stmt);
ad4a85ad 1320 }
1321
f4e36c33 1322 new_stmt = gimple_build_assign (new_tree, unshare_expr (val));
75a70cf9 1323 gsi_insert_after (&bsi, new_stmt, GSI_NEW_STMT);
ad4a85ad 1324}
1325
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. */
1331
1332static tree
1333ref_at_iteration (struct loop *loop, tree ref, int iter)
1334{
1335 tree idx, *idx_p, type, val, op0 = NULL_TREE, ret;
1336 affine_iv iv;
1337 bool ok;
1338
1339 if (handled_component_p (ref))
1340 {
1341 op0 = ref_at_iteration (loop, TREE_OPERAND (ref, 0), iter);
1342 if (!op0)
1343 return NULL_TREE;
1344 }
182cf5a9 1345 else if (!INDIRECT_REF_P (ref)
1346 && TREE_CODE (ref) != MEM_REF)
ad4a85ad 1347 return unshare_expr (ref);
1348
5d9de213 1349 if (TREE_CODE (ref) == MEM_REF)
ad4a85ad 1350 {
182cf5a9 1351 ret = unshare_expr (ref);
ad4a85ad 1352 idx = TREE_OPERAND (ref, 0);
1353 idx_p = &TREE_OPERAND (ret, 0);
1354 }
1355 else if (TREE_CODE (ref) == COMPONENT_REF)
1356 {
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;
1361
1362 return build3 (COMPONENT_REF, TREE_TYPE (ref), op0,
1363 unshare_expr (TREE_OPERAND (ref, 1)),
1364 unshare_expr (TREE_OPERAND (ref, 2)));
1365 }
1366 else if (TREE_CODE (ref) == ARRAY_REF)
1367 {
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;
1375
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);
1381 }
1382 else
1383 return NULL_TREE;
1384
76610704 1385 ok = simple_iv (loop, loop, idx, &iv, true);
ad4a85ad 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
1392 {
1393 type = TREE_TYPE (iv.base);
0de36bdb 1394 if (POINTER_TYPE_P (type))
1395 {
1396 val = fold_build2 (MULT_EXPR, sizetype, iv.step,
1397 size_int (iter));
2cc66f2a 1398 val = fold_build_pointer_plus (iv.base, val);
0de36bdb 1399 }
1400 else
1401 {
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);
1405 }
ad4a85ad 1406 *idx_p = unshare_expr (val);
1407 }
1408
1409 return ret;
1410}
1411
1412/* Get the initialization expression for the INDEX-th temporary variable
1413 of CHAIN. */
1414
1415static tree
1416get_init_expr (chain_p chain, unsigned index)
1417{
1418 if (chain->type == CT_COMBINATION)
1419 {
1420 tree e1 = get_init_expr (chain->ch1, index);
1421 tree e2 = get_init_expr (chain->ch2, index);
1422
f4e36c33 1423 return fold_build2 (chain->op, chain->rslt_type, e1, e2);
ad4a85ad 1424 }
1425 else
f1f41a6c 1426 return chain->inits[index];
ad4a85ad 1427}
1428
a4c3242a 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. */
1431
1432static tree
1433predcom_tmp_var (tree ref, unsigned i, bitmap tmp_vars)
1434{
1435 tree type = TREE_TYPE (ref);
a4c3242a 1436 /* We never access the components of the temporary variable in predictive
1437 commoning. */
2ac51e48 1438 tree var = create_tmp_reg (type, get_lsm_tmp_name (ref, i));
a4c3242a 1439 bitmap_set_bit (tmp_vars, DECL_UID (var));
1440 return var;
1441}
1442
ad4a85ad 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. */
1446
1447static void
1448initialize_root_vars (struct loop *loop, chain_p chain, bitmap tmp_vars)
1449{
1450 unsigned i;
1451 unsigned n = chain->length;
1452 dref root = get_chain_root (chain);
1453 bool reuse_first = !chain->has_max_use_after;
75a70cf9 1454 tree ref, init, var, next;
1455 gimple phi;
1456 gimple_seq stmts;
ad4a85ad 1457 edge entry = loop_preheader_edge (loop), latch = loop_latch_edge (loop);
1458
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);
1462
f1f41a6c 1463 chain->vars.create (n + 1);
ad4a85ad 1464
1465 if (chain->type == CT_COMBINATION)
75a70cf9 1466 ref = gimple_assign_lhs (root->stmt);
ad4a85ad 1467 else
1468 ref = DR_REF (root->ref);
1469
1470 for (i = 0; i < n + (reuse_first ? 0 : 1); i++)
1471 {
a4c3242a 1472 var = predcom_tmp_var (ref, i, tmp_vars);
f1f41a6c 1473 chain->vars.quick_push (var);
ad4a85ad 1474 }
1475 if (reuse_first)
f1f41a6c 1476 chain->vars.quick_push (chain->vars[0]);
48e1416a 1477
f1f41a6c 1478 FOR_EACH_VEC_ELT (chain->vars, i, var)
1479 chain->vars[i] = make_ssa_name (var, NULL);
ad4a85ad 1480
1481 for (i = 0; i < n; i++)
1482 {
f1f41a6c 1483 var = chain->vars[i];
1484 next = chain->vars[i + 1];
ad4a85ad 1485 init = get_init_expr (chain, i);
1486
1487 init = force_gimple_operand (init, &stmts, true, NULL_TREE);
1488 if (stmts)
dd277d48 1489 gsi_insert_seq_on_edge_immediate (entry, stmts);
ad4a85ad 1490
1491 phi = create_phi_node (var, loop->header);
60d535d2 1492 add_phi_arg (phi, init, entry, UNKNOWN_LOCATION);
1493 add_phi_arg (phi, next, latch, UNKNOWN_LOCATION);
ad4a85ad 1494 }
1495}
1496
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. */
1500
1501static void
1502initialize_root (struct loop *loop, chain_p chain, bitmap tmp_vars)
1503{
1504 dref root = get_chain_root (chain);
1505 bool in_lhs = (chain->type == CT_STORE_LOAD
1506 || chain->type == CT_COMBINATION);
1507
1508 initialize_root_vars (loop, chain, tmp_vars);
1509 replace_ref_with (root->stmt,
f1f41a6c 1510 chain->vars[chain->length],
ad4a85ad 1511 true, in_lhs);
1512}
1513
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. */
1520
1521static void
1522initialize_root_vars_lm (struct loop *loop, dref root, bool written,
f1f41a6c 1523 vec<tree> *vars, vec<tree> inits,
ad4a85ad 1524 bitmap tmp_vars)
1525{
1526 unsigned i;
75a70cf9 1527 tree ref = DR_REF (root->ref), init, var, next;
1528 gimple_seq stmts;
1529 gimple phi;
ad4a85ad 1530 edge entry = loop_preheader_edge (loop), latch = loop_latch_edge (loop);
1531
1532 /* Find the initializer for the variable, and check that it cannot
1533 trap. */
f1f41a6c 1534 init = inits[0];
ad4a85ad 1535
f1f41a6c 1536 vars->create (written ? 2 : 1);
a4c3242a 1537 var = predcom_tmp_var (ref, 0, tmp_vars);
f1f41a6c 1538 vars->quick_push (var);
ad4a85ad 1539 if (written)
f1f41a6c 1540 vars->quick_push ((*vars)[0]);
48e1416a 1541
f1f41a6c 1542 FOR_EACH_VEC_ELT (*vars, i, var)
1543 (*vars)[i] = make_ssa_name (var, NULL);
ad4a85ad 1544
f1f41a6c 1545 var = (*vars)[0];
48e1416a 1546
ad4a85ad 1547 init = force_gimple_operand (init, &stmts, written, NULL_TREE);
1548 if (stmts)
dd277d48 1549 gsi_insert_seq_on_edge_immediate (entry, stmts);
ad4a85ad 1550
1551 if (written)
1552 {
f1f41a6c 1553 next = (*vars)[1];
ad4a85ad 1554 phi = create_phi_node (var, loop->header);
60d535d2 1555 add_phi_arg (phi, init, entry, UNKNOWN_LOCATION);
1556 add_phi_arg (phi, next, latch, UNKNOWN_LOCATION);
ad4a85ad 1557 }
1558 else
1559 {
75a70cf9 1560 gimple init_stmt = gimple_build_assign (var, init);
75a70cf9 1561 gsi_insert_on_edge_immediate (entry, init_stmt);
ad4a85ad 1562 }
1563}
1564
1565
1566/* Execute load motion for references in chain CHAIN. Uids of the newly
1567 created temporary variables are marked in TMP_VARS. */
1568
1569static void
1570execute_load_motion (struct loop *loop, chain_p chain, bitmap tmp_vars)
1571{
f1f41a6c 1572 vec<tree> vars;
ad4a85ad 1573 dref a;
1574 unsigned n_writes = 0, ridx, i;
1575 tree var;
1576
1577 gcc_assert (chain->type == CT_INVARIANT);
1578 gcc_assert (!chain->combined);
f1f41a6c 1579 FOR_EACH_VEC_ELT (chain->refs, i, a)
9ff25603 1580 if (DR_IS_WRITE (a->ref))
ad4a85ad 1581 n_writes++;
48e1416a 1582
ad4a85ad 1583 /* If there are no reads in the loop, there is nothing to do. */
f1f41a6c 1584 if (n_writes == chain->refs.length ())
ad4a85ad 1585 return;
1586
1587 initialize_root_vars_lm (loop, get_chain_root (chain), n_writes > 0,
1588 &vars, chain->inits, tmp_vars);
1589
1590 ridx = 0;
f1f41a6c 1591 FOR_EACH_VEC_ELT (chain->refs, i, a)
ad4a85ad 1592 {
1593 bool is_read = DR_IS_READ (a->ref);
ad4a85ad 1594
9ff25603 1595 if (DR_IS_WRITE (a->ref))
ad4a85ad 1596 {
1597 n_writes--;
1598 if (n_writes)
1599 {
f1f41a6c 1600 var = vars[0];
75a70cf9 1601 var = make_ssa_name (SSA_NAME_VAR (var), NULL);
f1f41a6c 1602 vars[0] = var;
ad4a85ad 1603 }
1604 else
1605 ridx = 1;
1606 }
48e1416a 1607
f1f41a6c 1608 replace_ref_with (a->stmt, vars[ridx],
ad4a85ad 1609 !is_read, !is_read);
1610 }
1611
f1f41a6c 1612 vars.release ();
ad4a85ad 1613}
1614
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
75a70cf9 1617 such statement, or more statements, NULL is returned. */
ad4a85ad 1618
75a70cf9 1619static gimple
ad4a85ad 1620single_nonlooparound_use (tree name)
1621{
1622 use_operand_p use;
1623 imm_use_iterator it;
75a70cf9 1624 gimple stmt, ret = NULL;
ad4a85ad 1625
1626 FOR_EACH_IMM_USE_FAST (use, it, name)
1627 {
1628 stmt = USE_STMT (use);
1629
75a70cf9 1630 if (gimple_code (stmt) == GIMPLE_PHI)
ad4a85ad 1631 {
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;
1637
75a70cf9 1638 return NULL;
ad4a85ad 1639 }
db16e52d 1640 else if (is_gimple_debug (stmt))
1641 continue;
75a70cf9 1642 else if (ret != NULL)
1643 return NULL;
ad4a85ad 1644 else
1645 ret = stmt;
1646 }
1647
1648 return ret;
1649}
1650
1651/* Remove statement STMT, as well as the chain of assignments in that it is
1652 used. */
1653
1654static void
75a70cf9 1655remove_stmt (gimple stmt)
ad4a85ad 1656{
75a70cf9 1657 tree name;
1658 gimple next;
1659 gimple_stmt_iterator psi;
ad4a85ad 1660
75a70cf9 1661 if (gimple_code (stmt) == GIMPLE_PHI)
ad4a85ad 1662 {
1663 name = PHI_RESULT (stmt);
1664 next = single_nonlooparound_use (name);
b6d5efe6 1665 reset_debug_uses (stmt);
75a70cf9 1666 psi = gsi_for_stmt (stmt);
1667 remove_phi_node (&psi, true);
ad4a85ad 1668
1669 if (!next
fb2d5860 1670 || !gimple_assign_ssa_name_copy_p (next)
75a70cf9 1671 || gimple_assign_rhs1 (next) != name)
ad4a85ad 1672 return;
1673
1674 stmt = next;
1675 }
1676
1677 while (1)
1678 {
75a70cf9 1679 gimple_stmt_iterator bsi;
48e1416a 1680
75a70cf9 1681 bsi = gsi_for_stmt (stmt);
ad4a85ad 1682
75a70cf9 1683 name = gimple_assign_lhs (stmt);
ad4a85ad 1684 gcc_assert (TREE_CODE (name) == SSA_NAME);
1685
1686 next = single_nonlooparound_use (name);
b6d5efe6 1687 reset_debug_uses (stmt);
ad4a85ad 1688
e70e8b13 1689 unlink_stmt_vdef (stmt);
75a70cf9 1690 gsi_remove (&bsi, true);
fb2d5860 1691 release_defs (stmt);
ad4a85ad 1692
1693 if (!next
fb2d5860 1694 || !gimple_assign_ssa_name_copy_p (next)
75a70cf9 1695 || gimple_assign_rhs1 (next) != name)
ad4a85ad 1696 return;
1697
1698 stmt = next;
1699 }
1700}
1701
1702/* Perform the predictive commoning optimization for a chain CHAIN.
1703 Uids of the newly created temporary variables are marked in TMP_VARS.*/
1704
1705static void
1706execute_pred_commoning_chain (struct loop *loop, chain_p chain,
1707 bitmap tmp_vars)
1708{
1709 unsigned i;
e70e8b13 1710 dref a;
ad4a85ad 1711 tree var;
1712
1713 if (chain->combined)
1714 {
1715 /* For combined chains, just remove the statements that are used to
1716 compute the values of the expression (except for the root one). */
f1f41a6c 1717 for (i = 1; chain->refs.iterate (i, &a); i++)
ad4a85ad 1718 remove_stmt (a->stmt);
1719 }
1720 else
1721 {
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. */
ad4a85ad 1725 initialize_root (loop, chain, tmp_vars);
f1f41a6c 1726 for (i = 1; chain->refs.iterate (i, &a); i++)
ad4a85ad 1727 {
f1f41a6c 1728 var = chain->vars[chain->length - a->distance];
ad4a85ad 1729 replace_ref_with (a->stmt, var, false, false);
1730 }
1731 }
1732}
1733
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. */
1737
1738static unsigned
f1f41a6c 1739determine_unroll_factor (vec<chain_p> chains)
ad4a85ad 1740{
1741 chain_p chain;
1742 unsigned factor = 1, af, nfactor, i;
1743 unsigned max = PARAM_VALUE (PARAM_MAX_UNROLL_TIMES);
1744
f1f41a6c 1745 FOR_EACH_VEC_ELT (chains, i, chain)
ad4a85ad 1746 {
1747 if (chain->type == CT_INVARIANT || chain->combined)
1748 continue;
1749
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++;
1755
1756 nfactor = factor * af / gcd (factor, af);
1757 if (nfactor <= max)
1758 factor = nfactor;
1759 }
1760
1761 return factor;
1762}
1763
1764/* Perform the predictive commoning optimization for CHAINS.
1765 Uids of the newly created temporary variables are marked in TMP_VARS. */
1766
1767static void
f1f41a6c 1768execute_pred_commoning (struct loop *loop, vec<chain_p> chains,
ad4a85ad 1769 bitmap tmp_vars)
1770{
1771 chain_p chain;
1772 unsigned i;
1773
f1f41a6c 1774 FOR_EACH_VEC_ELT (chains, i, chain)
ad4a85ad 1775 {
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);
1780 }
48e1416a 1781
ad4a85ad 1782 update_ssa (TODO_update_ssa_only_virtuals);
1783}
1784
310d2511 1785/* For each reference in CHAINS, if its defining statement is
75a70cf9 1786 phi node, record the ssa name that is defined by it. */
ad4a85ad 1787
1788static void
f1f41a6c 1789replace_phis_by_defined_names (vec<chain_p> chains)
ad4a85ad 1790{
1791 chain_p chain;
1792 dref a;
1793 unsigned i, j;
1794
f1f41a6c 1795 FOR_EACH_VEC_ELT (chains, i, chain)
1796 FOR_EACH_VEC_ELT (chain->refs, j, a)
ad4a85ad 1797 {
75a70cf9 1798 if (gimple_code (a->stmt) == GIMPLE_PHI)
1799 {
1800 a->name_defined_by_phi = PHI_RESULT (a->stmt);
1801 a->stmt = NULL;
1802 }
ad4a85ad 1803 }
1804}
1805
75a70cf9 1806/* For each reference in CHAINS, if name_defined_by_phi is not
1807 NULL, use it to set the stmt field. */
ad4a85ad 1808
1809static void
f1f41a6c 1810replace_names_by_phis (vec<chain_p> chains)
ad4a85ad 1811{
1812 chain_p chain;
1813 dref a;
1814 unsigned i, j;
1815
f1f41a6c 1816 FOR_EACH_VEC_ELT (chains, i, chain)
1817 FOR_EACH_VEC_ELT (chain->refs, j, a)
75a70cf9 1818 if (a->stmt == NULL)
ad4a85ad 1819 {
75a70cf9 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;
ad4a85ad 1823 }
1824}
1825
1826/* Wrapper over execute_pred_commoning, to pass it as a callback
1827 to tree_transform_and_unroll_loop. */
1828
1829struct epcc_data
1830{
f1f41a6c 1831 vec<chain_p> chains;
ad4a85ad 1832 bitmap tmp_vars;
1833};
1834
1835static void
1836execute_pred_commoning_cbck (struct loop *loop, void *data)
1837{
45ba1503 1838 struct epcc_data *const dta = (struct epcc_data *) data;
ad4a85ad 1839
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);
1845}
1846
ad4a85ad 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. */
1850
1851static void
1852base_names_in_chain_on (struct loop *loop, tree name, tree var)
1853{
75a70cf9 1854 gimple stmt, phi;
ad4a85ad 1855 imm_use_iterator iter;
ad4a85ad 1856
3b652cc1 1857 replace_ssa_name_symbol (name, var);
ad4a85ad 1858
1859 while (1)
1860 {
1861 phi = NULL;
1862 FOR_EACH_IMM_USE_STMT (stmt, iter, name)
1863 {
75a70cf9 1864 if (gimple_code (stmt) == GIMPLE_PHI
1865 && flow_bb_inside_loop_p (loop, gimple_bb (stmt)))
ad4a85ad 1866 {
1867 phi = stmt;
1868 BREAK_FROM_IMM_USE_STMT (iter);
1869 }
1870 }
1871 if (!phi)
1872 return;
1873
ad4a85ad 1874 name = PHI_RESULT (phi);
3b652cc1 1875 replace_ssa_name_symbol (name, var);
ad4a85ad 1876 }
1877}
1878
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. */
1883
1884static void
1885eliminate_temp_copies (struct loop *loop, bitmap tmp_vars)
1886{
1887 edge e;
75a70cf9 1888 gimple phi, stmt;
1889 tree name, use, var;
1890 gimple_stmt_iterator psi;
ad4a85ad 1891
1892 e = loop_latch_edge (loop);
75a70cf9 1893 for (psi = gsi_start_phis (loop->header); !gsi_end_p (psi); gsi_next (&psi))
ad4a85ad 1894 {
75a70cf9 1895 phi = gsi_stmt (psi);
ad4a85ad 1896 name = PHI_RESULT (phi);
1897 var = SSA_NAME_VAR (name);
ec11736b 1898 if (!var || !bitmap_bit_p (tmp_vars, DECL_UID (var)))
ad4a85ad 1899 continue;
1900 use = PHI_ARG_DEF_FROM_EDGE (phi, e);
1901 gcc_assert (TREE_CODE (use) == SSA_NAME);
1902
1903 /* Base all the ssa names in the ud and du chain of NAME on VAR. */
1904 stmt = SSA_NAME_DEF_STMT (use);
75a70cf9 1905 while (gimple_code (stmt) == GIMPLE_PHI
3fa1e4f2 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). */
75a70cf9 1911 && gimple_bb (stmt) != loop->header)
ad4a85ad 1912 {
75a70cf9 1913 gcc_assert (single_pred_p (gimple_bb (stmt)));
ad4a85ad 1914 use = PHI_ARG_DEF (stmt, 0);
1915 stmt = SSA_NAME_DEF_STMT (use);
1916 }
1917
1918 base_names_in_chain_on (loop, use, var);
1919 }
1920}
1921
1922/* Returns true if CHAIN is suitable to be combined. */
1923
1924static bool
1925chain_can_be_combined_p (chain_p chain)
1926{
1927 return (!chain->combined
1928 && (chain->type == CT_LOAD || chain->type == CT_COMBINATION));
1929}
1930
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. */
1934
75a70cf9 1935static gimple
ad4a85ad 1936find_use_stmt (tree *name)
1937{
75a70cf9 1938 gimple stmt;
1939 tree rhs, lhs;
ad4a85ad 1940
1941 /* Skip over assignments. */
1942 while (1)
1943 {
1944 stmt = single_nonlooparound_use (*name);
1945 if (!stmt)
75a70cf9 1946 return NULL;
ad4a85ad 1947
75a70cf9 1948 if (gimple_code (stmt) != GIMPLE_ASSIGN)
1949 return NULL;
ad4a85ad 1950
75a70cf9 1951 lhs = gimple_assign_lhs (stmt);
ad4a85ad 1952 if (TREE_CODE (lhs) != SSA_NAME)
75a70cf9 1953 return NULL;
ad4a85ad 1954
75a70cf9 1955 if (gimple_assign_copy_p (stmt))
1956 {
1957 rhs = gimple_assign_rhs1 (stmt);
1958 if (rhs != *name)
1959 return NULL;
ad4a85ad 1960
75a70cf9 1961 *name = lhs;
1962 }
1963 else if (get_gimple_rhs_class (gimple_assign_rhs_code (stmt))
1964 == GIMPLE_BINARY_RHS)
1965 return stmt;
1966 else
1967 return NULL;
ad4a85ad 1968 }
ad4a85ad 1969}
1970
1971/* Returns true if we may perform reassociation for operation CODE in TYPE. */
1972
1973static bool
1974may_reassociate_p (tree type, enum tree_code code)
1975{
1976 if (FLOAT_TYPE_P (type)
1977 && !flag_unsafe_math_optimizations)
1978 return false;
1979
1980 return (commutative_tree_code (code)
1981 && associative_tree_code (code));
1982}
1983
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. */
1987
75a70cf9 1988static gimple
1989find_associative_operation_root (gimple stmt, unsigned *distance)
ad4a85ad 1990{
75a70cf9 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));
ad4a85ad 1995 unsigned dist = 0;
1996
75a70cf9 1997 if (!may_reassociate_p (type, code))
1998 return NULL;
ad4a85ad 1999
2000 while (1)
2001 {
75a70cf9 2002 lhs = gimple_assign_lhs (stmt);
ad4a85ad 2003 gcc_assert (TREE_CODE (lhs) == SSA_NAME);
2004
2005 next = find_use_stmt (&lhs);
75a70cf9 2006 if (!next
2007 || gimple_assign_rhs_code (next) != code)
ad4a85ad 2008 break;
2009
2010 stmt = next;
2011 dist++;
2012 }
2013
2014 if (distance)
2015 *distance = dist;
2016 return stmt;
2017}
2018
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
310d2511 2021 NAME1 and NAME2 is associative and commutative, returns the root of the
ad4a85ad 2022 tree formed by this operation instead of the statement that uses NAME1 or
2023 NAME2. */
2024
75a70cf9 2025static gimple
ad4a85ad 2026find_common_use_stmt (tree *name1, tree *name2)
2027{
75a70cf9 2028 gimple stmt1, stmt2;
ad4a85ad 2029
2030 stmt1 = find_use_stmt (name1);
2031 if (!stmt1)
75a70cf9 2032 return NULL;
ad4a85ad 2033
2034 stmt2 = find_use_stmt (name2);
2035 if (!stmt2)
75a70cf9 2036 return NULL;
ad4a85ad 2037
2038 if (stmt1 == stmt2)
2039 return stmt1;
2040
2041 stmt1 = find_associative_operation_root (stmt1, NULL);
2042 if (!stmt1)
75a70cf9 2043 return NULL;
ad4a85ad 2044 stmt2 = find_associative_operation_root (stmt2, NULL);
2045 if (!stmt2)
75a70cf9 2046 return NULL;
ad4a85ad 2047
75a70cf9 2048 return (stmt1 == stmt2 ? stmt1 : NULL);
ad4a85ad 2049}
2050
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. */
2054
2055static bool
2056combinable_refs_p (dref r1, dref r2,
2057 enum tree_code *code, bool *swap, tree *rslt_type)
2058{
2059 enum tree_code acode;
2060 bool aswap;
2061 tree atype;
75a70cf9 2062 tree name1, name2;
2063 gimple stmt;
ad4a85ad 2064
2065 name1 = name_for_ref (r1);
2066 name2 = name_for_ref (r2);
2067 gcc_assert (name1 != NULL_TREE && name2 != NULL_TREE);
2068
2069 stmt = find_common_use_stmt (&name1, &name2);
2070
2071 if (!stmt)
2072 return false;
2073
75a70cf9 2074 acode = gimple_assign_rhs_code (stmt);
ad4a85ad 2075 aswap = (!commutative_tree_code (acode)
75a70cf9 2076 && gimple_assign_rhs1 (stmt) != name1);
2077 atype = TREE_TYPE (gimple_assign_lhs (stmt));
ad4a85ad 2078
2079 if (*code == ERROR_MARK)
2080 {
2081 *code = acode;
2082 *swap = aswap;
2083 *rslt_type = atype;
2084 return true;
2085 }
2086
2087 return (*code == acode
2088 && *swap == aswap
2089 && *rslt_type == atype);
2090}
2091
2092/* Remove OP from the operation on rhs of STMT, and replace STMT with
2093 an assignment of the remaining operand. */
2094
2095static void
75a70cf9 2096remove_name_from_operation (gimple stmt, tree op)
ad4a85ad 2097{
75a70cf9 2098 tree other_op;
2099 gimple_stmt_iterator si;
ad4a85ad 2100
75a70cf9 2101 gcc_assert (is_gimple_assign (stmt));
ad4a85ad 2102
75a70cf9 2103 if (gimple_assign_rhs1 (stmt) == op)
2104 other_op = gimple_assign_rhs2 (stmt);
ad4a85ad 2105 else
75a70cf9 2106 other_op = gimple_assign_rhs1 (stmt);
2107
2108 si = gsi_for_stmt (stmt);
2109 gimple_assign_set_rhs_from_tree (&si, other_op);
2110
2111 /* We should not have reallocated STMT. */
2112 gcc_assert (gsi_stmt (si) == stmt);
2113
ad4a85ad 2114 update_stmt (stmt);
2115}
2116
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. */
2119
75a70cf9 2120static gimple
ad4a85ad 2121reassociate_to_the_same_stmt (tree name1, tree name2)
2122{
75a70cf9 2123 gimple stmt1, stmt2, root1, root2, s1, s2;
2124 gimple new_stmt, tmp_stmt;
2125 tree new_name, tmp_name, var, r1, r2;
ad4a85ad 2126 unsigned dist1, dist2;
2127 enum tree_code code;
2128 tree type = TREE_TYPE (name1);
75a70cf9 2129 gimple_stmt_iterator bsi;
ad4a85ad 2130
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);
75a70cf9 2135 code = gimple_assign_rhs_code (stmt1);
ad4a85ad 2136
2137 gcc_assert (root1 && root2 && root1 == root2
75a70cf9 2138 && code == gimple_assign_rhs_code (stmt2));
ad4a85ad 2139
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;
2146
2147 while (dist1 > dist2)
2148 {
2149 s1 = find_use_stmt (&r1);
75a70cf9 2150 r1 = gimple_assign_lhs (s1);
ad4a85ad 2151 dist1--;
2152 }
2153 while (dist2 > dist1)
2154 {
2155 s2 = find_use_stmt (&r2);
75a70cf9 2156 r2 = gimple_assign_lhs (s2);
ad4a85ad 2157 dist2--;
2158 }
2159
2160 while (s1 != s2)
2161 {
2162 s1 = find_use_stmt (&r1);
75a70cf9 2163 r1 = gimple_assign_lhs (s1);
ad4a85ad 2164 s2 = find_use_stmt (&r2);
75a70cf9 2165 r2 = gimple_assign_lhs (s2);
ad4a85ad 2166 }
2167
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);
2172
2173 /* Insert the new statement combining NAME1 and NAME2 before S1, and
2174 combine it with the rhs of S1. */
2ac51e48 2175 var = create_tmp_reg (type, "predreastmp");
75a70cf9 2176 new_name = make_ssa_name (var, NULL);
2177 new_stmt = gimple_build_assign_with_ops (code, new_name, name1, name2);
ad4a85ad 2178
2ac51e48 2179 var = create_tmp_reg (type, "predreastmp");
75a70cf9 2180 tmp_name = make_ssa_name (var, NULL);
2181
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));
2189
2190 bsi = gsi_for_stmt (s1);
2191 gimple_assign_set_rhs_with_ops (&bsi, code, new_name, tmp_name);
2192 s1 = gsi_stmt (bsi);
ad4a85ad 2193 update_stmt (s1);
2194
75a70cf9 2195 gsi_insert_before (&bsi, new_stmt, GSI_SAME_STMT);
2196 gsi_insert_before (&bsi, tmp_stmt, GSI_SAME_STMT);
ad4a85ad 2197
2198 return new_stmt;
2199}
2200
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. */
2205
75a70cf9 2206static gimple
ad4a85ad 2207stmt_combining_refs (dref r1, dref r2)
2208{
75a70cf9 2209 gimple stmt1, stmt2;
ad4a85ad 2210 tree name1 = name_for_ref (r1);
2211 tree name2 = name_for_ref (r2);
2212
2213 stmt1 = find_use_stmt (&name1);
2214 stmt2 = find_use_stmt (&name2);
2215 if (stmt1 == stmt2)
2216 return stmt1;
2217
2218 return reassociate_to_the_same_stmt (name1, name2);
2219}
2220
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. */
2223
2224static chain_p
2225combine_chains (chain_p ch1, chain_p ch2)
2226{
2227 dref r1, r2, nw;
2228 enum tree_code op = ERROR_MARK;
2229 bool swap = false;
2230 chain_p new_chain;
2231 unsigned i;
75a70cf9 2232 gimple root_stmt;
ad4a85ad 2233 tree rslt_type = NULL_TREE;
2234
2235 if (ch1 == ch2)
c84b1d32 2236 return NULL;
ad4a85ad 2237 if (ch1->length != ch2->length)
2238 return NULL;
2239
f1f41a6c 2240 if (ch1->refs.length () != ch2->refs.length ())
ad4a85ad 2241 return NULL;
2242
f1f41a6c 2243 for (i = 0; (ch1->refs.iterate (i, &r1)
2244 && ch2->refs.iterate (i, &r2)); i++)
ad4a85ad 2245 {
2246 if (r1->distance != r2->distance)
2247 return NULL;
2248
2249 if (!combinable_refs_p (r1, r2, &op, &swap, &rslt_type))
2250 return NULL;
2251 }
2252
2253 if (swap)
2254 {
2255 chain_p tmp = ch1;
2256 ch1 = ch2;
2257 ch2 = tmp;
2258 }
2259
2260 new_chain = XCNEW (struct chain);
2261 new_chain->type = CT_COMBINATION;
f4e36c33 2262 new_chain->op = op;
ad4a85ad 2263 new_chain->ch1 = ch1;
2264 new_chain->ch2 = ch2;
2265 new_chain->rslt_type = rslt_type;
2266 new_chain->length = ch1->length;
2267
f1f41a6c 2268 for (i = 0; (ch1->refs.iterate (i, &r1)
2269 && ch2->refs.iterate (i, &r2)); i++)
ad4a85ad 2270 {
26dbec0a 2271 nw = XCNEW (struct dref_d);
ad4a85ad 2272 nw->stmt = stmt_combining_refs (r1, r2);
2273 nw->distance = r1->distance;
2274
f1f41a6c 2275 new_chain->refs.safe_push (nw);
ad4a85ad 2276 }
2277
2278 new_chain->has_max_use_after = false;
2279 root_stmt = get_chain_root (new_chain)->stmt;
f1f41a6c 2280 for (i = 1; new_chain->refs.iterate (i, &nw); i++)
ad4a85ad 2281 {
2282 if (nw->distance == new_chain->length
2283 && !stmt_dominates_stmt_p (nw->stmt, root_stmt))
2284 {
2285 new_chain->has_max_use_after = true;
2286 break;
2287 }
2288 }
2289
2290 ch1->combined = true;
2291 ch2->combined = true;
2292 return new_chain;
2293}
2294
2295/* Try to combine the CHAINS. */
2296
2297static void
f1f41a6c 2298try_combine_chains (vec<chain_p> *chains)
ad4a85ad 2299{
2300 unsigned i, j;
2301 chain_p ch1, ch2, cch;
1e094109 2302 vec<chain_p> worklist = vNULL;
ad4a85ad 2303
f1f41a6c 2304 FOR_EACH_VEC_ELT (*chains, i, ch1)
ad4a85ad 2305 if (chain_can_be_combined_p (ch1))
f1f41a6c 2306 worklist.safe_push (ch1);
ad4a85ad 2307
f1f41a6c 2308 while (!worklist.is_empty ())
ad4a85ad 2309 {
f1f41a6c 2310 ch1 = worklist.pop ();
ad4a85ad 2311 if (!chain_can_be_combined_p (ch1))
2312 continue;
2313
f1f41a6c 2314 FOR_EACH_VEC_ELT (*chains, j, ch2)
ad4a85ad 2315 {
2316 if (!chain_can_be_combined_p (ch2))
2317 continue;
2318
2319 cch = combine_chains (ch1, ch2);
2320 if (cch)
2321 {
f1f41a6c 2322 worklist.safe_push (cch);
2323 chains->safe_push (cch);
ad4a85ad 2324 break;
2325 }
2326 }
2327 }
13b31e0b 2328
f1f41a6c 2329 worklist.release ();
ad4a85ad 2330}
2331
ad4a85ad 2332/* Prepare initializers for CHAIN in LOOP. Returns false if this is
2333 impossible because one of these initializers may trap, true otherwise. */
2334
2335static bool
2336prepare_initializers_chain (struct loop *loop, chain_p chain)
2337{
2338 unsigned i, n = (chain->type == CT_INVARIANT) ? 1 : chain->length;
2339 struct data_reference *dr = get_chain_root (chain)->ref;
75a70cf9 2340 tree init;
2341 gimple_seq stmts;
ad4a85ad 2342 dref laref;
2343 edge entry = loop_preheader_edge (loop);
2344
2345 /* Find the initializers for the variables, and check that they cannot
2346 trap. */
f1f41a6c 2347 chain->inits.create (n);
ad4a85ad 2348 for (i = 0; i < n; i++)
f1f41a6c 2349 chain->inits.quick_push (NULL_TREE);
ad4a85ad 2350
2351 /* If we have replaced some looparound phi nodes, use their initializers
2352 instead of creating our own. */
f1f41a6c 2353 FOR_EACH_VEC_ELT (chain->refs, i, laref)
ad4a85ad 2354 {
75a70cf9 2355 if (gimple_code (laref->stmt) != GIMPLE_PHI)
ad4a85ad 2356 continue;
2357
2358 gcc_assert (laref->distance > 0);
f1f41a6c 2359 chain->inits[n - laref->distance]
2360 = PHI_ARG_DEF_FROM_EDGE (laref->stmt, entry);
ad4a85ad 2361 }
2362
2363 for (i = 0; i < n; i++)
2364 {
f1f41a6c 2365 if (chain->inits[i] != NULL_TREE)
ad4a85ad 2366 continue;
2367
2368 init = ref_at_iteration (loop, DR_REF (dr), (int) i - n);
2369 if (!init)
2370 return false;
48e1416a 2371
ad4a85ad 2372 if (!chain->all_always_accessed && tree_could_trap_p (init))
2373 return false;
2374
2375 init = force_gimple_operand (init, &stmts, false, NULL_TREE);
2376 if (stmts)
dd277d48 2377 gsi_insert_seq_on_edge_immediate (entry, stmts);
ad4a85ad 2378
f1f41a6c 2379 chain->inits[i] = init;
ad4a85ad 2380 }
2381
2382 return true;
2383}
2384
2385/* Prepare initializers for CHAINS in LOOP, and free chains that cannot
2386 be used because the initializers might trap. */
2387
2388static void
f1f41a6c 2389prepare_initializers (struct loop *loop, vec<chain_p> chains)
ad4a85ad 2390{
2391 chain_p chain;
2392 unsigned i;
2393
f1f41a6c 2394 for (i = 0; i < chains.length (); )
ad4a85ad 2395 {
f1f41a6c 2396 chain = chains[i];
ad4a85ad 2397 if (prepare_initializers_chain (loop, chain))
2398 i++;
2399 else
2400 {
2401 release_chain (chain);
f1f41a6c 2402 chains.unordered_remove (i);
ad4a85ad 2403 }
2404 }
2405}
2406
2407/* Performs predictive commoning for LOOP. Returns true if LOOP was
2408 unrolled. */
2409
2410static bool
2411tree_predictive_commoning_loop (struct loop *loop)
2412{
f1f41a6c 2413 vec<loop_p> loop_nest;
2414 vec<data_reference_p> datarefs;
2415 vec<ddr_p> dependences;
ad4a85ad 2416 struct component *components;
1e094109 2417 vec<chain_p> chains = vNULL;
ad4a85ad 2418 unsigned unroll_factor;
2419 struct tree_niter_desc desc;
2420 bool unroll = false;
2421 edge exit;
2422 bitmap tmp_vars;
2423
2424 if (dump_file && (dump_flags & TDF_DETAILS))
2425 fprintf (dump_file, "Processing loop %d\n", loop->num);
2426
2427 /* Find the data references and split them into components according to their
2428 dependence relations. */
f1f41a6c 2429 datarefs.create (10);
2430 dependences.create (10);
2431 loop_nest.create (3);
713f1f14 2432 if (! compute_data_dependences_for_loop (loop, true, &loop_nest, &datarefs,
2433 &dependences))
2434 {
2435 if (dump_file && (dump_flags & TDF_DETAILS))
2436 fprintf (dump_file, "Cannot analyze data dependencies\n");
f1f41a6c 2437 loop_nest.release ();
713f1f14 2438 free_data_refs (datarefs);
2439 free_dependence_relations (dependences);
2440 return false;
2441 }
2442
ad4a85ad 2443 if (dump_file && (dump_flags & TDF_DETAILS))
2444 dump_data_dependence_relations (dump_file, dependences);
2445
2446 components = split_data_refs_to_components (loop, datarefs, dependences);
f1f41a6c 2447 loop_nest.release ();
ad4a85ad 2448 free_dependence_relations (dependences);
2449 if (!components)
2450 {
2451 free_data_refs (datarefs);
2452 return false;
2453 }
2454
2455 if (dump_file && (dump_flags & TDF_DETAILS))
2456 {
2457 fprintf (dump_file, "Initial state:\n\n");
2458 dump_components (dump_file, components);
2459 }
2460
2461 /* Find the suitable components and split them into chains. */
2462 components = filter_suitable_components (loop, components);
2463
2464 tmp_vars = BITMAP_ALLOC (NULL);
2465 looparound_phis = BITMAP_ALLOC (NULL);
2466 determine_roots (loop, components, &chains);
2467 release_components (components);
2468
f1f41a6c 2469 if (!chains.exists ())
ad4a85ad 2470 {
2471 if (dump_file && (dump_flags & TDF_DETAILS))
2472 fprintf (dump_file,
2473 "Predictive commoning failed: no suitable chains\n");
2474 goto end;
2475 }
2476 prepare_initializers (loop, chains);
2477
2478 /* Try to combine the chains that are always worked with together. */
2479 try_combine_chains (&chains);
2480
2481 if (dump_file && (dump_flags & TDF_DETAILS))
2482 {
2483 fprintf (dump_file, "Before commoning:\n\n");
2484 dump_chains (dump_file, chains);
2485 }
2486
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 ();
286fa508 2491 unroll = (unroll_factor > 1
2492 && can_unroll_loop_p (loop, unroll_factor, &desc));
ad4a85ad 2493 exit = single_dom_exit (loop);
2494
2495 /* Execute the predictive commoning transformations, and possibly unroll the
2496 loop. */
2497 if (unroll)
2498 {
2499 struct epcc_data dta;
2500
2501 if (dump_file && (dump_flags & TDF_DETAILS))
2502 fprintf (dump_file, "Unrolling %u times.\n", unroll_factor);
2503
2504 dta.chains = chains;
2505 dta.tmp_vars = tmp_vars;
48e1416a 2506
ad4a85ad 2507 update_ssa (TODO_update_ssa_only_virtuals);
2508
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);
2516
2517 tree_transform_and_unroll_loop (loop, unroll_factor, exit, &desc,
2518 execute_pred_commoning_cbck, &dta);
2519 eliminate_temp_copies (loop, tmp_vars);
2520 }
2521 else
2522 {
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);
2527 }
2528
2529end: ;
2530 release_chains (chains);
2531 free_data_refs (datarefs);
2532 BITMAP_FREE (tmp_vars);
2533 BITMAP_FREE (looparound_phis);
2534
2535 free_affine_expand_cache (&name_expansions);
2536
2537 return unroll;
2538}
2539
2540/* Runs predictive commoning. */
2541
eb2a640e 2542unsigned
ad4a85ad 2543tree_predictive_commoning (void)
2544{
2545 bool unrolled = false;
2546 struct loop *loop;
2547 loop_iterator li;
eb2a640e 2548 unsigned ret = 0;
ad4a85ad 2549
2550 initialize_original_copy_tables ();
2551 FOR_EACH_LOOP (li, loop, LI_ONLY_INNERMOST)
7baffbd3 2552 if (optimize_loop_for_speed_p (loop))
2553 {
2554 unrolled |= tree_predictive_commoning_loop (loop);
2555 }
ad4a85ad 2556
2557 if (unrolled)
2558 {
2559 scev_reset ();
eb2a640e 2560 ret = TODO_cleanup_cfg;
ad4a85ad 2561 }
2562 free_original_copy_tables ();
eb2a640e 2563
2564 return ret;
ad4a85ad 2565}