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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [value-prof.h] - Diff between revs 154 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 816
/* Definitions for transformations based on profile information for values.
/* Definitions for transformations based on profile information for values.
   Copyright (C) 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
   Copyright (C) 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
 
 
This file is part of GCC.
This file is part of GCC.
 
 
GCC is free software; you can redistribute it and/or modify it under
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
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
Software Foundation; either version 3, or (at your option) any later
version.
version.
 
 
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.
for more details.
 
 
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3.  If not see
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */
<http://www.gnu.org/licenses/>.  */
 
 
#ifndef GCC_VALUE_PROF_H
#ifndef GCC_VALUE_PROF_H
#define GCC_VALUE_PROF_H
#define GCC_VALUE_PROF_H
 
 
/* Supported histogram types.  */
/* Supported histogram types.  */
enum hist_type
enum hist_type
{
{
  HIST_TYPE_INTERVAL,   /* Measures histogram of values inside a specified
  HIST_TYPE_INTERVAL,   /* Measures histogram of values inside a specified
                           interval.  */
                           interval.  */
  HIST_TYPE_POW2,       /* Histogram of power of 2 values.  */
  HIST_TYPE_POW2,       /* Histogram of power of 2 values.  */
  HIST_TYPE_SINGLE_VALUE, /* Tries to identify the value that is (almost)
  HIST_TYPE_SINGLE_VALUE, /* Tries to identify the value that is (almost)
                           always constant.  */
                           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.  */
                           difference between two evaluations of a value.  */
};
};
 
 
#define COUNTER_FOR_HIST_TYPE(TYPE) ((int) (TYPE) + GCOV_FIRST_VALUE_COUNTER)
#define COUNTER_FOR_HIST_TYPE(TYPE) ((int) (TYPE) + GCOV_FIRST_VALUE_COUNTER)
#define HIST_TYPE_FOR_COUNTER(COUNTER) \
#define HIST_TYPE_FOR_COUNTER(COUNTER) \
  ((enum hist_type) ((COUNTER) - GCOV_FIRST_VALUE_COUNTER))
  ((enum hist_type) ((COUNTER) - GCOV_FIRST_VALUE_COUNTER))
 
 
/* The value to measure.  */
/* The value to measure.  */
struct histogram_value_t
struct histogram_value_t
{
{
  struct
  struct
    {
    {
      tree value;               /* The value to profile.  */
      tree value;               /* The value to profile.  */
      tree stmt;                /* Insn containing the value.  */
      tree stmt;                /* Insn containing the value.  */
      gcov_type *counters;                      /* Pointer to first counter.  */
      gcov_type *counters;                      /* Pointer to first counter.  */
      struct histogram_value_t *next;           /* Linked list pointer.  */
      struct histogram_value_t *next;           /* Linked list pointer.  */
    } hvalue;
    } hvalue;
  enum hist_type type;                  /* Type of information to measure.  */
  enum hist_type type;                  /* Type of information to measure.  */
  unsigned n_counters;                  /* Number of required counters.  */
  unsigned n_counters;                  /* Number of required counters.  */
  union
  union
    {
    {
      struct
      struct
        {
        {
          int int_start;        /* First value in interval.  */
          int int_start;        /* First value in interval.  */
          unsigned int steps;   /* Number of values in it.  */
          unsigned int steps;   /* Number of values in it.  */
        } intvl;        /* Interval histogram data.  */
        } intvl;        /* Interval histogram data.  */
    } hdata;            /* Profiled information specific data.  */
    } hdata;            /* Profiled information specific data.  */
};
};
 
 
typedef struct histogram_value_t *histogram_value;
typedef struct histogram_value_t *histogram_value;
 
 
DEF_VEC_P(histogram_value);
DEF_VEC_P(histogram_value);
DEF_VEC_ALLOC_P(histogram_value,heap);
DEF_VEC_ALLOC_P(histogram_value,heap);
 
 
typedef VEC(histogram_value,heap) *histogram_values;
typedef VEC(histogram_value,heap) *histogram_values;
 
 
/* Hooks registration.  */
/* Hooks registration.  */
extern void tree_register_value_prof_hooks (void);
extern void tree_register_value_prof_hooks (void);
 
 
/* IR-independent entry points.  */
/* IR-independent entry points.  */
extern void find_values_to_profile (histogram_values *);
extern void find_values_to_profile (histogram_values *);
extern bool value_profile_transformations (void);
extern bool value_profile_transformations (void);


/* External declarations for edge-based profiling.  */
/* External declarations for edge-based profiling.  */
struct profile_hooks {
struct profile_hooks {
 
 
  /* Insert code to initialize edge profiler.  */
  /* Insert code to initialize edge profiler.  */
  void (*init_edge_profiler) (void);
  void (*init_edge_profiler) (void);
 
 
  /* Insert code to increment an edge count.  */
  /* Insert code to increment an edge count.  */
  void (*gen_edge_profiler) (int, edge);
  void (*gen_edge_profiler) (int, edge);
 
 
  /* Insert code to increment the interval histogram counter.  */
  /* Insert code to increment the interval histogram counter.  */
  void (*gen_interval_profiler) (histogram_value, unsigned, unsigned);
  void (*gen_interval_profiler) (histogram_value, unsigned, unsigned);
 
 
  /* Insert code to increment the power of two histogram counter.  */
  /* Insert code to increment the power of two histogram counter.  */
  void (*gen_pow2_profiler) (histogram_value, unsigned, unsigned);
  void (*gen_pow2_profiler) (histogram_value, unsigned, unsigned);
 
 
  /* Insert code to find the most common value.  */
  /* Insert code to find the most common value.  */
  void (*gen_one_value_profiler) (histogram_value, unsigned, unsigned);
  void (*gen_one_value_profiler) (histogram_value, unsigned, unsigned);
 
 
  /* Insert code to find the most common value of a difference between two
  /* Insert code to find the most common value of a difference between two
     evaluations of an expression.  */
     evaluations of an expression.  */
  void (*gen_const_delta_profiler) (histogram_value, unsigned, unsigned);
  void (*gen_const_delta_profiler) (histogram_value, unsigned, unsigned);
};
};
 
 
/* In profile.c.  */
/* In profile.c.  */
extern void init_branch_prob (void);
extern void init_branch_prob (void);
extern void branch_prob (void);
extern void branch_prob (void);
extern void end_branch_prob (void);
extern void end_branch_prob (void);
extern void tree_register_profile_hooks (void);
extern void tree_register_profile_hooks (void);
 
 
/* In tree-profile.c.  */
/* In tree-profile.c.  */
extern struct profile_hooks tree_profile_hooks;
extern struct profile_hooks tree_profile_hooks;
 
 
#endif  /* GCC_VALUE_PROF_H */
#endif  /* GCC_VALUE_PROF_H */
 
 
 
 

powered by: WebSVN 2.1.0

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