OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [tree-profile.c] - Blame information for rev 816

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 38 julius
/* Calculate branch probabilities, and basic block execution counts.
2
   Copyright (C) 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998, 1999,
3
   2000, 2001, 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
4
   Contributed by James E. Wilson, UC Berkeley/Cygnus Support;
5
   based on some ideas from Dain Samples of UC Berkeley.
6
   Further mangling by Bob Manson, Cygnus Support.
7
   Converted to use trees by Dale Johannesen, Apple Computer.
8
 
9
This file is part of GCC.
10
 
11
GCC is free software; you can redistribute it and/or modify it under
12
the terms of the GNU General Public License as published by the Free
13
Software Foundation; either version 3, or (at your option) any later
14
version.
15
 
16
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
17
WARRANTY; without even the implied warranty of MERCHANTABILITY or
18
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19
for more details.
20
 
21
You should have received a copy of the GNU General Public License
22
along with GCC; see the file COPYING3.  If not see
23
<http://www.gnu.org/licenses/>.  */
24
 
25
/* Generate basic block profile instrumentation and auxiliary files.
26
   Tree-based version.  See profile.c for overview.  */
27
 
28
#include "config.h"
29
#include "system.h"
30
#include "coretypes.h"
31
#include "tm.h"
32
#include "rtl.h"
33
#include "flags.h"
34
#include "output.h"
35
#include "regs.h"
36
#include "expr.h"
37
#include "function.h"
38
#include "toplev.h"
39
#include "coverage.h"
40
#include "tree.h"
41
#include "tree-flow.h"
42
#include "tree-dump.h"
43
#include "tree-pass.h"
44
#include "timevar.h"
45
#include "value-prof.h"
46
#include "ggc.h"
47
 
48
static GTY(()) tree gcov_type_node;
49
static GTY(()) tree tree_interval_profiler_fn;
50
static GTY(()) tree tree_pow2_profiler_fn;
51
static GTY(()) tree tree_one_value_profiler_fn;
52
 
53
 
54
/* Do initialization work for the edge profiler.  */
55
 
56
static void
57
tree_init_edge_profiler (void)
58
{
59
  tree interval_profiler_fn_type;
60
  tree pow2_profiler_fn_type;
61
  tree one_value_profiler_fn_type;
62
  tree gcov_type_ptr;
63
 
64
  if (!gcov_type_node)
65
    {
66
      gcov_type_node = get_gcov_type ();
67
      gcov_type_ptr = build_pointer_type (gcov_type_node);
68
 
69
      /* void (*) (gcov_type *, gcov_type, int, unsigned)  */
70
      interval_profiler_fn_type
71
              = build_function_type_list (void_type_node,
72
                                          gcov_type_ptr, gcov_type_node,
73
                                          integer_type_node,
74
                                          unsigned_type_node, NULL_TREE);
75
      tree_interval_profiler_fn
76
              = build_fn_decl ("__gcov_interval_profiler",
77
                                     interval_profiler_fn_type);
78
 
79
      /* void (*) (gcov_type *, gcov_type)  */
80
      pow2_profiler_fn_type
81
              = build_function_type_list (void_type_node,
82
                                          gcov_type_ptr, gcov_type_node,
83
                                          NULL_TREE);
84
      tree_pow2_profiler_fn = build_fn_decl ("__gcov_pow2_profiler",
85
                                                   pow2_profiler_fn_type);
86
 
87
      /* void (*) (gcov_type *, gcov_type)  */
88
      one_value_profiler_fn_type
89
              = build_function_type_list (void_type_node,
90
                                          gcov_type_ptr, gcov_type_node,
91
                                          NULL_TREE);
92
      tree_one_value_profiler_fn
93
              = build_fn_decl ("__gcov_one_value_profiler",
94
                                     one_value_profiler_fn_type);
95
    }
96
}
97
 
98
/* Output instructions as GIMPLE trees to increment the edge
99
   execution count, and insert them on E.  We rely on
100
   bsi_insert_on_edge to preserve the order.  */
101
 
