freebsd-dev/contrib/gcc/tracer.c

418 lines
11 KiB
C
Raw Normal View History

2003-07-11 03:40:53 +00:00
/* The tracer pass for the GNU compiler.
Contributed by Jan Hubicka, SuSE Labs.
2007-05-19 01:19:51 +00:00
Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
2003-07-11 03:40:53 +00:00
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GCC is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING. If not, write to the Free
2007-05-19 01:19:51 +00:00
Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA. */
2003-07-11 03:40:53 +00:00
/* This pass performs the tail duplication needed for superblock formation.
For more information see:
Design and Analysis of Profile-Based Optimization in Compaq's
Compilation Tools for Alpha; Journal of Instruction-Level
Parallelism 3 (2000) 1-25
Unlike Compaq's implementation we don't do the loop peeling as most
probably a better job can be done by a special pass and we don't
need to worry too much about the code size implications as the tail
duplicates are crossjumped again if optimizations are not
performed. */
#include "config.h"
#include "system.h"
2004-07-28 03:11:36 +00:00
#include "coretypes.h"
#include "tm.h"
2003-07-11 03:40:53 +00:00
#include "tree.h"
#include "rtl.h"
#include "hard-reg-set.h"
#include "basic-block.h"
#include "output.h"
#include "cfglayout.h"
#include "fibheap.h"
#include "flags.h"
2004-07-28 03:11:36 +00:00
#include "timevar.h"
2003-07-11 03:40:53 +00:00
#include "params.h"
2004-07-28 03:11:36 +00:00
#include "coverage.h"
2007-05-19 01:19:51 +00:00
#include "tree-pass.h"
2004-07-28 03:11:36 +00:00
static int count_insns (basic_block);
static bool ignore_bb_p (basic_block);
static bool better_p (edge, edge);
static edge find_best_successor (basic_block);
static edge find_best_predecessor (basic_block);
static int find_trace (basic_block, basic_block *);
static void tail_duplicate (void);
static void layout_superblocks (void);
2003-07-11 03:40:53 +00:00
/* Minimal outgoing edge probability considered for superblock formation. */
static int probability_cutoff;
static int branch_ratio_cutoff;
/* Return true if BB has been seen - it is connected to some trace
already. */
2007-05-19 01:19:51 +00:00
#define seen(bb) (bb->il.rtl->visited || bb->aux)
2003-07-11 03:40:53 +00:00
/* Return true if we should ignore the basic block for purposes of tracing. */
static bool
2004-07-28 03:11:36 +00:00
ignore_bb_p (basic_block bb)
2003-07-11 03:40:53 +00:00
{
2007-05-19 01:19:51 +00:00
if (bb->index < NUM_FIXED_BLOCKS)
2003-07-11 03:40:53 +00:00
return true;
if (!maybe_hot_bb_p (bb))
return true;
return false;
}
/* Return number of instructions in the block. */
static int
2004-07-28 03:11:36 +00:00
count_insns (basic_block bb)
2003-07-11 03:40:53 +00:00
{
rtx insn;
int n = 0;
2004-07-28 03:11:36 +00:00
for (insn = BB_HEAD (bb);
insn != NEXT_INSN (BB_END (bb));
insn = NEXT_INSN (insn))
2003-07-11 03:40:53 +00:00
if (active_insn_p (insn))
n++;
return n;
}
/* Return true if E1 is more frequent than E2. */
static bool
2004-07-28 03:11:36 +00:00
better_p (edge e1, edge e2)
2003-07-11 03:40:53 +00:00
{
if (e1->count != e2->count)
return e1->count > e2->count;
if (e1->src->frequency * e1->probability !=
e2->src->frequency * e2->probability)
return (e1->src->frequency * e1->probability
> e2->src->frequency * e2->probability);
/* This is needed to avoid changes in the decision after
CFG is modified. */
if (e1->src != e2->src)
return e1->src->index > e2->src->index;
return e1->dest->index > e2->dest->index;
}
/* Return most frequent successor of basic block BB. */
static edge
2004-07-28 03:11:36 +00:00
find_best_successor (basic_block bb)
2003-07-11 03:40:53 +00:00
{
edge e;
edge best = NULL;
2007-05-19 01:19:51 +00:00
edge_iterator ei;
2003-07-11 03:40:53 +00:00
2007-05-19 01:19:51 +00:00
FOR_EACH_EDGE (e, ei, bb->succs)
2003-07-11 03:40:53 +00:00
if (!best || better_p (e, best))
best = e;
if (!best || ignore_bb_p (best->dest))
return NULL;
if (best->probability <= probability_cutoff)
return NULL;
return best;
}
/* Return most frequent predecessor of basic block BB. */
static edge
2004-07-28 03:11:36 +00:00
find_best_predecessor (basic_block bb)
2003-07-11 03:40:53 +00:00
{
edge e;
edge best = NULL;
2007-05-19 01:19:51 +00:00
edge_iterator ei;
2003-07-11 03:40:53 +00:00
2007-05-19 01:19:51 +00:00
FOR_EACH_EDGE (e, ei, bb->preds)
2003-07-11 03:40:53 +00:00
if (!best || better_p (e, best))
best = e;
if (!best || ignore_bb_p (best->src))
return NULL;
if (EDGE_FREQUENCY (best) * REG_BR_PROB_BASE
< bb->frequency * branch_ratio_cutoff)
return NULL;
return best;
}
/* Find the trace using bb and record it in the TRACE array.
Return number of basic blocks recorded. */
static int
2004-07-28 03:11:36 +00:00
find_trace (basic_block bb, basic_block *trace)
2003-07-11 03:40:53 +00:00
{
int i = 0;
edge e;
2007-05-19 01:19:51 +00:00
if (dump_file)
fprintf (dump_file, "Trace seed %i [%i]", bb->index, bb->frequency);
2003-07-11 03:40:53 +00:00
while ((e = find_best_predecessor (bb)) != NULL)
{
basic_block bb2 = e->src;
if (seen (bb2) || (e->flags & (EDGE_DFS_BACK | EDGE_COMPLEX))
|| find_best_successor (bb2) != e)
break;
2007-05-19 01:19:51 +00:00
if (dump_file)
fprintf (dump_file, ",%i [%i]", bb->index, bb->frequency);
2003-07-11 03:40:53 +00:00
bb = bb2;
}
2007-05-19 01:19:51 +00:00
if (dump_file)
fprintf (dump_file, " forward %i [%i]", bb->index, bb->frequency);
2003-07-11 03:40:53 +00:00
trace[i++] = bb;
/* Follow the trace in forward direction. */
while ((e = find_best_successor (bb)) != NULL)
{
bb = e->dest;
if (seen (bb) || (e->flags & (EDGE_DFS_BACK | EDGE_COMPLEX))
|| find_best_predecessor (bb) != e)
break;
2007-05-19 01:19:51 +00:00
if (dump_file)
fprintf (dump_file, ",%i [%i]", bb->index, bb->frequency);
2003-07-11 03:40:53 +00:00
trace[i++] = bb;
}
2007-05-19 01:19:51 +00:00
if (dump_file)
fprintf (dump_file, "\n");
2003-07-11 03:40:53 +00:00
return i;
}
/* Look for basic blocks in frequency order, construct traces and tail duplicate
if profitable. */
static void
2004-07-28 03:11:36 +00:00
tail_duplicate (void)
2003-07-11 03:40:53 +00:00
{
2007-05-19 01:19:51 +00:00
fibnode_t *blocks = XCNEWVEC (fibnode_t, last_basic_block);
basic_block *trace = XNEWVEC (basic_block, n_basic_blocks);
int *counts = XNEWVEC (int, last_basic_block);
2003-07-11 03:40:53 +00:00
int ninsns = 0, nduplicated = 0;
gcov_type weighted_insns = 0, traced_insns = 0;
fibheap_t heap = fibheap_new ();
gcov_type cover_insns;
int max_dup_insns;
basic_block bb;
2004-07-28 03:11:36 +00:00
if (profile_info && flag_branch_probabilities)
2003-07-11 03:40:53 +00:00
probability_cutoff = PARAM_VALUE (TRACER_MIN_BRANCH_PROBABILITY_FEEDBACK);
else
probability_cutoff = PARAM_VALUE (TRACER_MIN_BRANCH_PROBABILITY);
probability_cutoff = REG_BR_PROB_BASE / 100 * probability_cutoff;
branch_ratio_cutoff =
(REG_BR_PROB_BASE / 100 * PARAM_VALUE (TRACER_MIN_BRANCH_RATIO));
FOR_EACH_BB (bb)
{
int n = count_insns (bb);
if (!ignore_bb_p (bb))
blocks[bb->index] = fibheap_insert (heap, -bb->frequency,
bb);
counts [bb->index] = n;
ninsns += n;
weighted_insns += n * bb->frequency;
}
2004-07-28 03:11:36 +00:00
if (profile_info && flag_branch_probabilities)
2003-07-11 03:40:53 +00:00
cover_insns = PARAM_VALUE (TRACER_DYNAMIC_COVERAGE_FEEDBACK);
else
cover_insns = PARAM_VALUE (TRACER_DYNAMIC_COVERAGE);
cover_insns = (weighted_insns * cover_insns + 50) / 100;
max_dup_insns = (ninsns * PARAM_VALUE (TRACER_MAX_CODE_GROWTH) + 50) / 100;
while (traced_insns < cover_insns && nduplicated < max_dup_insns
&& !fibheap_empty (heap))
{
basic_block bb = fibheap_extract_min (heap);
int n, pos;
if (!bb)
break;
blocks[bb->index] = NULL;
if (ignore_bb_p (bb))
continue;
2007-05-19 01:19:51 +00:00
gcc_assert (!seen (bb));
2003-07-11 03:40:53 +00:00
n = find_trace (bb, trace);
bb = trace[0];
traced_insns += bb->frequency * counts [bb->index];
if (blocks[bb->index])
{
fibheap_delete_node (heap, blocks[bb->index]);
blocks[bb->index] = NULL;
}
for (pos = 1; pos < n; pos++)
{
basic_block bb2 = trace[pos];
if (blocks[bb2->index])
{
fibheap_delete_node (heap, blocks[bb2->index]);
blocks[bb2->index] = NULL;
}
traced_insns += bb2->frequency * counts [bb2->index];
2007-05-19 01:19:51 +00:00
if (EDGE_COUNT (bb2->preds) > 1
&& can_duplicate_block_p (bb2))
2003-07-11 03:40:53 +00:00
{
2007-05-19 01:19:51 +00:00
edge e;
2003-07-11 03:40:53 +00:00
basic_block old = bb2;
2007-05-19 01:19:51 +00:00
e = find_edge (bb, bb2);
2003-07-11 03:40:53 +00:00
nduplicated += counts [bb2->index];
2007-05-19 01:19:51 +00:00
bb2 = duplicate_block (bb2, e, bb);
2003-07-11 03:40:53 +00:00
/* Reconsider the original copy of block we've duplicated.
2004-07-28 03:11:36 +00:00
Removing the most common predecessor may make it to be
2003-07-11 03:40:53 +00:00
head. */
blocks[old->index] =
fibheap_insert (heap, -old->frequency, old);
2007-05-19 01:19:51 +00:00
if (dump_file)
fprintf (dump_file, "Duplicated %i as %i [%i]\n",
2003-07-11 03:40:53 +00:00
old->index, bb2->index, bb2->frequency);
}
2007-05-19 01:19:51 +00:00
bb->aux = bb2;
bb2->il.rtl->visited = 1;
2003-07-11 03:40:53 +00:00
bb = bb2;
/* In case the trace became infrequent, stop duplicating. */
if (ignore_bb_p (bb))
break;
}
2007-05-19 01:19:51 +00:00
if (dump_file)
fprintf (dump_file, " covered now %.1f\n\n",
2003-07-11 03:40:53 +00:00
traced_insns * 100.0 / weighted_insns);
}
2007-05-19 01:19:51 +00:00
if (dump_file)
fprintf (dump_file, "Duplicated %i insns (%i%%)\n", nduplicated,
2003-07-11 03:40:53 +00:00
nduplicated * 100 / ninsns);
free (blocks);
free (trace);
free (counts);
fibheap_delete (heap);
}
2004-07-28 03:11:36 +00:00
/* Connect the superblocks into linear sequence. At the moment we attempt to keep
2003-07-11 03:40:53 +00:00
the original order as much as possible, but the algorithm may be made smarter
later if needed. BB reordering pass should void most of the benefits of such
change though. */
static void
2004-07-28 03:11:36 +00:00
layout_superblocks (void)
2003-07-11 03:40:53 +00:00
{
2007-05-19 01:19:51 +00:00
basic_block end = single_succ (ENTRY_BLOCK_PTR);
basic_block bb = end->next_bb;
2003-07-11 03:40:53 +00:00
while (bb != EXIT_BLOCK_PTR)
{
2007-05-19 01:19:51 +00:00
edge_iterator ei;
2003-07-11 03:40:53 +00:00
edge e, best = NULL;
2007-05-19 01:19:51 +00:00
while (end->aux)
end = end->aux;
2003-07-11 03:40:53 +00:00
2007-05-19 01:19:51 +00:00
FOR_EACH_EDGE (e, ei, end->succs)
2003-07-11 03:40:53 +00:00
if (e->dest != EXIT_BLOCK_PTR
2007-05-19 01:19:51 +00:00
&& e->dest != single_succ (ENTRY_BLOCK_PTR)
&& !e->dest->il.rtl->visited
2003-07-11 03:40:53 +00:00
&& (!best || EDGE_FREQUENCY (e) > EDGE_FREQUENCY (best)))
best = e;
if (best)
{
2007-05-19 01:19:51 +00:00
end->aux = best->dest;
best->dest->il.rtl->visited = 1;
2003-07-11 03:40:53 +00:00
}
else
2004-07-28 03:11:36 +00:00
for (; bb != EXIT_BLOCK_PTR; bb = bb->next_bb)
2003-07-11 03:40:53 +00:00
{
2007-05-19 01:19:51 +00:00
if (!bb->il.rtl->visited)
2003-07-11 03:40:53 +00:00
{
2007-05-19 01:19:51 +00:00
end->aux = bb;
bb->il.rtl->visited = 1;
2003-07-11 03:40:53 +00:00
break;
}
}
}
}
2004-07-28 03:11:36 +00:00
/* Main entry point to this file. FLAGS is the set of flags to pass
to cfg_layout_initialize(). */
2003-07-11 03:40:53 +00:00
void
2004-07-28 03:11:36 +00:00
tracer (unsigned int flags)
2003-07-11 03:40:53 +00:00
{
2007-05-19 01:19:51 +00:00
if (n_basic_blocks <= NUM_FIXED_BLOCKS + 1)
2003-07-11 03:40:53 +00:00
return;
2004-07-28 03:11:36 +00:00
cfg_layout_initialize (flags);
2003-07-11 03:40:53 +00:00
mark_dfs_back_edges ();
2007-05-19 01:19:51 +00:00
if (dump_file)
dump_flow_info (dump_file, dump_flags);
2003-07-11 03:40:53 +00:00
tail_duplicate ();
layout_superblocks ();
2007-05-19 01:19:51 +00:00
if (dump_file)
dump_flow_info (dump_file, dump_flags);
2003-07-11 03:40:53 +00:00
cfg_layout_finalize ();
2004-07-28 03:11:36 +00:00
2003-07-11 03:40:53 +00:00
/* Merge basic blocks in duplicated traces. */
cleanup_cfg (CLEANUP_EXPENSIVE);
2007-05-19 01:19:51 +00:00
}
static bool
gate_handle_tracer (void)
{
return (optimize > 0 && flag_tracer);
}
2004-07-28 03:11:36 +00:00
2007-05-19 01:19:51 +00:00
/* Run tracer. */
static unsigned int
rest_of_handle_tracer (void)
{
if (dump_file)
dump_flow_info (dump_file, dump_flags);
tracer (0);
cleanup_cfg (CLEANUP_EXPENSIVE);
reg_scan (get_insns (), max_reg_num ());
return 0;
2003-07-11 03:40:53 +00:00
}
2007-05-19 01:19:51 +00:00
struct tree_opt_pass pass_tracer =
{
"tracer", /* name */
gate_handle_tracer, /* gate */
rest_of_handle_tracer, /* execute */
NULL, /* sub */
NULL, /* next */
0, /* static_pass_number */
TV_TRACER, /* tv_id */
0, /* properties_required */
0, /* properties_provided */
0, /* properties_destroyed */
0, /* todo_flags_start */
TODO_dump_func, /* todo_flags_finish */
'T' /* letter */
};