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