102
static void
103
tree_gen_edge_profiler (int edgeno, edge e)
104
{
105
  tree tmp1 = create_tmp_var (gcov_type_node, "PROF");
106
  tree tmp2 = create_tmp_var (gcov_type_node, "PROF");
107
  tree ref = tree_coverage_counter_ref (GCOV_COUNTER_ARCS, edgeno);
108
  tree stmt1 = build2 (MODIFY_EXPR, gcov_type_node, tmp1, ref);
109
  tree stmt2 = build2 (MODIFY_EXPR, gcov_type_node, tmp2,
110
                       build2 (PLUS_EXPR, gcov_type_node,
111
                              tmp1, integer_one_node));
112
  tree stmt3 = build2 (MODIFY_EXPR, gcov_type_node, ref, tmp2);
113
  bsi_insert_on_edge (e, stmt1);
114
  bsi_insert_on_edge (e, stmt2);
115
  bsi_insert_on_edge (e, stmt3);
116
}
117
 
118
/* Emits code to get VALUE to instrument at BSI, and returns the
119
   variable containing the value.  */
120
 
121
static tree
122
prepare_instrumented_value (block_stmt_iterator *bsi,
123
                            histogram_value value)
124
{
125
  tree val = value->hvalue.value;
126
  return force_gimple_operand_bsi (bsi, fold_convert (gcov_type_node, val),
127
                                   true, NULL_TREE);
128
}
129
 
130
/* Output instructions as GIMPLE trees to increment the interval histogram
131
   counter.  VALUE is the expression whose value is profiled.  TAG is the
132
   tag of the section for counters, BASE is offset of the counter position.  */
133
 
134
static void
135
tree_gen_interval_profiler (histogram_value value, unsigned tag, unsigned base)
136
{
137
  tree stmt = value->hvalue.stmt;
138
  block_stmt_iterator bsi = bsi_for_stmt (stmt);
139
  tree ref = tree_coverage_counter_ref (tag, base), ref_ptr;
140
  tree args, call, val;
141
  tree start = build_int_cst_type (integer_type_node, value->hdata.intvl.int_start);
142
  tree steps = build_int_cst_type (unsigned_type_node, value->hdata.intvl.steps);
143
 
144
  ref_ptr = force_gimple_operand_bsi (&bsi,
145
                                      build_addr (ref, current_function_decl),
146
                                      true, NULL_TREE);
147
  val = prepare_instrumented_value (&bsi, value);
148
  args = tree_cons (NULL_TREE, ref_ptr,
149
                    tree_cons (NULL_TREE, val,
150
                               tree_cons (NULL_TREE, start,
151
                                          tree_cons (NULL_TREE, steps,
152
                                                     NULL_TREE))));
153
  call = build_function_call_expr (tree_interval_profiler_fn, args);
154
  bsi_insert_before (&bsi, call, BSI_SAME_STMT);
155
}
156
 
157
/* Output instructions as GIMPLE trees to increment the power of two histogram
158
   counter.  VALUE is the expression whose value is profiled.  TAG is the tag
159
   of the section for counters, BASE is offset of the counter position.  */
160
 
161
static void
162
tree_gen_pow2_profiler (histogram_value value, unsigned tag, unsigned base)
163
{
164
  tree stmt = value->hvalue.stmt;
165
  block_stmt_iterator bsi = bsi_for_stmt (stmt);
166
  tree ref = tree_coverage_counter_ref (tag, base), ref_ptr;
167
  tree args, call, val;
168
 
169
  ref_ptr = force_gimple_operand_bsi (&bsi,
170
                                      build_addr (ref, current_function_decl),
171
                                      true, NULL_TREE);
172
  val = prepare_instrumented_value (&bsi, value);
173
  args = tree_cons (NULL_TREE, ref_ptr,
174
                    tree_cons (NULL_TREE, val,
175
                               NULL_TREE));
176
  call = build_function_call_expr (tree_pow2_profiler_fn, args);
177
  bsi_insert_before (&bsi, call, BSI_SAME_STMT);
178
}
179
 
180
/* Output instructions as GIMPLE trees for code to find the most common value.
181
   VALUE is the expression whose value is profiled.  TAG is the tag of the
182
   section for counters, BASE is offset of the counter position.  */
183
 
184
static void
185
tree_gen_one_value_profiler (histogram_value value, unsigned tag, unsigned base)
186
{
187
  tree stmt = value->hvalue.stmt;
188
  block_stmt_iterator bsi = bsi_for_stmt (stmt);
189
  tree ref = tree_coverage_counter_ref (tag, base), ref_ptr;
190
  tree args, call, val;
191
 
192
  ref_ptr = force_gimple_operand_bsi (&bsi,
193
                                      build_addr (ref, current_function_decl),
194
                                      true, NULL_TREE);
195
  val = prepare_instrumented_value (&bsi, value);
196
  args = tree_cons (NULL_TREE, ref_ptr,
197
                    tree_cons (NULL_TREE, val,
198
                               NULL_TREE));
199
  call = build_function_call_expr (tree_one_value_profiler_fn, args);
200
  bsi_insert_before (&bsi, call, BSI_SAME_STMT);
201
}
202
 
