X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2Fvalue-prof.h;h=a01919bb3f941e99a41f9aa385006b334685436e;hb=f5ef996258725dd451733c21e2bba88c87019646;hp=2a1191daaf25d403928e0d0517d5843e987aaa77;hpb=67ce556b47830dd825524e8370969b814c355216;p=pf3gnuchains%2Fgcc-fork.git diff --git a/gcc/value-prof.h b/gcc/value-prof.h index 2a1191daaf2..a01919bb3f9 100644 --- a/gcc/value-prof.h +++ b/gcc/value-prof.h @@ -1,11 +1,11 @@ /* Definitions for transformations based on profile information for values. - Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2003, 2004, 2005, 2007 Free Software Foundation, Inc. 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 +Software Foundation; either version 3, or (at your option) any later version. GCC is distributed in the hope that it will be useful, but WITHOUT ANY @@ -14,9 +14,8 @@ 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 -Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA -02110-1301, USA. */ +along with GCC; see the file COPYING3. If not see +. */ #ifndef GCC_VALUE_PROF_H #define GCC_VALUE_PROF_H @@ -29,8 +28,12 @@ enum hist_type HIST_TYPE_POW2, /* Histogram of power of 2 values. */ HIST_TYPE_SINGLE_VALUE, /* Tries to identify the value that is (almost) always constant. */ - HIST_TYPE_CONST_DELTA /* Tries to identify the (almost) always constant + HIST_TYPE_CONST_DELTA, /* Tries to identify the (almost) always constant difference between two evaluations of a value. */ + HIST_TYPE_INDIR_CALL, /* Tries to identify the function that is (almost) + called in indirect call */ + HIST_TYPE_AVERAGE, /* Compute average value (sum of all values). */ + HIST_TYPE_IOR /* Used to compute expected alignment. */ }; #define COUNTER_FOR_HIST_TYPE(TYPE) ((int) (TYPE) + GCOV_FIRST_VALUE_COUNTER) @@ -40,22 +43,12 @@ enum hist_type /* The value to measure. */ struct histogram_value_t { - union + struct { - struct - { - rtx value; /* The value to profile. */ - rtx seq; /* Insns required to count the profiled value. */ - rtx insn; /* Insn before that to measure. */ - enum machine_mode mode; /* Mode of value to profile. */ - } rtl; - struct - { - tree value; /* The value to profile. */ - tree stmt; /* Insn containing the value. */ - gcov_type *counters; /* Pointer to first counter. */ - struct histogram_value_t *next; /* Linked list pointer. */ - } tree; + tree value; /* The value to profile. */ + tree stmt; /* Insn containing the value. */ + gcov_type *counters; /* Pointer to first counter. */ + struct histogram_value_t *next; /* Linked list pointer. */ } hvalue; enum hist_type type; /* Type of information to measure. */ unsigned n_counters; /* Number of required counters. */ @@ -70,6 +63,7 @@ struct histogram_value_t }; typedef struct histogram_value_t *histogram_value; +typedef const struct histogram_value_t *const_histogram_value; DEF_VEC_P(histogram_value); DEF_VEC_ALLOC_P(histogram_value,heap); @@ -77,7 +71,6 @@ DEF_VEC_ALLOC_P(histogram_value,heap); typedef VEC(histogram_value,heap) *histogram_values; /* Hooks registration. */ -extern void rtl_register_value_prof_hooks (void); extern void tree_register_value_prof_hooks (void); /* IR-independent entry points. */ @@ -105,21 +98,36 @@ struct profile_hooks { /* Insert code to find the most common value of a difference between two evaluations of an expression. */ void (*gen_const_delta_profiler) (histogram_value, unsigned, unsigned); - FILE * (*profile_dump_file) (void); + + /* Insert code to find the most common indirect call */ + void (*gen_ic_profiler) (histogram_value, unsigned, unsigned); + + /* Insert code to find the average value of an expression. */ + void (*gen_average_profiler) (histogram_value, unsigned, unsigned); + + /* Insert code to ior value of an expression. */ + void (*gen_ior_profiler) (histogram_value, unsigned, unsigned); }; +histogram_value gimple_histogram_value (struct function *, tree); +histogram_value gimple_histogram_value_of_type (struct function *, tree, enum hist_type); +void gimple_add_histogram_value (struct function *, tree, histogram_value); +void dump_histograms_for_stmt (struct function *, FILE *, tree); +void gimple_remove_histogram_value (struct function *, tree, histogram_value); +void gimple_remove_stmt_histograms (struct function *, tree); +void gimple_duplicate_stmt_histograms (struct function *, tree, struct function *, tree); +void verify_histograms (void); +void free_histograms (void); +void stringop_block_profile (tree, unsigned int *, HOST_WIDE_INT *); + /* In profile.c. */ extern void init_branch_prob (void); extern void branch_prob (void); extern void end_branch_prob (void); extern void tree_register_profile_hooks (void); -extern void rtl_register_profile_hooks (void); /* In tree-profile.c. */ extern struct profile_hooks tree_profile_hooks; -/* In rtl-profile.c. */ -extern struct profile_hooks rtl_profile_hooks; - #endif /* GCC_VALUE_PROF_H */