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
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
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
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. */
47 #include "coretypes.h"
50 #include "basic-block.h"
51 #include "tree-flow.h"
52 #include "tree-dump.h"
55 #include "tree-chrec.h"
56 #include "tree-data-ref.h"
57 #include "tree-scalar-evolution.h"
58 #include "tree-pass.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
78 update_phis_for_loop_copy (struct loop
*orig_loop
, struct loop
*new_loop
)
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
))
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
);
114 /* This only happens if there are no definitions inside the
115 loop. Use the the invariant in the new loop as is. */
119 /* Could be an integer. */
122 add_phi_arg (phi_new
, new_ssa_name
, loop_latch_edge (new_loop
), locus
);
126 /* Return a copy of LOOP placed before LOOP. */
129 copy_loop_before (struct loop
*loop
)
132 edge preheader
= loop_preheader_edge (loop
);
134 if (!single_exit (loop
))
137 initialize_original_copy_tables ();
138 res
= slpeel_tree_duplicate_loop_to_edge_cfg (loop
, preheader
);
139 free_original_copy_tables ();
144 update_phis_for_loop_copy (loop
, res
);
145 rename_variables_in_loop (res
);
150 /* Creates an empty basic block after LOOP. */
153 create_bb_after_loop (struct loop
*loop
)
155 edge exit
= single_exit (loop
);
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. */
171 generate_loops_for_partition (struct loop
*loop
, bitmap partition
, bool copy_p
)
174 gimple_stmt_iterator bsi
;
179 loop
= copy_loop_before (loop
);
180 create_preheader (loop
, CP_SIMPLE_PREHEADERS
);
181 create_bb_after_loop (loop
);
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
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
++))
198 remove_phi_node (&bsi
, true);
202 for (bsi
= gsi_start_bb (bb
); !gsi_end_p (bsi
);)
203 if (gimple_code (gsi_stmt (bsi
)) != GIMPLE_LABEL
204 && !bitmap_bit_p (partition
, x
++))
205 gsi_remove (&bsi
, false);
209 mark_virtual_ops_in_bb (bb
);
216 /* Build the size argument for a memset call. */
219 build_size_arg_loc (location_t loc
, tree nb_iter
, tree op
,
220 gimple_seq
*stmt_list
)
223 tree x
= size_binop_loc (loc
, MULT_EXPR
,
224 fold_convert_loc (loc
, sizetype
, nb_iter
),
225 TYPE_SIZE_UNIT (TREE_TYPE (op
)));
226 x
= force_gimple_operand (x
, &stmts
, true, NULL
);
227 gimple_seq_add_seq (stmt_list
, stmts
);
232 /* Generate a call to memset. Return true when the operation succeeded. */
235 generate_memset_zero (gimple stmt
, tree op0
, tree nb_iter
,
236 gimple_stmt_iterator bsi
)
238 tree addr_base
, nb_bytes
;
240 gimple_seq stmt_list
= NULL
, stmts
;
243 gimple_stmt_iterator i
;
244 struct data_reference
*dr
= XCNEW (struct data_reference
);
245 location_t loc
= gimple_location (stmt
);
249 if (!dr_analyze_innermost (dr
))
252 /* Test for a positive stride, iterating over every element. */
253 if (integer_zerop (size_binop (MINUS_EXPR
,
254 fold_convert (sizetype
, DR_STEP (dr
)),
255 TYPE_SIZE_UNIT (TREE_TYPE (op0
)))))
257 addr_base
= fold_convert_loc (loc
, sizetype
,
258 size_binop_loc (loc
, PLUS_EXPR
,
261 addr_base
= fold_build2_loc (loc
, POINTER_PLUS_EXPR
,
262 TREE_TYPE (DR_BASE_ADDRESS (dr
)),
263 DR_BASE_ADDRESS (dr
), addr_base
);
265 nb_bytes
= build_size_arg_loc (loc
, nb_iter
, op0
, &stmt_list
);
268 /* Test for a negative stride, iterating over every element. */
269 else if (integer_zerop (size_binop (PLUS_EXPR
,
270 TYPE_SIZE_UNIT (TREE_TYPE (op0
)),
271 fold_convert (sizetype
, DR_STEP (dr
)))))
273 nb_bytes
= build_size_arg_loc (loc
, nb_iter
, op0
, &stmt_list
);
275 addr_base
= size_binop_loc (loc
, PLUS_EXPR
, DR_OFFSET (dr
), DR_INIT (dr
));
276 addr_base
= fold_convert_loc (loc
, sizetype
, addr_base
);
277 addr_base
= size_binop_loc (loc
, MINUS_EXPR
, addr_base
,
278 fold_convert_loc (loc
, sizetype
, nb_bytes
));
279 addr_base
= size_binop_loc (loc
, PLUS_EXPR
, addr_base
,
280 TYPE_SIZE_UNIT (TREE_TYPE (op0
)));
281 addr_base
= fold_build2_loc (loc
, POINTER_PLUS_EXPR
,
282 TREE_TYPE (DR_BASE_ADDRESS (dr
)),
283 DR_BASE_ADDRESS (dr
), addr_base
);
288 mem
= force_gimple_operand (addr_base
, &stmts
, true, NULL
);
289 gimple_seq_add_seq (&stmt_list
, stmts
);
291 fn
= build_fold_addr_expr (implicit_built_in_decls
[BUILT_IN_MEMSET
]);
292 fn_call
= gimple_build_call (fn
, 3, mem
, integer_zero_node
, nb_bytes
);
293 gimple_seq_add_stmt (&stmt_list
, fn_call
);
295 for (i
= gsi_start (stmt_list
); !gsi_end_p (i
); gsi_next (&i
))
297 gimple s
= gsi_stmt (i
);
298 update_stmt_if_modified (s
);
301 gsi_insert_seq_after (&bsi
, stmt_list
, GSI_CONTINUE_LINKING
);
304 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
305 fprintf (dump_file
, "generated memset zero\n");
312 /* Propagate phis in BB b to their uses and remove them. */
315 prop_phis (basic_block b
)
317 gimple_stmt_iterator psi
;
318 gimple_seq phis
= phi_nodes (b
);
320 for (psi
= gsi_start (phis
); !gsi_end_p (psi
); )
322 gimple phi
= gsi_stmt (psi
);
323 tree def
= gimple_phi_result (phi
), use
= gimple_phi_arg_def (phi
, 0);
325 gcc_assert (gimple_phi_num_args (phi
) == 1);
327 if (!is_gimple_reg (def
))
329 imm_use_iterator iter
;
333 FOR_EACH_IMM_USE_STMT (stmt
, iter
, def
)
334 FOR_EACH_IMM_USE_ON_STMT (use_p
, iter
)
335 SET_USE (use_p
, use
);
338 replace_uses_by (def
, use
);
340 remove_phi_node (&psi
, true);
344 /* Tries to generate a builtin function for the instructions of LOOP
345 pointed to by the bits set in PARTITION. Returns true when the
346 operation succeeded. */
349 generate_builtin (struct loop
*loop
, bitmap partition
, bool copy_p
)
356 gimple_stmt_iterator bsi
;
357 tree nb_iter
= number_of_exit_cond_executions (loop
);
359 if (!nb_iter
|| nb_iter
== chrec_dont_know
)
362 bbs
= get_loop_body_in_dom_order (loop
);
364 for (i
= 0; i
< loop
->num_nodes
; i
++)
366 basic_block bb
= bbs
[i
];
368 for (bsi
= gsi_start_phis (bb
); !gsi_end_p (bsi
); gsi_next (&bsi
))
371 for (bsi
= gsi_start_bb (bb
); !gsi_end_p (bsi
); gsi_next (&bsi
))
373 gimple stmt
= gsi_stmt (bsi
);
375 if (bitmap_bit_p (partition
, x
++)
376 && is_gimple_assign (stmt
)
377 && !is_gimple_reg (gimple_assign_lhs (stmt
)))
379 /* Don't generate the builtins when there are more than
385 if (bb
== loop
->latch
)
386 nb_iter
= number_of_latch_executions (loop
);
394 op0
= gimple_assign_lhs (write
);
395 op1
= gimple_assign_rhs1 (write
);
397 if (!(TREE_CODE (op0
) == ARRAY_REF
398 || TREE_CODE (op0
) == INDIRECT_REF
))
401 /* The new statements will be placed before LOOP. */
402 bsi
= gsi_last_bb (loop_preheader_edge (loop
)->src
);
404 if (gimple_assign_rhs_code (write
) == INTEGER_CST
405 && (integer_zerop (op1
) || real_zerop (op1
)))
406 res
= generate_memset_zero (write
, op0
, nb_iter
, bsi
);
408 /* If this is the last partition for which we generate code, we have
409 to destroy the loop. */
412 unsigned nbbs
= loop
->num_nodes
;
413 basic_block src
= loop_preheader_edge (loop
)->src
;
414 basic_block dest
= single_exit (loop
)->dest
;
416 make_edge (src
, dest
, EDGE_FALLTHRU
);
417 cancel_loop_tree (loop
);
419 for (i
= 0; i
< nbbs
; i
++)
420 delete_basic_block (bbs
[i
]);
422 set_immediate_dominator (CDI_DOMINATORS
, dest
,
423 recompute_dominator (CDI_DOMINATORS
, dest
));
431 /* Generates code for PARTITION. For simple loops, this function can
432 generate a built-in. */
435 generate_code_for_partition (struct loop
*loop
, bitmap partition
, bool copy_p
)
437 if (generate_builtin (loop
, partition
, copy_p
))
440 return generate_loops_for_partition (loop
, partition
, copy_p
);
444 /* Returns true if the node V of RDG cannot be recomputed. */
447 rdg_cannot_recompute_vertex_p (struct graph
*rdg
, int v
)
449 if (RDG_MEM_WRITE_STMT (rdg
, v
))
455 /* Returns true when the vertex V has already been generated in the
456 current partition (V is in PROCESSED), or when V belongs to another
457 partition and cannot be recomputed (V is not in REMAINING_STMTS). */
460 already_processed_vertex_p (bitmap processed
, int v
)
462 return (bitmap_bit_p (processed
, v
)
463 || !bitmap_bit_p (remaining_stmts
, v
));
466 /* Returns NULL when there is no anti-dependence among the successors
467 of vertex V, otherwise returns the edge with the anti-dep. */
469 static struct graph_edge
*
470 has_anti_dependence (struct vertex
*v
)
472 struct graph_edge
*e
;
475 for (e
= v
->succ
; e
; e
= e
->succ_next
)
476 if (RDGE_TYPE (e
) == anti_dd
)
482 /* Returns true when V has an anti-dependence edge among its successors. */
485 predecessor_has_mem_write (struct graph
*rdg
, struct vertex
*v
)
487 struct graph_edge
*e
;
490 for (e
= v
->pred
; e
; e
= e
->pred_next
)
491 if (bitmap_bit_p (upstream_mem_writes
, e
->src
)
492 /* Don't consider flow channels: a write to memory followed
493 by a read from memory. These channels allow the split of
494 the RDG in different partitions. */
495 && !RDG_MEM_WRITE_STMT (rdg
, e
->src
))
501 /* Initializes the upstream_mem_writes bitmap following the
502 information from RDG. */
505 mark_nodes_having_upstream_mem_writes (struct graph
*rdg
)
508 bitmap seen
= BITMAP_ALLOC (NULL
);
510 for (v
= rdg
->n_vertices
- 1; v
>= 0; v
--)
511 if (!bitmap_bit_p (seen
, v
))
514 VEC (int, heap
) *nodes
= VEC_alloc (int, heap
, 3);
516 graphds_dfs (rdg
, &v
, 1, &nodes
, false, NULL
);
518 for (i
= 0; VEC_iterate (int, nodes
, i
, x
); i
++)
520 if (bitmap_bit_p (seen
, x
))
523 bitmap_set_bit (seen
, x
);
525 if (RDG_MEM_WRITE_STMT (rdg
, x
)
526 || predecessor_has_mem_write (rdg
, &(rdg
->vertices
[x
]))
527 /* In anti dependences the read should occur before
528 the write, this is why both the read and the write
529 should be placed in the same partition. */
530 || has_anti_dependence (&(rdg
->vertices
[x
])))
532 bitmap_set_bit (upstream_mem_writes
, x
);
536 VEC_free (int, heap
, nodes
);
540 /* Returns true when vertex u has a memory write node as a predecessor
544 has_upstream_mem_writes (int u
)
546 return bitmap_bit_p (upstream_mem_writes
, u
);
549 static void rdg_flag_vertex_and_dependent (struct graph
*, int, bitmap
, bitmap
,
552 /* Flag all the uses of U. */
555 rdg_flag_all_uses (struct graph
*rdg
, int u
, bitmap partition
, bitmap loops
,
556 bitmap processed
, bool *part_has_writes
)
558 struct graph_edge
*e
;
560 for (e
= rdg
->vertices
[u
].succ
; e
; e
= e
->succ_next
)
561 if (!bitmap_bit_p (processed
, e
->dest
))
563 rdg_flag_vertex_and_dependent (rdg
, e
->dest
, partition
, loops
,
564 processed
, part_has_writes
);
565 rdg_flag_all_uses (rdg
, e
->dest
, partition
, loops
, processed
,
570 /* Flag the uses of U stopping following the information from
571 upstream_mem_writes. */
574 rdg_flag_uses (struct graph
*rdg
, int u
, bitmap partition
, bitmap loops
,
575 bitmap processed
, bool *part_has_writes
)
578 struct vertex
*x
= &(rdg
->vertices
[u
]);
579 gimple stmt
= RDGV_STMT (x
);
580 struct graph_edge
*anti_dep
= has_anti_dependence (x
);
582 /* Keep in the same partition the destination of an antidependence,
583 because this is a store to the exact same location. Putting this
584 in another partition is bad for cache locality. */
587 int v
= anti_dep
->dest
;
589 if (!already_processed_vertex_p (processed
, v
))
590 rdg_flag_vertex_and_dependent (rdg
, v
, partition
, loops
,
591 processed
, part_has_writes
);
594 if (gimple_code (stmt
) != GIMPLE_PHI
)
596 if ((use_p
= gimple_vuse_op (stmt
)) != NULL_USE_OPERAND_P
)
598 tree use
= USE_FROM_PTR (use_p
);
600 if (TREE_CODE (use
) == SSA_NAME
)
602 gimple def_stmt
= SSA_NAME_DEF_STMT (use
);
603 int v
= rdg_vertex_for_stmt (rdg
, def_stmt
);
606 && !already_processed_vertex_p (processed
, v
))
607 rdg_flag_vertex_and_dependent (rdg
, v
, partition
, loops
,
608 processed
, part_has_writes
);
613 if (is_gimple_assign (stmt
) && has_upstream_mem_writes (u
))
615 tree op0
= gimple_assign_lhs (stmt
);
617 /* Scalar channels don't have enough space for transmitting data
618 between tasks, unless we add more storage by privatizing. */
619 if (is_gimple_reg (op0
))
622 imm_use_iterator iter
;
624 FOR_EACH_IMM_USE_FAST (use_p
, iter
, op0
)
626 int v
= rdg_vertex_for_stmt (rdg
, USE_STMT (use_p
));
628 if (!already_processed_vertex_p (processed
, v
))
629 rdg_flag_vertex_and_dependent (rdg
, v
, partition
, loops
,
630 processed
, part_has_writes
);
636 /* Flag V from RDG as part of PARTITION, and also flag its loop number
640 rdg_flag_vertex (struct graph
*rdg
, int v
, bitmap partition
, bitmap loops
,
641 bool *part_has_writes
)
645 if (bitmap_bit_p (partition
, v
))
648 loop
= loop_containing_stmt (RDG_STMT (rdg
, v
));
649 bitmap_set_bit (loops
, loop
->num
);
650 bitmap_set_bit (partition
, v
);
652 if (rdg_cannot_recompute_vertex_p (rdg
, v
))
654 *part_has_writes
= true;
655 bitmap_clear_bit (remaining_stmts
, v
);
659 /* Flag in the bitmap PARTITION the vertex V and all its predecessors.
660 Also flag their loop number in LOOPS. */
663 rdg_flag_vertex_and_dependent (struct graph
*rdg
, int v
, bitmap partition
,
664 bitmap loops
, bitmap processed
,
665 bool *part_has_writes
)
668 VEC (int, heap
) *nodes
= VEC_alloc (int, heap
, 3);
671 bitmap_set_bit (processed
, v
);
672 rdg_flag_uses (rdg
, v
, partition
, loops
, processed
, part_has_writes
);
673 graphds_dfs (rdg
, &v
, 1, &nodes
, false, remaining_stmts
);
674 rdg_flag_vertex (rdg
, v
, partition
, loops
, part_has_writes
);
676 for (i
= 0; VEC_iterate (int, nodes
, i
, x
); i
++)
677 if (!already_processed_vertex_p (processed
, x
))
678 rdg_flag_vertex_and_dependent (rdg
, x
, partition
, loops
, processed
,
681 VEC_free (int, heap
, nodes
);
684 /* Initialize CONDS with all the condition statements from the basic
688 collect_condition_stmts (struct loop
*loop
, VEC (gimple
, heap
) **conds
)
692 VEC (edge
, heap
) *exits
= get_loop_exit_edges (loop
);
694 for (i
= 0; VEC_iterate (edge
, exits
, i
, e
); i
++)
696 gimple cond
= last_stmt (e
->src
);
699 VEC_safe_push (gimple
, heap
, *conds
, cond
);
702 VEC_free (edge
, heap
, exits
);
705 /* Add to PARTITION all the exit condition statements for LOOPS
706 together with all their dependent statements determined from
710 rdg_flag_loop_exits (struct graph
*rdg
, bitmap loops
, bitmap partition
,
711 bitmap processed
, bool *part_has_writes
)
715 VEC (gimple
, heap
) *conds
= VEC_alloc (gimple
, heap
, 3);
717 EXECUTE_IF_SET_IN_BITMAP (loops
, 0, i
, bi
)
718 collect_condition_stmts (get_loop (i
), &conds
);
720 while (!VEC_empty (gimple
, conds
))
722 gimple cond
= VEC_pop (gimple
, conds
);
723 int v
= rdg_vertex_for_stmt (rdg
, cond
);
724 bitmap new_loops
= BITMAP_ALLOC (NULL
);
726 if (!already_processed_vertex_p (processed
, v
))
727 rdg_flag_vertex_and_dependent (rdg
, v
, partition
, new_loops
, processed
,
730 EXECUTE_IF_SET_IN_BITMAP (new_loops
, 0, i
, bi
)
731 if (!bitmap_bit_p (loops
, i
))
733 bitmap_set_bit (loops
, i
);
734 collect_condition_stmts (get_loop (i
), &conds
);
737 BITMAP_FREE (new_loops
);
741 /* Flag all the nodes of RDG containing memory accesses that could
742 potentially belong to arrays already accessed in the current
746 rdg_flag_similar_memory_accesses (struct graph
*rdg
, bitmap partition
,
747 bitmap loops
, bitmap processed
,
748 VEC (int, heap
) **other_stores
)
754 struct graph_edge
*e
;
756 EXECUTE_IF_SET_IN_BITMAP (partition
, 0, i
, ii
)
757 if (RDG_MEM_WRITE_STMT (rdg
, i
)
758 || RDG_MEM_READS_STMT (rdg
, i
))
760 for (j
= 0; j
< rdg
->n_vertices
; j
++)
761 if (!bitmap_bit_p (processed
, j
)
762 && (RDG_MEM_WRITE_STMT (rdg
, j
)
763 || RDG_MEM_READS_STMT (rdg
, j
))
764 && rdg_has_similar_memory_accesses (rdg
, i
, j
))
766 /* Flag first the node J itself, and all the nodes that
767 are needed to compute J. */
768 rdg_flag_vertex_and_dependent (rdg
, j
, partition
, loops
,
771 /* When J is a read, we want to coalesce in the same
772 PARTITION all the nodes that are using J: this is
773 needed for better cache locality. */
774 rdg_flag_all_uses (rdg
, j
, partition
, loops
, processed
, &foo
);
776 /* Remove from OTHER_STORES the vertex that we flagged. */
777 if (RDG_MEM_WRITE_STMT (rdg
, j
))
778 for (k
= 0; VEC_iterate (int, *other_stores
, k
, kk
); k
++)
781 VEC_unordered_remove (int, *other_stores
, k
);
786 /* If the node I has two uses, then keep these together in the
788 for (n
= 0, e
= rdg
->vertices
[i
].succ
; e
; e
= e
->succ_next
, n
++);
791 rdg_flag_all_uses (rdg
, i
, partition
, loops
, processed
, &foo
);
795 /* Returns a bitmap in which all the statements needed for computing
796 the strongly connected component C of the RDG are flagged, also
797 including the loop exit conditions. */
800 build_rdg_partition_for_component (struct graph
*rdg
, rdgc c
,
801 bool *part_has_writes
,
802 VEC (int, heap
) **other_stores
)
805 bitmap partition
= BITMAP_ALLOC (NULL
);
806 bitmap loops
= BITMAP_ALLOC (NULL
);
807 bitmap processed
= BITMAP_ALLOC (NULL
);
809 for (i
= 0; VEC_iterate (int, c
->vertices
, i
, v
); i
++)
810 if (!already_processed_vertex_p (processed
, v
))
811 rdg_flag_vertex_and_dependent (rdg
, v
, partition
, loops
, processed
,
814 /* Also iterate on the array of stores not in the starting vertices,
815 and determine those vertices that have some memory affinity with
816 the current nodes in the component: these are stores to the same
817 arrays, i.e. we're taking care of cache locality. */
818 rdg_flag_similar_memory_accesses (rdg
, partition
, loops
, processed
,
821 rdg_flag_loop_exits (rdg
, loops
, partition
, processed
, part_has_writes
);
823 BITMAP_FREE (processed
);
828 /* Free memory for COMPONENTS. */
831 free_rdg_components (VEC (rdgc
, heap
) *components
)
836 for (i
= 0; VEC_iterate (rdgc
, components
, i
, x
); i
++)
838 VEC_free (int, heap
, x
->vertices
);
843 /* Build the COMPONENTS vector with the strongly connected components
844 of RDG in which the STARTING_VERTICES occur. */
847 rdg_build_components (struct graph
*rdg
, VEC (int, heap
) *starting_vertices
,
848 VEC (rdgc
, heap
) **components
)
851 bitmap saved_components
= BITMAP_ALLOC (NULL
);
852 int n_components
= graphds_scc (rdg
, NULL
);
853 VEC (int, heap
) **all_components
= XNEWVEC (VEC (int, heap
) *, n_components
);
855 for (i
= 0; i
< n_components
; i
++)
856 all_components
[i
] = VEC_alloc (int, heap
, 3);
858 for (i
= 0; i
< rdg
->n_vertices
; i
++)
859 VEC_safe_push (int, heap
, all_components
[rdg
->vertices
[i
].component
], i
);
861 for (i
= 0; VEC_iterate (int, starting_vertices
, i
, v
); i
++)
863 int c
= rdg
->vertices
[v
].component
;
865 if (!bitmap_bit_p (saved_components
, c
))
867 rdgc x
= XCNEW (struct rdg_component
);
869 x
->vertices
= all_components
[c
];
871 VEC_safe_push (rdgc
, heap
, *components
, x
);
872 bitmap_set_bit (saved_components
, c
);
876 for (i
= 0; i
< n_components
; i
++)
877 if (!bitmap_bit_p (saved_components
, i
))
878 VEC_free (int, heap
, all_components
[i
]);
880 free (all_components
);
881 BITMAP_FREE (saved_components
);
884 /* Aggregate several components into a useful partition that is
885 registered in the PARTITIONS vector. Partitions will be
886 distributed in different loops. */
889 rdg_build_partitions (struct graph
*rdg
, VEC (rdgc
, heap
) *components
,
890 VEC (int, heap
) **other_stores
,
891 VEC (bitmap
, heap
) **partitions
, bitmap processed
)
895 bitmap partition
= BITMAP_ALLOC (NULL
);
897 for (i
= 0; VEC_iterate (rdgc
, components
, i
, x
); i
++)
900 bool part_has_writes
= false;
901 int v
= VEC_index (int, x
->vertices
, 0);
903 if (bitmap_bit_p (processed
, v
))
906 np
= build_rdg_partition_for_component (rdg
, x
, &part_has_writes
,
908 bitmap_ior_into (partition
, np
);
909 bitmap_ior_into (processed
, np
);
914 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
916 fprintf (dump_file
, "ldist useful partition:\n");
917 dump_bitmap (dump_file
, partition
);
920 VEC_safe_push (bitmap
, heap
, *partitions
, partition
);
921 partition
= BITMAP_ALLOC (NULL
);
925 /* Add the nodes from the RDG that were not marked as processed, and
926 that are used outside the current loop. These are scalar
927 computations that are not yet part of previous partitions. */
928 for (i
= 0; i
< rdg
->n_vertices
; i
++)
929 if (!bitmap_bit_p (processed
, i
)
930 && rdg_defs_used_in_other_loops_p (rdg
, i
))
931 VEC_safe_push (int, heap
, *other_stores
, i
);
933 /* If there are still statements left in the OTHER_STORES array,
934 create other components and partitions with these stores and
935 their dependences. */
936 if (VEC_length (int, *other_stores
) > 0)
938 VEC (rdgc
, heap
) *comps
= VEC_alloc (rdgc
, heap
, 3);
939 VEC (int, heap
) *foo
= VEC_alloc (int, heap
, 3);
941 rdg_build_components (rdg
, *other_stores
, &comps
);
942 rdg_build_partitions (rdg
, comps
, &foo
, partitions
, processed
);
944 VEC_free (int, heap
, foo
);
945 free_rdg_components (comps
);
948 /* If there is something left in the last partition, save it. */
949 if (bitmap_count_bits (partition
) > 0)
950 VEC_safe_push (bitmap
, heap
, *partitions
, partition
);
952 BITMAP_FREE (partition
);
955 /* Dump to FILE the PARTITIONS. */
958 dump_rdg_partitions (FILE *file
, VEC (bitmap
, heap
) *partitions
)
963 for (i
= 0; VEC_iterate (bitmap
, partitions
, i
, partition
); i
++)
964 debug_bitmap_file (file
, partition
);
967 /* Debug PARTITIONS. */
968 extern void debug_rdg_partitions (VEC (bitmap
, heap
) *);
971 debug_rdg_partitions (VEC (bitmap
, heap
) *partitions
)
973 dump_rdg_partitions (stderr
, partitions
);
976 /* Returns the number of read and write operations in the RDG. */
979 number_of_rw_in_rdg (struct graph
*rdg
)
983 for (i
= 0; i
< rdg
->n_vertices
; i
++)
985 if (RDG_MEM_WRITE_STMT (rdg
, i
))
988 if (RDG_MEM_READS_STMT (rdg
, i
))
995 /* Returns the number of read and write operations in a PARTITION of
999 number_of_rw_in_partition (struct graph
*rdg
, bitmap partition
)
1005 EXECUTE_IF_SET_IN_BITMAP (partition
, 0, i
, ii
)
1007 if (RDG_MEM_WRITE_STMT (rdg
, i
))
1010 if (RDG_MEM_READS_STMT (rdg
, i
))
1017 /* Returns true when one of the PARTITIONS contains all the read or
1018 write operations of RDG. */
1021 partition_contains_all_rw (struct graph
*rdg
, VEC (bitmap
, heap
) *partitions
)
1025 int nrw
= number_of_rw_in_rdg (rdg
);
1027 for (i
= 0; VEC_iterate (bitmap
, partitions
, i
, partition
); i
++)
1028 if (nrw
== number_of_rw_in_partition (rdg
, partition
))
1034 /* Generate code from STARTING_VERTICES in RDG. Returns the number of
1035 distributed loops. */
1038 ldist_gen (struct loop
*loop
, struct graph
*rdg
,
1039 VEC (int, heap
) *starting_vertices
)
1042 VEC (rdgc
, heap
) *components
= VEC_alloc (rdgc
, heap
, 3);
1043 VEC (bitmap
, heap
) *partitions
= VEC_alloc (bitmap
, heap
, 3);
1044 VEC (int, heap
) *other_stores
= VEC_alloc (int, heap
, 3);
1045 bitmap partition
, processed
= BITMAP_ALLOC (NULL
);
1047 remaining_stmts
= BITMAP_ALLOC (NULL
);
1048 upstream_mem_writes
= BITMAP_ALLOC (NULL
);
1050 for (i
= 0; i
< rdg
->n_vertices
; i
++)
1052 bitmap_set_bit (remaining_stmts
, i
);
1054 /* Save in OTHER_STORES all the memory writes that are not in
1055 STARTING_VERTICES. */
1056 if (RDG_MEM_WRITE_STMT (rdg
, i
))
1062 for (j
= 0; VEC_iterate (int, starting_vertices
, j
, v
); j
++)
1070 VEC_safe_push (int, heap
, other_stores
, i
);
1074 mark_nodes_having_upstream_mem_writes (rdg
);
1075 rdg_build_components (rdg
, starting_vertices
, &components
);
1076 rdg_build_partitions (rdg
, components
, &other_stores
, &partitions
,
1078 BITMAP_FREE (processed
);
1079 nbp
= VEC_length (bitmap
, partitions
);
1082 || partition_contains_all_rw (rdg
, partitions
))
1085 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1086 dump_rdg_partitions (dump_file
, partitions
);
1088 for (i
= 0; VEC_iterate (bitmap
, partitions
, i
, partition
); i
++)
1089 if (!generate_code_for_partition (loop
, partition
, i
< nbp
- 1))
1092 rewrite_into_loop_closed_ssa (NULL
, TODO_update_ssa
);
1093 update_ssa (TODO_update_ssa_only_virtuals
| TODO_update_ssa
);
1097 BITMAP_FREE (remaining_stmts
);
1098 BITMAP_FREE (upstream_mem_writes
);
1100 for (i
= 0; VEC_iterate (bitmap
, partitions
, i
, partition
); i
++)
1101 BITMAP_FREE (partition
);
1103 VEC_free (int, heap
, other_stores
);
1104 VEC_free (bitmap
, heap
, partitions
);
1105 free_rdg_components (components
);
1109 /* Distributes the code from LOOP in such a way that producer
1110 statements are placed before consumer statements. When STMTS is
1111 NULL, performs the maximal distribution, if STMTS is not NULL,
1112 tries to separate only these statements from the LOOP's body.
1113 Returns the number of distributed loops. */
1116 distribute_loop (struct loop
*loop
, VEC (gimple
, heap
) *stmts
)
1122 VEC (int, heap
) *vertices
;
1124 if (loop
->num_nodes
> 2)
1126 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1128 "FIXME: Loop %d not distributed: it has more than two basic blocks.\n",
1134 rdg
= build_rdg (loop
);
1138 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1140 "FIXME: Loop %d not distributed: failed to build the RDG.\n",
1146 vertices
= VEC_alloc (int, heap
, 3);
1148 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1149 dump_rdg (dump_file
, rdg
);
1151 for (i
= 0; VEC_iterate (gimple
, stmts
, i
, s
); i
++)
1153 int v
= rdg_vertex_for_stmt (rdg
, s
);
1157 VEC_safe_push (int, heap
, vertices
, v
);
1159 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1161 "ldist asked to generate code for vertex %d\n", v
);
1165 res
= ldist_gen (loop
, rdg
, vertices
);
1166 VEC_free (int, heap
, vertices
);
1172 /* Distribute all loops in the current function. */
1175 tree_loop_distribution (void)
1179 int nb_generated_loops
= 0;
1181 FOR_EACH_LOOP (li
, loop
, 0)
1183 VEC (gimple
, heap
) *work_list
= VEC_alloc (gimple
, heap
, 3);
1185 /* With the following working list, we're asking distribute_loop
1186 to separate the stores of the loop: when dependences allow,
1187 it will end on having one store per loop. */
1188 stores_from_loop (loop
, &work_list
);
1190 /* A simple heuristic for cache locality is to not split stores
1191 to the same array. Without this call, an unrolled loop would
1192 be split into as many loops as unroll factor, each loop
1193 storing in the same array. */
1194 remove_similar_memory_refs (&work_list
);
1196 nb_generated_loops
= distribute_loop (loop
, work_list
);
1198 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1200 if (nb_generated_loops
> 1)
1201 fprintf (dump_file
, "Loop %d distributed: split to %d loops.\n",
1202 loop
->num
, nb_generated_loops
);
1204 fprintf (dump_file
, "Loop %d is the same.\n", loop
->num
);
1207 verify_loop_structure ();
1209 VEC_free (gimple
, heap
, work_list
);
1216 gate_tree_loop_distribution (void)
1218 return flag_tree_loop_distribution
!= 0;
1221 struct gimple_opt_pass pass_loop_distribution
=
1226 gate_tree_loop_distribution
, /* gate */
1227 tree_loop_distribution
, /* execute */
1230 0, /* static_pass_number */
1231 TV_TREE_LOOP_DISTRIBUTION
, /* tv_id */
1232 PROP_cfg
| PROP_ssa
, /* properties_required */
1233 0, /* properties_provided */
1234 0, /* properties_destroyed */
1235 0, /* todo_flags_start */
1236 TODO_dump_func
/* todo_flags_finish */