]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/params.def
configure.ac (cygwin noconfigdirs): Remove libgcj.
[thirdparty/gcc.git] / gcc / params.def
CommitLineData
c6d9a88c 1/* params.def - Run-time parameters.
b1fb9f56 2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
3d8864c0 3 Free Software Foundation, Inc.
c6d9a88c
MM
4 Written by Mark Mitchell <mark@codesourcery.com>.
5
1322177d 6This file is part of GCC.
c6d9a88c 7
1322177d
LB
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
9dcd6f09 10Software Foundation; either version 3, or (at your option) any later
1322177d 11version.
c6d9a88c 12
1322177d
LB
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
c6d9a88c
MM
17
18You should have received a copy of the GNU General Public License
9dcd6f09
NC
19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
c6d9a88c
MM
21
22/* This file contains definitions for language-independent
1eb68dca 23 parameters. The DEFPARAM macro takes 6 arguments:
c6d9a88c 24
0443f602 25 - The enumeral corresponding to this parameter.
c6d9a88c
MM
26
27 - The name that can be used to set this parameter using the
28 command-line option `--param <name>=<value>'.
29
30 - A help string explaining how the parameter is used.
31
1c4c47db
JO
32 - A default value for the parameter.
33
9e7705cb 34 - The minimum acceptable value for the parameter.
1eb68dca 35
9e7705cb 36 - The maximum acceptable value for the parameter (if greater than
1eb68dca
KZ
37 the minimum).
38
1c4c47db 39 Be sure to add an entry to invoke.texi summarizing the parameter. */
c6d9a88c 40
61b58001
BE
41/* The maximum structure size at which the scalar replacement of
42 aggregates (SRA) pass will perform block copies. The default
43 value, 0, implies that GCC will select the most appropriate size
44 itself. */
45DEFPARAM (PARAM_SRA_MAX_STRUCTURE_SIZE,
46 "sra-max-structure-size",
460f84ed
RH
47 "The maximum structure size (in bytes) for which GCC will "
48 "use by-element copies",
49 0, 0, 0)
50
51/* The maximum number of structure fields which the SRA pass will
52 instantiate to avoid block copies. The default value, 0, implies
53 that GCC will select the appropriate value itself. */
54DEFPARAM (PARAM_SRA_MAX_STRUCTURE_COUNT,
55 "sra-max-structure-count",
56 "The maximum number of structure fields for which GCC will "
57 "use by-element copies",
e06c0feb 58 0, 0, 0)
61b58001
BE
59
60/* The ratio between instantiated fields and the complete structure
61 size. We say that if the ratio of the number of bytes in
62 instantiated fields to the number of bytes in the complete
460f84ed
RH
63 structure exceeds this parameter, or if the number of instantiated
64 fields to the total number of fields exceeds this parameter, then
65 block copies are not used. The default is 75%. */
61b58001
BE
66DEFPARAM (PARAM_SRA_FIELD_STRUCTURE_RATIO,
67 "sra-field-structure-ratio",
e06c0feb
NS
68 "The threshold ratio between instantiated fields and the total structure size",
69 75, 0, 100)
61b58001 70
ea429753 71/* The threshold ratio between current and hottest structure counts.
e1dc98b2 72 We say that if the ratio of the current structure count,
ea429753 73 calculated by profiling, to the hottest structure count
e1dc98b2
OG
74 in the program is less than this parameter, then structure
75 reorganization is not applied. The default is 10%. */
76DEFPARAM (PARAM_STRUCT_REORG_COLD_STRUCT_RATIO,
77 "struct-reorg-cold-struct-ratio",
ea429753 78 "The threshold ratio between current and hottest structure counts",
e1dc98b2
OG
79 10, 0, 100)
80
3a4fd356
JH
81/* When branch is predicted to be taken with probability lower than this
82 threshold (in percent), then it is considered well predictable. */
83DEFPARAM (PARAM_PREDICTABLE_BRANCH_OUTCOME,
84 "predictable-branch-outcome",
85 "Maximal esitmated outcome of branch considered predictable",
86 2, 0, 50)
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",
1d405d7b 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",
1d405d7b 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
796bda22
JH
142/* Limit of iterations of early inliner. This basically bounds number of
143 nested indirect calls early inliner can resolve. Deeper chains are still
144 handled by late inlining. */
145DEFPARAM (PARAM_EARLY_INLINER_MAX_ITERATIONS,
146 "max-early-inliner-iterations",
147 "The maximum number of nested indirect inlining performed by early inliner",
148 10, 0, 0)
149
f37a4f14
RE
150/* Limit the number of expansions created by the variable expansion
151 optimization to avoid register pressure. */
152DEFPARAM (PARAM_MAX_VARIABLE_EXPANSIONS,
153 "max-variable-expansions-in-unroller",
5fa534e3 154 "If -fvariable-expansion-in-unroller is used, the maximum number of times that an individual variable will be expanded during loop unrolling",
e06c0feb 155 1, 0, 0)
f37a4f14 156
acdc40df
DN
157/* Limit loop autovectorization to loops with large enough iteration count. */
158DEFPARAM (PARAM_MIN_VECT_LOOP_BOUND,
159 "min-vect-loop-bound",
160 "If -ftree-vectorize is used, the minimal loop bound of a loop to be considered for vectorization",
8d888559 161 1, 1, 0)
acdc40df 162
0443f602
JO
163/* The maximum number of instructions to consider when looking for an
164 instruction to fill a delay slot. If more than this arbitrary
165 number of instructions is searched, the time savings from filling
166 the delay slot will be minimal so stop searching. Increasing
167 values mean more aggressive optimization, making the compile time
168 increase with probably small improvement in executable run time. */
169DEFPARAM (PARAM_MAX_DELAY_SLOT_INSN_SEARCH,
170 "max-delay-slot-insn-search",
171 "The maximum number of instructions to consider to fill a delay slot",
e06c0feb 172 100, 0, 0)
0443f602 173
d5d063d7
JO
174/* When trying to fill delay slots, the maximum number of instructions
175 to consider when searching for a block with valid live register
176 information. Increasing this arbitrarily chosen value means more
177 aggressive optimization, increasing the compile time. This
178 parameter should be removed when the delay slot code is rewritten
179 to maintain the control-flow graph. */
180DEFPARAM(PARAM_MAX_DELAY_SLOT_LIVE_SEARCH,
181 "max-delay-slot-live-search",
182 "The maximum number of instructions to consider to find accurate live register information",
e06c0feb 183 333, 0, 0)
d5d063d7 184
4a121cc3 185/* This parameter limits the number of branch elements that the
ff7cc307 186 scheduler will track anti-dependencies through without resetting
4a121cc3 187 the tracking mechanism. Large functions with few calls or barriers
ff7cc307 188 can generate lists containing many 1000's of dependencies. Generally
4a121cc3
AM
189 the compiler either uses all available memory, or runs for far too long. */
190DEFPARAM(PARAM_MAX_PENDING_LIST_LENGTH,
191 "max-pending-list-length",
192 "The maximum length of scheduling's pending operations list",
e06c0feb 193 32, 0, 0)
4a121cc3 194
b58b1157
JH
195DEFPARAM(PARAM_LARGE_FUNCTION_INSNS,
196 "large-function-insns",
197 "The size of function body to be considered large",
e5c4f28a 198 2700, 0, 0)
b58b1157
JH
199DEFPARAM(PARAM_LARGE_FUNCTION_GROWTH,
200 "large-function-growth",
2cc98056 201 "Maximal growth due to inlining of large function (in percent)",
e06c0feb 202 100, 0, 0)
b4f32d07
JH
203DEFPARAM(PARAM_LARGE_UNIT_INSNS,
204 "large-unit-insns",
205 "The size of translation unit to be considered large",
206 10000, 0, 0)
b58b1157
JH
207DEFPARAM(PARAM_INLINE_UNIT_GROWTH,
208 "inline-unit-growth",
2cc98056 209 "how much can given compilation unit grow because of the inlining (in percent)",
d562c668 210 30, 0, 0)
5e45130d
JH
211DEFPARAM(PARAM_IPCP_UNIT_GROWTH,
212 "ipcp-unit-growth",
213 "how much can given compilation unit grow because of the interprocedural constant propagation (in percent)",
214 10, 0, 0)
1d405d7b
JH
215DEFPARAM(PARAM_INLINE_CALL_COST,
216 "inline-call-cost",
217 "expense of call operation relative to ordinary arithmetic operations",
f2879759 218 12, 0, 0)
ff28a94d
JH
219DEFPARAM(PARAM_LARGE_STACK_FRAME,
220 "large-stack-frame",
221 "The size of stack frame to be considered large",
222 256, 0, 0)
223DEFPARAM(PARAM_STACK_FRAME_GROWTH,
224 "large-stack-frame-growth",
225 "Maximal stack frame growth due to inlining (in percent)",
226 1000, 0, 0)
b58b1157 227
f1fa37ff
MM
228/* The GCSE optimization will be disabled if it would require
229 significantly more memory than this value. */
230DEFPARAM(PARAM_MAX_GCSE_MEMORY,
231 "max-gcse-memory",
232 "The maximum amount of memory to be allocated by GCSE",
e06c0feb 233 50 * 1024 * 1024, 0, 0)
3906a4a1 234
f9957958
MH
235/* This is the threshold ratio when to perform partial redundancy
236 elimination after reload. We perform partial redundancy elimination
237 when the following holds:
238 (Redundant load execution count)
239 ------------------------------- >= GCSE_AFTER_RELOAD_PARTIAL_FRACTION
240 (Added loads execution count) */
241DEFPARAM(PARAM_GCSE_AFTER_RELOAD_PARTIAL_FRACTION,
242 "gcse-after-reload-partial-fraction",
c85ce869 243 "The threshold ratio for performing partial redundancy elimination after reload",
e06c0feb 244 3, 0, 0)
f9957958
MH
245/* This is the threshold ratio of the critical edges execution count compared to
246 the redundant loads execution count that permits performing the load
247 redundancy elimination in gcse after reload. */
248DEFPARAM(PARAM_GCSE_AFTER_RELOAD_CRITICAL_FRACTION,
249 "gcse-after-reload-critical-fraction",
c85ce869 250 "The threshold ratio of critical edges execution count that permit performing redundancy elimination after reload",
e06c0feb 251 10, 0, 0)
03e9dbc9 252/* This parameter limits the number of insns in a loop that will be unrolled,
701ad47e
JH
253 and by how much the loop is unrolled.
254
255 This limit should be at most half of the peeling limits: loop unroller
256 decides to not unroll loops that iterate fewer than 2*number of allowed
a1105617 257 unrollings and thus we would have loops that are neither peeled or unrolled
701ad47e 258 otherwise. */
03e9dbc9
MM
259DEFPARAM(PARAM_MAX_UNROLLED_INSNS,
260 "max-unrolled-insns",
261 "The maximum number of instructions to consider to unroll in a loop",
e06c0feb 262 200, 0, 0)
b17d5d7c
ZD
263/* This parameter limits how many times the loop is unrolled depending
264 on number of insns really executed in each iteration. */
265DEFPARAM(PARAM_MAX_AVERAGE_UNROLLED_INSNS,
266 "max-average-unrolled-insns",
267 "The maximum number of instructions to consider to unroll in a loop on average",
e06c0feb 268 80, 0, 0)
b17d5d7c
ZD
269/* The maximum number of unrollings of a single loop. */
270DEFPARAM(PARAM_MAX_UNROLL_TIMES,
271 "max-unroll-times",
272 "The maximum number of unrollings of a single loop",
e06c0feb 273 8, 0, 0)
b17d5d7c
ZD
274/* The maximum number of insns of a peeled loop. */
275DEFPARAM(PARAM_MAX_PEELED_INSNS,
276 "max-peeled-insns",
277 "The maximum number of insns of a peeled loop",
e06c0feb 278 400, 0, 0)
b17d5d7c
ZD
279/* The maximum number of peelings of a single loop. */
280DEFPARAM(PARAM_MAX_PEEL_TIMES,
281 "max-peel-times",
282 "The maximum number of peelings of a single loop",
e06c0feb 283 16, 0, 0)
b17d5d7c
ZD
284/* The maximum number of insns of a peeled loop. */
285DEFPARAM(PARAM_MAX_COMPLETELY_PEELED_INSNS,
286 "max-completely-peeled-insns",
287 "The maximum number of insns of a completely peeled loop",
e06c0feb 288 400, 0, 0)
b17d5d7c
ZD
289/* The maximum number of peelings of a single loop that is peeled completely. */
290DEFPARAM(PARAM_MAX_COMPLETELY_PEEL_TIMES,
291 "max-completely-peel-times",
292 "The maximum number of peelings of a single loop that is peeled completely",
e06c0feb 293 16, 0, 0)
b17d5d7c
ZD
294/* The maximum number of insns of a peeled loop that rolls only once. */
295DEFPARAM(PARAM_MAX_ONCE_PEELED_INSNS,
296 "max-once-peeled-insns",
297 "The maximum number of insns of a peeled loop that rolls only once",
e06c0feb 298 400, 0, 0)
194734e9 299
617b465c
ZD
300/* The maximum number of insns of an unswitched loop. */
301DEFPARAM(PARAM_MAX_UNSWITCH_INSNS,
302 "max-unswitch-insns",
303 "The maximum number of insns of an unswitched loop",
e06c0feb 304 50, 0, 0)
617b465c
ZD
305/* The maximum level of recursion in unswitch_single_loop. */
306DEFPARAM(PARAM_MAX_UNSWITCH_LEVEL,
307 "max-unswitch-level",
308 "The maximum number of unswitchings in a single loop",
e06c0feb 309 3, 0, 0)
617b465c 310
e9eb809d
ZD
311/* The maximum number of iterations of a loop the brute force algorithm
312 for analysis of # of iterations of the loop tries to evaluate. */
313DEFPARAM(PARAM_MAX_ITERATIONS_TO_TRACK,
314 "max-iterations-to-track",
e06c0feb
NS
315 "Bound on the number of iterations the brute force # of iterations analysis algorithm evaluates",
316 1000, 0, 0)
45b9a14b
BS
317/* A cutoff to avoid costly computations of the number of iterations in
318 the doloop transformation. */
319DEFPARAM(PARAM_MAX_ITERATIONS_COMPUTATION_COST,
320 "max-iterations-computation-cost",
321 "Bound on the cost of an expression to compute the number of iterations",
322 10, 0, 0)
e9eb809d 323
e5626198
AZ
324/* This parameter is used to tune SMS MAX II calculations. */
325DEFPARAM(PARAM_SMS_MAX_II_FACTOR,
326 "sms-max-ii-factor",
e06c0feb
NS
327 "A factor for tuning the upper bound that swing modulo scheduler uses for scheduling a loop",
328 100, 0, 0)
e5626198
AZ
329DEFPARAM(PARAM_SMS_DFA_HISTORY,
330 "sms-dfa-history",
5fa534e3 331 "The number of cycles the swing modulo scheduler considers when checking conflicts using DFA",
e06c0feb 332 0, 0, 0)
e5626198
AZ
333DEFPARAM(PARAM_SMS_LOOP_AVERAGE_COUNT_THRESHOLD,
334 "sms-loop-average-count-threshold",
e06c0feb
NS
335 "A threshold on the average loop count considered by the swing modulo scheduler",
336 0, 0, 0)
e5626198 337
194734e9
JH
338DEFPARAM(HOT_BB_COUNT_FRACTION,
339 "hot-bb-count-fraction",
e06c0feb
NS
340 "Select fraction of the maximal count of repetitions of basic block in program given basic block needs to have to be considered hot",
341 10000, 0, 0)
194734e9
JH
342DEFPARAM(HOT_BB_FREQUENCY_FRACTION,
343 "hot-bb-frequency-fraction",
e06c0feb
NS
344 "Select fraction of the maximal frequency of executions of basic block in function given basic block needs to have to be considered hot",
345 1000, 0, 0)
95b9a3a5 346
edbed3d3
JH
347DEFPARAM (PARAM_ALIGN_THRESHOLD,
348 "align-threshold",
349 "Select fraction of the maximal frequency of executions of basic block in function given basic block get alignment",
350 100, 0, 0)
351
352DEFPARAM (PARAM_ALIGN_LOOP_ITERATIONS,
353 "align-loop-iterations",
354 "Loops iterating at least selected number of iterations will get loop alignement.",
355 4, 0, 0)
356
95b9a3a5
JH
357/* For guessed profiles, the loops having unknown number of iterations
358 are predicted to iterate relatively few (10) times at average.
359 For functions containing one loop with large known number of iterations
360 and other loops having unbounded loops we would end up predicting all
c83eecad 361 the other loops cold that is not usually the case. So we need to artificially
95b9a3a5
JH
362 flatten the profile.
363
6416ae7f 364 We need to cut the maximal predicted iterations to large enough iterations
95b9a3a5
JH
365 so the loop appears important, but safely within HOT_BB_COUNT_FRACTION
366 range. */
367
368DEFPARAM(PARAM_MAX_PREDICTED_ITERATIONS,
369 "max-predicted-iterations",
370 "The maximum number of loop iterations we predict statically",
371 100, 0, 0)
5c856b23
JH
372DEFPARAM(TRACER_DYNAMIC_COVERAGE_FEEDBACK,
373 "tracer-dynamic-coverage-feedback",
e06c0feb
NS
374 "The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is available",
375 95, 0, 100)
5c856b23
JH
376DEFPARAM(TRACER_DYNAMIC_COVERAGE,
377 "tracer-dynamic-coverage",
e06c0feb
NS
378 "The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is not available",
379 75, 0, 100)
5c856b23
JH
380DEFPARAM(TRACER_MAX_CODE_GROWTH,
381 "tracer-max-code-growth",
2cc98056 382 "Maximal code growth caused by tail duplication (in percent)",
e06c0feb 383 100, 0, 0)
5c856b23
JH
384DEFPARAM(TRACER_MIN_BRANCH_RATIO,
385 "tracer-min-branch-ratio",
e06c0feb
NS
386 "Stop reverse growth if the reverse probability of best edge is less than this threshold (in percent)",
387 10, 0, 100)
5c856b23
JH
388DEFPARAM(TRACER_MIN_BRANCH_PROBABILITY_FEEDBACK,
389 "tracer-min-branch-probability-feedback",
e06c0feb
NS
390 "Stop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is available",
391 80, 0, 100)
5c856b23
JH
392DEFPARAM(TRACER_MIN_BRANCH_PROBABILITY,
393 "tracer-min-branch-probability",
e06c0feb
NS
394 "Stop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is not available",
395 50, 0, 100)
3788cc17 396
5f24e0dc
RH
397/* The maximum number of incoming edges to consider for crossjumping. */
398DEFPARAM(PARAM_MAX_CROSSJUMP_EDGES,
399 "max-crossjump-edges",
400 "The maximum number of incoming edges to consider for crossjumping",
e06c0feb 401 100, 0, 0)
5f24e0dc 402
12183e0f
PH
403/* The minimum number of matching instructions to consider for crossjumping. */
404DEFPARAM(PARAM_MIN_CROSSJUMP_INSNS,
405 "min-crossjump-insns",
406 "The minimum number of matching instructions to consider for crossjumping",
e06c0feb 407 5, 0, 0)
12183e0f 408
f935b9e0
DE
409/* The maximum number expansion factor when copying basic blocks. */
410DEFPARAM(PARAM_MAX_GROW_COPY_BB_INSNS,
411 "max-grow-copy-bb-insns",
412 "The maximum expansion factor when copying basic blocks",
413 8, 0, 0)
414
bbcb0c05
SB
415/* The maximum number of insns to duplicate when unfactoring computed gotos. */
416DEFPARAM(PARAM_MAX_GOTO_DUPLICATION_INSNS,
417 "max-goto-duplication-insns",
418 "The maximum number of insns to duplicate when unfactoring computed gotos",
419 8, 0, 0)
420
9bf8cfbf
ZD
421/* The maximum length of path considered in cse. */
422DEFPARAM(PARAM_MAX_CSE_PATH_LENGTH,
423 "max-cse-path-length",
2cc98056 424 "The maximum length of path considered in cse",
e06c0feb 425 10, 0, 0)
95b9a3a5 426DEFPARAM(PARAM_MAX_CSE_INSNS,
921b02cd 427 "max-cse-insns",
95b9a3a5
JH
428 "The maximum instructions CSE process before flushing",
429 1000, 0, 0)
9bf8cfbf 430
a7e5372d
ZD
431/* The cost of expression in loop invariant motion that is considered
432 expensive. */
433DEFPARAM(PARAM_LIM_EXPENSIVE,
434 "lim-expensive",
435 "The minimum cost of an expensive expression in the loop invariant motion",
e06c0feb 436 20, 0, 0)
a7e5372d 437
8b11a64c
ZD
438/* Bound on number of candidates for induction variables below that
439 all candidates are considered for each use in induction variable
440 optimizations. */
441
442DEFPARAM(PARAM_IV_CONSIDER_ALL_CANDIDATES_BOUND,
443 "iv-consider-all-candidates-bound",
444 "Bound on number of candidates below that all candidates are considered in iv optimizations",
e06c0feb 445 30, 0, 0)
8b11a64c
ZD
446
447/* The induction variable optimizations give up on loops that contain more
448 induction variable uses. */
449
450DEFPARAM(PARAM_IV_MAX_CONSIDERED_USES,
451 "iv-max-considered-uses",
452 "Bound on number of iv uses in loop optimized in iv optimizations",
e06c0feb 453 250, 0, 0)
8b11a64c 454
36f5ada1
ZD
455/* If there are at most this number of ivs in the set, try removing unnecessary
456 ivs from the set always. */
457
458DEFPARAM(PARAM_IV_ALWAYS_PRUNE_CAND_SET_BOUND,
459 "iv-always-prune-cand-set-bound",
460 "If number of candidates in the set is smaller, we always try to remove unused ivs during its optimization",
461 10, 0, 0)
462
2412d35c
SP
463DEFPARAM(PARAM_SCEV_MAX_EXPR_SIZE,
464 "scev-max-expr-size",
465 "Bound on size of expressions used in the scalar evolutions analyzer",
466 20, 0, 0)
467
3d8864c0
SP
468DEFPARAM(PARAM_OMEGA_MAX_VARS,
469 "omega-max-vars",
470 "Bound on the number of variables in Omega constraint systems",
471 128, 0, 0)
472
473DEFPARAM(PARAM_OMEGA_MAX_GEQS,
474 "omega-max-geqs",
475 "Bound on the number of inequalities in Omega constraint systems",
476 256, 0, 0)
477
478DEFPARAM(PARAM_OMEGA_MAX_EQS,
479 "omega-max-eqs",
480 "Bound on the number of equalities in Omega constraint systems",
481 128, 0, 0)
482
483DEFPARAM(PARAM_OMEGA_MAX_WILD_CARDS,
484 "omega-max-wild-cards",
485 "Bound on the number of wild cards in Omega constraint systems",
486 18, 0, 0)
487
488DEFPARAM(PARAM_OMEGA_HASH_TABLE_SIZE,
489 "omega-hash-table-size",
490 "Bound on the size of the hash table in Omega constraint systems",
491 550, 0, 0)
492
493DEFPARAM(PARAM_OMEGA_MAX_KEYS,
494 "omega-max-keys",
495 "Bound on the number of keys in Omega constraint systems",
496 500, 0, 0)
497
498DEFPARAM(PARAM_OMEGA_ELIMINATE_REDUNDANT_CONSTRAINTS,
499 "omega-eliminate-redundant-constraints",
500 "When set to 1, use expensive methods to eliminate all redundant constraints",
501 0, 0, 1)
502
bc1edb77
VK
503DEFPARAM(PARAM_VECT_MAX_VERSION_FOR_ALIGNMENT_CHECKS,
504 "vect-max-version-for-alignment-checks",
505 "Bound on number of runtime checks inserted by the vectorizer's loop versioning for alignment check",
c12cc930
KB
506 6, 0, 0)
507
bc1edb77
VK
508DEFPARAM(PARAM_VECT_MAX_VERSION_FOR_ALIAS_CHECKS,
509 "vect-max-version-for-alias-checks",
510 "Bound on number of runtime checks inserted by the vectorizer's loop versioning for alias check",
511 10, 0, 0)
512
c65ecebc
JH
513DEFPARAM(PARAM_MAX_CSELIB_MEMORY_LOCATIONS,
514 "max-cselib-memory-locations",
515 "The maximum memory locations recorded by cselib",
e06c0feb 516 500, 0, 0)
c65ecebc 517
3788cc17
ZW
518#ifdef ENABLE_GC_ALWAYS_COLLECT
519# define GGC_MIN_EXPAND_DEFAULT 0
737c38d1 520# define GGC_MIN_HEAPSIZE_DEFAULT 0
3788cc17
ZW
521#else
522# define GGC_MIN_EXPAND_DEFAULT 30
737c38d1 523# define GGC_MIN_HEAPSIZE_DEFAULT 4096
3788cc17
ZW
524#endif
525
526DEFPARAM(GGC_MIN_EXPAND,
527 "ggc-min-expand",
e06c0feb
NS
528 "Minimum heap expansion to trigger garbage collection, as a percentage of the total size of the heap",
529 GGC_MIN_EXPAND_DEFAULT, 0, 0)
3788cc17 530
3788cc17
ZW
531DEFPARAM(GGC_MIN_HEAPSIZE,
532 "ggc-min-heapsize",
2cc98056 533 "Minimum heap size before we start collecting garbage, in kilobytes",
e06c0feb 534 GGC_MIN_HEAPSIZE_DEFAULT, 0, 0)
737c38d1
GK
535
536#undef GGC_MIN_EXPAND_DEFAULT
537#undef GGC_MIN_HEAPSIZE_DEFAULT
3788cc17 538
0bcf8261
JH
539DEFPARAM(PARAM_MAX_RELOAD_SEARCH_INSNS,
540 "max-reload-search-insns",
541 "The maximum number of instructions to search backward when looking for equivalent reload",
e06c0feb 542 100, 0, 0)
0bcf8261 543
f72c6b56
DE
544DEFPARAM(PARAM_MAX_SCHED_REGION_BLOCKS,
545 "max-sched-region-blocks",
546 "The maximum number of blocks in a region to be considered for interblock scheduling",
e06c0feb 547 10, 0, 0)
f72c6b56
DE
548
549DEFPARAM(PARAM_MAX_SCHED_REGION_INSNS,
550 "max-sched-region-insns",
551 "The maximum number of insns in a region to be considered for interblock scheduling",
e06c0feb 552 100, 0, 0)
f72c6b56 553
e855c69d
AB
554DEFPARAM(PARAM_MAX_PIPELINE_REGION_BLOCKS,
555 "max-pipeline-region-blocks",
556 "The maximum number of blocks in a region to be considered for interblock scheduling",
557 15, 0, 0)
558
559DEFPARAM(PARAM_MAX_PIPELINE_REGION_INSNS,
560 "max-pipeline-region-insns",
561 "The maximum number of insns in a region to be considered for interblock scheduling",
562 200, 0, 0)
563
6f48c21a
PS
564DEFPARAM(PARAM_MIN_SPEC_PROB,
565 "min-spec-prob",
566 "The minimum probability of reaching a source block for interblock speculative scheduling",
567 40, 0, 0)
568
d08eefb9
MK
569DEFPARAM(PARAM_MAX_SCHED_EXTEND_REGIONS_ITERS,
570 "max-sched-extend-regions-iters",
571 "The maximum number of iterations through CFG to extend regions",
bb83aa4b 572 0, 0, 0)
d08eefb9 573
496d7bb0
MK
574DEFPARAM(PARAM_MAX_SCHED_INSN_CONFLICT_DELAY,
575 "max-sched-insn-conflict-delay",
576 "The maximum conflict delay for an insn to be considered for speculative motion",
577 3, 1, 10)
578
579DEFPARAM(PARAM_SCHED_SPEC_PROB_CUTOFF,
580 "sched-spec-prob-cutoff",
581 "The minimal probability of speculation success (in percents), so that speculative insn will be scheduled.",
582 40, 0, 100)
583
e855c69d
AB
584DEFPARAM(PARAM_SELSCHED_MAX_LOOKAHEAD,
585 "selsched-max-lookahead",
586 "The maximum size of the lookahead window of selective scheduling",
587 50, 0, 0)
588
589DEFPARAM(PARAM_SELSCHED_MAX_SCHED_TIMES,
590 "selsched-max-sched-times",
591 "Maximum number of times that an insn could be scheduled",
592 2, 0, 0)
593
594DEFPARAM(PARAM_SELSCHED_INSNS_TO_RENAME,
595 "selsched-insns-to-rename",
596 "Maximum number of instructions in the ready list that are considered eligible for renaming",
597 2, 0, 0)
598
599DEFPARAM (PARAM_SCHED_MEM_TRUE_DEP_COST,
600 "sched-mem-true-dep-cost",
601 "Minimal distance between possibly conflicting store and load",
602 1, 0, 0)
603
49c3b9a8
JJ
604DEFPARAM(PARAM_MAX_LAST_VALUE_RTL,
605 "max-last-value-rtl",
606 "The maximum number of RTL nodes that can be recorded as combiner's last value",
607 10000, 0, 0)
608
89b0433e
NS
609/* INTEGER_CST nodes are shared for values [{-1,0} .. N) for
610 {signed,unsigned} integral types. This determines N.
611 Experimentation shows 256 to be a good value. */
612DEFPARAM (PARAM_INTEGER_SHARE_LIMIT,
613 "integer-share-limit",
614 "The upper bound for sharing integer constants",
e06c0feb 615 256, 2, 2)
89b0433e 616
84d65814
DN
617/* Incremental SSA updates for virtual operands may be very slow if
618 there is a large number of mappings to process. In those cases, it
619 is faster to rewrite the virtual symbols from scratch as if they
620 had been recently introduced. This heuristic cannot be applied to
621 SSA mappings for real SSA names, only symbols kept in FUD chains.
622
623 PARAM_MIN_VIRTUAL_MAPPINGS specifies the minimum number of virtual
624 mappings that should be registered to trigger the heuristic.
625
626 PARAM_VIRTUAL_MAPPINGS_TO_SYMS_RATIO specifies the ratio between
627 mappings and symbols. If the number of virtual mappings is
628 PARAM_VIRTUAL_MAPPINGS_TO_SYMS_RATIO bigger than the number of
629 virtual symbols to be updated, then the updater switches to a full
630 update for those symbols. */
631DEFPARAM (PARAM_MIN_VIRTUAL_MAPPINGS,
632 "min-virtual-mappings",
633 "Minimum number of virtual mappings to consider switching to full virtual renames",
634 100, 0, 0)
635
636DEFPARAM (PARAM_VIRTUAL_MAPPINGS_TO_SYMS_RATIO,
637 "virtual-mappings-ratio",
638 "Ratio between virtual mappings and virtual symbols to do full virtual renames",
639 3, 0, 0)
640
7d69de61
RH
641DEFPARAM (PARAM_SSP_BUFFER_SIZE,
642 "ssp-buffer-size",
643 "The lower bound for a buffer to be considered for stack smashing protection",
644 8, 1, 0)
645
43f31be5
JL
646/* When we thread through a block we have to make copies of the
647 statements within the block. Clearly for large blocks the code
648 duplication is bad.
649
650 PARAM_MAX_JUMP_THREAD_DUPLICATION_STMTS specifies the maximum number
651 of statements and PHI nodes allowed in a block which is going to
652 be duplicated for thread jumping purposes.
653
654 Some simple analysis showed that more than 99% of the jump
655 threading opportunities are for blocks with less than 15
656 statements. So we can get the benefits of jump threading
657 without excessive code bloat for pathological cases with the
658 throttle set at 15 statements. */
659DEFPARAM (PARAM_MAX_JUMP_THREAD_DUPLICATION_STMTS,
660 "max-jump-thread-duplication-stmts",
661 "Maximum number of statements allowed in a block that needs to be duplicated when threading jumps",
662 15, 0, 0)
98035a75
DB
663
664/* This is the maximum number of fields a variable may have before the pointer analysis machinery
665 will stop trying to treat it in a field-sensitive manner.
666 There are programs out there with thousands of fields per structure, and handling them
667 field-sensitively is not worth the cost. */
668DEFPARAM (PARAM_MAX_FIELDS_FOR_FIELD_SENSITIVE,
669 "max-fields-for-field-sensitive",
670 "Maximum number of fields in a structure before pointer analysis treats the structure as a single variable",
d9338cf0 671 0, 0, 0)
6f8dd94b
EB
672
673DEFPARAM(PARAM_MAX_SCHED_READY_INSNS,
674 "max-sched-ready-insns",
675 "The maximum number of instructions ready to be issued to be considered by the scheduler during the first scheduling pass",
676 100, 0, 0)
677
47eb5b32
ZD
678/* Prefetching and cache-optimizations related parameters. Default values are
679 usually set by machine description. */
680
681/* The number of insns executed before prefetch is completed. */
682
683DEFPARAM (PARAM_PREFETCH_LATENCY,
684 "prefetch-latency",
685 "The number of insns executed before prefetch is completed",
686 200, 0, 0)
687
688/* The number of prefetches that can run at the same time. */
689
690DEFPARAM (PARAM_SIMULTANEOUS_PREFETCHES,
691 "simultaneous-prefetches",
692 "The number of prefetches that can run at the same time",
693 3, 0, 0)
694
46cb0441 695/* The size of L1 cache in kB. */
47eb5b32
ZD
696
697DEFPARAM (PARAM_L1_CACHE_SIZE,
698 "l1-cache-size",
699 "The size of L1 cache",
46cb0441 700 64, 0, 0)
47eb5b32
ZD
701
702/* The size of L1 cache line in bytes. */
703
704DEFPARAM (PARAM_L1_CACHE_LINE_SIZE,
705 "l1-cache-line-size",
706 "The size of L1 cache line",
707 32, 0, 0)
708
46cb0441
ZD
709/* The size of L2 cache in kB. */
710
711DEFPARAM (PARAM_L2_CACHE_SIZE,
712 "l2-cache-size",
713 "The size of L2 cache",
714 512, 0, 0)
715
7313518b
DG
716/* Whether we should use canonical types rather than deep "structural"
717 type checking. Setting this value to 1 (the default) improves
718 compilation performance in the C++ and Objective-C++ front end;
719 this value should only be set to zero to work around bugs in the
720 canonical type system by disabling it. */
721
722DEFPARAM (PARAM_USE_CANONICAL_TYPES,
723 "use-canonical-types",
724 "Whether to use canonical types",
725 1, 0, 1)
f0ed4cfb
NC
726
727DEFPARAM (PARAM_MAX_PARTIAL_ANTIC_LENGTH,
728 "max-partial-antic-length",
729 "Maximum length of partial antic set when performing tree pre optimization",
730 100, 0, 0)
731
863d2a57
RG
732/* The following is used as a stop-gap limit for cases where really huge
733 SCCs blow up memory and compile-time use too much. If we hit this limit,
734 SCCVN and such FRE and PRE will be not done at all for the current
735 function. */
736
737DEFPARAM (PARAM_SCCVN_MAX_SCC_SIZE,
738 "sccvn-max-scc-size",
739 "Maximum size of a SCC before SCCVN stops processing a function",
740 10000, 10, 0)
741
058e97ec
VM
742DEFPARAM (PARAM_IRA_MAX_LOOPS_NUM,
743 "ira-max-loops-num",
744 "max loops number for regional RA",
30ea859e 745 100, 0, 0)
058e97ec 746
311aab06
VM
747DEFPARAM (PARAM_IRA_MAX_CONFLICT_TABLE_SIZE,
748 "ira-max-conflict-table-size",
749 "max size of conflict table in MB",
7cd06356 750 1000, 0, 0)
311aab06 751
b6e99746
MJ
752/* Switch initialization conversion will refuse to create arrays that are
753 bigger than this parameter times the number of switch branches. */
754
755DEFPARAM (PARAM_SWITCH_CONVERSION_BRANCH_RATIO,
756 "switch-conversion-max-branch-ratio",
757 "The maximum ratio between array size and switch branches for "
758 "a switch conversion to take place",
759 8, 1, 0)
760
b1fb9f56
JJ
761/* Avoid doing loop invariant motion on very large loops. */
762
763DEFPARAM (PARAM_LOOP_INVARIANT_MAX_BBS_IN_LOOP,
764 "loop-invariant-max-bbs-in-loop",
765 "max basic blocks number in loop for loop invariant motion",
766 10000, 0, 0)
767
c6d9a88c
MM
768/*
769Local variables:
770mode:c
f4b4a3e2
NC
771End:
772*/