1 /* The tracer pass for the GNU compiler.
2 Contributed by Jan Hubicka, SuSE Labs.
3 Adapted to work on GIMPLE instead of RTL by Robert Kidd, UIUC.
4 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5 Free Software Foundation, Inc.
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
11 the Free Software Foundation; either version 3, or (at your option)
14 GCC is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
17 License 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 the tail duplication needed for superblock formation.
24 For more information see:
26 Design and Analysis of Profile-Based Optimization in Compaq's
27 Compilation Tools for Alpha; Journal of Instruction-Level
28 Parallelism 3 (2000) 1-25
30 Unlike Compaq's implementation we don't do the loop peeling as most
31 probably a better job can be done by a special pass and we don't
32 need to worry too much about the code size implications as the tail
33 duplicates are crossjumped again if optimizations are not
39 #include "coretypes.h"
43 #include "hard-reg-set.h"
44 #include "basic-block.h"
46 #include "cfglayout.h"
52 #include "tree-pass.h"
53 #include "tree-flow.h"
54 #include "tree-inline.h"
56 static int count_insns (basic_block
);
57 static bool ignore_bb_p (const_basic_block
);
58 static bool better_p (const_edge
, const_edge
);
59 static edge
find_best_successor (basic_block
);
60 static edge
find_best_predecessor (basic_block
);
61 static int find_trace (basic_block
, basic_block
*);
62 static void tail_duplicate (void);
64 /* Minimal outgoing edge probability considered for superblock formation. */
65 static int probability_cutoff
;
66 static int branch_ratio_cutoff
;
68 /* A bit BB->index is set if BB has already been seen, i.e. it is
69 connected to some trace already. */
73 mark_bb_seen (basic_block bb
)
75 unsigned int size
= SBITMAP_SIZE_BYTES (bb_seen
) * 8;
77 if ((unsigned int)bb
->index
>= size
)
78 bb_seen
= sbitmap_resize (bb_seen
, size
* 2, 0);
80 SET_BIT (bb_seen
, bb
->index
);
84 bb_seen_p (basic_block bb
)
86 return TEST_BIT (bb_seen
, bb
->index
);
89 /* Return true if we should ignore the basic block for purposes of tracing. */
91 ignore_bb_p (const_basic_block bb
)
93 if (bb
->index
< NUM_FIXED_BLOCKS
)
95 if (optimize_bb_for_size_p (bb
))
100 /* Return number of instructions in the block. */
103 count_insns (basic_block bb
)
105 gimple_stmt_iterator gsi
;
109 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
111 stmt
= gsi_stmt (gsi
);
112 n
+= estimate_num_insns (stmt
, &eni_size_weights
);
117 /* Return true if E1 is more frequent than E2. */
119 better_p (const_edge e1
, const_edge e2
)
121 if (e1
->count
!= e2
->count
)
122 return e1
->count
> e2
->count
;
123 if (e1
->src
->frequency
* e1
->probability
!=
124 e2
->src
->frequency
* e2
->probability
)
125 return (e1
->src
->frequency
* e1
->probability
126 > e2
->src
->frequency
* e2
->probability
);
127 /* This is needed to avoid changes in the decision after
129 if (e1
->src
!= e2
->src
)
130 return e1
->src
->index
> e2
->src
->index
;
131 return e1
->dest
->index
> e2
->dest
->index
;
134 /* Return most frequent successor of basic block BB. */
137 find_best_successor (basic_block bb
)
143 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
144 if (!best
|| better_p (e
, best
))
146 if (!best
|| ignore_bb_p (best
->dest
))
148 if (best
->probability
<= probability_cutoff
)
153 /* Return most frequent predecessor of basic block BB. */
156 find_best_predecessor (basic_block bb
)
162 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
163 if (!best
|| better_p (e
, best
))
165 if (!best
|| ignore_bb_p (best
->src
))
167 if (EDGE_FREQUENCY (best
) * REG_BR_PROB_BASE
168 < bb
->frequency
* branch_ratio_cutoff
)
173 /* Find the trace using bb and record it in the TRACE array.
174 Return number of basic blocks recorded. */
177 find_trace (basic_block bb
, basic_block
*trace
)
183 fprintf (dump_file
, "Trace seed %i [%i]", bb
->index
, bb
->frequency
);
185 while ((e
= find_best_predecessor (bb
)) != NULL
)
187 basic_block bb2
= e
->src
;
188 if (bb_seen_p (bb2
) || (e
->flags
& (EDGE_DFS_BACK
| EDGE_COMPLEX
))
189 || find_best_successor (bb2
) != e
)
192 fprintf (dump_file
, ",%i [%i]", bb
->index
, bb
->frequency
);
196 fprintf (dump_file
, " forward %i [%i]", bb
->index
, bb
->frequency
);
199 /* Follow the trace in forward direction. */
200 while ((e
= find_best_successor (bb
)) != NULL
)
203 if (bb_seen_p (bb
) || (e
->flags
& (EDGE_DFS_BACK
| EDGE_COMPLEX
))
204 || find_best_predecessor (bb
) != e
)
207 fprintf (dump_file
, ",%i [%i]", bb
->index
, bb
->frequency
);
211 fprintf (dump_file
, "\n");
215 /* Look for basic blocks in frequency order, construct traces and tail duplicate
219 tail_duplicate (void)
221 fibnode_t
*blocks
= XCNEWVEC (fibnode_t
, last_basic_block
);
222 basic_block
*trace
= XNEWVEC (basic_block
, n_basic_blocks
);
223 int *counts
= XNEWVEC (int, last_basic_block
);
224 int ninsns
= 0, nduplicated
= 0;
225 gcov_type weighted_insns
= 0, traced_insns
= 0;
226 fibheap_t heap
= fibheap_new ();
227 gcov_type cover_insns
;
231 /* Create an oversized sbitmap to reduce the chance that we need to
233 bb_seen
= sbitmap_alloc (last_basic_block
* 2);
234 sbitmap_zero (bb_seen
);
235 initialize_original_copy_tables ();
237 if (profile_info
&& flag_branch_probabilities
)
238 probability_cutoff
= PARAM_VALUE (TRACER_MIN_BRANCH_PROBABILITY_FEEDBACK
);
240 probability_cutoff
= PARAM_VALUE (TRACER_MIN_BRANCH_PROBABILITY
);
241 probability_cutoff
= REG_BR_PROB_BASE
/ 100 * probability_cutoff
;
243 branch_ratio_cutoff
=
244 (REG_BR_PROB_BASE
/ 100 * PARAM_VALUE (TRACER_MIN_BRANCH_RATIO
));
248 int n
= count_insns (bb
);
249 if (!ignore_bb_p (bb
))
250 blocks
[bb
->index
] = fibheap_insert (heap
, -bb
->frequency
,
253 counts
[bb
->index
] = n
;
255 weighted_insns
+= n
* bb
->frequency
;
258 if (profile_info
&& flag_branch_probabilities
)
259 cover_insns
= PARAM_VALUE (TRACER_DYNAMIC_COVERAGE_FEEDBACK
);
261 cover_insns
= PARAM_VALUE (TRACER_DYNAMIC_COVERAGE
);
262 cover_insns
= (weighted_insns
* cover_insns
+ 50) / 100;
263 max_dup_insns
= (ninsns
* PARAM_VALUE (TRACER_MAX_CODE_GROWTH
) + 50) / 100;
265 while (traced_insns
< cover_insns
&& nduplicated
< max_dup_insns
266 && !fibheap_empty (heap
))
268 basic_block bb
= (basic_block
) fibheap_extract_min (heap
);
274 blocks
[bb
->index
] = NULL
;
276 if (ignore_bb_p (bb
))
278 gcc_assert (!bb_seen_p (bb
));
280 n
= find_trace (bb
, trace
);
283 traced_insns
+= bb
->frequency
* counts
[bb
->index
];
284 if (blocks
[bb
->index
])
286 fibheap_delete_node (heap
, blocks
[bb
->index
]);
287 blocks
[bb
->index
] = NULL
;
290 for (pos
= 1; pos
< n
; pos
++)
292 basic_block bb2
= trace
[pos
];
294 if (blocks
[bb2
->index
])
296 fibheap_delete_node (heap
, blocks
[bb2
->index
]);
297 blocks
[bb2
->index
] = NULL
;
299 traced_insns
+= bb2
->frequency
* counts
[bb2
->index
];
300 if (EDGE_COUNT (bb2
->preds
) > 1
301 && can_duplicate_block_p (bb2
))
306 nduplicated
+= counts
[bb2
->index
];
308 e
= find_edge (bb
, bb2
);
310 copy
= duplicate_block (bb2
, e
, bb
);
311 flush_pending_stmts (e
);
313 add_phi_args_after_copy (©
, 1, NULL
);
315 /* Reconsider the original copy of block we've duplicated.
316 Removing the most common predecessor may make it to be
319 fibheap_insert (heap
, -bb2
->frequency
, bb2
);
322 fprintf (dump_file
, "Duplicated %i as %i [%i]\n",
323 bb2
->index
, copy
->index
, copy
->frequency
);
329 /* In case the trace became infrequent, stop duplicating. */
330 if (ignore_bb_p (bb
))
334 fprintf (dump_file
, " covered now %.1f\n\n",
335 traced_insns
* 100.0 / weighted_insns
);
338 fprintf (dump_file
, "Duplicated %i insns (%i%%)\n", nduplicated
,
339 nduplicated
* 100 / ninsns
);
341 free_original_copy_tables ();
342 sbitmap_free (bb_seen
);
346 fibheap_delete (heap
);
349 /* Main entry point to this file. */
354 gcc_assert (current_ir_type () == IR_GIMPLE
);
356 if (n_basic_blocks
<= NUM_FIXED_BLOCKS
+ 1)
359 mark_dfs_back_edges ();
361 dump_flow_info (dump_file
, dump_flags
);
363 /* Trace formation is done on the fly inside tail_duplicate */
366 /* FIXME: We really only need to do this when we know tail duplication
367 has altered the CFG. */
368 free_dominance_info (CDI_DOMINATORS
);
370 dump_flow_info (dump_file
, dump_flags
);
378 return (optimize
> 0 && flag_tracer
&& flag_reorder_blocks
);
381 struct gimple_opt_pass pass_tracer
=
386 gate_tracer
, /* gate */
387 tracer
, /* execute */
390 0, /* static_pass_number */
391 TV_TRACER
, /* tv_id */
392 0, /* properties_required */
393 0, /* properties_provided */
394 0, /* properties_destroyed */
395 0, /* todo_flags_start */
398 | TODO_verify_ssa
/* todo_flags_finish */