2005-04-29 Jim Tison <jtison@us.ibm.com>
[official-gcc.git] / gcc / value-prof.h
blob692746a601de0e849ad0ccca2cb0d1352baac84f
1 /* Definitions for transformations based on profile information for values.
2 Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
21 #ifndef GCC_VALUE_PROF_H
22 #define GCC_VALUE_PROF_H
24 /* Supported histogram types. */
25 enum hist_type
27 HIST_TYPE_INTERVAL, /* Measures histogram of values inside a specified
28 interval. */
29 HIST_TYPE_POW2, /* Histogram of power of 2 values. */
30 HIST_TYPE_SINGLE_VALUE, /* Tries to identify the value that is (almost)
31 always constant. */
32 HIST_TYPE_CONST_DELTA /* Tries to identify the (almost) always constant
33 difference between two evaluations of a value. */
36 #define COUNTER_FOR_HIST_TYPE(TYPE) ((int) (TYPE) + GCOV_FIRST_VALUE_COUNTER)
37 #define HIST_TYPE_FOR_COUNTER(COUNTER) \
38 ((enum hist_type) ((COUNTER) - GCOV_FIRST_VALUE_COUNTER))
40 /* The value to measure. */
41 struct histogram_value_t
43 union
45 struct
47 rtx value; /* The value to profile. */
48 rtx seq; /* Insns required to count the profiled value. */
49 rtx insn; /* Insn before that to measure. */
50 enum machine_mode mode; /* Mode of value to profile. */
51 } rtl;
52 struct
54 tree value; /* The value to profile. */
55 tree stmt; /* Insn containing the value. */
56 gcov_type *counters; /* Pointer to first counter. */
57 struct histogram_value_t *next; /* Linked list pointer. */
58 } tree;
59 } hvalue;
60 enum hist_type type; /* Type of information to measure. */
61 unsigned n_counters; /* Number of required counters. */
62 union
64 struct
66 int int_start; /* First value in interval. */
67 unsigned int steps; /* Number of values in it. */
68 } intvl; /* Interval histogram data. */
69 } hdata; /* Profiled information specific data. */
72 typedef struct histogram_value_t *histogram_value;
74 DEF_VEC_P(histogram_value);
75 DEF_VEC_ALLOC_P(histogram_value,heap);
77 typedef VEC(histogram_value,heap) *histogram_values;
79 /* Hooks registration. */
80 extern void rtl_register_value_prof_hooks (void);
81 extern void tree_register_value_prof_hooks (void);
83 /* IR-independent entry points. */
84 extern void find_values_to_profile (histogram_values *);
85 extern bool value_profile_transformations (void);
87 /* External declarations for edge-based profiling. */
88 struct profile_hooks {
90 /* Insert code to initialize edge profiler. */
91 void (*init_edge_profiler) (void);
93 /* Insert code to increment an edge count. */
94 void (*gen_edge_profiler) (int, edge);
96 /* Insert code to increment the interval histogram counter. */
97 void (*gen_interval_profiler) (histogram_value, unsigned, unsigned);
99 /* Insert code to increment the power of two histogram counter. */
100 void (*gen_pow2_profiler) (histogram_value, unsigned, unsigned);
102 /* Insert code to find the most common value. */
103 void (*gen_one_value_profiler) (histogram_value, unsigned, unsigned);
105 /* Insert code to find the most common value of a difference between two
106 evaluations of an expression. */
107 void (*gen_const_delta_profiler) (histogram_value, unsigned, unsigned);
108 FILE * (*profile_dump_file) (void);
111 /* In profile.c. */
112 extern void init_branch_prob (void);
113 extern void branch_prob (void);
114 extern void end_branch_prob (void);
115 extern void tree_register_profile_hooks (void);
116 extern void rtl_register_profile_hooks (void);
118 /* In tree-profile.c. */
119 extern struct profile_hooks tree_profile_hooks;
121 /* In rtl-profile.c. */
122 extern struct profile_hooks rtl_profile_hooks;
124 #endif /* GCC_VALUE_PROF_H */