OSDN Git Service

2008-02-05 H.J. Lu <hongjiu.lu@intel.com>
[pf3gnuchains/gcc-fork.git] / gcc / params.h
1 /* params.h - Run-time parameters.
2    Copyright (C) 2001, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
3    Written by Mark Mitchell <mark@codesourcery.com>.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3.  If not see
19 <http://www.gnu.org/licenses/>.  */
20
21 /* This module provides a means for setting integral parameters
22    dynamically.  Instead of encoding magic numbers in various places,
23    use this module to organize all the magic numbers in a single
24    place.  The values of the parameters can be set on the
25    command-line, thereby providing a way to control the amount of
26    effort spent on particular optimization passes, or otherwise tune
27    the behavior of the compiler.
28
29    Since their values can be set on the command-line, these parameters
30    should not be used for non-dynamic memory allocation.  */
31
32 #ifndef GCC_PARAMS_H
33 #define GCC_PARAMS_H
34
35 /* No parameter shall have this value.  */
36
37 #define INVALID_PARAM_VAL (-1)
38
39 /* The information associated with each parameter.  */
40
41 typedef struct param_info
42 {
43   /* The name used with the `--param <name>=<value>' switch to set this
44      value.  */
45   const char *const option;
46   /* The associated value.  */
47   int value;
48
49   /* True if the parameter was explicitly set.  */
50   bool set;
51
52   /* Minimum acceptable value.  */
53   int min_value;
54   
55   /* Maximum acceptable value, if greater than minimum  */
56   int max_value;
57   
58   /* A short description of the option.  */
59   const char *const help;
60 } param_info;
61
62 /* An array containing the compiler parameters and their current
63    values.  */
64
65 extern param_info *compiler_params;
66
67 /* Add the N PARAMS to the current list of compiler parameters.  */
68
69 extern void add_params (const param_info params[], size_t n);
70
71 /* Set the VALUE associated with the parameter given by NAME.  */
72
73 extern void set_param_value (const char *name, int value);
74
75 \f
76 /* The parameters in use by language-independent code.  */
77
78 typedef enum compiler_param
79 {
80 #define DEFPARAM(enumerator, option, msgid, default, min, max) \
81   enumerator,
82 #include "params.def"
83 #undef DEFPARAM
84   LAST_PARAM
85 } compiler_param;
86
87 /* The value of the parameter given by ENUM.  */
88 #define PARAM_VALUE(ENUM) \
89   (compiler_params[(int) ENUM].value)
90
91 /* True if the value of the parameter was explicitly changed.  */
92 #define PARAM_SET_P(ENUM) \
93   (compiler_params[(int) ENUM].set)
94
95 /* Macros for the various parameters.  */
96 #define SALIAS_MAX_IMPLICIT_FIELDS \
97   PARAM_VALUE (PARAM_SALIAS_MAX_IMPLICIT_FIELDS)
98 #define SALIAS_MAX_ARRAY_ELEMENTS \
99   PARAM_VALUE (PARAM_SALIAS_MAX_ARRAY_ELEMENTS)
100 #define SRA_MAX_STRUCTURE_SIZE \
101   PARAM_VALUE (PARAM_SRA_MAX_STRUCTURE_SIZE)
102 #define SRA_MAX_STRUCTURE_COUNT \
103   PARAM_VALUE (PARAM_SRA_MAX_STRUCTURE_COUNT)
104 #define SRA_FIELD_STRUCTURE_RATIO \
105   PARAM_VALUE (PARAM_SRA_FIELD_STRUCTURE_RATIO)
106 #define STRUCT_REORG_COLD_STRUCT_RATIO \
107   PARAM_VALUE (PARAM_STRUCT_REORG_COLD_STRUCT_RATIO)
108 #define MAX_INLINE_INSNS_SINGLE \
109   PARAM_VALUE (PARAM_MAX_INLINE_INSNS_SINGLE)
110 #define MAX_INLINE_INSNS \
111   PARAM_VALUE (PARAM_MAX_INLINE_INSNS)
112 #define MAX_INLINE_SLOPE \
113   PARAM_VALUE (PARAM_MAX_INLINE_SLOPE)
114 #define MIN_INLINE_INSNS \
115   PARAM_VALUE (PARAM_MIN_INLINE_INSNS)
116 #define MAX_INLINE_INSNS_AUTO \
117   PARAM_VALUE (PARAM_MAX_INLINE_INSNS_AUTO)
118 #define MAX_VARIABLE_EXPANSIONS \
119   PARAM_VALUE (PARAM_MAX_VARIABLE_EXPANSIONS)
120 #define MIN_VECT_LOOP_BOUND \
121   PARAM_VALUE (PARAM_MIN_VECT_LOOP_BOUND)
122 #define MAX_DELAY_SLOT_INSN_SEARCH \
123   PARAM_VALUE (PARAM_MAX_DELAY_SLOT_INSN_SEARCH)
124 #define MAX_DELAY_SLOT_LIVE_SEARCH \
125   PARAM_VALUE (PARAM_MAX_DELAY_SLOT_LIVE_SEARCH)
126 #define MAX_PENDING_LIST_LENGTH \
127   PARAM_VALUE (PARAM_MAX_PENDING_LIST_LENGTH)
128 #define MAX_GCSE_MEMORY \
129   ((size_t) PARAM_VALUE (PARAM_MAX_GCSE_MEMORY))
130 #define MAX_GCSE_PASSES \
131   PARAM_VALUE (PARAM_MAX_GCSE_PASSES)
132 #define GCSE_AFTER_RELOAD_PARTIAL_FRACTION \
133   PARAM_VALUE (PARAM_GCSE_AFTER_RELOAD_PARTIAL_FRACTION)
134 #define GCSE_AFTER_RELOAD_CRITICAL_FRACTION \
135   PARAM_VALUE (PARAM_GCSE_AFTER_RELOAD_CRITICAL_FRACTION)
136 #define MAX_UNROLLED_INSNS \
137   PARAM_VALUE (PARAM_MAX_UNROLLED_INSNS)
138 #define MAX_SMS_LOOP_NUMBER \
139   PARAM_VALUE (PARAM_MAX_SMS_LOOP_NUMBER)
140 #define SMS_MAX_II_FACTOR \
141   PARAM_VALUE (PARAM_SMS_MAX_II_FACTOR)
142 #define SMS_DFA_HISTORY \
143   PARAM_VALUE (PARAM_SMS_DFA_HISTORY)
144 #define SMS_LOOP_AVERAGE_COUNT_THRESHOLD \
145   PARAM_VALUE (PARAM_SMS_LOOP_AVERAGE_COUNT_THRESHOLD)
146 #define MAX_ALIASED_VOPS \
147   PARAM_VALUE (PARAM_MAX_ALIASED_VOPS)
148 #define AVG_ALIASED_VOPS \
149   PARAM_VALUE (PARAM_AVG_ALIASED_VOPS)
150 #define INTEGER_SHARE_LIMIT \
151   PARAM_VALUE (PARAM_INTEGER_SHARE_LIMIT)
152 #define MAX_LAST_VALUE_RTL \
153   PARAM_VALUE (PARAM_MAX_LAST_VALUE_RTL)
154 #define MIN_VIRTUAL_MAPPINGS \
155   PARAM_VALUE (PARAM_MIN_VIRTUAL_MAPPINGS)
156 #define VIRTUAL_MAPPINGS_TO_SYMS_RATIO \
157   PARAM_VALUE (PARAM_VIRTUAL_MAPPINGS_TO_SYMS_RATIO)
158 #define MAX_FIELDS_FOR_FIELD_SENSITIVE \
159   ((size_t) PARAM_VALUE (PARAM_MAX_FIELDS_FOR_FIELD_SENSITIVE))
160 #define MAX_SCHED_READY_INSNS \
161   PARAM_VALUE (PARAM_MAX_SCHED_READY_INSNS)
162 #define PREFETCH_LATENCY \
163   PARAM_VALUE (PARAM_PREFETCH_LATENCY)
164 #define SIMULTANEOUS_PREFETCHES \
165   PARAM_VALUE (PARAM_SIMULTANEOUS_PREFETCHES)
166 #define L1_CACHE_SIZE \
167   PARAM_VALUE (PARAM_L1_CACHE_SIZE)
168 #define L1_CACHE_LINE_SIZE \
169   PARAM_VALUE (PARAM_L1_CACHE_LINE_SIZE)
170 #define L2_CACHE_SIZE \
171   PARAM_VALUE (PARAM_L2_CACHE_SIZE)
172 #define USE_CANONICAL_TYPES \
173   PARAM_VALUE (PARAM_USE_CANONICAL_TYPES)
174 #endif /* ! GCC_PARAMS_H */