]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-loop-distribution.c
genattrtab.c (write_header): Include hash-set.h...
[thirdparty/gcc.git] / gcc / tree-loop-distribution.c
CommitLineData
dea61d92 1/* Loop distribution.
5624e564 2 Copyright (C) 2006-2015 Free Software Foundation, Inc.
dea61d92
SP
3 Contributed by Georges-Andre Silber <Georges-Andre.Silber@ensmp.fr>
4 and Sebastian Pop <sebastian.pop@amd.com>.
5
6This file is part of GCC.
b8698a0f 7
dea61d92
SP
8GCC is free software; you can redistribute it and/or modify it
9under the terms of the GNU General Public License as published by the
10Free Software Foundation; either version 3, or (at your option) any
11later version.
b8698a0f 12
dea61d92
SP
13GCC is distributed in the hope that it will be useful, but WITHOUT
14ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
b8698a0f 17
dea61d92
SP
18You should have received a copy of the GNU General Public License
19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
21
22/* This pass performs loop distribution: for example, the loop
23
24 |DO I = 2, N
25 | A(I) = B(I) + C
26 | D(I) = A(I-1)*E
27 |ENDDO
28
b8698a0f 29 is transformed to
dea61d92
SP
30
31 |DOALL I = 2, N
32 | A(I) = B(I) + C
33 |ENDDO
34 |
35 |DOALL I = 2, N
36 | D(I) = A(I-1)*E
37 |ENDDO
38
39 This pass uses an RDG, Reduced Dependence Graph built on top of the
40 data dependence relations. The RDG is then topologically sorted to
41 obtain a map of information producers/consumers based on which it
42 generates the new loops. */
43
44#include "config.h"
45#include "system.h"
46#include "coretypes.h"
60393bbc
AM
47#include "hash-set.h"
48#include "machmode.h"
40e23961
MC
49#include "vec.h"
50#include "double-int.h"
51#include "input.h"
52#include "alias.h"
53#include "symtab.h"
54#include "options.h"
55#include "wide-int.h"
56#include "inchash.h"
57#include "tree.h"
58#include "fold-const.h"
59#include "predict.h"
60393bbc
AM
60#include "tm.h"
61#include "hard-reg-set.h"
62#include "input.h"
63#include "function.h"
64#include "dominance.h"
65#include "cfg.h"
66#include "cfganal.h"
2fb9a547
AM
67#include "basic-block.h"
68#include "tree-ssa-alias.h"
69#include "internal-fn.h"
70#include "gimple-expr.h"
71#include "is-a.h"
18f429e2 72#include "gimple.h"
5be5c238 73#include "gimple-iterator.h"
18f429e2 74#include "gimplify-me.h"
d8a2d370 75#include "stor-layout.h"
442b4905
AM
76#include "gimple-ssa.h"
77#include "tree-cfg.h"
78#include "tree-phinodes.h"
79#include "ssa-iterators.h"
d8a2d370 80#include "stringpool.h"
442b4905 81#include "tree-ssanames.h"
e28030cf 82#include "tree-ssa-loop-manip.h"
442b4905
AM
83#include "tree-ssa-loop.h"
84#include "tree-into-ssa.h"
7a300452 85#include "tree-ssa.h"
dea61d92 86#include "cfgloop.h"
dea61d92
SP
87#include "tree-chrec.h"
88#include "tree-data-ref.h"
89#include "tree-scalar-evolution.h"
90#include "tree-pass.h"
80ab0b19 91#include "gimple-pretty-print.h"
826a536d 92#include "tree-vectorizer.h"
80ab0b19
RB
93
94
95/* A Reduced Dependence Graph (RDG) vertex representing a statement. */
96typedef struct rdg_vertex
97{
98 /* The statement represented by this vertex. */
99 gimple stmt;
100
101 /* Vector of data-references in this statement. */
102 vec<data_reference_p> datarefs;
103
104 /* True when the statement contains a write to memory. */
105 bool has_mem_write;
106
107 /* True when the statement contains a read from memory. */
108 bool has_mem_reads;
109} *rdg_vertex_p;
110
111#define RDGV_STMT(V) ((struct rdg_vertex *) ((V)->data))->stmt
112#define RDGV_DATAREFS(V) ((struct rdg_vertex *) ((V)->data))->datarefs
113#define RDGV_HAS_MEM_WRITE(V) ((struct rdg_vertex *) ((V)->data))->has_mem_write
114#define RDGV_HAS_MEM_READS(V) ((struct rdg_vertex *) ((V)->data))->has_mem_reads
115#define RDG_STMT(RDG, I) RDGV_STMT (&(RDG->vertices[I]))
116#define RDG_DATAREFS(RDG, I) RDGV_DATAREFS (&(RDG->vertices[I]))
117#define RDG_MEM_WRITE_STMT(RDG, I) RDGV_HAS_MEM_WRITE (&(RDG->vertices[I]))
118#define RDG_MEM_READS_STMT(RDG, I) RDGV_HAS_MEM_READS (&(RDG->vertices[I]))
119
120/* Data dependence type. */
121
122enum rdg_dep_type
123{
124 /* Read After Write (RAW). */
125 flow_dd = 'f',
126
36875e8f
RB
127 /* Control dependence (execute conditional on). */
128 control_dd = 'c'
80ab0b19
RB
129};
130
131/* Dependence information attached to an edge of the RDG. */
132
133typedef struct rdg_edge
134{
135 /* Type of the dependence. */
136 enum rdg_dep_type type;
80ab0b19
RB
137} *rdg_edge_p;
138
139#define RDGE_TYPE(E) ((struct rdg_edge *) ((E)->data))->type
80ab0b19 140
80ab0b19
RB
141/* Dump vertex I in RDG to FILE. */
142
143static void
144dump_rdg_vertex (FILE *file, struct graph *rdg, int i)
145{
146 struct vertex *v = &(rdg->vertices[i]);
147 struct graph_edge *e;
148
149 fprintf (file, "(vertex %d: (%s%s) (in:", i,
150 RDG_MEM_WRITE_STMT (rdg, i) ? "w" : "",
151 RDG_MEM_READS_STMT (rdg, i) ? "r" : "");
152
153 if (v->pred)
154 for (e = v->pred; e; e = e->pred_next)
155 fprintf (file, " %d", e->src);
156
157 fprintf (file, ") (out:");
158
159 if (v->succ)
160 for (e = v->succ; e; e = e->succ_next)
161 fprintf (file, " %d", e->dest);
162
163 fprintf (file, ")\n");
164 print_gimple_stmt (file, RDGV_STMT (v), 0, TDF_VOPS|TDF_MEMSYMS);
165 fprintf (file, ")\n");
166}
167
168/* Call dump_rdg_vertex on stderr. */
169
170DEBUG_FUNCTION void
171debug_rdg_vertex (struct graph *rdg, int i)
172{
173 dump_rdg_vertex (stderr, rdg, i);
174}
175
80ab0b19
RB
176/* Dump the reduced dependence graph RDG to FILE. */
177
178static void
179dump_rdg (FILE *file, struct graph *rdg)
180{
80ab0b19 181 fprintf (file, "(rdg\n");
2fd5894f
RB
182 for (int i = 0; i < rdg->n_vertices; i++)
183 dump_rdg_vertex (file, rdg, i);
80ab0b19 184 fprintf (file, ")\n");
80ab0b19
RB
185}
186
187/* Call dump_rdg on stderr. */
188
189DEBUG_FUNCTION void
190debug_rdg (struct graph *rdg)
191{
192 dump_rdg (stderr, rdg);
193}
194
195static void
196dot_rdg_1 (FILE *file, struct graph *rdg)
197{
198 int i;
174ec470
RB
199 pretty_printer buffer;
200 pp_needs_newline (&buffer) = false;
201 buffer.buffer->stream = file;
80ab0b19
RB
202
203 fprintf (file, "digraph RDG {\n");
204
205 for (i = 0; i < rdg->n_vertices; i++)
206 {
207 struct vertex *v = &(rdg->vertices[i]);
208 struct graph_edge *e;
209
174ec470
RB
210 fprintf (file, "%d [label=\"[%d] ", i, i);
211 pp_gimple_stmt_1 (&buffer, RDGV_STMT (v), 0, TDF_SLIM);
212 pp_flush (&buffer);
213 fprintf (file, "\"]\n");
214
80ab0b19
RB
215 /* Highlight reads from memory. */
216 if (RDG_MEM_READS_STMT (rdg, i))
217 fprintf (file, "%d [style=filled, fillcolor=green]\n", i);
218
219 /* Highlight stores to memory. */
220 if (RDG_MEM_WRITE_STMT (rdg, i))
221 fprintf (file, "%d [style=filled, fillcolor=red]\n", i);
222
223 if (v->succ)
224 for (e = v->succ; e; e = e->succ_next)
225 switch (RDGE_TYPE (e))
226 {
80ab0b19
RB
227 case flow_dd:
228 /* These are the most common dependences: don't print these. */
229 fprintf (file, "%d -> %d \n", i, e->dest);
230 break;
231
36875e8f
RB
232 case control_dd:
233 fprintf (file, "%d -> %d [label=control] \n", i, e->dest);
234 break;
235
80ab0b19
RB
236 default:
237 gcc_unreachable ();
238 }
239 }
240
241 fprintf (file, "}\n\n");
242}
243
244/* Display the Reduced Dependence Graph using dotty. */
245
246DEBUG_FUNCTION void
247dot_rdg (struct graph *rdg)
248{
174ec470 249 /* When debugging, you may want to enable the following code. */
b6d94045 250#ifdef HAVE_POPEN
c3284718 251 FILE *file = popen ("dot -Tx11", "w");
174ec470
RB
252 if (!file)
253 return;
80ab0b19 254 dot_rdg_1 (file, rdg);
174ec470
RB
255 fflush (file);
256 close (fileno (file));
257 pclose (file);
80ab0b19
RB
258#else
259 dot_rdg_1 (stderr, rdg);
260#endif
261}
262
263/* Returns the index of STMT in RDG. */
264
265static int
266rdg_vertex_for_stmt (struct graph *rdg ATTRIBUTE_UNUSED, gimple stmt)
267{
268 int index = gimple_uid (stmt);
269 gcc_checking_assert (index == -1 || RDG_STMT (rdg, index) == stmt);
270 return index;
271}
272
80ab0b19
RB
273/* Creates dependence edges in RDG for all the uses of DEF. IDEF is
274 the index of DEF in RDG. */
275
276static void
277create_rdg_edges_for_scalar (struct graph *rdg, tree def, int idef)
278{
279 use_operand_p imm_use_p;
280 imm_use_iterator iterator;
281
282 FOR_EACH_IMM_USE_FAST (imm_use_p, iterator, def)
283 {
284 struct graph_edge *e;
285 int use = rdg_vertex_for_stmt (rdg, USE_STMT (imm_use_p));
286
287 if (use < 0)
288 continue;
289
290 e = add_edge (rdg, idef, use);
291 e->data = XNEW (struct rdg_edge);
292 RDGE_TYPE (e) = flow_dd;
80ab0b19
RB
293 }
294}
295
36875e8f
RB
296/* Creates an edge for the control dependences of BB to the vertex V. */
297
298static void
299create_edge_for_control_dependence (struct graph *rdg, basic_block bb,
300 int v, control_dependences *cd)
301{
302 bitmap_iterator bi;
303 unsigned edge_n;
304 EXECUTE_IF_SET_IN_BITMAP (cd->get_edges_dependent_on (bb->index),
305 0, edge_n, bi)
306 {
307 basic_block cond_bb = cd->get_edge (edge_n)->src;
308 gimple stmt = last_stmt (cond_bb);
309 if (stmt && is_ctrl_stmt (stmt))
310 {
311 struct graph_edge *e;
312 int c = rdg_vertex_for_stmt (rdg, stmt);
313 if (c < 0)
314 continue;
315
316 e = add_edge (rdg, c, v);
317 e->data = XNEW (struct rdg_edge);
318 RDGE_TYPE (e) = control_dd;
36875e8f
RB
319 }
320 }
321}
322
80ab0b19
RB
323/* Creates the edges of the reduced dependence graph RDG. */
324
325static void
447f3223 326create_rdg_flow_edges (struct graph *rdg)
80ab0b19
RB
327{
328 int i;
80ab0b19
RB
329 def_operand_p def_p;
330 ssa_op_iter iter;
331
80ab0b19
RB
332 for (i = 0; i < rdg->n_vertices; i++)
333 FOR_EACH_PHI_OR_STMT_DEF (def_p, RDG_STMT (rdg, i),
334 iter, SSA_OP_DEF)
335 create_rdg_edges_for_scalar (rdg, DEF_FROM_PTR (def_p), i);
447f3223 336}
36875e8f 337
447f3223
RB
338/* Creates the edges of the reduced dependence graph RDG. */
339
340static void
341create_rdg_cd_edges (struct graph *rdg, control_dependences *cd)
342{
343 int i;
344
345 for (i = 0; i < rdg->n_vertices; i++)
346 {
347 gimple stmt = RDG_STMT (rdg, i);
348 if (gimple_code (stmt) == GIMPLE_PHI)
349 {
350 edge_iterator ei;
351 edge e;
352 FOR_EACH_EDGE (e, ei, gimple_bb (stmt)->preds)
36875e8f 353 create_edge_for_control_dependence (rdg, e->src, i, cd);
447f3223
RB
354 }
355 else
356 create_edge_for_control_dependence (rdg, gimple_bb (stmt), i, cd);
357 }
80ab0b19
RB
358}
359
360/* Build the vertices of the reduced dependence graph RDG. Return false
361 if that failed. */
362
363static bool
364create_rdg_vertices (struct graph *rdg, vec<gimple> stmts, loop_p loop,
365 vec<data_reference_p> *datarefs)
366{
367 int i;
368 gimple stmt;
369
370 FOR_EACH_VEC_ELT (stmts, i, stmt)
371 {
372 struct vertex *v = &(rdg->vertices[i]);
373
374 /* Record statement to vertex mapping. */
375 gimple_set_uid (stmt, i);
376
377 v->data = XNEW (struct rdg_vertex);
378 RDGV_STMT (v) = stmt;
379 RDGV_DATAREFS (v).create (0);
380 RDGV_HAS_MEM_WRITE (v) = false;
381 RDGV_HAS_MEM_READS (v) = false;
382 if (gimple_code (stmt) == GIMPLE_PHI)
383 continue;
384
385 unsigned drp = datarefs->length ();
386 if (!find_data_references_in_stmt (loop, stmt, datarefs))
387 return false;
388 for (unsigned j = drp; j < datarefs->length (); ++j)
389 {
390 data_reference_p dr = (*datarefs)[j];
391 if (DR_IS_READ (dr))
392 RDGV_HAS_MEM_READS (v) = true;
393 else
394 RDGV_HAS_MEM_WRITE (v) = true;
395 RDGV_DATAREFS (v).safe_push (dr);
396 }
397 }
398 return true;
399}
400
2fd5894f 401/* Initialize STMTS with all the statements of LOOP. The order in
80ab0b19
RB
402 which we discover statements is important as
403 generate_loops_for_partition is using the same traversal for
2fd5894f 404 identifying statements in loop copies. */
80ab0b19
RB
405
406static void
407stmts_from_loop (struct loop *loop, vec<gimple> *stmts)
408{
409 unsigned int i;
410 basic_block *bbs = get_loop_body_in_dom_order (loop);
411
412 for (i = 0; i < loop->num_nodes; i++)
413 {
414 basic_block bb = bbs[i];
80ab0b19 415
538dd0b7
DM
416 for (gphi_iterator bsi = gsi_start_phis (bb); !gsi_end_p (bsi);
417 gsi_next (&bsi))
418 if (!virtual_operand_p (gimple_phi_result (bsi.phi ())))
419 stmts->safe_push (bsi.phi ());
80ab0b19 420
538dd0b7
DM
421 for (gimple_stmt_iterator bsi = gsi_start_bb (bb); !gsi_end_p (bsi);
422 gsi_next (&bsi))
80ab0b19 423 {
538dd0b7 424 gimple stmt = gsi_stmt (bsi);
80ab0b19
RB
425 if (gimple_code (stmt) != GIMPLE_LABEL && !is_gimple_debug (stmt))
426 stmts->safe_push (stmt);
427 }
428 }
429
430 free (bbs);
431}
432
80ab0b19
RB
433/* Free the reduced dependence graph RDG. */
434
435static void
436free_rdg (struct graph *rdg)
437{
438 int i;
439
440 for (i = 0; i < rdg->n_vertices; i++)
441 {
442 struct vertex *v = &(rdg->vertices[i]);
443 struct graph_edge *e;
444
445 for (e = v->succ; e; e = e->succ_next)
447f3223 446 free (e->data);
80ab0b19
RB
447
448 if (v->data)
449 {
450 gimple_set_uid (RDGV_STMT (v), -1);
451 free_data_refs (RDGV_DATAREFS (v));
452 free (v->data);
453 }
454 }
455
456 free_graph (rdg);
457}
458
459/* Build the Reduced Dependence Graph (RDG) with one vertex per
97463b2b 460 statement of the loop nest LOOP_NEST, and one edge per data dependence or
80ab0b19
RB
461 scalar dependence. */
462
463static struct graph *
36875e8f 464build_rdg (vec<loop_p> loop_nest, control_dependences *cd)
80ab0b19
RB
465{
466 struct graph *rdg;
80ab0b19 467 vec<data_reference_p> datarefs;
80ab0b19 468
97463b2b 469 /* Create the RDG vertices from the stmts of the loop nest. */
00f96dc9 470 auto_vec<gimple, 10> stmts;
97463b2b 471 stmts_from_loop (loop_nest[0], &stmts);
24f161fd 472 rdg = new_graph (stmts.length ());
80ab0b19 473 datarefs.create (10);
97463b2b 474 if (!create_rdg_vertices (rdg, stmts, loop_nest[0], &datarefs))
80ab0b19 475 {
97463b2b 476 datarefs.release ();
80ab0b19
RB
477 free_rdg (rdg);
478 return NULL;
479 }
480 stmts.release ();
97463b2b 481
447f3223
RB
482 create_rdg_flow_edges (rdg);
483 if (cd)
484 create_rdg_cd_edges (rdg, cd);
485
97463b2b 486 datarefs.release ();
80ab0b19
RB
487
488 return rdg;
489}
490
80ab0b19 491
dea61d92 492
b9fc0497 493enum partition_kind {
826a536d 494 PKIND_NORMAL, PKIND_MEMSET, PKIND_MEMCPY
b9fc0497 495};
30d55936 496
c61f8985
RG
497typedef struct partition_s
498{
499 bitmap stmts;
80ab0b19 500 bitmap loops;
826a536d 501 bool reduction_p;
30d55936 502 enum partition_kind kind;
d0582dc1
RG
503 /* data-references a kind != PKIND_NORMAL partition is about. */
504 data_reference_p main_dr;
505 data_reference_p secondary_dr;
818625cf 506 tree niter;
d995e887 507 bool plus_one;
c61f8985
RG
508} *partition_t;
509
c61f8985
RG
510
511/* Allocate and initialize a partition from BITMAP. */
512
513static partition_t
80ab0b19 514partition_alloc (bitmap stmts, bitmap loops)
c61f8985
RG
515{
516 partition_t partition = XCNEW (struct partition_s);
517 partition->stmts = stmts ? stmts : BITMAP_ALLOC (NULL);
80ab0b19 518 partition->loops = loops ? loops : BITMAP_ALLOC (NULL);
826a536d 519 partition->reduction_p = false;
30d55936 520 partition->kind = PKIND_NORMAL;
c61f8985
RG
521 return partition;
522}
523
524/* Free PARTITION. */
525
526static void
527partition_free (partition_t partition)
528{
529 BITMAP_FREE (partition->stmts);
80ab0b19 530 BITMAP_FREE (partition->loops);
c61f8985
RG
531 free (partition);
532}
533
30d55936
RG
534/* Returns true if the partition can be generated as a builtin. */
535
536static bool
537partition_builtin_p (partition_t partition)
538{
826a536d 539 return partition->kind != PKIND_NORMAL;
30d55936 540}
c61f8985 541
826a536d 542/* Returns true if the partition contains a reduction. */
7ad672e4
RG
543
544static bool
826a536d 545partition_reduction_p (partition_t partition)
7ad672e4 546{
826a536d 547 return partition->reduction_p;
7ad672e4
RG
548}
549
826a536d
RB
550/* Merge PARTITION into the partition DEST. */
551
552static void
553partition_merge_into (partition_t dest, partition_t partition)
554{
555 dest->kind = PKIND_NORMAL;
556 bitmap_ior_into (dest->stmts, partition->stmts);
557 if (partition_reduction_p (partition))
558 dest->reduction_p = true;
559}
560
561
c07a8cb3
RG
562/* Returns true when DEF is an SSA_NAME defined in LOOP and used after
563 the LOOP. */
564
565static bool
566ssa_name_has_uses_outside_loop_p (tree def, loop_p loop)
567{
568 imm_use_iterator imm_iter;
569 use_operand_p use_p;
570
571 FOR_EACH_IMM_USE_FAST (use_p, imm_iter, def)
e665269a
RG
572 {
573 gimple use_stmt = USE_STMT (use_p);
574 if (!is_gimple_debug (use_stmt)
575 && loop != loop_containing_stmt (use_stmt))
576 return true;
577 }
c07a8cb3
RG
578
579 return false;
580}
581
582/* Returns true when STMT defines a scalar variable used after the
88af7c1a 583 loop LOOP. */
c07a8cb3
RG
584
585static bool
88af7c1a 586stmt_has_scalar_dependences_outside_loop (loop_p loop, gimple stmt)
c07a8cb3 587{
88af7c1a
RG
588 def_operand_p def_p;
589 ssa_op_iter op_iter;
c07a8cb3 590
9ca86fc3
RG
591 if (gimple_code (stmt) == GIMPLE_PHI)
592 return ssa_name_has_uses_outside_loop_p (gimple_phi_result (stmt), loop);
593
88af7c1a
RG
594 FOR_EACH_SSA_DEF_OPERAND (def_p, stmt, op_iter, SSA_OP_DEF)
595 if (ssa_name_has_uses_outside_loop_p (DEF_FROM_PTR (def_p), loop))
596 return true;
c07a8cb3 597
88af7c1a 598 return false;
c07a8cb3
RG
599}
600
dea61d92
SP
601/* Return a copy of LOOP placed before LOOP. */
602
603static struct loop *
604copy_loop_before (struct loop *loop)
605{
606 struct loop *res;
607 edge preheader = loop_preheader_edge (loop);
608
dea61d92 609 initialize_original_copy_tables ();
5ce9450f 610 res = slpeel_tree_duplicate_loop_to_edge_cfg (loop, NULL, preheader);
30d55936 611 gcc_assert (res != NULL);
dea61d92 612 free_original_copy_tables ();
2cfc56b9 613 delete_update_ssa ();
dea61d92
SP
614
615 return res;
616}
617
618/* Creates an empty basic block after LOOP. */
619
620static void
621create_bb_after_loop (struct loop *loop)
622{
623 edge exit = single_exit (loop);
624
625 if (!exit)
626 return;
627
628 split_edge (exit);
629}
630
631/* Generate code for PARTITION from the code in LOOP. The loop is
632 copied when COPY_P is true. All the statements not flagged in the
633 PARTITION bitmap are removed from the loop or from its copy. The
634 statements are indexed in sequence inside a basic block, and the
30d55936 635 basic blocks of a loop are taken in dom order. */
dea61d92 636
30d55936 637static void
c61f8985
RG
638generate_loops_for_partition (struct loop *loop, partition_t partition,
639 bool copy_p)
dea61d92 640{
2fd5894f 641 unsigned i;
dea61d92
SP
642 basic_block *bbs;
643
644 if (copy_p)
645 {
646 loop = copy_loop_before (loop);
30d55936 647 gcc_assert (loop != NULL);
dea61d92
SP
648 create_preheader (loop, CP_SIMPLE_PREHEADERS);
649 create_bb_after_loop (loop);
650 }
651
2fd5894f 652 /* Remove stmts not in the PARTITION bitmap. */
dea61d92
SP
653 bbs = get_loop_body_in_dom_order (loop);
654
b03c3082 655 if (MAY_HAVE_DEBUG_STMTS)
2fd5894f 656 for (i = 0; i < loop->num_nodes; i++)
b03c3082
JJ
657 {
658 basic_block bb = bbs[i];
659
538dd0b7
DM
660 for (gphi_iterator bsi = gsi_start_phis (bb); !gsi_end_p (bsi);
661 gsi_next (&bsi))
2fd5894f 662 {
538dd0b7 663 gphi *phi = bsi.phi ();
2fd5894f
RB
664 if (!virtual_operand_p (gimple_phi_result (phi))
665 && !bitmap_bit_p (partition->stmts, gimple_uid (phi)))
666 reset_debug_uses (phi);
667 }
b03c3082 668
538dd0b7 669 for (gimple_stmt_iterator bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
b03c3082
JJ
670 {
671 gimple stmt = gsi_stmt (bsi);
672 if (gimple_code (stmt) != GIMPLE_LABEL
673 && !is_gimple_debug (stmt)
2fd5894f 674 && !bitmap_bit_p (partition->stmts, gimple_uid (stmt)))
b03c3082
JJ
675 reset_debug_uses (stmt);
676 }
677 }
678
2fd5894f 679 for (i = 0; i < loop->num_nodes; i++)
dea61d92
SP
680 {
681 basic_block bb = bbs[i];
dea61d92 682
538dd0b7 683 for (gphi_iterator bsi = gsi_start_phis (bb); !gsi_end_p (bsi);)
2fd5894f 684 {
538dd0b7 685 gphi *phi = bsi.phi ();
2fd5894f
RB
686 if (!virtual_operand_p (gimple_phi_result (phi))
687 && !bitmap_bit_p (partition->stmts, gimple_uid (phi)))
2706a615 688 remove_phi_node (&bsi, true);
2fd5894f
RB
689 else
690 gsi_next (&bsi);
691 }
dea61d92 692
538dd0b7 693 for (gimple_stmt_iterator bsi = gsi_start_bb (bb); !gsi_end_p (bsi);)
2706a615
RG
694 {
695 gimple stmt = gsi_stmt (bsi);
b03c3082
JJ
696 if (gimple_code (stmt) != GIMPLE_LABEL
697 && !is_gimple_debug (stmt)
2fd5894f 698 && !bitmap_bit_p (partition->stmts, gimple_uid (stmt)))
2706a615 699 {
36875e8f
RB
700 /* Choose an arbitrary path through the empty CFG part
701 that this unnecessary control stmt controls. */
538dd0b7 702 if (gcond *cond_stmt = dyn_cast <gcond *> (stmt))
36875e8f 703 {
538dd0b7 704 gimple_cond_make_false (cond_stmt);
36875e8f
RB
705 update_stmt (stmt);
706 }
707 else if (gimple_code (stmt) == GIMPLE_SWITCH)
708 {
538dd0b7 709 gswitch *switch_stmt = as_a <gswitch *> (stmt);
36875e8f 710 gimple_switch_set_index
538dd0b7 711 (switch_stmt, CASE_LOW (gimple_switch_label (switch_stmt, 1)));
36875e8f
RB
712 update_stmt (stmt);
713 }
714 else
715 {
716 unlink_stmt_vdef (stmt);
717 gsi_remove (&bsi, true);
718 release_defs (stmt);
719 continue;
720 }
2706a615 721 }
36875e8f 722 gsi_next (&bsi);
2706a615 723 }
dea61d92
SP
724 }
725
726 free (bbs);
dea61d92
SP
727}
728
d0582dc1 729/* Build the size argument for a memory operation call. */
3661e899 730
d0582dc1 731static tree
d995e887
RB
732build_size_arg_loc (location_t loc, data_reference_p dr, tree nb_iter,
733 bool plus_one)
3661e899 734{
d995e887
RB
735 tree size = fold_convert_loc (loc, sizetype, nb_iter);
736 if (plus_one)
737 size = size_binop (PLUS_EXPR, size, size_one_node);
738 size = fold_build2_loc (loc, MULT_EXPR, sizetype, size,
d0582dc1 739 TYPE_SIZE_UNIT (TREE_TYPE (DR_REF (dr))));
d995e887
RB
740 size = fold_convert_loc (loc, size_type_node, size);
741 return size;
d0582dc1
RG
742}
743
744/* Build an address argument for a memory operation call. */
745
746static tree
747build_addr_arg_loc (location_t loc, data_reference_p dr, tree nb_bytes)
748{
749 tree addr_base;
750
751 addr_base = size_binop_loc (loc, PLUS_EXPR, DR_OFFSET (dr), DR_INIT (dr));
752 addr_base = fold_convert_loc (loc, sizetype, addr_base);
753
754 /* Test for a negative stride, iterating over every element. */
755 if (tree_int_cst_sgn (DR_STEP (dr)) == -1)
756 {
757 addr_base = size_binop_loc (loc, MINUS_EXPR, addr_base,
758 fold_convert_loc (loc, sizetype, nb_bytes));
759 addr_base = size_binop_loc (loc, PLUS_EXPR, addr_base,
760 TYPE_SIZE_UNIT (TREE_TYPE (DR_REF (dr))));
761 }
762
763 return fold_build_pointer_plus_loc (loc, DR_BASE_ADDRESS (dr), addr_base);
3661e899
TB
764}
765
401f3a81
JJ
766/* If VAL memory representation contains the same value in all bytes,
767 return that value, otherwise return -1.
768 E.g. for 0x24242424 return 0x24, for IEEE double
769 747708026454360457216.0 return 0x44, etc. */
770
771static int
772const_with_all_bytes_same (tree val)
773{
774 unsigned char buf[64];
775 int i, len;
776
777 if (integer_zerop (val)
778 || real_zerop (val)
779 || (TREE_CODE (val) == CONSTRUCTOR
780 && !TREE_CLOBBER_P (val)
781 && CONSTRUCTOR_NELTS (val) == 0))
782 return 0;
783
784 if (CHAR_BIT != 8 || BITS_PER_UNIT != 8)
785 return -1;
786
787 len = native_encode_expr (val, buf, sizeof (buf));
788 if (len == 0)
789 return -1;
790 for (i = 1; i < len; i++)
791 if (buf[i] != buf[0])
792 return -1;
793 return buf[0];
794}
795
30d55936 796/* Generate a call to memset for PARTITION in LOOP. */
dea61d92 797
cfee318d 798static void
d0582dc1 799generate_memset_builtin (struct loop *loop, partition_t partition)
dea61d92 800{
30d55936
RG
801 gimple_stmt_iterator gsi;
802 gimple stmt, fn_call;
818625cf 803 tree mem, fn, nb_bytes;
30d55936 804 location_t loc;
b6dd5261 805 tree val;
30d55936 806
d0582dc1 807 stmt = DR_STMT (partition->main_dr);
30d55936 808 loc = gimple_location (stmt);
30d55936
RG
809
810 /* The new statements will be placed before LOOP. */
811 gsi = gsi_last_bb (loop_preheader_edge (loop)->src);
dea61d92 812
d995e887
RB
813 nb_bytes = build_size_arg_loc (loc, partition->main_dr, partition->niter,
814 partition->plus_one);
d0582dc1
RG
815 nb_bytes = force_gimple_operand_gsi (&gsi, nb_bytes, true, NULL_TREE,
816 false, GSI_CONTINUE_LINKING);
817 mem = build_addr_arg_loc (loc, partition->main_dr, nb_bytes);
818 mem = force_gimple_operand_gsi (&gsi, mem, true, NULL_TREE,
819 false, GSI_CONTINUE_LINKING);
dea61d92 820
b6dd5261
RG
821 /* This exactly matches the pattern recognition in classify_partition. */
822 val = gimple_assign_rhs1 (stmt);
401f3a81
JJ
823 /* Handle constants like 0x15151515 and similarly
824 floating point constants etc. where all bytes are the same. */
825 int bytev = const_with_all_bytes_same (val);
826 if (bytev != -1)
827 val = build_int_cst (integer_type_node, bytev);
828 else if (TREE_CODE (val) == INTEGER_CST)
829 val = fold_convert (integer_type_node, val);
830 else if (!useless_type_conversion_p (integer_type_node, TREE_TYPE (val)))
b6dd5261 831 {
b731b390 832 tree tem = make_ssa_name (integer_type_node);
0d0e4a03 833 gimple cstmt = gimple_build_assign (tem, NOP_EXPR, val);
401f3a81
JJ
834 gsi_insert_after (&gsi, cstmt, GSI_CONTINUE_LINKING);
835 val = tem;
b6dd5261
RG
836 }
837
e79983f4 838 fn = build_fold_addr_expr (builtin_decl_implicit (BUILT_IN_MEMSET));
b6dd5261 839 fn_call = gimple_build_call (fn, 3, mem, val, nb_bytes);
d0582dc1 840 gsi_insert_after (&gsi, fn_call, GSI_CONTINUE_LINKING);
dea61d92
SP
841
842 if (dump_file && (dump_flags & TDF_DETAILS))
b6dd5261
RG
843 {
844 fprintf (dump_file, "generated memset");
401f3a81 845 if (bytev == 0)
b6dd5261 846 fprintf (dump_file, " zero\n");
b6dd5261
RG
847 else
848 fprintf (dump_file, "\n");
849 }
dea61d92
SP
850}
851
d0582dc1
RG
852/* Generate a call to memcpy for PARTITION in LOOP. */
853
854static void
855generate_memcpy_builtin (struct loop *loop, partition_t partition)
856{
857 gimple_stmt_iterator gsi;
858 gimple stmt, fn_call;
818625cf 859 tree dest, src, fn, nb_bytes;
d0582dc1
RG
860 location_t loc;
861 enum built_in_function kind;
862
863 stmt = DR_STMT (partition->main_dr);
864 loc = gimple_location (stmt);
d0582dc1
RG
865
866 /* The new statements will be placed before LOOP. */
867 gsi = gsi_last_bb (loop_preheader_edge (loop)->src);
868
d995e887
RB
869 nb_bytes = build_size_arg_loc (loc, partition->main_dr, partition->niter,
870 partition->plus_one);
d0582dc1
RG
871 nb_bytes = force_gimple_operand_gsi (&gsi, nb_bytes, true, NULL_TREE,
872 false, GSI_CONTINUE_LINKING);
873 dest = build_addr_arg_loc (loc, partition->main_dr, nb_bytes);
874 src = build_addr_arg_loc (loc, partition->secondary_dr, nb_bytes);
875 if (ptr_derefs_may_alias_p (dest, src))
876 kind = BUILT_IN_MEMMOVE;
877 else
878 kind = BUILT_IN_MEMCPY;
879
880 dest = force_gimple_operand_gsi (&gsi, dest, true, NULL_TREE,
881 false, GSI_CONTINUE_LINKING);
882 src = force_gimple_operand_gsi (&gsi, src, true, NULL_TREE,
883 false, GSI_CONTINUE_LINKING);
884 fn = build_fold_addr_expr (builtin_decl_implicit (kind));
885 fn_call = gimple_build_call (fn, 3, dest, src, nb_bytes);
886 gsi_insert_after (&gsi, fn_call, GSI_CONTINUE_LINKING);
887
888 if (dump_file && (dump_flags & TDF_DETAILS))
889 {
890 if (kind == BUILT_IN_MEMCPY)
891 fprintf (dump_file, "generated memcpy\n");
892 else
893 fprintf (dump_file, "generated memmove\n");
894 }
895}
896
30d55936 897/* Remove and destroy the loop LOOP. */
dea61d92 898
30d55936
RG
899static void
900destroy_loop (struct loop *loop)
dea61d92 901{
30d55936
RG
902 unsigned nbbs = loop->num_nodes;
903 edge exit = single_exit (loop);
904 basic_block src = loop_preheader_edge (loop)->src, dest = exit->dest;
dea61d92 905 basic_block *bbs;
30d55936 906 unsigned i;
dea61d92
SP
907
908 bbs = get_loop_body_in_dom_order (loop);
909
30d55936
RG
910 redirect_edge_pred (exit, src);
911 exit->flags &= ~(EDGE_TRUE_VALUE|EDGE_FALSE_VALUE);
912 exit->flags |= EDGE_FALLTHRU;
913 cancel_loop_tree (loop);
914 rescan_loop_exit (exit, false, true);
dea61d92 915
30d55936 916 for (i = 0; i < nbbs; i++)
c014f6f5
RG
917 {
918 /* We have made sure to not leave any dangling uses of SSA
919 names defined in the loop. With the exception of virtuals.
920 Make sure we replace all uses of virtual defs that will remain
921 outside of the loop with the bare symbol as delete_basic_block
922 will release them. */
538dd0b7
DM
923 for (gphi_iterator gsi = gsi_start_phis (bbs[i]); !gsi_end_p (gsi);
924 gsi_next (&gsi))
c014f6f5 925 {
538dd0b7 926 gphi *phi = gsi.phi ();
ea057359 927 if (virtual_operand_p (gimple_phi_result (phi)))
c014f6f5
RG
928 mark_virtual_phi_result_for_renaming (phi);
929 }
538dd0b7
DM
930 for (gimple_stmt_iterator gsi = gsi_start_bb (bbs[i]); !gsi_end_p (gsi);
931 gsi_next (&gsi))
c014f6f5
RG
932 {
933 gimple stmt = gsi_stmt (gsi);
934 tree vdef = gimple_vdef (stmt);
935 if (vdef && TREE_CODE (vdef) == SSA_NAME)
936 mark_virtual_operand_for_renaming (vdef);
937 }
938 delete_basic_block (bbs[i]);
939 }
dea61d92 940 free (bbs);
30d55936
RG
941
942 set_immediate_dominator (CDI_DOMINATORS, dest,
943 recompute_dominator (CDI_DOMINATORS, dest));
dea61d92
SP
944}
945
30d55936 946/* Generates code for PARTITION. */
dea61d92 947
30d55936 948static void
d0582dc1 949generate_code_for_partition (struct loop *loop,
be6b029b 950 partition_t partition, bool copy_p)
dea61d92 951{
30d55936
RG
952 switch (partition->kind)
953 {
826a536d
RB
954 case PKIND_NORMAL:
955 /* Reductions all have to be in the last partition. */
956 gcc_assert (!partition_reduction_p (partition)
957 || !copy_p);
958 generate_loops_for_partition (loop, partition, copy_p);
959 return;
960
30d55936 961 case PKIND_MEMSET:
d0582dc1 962 generate_memset_builtin (loop, partition);
d0582dc1
RG
963 break;
964
965 case PKIND_MEMCPY:
966 generate_memcpy_builtin (loop, partition);
30d55936
RG
967 break;
968
969 default:
970 gcc_unreachable ();
971 }
dea61d92 972
826a536d
RB
973 /* Common tail for partitions we turn into a call. If this was the last
974 partition for which we generate code, we have to destroy the loop. */
975 if (!copy_p)
976 destroy_loop (loop);
dea61d92
SP
977}
978
dea61d92 979
24f161fd
RB
980/* Returns a partition with all the statements needed for computing
981 the vertex V of the RDG, also including the loop exit conditions. */
dea61d92 982
24f161fd
RB
983static partition_t
984build_rdg_partition_for_vertex (struct graph *rdg, int v)
dea61d92 985{
24f161fd 986 partition_t partition = partition_alloc (NULL, NULL);
00f96dc9 987 auto_vec<int, 3> nodes;
24f161fd 988 unsigned i;
dea61d92
SP
989 int x;
990
174ec470 991 graphds_dfs (rdg, &v, 1, &nodes, false, NULL);
dea61d92 992
9771b263 993 FOR_EACH_VEC_ELT (nodes, i, x)
24f161fd
RB
994 {
995 bitmap_set_bit (partition->stmts, x);
996 bitmap_set_bit (partition->loops,
997 loop_containing_stmt (RDG_STMT (rdg, x))->num);
998 }
dea61d92 999
dea61d92
SP
1000 return partition;
1001}
1002
30d55936
RG
1003/* Classifies the builtin kind we can generate for PARTITION of RDG and LOOP.
1004 For the moment we detect only the memset zero pattern. */
cfee318d 1005
30d55936
RG
1006static void
1007classify_partition (loop_p loop, struct graph *rdg, partition_t partition)
cfee318d 1008{
cfee318d 1009 bitmap_iterator bi;
30d55936
RG
1010 unsigned i;
1011 tree nb_iter;
d0582dc1 1012 data_reference_p single_load, single_store;
b9fc0497 1013 bool volatiles_p = false;
d995e887 1014 bool plus_one = false;
30d55936
RG
1015
1016 partition->kind = PKIND_NORMAL;
d0582dc1
RG
1017 partition->main_dr = NULL;
1018 partition->secondary_dr = NULL;
818625cf 1019 partition->niter = NULL_TREE;
d995e887 1020 partition->plus_one = false;
30d55936 1021
c61f8985 1022 EXECUTE_IF_SET_IN_BITMAP (partition->stmts, 0, i, bi)
30d55936
RG
1023 {
1024 gimple stmt = RDG_STMT (rdg, i);
1025
1026 if (gimple_has_volatile_ops (stmt))
b9fc0497 1027 volatiles_p = true;
cfee318d 1028
826a536d 1029 /* If the stmt has uses outside of the loop mark it as reduction. */
9ca86fc3 1030 if (stmt_has_scalar_dependences_outside_loop (loop, stmt))
30d55936 1031 {
826a536d 1032 partition->reduction_p = true;
30d55936
RG
1033 return;
1034 }
1035 }
1036
b9fc0497
RB
1037 /* Perform general partition disqualification for builtins. */
1038 if (volatiles_p
1039 || !flag_tree_loop_distribute_patterns)
1040 return;
1041
d0582dc1
RG
1042 /* Detect memset and memcpy. */
1043 single_load = NULL;
1044 single_store = NULL;
30d55936
RG
1045 EXECUTE_IF_SET_IN_BITMAP (partition->stmts, 0, i, bi)
1046 {
1047 gimple stmt = RDG_STMT (rdg, i);
d0582dc1
RG
1048 data_reference_p dr;
1049 unsigned j;
30d55936
RG
1050
1051 if (gimple_code (stmt) == GIMPLE_PHI)
1052 continue;
1053
1054 /* Any scalar stmts are ok. */
1055 if (!gimple_vuse (stmt))
1056 continue;
1057
d0582dc1
RG
1058 /* Otherwise just regular loads/stores. */
1059 if (!gimple_assign_single_p (stmt))
1060 return;
1061
1062 /* But exactly one store and/or load. */
9771b263 1063 for (j = 0; RDG_DATAREFS (rdg, i).iterate (j, &dr); ++j)
30d55936 1064 {
d0582dc1
RG
1065 if (DR_IS_READ (dr))
1066 {
1067 if (single_load != NULL)
1068 return;
1069 single_load = dr;
1070 }
1071 else
1072 {
1073 if (single_store != NULL)
1074 return;
1075 single_store = dr;
1076 }
30d55936 1077 }
30d55936
RG
1078 }
1079
818625cf
RB
1080 if (!single_store)
1081 return;
1082
d995e887 1083 nb_iter = number_of_latch_executions (loop);
818625cf
RB
1084 if (!nb_iter || nb_iter == chrec_dont_know)
1085 return;
d995e887
RB
1086 if (dominated_by_p (CDI_DOMINATORS, single_exit (loop)->src,
1087 gimple_bb (DR_STMT (single_store))))
1088 plus_one = true;
818625cf 1089
d0582dc1
RG
1090 if (single_store && !single_load)
1091 {
1092 gimple stmt = DR_STMT (single_store);
1093 tree rhs = gimple_assign_rhs1 (stmt);
401f3a81
JJ
1094 if (const_with_all_bytes_same (rhs) == -1
1095 && (!INTEGRAL_TYPE_P (TREE_TYPE (rhs))
1096 || (TYPE_MODE (TREE_TYPE (rhs))
1097 != TYPE_MODE (unsigned_char_type_node))))
d0582dc1
RG
1098 return;
1099 if (TREE_CODE (rhs) == SSA_NAME
1100 && !SSA_NAME_IS_DEFAULT_DEF (rhs)
1101 && flow_bb_inside_loop_p (loop, gimple_bb (SSA_NAME_DEF_STMT (rhs))))
1102 return;
ca406576
RB
1103 if (!adjacent_dr_p (single_store)
1104 || !dominated_by_p (CDI_DOMINATORS,
1105 loop->latch, gimple_bb (stmt)))
d0582dc1
RG
1106 return;
1107 partition->kind = PKIND_MEMSET;
1108 partition->main_dr = single_store;
818625cf 1109 partition->niter = nb_iter;
d995e887 1110 partition->plus_one = plus_one;
d0582dc1
RG
1111 }
1112 else if (single_store && single_load)
1113 {
1114 gimple store = DR_STMT (single_store);
1115 gimple load = DR_STMT (single_load);
1116 /* Direct aggregate copy or via an SSA name temporary. */
1117 if (load != store
1118 && gimple_assign_lhs (load) != gimple_assign_rhs1 (store))
1119 return;
1120 if (!adjacent_dr_p (single_store)
1121 || !adjacent_dr_p (single_load)
1122 || !operand_equal_p (DR_STEP (single_store),
ca406576
RB
1123 DR_STEP (single_load), 0)
1124 || !dominated_by_p (CDI_DOMINATORS,
1125 loop->latch, gimple_bb (store)))
d0582dc1 1126 return;
f20132e7
RG
1127 /* Now check that if there is a dependence this dependence is
1128 of a suitable form for memmove. */
6e1aa848 1129 vec<loop_p> loops = vNULL;
f20132e7 1130 ddr_p ddr;
9771b263 1131 loops.safe_push (loop);
f20132e7
RG
1132 ddr = initialize_data_dependence_relation (single_load, single_store,
1133 loops);
1134 compute_affine_dependence (ddr, loop);
f20132e7
RG
1135 if (DDR_ARE_DEPENDENT (ddr) == chrec_dont_know)
1136 {
1137 free_dependence_relation (ddr);
9771b263 1138 loops.release ();
f20132e7
RG
1139 return;
1140 }
1141 if (DDR_ARE_DEPENDENT (ddr) != chrec_known)
1142 {
1143 if (DDR_NUM_DIST_VECTS (ddr) == 0)
1144 {
1145 free_dependence_relation (ddr);
9771b263 1146 loops.release ();
f20132e7
RG
1147 return;
1148 }
1149 lambda_vector dist_v;
9771b263 1150 FOR_EACH_VEC_ELT (DDR_DIST_VECTS (ddr), i, dist_v)
f20132e7
RG
1151 {
1152 int dist = dist_v[index_in_loop_nest (loop->num,
1153 DDR_LOOP_NEST (ddr))];
1154 if (dist > 0 && !DDR_REVERSED_P (ddr))
1155 {
1156 free_dependence_relation (ddr);
9771b263 1157 loops.release ();
f20132e7
RG
1158 return;
1159 }
1160 }
1161 }
b7ce70b3 1162 free_dependence_relation (ddr);
9771b263 1163 loops.release ();
d0582dc1
RG
1164 partition->kind = PKIND_MEMCPY;
1165 partition->main_dr = single_store;
1166 partition->secondary_dr = single_load;
818625cf 1167 partition->niter = nb_iter;
d995e887 1168 partition->plus_one = plus_one;
d0582dc1 1169 }
cfee318d
SP
1170}
1171
1fa0c180
RG
1172/* For a data reference REF, return the declaration of its base
1173 address or NULL_TREE if the base is not determined. */
1174
1175static tree
1176ref_base_address (data_reference_p dr)
1177{
1178 tree base_address = DR_BASE_ADDRESS (dr);
1179 if (base_address
1180 && TREE_CODE (base_address) == ADDR_EXPR)
1181 return TREE_OPERAND (base_address, 0);
1182
1183 return base_address;
1184}
1185
cfee318d
SP
1186/* Returns true when PARTITION1 and PARTITION2 have similar memory
1187 accesses in RDG. */
1188
1189static bool
c61f8985
RG
1190similar_memory_accesses (struct graph *rdg, partition_t partition1,
1191 partition_t partition2)
cfee318d 1192{
1fa0c180 1193 unsigned i, j, k, l;
cfee318d 1194 bitmap_iterator bi, bj;
1fa0c180
RG
1195 data_reference_p ref1, ref2;
1196
1197 /* First check whether in the intersection of the two partitions are
1198 any loads or stores. Common loads are the situation that happens
1199 most often. */
1200 EXECUTE_IF_AND_IN_BITMAP (partition1->stmts, partition2->stmts, 0, i, bi)
1201 if (RDG_MEM_WRITE_STMT (rdg, i)
1202 || RDG_MEM_READS_STMT (rdg, i))
1203 return true;
cfee318d 1204
1fa0c180 1205 /* Then check all data-references against each other. */
c61f8985 1206 EXECUTE_IF_SET_IN_BITMAP (partition1->stmts, 0, i, bi)
cfee318d
SP
1207 if (RDG_MEM_WRITE_STMT (rdg, i)
1208 || RDG_MEM_READS_STMT (rdg, i))
c61f8985 1209 EXECUTE_IF_SET_IN_BITMAP (partition2->stmts, 0, j, bj)
cfee318d
SP
1210 if (RDG_MEM_WRITE_STMT (rdg, j)
1211 || RDG_MEM_READS_STMT (rdg, j))
1fa0c180 1212 {
9771b263 1213 FOR_EACH_VEC_ELT (RDG_DATAREFS (rdg, i), k, ref1)
1fa0c180
RG
1214 {
1215 tree base1 = ref_base_address (ref1);
1216 if (base1)
9771b263 1217 FOR_EACH_VEC_ELT (RDG_DATAREFS (rdg, j), l, ref2)
1fa0c180
RG
1218 if (base1 == ref_base_address (ref2))
1219 return true;
1220 }
1221 }
cfee318d
SP
1222
1223 return false;
1224}
1225
dea61d92
SP
1226/* Aggregate several components into a useful partition that is
1227 registered in the PARTITIONS vector. Partitions will be
1228 distributed in different loops. */
1229
1230static void
83a95546 1231rdg_build_partitions (struct graph *rdg,
2fd5894f 1232 vec<gimple> starting_stmts,
83a95546 1233 vec<partition_t> *partitions)
dea61d92 1234{
83a95546 1235 bitmap processed = BITMAP_ALLOC (NULL);
2fd5894f
RB
1236 int i;
1237 gimple stmt;
dea61d92 1238
2fd5894f 1239 FOR_EACH_VEC_ELT (starting_stmts, i, stmt)
dea61d92 1240 {
2fd5894f
RB
1241 int v = rdg_vertex_for_stmt (rdg, stmt);
1242
1243 if (dump_file && (dump_flags & TDF_DETAILS))
1244 fprintf (dump_file,
1245 "ldist asked to generate code for vertex %d\n", v);
b8698a0f 1246
24f161fd
RB
1247 /* If the vertex is already contained in another partition so
1248 is the partition rooted at it. */
dea61d92
SP
1249 if (bitmap_bit_p (processed, v))
1250 continue;
b8698a0f 1251
24f161fd
RB
1252 partition_t partition = build_rdg_partition_for_vertex (rdg, v);
1253 bitmap_ior_into (processed, partition->stmts);
dea61d92 1254
826a536d 1255 if (dump_file && (dump_flags & TDF_DETAILS))
dea61d92 1256 {
826a536d
RB
1257 fprintf (dump_file, "ldist useful partition:\n");
1258 dump_bitmap (dump_file, partition->stmts);
dea61d92 1259 }
826a536d
RB
1260
1261 partitions->safe_push (partition);
dea61d92
SP
1262 }
1263
83a95546
RB
1264 /* All vertices should have been assigned to at least one partition now,
1265 other than vertices belonging to dead code. */
dea61d92 1266
83a95546 1267 BITMAP_FREE (processed);
dea61d92
SP
1268}
1269
1270/* Dump to FILE the PARTITIONS. */
1271
1272static void
9771b263 1273dump_rdg_partitions (FILE *file, vec<partition_t> partitions)
dea61d92
SP
1274{
1275 int i;
c61f8985 1276 partition_t partition;
dea61d92 1277
9771b263 1278 FOR_EACH_VEC_ELT (partitions, i, partition)
c61f8985 1279 debug_bitmap_file (file, partition->stmts);
dea61d92
SP
1280}
1281
1282/* Debug PARTITIONS. */
9771b263 1283extern void debug_rdg_partitions (vec<partition_t> );
dea61d92 1284
24e47c76 1285DEBUG_FUNCTION void
9771b263 1286debug_rdg_partitions (vec<partition_t> partitions)
dea61d92
SP
1287{
1288 dump_rdg_partitions (stderr, partitions);
1289}
1290
2b8aee8e
SP
1291/* Returns the number of read and write operations in the RDG. */
1292
1293static int
1294number_of_rw_in_rdg (struct graph *rdg)
1295{
1296 int i, res = 0;
1297
1298 for (i = 0; i < rdg->n_vertices; i++)
1299 {
1300 if (RDG_MEM_WRITE_STMT (rdg, i))
1301 ++res;
1302
1303 if (RDG_MEM_READS_STMT (rdg, i))
1304 ++res;
1305 }
1306
1307 return res;
1308}
1309
1310/* Returns the number of read and write operations in a PARTITION of
1311 the RDG. */
1312
1313static int
c61f8985 1314number_of_rw_in_partition (struct graph *rdg, partition_t partition)
2b8aee8e
SP
1315{
1316 int res = 0;
1317 unsigned i;
1318 bitmap_iterator ii;
1319
c61f8985 1320 EXECUTE_IF_SET_IN_BITMAP (partition->stmts, 0, i, ii)
2b8aee8e
SP
1321 {
1322 if (RDG_MEM_WRITE_STMT (rdg, i))
1323 ++res;
1324
1325 if (RDG_MEM_READS_STMT (rdg, i))
1326 ++res;
1327 }
1328
1329 return res;
1330}
1331
1332/* Returns true when one of the PARTITIONS contains all the read or
1333 write operations of RDG. */
1334
1335static bool
9771b263
DN
1336partition_contains_all_rw (struct graph *rdg,
1337 vec<partition_t> partitions)
2b8aee8e
SP
1338{
1339 int i;
c61f8985 1340 partition_t partition;
2b8aee8e
SP
1341 int nrw = number_of_rw_in_rdg (rdg);
1342
9771b263 1343 FOR_EACH_VEC_ELT (partitions, i, partition)
2b8aee8e
SP
1344 if (nrw == number_of_rw_in_partition (rdg, partition))
1345 return true;
1346
1347 return false;
1348}
1349
447f3223
RB
1350/* Compute partition dependence created by the data references in DRS1
1351 and DRS2 and modify and return DIR according to that. */
1352
1353static int
1354pg_add_dependence_edges (struct graph *rdg, vec<loop_p> loops, int dir,
1355 vec<data_reference_p> drs1,
1356 vec<data_reference_p> drs2)
1357{
1358 data_reference_p dr1, dr2;
1359
1360 /* dependence direction - 0 is no dependence, -1 is back,
1361 1 is forth, 2 is both (we can stop then, merging will occur). */
1362 for (int ii = 0; drs1.iterate (ii, &dr1); ++ii)
1363 for (int jj = 0; drs2.iterate (jj, &dr2); ++jj)
1364 {
2cf19e26 1365 int this_dir = 1;
447f3223
RB
1366 ddr_p ddr;
1367 /* Re-shuffle data-refs to be in dominator order. */
1368 if (rdg_vertex_for_stmt (rdg, DR_STMT (dr1))
1369 > rdg_vertex_for_stmt (rdg, DR_STMT (dr2)))
1370 {
1371 data_reference_p tem = dr1;
1372 dr1 = dr2;
1373 dr2 = tem;
1374 this_dir = -this_dir;
1375 }
1376 ddr = initialize_data_dependence_relation (dr1, dr2, loops);
1377 compute_affine_dependence (ddr, loops[0]);
1378 if (DDR_ARE_DEPENDENT (ddr) == chrec_dont_know)
1379 this_dir = 2;
1380 else if (DDR_ARE_DEPENDENT (ddr) == NULL_TREE)
1381 {
1382 if (DDR_REVERSED_P (ddr))
1383 {
1384 data_reference_p tem = dr1;
1385 dr1 = dr2;
1386 dr2 = tem;
1387 this_dir = -this_dir;
1388 }
1389 /* Known dependences can still be unordered througout the
1390 iteration space, see gcc.dg/tree-ssa/ldist-16.c. */
2cf19e26 1391 if (DDR_NUM_DIST_VECTS (ddr) != 1)
447f3223 1392 this_dir = 2;
2cf19e26
RB
1393 /* If the overlap is exact preserve stmt order. */
1394 else if (lambda_vector_zerop (DDR_DIST_VECT (ddr, 0), 1))
1395 ;
1396 else
1397 {
1398 /* Else as the distance vector is lexicographic positive
1399 swap the dependence direction. */
1400 this_dir = -this_dir;
1401 }
447f3223
RB
1402 }
1403 else
1404 this_dir = 0;
1405 free_dependence_relation (ddr);
1406 if (dir == 0)
1407 dir = this_dir;
1408 else if (dir != this_dir)
1409 return 2;
1410 }
1411 return dir;
1412}
1413
1414/* Compare postorder number of the partition graph vertices V1 and V2. */
1415
1416static int
1417pgcmp (const void *v1_, const void *v2_)
1418{
1419 const vertex *v1 = (const vertex *)v1_;
1420 const vertex *v2 = (const vertex *)v2_;
1421 return v2->post - v1->post;
1422}
2fd5894f
RB
1423
1424/* Distributes the code from LOOP in such a way that producer
1425 statements are placed before consumer statements. Tries to separate
1426 only the statements from STMTS into separate loops.
1427 Returns the number of distributed loops. */
dea61d92
SP
1428
1429static int
36875e8f 1430distribute_loop (struct loop *loop, vec<gimple> stmts,
826a536d 1431 control_dependences *cd, int *nb_calls)
dea61d92 1432{
2fd5894f 1433 struct graph *rdg;
c61f8985 1434 partition_t partition;
be6b029b 1435 bool any_builtin;
2fd5894f 1436 int i, nbp;
447f3223
RB
1437 graph *pg = NULL;
1438 int num_sccs = 1;
dea61d92 1439
826a536d 1440 *nb_calls = 0;
00f96dc9 1441 auto_vec<loop_p, 3> loop_nest;
2fd5894f 1442 if (!find_loop_nest (loop, &loop_nest))
07687835 1443 return 0;
2fd5894f 1444
36875e8f 1445 rdg = build_rdg (loop_nest, cd);
2fd5894f
RB
1446 if (!rdg)
1447 {
1448 if (dump_file && (dump_flags & TDF_DETAILS))
1449 fprintf (dump_file,
1450 "Loop %d not distributed: failed to build the RDG.\n",
1451 loop->num);
1452
2fd5894f
RB
1453 return 0;
1454 }
1455
1456 if (dump_file && (dump_flags & TDF_DETAILS))
1457 dump_rdg (dump_file, rdg);
1458
00f96dc9 1459 auto_vec<partition_t, 3> partitions;
2fd5894f 1460 rdg_build_partitions (rdg, stmts, &partitions);
dea61d92 1461
be6b029b 1462 any_builtin = false;
9771b263 1463 FOR_EACH_VEC_ELT (partitions, i, partition)
be6b029b
RG
1464 {
1465 classify_partition (loop, rdg, partition);
1466 any_builtin |= partition_builtin_p (partition);
1467 }
30d55936 1468
447f3223
RB
1469 /* If we are only distributing patterns but did not detect any,
1470 simply bail out. */
9fed7f3a
RB
1471 if (!flag_tree_loop_distribution
1472 && !any_builtin)
1473 {
1474 nbp = 0;
1475 goto ldist_done;
1476 }
1477
447f3223
RB
1478 /* If we are only distributing patterns fuse all partitions that
1479 were not classified as builtins. This also avoids chopping
1480 a loop into pieces, separated by builtin calls. That is, we
1481 only want no or a single loop body remaining. */
1482 partition_t into;
1483 if (!flag_tree_loop_distribution)
1484 {
1485 for (i = 0; partitions.iterate (i, &into); ++i)
1486 if (!partition_builtin_p (into))
1487 break;
1488 for (++i; partitions.iterate (i, &partition); ++i)
1489 if (!partition_builtin_p (partition))
1490 {
1491 if (dump_file && (dump_flags & TDF_DETAILS))
1492 {
1493 fprintf (dump_file, "fusing non-builtin partitions\n");
1494 dump_bitmap (dump_file, into->stmts);
1495 dump_bitmap (dump_file, partition->stmts);
1496 }
1497 partition_merge_into (into, partition);
1498 partitions.unordered_remove (i);
1499 partition_free (partition);
1500 i--;
1501 }
1502 }
1503
1504 /* Due to limitations in the transform phase we have to fuse all
1505 reduction partitions into the last partition so the existing
1506 loop will contain all loop-closed PHI nodes. */
1507 for (i = 0; partitions.iterate (i, &into); ++i)
1508 if (partition_reduction_p (into))
1509 break;
1510 for (i = i + 1; partitions.iterate (i, &partition); ++i)
1511 if (partition_reduction_p (partition))
1512 {
1513 if (dump_file && (dump_flags & TDF_DETAILS))
1514 {
1515 fprintf (dump_file, "fusing partitions\n");
1516 dump_bitmap (dump_file, into->stmts);
1517 dump_bitmap (dump_file, partition->stmts);
1518 fprintf (dump_file, "because they have reductions\n");
1519 }
1520 partition_merge_into (into, partition);
1521 partitions.unordered_remove (i);
1522 partition_free (partition);
1523 i--;
1524 }
1525
9fed7f3a
RB
1526 /* Apply our simple cost model - fuse partitions with similar
1527 memory accesses. */
9fed7f3a
RB
1528 for (i = 0; partitions.iterate (i, &into); ++i)
1529 {
1530 if (partition_builtin_p (into))
1531 continue;
1532 for (int j = i + 1;
1533 partitions.iterate (j, &partition); ++j)
1534 {
1535 if (!partition_builtin_p (partition)
1536 && similar_memory_accesses (rdg, into, partition))
1537 {
1538 if (dump_file && (dump_flags & TDF_DETAILS))
1539 {
1540 fprintf (dump_file, "fusing partitions\n");
1541 dump_bitmap (dump_file, into->stmts);
1542 dump_bitmap (dump_file, partition->stmts);
1543 fprintf (dump_file, "because they have similar "
1544 "memory accesses\n");
1545 }
826a536d 1546 partition_merge_into (into, partition);
447f3223 1547 partitions.unordered_remove (j);
9fed7f3a
RB
1548 partition_free (partition);
1549 j--;
1550 }
1551 }
1552 }
1553
447f3223
RB
1554 /* Build the partition dependency graph. */
1555 if (partitions.length () > 1)
c014f6f5 1556 {
447f3223
RB
1557 pg = new_graph (partitions.length ());
1558 struct pgdata {
1559 partition_t partition;
1560 vec<data_reference_p> writes;
1561 vec<data_reference_p> reads;
1562 };
1563#define PGDATA(i) ((pgdata *)(pg->vertices[i].data))
1564 for (i = 0; partitions.iterate (i, &partition); ++i)
1565 {
1566 vertex *v = &pg->vertices[i];
1567 pgdata *data = new pgdata;
1568 data_reference_p dr;
1569 /* FIXME - leaks. */
1570 v->data = data;
1571 bitmap_iterator bi;
1572 unsigned j;
1573 data->partition = partition;
1574 data->reads = vNULL;
1575 data->writes = vNULL;
1576 EXECUTE_IF_SET_IN_BITMAP (partition->stmts, 0, j, bi)
1577 for (int k = 0; RDG_DATAREFS (rdg, j).iterate (k, &dr); ++k)
1578 if (DR_IS_READ (dr))
1579 data->reads.safe_push (dr);
1580 else
1581 data->writes.safe_push (dr);
1582 }
1583 partition_t partition1, partition2;
1584 for (i = 0; partitions.iterate (i, &partition1); ++i)
1585 for (int j = i + 1; partitions.iterate (j, &partition2); ++j)
1586 {
1587 /* dependence direction - 0 is no dependence, -1 is back,
1588 1 is forth, 2 is both (we can stop then, merging will occur). */
1589 int dir = 0;
1590 dir = pg_add_dependence_edges (rdg, loop_nest, dir,
1591 PGDATA(i)->writes,
1592 PGDATA(j)->reads);
1593 if (dir != 2)
1594 dir = pg_add_dependence_edges (rdg, loop_nest, dir,
1595 PGDATA(i)->reads,
1596 PGDATA(j)->writes);
1597 if (dir != 2)
1598 dir = pg_add_dependence_edges (rdg, loop_nest, dir,
1599 PGDATA(i)->writes,
1600 PGDATA(j)->writes);
1601 if (dir == 1 || dir == 2)
1602 add_edge (pg, i, j);
1603 if (dir == -1 || dir == 2)
1604 add_edge (pg, j, i);
1605 }
1606
1607 /* Add edges to the reduction partition (if any) to force it last. */
1608 unsigned j;
1609 for (j = 0; partitions.iterate (j, &partition); ++j)
1610 if (partition_reduction_p (partition))
1611 break;
1612 if (j < partitions.length ())
38ad2d07 1613 {
447f3223
RB
1614 for (unsigned i = 0; partitions.iterate (i, &partition); ++i)
1615 if (i != j)
1616 add_edge (pg, i, j);
1617 }
1618
1619 /* Compute partitions we cannot separate and fuse them. */
1620 num_sccs = graphds_scc (pg, NULL);
1621 for (i = 0; i < num_sccs; ++i)
1622 {
1623 partition_t first;
1624 int j;
1625 for (j = 0; partitions.iterate (j, &first); ++j)
1626 if (pg->vertices[j].component == i)
38ad2d07 1627 break;
447f3223
RB
1628 for (j = j + 1; partitions.iterate (j, &partition); ++j)
1629 if (pg->vertices[j].component == i)
38ad2d07 1630 {
447f3223
RB
1631 if (dump_file && (dump_flags & TDF_DETAILS))
1632 {
1633 fprintf (dump_file, "fusing partitions\n");
1634 dump_bitmap (dump_file, first->stmts);
1635 dump_bitmap (dump_file, partition->stmts);
1636 fprintf (dump_file, "because they are in the same "
1637 "dependence SCC\n");
1638 }
1639 partition_merge_into (first, partition);
1640 partitions[j] = NULL;
5eb010bc 1641 partition_free (partition);
447f3223 1642 PGDATA (j)->partition = NULL;
38ad2d07 1643 }
38ad2d07 1644 }
30d55936 1645
447f3223
RB
1646 /* Now order the remaining nodes in postorder. */
1647 qsort (pg->vertices, pg->n_vertices, sizeof (vertex), pgcmp);
1648 partitions.truncate (0);
1649 for (i = 0; i < pg->n_vertices; ++i)
b9fc0497 1650 {
447f3223
RB
1651 pgdata *data = PGDATA (i);
1652 if (data->partition)
1653 partitions.safe_push (data->partition);
1654 data->reads.release ();
1655 data->writes.release ();
1656 delete data;
b9fc0497 1657 }
447f3223
RB
1658 gcc_assert (partitions.length () == (unsigned)num_sccs);
1659 free_graph (pg);
b9fc0497
RB
1660 }
1661
9771b263 1662 nbp = partitions.length ();
a4293fa6 1663 if (nbp == 0
9771b263
DN
1664 || (nbp == 1 && !partition_builtin_p (partitions[0]))
1665 || (nbp > 1 && partition_contains_all_rw (rdg, partitions)))
c014f6f5
RG
1666 {
1667 nbp = 0;
1668 goto ldist_done;
1669 }
dea61d92
SP
1670
1671 if (dump_file && (dump_flags & TDF_DETAILS))
1672 dump_rdg_partitions (dump_file, partitions);
1673
9771b263 1674 FOR_EACH_VEC_ELT (partitions, i, partition)
826a536d
RB
1675 {
1676 if (partition_builtin_p (partition))
1677 (*nb_calls)++;
1678 generate_code_for_partition (loop, partition, i < nbp - 1);
1679 }
dea61d92 1680
dea61d92
SP
1681 ldist_done:
1682
9771b263 1683 FOR_EACH_VEC_ELT (partitions, i, partition)
c61f8985 1684 partition_free (partition);
dea61d92 1685
dea61d92 1686 free_rdg (rdg);
826a536d 1687 return nbp - *nb_calls;
dea61d92
SP
1688}
1689
1690/* Distribute all loops in the current function. */
1691
be55bfe6
TS
1692namespace {
1693
1694const pass_data pass_data_loop_distribution =
1695{
1696 GIMPLE_PASS, /* type */
1697 "ldist", /* name */
1698 OPTGROUP_LOOP, /* optinfo_flags */
be55bfe6
TS
1699 TV_TREE_LOOP_DISTRIBUTION, /* tv_id */
1700 ( PROP_cfg | PROP_ssa ), /* properties_required */
1701 0, /* properties_provided */
1702 0, /* properties_destroyed */
1703 0, /* todo_flags_start */
3bea341f 1704 0, /* todo_flags_finish */
be55bfe6
TS
1705};
1706
1707class pass_loop_distribution : public gimple_opt_pass
1708{
1709public:
1710 pass_loop_distribution (gcc::context *ctxt)
1711 : gimple_opt_pass (pass_data_loop_distribution, ctxt)
1712 {}
1713
1714 /* opt_pass methods: */
1715 virtual bool gate (function *)
1716 {
1717 return flag_tree_loop_distribution
1718 || flag_tree_loop_distribute_patterns;
1719 }
1720
1721 virtual unsigned int execute (function *);
1722
1723}; // class pass_loop_distribution
1724
1725unsigned int
1726pass_loop_distribution::execute (function *fun)
dea61d92
SP
1727{
1728 struct loop *loop;
c014f6f5 1729 bool changed = false;
1fa0c180 1730 basic_block bb;
36875e8f 1731 control_dependences *cd = NULL;
1fa0c180 1732
be55bfe6 1733 FOR_ALL_BB_FN (bb, fun)
1fa0c180
RG
1734 {
1735 gimple_stmt_iterator gsi;
1736 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1737 gimple_set_uid (gsi_stmt (gsi), -1);
1738 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1739 gimple_set_uid (gsi_stmt (gsi), -1);
1740 }
dea61d92 1741
c014f6f5
RG
1742 /* We can at the moment only distribute non-nested loops, thus restrict
1743 walking to innermost loops. */
f0bd40b1 1744 FOR_EACH_LOOP (loop, LI_ONLY_INNERMOST)
dea61d92 1745 {
ef062b13 1746 auto_vec<gimple> work_list;
be6b029b 1747 basic_block *bbs;
0e20c89f 1748 int num = loop->num;
be6b029b 1749 unsigned int i;
a3357f7d
RG
1750
1751 /* If the loop doesn't have a single exit we will fail anyway,
1752 so do that early. */
1753 if (!single_exit (loop))
1754 continue;
dea61d92 1755
f56f2d33
JH
1756 /* Only optimize hot loops. */
1757 if (!optimize_loop_for_speed_p (loop))
1758 continue;
1759
be6b029b
RG
1760 /* Initialize the worklist with stmts we seed the partitions with. */
1761 bbs = get_loop_body_in_dom_order (loop);
1762 for (i = 0; i < loop->num_nodes; ++i)
1763 {
538dd0b7
DM
1764 for (gphi_iterator gsi = gsi_start_phis (bbs[i]);
1765 !gsi_end_p (gsi);
1766 gsi_next (&gsi))
deb6c11a 1767 {
538dd0b7 1768 gphi *phi = gsi.phi ();
deb6c11a
RB
1769 if (virtual_operand_p (gimple_phi_result (phi)))
1770 continue;
1771 /* Distribute stmts which have defs that are used outside of
be55bfe6 1772 the loop. */
deb6c11a
RB
1773 if (!stmt_has_scalar_dependences_outside_loop (loop, phi))
1774 continue;
1775 work_list.safe_push (phi);
1776 }
538dd0b7
DM
1777 for (gimple_stmt_iterator gsi = gsi_start_bb (bbs[i]);
1778 !gsi_end_p (gsi);
1779 gsi_next (&gsi))
be6b029b
RG
1780 {
1781 gimple stmt = gsi_stmt (gsi);
83a95546
RB
1782
1783 /* If there is a stmt with side-effects bail out - we
be55bfe6 1784 cannot and should not distribute this loop. */
83a95546
RB
1785 if (gimple_has_side_effects (stmt))
1786 {
1787 work_list.truncate (0);
1788 goto out;
1789 }
1790
b9fc0497 1791 /* Distribute stmts which have defs that are used outside of
be55bfe6 1792 the loop. */
b9fc0497
RB
1793 if (stmt_has_scalar_dependences_outside_loop (loop, stmt))
1794 ;
1795 /* Otherwise only distribute stores for now. */
e179190c 1796 else if (!gimple_vdef (stmt))
be6b029b
RG
1797 continue;
1798
9771b263 1799 work_list.safe_push (stmt);
be6b029b
RG
1800 }
1801 }
83a95546 1802out:
be6b029b 1803 free (bbs);
c014f6f5 1804
826a536d
RB
1805 int nb_generated_loops = 0;
1806 int nb_generated_calls = 0;
1807 location_t loc = find_loop_location (loop);
9771b263 1808 if (work_list.length () > 0)
36875e8f
RB
1809 {
1810 if (!cd)
1811 {
ca406576 1812 calculate_dominance_info (CDI_DOMINATORS);
36875e8f
RB
1813 calculate_dominance_info (CDI_POST_DOMINATORS);
1814 cd = new control_dependences (create_edge_list ());
1815 free_dominance_info (CDI_POST_DOMINATORS);
1816 }
826a536d
RB
1817 nb_generated_loops = distribute_loop (loop, work_list, cd,
1818 &nb_generated_calls);
36875e8f 1819 }
c014f6f5 1820
826a536d 1821 if (nb_generated_loops + nb_generated_calls > 0)
dea61d92 1822 {
826a536d
RB
1823 changed = true;
1824 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS,
1825 loc, "Loop %d distributed: split to %d loops "
1826 "and %d library calls.\n",
1827 num, nb_generated_loops, nb_generated_calls);
dea61d92 1828 }
826a536d
RB
1829 else if (dump_file && (dump_flags & TDF_DETAILS))
1830 fprintf (dump_file, "Loop %d is the same.\n", num);
dea61d92
SP
1831 }
1832
36875e8f
RB
1833 if (cd)
1834 delete cd;
1835
c014f6f5
RG
1836 if (changed)
1837 {
be55bfe6 1838 mark_virtual_operands_for_renaming (fun);
c014f6f5
RG
1839 rewrite_into_loop_closed_ssa (NULL, TODO_update_ssa);
1840 }
1841
1842#ifdef ENABLE_CHECKING
1843 verify_loop_structure ();
1844#endif
1845
5006671f 1846 return 0;
dea61d92
SP
1847}
1848
27a4cd48
DM
1849} // anon namespace
1850
1851gimple_opt_pass *
1852make_pass_loop_distribution (gcc::context *ctxt)
1853{
1854 return new pass_loop_distribution (ctxt);
1855}