203
/* Output instructions as GIMPLE trees for code to find the most common value
204
   of a difference between two evaluations of an expression.
205
   VALUE is the expression whose value is profiled.  TAG is the tag of the
206
   section for counters, BASE is offset of the counter position.  */
207
 
208
static void
209
tree_gen_const_delta_profiler (histogram_value value ATTRIBUTE_UNUSED,
210
                                unsigned tag ATTRIBUTE_UNUSED,
211
                                unsigned base ATTRIBUTE_UNUSED)
212
{
213
  /* FIXME implement this.  */
214
#ifdef ENABLE_CHECKING
215
  internal_error ("unimplemented functionality");
216
#endif
217
  gcc_unreachable ();
218
}
219
 
220
/* Return 1 if tree-based profiling is in effect, else 0.
221
   If it is, set up hooks for tree-based profiling.
222
   Gate for pass_tree_profile.  */
223
 
224
static bool
225
do_tree_profiling (void)
226
{
227
  if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
228
    {
229
      tree_register_profile_hooks ();
230
      tree_register_value_prof_hooks ();
231
      return true;
232
    }
233
  return false;
234
}
235
 
236
static unsigned int
237
tree_profiling (void)
238
{
239
  branch_prob ();
240
  if (flag_branch_probabilities
241
      && flag_profile_values
242
      && flag_value_profile_transformations)
243
    value_profile_transformations ();
244
  /* The above could hose dominator info.  Currently there is
245
     none coming in, this is a safety valve.  It should be
246
     easy to adjust it, if and when there is some.  */
247
  free_dominance_info (CDI_DOMINATORS);
248
  free_dominance_info (CDI_POST_DOMINATORS);
249
  return 0;
250
}
251
 
252
struct tree_opt_pass pass_tree_profile =
253
{
254
  "tree_profile",                       /* name */
255
  do_tree_profiling,                    /* gate */
256
  tree_profiling,                       /* execute */
257
  NULL,                                 /* sub */
258
  NULL,                                 /* next */
259
  0,                                     /* static_pass_number */
260
  TV_BRANCH_PROB,                       /* tv_id */
261
  PROP_gimple_leh | PROP_cfg,           /* properties_required */
262
  PROP_gimple_leh | PROP_cfg,           /* properties_provided */
263
  0,                                     /* properties_destroyed */
264
  0,                                     /* todo_flags_start */
265
  TODO_verify_stmts,                    /* todo_flags_finish */
266
 
267
};
268
 
269
/* Return 1 if tree-based profiling is in effect, else 0.
270
   If it is, set up hooks for tree-based profiling.
271
   Gate for pass_tree_profile.  */
272
 
273
static bool
274
do_early_tree_profiling (void)
275
{
276
  return (do_tree_profiling () && (!flag_unit_at_a_time || !optimize));
277
}
278
 
279
struct tree_opt_pass pass_early_tree_profile =
280
{
281
  "early_tree_profile",                 /* name */
282
  do_early_tree_profiling,              /* gate */
283
  tree_profiling,                       /* execute */
284
  NULL,                                 /* sub */
285
  NULL,                                 /* next */
286
  0,                                     /* static_pass_number */
287
  TV_BRANCH_PROB,                       /* tv_id */
288
  PROP_gimple_leh | PROP_cfg,           /* properties_required */
289
  PROP_gimple_leh | PROP_cfg,           /* properties_provided */
290
  0,                                     /* properties_destroyed */
291
  0,                                     /* todo_flags_start */
292
  TODO_verify_stmts,                    /* todo_flags_finish */
293
 
294
};
295
 
296
struct profile_hooks tree_profile_hooks =
297
{
298
  tree_init_edge_profiler,      /* init_edge_profiler */
299
  tree_gen_edge_profiler,       /* gen_edge_profiler */
300
  tree_gen_interval_profiler,   /* gen_interval_profiler */
301
  tree_gen_pow2_profiler,       /* gen_pow2_profiler */
302
  tree_gen_one_value_profiler,  /* gen_one_value_profiler */
303
  tree_gen_const_delta_profiler /* gen_const_delta_profiler */
304
};
305
 
306
#include "gt-tree-profile.h"

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.