gcc/ChangeLog:
[official-gcc.git] / gcc / tree-loop-distribution.c
blobb60320945d46773b998ccfe5c80671751e3b9034
1 /* Loop distribution.
2 Copyright (C) 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Georges-Andre Silber <Georges-Andre.Silber@ensmp.fr>
5 and Sebastian Pop <sebastian.pop@amd.com>.
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it
10 under the terms of the GNU General Public License as published by the
11 Free Software Foundation; either version 3, or (at your option) any
12 later version.
14 GCC is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 /* This pass performs loop distribution: for example, the loop
25 |DO I = 2, N
26 | A(I) = B(I) + C
27 | D(I) = A(I-1)*E
28 |ENDDO
30 is transformed to
32 |DOALL I = 2, N
33 | A(I) = B(I) + C
34 |ENDDO
36 |DOALL I = 2, N
37 | D(I) = A(I-1)*E
38 |ENDDO
40 This pass uses an RDG, Reduced Dependence Graph built on top of the
41 data dependence relations. The RDG is then topologically sorted to
42 obtain a map of information producers/consumers based on which it
43 generates the new loops. */
45 #include "config.h"
46 #include "system.h"
47 #include "coretypes.h"
48 #include "tm.h"
49 #include "tree.h"
50 #include "basic-block.h"
51 #include "tree-flow.h"
52 #include "tree-dump.h"
53 #include "timevar.h"
54 #include "cfgloop.h"
55 #include "tree-chrec.h"
56 #include "tree-data-ref.h"
57 #include "tree-scalar-evolution.h"
58 #include "tree-pass.h"
59 #include "lambda.h"
60 #include "langhooks.h"
61 #include "tree-vectorizer.h"
63 /* If bit I is not set, it means that this node represents an
64 operation that has already been performed, and that should not be
65 performed again. This is the subgraph of remaining important
66 computations that is passed to the DFS algorithm for avoiding to
67 include several times the same stores in different loops. */
68 static bitmap remaining_stmts;
70 /* A node of the RDG is marked in this bitmap when it has as a
71 predecessor a node that writes to memory. */
72 static bitmap upstream_mem_writes;
74 /* Update the PHI nodes of NEW_LOOP. NEW_LOOP is a duplicate of
75 ORIG_LOOP. */
77 static void
78 update_phis_for_loop_copy (struct loop *orig_loop, struct loop *new_loop)
80 tree new_ssa_name;
81 gimple_stmt_iterator si_new, si_orig;
82 edge orig_loop_latch = loop_latch_edge (orig_loop);
83 edge orig_entry_e = loop_preheader_edge (orig_loop);
84 edge new_loop_entry_e = loop_preheader_edge (new_loop);
86 /* Scan the phis in the headers of the old and new loops
87 (they are organized in exactly the same order). */
88 for (si_new = gsi_start_phis (new_loop->header),
89 si_orig = gsi_start_phis (orig_loop->header);
90 !gsi_end_p (si_new) && !gsi_end_p (si_orig);
91 gsi_next (&si_new), gsi_next (&si_orig))
93 tree def;
94 source_location locus;
95 gimple phi_new = gsi_stmt (si_new);
96 gimple phi_orig = gsi_stmt (si_orig);
98 /* Add the first phi argument for the phi in NEW_LOOP (the one
99 associated with the entry of NEW_LOOP) */
100 def = PHI_ARG_DEF_FROM_EDGE (phi_orig, orig_entry_e);
101 locus = gimple_phi_arg_location_from_edge (phi_orig, orig_entry_e);
102 add_phi_arg (phi_new, def, new_loop_entry_e, locus);
104 /* Add the second phi argument for the phi in NEW_LOOP (the one
105 associated with the latch of NEW_LOOP) */
106 def = PHI_ARG_DEF_FROM_EDGE (phi_orig, orig_loop_latch);
107 locus = gimple_phi_arg_location_from_edge (phi_orig, orig_loop_latch);
109 if (TREE_CODE (def) == SSA_NAME)
111 new_ssa_name = get_current_def (def);
113 if (!new_ssa_name)
114 /* This only happens if there are no definitions inside the
115 loop. Use the the invariant in the new loop as is. */
116 new_ssa_name = def;
118 else
119 /* Could be an integer. */
120 new_ssa_name = def;
122 add_phi_arg (phi_new, new_ssa_name, loop_latch_edge (new_loop), locus);
126 /* Return a copy of LOOP placed before LOOP. */
128 static struct loop *
129 copy_loop_before (struct loop *loop)
131 struct loop *res;
132 edge preheader = loop_preheader_edge (loop);
134 if (!single_exit (loop))
135 return NULL;
137 initialize_original_copy_tables ();
138 res = slpeel_tree_duplicate_loop_to_edge_cfg (loop, preheader);
139 free_original_copy_tables ();
141 if (!res)
142 return NULL;
144 update_phis_for_loop_copy (loop, res);
145 rename_variables_in_loop (res);
147 return res;
150 /* Creates an empty basic block after LOOP. */
152 static void
153 create_bb_after_loop (struct loop *loop)
155 edge exit = single_exit (loop);
157 if (!exit)
158 return;
160 split_edge (exit);
163 /* Generate code for PARTITION from the code in LOOP. The loop is
164 copied when COPY_P is true. All the statements not flagged in the
165 PARTITION bitmap are removed from the loop or from its copy. The
166 statements are indexed in sequence inside a basic block, and the
167 basic blocks of a loop are taken in dom order. Returns true when
168 the code gen succeeded. */
170 static bool
171 generate_loops_for_partition (struct loop *loop, bitmap partition, bool copy_p)
173 unsigned i, x;
174 gimple_stmt_iterator bsi;
175 basic_block *bbs;
177 if (copy_p)
179 loop = copy_loop_before (loop);
180 create_preheader (loop, CP_SIMPLE_PREHEADERS);
181 create_bb_after_loop (loop);
184 if (loop == NULL)
185 return false;
187 /* Remove stmts not in the PARTITION bitmap. The order in which we
188 visit the phi nodes and the statements is exactly as in
189 stmts_from_loop. */
190 bbs = get_loop_body_in_dom_order (loop);
192 for (x = 0, i = 0; i < loop->num_nodes; i++)
194 basic_block bb = bbs[i];
196 for (bsi = gsi_start_phis (bb); !gsi_end_p (bsi);)
197 if (!bitmap_bit_p (partition, x++))
199 gimple phi = gsi_stmt (bsi);
200 if (!is_gimple_reg (gimple_phi_result (phi)))
201 mark_virtual_phi_result_for_renaming (phi);
202 remove_phi_node (&bsi, true);
204 else
205 gsi_next (&bsi);
207 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi);)
209 gimple stmt = gsi_stmt (bsi);
210 if (gimple_code (gsi_stmt (bsi)) != GIMPLE_LABEL
211 && !bitmap_bit_p (partition, x++))
213 unlink_stmt_vdef (stmt);
214 gsi_remove (&bsi, true);
215 release_defs (stmt);
217 else
218 gsi_next (&bsi);
222 free (bbs);
223 return true;
226 /* Build the size argument for a memset call. */
228 static inline tree
229 build_size_arg_loc (location_t loc, tree nb_iter, tree op,
230 gimple_seq *stmt_list)
232 gimple_seq stmts;
233 tree x = size_binop_loc (loc, MULT_EXPR,
234 fold_convert_loc (loc, sizetype, nb_iter),
235 TYPE_SIZE_UNIT (TREE_TYPE (op)));
236 x = force_gimple_operand (x, &stmts, true, NULL);
237 gimple_seq_add_seq (stmt_list, stmts);
239 return x;
242 /* Generate a call to memset. Return true when the operation succeeded. */
244 static void
245 generate_memset_zero (gimple stmt, tree op0, tree nb_iter,
246 gimple_stmt_iterator bsi)
248 tree addr_base, nb_bytes;
249 bool res = false;
250 gimple_seq stmt_list = NULL, stmts;
251 gimple fn_call;
252 tree mem, fn;
253 struct data_reference *dr = XCNEW (struct data_reference);
254 location_t loc = gimple_location (stmt);
256 DR_STMT (dr) = stmt;
257 DR_REF (dr) = op0;
258 res = dr_analyze_innermost (dr);
259 gcc_assert (res && stride_of_unit_type_p (DR_STEP (dr), TREE_TYPE (op0)));
261 nb_bytes = build_size_arg_loc (loc, nb_iter, op0, &stmt_list);
262 addr_base = size_binop_loc (loc, PLUS_EXPR, DR_OFFSET (dr), DR_INIT (dr));
263 addr_base = fold_convert_loc (loc, sizetype, addr_base);
265 /* Test for a negative stride, iterating over every element. */
266 if (integer_zerop (size_binop (PLUS_EXPR,
267 TYPE_SIZE_UNIT (TREE_TYPE (op0)),
268 fold_convert (sizetype, DR_STEP (dr)))))
270 addr_base = size_binop_loc (loc, MINUS_EXPR, addr_base,
271 fold_convert_loc (loc, sizetype, nb_bytes));
272 addr_base = size_binop_loc (loc, PLUS_EXPR, addr_base,
273 TYPE_SIZE_UNIT (TREE_TYPE (op0)));
276 addr_base = fold_build2_loc (loc, POINTER_PLUS_EXPR,
277 TREE_TYPE (DR_BASE_ADDRESS (dr)),
278 DR_BASE_ADDRESS (dr), addr_base);
279 mem = force_gimple_operand (addr_base, &stmts, true, NULL);
280 gimple_seq_add_seq (&stmt_list, stmts);
282 fn = build_fold_addr_expr (implicit_built_in_decls [BUILT_IN_MEMSET]);
283 fn_call = gimple_build_call (fn, 3, mem, integer_zero_node, nb_bytes);
284 gimple_seq_add_stmt (&stmt_list, fn_call);
285 gsi_insert_seq_after (&bsi, stmt_list, GSI_CONTINUE_LINKING);
287 if (dump_file && (dump_flags & TDF_DETAILS))
288 fprintf (dump_file, "generated memset zero\n");
290 free_data_ref (dr);
293 /* Tries to generate a builtin function for the instructions of LOOP
294 pointed to by the bits set in PARTITION. Returns true when the
295 operation succeeded. */
297 static bool
298 generate_builtin (struct loop *loop, bitmap partition, bool copy_p)
300 bool res = false;
301 unsigned i, x = 0;
302 basic_block *bbs;
303 gimple write = NULL;
304 gimple_stmt_iterator bsi;
305 tree nb_iter = number_of_exit_cond_executions (loop);
307 if (!nb_iter || nb_iter == chrec_dont_know)
308 return false;
310 bbs = get_loop_body_in_dom_order (loop);
312 for (i = 0; i < loop->num_nodes; i++)
314 basic_block bb = bbs[i];
316 for (bsi = gsi_start_phis (bb); !gsi_end_p (bsi); gsi_next (&bsi))
317 x++;
319 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
321 gimple stmt = gsi_stmt (bsi);
323 if (bitmap_bit_p (partition, x++)
324 && is_gimple_assign (stmt)
325 && !is_gimple_reg (gimple_assign_lhs (stmt)))
327 /* Don't generate the builtins when there are more than
328 one memory write. */
329 if (write != NULL)
330 goto end;
332 write = stmt;
333 if (bb == loop->latch)
334 nb_iter = number_of_latch_executions (loop);
339 if (!stmt_with_adjacent_zero_store_dr_p (write))
340 goto end;
342 /* The new statements will be placed before LOOP. */
343 bsi = gsi_last_bb (loop_preheader_edge (loop)->src);
344 generate_memset_zero (write, gimple_assign_lhs (write), nb_iter, bsi);
345 res = true;
347 /* If this is the last partition for which we generate code, we have
348 to destroy the loop. */
349 if (!copy_p)
351 unsigned nbbs = loop->num_nodes;
352 edge exit = single_exit (loop);
353 basic_block src = loop_preheader_edge (loop)->src, dest = exit->dest;
354 redirect_edge_pred (exit, src);
355 exit->flags &= ~(EDGE_TRUE_VALUE|EDGE_FALSE_VALUE);
356 exit->flags |= EDGE_FALLTHRU;
357 cancel_loop_tree (loop);
358 rescan_loop_exit (exit, false, true);
360 for (i = 0; i < nbbs; i++)
361 delete_basic_block (bbs[i]);
363 set_immediate_dominator (CDI_DOMINATORS, dest,
364 recompute_dominator (CDI_DOMINATORS, dest));
367 end:
368 free (bbs);
369 return res;
372 /* Generates code for PARTITION. For simple loops, this function can
373 generate a built-in. */
375 static bool
376 generate_code_for_partition (struct loop *loop, bitmap partition, bool copy_p)
378 if (generate_builtin (loop, partition, copy_p))
379 return true;
381 return generate_loops_for_partition (loop, partition, copy_p);
385 /* Returns true if the node V of RDG cannot be recomputed. */
387 static bool
388 rdg_cannot_recompute_vertex_p (struct graph *rdg, int v)
390 if (RDG_MEM_WRITE_STMT (rdg, v))
391 return true;
393 return false;
396 /* Returns true when the vertex V has already been generated in the
397 current partition (V is in PROCESSED), or when V belongs to another
398 partition and cannot be recomputed (V is not in REMAINING_STMTS). */
400 static inline bool
401 already_processed_vertex_p (bitmap processed, int v)
403 return (bitmap_bit_p (processed, v)
404 || !bitmap_bit_p (remaining_stmts, v));
407 /* Returns NULL when there is no anti-dependence among the successors
408 of vertex V, otherwise returns the edge with the anti-dep. */
410 static struct graph_edge *
411 has_anti_dependence (struct vertex *v)
413 struct graph_edge *e;
415 if (v->succ)
416 for (e = v->succ; e; e = e->succ_next)
417 if (RDGE_TYPE (e) == anti_dd)
418 return e;
420 return NULL;
423 /* Returns true when V has an anti-dependence edge among its successors. */
425 static bool
426 predecessor_has_mem_write (struct graph *rdg, struct vertex *v)
428 struct graph_edge *e;
430 if (v->pred)
431 for (e = v->pred; e; e = e->pred_next)
432 if (bitmap_bit_p (upstream_mem_writes, e->src)
433 /* Don't consider flow channels: a write to memory followed
434 by a read from memory. These channels allow the split of
435 the RDG in different partitions. */
436 && !RDG_MEM_WRITE_STMT (rdg, e->src))
437 return true;
439 return false;
442 /* Initializes the upstream_mem_writes bitmap following the
443 information from RDG. */
445 static void
446 mark_nodes_having_upstream_mem_writes (struct graph *rdg)
448 int v, x;
449 bitmap seen = BITMAP_ALLOC (NULL);
451 for (v = rdg->n_vertices - 1; v >= 0; v--)
452 if (!bitmap_bit_p (seen, v))
454 unsigned i;
455 VEC (int, heap) *nodes = VEC_alloc (int, heap, 3);
457 graphds_dfs (rdg, &v, 1, &nodes, false, NULL);
459 FOR_EACH_VEC_ELT (int, nodes, i, x)
461 if (!bitmap_set_bit (seen, x))
462 continue;
464 if (RDG_MEM_WRITE_STMT (rdg, x)
465 || predecessor_has_mem_write (rdg, &(rdg->vertices[x]))
466 /* In anti dependences the read should occur before
467 the write, this is why both the read and the write
468 should be placed in the same partition. */
469 || has_anti_dependence (&(rdg->vertices[x])))
471 bitmap_set_bit (upstream_mem_writes, x);
475 VEC_free (int, heap, nodes);
479 /* Returns true when vertex u has a memory write node as a predecessor
480 in RDG. */
482 static bool
483 has_upstream_mem_writes (int u)
485 return bitmap_bit_p (upstream_mem_writes, u);
488 static void rdg_flag_vertex_and_dependent (struct graph *, int, bitmap, bitmap,
489 bitmap, bool *);
491 /* Flag the uses of U stopping following the information from
492 upstream_mem_writes. */
494 static void
495 rdg_flag_uses (struct graph *rdg, int u, bitmap partition, bitmap loops,
496 bitmap processed, bool *part_has_writes)
498 use_operand_p use_p;
499 struct vertex *x = &(rdg->vertices[u]);
500 gimple stmt = RDGV_STMT (x);
501 struct graph_edge *anti_dep = has_anti_dependence (x);
503 /* Keep in the same partition the destination of an antidependence,
504 because this is a store to the exact same location. Putting this
505 in another partition is bad for cache locality. */
506 if (anti_dep)
508 int v = anti_dep->dest;
510 if (!already_processed_vertex_p (processed, v))
511 rdg_flag_vertex_and_dependent (rdg, v, partition, loops,
512 processed, part_has_writes);
515 if (gimple_code (stmt) != GIMPLE_PHI)
517 if ((use_p = gimple_vuse_op (stmt)) != NULL_USE_OPERAND_P)
519 tree use = USE_FROM_PTR (use_p);
521 if (TREE_CODE (use) == SSA_NAME)
523 gimple def_stmt = SSA_NAME_DEF_STMT (use);
524 int v = rdg_vertex_for_stmt (rdg, def_stmt);
526 if (v >= 0
527 && !already_processed_vertex_p (processed, v))
528 rdg_flag_vertex_and_dependent (rdg, v, partition, loops,
529 processed, part_has_writes);
534 if (is_gimple_assign (stmt) && has_upstream_mem_writes (u))
536 tree op0 = gimple_assign_lhs (stmt);
538 /* Scalar channels don't have enough space for transmitting data
539 between tasks, unless we add more storage by privatizing. */
540 if (is_gimple_reg (op0))
542 use_operand_p use_p;
543 imm_use_iterator iter;
545 FOR_EACH_IMM_USE_FAST (use_p, iter, op0)
547 int v = rdg_vertex_for_stmt (rdg, USE_STMT (use_p));
549 if (!already_processed_vertex_p (processed, v))
550 rdg_flag_vertex_and_dependent (rdg, v, partition, loops,
551 processed, part_has_writes);
557 /* Flag V from RDG as part of PARTITION, and also flag its loop number
558 in LOOPS. */
560 static void
561 rdg_flag_vertex (struct graph *rdg, int v, bitmap partition, bitmap loops,
562 bool *part_has_writes)
564 struct loop *loop;
566 if (!bitmap_set_bit (partition, v))
567 return;
569 loop = loop_containing_stmt (RDG_STMT (rdg, v));
570 bitmap_set_bit (loops, loop->num);
572 if (rdg_cannot_recompute_vertex_p (rdg, v))
574 *part_has_writes = true;
575 bitmap_clear_bit (remaining_stmts, v);
579 /* Flag in the bitmap PARTITION the vertex V and all its predecessors.
580 Also flag their loop number in LOOPS. */
582 static void
583 rdg_flag_vertex_and_dependent (struct graph *rdg, int v, bitmap partition,
584 bitmap loops, bitmap processed,
585 bool *part_has_writes)
587 unsigned i;
588 VEC (int, heap) *nodes = VEC_alloc (int, heap, 3);
589 int x;
591 bitmap_set_bit (processed, v);
592 rdg_flag_uses (rdg, v, partition, loops, processed, part_has_writes);
593 graphds_dfs (rdg, &v, 1, &nodes, false, remaining_stmts);
594 rdg_flag_vertex (rdg, v, partition, loops, part_has_writes);
596 FOR_EACH_VEC_ELT (int, nodes, i, x)
597 if (!already_processed_vertex_p (processed, x))
598 rdg_flag_vertex_and_dependent (rdg, x, partition, loops, processed,
599 part_has_writes);
601 VEC_free (int, heap, nodes);
604 /* Initialize CONDS with all the condition statements from the basic
605 blocks of LOOP. */
607 static void
608 collect_condition_stmts (struct loop *loop, VEC (gimple, heap) **conds)
610 unsigned i;
611 edge e;
612 VEC (edge, heap) *exits = get_loop_exit_edges (loop);
614 FOR_EACH_VEC_ELT (edge, exits, i, e)
616 gimple cond = last_stmt (e->src);
618 if (cond)
619 VEC_safe_push (gimple, heap, *conds, cond);
622 VEC_free (edge, heap, exits);
625 /* Add to PARTITION all the exit condition statements for LOOPS
626 together with all their dependent statements determined from
627 RDG. */
629 static void
630 rdg_flag_loop_exits (struct graph *rdg, bitmap loops, bitmap partition,
631 bitmap processed, bool *part_has_writes)
633 unsigned i;
634 bitmap_iterator bi;
635 VEC (gimple, heap) *conds = VEC_alloc (gimple, heap, 3);
637 EXECUTE_IF_SET_IN_BITMAP (loops, 0, i, bi)
638 collect_condition_stmts (get_loop (i), &conds);
640 while (!VEC_empty (gimple, conds))
642 gimple cond = VEC_pop (gimple, conds);
643 int v = rdg_vertex_for_stmt (rdg, cond);
644 bitmap new_loops = BITMAP_ALLOC (NULL);
646 if (!already_processed_vertex_p (processed, v))
647 rdg_flag_vertex_and_dependent (rdg, v, partition, new_loops, processed,
648 part_has_writes);
650 EXECUTE_IF_SET_IN_BITMAP (new_loops, 0, i, bi)
651 if (bitmap_set_bit (loops, i))
652 collect_condition_stmts (get_loop (i), &conds);
654 BITMAP_FREE (new_loops);
658 /* Returns a bitmap in which all the statements needed for computing
659 the strongly connected component C of the RDG are flagged, also
660 including the loop exit conditions. */
662 static bitmap
663 build_rdg_partition_for_component (struct graph *rdg, rdgc c,
664 bool *part_has_writes)
666 int i, v;
667 bitmap partition = BITMAP_ALLOC (NULL);
668 bitmap loops = BITMAP_ALLOC (NULL);
669 bitmap processed = BITMAP_ALLOC (NULL);
671 FOR_EACH_VEC_ELT (int, c->vertices, i, v)
672 if (!already_processed_vertex_p (processed, v))
673 rdg_flag_vertex_and_dependent (rdg, v, partition, loops, processed,
674 part_has_writes);
676 rdg_flag_loop_exits (rdg, loops, partition, processed, part_has_writes);
678 BITMAP_FREE (processed);
679 BITMAP_FREE (loops);
680 return partition;
683 /* Free memory for COMPONENTS. */
685 static void
686 free_rdg_components (VEC (rdgc, heap) *components)
688 int i;
689 rdgc x;
691 FOR_EACH_VEC_ELT (rdgc, components, i, x)
693 VEC_free (int, heap, x->vertices);
694 free (x);
698 /* Build the COMPONENTS vector with the strongly connected components
699 of RDG in which the STARTING_VERTICES occur. */
701 static void
702 rdg_build_components (struct graph *rdg, VEC (int, heap) *starting_vertices,
703 VEC (rdgc, heap) **components)
705 int i, v;
706 bitmap saved_components = BITMAP_ALLOC (NULL);
707 int n_components = graphds_scc (rdg, NULL);
708 VEC (int, heap) **all_components = XNEWVEC (VEC (int, heap) *, n_components);
710 for (i = 0; i < n_components; i++)
711 all_components[i] = VEC_alloc (int, heap, 3);
713 for (i = 0; i < rdg->n_vertices; i++)
714 VEC_safe_push (int, heap, all_components[rdg->vertices[i].component], i);
716 FOR_EACH_VEC_ELT (int, starting_vertices, i, v)
718 int c = rdg->vertices[v].component;
720 if (bitmap_set_bit (saved_components, c))
722 rdgc x = XCNEW (struct rdg_component);
723 x->num = c;
724 x->vertices = all_components[c];
726 VEC_safe_push (rdgc, heap, *components, x);
730 for (i = 0; i < n_components; i++)
731 if (!bitmap_bit_p (saved_components, i))
732 VEC_free (int, heap, all_components[i]);
734 free (all_components);
735 BITMAP_FREE (saved_components);
738 /* Returns true when it is possible to generate a builtin pattern for
739 the PARTITION of RDG. For the moment we detect only the memset
740 zero pattern. */
742 static bool
743 can_generate_builtin (struct graph *rdg, bitmap partition)
745 unsigned i;
746 bitmap_iterator bi;
747 int nb_reads = 0;
748 int nb_writes = 0;
749 int stores_zero = 0;
751 EXECUTE_IF_SET_IN_BITMAP (partition, 0, i, bi)
752 if (RDG_MEM_READS_STMT (rdg, i))
753 nb_reads++;
754 else if (RDG_MEM_WRITE_STMT (rdg, i))
756 nb_writes++;
757 if (stmt_with_adjacent_zero_store_dr_p (RDG_STMT (rdg, i)))
758 stores_zero++;
761 return stores_zero == 1 && nb_writes == 1 && nb_reads == 0;
764 /* Returns true when PARTITION1 and PARTITION2 have similar memory
765 accesses in RDG. */
767 static bool
768 similar_memory_accesses (struct graph *rdg, bitmap partition1,
769 bitmap partition2)
771 unsigned i, j;
772 bitmap_iterator bi, bj;
774 EXECUTE_IF_SET_IN_BITMAP (partition1, 0, i, bi)
775 if (RDG_MEM_WRITE_STMT (rdg, i)
776 || RDG_MEM_READS_STMT (rdg, i))
777 EXECUTE_IF_SET_IN_BITMAP (partition2, 0, j, bj)
778 if (RDG_MEM_WRITE_STMT (rdg, j)
779 || RDG_MEM_READS_STMT (rdg, j))
780 if (rdg_has_similar_memory_accesses (rdg, i, j))
781 return true;
783 return false;
786 /* Fuse all the partitions from PARTITIONS that contain similar memory
787 references, i.e., we're taking care of cache locality. This
788 function does not fuse those partitions that contain patterns that
789 can be code generated with builtins. */
791 static void
792 fuse_partitions_with_similar_memory_accesses (struct graph *rdg,
793 VEC (bitmap, heap) **partitions)
795 int p1, p2;
796 bitmap partition1, partition2;
798 FOR_EACH_VEC_ELT (bitmap, *partitions, p1, partition1)
799 if (!can_generate_builtin (rdg, partition1))
800 FOR_EACH_VEC_ELT (bitmap, *partitions, p2, partition2)
801 if (p1 != p2
802 && !can_generate_builtin (rdg, partition2)
803 && similar_memory_accesses (rdg, partition1, partition2))
805 bitmap_ior_into (partition1, partition2);
806 VEC_ordered_remove (bitmap, *partitions, p2);
807 p2--;
811 /* Aggregate several components into a useful partition that is
812 registered in the PARTITIONS vector. Partitions will be
813 distributed in different loops. */
815 static void
816 rdg_build_partitions (struct graph *rdg, VEC (rdgc, heap) *components,
817 VEC (int, heap) **other_stores,
818 VEC (bitmap, heap) **partitions, bitmap processed)
820 int i;
821 rdgc x;
822 bitmap partition = BITMAP_ALLOC (NULL);
824 FOR_EACH_VEC_ELT (rdgc, components, i, x)
826 bitmap np;
827 bool part_has_writes = false;
828 int v = VEC_index (int, x->vertices, 0);
830 if (bitmap_bit_p (processed, v))
831 continue;
833 np = build_rdg_partition_for_component (rdg, x, &part_has_writes);
834 bitmap_ior_into (partition, np);
835 bitmap_ior_into (processed, np);
836 BITMAP_FREE (np);
838 if (part_has_writes)
840 if (dump_file && (dump_flags & TDF_DETAILS))
842 fprintf (dump_file, "ldist useful partition:\n");
843 dump_bitmap (dump_file, partition);
846 VEC_safe_push (bitmap, heap, *partitions, partition);
847 partition = BITMAP_ALLOC (NULL);
851 /* Add the nodes from the RDG that were not marked as processed, and
852 that are used outside the current loop. These are scalar
853 computations that are not yet part of previous partitions. */
854 for (i = 0; i < rdg->n_vertices; i++)
855 if (!bitmap_bit_p (processed, i)
856 && rdg_defs_used_in_other_loops_p (rdg, i))
857 VEC_safe_push (int, heap, *other_stores, i);
859 /* If there are still statements left in the OTHER_STORES array,
860 create other components and partitions with these stores and
861 their dependences. */
862 if (VEC_length (int, *other_stores) > 0)
864 VEC (rdgc, heap) *comps = VEC_alloc (rdgc, heap, 3);
865 VEC (int, heap) *foo = VEC_alloc (int, heap, 3);
867 rdg_build_components (rdg, *other_stores, &comps);
868 rdg_build_partitions (rdg, comps, &foo, partitions, processed);
870 VEC_free (int, heap, foo);
871 free_rdg_components (comps);
874 /* If there is something left in the last partition, save it. */
875 if (bitmap_count_bits (partition) > 0)
876 VEC_safe_push (bitmap, heap, *partitions, partition);
877 else
878 BITMAP_FREE (partition);
880 fuse_partitions_with_similar_memory_accesses (rdg, partitions);
883 /* Dump to FILE the PARTITIONS. */
885 static void
886 dump_rdg_partitions (FILE *file, VEC (bitmap, heap) *partitions)
888 int i;
889 bitmap partition;
891 FOR_EACH_VEC_ELT (bitmap, partitions, i, partition)
892 debug_bitmap_file (file, partition);
895 /* Debug PARTITIONS. */
896 extern void debug_rdg_partitions (VEC (bitmap, heap) *);
898 DEBUG_FUNCTION void
899 debug_rdg_partitions (VEC (bitmap, heap) *partitions)
901 dump_rdg_partitions (stderr, partitions);
904 /* Returns the number of read and write operations in the RDG. */
906 static int
907 number_of_rw_in_rdg (struct graph *rdg)
909 int i, res = 0;
911 for (i = 0; i < rdg->n_vertices; i++)
913 if (RDG_MEM_WRITE_STMT (rdg, i))
914 ++res;
916 if (RDG_MEM_READS_STMT (rdg, i))
917 ++res;
920 return res;
923 /* Returns the number of read and write operations in a PARTITION of
924 the RDG. */
926 static int
927 number_of_rw_in_partition (struct graph *rdg, bitmap partition)
929 int res = 0;
930 unsigned i;
931 bitmap_iterator ii;
933 EXECUTE_IF_SET_IN_BITMAP (partition, 0, i, ii)
935 if (RDG_MEM_WRITE_STMT (rdg, i))
936 ++res;
938 if (RDG_MEM_READS_STMT (rdg, i))
939 ++res;
942 return res;
945 /* Returns true when one of the PARTITIONS contains all the read or
946 write operations of RDG. */
948 static bool
949 partition_contains_all_rw (struct graph *rdg, VEC (bitmap, heap) *partitions)
951 int i;
952 bitmap partition;
953 int nrw = number_of_rw_in_rdg (rdg);
955 FOR_EACH_VEC_ELT (bitmap, partitions, i, partition)
956 if (nrw == number_of_rw_in_partition (rdg, partition))
957 return true;
959 return false;
962 /* Generate code from STARTING_VERTICES in RDG. Returns the number of
963 distributed loops. */
965 static int
966 ldist_gen (struct loop *loop, struct graph *rdg,
967 VEC (int, heap) *starting_vertices)
969 int i, nbp;
970 VEC (rdgc, heap) *components = VEC_alloc (rdgc, heap, 3);
971 VEC (bitmap, heap) *partitions = VEC_alloc (bitmap, heap, 3);
972 VEC (int, heap) *other_stores = VEC_alloc (int, heap, 3);
973 bitmap partition, processed = BITMAP_ALLOC (NULL);
975 remaining_stmts = BITMAP_ALLOC (NULL);
976 upstream_mem_writes = BITMAP_ALLOC (NULL);
978 for (i = 0; i < rdg->n_vertices; i++)
980 bitmap_set_bit (remaining_stmts, i);
982 /* Save in OTHER_STORES all the memory writes that are not in
983 STARTING_VERTICES. */
984 if (RDG_MEM_WRITE_STMT (rdg, i))
986 int v;
987 unsigned j;
988 bool found = false;
990 FOR_EACH_VEC_ELT (int, starting_vertices, j, v)
991 if (i == v)
993 found = true;
994 break;
997 if (!found)
998 VEC_safe_push (int, heap, other_stores, i);
1002 mark_nodes_having_upstream_mem_writes (rdg);
1003 rdg_build_components (rdg, starting_vertices, &components);
1004 rdg_build_partitions (rdg, components, &other_stores, &partitions,
1005 processed);
1006 BITMAP_FREE (processed);
1007 nbp = VEC_length (bitmap, partitions);
1009 if (nbp <= 1
1010 || partition_contains_all_rw (rdg, partitions))
1011 goto ldist_done;
1013 if (dump_file && (dump_flags & TDF_DETAILS))
1014 dump_rdg_partitions (dump_file, partitions);
1016 FOR_EACH_VEC_ELT (bitmap, partitions, i, partition)
1017 if (!generate_code_for_partition (loop, partition, i < nbp - 1))
1018 goto ldist_done;
1020 rewrite_into_loop_closed_ssa (NULL, TODO_update_ssa);
1021 update_ssa (TODO_update_ssa_only_virtuals | TODO_update_ssa);
1023 ldist_done:
1025 BITMAP_FREE (remaining_stmts);
1026 BITMAP_FREE (upstream_mem_writes);
1028 FOR_EACH_VEC_ELT (bitmap, partitions, i, partition)
1029 BITMAP_FREE (partition);
1031 VEC_free (int, heap, other_stores);
1032 VEC_free (bitmap, heap, partitions);
1033 free_rdg_components (components);
1034 return nbp;
1037 /* Distributes the code from LOOP in such a way that producer
1038 statements are placed before consumer statements. When STMTS is
1039 NULL, performs the maximal distribution, if STMTS is not NULL,
1040 tries to separate only these statements from the LOOP's body.
1041 Returns the number of distributed loops. */
1043 static int
1044 distribute_loop (struct loop *loop, VEC (gimple, heap) *stmts)
1046 int res = 0;
1047 struct graph *rdg;
1048 gimple s;
1049 unsigned i;
1050 VEC (int, heap) *vertices;
1052 if (loop->num_nodes > 2)
1054 if (dump_file && (dump_flags & TDF_DETAILS))
1055 fprintf (dump_file,
1056 "FIXME: Loop %d not distributed: it has more than two basic blocks.\n",
1057 loop->num);
1059 return res;
1062 rdg = build_rdg (loop);
1064 if (!rdg)
1066 if (dump_file && (dump_flags & TDF_DETAILS))
1067 fprintf (dump_file,
1068 "FIXME: Loop %d not distributed: failed to build the RDG.\n",
1069 loop->num);
1071 return res;
1074 vertices = VEC_alloc (int, heap, 3);
1076 if (dump_file && (dump_flags & TDF_DETAILS))
1077 dump_rdg (dump_file, rdg);
1079 FOR_EACH_VEC_ELT (gimple, stmts, i, s)
1081 int v = rdg_vertex_for_stmt (rdg, s);
1083 if (v >= 0)
1085 VEC_safe_push (int, heap, vertices, v);
1087 if (dump_file && (dump_flags & TDF_DETAILS))
1088 fprintf (dump_file,
1089 "ldist asked to generate code for vertex %d\n", v);
1093 res = ldist_gen (loop, rdg, vertices);
1094 VEC_free (int, heap, vertices);
1095 free_rdg (rdg);
1097 return res;
1100 /* Distribute all loops in the current function. */
1102 static unsigned int
1103 tree_loop_distribution (void)
1105 struct loop *loop;
1106 loop_iterator li;
1107 int nb_generated_loops = 0;
1109 FOR_EACH_LOOP (li, loop, 0)
1111 VEC (gimple, heap) *work_list = NULL;
1113 /* If the loop doesn't have a single exit we will fail anyway,
1114 so do that early. */
1115 if (!single_exit (loop))
1116 continue;
1118 /* If both flag_tree_loop_distribute_patterns and
1119 flag_tree_loop_distribution are set, then only
1120 distribute_patterns is executed. */
1121 if (flag_tree_loop_distribute_patterns)
1123 /* With the following working list, we're asking
1124 distribute_loop to separate from the rest of the loop the
1125 stores of the form "A[i] = 0". */
1126 stores_zero_from_loop (loop, &work_list);
1128 /* Do nothing if there are no patterns to be distributed. */
1129 if (VEC_length (gimple, work_list) > 0)
1130 nb_generated_loops = distribute_loop (loop, work_list);
1132 else if (flag_tree_loop_distribution)
1134 /* With the following working list, we're asking
1135 distribute_loop to separate the stores of the loop: when
1136 dependences allow, it will end on having one store per
1137 loop. */
1138 stores_from_loop (loop, &work_list);
1140 /* A simple heuristic for cache locality is to not split
1141 stores to the same array. Without this call, an unrolled
1142 loop would be split into as many loops as unroll factor,
1143 each loop storing in the same array. */
1144 remove_similar_memory_refs (&work_list);
1146 nb_generated_loops = distribute_loop (loop, work_list);
1149 if (dump_file && (dump_flags & TDF_DETAILS))
1151 if (nb_generated_loops > 1)
1152 fprintf (dump_file, "Loop %d distributed: split to %d loops.\n",
1153 loop->num, nb_generated_loops);
1154 else
1155 fprintf (dump_file, "Loop %d is the same.\n", loop->num);
1158 verify_loop_structure ();
1160 VEC_free (gimple, heap, work_list);
1163 return 0;
1166 static bool
1167 gate_tree_loop_distribution (void)
1169 return flag_tree_loop_distribution
1170 || flag_tree_loop_distribute_patterns;
1173 struct gimple_opt_pass pass_loop_distribution =
1176 GIMPLE_PASS,
1177 "ldist", /* name */
1178 gate_tree_loop_distribution, /* gate */
1179 tree_loop_distribution, /* execute */
1180 NULL, /* sub */
1181 NULL, /* next */
1182 0, /* static_pass_number */
1183 TV_TREE_LOOP_DISTRIBUTION, /* tv_id */
1184 PROP_cfg | PROP_ssa, /* properties_required */
1185 0, /* properties_provided */
1186 0, /* properties_destroyed */
1187 0, /* todo_flags_start */
1188 TODO_dump_func /* todo_flags_finish */