]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/params.def
Makefile.in (passes.o, [...]): Add dependencies.
[thirdparty/gcc.git] / gcc / params.def
CommitLineData
c6d9a88c 1/* params.def - Run-time parameters.
e42febca 2 Copyright (C) 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
c6d9a88c
MM
3 Written by Mark Mitchell <mark@codesourcery.com>.
4
1322177d 5This file is part of GCC.
c6d9a88c 6
1322177d
LB
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 2, or (at your option) any later
10version.
c6d9a88c 11
1322177d
LB
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
c6d9a88c
MM
16
17You should have received a copy of the GNU General Public License
1322177d 18along with GCC; see the file COPYING. If not, write to the Free
366ccddb
KC
19Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
2002110-1301, USA.
c6d9a88c
MM
21
22*/
23
24/* This file contains definitions for language-independent
1eb68dca 25 parameters. The DEFPARAM macro takes 6 arguments:
c6d9a88c 26
0443f602 27 - The enumeral corresponding to this parameter.
c6d9a88c
MM
28
29 - The name that can be used to set this parameter using the
30 command-line option `--param <name>=<value>'.
31
32 - A help string explaining how the parameter is used.
33
1c4c47db
JO
34 - A default value for the parameter.
35
9e7705cb 36 - The minimum acceptable value for the parameter.
1eb68dca 37
9e7705cb 38 - The maximum acceptable value for the parameter (if greater than
1eb68dca
KZ
39 the minimum).
40
1c4c47db 41 Be sure to add an entry to invoke.texi summarizing the parameter. */
c6d9a88c 42
31617ef1
DB
43/* The maximum number of fields in a variable with only implicit uses
44 for which structure aliasing will consider trying to track each
45 field. The default is 5. */
46DEFPARAM (PARAM_SALIAS_MAX_IMPLICIT_FIELDS,
47 "salias-max-implicit-fields",
48 "The maximum number of fields in a structure variable without direct structure accesses that GCC will attempt to track separately",
49 5, 0, 0)
a916f21d
RG
50
51/* The maximum number of array elements structure aliasing will decompose
52 an array for. The default is 4. */
53DEFPARAM (PARAM_SALIAS_MAX_ARRAY_ELEMENTS,
54 "salias-max-array-elements",
55 "The maximum number of elements in an array for wich we track its elements separately",
56 4, 0, 0)
57
61b58001
BE
58/* The maximum structure size at which the scalar replacement of
59 aggregates (SRA) pass will perform block copies. The default
60 value, 0, implies that GCC will select the most appropriate size
61 itself. */
62DEFPARAM (PARAM_SRA_MAX_STRUCTURE_SIZE,
63 "sra-max-structure-size",
460f84ed
RH
64 "The maximum structure size (in bytes) for which GCC will "
65 "use by-element copies",
66 0, 0, 0)
67
68/* The maximum number of structure fields which the SRA pass will
69 instantiate to avoid block copies. The default value, 0, implies
70 that GCC will select the appropriate value itself. */
71DEFPARAM (PARAM_SRA_MAX_STRUCTURE_COUNT,
72 "sra-max-structure-count",
73 "The maximum number of structure fields for which GCC will "
74 "use by-element copies",
e06c0feb 75 0, 0, 0)
61b58001
BE
76
77/* The ratio between instantiated fields and the complete structure
78 size. We say that if the ratio of the number of bytes in
79 instantiated fields to the number of bytes in the complete
460f84ed
RH
80 structure exceeds this parameter, or if the number of instantiated
81 fields to the total number of fields exceeds this parameter, then
82 block copies are not used. The default is 75%. */
61b58001
BE
83DEFPARAM (PARAM_SRA_FIELD_STRUCTURE_RATIO,
84 "sra-field-structure-ratio",
e06c0feb
NS
85 "The threshold ratio between instantiated fields and the total structure size",
86 75, 0, 100)
61b58001 87
a6227154
KG
88/* The single function inlining limit. This is the maximum size
89 of a function counted in internal gcc instructions (not in
90 real machine instructions) that is eligible for inlining
91 by the tree inliner.
e5c4f28a 92 The default value is 450.
a6227154 93 Only functions marked inline (or methods defined in the class
e5c4f28a 94 definition for C++) are affected by this.
a6227154
KG
95 There are more restrictions to inlining: If inlined functions
96 call other functions, the already inlined instructions are
97 counted and once the recursive inline limit (see
98 "max-inline-insns" parameter) is exceeded, the acceptable size
99 gets decreased. */
100DEFPARAM (PARAM_MAX_INLINE_INSNS_SINGLE,
101 "max-inline-insns-single",
bc522472 102 "The maximum number of instructions in a single function eligible for inlining",
e5c4f28a 103 450, 0, 0)
a6227154 104
bc522472
KG
105/* The single function inlining limit for functions that are
106 inlined by virtue of -finline-functions (-O3).
107 This limit should be chosen to be below or equal to the limit
108 that is applied to functions marked inlined (or defined in the
109 class declaration in C++) given by the "max-inline-insns-single"
110 parameter.
e5c4f28a 111 The default value is 90. */
bc522472
KG
112DEFPARAM (PARAM_MAX_INLINE_INSNS_AUTO,
113 "max-inline-insns-auto",
114 "The maximum number of instructions when automatically inlining",
e5c4f28a 115 90, 0, 0)
bc522472 116
6de9cd9a
DN
117DEFPARAM (PARAM_MAX_INLINE_INSNS_RECURSIVE,
118 "max-inline-insns-recursive",
119 "The maximum number of instructions inline function can grow to via recursive inlining",
e5c4f28a 120 450, 0, 0)
6de9cd9a
DN
121
122DEFPARAM (PARAM_MAX_INLINE_INSNS_RECURSIVE_AUTO,
123 "max-inline-insns-recursive-auto",
124 "The maximum number of instructions non-inline function can grow to via recursive inlining",
e5c4f28a 125 450, 0, 0)
6de9cd9a
DN
126
127DEFPARAM (PARAM_MAX_INLINE_RECURSIVE_DEPTH,
128 "max-inline-recursive-depth",
129 "The maximum depth of recursive inlining for inline functions",
e06c0feb 130 8, 0, 0)
6de9cd9a
DN
131
132DEFPARAM (PARAM_MAX_INLINE_RECURSIVE_DEPTH_AUTO,
133 "max-inline-recursive-depth-auto",
134 "The maximum depth of recursive inlining for non-inline functions",
e06c0feb 135 8, 0, 0)
6de9cd9a 136
c5a4444c
JH
137DEFPARAM (PARAM_MIN_INLINE_RECURSIVE_PROBABILITY,
138 "min-inline-recursive-probability",
139 "Inline recursively only when the probability of call being executed exceeds the parameter",
140 10, 0, 0)
141
f37a4f14
RE
142/* Limit the number of expansions created by the variable expansion
143 optimization to avoid register pressure. */
144DEFPARAM (PARAM_MAX_VARIABLE_EXPANSIONS,
145 "max-variable-expansions-in-unroller",
5fa534e3 146 "If -fvariable-expansion-in-unroller is used, the maximum number of times that an individual variable will be expanded during loop unrolling",
e06c0feb 147 1, 0, 0)
f37a4f14 148
acdc40df
DN
149/* Limit loop autovectorization to loops with large enough iteration count. */
150DEFPARAM (PARAM_MIN_VECT_LOOP_BOUND,
151 "min-vect-loop-bound",
152 "If -ftree-vectorize is used, the minimal loop bound of a loop to be considered for vectorization",
153 0, 0, 0)
154
0443f602
JO
155/* The maximum number of instructions to consider when looking for an
156 instruction to fill a delay slot. If more than this arbitrary
157 number of instructions is searched, the time savings from filling
158 the delay slot will be minimal so stop searching. Increasing
159 values mean more aggressive optimization, making the compile time
160 increase with probably small improvement in executable run time. */
161DEFPARAM (PARAM_MAX_DELAY_SLOT_INSN_SEARCH,
162 "max-delay-slot-insn-search",
163 "The maximum number of instructions to consider to fill a delay slot",
e06c0feb 164 100, 0, 0)
0443f602 165
d5d063d7
JO
166/* When trying to fill delay slots, the maximum number of instructions
167 to consider when searching for a block with valid live register
168 information. Increasing this arbitrarily chosen value means more
169 aggressive optimization, increasing the compile time. This
170 parameter should be removed when the delay slot code is rewritten
171 to maintain the control-flow graph. */
172DEFPARAM(PARAM_MAX_DELAY_SLOT_LIVE_SEARCH,
173 "max-delay-slot-live-search",
174 "The maximum number of instructions to consider to find accurate live register information",
e06c0feb 175 333, 0, 0)
d5d063d7 176
4a121cc3 177/* This parameter limits the number of branch elements that the
ff7cc307 178 scheduler will track anti-dependencies through without resetting
4a121cc3 179 the tracking mechanism. Large functions with few calls or barriers
ff7cc307 180 can generate lists containing many 1000's of dependencies. Generally
4a121cc3
AM
181 the compiler either uses all available memory, or runs for far too long. */
182DEFPARAM(PARAM_MAX_PENDING_LIST_LENGTH,
183 "max-pending-list-length",
184 "The maximum length of scheduling's pending operations list",
e06c0feb 185 32, 0, 0)
4a121cc3 186
b58b1157
JH
187DEFPARAM(PARAM_LARGE_FUNCTION_INSNS,
188 "large-function-insns",
189 "The size of function body to be considered large",
e5c4f28a 190 2700, 0, 0)
b58b1157
JH
191DEFPARAM(PARAM_LARGE_FUNCTION_GROWTH,
192 "large-function-growth",
2cc98056 193 "Maximal growth due to inlining of large function (in percent)",
e06c0feb 194 100, 0, 0)
b4f32d07
JH
195DEFPARAM(PARAM_LARGE_UNIT_INSNS,
196 "large-unit-insns",
197 "The size of translation unit to be considered large",
198 10000, 0, 0)
b58b1157
JH
199DEFPARAM(PARAM_INLINE_UNIT_GROWTH,
200 "inline-unit-growth",
2cc98056 201 "how much can given compilation unit grow because of the inlining (in percent)",
b7c27d51 202 60, 0, 0)
e5c4f28a
RG
203DEFPARAM(PARAM_INLINE_CALL_COST,
204 "inline-call-cost",
2e0ea515 205 "expense of call operation relative to ordinary arithmetic operations",
e5c4f28a 206 16, 0, 0)
ff28a94d
JH
207DEFPARAM(PARAM_LARGE_STACK_FRAME,
208 "large-stack-frame",
209 "The size of stack frame to be considered large",
210 256, 0, 0)
211DEFPARAM(PARAM_STACK_FRAME_GROWTH,
212 "large-stack-frame-growth",
213 "Maximal stack frame growth due to inlining (in percent)",
214 1000, 0, 0)
b58b1157 215
f1fa37ff
MM
216/* The GCSE optimization will be disabled if it would require
217 significantly more memory than this value. */
218DEFPARAM(PARAM_MAX_GCSE_MEMORY,
219 "max-gcse-memory",
220 "The maximum amount of memory to be allocated by GCSE",
e06c0feb 221 50 * 1024 * 1024, 0, 0)
991b6592 222/* The number of repetitions of copy/const prop and PRE to run. */
740f35a0
DB
223DEFPARAM(PARAM_MAX_GCSE_PASSES,
224 "max-gcse-passes",
225 "The maximum number of passes to make when doing GCSE",
e06c0feb 226 1, 1, 0)
f9957958
MH
227/* This is the threshold ratio when to perform partial redundancy
228 elimination after reload. We perform partial redundancy elimination
229 when the following holds:
230 (Redundant load execution count)
231 ------------------------------- >= GCSE_AFTER_RELOAD_PARTIAL_FRACTION
232 (Added loads execution count) */
233DEFPARAM(PARAM_GCSE_AFTER_RELOAD_PARTIAL_FRACTION,
234 "gcse-after-reload-partial-fraction",
c85ce869 235 "The threshold ratio for performing partial redundancy elimination after reload",
e06c0feb 236 3, 0, 0)
f9957958
MH
237/* This is the threshold ratio of the critical edges execution count compared to
238 the redundant loads execution count that permits performing the load
239 redundancy elimination in gcse after reload. */
240DEFPARAM(PARAM_GCSE_AFTER_RELOAD_CRITICAL_FRACTION,
241 "gcse-after-reload-critical-fraction",
c85ce869 242 "The threshold ratio of critical edges execution count that permit performing redundancy elimination after reload",
e06c0feb 243 10, 0, 0)
03e9dbc9 244/* This parameter limits the number of insns in a loop that will be unrolled,
701ad47e
JH
245 and by how much the loop is unrolled.
246
247 This limit should be at most half of the peeling limits: loop unroller
248 decides to not unroll loops that iterate fewer than 2*number of allowed
a1105617 249 unrollings and thus we would have loops that are neither peeled or unrolled
701ad47e 250 otherwise. */
03e9dbc9
MM
251DEFPARAM(PARAM_MAX_UNROLLED_INSNS,
252 "max-unrolled-insns",
253 "The maximum number of instructions to consider to unroll in a loop",
e06c0feb 254 200, 0, 0)
b17d5d7c
ZD
255/* This parameter limits how many times the loop is unrolled depending
256 on number of insns really executed in each iteration. */
257DEFPARAM(PARAM_MAX_AVERAGE_UNROLLED_INSNS,
258 "max-average-unrolled-insns",
259 "The maximum number of instructions to consider to unroll in a loop on average",
e06c0feb 260 80, 0, 0)
b17d5d7c
ZD
261/* The maximum number of unrollings of a single loop. */
262DEFPARAM(PARAM_MAX_UNROLL_TIMES,
263 "max-unroll-times",
264 "The maximum number of unrollings of a single loop",
e06c0feb 265 8, 0, 0)
b17d5d7c
ZD
266/* The maximum number of insns of a peeled loop. */
267DEFPARAM(PARAM_MAX_PEELED_INSNS,
268 "max-peeled-insns",
269 "The maximum number of insns of a peeled loop",
e06c0feb 270 400, 0, 0)
b17d5d7c
ZD
271/* The maximum number of peelings of a single loop. */
272DEFPARAM(PARAM_MAX_PEEL_TIMES,
273 "max-peel-times",
274 "The maximum number of peelings of a single loop",
e06c0feb 275 16, 0, 0)
b17d5d7c
ZD
276/* The maximum number of insns of a peeled loop. */
277DEFPARAM(PARAM_MAX_COMPLETELY_PEELED_INSNS,
278 "max-completely-peeled-insns",
279 "The maximum number of insns of a completely peeled loop",
e06c0feb 280 400, 0, 0)
b17d5d7c
ZD
281/* The maximum number of peelings of a single loop that is peeled completely. */
282DEFPARAM(PARAM_MAX_COMPLETELY_PEEL_TIMES,
283 "max-completely-peel-times",
284 "The maximum number of peelings of a single loop that is peeled completely",
e06c0feb 285 16, 0, 0)
b17d5d7c
ZD
286/* The maximum number of insns of a peeled loop that rolls only once. */
287DEFPARAM(PARAM_MAX_ONCE_PEELED_INSNS,
288 "max-once-peeled-insns",
289 "The maximum number of insns of a peeled loop that rolls only once",
e06c0feb 290 400, 0, 0)
194734e9 291
617b465c
ZD
292/* The maximum number of insns of an unswitched loop. */
293DEFPARAM(PARAM_MAX_UNSWITCH_INSNS,
294 "max-unswitch-insns",
295 "The maximum number of insns of an unswitched loop",
e06c0feb 296 50, 0, 0)
617b465c
ZD
297/* The maximum level of recursion in unswitch_single_loop. */
298DEFPARAM(PARAM_MAX_UNSWITCH_LEVEL,
299 "max-unswitch-level",
300 "The maximum number of unswitchings in a single loop",
e06c0feb 301 3, 0, 0)
617b465c 302
e9eb809d
ZD
303/* The maximum number of iterations of a loop the brute force algorithm
304 for analysis of # of iterations of the loop tries to evaluate. */
305DEFPARAM(PARAM_MAX_ITERATIONS_TO_TRACK,
306 "max-iterations-to-track",
e06c0feb
NS
307 "Bound on the number of iterations the brute force # of iterations analysis algorithm evaluates",
308 1000, 0, 0)
45b9a14b
BS
309/* A cutoff to avoid costly computations of the number of iterations in
310 the doloop transformation. */
311DEFPARAM(PARAM_MAX_ITERATIONS_COMPUTATION_COST,
312 "max-iterations-computation-cost",
313 "Bound on the cost of an expression to compute the number of iterations",
314 10, 0, 0)
e9eb809d 315
e5626198
AZ
316DEFPARAM(PARAM_MAX_SMS_LOOP_NUMBER,
317 "max-sms-loop-number",
e06c0feb
NS
318 "Maximum number of loops to perform swing modulo scheduling on (mainly for debugging)",
319 -1, -1, -1)
320
e5626198
AZ
321/* This parameter is used to tune SMS MAX II calculations. */
322DEFPARAM(PARAM_SMS_MAX_II_FACTOR,
323 "sms-max-ii-factor",
e06c0feb
NS
324 "A factor for tuning the upper bound that swing modulo scheduler uses for scheduling a loop",
325 100, 0, 0)
e5626198
AZ
326DEFPARAM(PARAM_SMS_DFA_HISTORY,
327 "sms-dfa-history",
5fa534e3 328 "The number of cycles the swing modulo scheduler considers when checking conflicts using DFA",
e06c0feb 329 0, 0, 0)
e5626198
AZ
330DEFPARAM(PARAM_SMS_LOOP_AVERAGE_COUNT_THRESHOLD,
331 "sms-loop-average-count-threshold",
e06c0feb
NS
332 "A threshold on the average loop count considered by the swing modulo scheduler",
333 0, 0, 0)
e5626198 334
194734e9
JH
335DEFPARAM(HOT_BB_COUNT_FRACTION,
336 "hot-bb-count-fraction",
e06c0feb
NS
337 "Select fraction of the maximal count of repetitions of basic block in program given basic block needs to have to be considered hot",
338 10000, 0, 0)
194734e9
JH
339DEFPARAM(HOT_BB_FREQUENCY_FRACTION,
340 "hot-bb-frequency-fraction",
e06c0feb
NS
341 "Select fraction of the maximal frequency of executions of basic block in function given basic block needs to have to be considered hot",
342 1000, 0, 0)
95b9a3a5
JH
343
344/* For guessed profiles, the loops having unknown number of iterations
345 are predicted to iterate relatively few (10) times at average.
346 For functions containing one loop with large known number of iterations
347 and other loops having unbounded loops we would end up predicting all
c83eecad 348 the other loops cold that is not usually the case. So we need to artificially
95b9a3a5
JH
349 flatten the profile.
350
6416ae7f 351 We need to cut the maximal predicted iterations to large enough iterations
95b9a3a5
JH
352 so the loop appears important, but safely within HOT_BB_COUNT_FRACTION
353 range. */
354
355DEFPARAM(PARAM_MAX_PREDICTED_ITERATIONS,
356 "max-predicted-iterations",
357 "The maximum number of loop iterations we predict statically",
358 100, 0, 0)
5c856b23
JH
359DEFPARAM(TRACER_DYNAMIC_COVERAGE_FEEDBACK,
360 "tracer-dynamic-coverage-feedback",
e06c0feb
NS
361 "The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is available",
362 95, 0, 100)
5c856b23
JH
363DEFPARAM(TRACER_DYNAMIC_COVERAGE,
364 "tracer-dynamic-coverage",
e06c0feb
NS
365 "The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is not available",
366 75, 0, 100)
5c856b23
JH
367DEFPARAM(TRACER_MAX_CODE_GROWTH,
368 "tracer-max-code-growth",
2cc98056 369 "Maximal code growth caused by tail duplication (in percent)",
e06c0feb 370 100, 0, 0)
5c856b23
JH
371DEFPARAM(TRACER_MIN_BRANCH_RATIO,
372 "tracer-min-branch-ratio",
e06c0feb
NS
373 "Stop reverse growth if the reverse probability of best edge is less than this threshold (in percent)",
374 10, 0, 100)
5c856b23
JH
375DEFPARAM(TRACER_MIN_BRANCH_PROBABILITY_FEEDBACK,
376 "tracer-min-branch-probability-feedback",
e06c0feb
NS
377 "Stop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is available",
378 80, 0, 100)
5c856b23
JH
379DEFPARAM(TRACER_MIN_BRANCH_PROBABILITY,
380 "tracer-min-branch-probability",
e06c0feb
NS
381 "Stop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is not available",
382 50, 0, 100)
3788cc17 383
5f24e0dc
RH
384/* The maximum number of incoming edges to consider for crossjumping. */
385DEFPARAM(PARAM_MAX_CROSSJUMP_EDGES,
386 "max-crossjump-edges",
387 "The maximum number of incoming edges to consider for crossjumping",
e06c0feb 388 100, 0, 0)
5f24e0dc 389
12183e0f
PH
390/* The minimum number of matching instructions to consider for crossjumping. */
391DEFPARAM(PARAM_MIN_CROSSJUMP_INSNS,
392 "min-crossjump-insns",
393 "The minimum number of matching instructions to consider for crossjumping",
e06c0feb 394 5, 0, 0)
12183e0f 395
f935b9e0
DE
396/* The maximum number expansion factor when copying basic blocks. */
397DEFPARAM(PARAM_MAX_GROW_COPY_BB_INSNS,
398 "max-grow-copy-bb-insns",
399 "The maximum expansion factor when copying basic blocks",
400 8, 0, 0)
401
bbcb0c05
SB
402/* The maximum number of insns to duplicate when unfactoring computed gotos. */
403DEFPARAM(PARAM_MAX_GOTO_DUPLICATION_INSNS,
404 "max-goto-duplication-insns",
405 "The maximum number of insns to duplicate when unfactoring computed gotos",
406 8, 0, 0)
407
9bf8cfbf
ZD
408/* The maximum length of path considered in cse. */
409DEFPARAM(PARAM_MAX_CSE_PATH_LENGTH,
410 "max-cse-path-length",
2cc98056 411 "The maximum length of path considered in cse",
e06c0feb 412 10, 0, 0)
95b9a3a5 413DEFPARAM(PARAM_MAX_CSE_INSNS,
921b02cd 414 "max-cse-insns",
95b9a3a5
JH
415 "The maximum instructions CSE process before flushing",
416 1000, 0, 0)
9bf8cfbf 417
a7e5372d
ZD
418/* The cost of expression in loop invariant motion that is considered
419 expensive. */
420DEFPARAM(PARAM_LIM_EXPENSIVE,
421 "lim-expensive",
422 "The minimum cost of an expensive expression in the loop invariant motion",
e06c0feb 423 20, 0, 0)
a7e5372d 424
8b11a64c
ZD
425/* Bound on number of candidates for induction variables below that
426 all candidates are considered for each use in induction variable
427 optimizations. */
428
429DEFPARAM(PARAM_IV_CONSIDER_ALL_CANDIDATES_BOUND,
430 "iv-consider-all-candidates-bound",
431 "Bound on number of candidates below that all candidates are considered in iv optimizations",
e06c0feb 432 30, 0, 0)
8b11a64c
ZD
433
434/* The induction variable optimizations give up on loops that contain more
435 induction variable uses. */
436
437DEFPARAM(PARAM_IV_MAX_CONSIDERED_USES,
438 "iv-max-considered-uses",
439 "Bound on number of iv uses in loop optimized in iv optimizations",
e06c0feb 440 250, 0, 0)
8b11a64c 441
36f5ada1
ZD
442/* If there are at most this number of ivs in the set, try removing unnecessary
443 ivs from the set always. */
444
445DEFPARAM(PARAM_IV_ALWAYS_PRUNE_CAND_SET_BOUND,
446 "iv-always-prune-cand-set-bound",
447 "If number of candidates in the set is smaller, we always try to remove unused ivs during its optimization",
448 10, 0, 0)
449
2412d35c
SP
450DEFPARAM(PARAM_SCEV_MAX_EXPR_SIZE,
451 "scev-max-expr-size",
452 "Bound on size of expressions used in the scalar evolutions analyzer",
453 20, 0, 0)
454
c12cc930
KB
455DEFPARAM(PARAM_VECT_MAX_VERSION_CHECKS,
456 "vect-max-version-checks",
457 "Bound on number of runtime checks inserted by the vectorizer's loop versioning",
458 6, 0, 0)
459
c65ecebc
JH
460DEFPARAM(PARAM_MAX_CSELIB_MEMORY_LOCATIONS,
461 "max-cselib-memory-locations",
462 "The maximum memory locations recorded by cselib",
e06c0feb 463 500, 0, 0)
95b9a3a5
JH
464DEFPARAM(PARAM_MAX_FLOW_MEMORY_LOCATIONS,
465 "max-flow-memory-locations",
466 "The maximum memory locations recorded by flow",
467 100, 0, 0)
c65ecebc 468
3788cc17
ZW
469#ifdef ENABLE_GC_ALWAYS_COLLECT
470# define GGC_MIN_EXPAND_DEFAULT 0
737c38d1 471# define GGC_MIN_HEAPSIZE_DEFAULT 0
3788cc17
ZW
472#else
473# define GGC_MIN_EXPAND_DEFAULT 30
737c38d1 474# define GGC_MIN_HEAPSIZE_DEFAULT 4096
3788cc17
ZW
475#endif
476
477DEFPARAM(GGC_MIN_EXPAND,
478 "ggc-min-expand",
e06c0feb
NS
479 "Minimum heap expansion to trigger garbage collection, as a percentage of the total size of the heap",
480 GGC_MIN_EXPAND_DEFAULT, 0, 0)
3788cc17 481
3788cc17
ZW
482DEFPARAM(GGC_MIN_HEAPSIZE,
483 "ggc-min-heapsize",
2cc98056 484 "Minimum heap size before we start collecting garbage, in kilobytes",
e06c0feb 485 GGC_MIN_HEAPSIZE_DEFAULT, 0, 0)
737c38d1
GK
486
487#undef GGC_MIN_EXPAND_DEFAULT
488#undef GGC_MIN_HEAPSIZE_DEFAULT
3788cc17 489
0bcf8261
JH
490DEFPARAM(PARAM_MAX_RELOAD_SEARCH_INSNS,
491 "max-reload-search-insns",
492 "The maximum number of instructions to search backward when looking for equivalent reload",
e06c0feb 493 100, 0, 0)
0bcf8261 494
6de9cd9a
DN
495DEFPARAM(PARAM_MAX_ALIASED_VOPS,
496 "max-aliased-vops",
38635499
DN
497 "The maximum number of virtual operators per statement allowed to represent aliases before triggering alias grouping",
498 10, 0, 0)
6de9cd9a 499
f72c6b56
DE
500DEFPARAM(PARAM_MAX_SCHED_REGION_BLOCKS,
501 "max-sched-region-blocks",
502 "The maximum number of blocks in a region to be considered for interblock scheduling",
e06c0feb 503 10, 0, 0)
f72c6b56
DE
504
505DEFPARAM(PARAM_MAX_SCHED_REGION_INSNS,
506 "max-sched-region-insns",
507 "The maximum number of insns in a region to be considered for interblock scheduling",
e06c0feb 508 100, 0, 0)
f72c6b56 509
6f48c21a
PS
510DEFPARAM(PARAM_MIN_SPEC_PROB,
511 "min-spec-prob",
512 "The minimum probability of reaching a source block for interblock speculative scheduling",
513 40, 0, 0)
514
d08eefb9
MK
515DEFPARAM(PARAM_MAX_SCHED_EXTEND_REGIONS_ITERS,
516 "max-sched-extend-regions-iters",
517 "The maximum number of iterations through CFG to extend regions",
bb83aa4b 518 0, 0, 0)
d08eefb9 519
496d7bb0
MK
520DEFPARAM(PARAM_MAX_SCHED_INSN_CONFLICT_DELAY,
521 "max-sched-insn-conflict-delay",
522 "The maximum conflict delay for an insn to be considered for speculative motion",
523 3, 1, 10)
524
525DEFPARAM(PARAM_SCHED_SPEC_PROB_CUTOFF,
526 "sched-spec-prob-cutoff",
527 "The minimal probability of speculation success (in percents), so that speculative insn will be scheduled.",
528 40, 0, 100)
529
49c3b9a8
JJ
530DEFPARAM(PARAM_MAX_LAST_VALUE_RTL,
531 "max-last-value-rtl",
532 "The maximum number of RTL nodes that can be recorded as combiner's last value",
533 10000, 0, 0)
534
89b0433e
NS
535/* INTEGER_CST nodes are shared for values [{-1,0} .. N) for
536 {signed,unsigned} integral types. This determines N.
537 Experimentation shows 256 to be a good value. */
538DEFPARAM (PARAM_INTEGER_SHARE_LIMIT,
539 "integer-share-limit",
540 "The upper bound for sharing integer constants",
e06c0feb 541 256, 2, 2)
89b0433e 542
84d65814
DN
543/* Incremental SSA updates for virtual operands may be very slow if
544 there is a large number of mappings to process. In those cases, it
545 is faster to rewrite the virtual symbols from scratch as if they
546 had been recently introduced. This heuristic cannot be applied to
547 SSA mappings for real SSA names, only symbols kept in FUD chains.
548
549 PARAM_MIN_VIRTUAL_MAPPINGS specifies the minimum number of virtual
550 mappings that should be registered to trigger the heuristic.
551
552 PARAM_VIRTUAL_MAPPINGS_TO_SYMS_RATIO specifies the ratio between
553 mappings and symbols. If the number of virtual mappings is
554 PARAM_VIRTUAL_MAPPINGS_TO_SYMS_RATIO bigger than the number of
555 virtual symbols to be updated, then the updater switches to a full
556 update for those symbols. */
557DEFPARAM (PARAM_MIN_VIRTUAL_MAPPINGS,
558 "min-virtual-mappings",
559 "Minimum number of virtual mappings to consider switching to full virtual renames",
560 100, 0, 0)
561
562DEFPARAM (PARAM_VIRTUAL_MAPPINGS_TO_SYMS_RATIO,
563 "virtual-mappings-ratio",
564 "Ratio between virtual mappings and virtual symbols to do full virtual renames",
565 3, 0, 0)
566
7d69de61
RH
567DEFPARAM (PARAM_SSP_BUFFER_SIZE,
568 "ssp-buffer-size",
569 "The lower bound for a buffer to be considered for stack smashing protection",
570 8, 1, 0)
571
43f31be5
JL
572/* When we thread through a block we have to make copies of the
573 statements within the block. Clearly for large blocks the code
574 duplication is bad.
575
576 PARAM_MAX_JUMP_THREAD_DUPLICATION_STMTS specifies the maximum number
577 of statements and PHI nodes allowed in a block which is going to
578 be duplicated for thread jumping purposes.
579
580 Some simple analysis showed that more than 99% of the jump
581 threading opportunities are for blocks with less than 15
582 statements. So we can get the benefits of jump threading
583 without excessive code bloat for pathological cases with the
584 throttle set at 15 statements. */
585DEFPARAM (PARAM_MAX_JUMP_THREAD_DUPLICATION_STMTS,
586 "max-jump-thread-duplication-stmts",
587 "Maximum number of statements allowed in a block that needs to be duplicated when threading jumps",
588 15, 0, 0)
98035a75
DB
589
590/* This is the maximum number of fields a variable may have before the pointer analysis machinery
591 will stop trying to treat it in a field-sensitive manner.
592 There are programs out there with thousands of fields per structure, and handling them
593 field-sensitively is not worth the cost. */
594DEFPARAM (PARAM_MAX_FIELDS_FOR_FIELD_SENSITIVE,
595 "max-fields-for-field-sensitive",
596 "Maximum number of fields in a structure before pointer analysis treats the structure as a single variable",
597 100, 0, 0)
6f8dd94b
EB
598
599DEFPARAM(PARAM_MAX_SCHED_READY_INSNS,
600 "max-sched-ready-insns",
601 "The maximum number of instructions ready to be issued to be considered by the scheduler during the first scheduling pass",
602 100, 0, 0)
603
47eb5b32
ZD
604/* Prefetching and cache-optimizations related parameters. Default values are
605 usually set by machine description. */
606
607/* The number of insns executed before prefetch is completed. */
608
609DEFPARAM (PARAM_PREFETCH_LATENCY,
610 "prefetch-latency",
611 "The number of insns executed before prefetch is completed",
612 200, 0, 0)
613
614/* The number of prefetches that can run at the same time. */
615
616DEFPARAM (PARAM_SIMULTANEOUS_PREFETCHES,
617 "simultaneous-prefetches",
618 "The number of prefetches that can run at the same time",
619 3, 0, 0)
620
621/* The size of L1 cache in number of cache lines. */
622
623DEFPARAM (PARAM_L1_CACHE_SIZE,
624 "l1-cache-size",
625 "The size of L1 cache",
626 1024, 0, 0)
627
628/* The size of L1 cache line in bytes. */
629
630DEFPARAM (PARAM_L1_CACHE_LINE_SIZE,
631 "l1-cache-line-size",
632 "The size of L1 cache line",
633 32, 0, 0)
634
06d40de8
DG
635#ifdef ENABLE_CHECKING
636# define GCC_CANONICAL_TYPES_DEFAULT 1
637#else
638# define GCC_CANONICAL_TYPES_DEFAULT 0
639#endif
640
641/* Whether we should verify that the canonical types in the system are
642 consistent with the "structural" typing. */
643
644DEFPARAM (PARAM_VERIFY_CANONICAL_TYPES,
645 "verify-canonical-types",
646 "Whether to verify canonical types",
647 GCC_CANONICAL_TYPES_DEFAULT, 0, 1)
c6d9a88c
MM
648/*
649Local variables:
650mode:c
651End: */