]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/params.def
arm.c (cortexa9_extra_costs): New table.
[thirdparty/gcc.git] / gcc / params.def
CommitLineData
c6d9a88c 1/* params.def - Run-time parameters.
d1e082c2 2 Copyright (C) 2001-2013 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
9dcd6f09 9Software Foundation; either version 3, or (at your option) any later
1322177d 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
9dcd6f09
NC
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
c6d9a88c
MM
20
21/* This file contains definitions for language-independent
1eb68dca 22 parameters. The DEFPARAM macro takes 6 arguments:
c6d9a88c 23
0443f602 24 - The enumeral corresponding to this parameter.
c6d9a88c 25
b8698a0f 26 - The name that can be used to set this parameter using the
c6d9a88c
MM
27 command-line option `--param <name>=<value>'.
28
29 - A help string explaining how the parameter is used.
30
1c4c47db
JO
31 - A default value for the parameter.
32
9e7705cb 33 - The minimum acceptable value for the parameter.
1eb68dca 34
9e7705cb 35 - The maximum acceptable value for the parameter (if greater than
1eb68dca
KZ
36 the minimum).
37
1c4c47db 38 Be sure to add an entry to invoke.texi summarizing the parameter. */
c6d9a88c 39
3a4fd356
JH
40/* When branch is predicted to be taken with probability lower than this
41 threshold (in percent), then it is considered well predictable. */
42DEFPARAM (PARAM_PREDICTABLE_BRANCH_OUTCOME,
43 "predictable-branch-outcome",
67018619 44 "Maximal estimated outcome of branch considered predictable",
3a4fd356
JH
45 2, 0, 50)
46
42f7b0fa
JH
47DEFPARAM (PARAM_INLINE_MIN_SPEEDUP,
48 "inline-min-speedup",
49 "The minimal estimated speedup allowing inliner to ignore inline-insns-single and inline-isnsns-auto",
50 10, 0, 0)
51
a6227154
KG
52/* The single function inlining limit. This is the maximum size
53 of a function counted in internal gcc instructions (not in
54 real machine instructions) that is eligible for inlining
55 by the tree inliner.
e5c4f28a 56 The default value is 450.
a6227154 57 Only functions marked inline (or methods defined in the class
e5c4f28a 58 definition for C++) are affected by this.
a6227154
KG
59 There are more restrictions to inlining: If inlined functions
60 call other functions, the already inlined instructions are
b8698a0f 61 counted and once the recursive inline limit (see
a6227154
KG
62 "max-inline-insns" parameter) is exceeded, the acceptable size
63 gets decreased. */
64DEFPARAM (PARAM_MAX_INLINE_INSNS_SINGLE,
65 "max-inline-insns-single",
bc522472 66 "The maximum number of instructions in a single function eligible for inlining",
172d54e0 67 400, 0, 0)
a6227154 68
bc522472
KG
69/* The single function inlining limit for functions that are
70 inlined by virtue of -finline-functions (-O3).
71 This limit should be chosen to be below or equal to the limit
72 that is applied to functions marked inlined (or defined in the
73 class declaration in C++) given by the "max-inline-insns-single"
74 parameter.
7802ca7c 75 The default value is 40. */
bc522472
KG
76DEFPARAM (PARAM_MAX_INLINE_INSNS_AUTO,
77 "max-inline-insns-auto",
78 "The maximum number of instructions when automatically inlining",
7802ca7c 79 40, 0, 0)
bc522472 80
6de9cd9a
DN
81DEFPARAM (PARAM_MAX_INLINE_INSNS_RECURSIVE,
82 "max-inline-insns-recursive",
83 "The maximum number of instructions inline function can grow to via recursive inlining",
172d54e0 84 450, 0, 0)
6de9cd9a
DN
85
86DEFPARAM (PARAM_MAX_INLINE_INSNS_RECURSIVE_AUTO,
87 "max-inline-insns-recursive-auto",
88 "The maximum number of instructions non-inline function can grow to via recursive inlining",
172d54e0 89 450, 0, 0)
6de9cd9a
DN
90
91DEFPARAM (PARAM_MAX_INLINE_RECURSIVE_DEPTH,
92 "max-inline-recursive-depth",
93 "The maximum depth of recursive inlining for inline functions",
e06c0feb 94 8, 0, 0)
6de9cd9a
DN
95
96DEFPARAM (PARAM_MAX_INLINE_RECURSIVE_DEPTH_AUTO,
97 "max-inline-recursive-depth-auto",
98 "The maximum depth of recursive inlining for non-inline functions",
e06c0feb 99 8, 0, 0)
6de9cd9a 100
c5a4444c
JH
101DEFPARAM (PARAM_MIN_INLINE_RECURSIVE_PROBABILITY,
102 "min-inline-recursive-probability",
103 "Inline recursively only when the probability of call being executed exceeds the parameter",
104 10, 0, 0)
105
796bda22
JH
106/* Limit of iterations of early inliner. This basically bounds number of
107 nested indirect calls early inliner can resolve. Deeper chains are still
108 handled by late inlining. */
109DEFPARAM (PARAM_EARLY_INLINER_MAX_ITERATIONS,
110 "max-early-inliner-iterations",
111 "The maximum number of nested indirect inlining performed by early inliner",
ec4224ac 112 1, 0, 0)
796bda22 113
c5d0600d
JH
114/* Limit on probability of entry BB. */
115DEFPARAM (PARAM_COMDAT_SHARING_PROBABILITY,
116 "comdat-sharing-probability",
9200b302 117 "Probability that COMDAT function will be shared with different compilation unit",
c5d0600d
JH
118 20, 0, 0)
119
3e485f62
JH
120/* Limit on probability of entry BB. */
121DEFPARAM (PARAM_PARTIAL_INLINING_ENTRY_PROBABILITY,
122 "partial-inlining-entry-probability",
123 "Maximum probability of the entry BB of split region (in percent relative to entry BB of the function) to make partial inlining happen",
124 70, 0, 0)
125
f37a4f14
RE
126/* Limit the number of expansions created by the variable expansion
127 optimization to avoid register pressure. */
128DEFPARAM (PARAM_MAX_VARIABLE_EXPANSIONS,
129 "max-variable-expansions-in-unroller",
5fa534e3 130 "If -fvariable-expansion-in-unroller is used, the maximum number of times that an individual variable will be expanded during loop unrolling",
e06c0feb 131 1, 0, 0)
b8698a0f 132
acdc40df
DN
133/* Limit loop autovectorization to loops with large enough iteration count. */
134DEFPARAM (PARAM_MIN_VECT_LOOP_BOUND,
135 "min-vect-loop-bound",
136 "If -ftree-vectorize is used, the minimal loop bound of a loop to be considered for vectorization",
8d888559 137 1, 1, 0)
acdc40df 138
0443f602
JO
139/* The maximum number of instructions to consider when looking for an
140 instruction to fill a delay slot. If more than this arbitrary
141 number of instructions is searched, the time savings from filling
142 the delay slot will be minimal so stop searching. Increasing
143 values mean more aggressive optimization, making the compile time
144 increase with probably small improvement in executable run time. */
145DEFPARAM (PARAM_MAX_DELAY_SLOT_INSN_SEARCH,
146 "max-delay-slot-insn-search",
147 "The maximum number of instructions to consider to fill a delay slot",
e06c0feb 148 100, 0, 0)
0443f602 149
d5d063d7
JO
150/* When trying to fill delay slots, the maximum number of instructions
151 to consider when searching for a block with valid live register
152 information. Increasing this arbitrarily chosen value means more
153 aggressive optimization, increasing the compile time. This
154 parameter should be removed when the delay slot code is rewritten
155 to maintain the control-flow graph. */
156DEFPARAM(PARAM_MAX_DELAY_SLOT_LIVE_SEARCH,
157 "max-delay-slot-live-search",
158 "The maximum number of instructions to consider to find accurate live register information",
e06c0feb 159 333, 0, 0)
d5d063d7 160
b8698a0f 161/* This parameter limits the number of branch elements that the
ff7cc307 162 scheduler will track anti-dependencies through without resetting
b8698a0f
L
163 the tracking mechanism. Large functions with few calls or barriers
164 can generate lists containing many 1000's of dependencies. Generally
4a121cc3
AM
165 the compiler either uses all available memory, or runs for far too long. */
166DEFPARAM(PARAM_MAX_PENDING_LIST_LENGTH,
167 "max-pending-list-length",
168 "The maximum length of scheduling's pending operations list",
e06c0feb 169 32, 0, 0)
4a121cc3 170
06d7e8e7
BS
171/* This parameter limits the number of backtracking attempts when using the
172 haifa scheduler for modulo scheduling. */
173DEFPARAM(PARAM_MAX_MODULO_BACKTRACK_ATTEMPTS,
174 "max-modulo-backtrack-attempts",
175 "The maximum number of backtrack attempts the scheduler should make when modulo scheduling a loop",
176 40, 0, 0)
177
b58b1157
JH
178DEFPARAM(PARAM_LARGE_FUNCTION_INSNS,
179 "large-function-insns",
180 "The size of function body to be considered large",
e5c4f28a 181 2700, 0, 0)
b58b1157
JH
182DEFPARAM(PARAM_LARGE_FUNCTION_GROWTH,
183 "large-function-growth",
2cc98056 184 "Maximal growth due to inlining of large function (in percent)",
e06c0feb 185 100, 0, 0)
b4f32d07
JH
186DEFPARAM(PARAM_LARGE_UNIT_INSNS,
187 "large-unit-insns",
188 "The size of translation unit to be considered large",
189 10000, 0, 0)
b58b1157
JH
190DEFPARAM(PARAM_INLINE_UNIT_GROWTH,
191 "inline-unit-growth",
7b98c16f 192 "How much can given compilation unit grow because of the inlining (in percent)",
d562c668 193 30, 0, 0)
5e45130d
JH
194DEFPARAM(PARAM_IPCP_UNIT_GROWTH,
195 "ipcp-unit-growth",
7b98c16f 196 "How much can given compilation unit grow because of the interprocedural constant propagation (in percent)",
5e45130d 197 10, 0, 0)
85057983
JH
198DEFPARAM(PARAM_EARLY_INLINING_INSNS,
199 "early-inlining-insns",
7b98c16f 200 "Maximal estimated growth of function body caused by early inlining of single call",
632b4f8e 201 11, 0, 0)
ff28a94d
JH
202DEFPARAM(PARAM_LARGE_STACK_FRAME,
203 "large-stack-frame",
204 "The size of stack frame to be considered large",
205 256, 0, 0)
206DEFPARAM(PARAM_STACK_FRAME_GROWTH,
207 "large-stack-frame-growth",
208 "Maximal stack frame growth due to inlining (in percent)",
209 1000, 0, 0)
b58b1157 210
f1fa37ff
MM
211/* The GCSE optimization will be disabled if it would require
212 significantly more memory than this value. */
213DEFPARAM(PARAM_MAX_GCSE_MEMORY,
214 "max-gcse-memory",
215 "The maximum amount of memory to be allocated by GCSE",
e06c0feb 216 50 * 1024 * 1024, 0, 0)
3906a4a1 217
29fa95ed
JL
218/* The GCSE optimization of an expression will avoided if the ratio of
219 insertions to deletions is greater than this value. */
220DEFPARAM(PARAM_MAX_GCSE_INSERTION_RATIO,
221 "max-gcse-insertion-ratio",
222 "The maximum ratio of insertions to deletions of expressions in GCSE",
223 20, 0, 0)
224
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)
20160347
MK
242
243/* GCSE will use GCSE_COST_DISTANCE_RATION as a scaling factor
244 to calculate maximum distance for which an expression is allowed to move
245 from its rtx_cost. */
246DEFPARAM(PARAM_GCSE_COST_DISTANCE_RATIO,
247 "gcse-cost-distance-ratio",
248 "Scaling factor in calculation of maximum distance an expression can be moved by GCSE optimizations",
249 10, 0, 0)
250/* GCSE won't restrict distance for which an expression with rtx_cost greater
251 than COSTS_N_INSN(GCSE_UNRESTRICTED_COST) is allowed to move. */
252DEFPARAM(PARAM_GCSE_UNRESTRICTED_COST,
253 "gcse-unrestricted-cost",
254 "Cost at which GCSE optimizations will not constraint the distance an expression can travel",
255 3, 0, 0)
256
cad9aa15
MK
257/* How deep from a given basic block the dominator tree should be searched
258 for expressions to hoist to the block. The value of 0 will avoid limiting
259 the search. */
260DEFPARAM(PARAM_MAX_HOIST_DEPTH,
261 "max-hoist-depth",
262 "Maximum depth of search in the dominator tree for expressions to hoist",
263 30, 0, 0)
264
03e9dbc9 265/* This parameter limits the number of insns in a loop that will be unrolled,
701ad47e 266 and by how much the loop is unrolled.
b8698a0f 267
701ad47e
JH
268 This limit should be at most half of the peeling limits: loop unroller
269 decides to not unroll loops that iterate fewer than 2*number of allowed
a1105617 270 unrollings and thus we would have loops that are neither peeled or unrolled
701ad47e 271 otherwise. */
03e9dbc9
MM
272DEFPARAM(PARAM_MAX_UNROLLED_INSNS,
273 "max-unrolled-insns",
274 "The maximum number of instructions to consider to unroll in a loop",
e06c0feb 275 200, 0, 0)
b17d5d7c
ZD
276/* This parameter limits how many times the loop is unrolled depending
277 on number of insns really executed in each iteration. */
278DEFPARAM(PARAM_MAX_AVERAGE_UNROLLED_INSNS,
279 "max-average-unrolled-insns",
280 "The maximum number of instructions to consider to unroll in a loop on average",
e06c0feb 281 80, 0, 0)
b17d5d7c
ZD
282/* The maximum number of unrollings of a single loop. */
283DEFPARAM(PARAM_MAX_UNROLL_TIMES,
284 "max-unroll-times",
285 "The maximum number of unrollings of a single loop",
e06c0feb 286 8, 0, 0)
b17d5d7c
ZD
287/* The maximum number of insns of a peeled loop. */
288DEFPARAM(PARAM_MAX_PEELED_INSNS,
289 "max-peeled-insns",
290 "The maximum number of insns of a peeled loop",
b3d0cc60 291 100, 0, 0)
b17d5d7c
ZD
292/* The maximum number of peelings of a single loop. */
293DEFPARAM(PARAM_MAX_PEEL_TIMES,
294 "max-peel-times",
295 "The maximum number of peelings of a single loop",
e06c0feb 296 16, 0, 0)
519cac4a
JH
297/* The maximum number of peelings of a single loop that is peeled completely. */
298DEFPARAM(PARAM_MAX_PEEL_BRANCHES,
299 "max-peel-branches",
300 "The maximum number of branches on the path through the peeled sequence",
301 32, 0, 0)
b17d5d7c
ZD
302/* The maximum number of insns of a peeled loop. */
303DEFPARAM(PARAM_MAX_COMPLETELY_PEELED_INSNS,
304 "max-completely-peeled-insns",
305 "The maximum number of insns of a completely peeled loop",
b3d0cc60 306 100, 0, 0)
b17d5d7c
ZD
307/* The maximum number of peelings of a single loop that is peeled completely. */
308DEFPARAM(PARAM_MAX_COMPLETELY_PEEL_TIMES,
309 "max-completely-peel-times",
310 "The maximum number of peelings of a single loop that is peeled completely",
e06c0feb 311 16, 0, 0)
b17d5d7c
ZD
312/* The maximum number of insns of a peeled loop that rolls only once. */
313DEFPARAM(PARAM_MAX_ONCE_PEELED_INSNS,
314 "max-once-peeled-insns",
315 "The maximum number of insns of a peeled loop that rolls only once",
e06c0feb 316 400, 0, 0)
30bc1dca
RG
317/* The maximum depth of a loop nest we completely peel. */
318DEFPARAM(PARAM_MAX_UNROLL_ITERATIONS,
319 "max-completely-peel-loop-nest-depth",
320 "The maximum depth of a loop nest we completely peel",
321 8, 0, 0)
194734e9 322
617b465c
ZD
323/* The maximum number of insns of an unswitched loop. */
324DEFPARAM(PARAM_MAX_UNSWITCH_INSNS,
325 "max-unswitch-insns",
326 "The maximum number of insns of an unswitched loop",
e06c0feb 327 50, 0, 0)
617b465c
ZD
328/* The maximum level of recursion in unswitch_single_loop. */
329DEFPARAM(PARAM_MAX_UNSWITCH_LEVEL,
330 "max-unswitch-level",
331 "The maximum number of unswitchings in a single loop",
e06c0feb 332 3, 0, 0)
617b465c 333
e9eb809d
ZD
334/* The maximum number of iterations of a loop the brute force algorithm
335 for analysis of # of iterations of the loop tries to evaluate. */
336DEFPARAM(PARAM_MAX_ITERATIONS_TO_TRACK,
337 "max-iterations-to-track",
e06c0feb
NS
338 "Bound on the number of iterations the brute force # of iterations analysis algorithm evaluates",
339 1000, 0, 0)
45b9a14b
BS
340/* A cutoff to avoid costly computations of the number of iterations in
341 the doloop transformation. */
342DEFPARAM(PARAM_MAX_ITERATIONS_COMPUTATION_COST,
343 "max-iterations-computation-cost",
344 "Bound on the cost of an expression to compute the number of iterations",
345 10, 0, 0)
e9eb809d 346
e5626198
AZ
347/* This parameter is used to tune SMS MAX II calculations. */
348DEFPARAM(PARAM_SMS_MAX_II_FACTOR,
349 "sms-max-ii-factor",
e06c0feb
NS
350 "A factor for tuning the upper bound that swing modulo scheduler uses for scheduling a loop",
351 100, 0, 0)
3e2fdd24
RE
352/* The minimum value of stage count that swing modulo scheduler will generate. */
353DEFPARAM(PARAM_SMS_MIN_SC,
354 "sms-min-sc",
355 "The minimum value of stage count that swing modulo scheduler will generate.",
356 2, 1, 1)
e5626198
AZ
357DEFPARAM(PARAM_SMS_DFA_HISTORY,
358 "sms-dfa-history",
5fa534e3 359 "The number of cycles the swing modulo scheduler considers when checking conflicts using DFA",
e06c0feb 360 0, 0, 0)
e5626198
AZ
361DEFPARAM(PARAM_SMS_LOOP_AVERAGE_COUNT_THRESHOLD,
362 "sms-loop-average-count-threshold",
e06c0feb
NS
363 "A threshold on the average loop count considered by the swing modulo scheduler",
364 0, 0, 0)
e5626198 365
b131b583
TJ
366DEFPARAM(HOT_BB_COUNT_WS_PERMILLE,
367 "hot-bb-count-ws-permille",
368 "A basic block profile count is considered hot if it contributes to "
369 "the given permillage of the entire profiled execution",
370 999, 0, 1000)
194734e9
JH
371DEFPARAM(HOT_BB_FREQUENCY_FRACTION,
372 "hot-bb-frequency-fraction",
e06c0feb
NS
373 "Select fraction of the maximal frequency of executions of basic block in function given basic block needs to have to be considered hot",
374 1000, 0, 0)
95b9a3a5 375
edbed3d3
JH
376DEFPARAM (PARAM_ALIGN_THRESHOLD,
377 "align-threshold",
378 "Select fraction of the maximal frequency of executions of basic block in function given basic block get alignment",
7b55f98f 379 100, 1, 0)
edbed3d3
JH
380
381DEFPARAM (PARAM_ALIGN_LOOP_ITERATIONS,
382 "align-loop-iterations",
383 "Loops iterating at least selected number of iterations will get loop alignement.",
384 4, 0, 0)
385
95b9a3a5
JH
386/* For guessed profiles, the loops having unknown number of iterations
387 are predicted to iterate relatively few (10) times at average.
388 For functions containing one loop with large known number of iterations
389 and other loops having unbounded loops we would end up predicting all
c83eecad 390 the other loops cold that is not usually the case. So we need to artificially
b8698a0f 391 flatten the profile.
95b9a3a5 392
6416ae7f 393 We need to cut the maximal predicted iterations to large enough iterations
b131b583 394 so the loop appears important, but safely within maximum hotness
95b9a3a5
JH
395 range. */
396
397DEFPARAM(PARAM_MAX_PREDICTED_ITERATIONS,
398 "max-predicted-iterations",
399 "The maximum number of loop iterations we predict statically",
400 100, 0, 0)
942df739
RX
401
402/* This parameter controls the probability of builtin_expect. The default
403 value is 90%. This empirical value is obtained through the weighted
404 probability of FDO counters (with the FDO count value as the weight)
405 in some real world programs:
406 (1) Google performance test benchmarks: the probability is 0.9081.
407 (2) Linux 3.3 kernel running Google search workload: the probability
408 is 0.8717. */
409
410DEFPARAM(BUILTIN_EXPECT_PROBABILITY,
411 "builtin-expect-probability",
412 "Set the estimated probability in percentage for builtin expect. The default value is 90% probability.",
413 90, 0, 100)
5c856b23
JH
414DEFPARAM(TRACER_DYNAMIC_COVERAGE_FEEDBACK,
415 "tracer-dynamic-coverage-feedback",
e06c0feb
NS
416 "The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is available",
417 95, 0, 100)
5c856b23
JH
418DEFPARAM(TRACER_DYNAMIC_COVERAGE,
419 "tracer-dynamic-coverage",
e06c0feb
NS
420 "The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is not available",
421 75, 0, 100)
5c856b23
JH
422DEFPARAM(TRACER_MAX_CODE_GROWTH,
423 "tracer-max-code-growth",
2cc98056 424 "Maximal code growth caused by tail duplication (in percent)",
e06c0feb 425 100, 0, 0)
5c856b23
JH
426DEFPARAM(TRACER_MIN_BRANCH_RATIO,
427 "tracer-min-branch-ratio",
e06c0feb
NS
428 "Stop reverse growth if the reverse probability of best edge is less than this threshold (in percent)",
429 10, 0, 100)
5c856b23
JH
430DEFPARAM(TRACER_MIN_BRANCH_PROBABILITY_FEEDBACK,
431 "tracer-min-branch-probability-feedback",
e06c0feb
NS
432 "Stop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is available",
433 80, 0, 100)
5c856b23
JH
434DEFPARAM(TRACER_MIN_BRANCH_PROBABILITY,
435 "tracer-min-branch-probability",
e06c0feb
NS
436 "Stop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is not available",
437 50, 0, 100)
3788cc17 438
5f24e0dc
RH
439/* The maximum number of incoming edges to consider for crossjumping. */
440DEFPARAM(PARAM_MAX_CROSSJUMP_EDGES,
441 "max-crossjump-edges",
442 "The maximum number of incoming edges to consider for crossjumping",
e06c0feb 443 100, 0, 0)
5f24e0dc 444
12183e0f
PH
445/* The minimum number of matching instructions to consider for crossjumping. */
446DEFPARAM(PARAM_MIN_CROSSJUMP_INSNS,
447 "min-crossjump-insns",
448 "The minimum number of matching instructions to consider for crossjumping",
781b2e62 449 5, 1, 0)
12183e0f 450
f935b9e0
DE
451/* The maximum number expansion factor when copying basic blocks. */
452DEFPARAM(PARAM_MAX_GROW_COPY_BB_INSNS,
453 "max-grow-copy-bb-insns",
454 "The maximum expansion factor when copying basic blocks",
455 8, 0, 0)
456
bbcb0c05
SB
457/* The maximum number of insns to duplicate when unfactoring computed gotos. */
458DEFPARAM(PARAM_MAX_GOTO_DUPLICATION_INSNS,
459 "max-goto-duplication-insns",
460 "The maximum number of insns to duplicate when unfactoring computed gotos",
461 8, 0, 0)
462
9bf8cfbf
ZD
463/* The maximum length of path considered in cse. */
464DEFPARAM(PARAM_MAX_CSE_PATH_LENGTH,
465 "max-cse-path-length",
2cc98056 466 "The maximum length of path considered in cse",
75ef8e3d 467 10, 1, 0)
95b9a3a5 468DEFPARAM(PARAM_MAX_CSE_INSNS,
921b02cd 469 "max-cse-insns",
95b9a3a5
JH
470 "The maximum instructions CSE process before flushing",
471 1000, 0, 0)
9bf8cfbf 472
a7e5372d
ZD
473/* The cost of expression in loop invariant motion that is considered
474 expensive. */
475DEFPARAM(PARAM_LIM_EXPENSIVE,
476 "lim-expensive",
477 "The minimum cost of an expensive expression in the loop invariant motion",
e06c0feb 478 20, 0, 0)
a7e5372d 479
8b11a64c
ZD
480/* Bound on number of candidates for induction variables below that
481 all candidates are considered for each use in induction variable
482 optimizations. */
483
484DEFPARAM(PARAM_IV_CONSIDER_ALL_CANDIDATES_BOUND,
485 "iv-consider-all-candidates-bound",
486 "Bound on number of candidates below that all candidates are considered in iv optimizations",
e06c0feb 487 30, 0, 0)
8b11a64c
ZD
488
489/* The induction variable optimizations give up on loops that contain more
490 induction variable uses. */
491
492DEFPARAM(PARAM_IV_MAX_CONSIDERED_USES,
493 "iv-max-considered-uses",
494 "Bound on number of iv uses in loop optimized in iv optimizations",
e06c0feb 495 250, 0, 0)
8b11a64c 496
36f5ada1
ZD
497/* If there are at most this number of ivs in the set, try removing unnecessary
498 ivs from the set always. */
499
500DEFPARAM(PARAM_IV_ALWAYS_PRUNE_CAND_SET_BOUND,
501 "iv-always-prune-cand-set-bound",
502 "If number of candidates in the set is smaller, we always try to remove unused ivs during its optimization",
503 10, 0, 0)
504
2412d35c
SP
505DEFPARAM(PARAM_SCEV_MAX_EXPR_SIZE,
506 "scev-max-expr-size",
507 "Bound on size of expressions used in the scalar evolutions analyzer",
14dd9aab
SP
508 100, 0, 0)
509
510DEFPARAM(PARAM_SCEV_MAX_EXPR_COMPLEXITY,
511 "scev-max-expr-complexity",
512 "Bound on the complexity of the expressions in the scalar evolutions analyzer",
513 10, 0, 0)
2412d35c 514
3d8864c0
SP
515DEFPARAM(PARAM_OMEGA_MAX_VARS,
516 "omega-max-vars",
517 "Bound on the number of variables in Omega constraint systems",
518 128, 0, 0)
519
520DEFPARAM(PARAM_OMEGA_MAX_GEQS,
521 "omega-max-geqs",
522 "Bound on the number of inequalities in Omega constraint systems",
523 256, 0, 0)
524
525DEFPARAM(PARAM_OMEGA_MAX_EQS,
526 "omega-max-eqs",
527 "Bound on the number of equalities in Omega constraint systems",
528 128, 0, 0)
529
530DEFPARAM(PARAM_OMEGA_MAX_WILD_CARDS,
531 "omega-max-wild-cards",
532 "Bound on the number of wild cards in Omega constraint systems",
533 18, 0, 0)
534
535DEFPARAM(PARAM_OMEGA_HASH_TABLE_SIZE,
536 "omega-hash-table-size",
537 "Bound on the size of the hash table in Omega constraint systems",
538 550, 0, 0)
539
540DEFPARAM(PARAM_OMEGA_MAX_KEYS,
541 "omega-max-keys",
542 "Bound on the number of keys in Omega constraint systems",
543 500, 0, 0)
544
545DEFPARAM(PARAM_OMEGA_ELIMINATE_REDUNDANT_CONSTRAINTS,
546 "omega-eliminate-redundant-constraints",
547 "When set to 1, use expensive methods to eliminate all redundant constraints",
548 0, 0, 1)
549
bc1edb77
VK
550DEFPARAM(PARAM_VECT_MAX_VERSION_FOR_ALIGNMENT_CHECKS,
551 "vect-max-version-for-alignment-checks",
552 "Bound on number of runtime checks inserted by the vectorizer's loop versioning for alignment check",
c12cc930
KB
553 6, 0, 0)
554
bc1edb77
VK
555DEFPARAM(PARAM_VECT_MAX_VERSION_FOR_ALIAS_CHECKS,
556 "vect-max-version-for-alias-checks",
557 "Bound on number of runtime checks inserted by the vectorizer's loop versioning for alias check",
558 10, 0, 0)
559
4f17aa0b
XDL
560DEFPARAM(PARAM_VECT_MAX_PEELING_FOR_ALIGNMENT,
561 "vect-max-peeling-for-alignment",
562 "Max number of loop peels to enhancement alignment of data references in a loop",
563 -1, -1, 64)
564
c65ecebc
JH
565DEFPARAM(PARAM_MAX_CSELIB_MEMORY_LOCATIONS,
566 "max-cselib-memory-locations",
567 "The maximum memory locations recorded by cselib",
e06c0feb 568 500, 0, 0)
c65ecebc 569
3788cc17
ZW
570#ifdef ENABLE_GC_ALWAYS_COLLECT
571# define GGC_MIN_EXPAND_DEFAULT 0
737c38d1 572# define GGC_MIN_HEAPSIZE_DEFAULT 0
3788cc17
ZW
573#else
574# define GGC_MIN_EXPAND_DEFAULT 30
737c38d1 575# define GGC_MIN_HEAPSIZE_DEFAULT 4096
3788cc17
ZW
576#endif
577
578DEFPARAM(GGC_MIN_EXPAND,
579 "ggc-min-expand",
e06c0feb
NS
580 "Minimum heap expansion to trigger garbage collection, as a percentage of the total size of the heap",
581 GGC_MIN_EXPAND_DEFAULT, 0, 0)
3788cc17 582
3788cc17
ZW
583DEFPARAM(GGC_MIN_HEAPSIZE,
584 "ggc-min-heapsize",
2cc98056 585 "Minimum heap size before we start collecting garbage, in kilobytes",
e06c0feb 586 GGC_MIN_HEAPSIZE_DEFAULT, 0, 0)
737c38d1
GK
587
588#undef GGC_MIN_EXPAND_DEFAULT
589#undef GGC_MIN_HEAPSIZE_DEFAULT
3788cc17 590
0bcf8261
JH
591DEFPARAM(PARAM_MAX_RELOAD_SEARCH_INSNS,
592 "max-reload-search-insns",
593 "The maximum number of instructions to search backward when looking for equivalent reload",
e06c0feb 594 100, 0, 0)
0bcf8261 595
1cc17820
JL
596DEFPARAM(PARAM_SINK_FREQUENCY_THRESHOLD,
597 "sink-frequency-threshold",
598 "Target block's relative execution frequency (as a percentage) required to sink a statement",
599 75, 0, 100)
600
f72c6b56
DE
601DEFPARAM(PARAM_MAX_SCHED_REGION_BLOCKS,
602 "max-sched-region-blocks",
603 "The maximum number of blocks in a region to be considered for interblock scheduling",
e06c0feb 604 10, 0, 0)
f72c6b56
DE
605
606DEFPARAM(PARAM_MAX_SCHED_REGION_INSNS,
607 "max-sched-region-insns",
608 "The maximum number of insns in a region to be considered for interblock scheduling",
e06c0feb 609 100, 0, 0)
f72c6b56 610
e855c69d
AB
611DEFPARAM(PARAM_MAX_PIPELINE_REGION_BLOCKS,
612 "max-pipeline-region-blocks",
613 "The maximum number of blocks in a region to be considered for interblock scheduling",
614 15, 0, 0)
615
616DEFPARAM(PARAM_MAX_PIPELINE_REGION_INSNS,
617 "max-pipeline-region-insns",
618 "The maximum number of insns in a region to be considered for interblock scheduling",
619 200, 0, 0)
620
6f48c21a
PS
621DEFPARAM(PARAM_MIN_SPEC_PROB,
622 "min-spec-prob",
623 "The minimum probability of reaching a source block for interblock speculative scheduling",
624 40, 0, 0)
625
d08eefb9
MK
626DEFPARAM(PARAM_MAX_SCHED_EXTEND_REGIONS_ITERS,
627 "max-sched-extend-regions-iters",
628 "The maximum number of iterations through CFG to extend regions",
bb83aa4b 629 0, 0, 0)
d08eefb9 630
496d7bb0
MK
631DEFPARAM(PARAM_MAX_SCHED_INSN_CONFLICT_DELAY,
632 "max-sched-insn-conflict-delay",
633 "The maximum conflict delay for an insn to be considered for speculative motion",
634 3, 1, 10)
635
636DEFPARAM(PARAM_SCHED_SPEC_PROB_CUTOFF,
637 "sched-spec-prob-cutoff",
638 "The minimal probability of speculation success (in percents), so that speculative insn will be scheduled.",
639 40, 0, 100)
640
975ccf22
BS
641DEFPARAM(PARAM_SCHED_STATE_EDGE_PROB_CUTOFF,
642 "sched-state-edge-prob-cutoff",
643 "The minimum probability an edge must have for the scheduler to save its state across it.",
644 10, 0, 100)
645
e855c69d
AB
646DEFPARAM(PARAM_SELSCHED_MAX_LOOKAHEAD,
647 "selsched-max-lookahead",
648 "The maximum size of the lookahead window of selective scheduling",
649 50, 0, 0)
650
651DEFPARAM(PARAM_SELSCHED_MAX_SCHED_TIMES,
652 "selsched-max-sched-times",
653 "Maximum number of times that an insn could be scheduled",
654 2, 0, 0)
655
656DEFPARAM(PARAM_SELSCHED_INSNS_TO_RENAME,
657 "selsched-insns-to-rename",
658 "Maximum number of instructions in the ready list that are considered eligible for renaming",
659 2, 0, 0)
660
661DEFPARAM (PARAM_SCHED_MEM_TRUE_DEP_COST,
662 "sched-mem-true-dep-cost",
663 "Minimal distance between possibly conflicting store and load",
664 1, 0, 0)
665
49c3b9a8
JJ
666DEFPARAM(PARAM_MAX_LAST_VALUE_RTL,
667 "max-last-value-rtl",
668 "The maximum number of RTL nodes that can be recorded as combiner's last value",
669 10000, 0, 0)
670
89b0433e
NS
671/* INTEGER_CST nodes are shared for values [{-1,0} .. N) for
672 {signed,unsigned} integral types. This determines N.
c58c0d4c
RG
673 Experimentation shows 251 to be a good value that generates the
674 least amount of garbage for allocating the TREE_VEC storage. */
89b0433e
NS
675DEFPARAM (PARAM_INTEGER_SHARE_LIMIT,
676 "integer-share-limit",
677 "The upper bound for sharing integer constants",
c58c0d4c 678 251, 2, 2)
89b0433e 679
7d69de61
RH
680DEFPARAM (PARAM_SSP_BUFFER_SIZE,
681 "ssp-buffer-size",
682 "The lower bound for a buffer to be considered for stack smashing protection",
683 8, 1, 0)
684
4d5b5e9f
ER
685DEFPARAM (PARAM_MIN_SIZE_FOR_STACK_SHARING,
686 "min-size-for-stack-sharing",
687 "The minimum size of variables taking part in stack slot sharing "
688 "when not optimizing",
689 32, 0, 0)
690
43f31be5
JL
691/* When we thread through a block we have to make copies of the
692 statements within the block. Clearly for large blocks the code
693 duplication is bad.
694
695 PARAM_MAX_JUMP_THREAD_DUPLICATION_STMTS specifies the maximum number
696 of statements and PHI nodes allowed in a block which is going to
697 be duplicated for thread jumping purposes.
698
699 Some simple analysis showed that more than 99% of the jump
700 threading opportunities are for blocks with less than 15
701 statements. So we can get the benefits of jump threading
702 without excessive code bloat for pathological cases with the
703 throttle set at 15 statements. */
704DEFPARAM (PARAM_MAX_JUMP_THREAD_DUPLICATION_STMTS,
705 "max-jump-thread-duplication-stmts",
706 "Maximum number of statements allowed in a block that needs to be duplicated when threading jumps",
707 15, 0, 0)
98035a75
DB
708
709/* This is the maximum number of fields a variable may have before the pointer analysis machinery
b8698a0f 710 will stop trying to treat it in a field-sensitive manner.
98035a75
DB
711 There are programs out there with thousands of fields per structure, and handling them
712 field-sensitively is not worth the cost. */
713DEFPARAM (PARAM_MAX_FIELDS_FOR_FIELD_SENSITIVE,
714 "max-fields-for-field-sensitive",
715 "Maximum number of fields in a structure before pointer analysis treats the structure as a single variable",
d9338cf0 716 0, 0, 0)
6f8dd94b
EB
717
718DEFPARAM(PARAM_MAX_SCHED_READY_INSNS,
719 "max-sched-ready-insns",
720 "The maximum number of instructions ready to be issued to be considered by the scheduler during the first scheduling pass",
721 100, 0, 0)
722
dabd47e7
JJ
723/* This is the maximum number of active local stores RTL DSE will consider. */
724DEFPARAM (PARAM_MAX_DSE_ACTIVE_LOCAL_STORES,
725 "max-dse-active-local-stores",
726 "Maximum number of active local stores in RTL dead store elimination",
727 5000, 0, 0)
728
47eb5b32
ZD
729/* Prefetching and cache-optimizations related parameters. Default values are
730 usually set by machine description. */
731
732/* The number of insns executed before prefetch is completed. */
733
734DEFPARAM (PARAM_PREFETCH_LATENCY,
735 "prefetch-latency",
736 "The number of insns executed before prefetch is completed",
737 200, 0, 0)
738
739/* The number of prefetches that can run at the same time. */
740
741DEFPARAM (PARAM_SIMULTANEOUS_PREFETCHES,
742 "simultaneous-prefetches",
743 "The number of prefetches that can run at the same time",
744 3, 0, 0)
745
46cb0441 746/* The size of L1 cache in kB. */
47eb5b32
ZD
747
748DEFPARAM (PARAM_L1_CACHE_SIZE,
749 "l1-cache-size",
750 "The size of L1 cache",
46cb0441 751 64, 0, 0)
47eb5b32
ZD
752
753/* The size of L1 cache line in bytes. */
754
755DEFPARAM (PARAM_L1_CACHE_LINE_SIZE,
756 "l1-cache-line-size",
757 "The size of L1 cache line",
758 32, 0, 0)
759
46cb0441
ZD
760/* The size of L2 cache in kB. */
761
762DEFPARAM (PARAM_L2_CACHE_SIZE,
763 "l2-cache-size",
764 "The size of L2 cache",
765 512, 0, 0)
766
7313518b
DG
767/* Whether we should use canonical types rather than deep "structural"
768 type checking. Setting this value to 1 (the default) improves
769 compilation performance in the C++ and Objective-C++ front end;
770 this value should only be set to zero to work around bugs in the
771 canonical type system by disabling it. */
772
773DEFPARAM (PARAM_USE_CANONICAL_TYPES,
774 "use-canonical-types",
775 "Whether to use canonical types",
776 1, 0, 1)
f0ed4cfb
NC
777
778DEFPARAM (PARAM_MAX_PARTIAL_ANTIC_LENGTH,
779 "max-partial-antic-length",
780 "Maximum length of partial antic set when performing tree pre optimization",
781 100, 0, 0)
782
863d2a57
RG
783/* The following is used as a stop-gap limit for cases where really huge
784 SCCs blow up memory and compile-time use too much. If we hit this limit,
785 SCCVN and such FRE and PRE will be not done at all for the current
786 function. */
787
788DEFPARAM (PARAM_SCCVN_MAX_SCC_SIZE,
789 "sccvn-max-scc-size",
790 "Maximum size of a SCC before SCCVN stops processing a function",
791 10000, 10, 0)
792
9bb06c2a
RG
793/* The following is used as a stop-gap limit for cases where really huge
794 functions blow up compile-time use too much. It limits the number of
795 alias-queries we do for finding common subexpressions for memory loads and
796 stores. The number of alias-queries is otherwise limited by the number of
797 stores on paths to function entry. */
798
799DEFPARAM (PARAM_SCCVN_MAX_ALIAS_QUERIES_PER_ACCESS,
800 "sccvn-max-alias-queries-per-access",
801 "Maximum number of disambiguations to perform per memory access",
802 1000, 0, 0)
803
058e97ec
VM
804DEFPARAM (PARAM_IRA_MAX_LOOPS_NUM,
805 "ira-max-loops-num",
7b98c16f 806 "Max loops number for regional RA",
30ea859e 807 100, 0, 0)
058e97ec 808
311aab06
VM
809DEFPARAM (PARAM_IRA_MAX_CONFLICT_TABLE_SIZE,
810 "ira-max-conflict-table-size",
7b98c16f 811 "Max size of conflict table in MB",
7cd06356 812 1000, 0, 0)
311aab06 813
1833192f
VM
814DEFPARAM (PARAM_IRA_LOOP_RESERVED_REGS,
815 "ira-loop-reserved-regs",
816 "The number of registers in each class kept unused by loop invariant motion",
817 2, 0, 0)
818
b6e99746
MJ
819/* Switch initialization conversion will refuse to create arrays that are
820 bigger than this parameter times the number of switch branches. */
821
822DEFPARAM (PARAM_SWITCH_CONVERSION_BRANCH_RATIO,
823 "switch-conversion-max-branch-ratio",
824 "The maximum ratio between array size and switch branches for "
825 "a switch conversion to take place",
826 8, 1, 0)
827
e797c5f2
SP
828/* Size of tiles when doing loop blocking. */
829
830DEFPARAM (PARAM_LOOP_BLOCK_TILE_SIZE,
831 "loop-block-tile-size",
832 "size of tiles for loop blocking",
833 51, 0, 0)
834
4e7dd376
SP
835/* Maximal number of parameters that we allow in a SCoP. */
836
837DEFPARAM (PARAM_GRAPHITE_MAX_NB_SCOP_PARAMS,
838 "graphite-max-nb-scop-params",
d97c90ae 839 "maximum number of parameters in a SCoP",
4e7dd376
SP
840 10, 0, 0)
841
b6bb0094
SP
842/* Maximal number of basic blocks in the functions analyzed by Graphite. */
843
844DEFPARAM (PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION,
845 "graphite-max-bbs-per-function",
d97c90ae 846 "maximum number of basic blocks per function to be analyzed by Graphite",
b6bb0094
SP
847 100, 0, 0)
848
3881dee9
AB
849/* Avoid data dependence analysis on very large loops. */
850DEFPARAM (PARAM_LOOP_MAX_DATAREFS_FOR_DATADEPS,
851 "loop-max-datarefs-for-datadeps",
852 "Maximum number of datarefs in loop for building loop data dependencies",
853 1000, 0, 0)
854
b1fb9f56
JJ
855/* Avoid doing loop invariant motion on very large loops. */
856
857DEFPARAM (PARAM_LOOP_INVARIANT_MAX_BBS_IN_LOOP,
858 "loop-invariant-max-bbs-in-loop",
7b98c16f 859 "Max basic blocks number in loop for loop invariant motion",
b1fb9f56
JJ
860 10000, 0, 0)
861
a70d6342
IR
862/* Avoid SLP vectorization of large basic blocks. */
863DEFPARAM (PARAM_SLP_MAX_INSNS_IN_BB,
864 "slp-max-insns-in-bb",
865 "Maximum number of instructions in basic block to be considered for SLP vectorization",
866 1000, 0, 0)
867
db34470d
GS
868DEFPARAM (PARAM_MIN_INSN_TO_PREFETCH_RATIO,
869 "min-insn-to-prefetch-ratio",
7b98c16f 870 "Min. ratio of insns to prefetches to enable prefetching for "
db34470d 871 "a loop with an unknown trip count",
fe4cd14b 872 9, 0, 0)
db34470d
GS
873
874DEFPARAM (PARAM_PREFETCH_MIN_INSN_TO_MEM_RATIO,
875 "prefetch-min-insn-to-mem-ratio",
7b98c16f 876 "Min. ratio of insns to mem ops to enable prefetching in a loop",
db34470d
GS
877 3, 0, 0)
878
ec8c3978
JJ
879/* Set maximum hash table size for var tracking. */
880
881DEFPARAM (PARAM_MAX_VARTRACK_SIZE,
882 "max-vartrack-size",
883 "Max. size of var tracking hash tables",
884 50000000, 0, 0)
885
f0686e78
AO
886/* Set maximum recursion depth for var tracking expression expansion
887 and resolution. */
888
889DEFPARAM (PARAM_MAX_VARTRACK_EXPR_DEPTH,
890 "max-vartrack-expr-depth",
891 "Max. recursion depth for expanding var tracking expressions",
7f8925a1 892 12, 0, 0)
f0686e78 893
8ab1d2e9
JJ
894/* Set maximum length of value location list for which var tracking
895 should add reverse operations. */
896
897DEFPARAM (PARAM_MAX_VARTRACK_REVERSE_OP_SIZE,
898 "max-vartrack-reverse-op-size",
899 "Max. size of loc list for which reverse ops should be added",
900 50, 0, 0)
901
b5b8b0ac
AO
902/* Set minimum insn uid for non-debug insns. */
903
904DEFPARAM (PARAM_MIN_NONDEBUG_INSN_UID,
905 "min-nondebug-insn-uid",
906 "The minimum UID to be used for a nondebug insn",
907 0, 1, 0)
908
07ffa034
MJ
909DEFPARAM (PARAM_IPA_SRA_PTR_GROWTH_FACTOR,
910 "ipa-sra-ptr-growth-factor",
7b98c16f 911 "Maximum allowed growth of size of new parameters ipa-sra replaces "
07ffa034
MJ
912 "a pointer to an aggregate with",
913 2, 0, 0)
914
0a35513e
AH
915DEFPARAM (PARAM_TM_MAX_AGGREGATE_SIZE,
916 "tm-max-aggregate-size",
917 "Size in bytes after which thread-local aggregates should be "
918 "instrumented with the logging functions instead of save/restore "
919 "pairs",
920 9, 0, 0)
921
310bc633
MJ
922DEFPARAM (PARAM_IPA_CP_VALUE_LIST_SIZE,
923 "ipa-cp-value-list-size",
924 "Maximum size of a list of values associated with each parameter for "
925 "interprocedural constant propagation",
3949c4a7
MJ
926 8, 0, 0)
927
310bc633
MJ
928DEFPARAM (PARAM_IPA_CP_EVAL_THRESHOLD,
929 "ipa-cp-eval-threshold",
930 "Threshold ipa-cp opportunity evaluation that is still considered "
931 "beneficial to clone.",
932 500, 0, 0)
933
dfea20f1
MJ
934DEFPARAM (PARAM_IPA_MAX_AGG_ITEMS,
935 "ipa-max-agg-items",
936 "Maximum number of aggregate content items for a parameter in "
937 "jump functions and lattices",
938 16, 0, 0)
939
2c9561b5
MJ
940DEFPARAM (PARAM_IPA_CP_LOOP_HINT_BONUS,
941 "ipa-cp-loop-hint-bonus",
942 "Compile-time bonus IPA-CP assigns to candidates which make loop "
943 "bounds or strides known.",
944 64, 0, 0)
945
19321415
MJ
946DEFPARAM (PARAM_IPA_CP_ARRAY_INDEX_HINT_BONUS,
947 "ipa-cp-array-index-hint-bonus",
948 "Compile-time bonus IPA-CP assigns to candidates which make an array "
949 "index known.",
950 48, 0, 0)
951
852e4bd2
JH
952/* WHOPR partitioning configuration. */
953
954DEFPARAM (PARAM_LTO_PARTITIONS,
955 "lto-partitions",
1cd9e416 956 "Number of partitions the program should be split to",
9bfbc1eb 957 32, 1, 0)
852e4bd2
JH
958
959DEFPARAM (MIN_PARTITION_SIZE,
960 "lto-min-partition",
ac43f774 961 "Minimal size of a partition for LTO (in estimated instructions)",
852e4bd2 962 1000, 0, 0)
501c95ff
NF
963
964/* Diagnostic parameters. */
965
966DEFPARAM (CXX_MAX_NAMESPACES_FOR_DIAGNOSTIC_HELP,
967 "cxx-max-namespaces-for-diagnostic-help",
968 "Maximum number of namespaces to search for alternatives when "
969 "name lookup fails",
970 1000, 0, 0)
971
bfe068c3
IR
972/* Maximum number of conditional store pairs that can be sunk. */
973DEFPARAM (PARAM_MAX_STORES_TO_SINK,
974 "max-stores-to-sink",
975 "Maximum number of conditional store pairs that can be sunk",
976 2, 0, 0)
977
3aa439ed
MM
978/* Override CASE_VALUES_THRESHOLD of when to switch from doing switch
979 statements via if statements to using a table jump operation. If the value
980 is 0, the default CASE_VALUES_THRESHOLD will be used. */
981DEFPARAM (PARAM_CASE_VALUES_THRESHOLD,
982 "case-values-threshold",
983 "The smallest number of different values for which it is best to "
984 "use a jump-table instead of a tree of conditional branches, "
985 "if 0, use the default for the machine",
986 0, 0, 0)
987
1169e45d 988/* Data race flags for C++0x memory model compliance. */
86951993
AM
989DEFPARAM (PARAM_ALLOW_LOAD_DATA_RACES,
990 "allow-load-data-races",
991 "Allow new data races on loads to be introduced",
992 1, 0, 1)
993
1169e45d
AH
994DEFPARAM (PARAM_ALLOW_STORE_DATA_RACES,
995 "allow-store-data-races",
996 "Allow new data races on stores to be introduced",
997 1, 0, 1)
998
86951993
AM
999DEFPARAM (PARAM_ALLOW_PACKED_LOAD_DATA_RACES,
1000 "allow-packed-load-data-races",
1001 "Allow new data races on packed data loads to be introduced",
1002 1, 0, 1)
1003
1004DEFPARAM (PARAM_ALLOW_PACKED_STORE_DATA_RACES,
1005 "allow-packed-store-data-races",
1006 "Allow new data races on packed data stores to be introduced",
1007 1, 0, 1)
1008
df7b0cc4
EI
1009/* Reassociation width to be used by tree reassoc optimization. */
1010DEFPARAM (PARAM_TREE_REASSOC_WIDTH,
1011 "tree-reassoc-width",
1012 "Set the maximum number of instructions executed in parallel in "
1013 "reassociated tree. If 0, use the target dependent heuristic.",
1014 0, 0, 0)
1015
c9e93168
TV
1016DEFPARAM (PARAM_MAX_TAIL_MERGE_COMPARISONS,
1017 "max-tail-merge-comparisons",
1018 "Maximum amount of similar bbs to compare a bb with",
1019 10, 0, 0)
1020
1021DEFPARAM (PARAM_MAX_TAIL_MERGE_ITERATIONS,
1022 "max-tail-merge-iterations",
1023 "Maximum amount of iterations of the pass over a function",
1024 2, 0, 0)
bfe068c3 1025
19ecbcbc
JJ
1026/* Maximum number of strings for which strlen optimization pass will
1027 track string lenths. */
1028DEFPARAM (PARAM_MAX_TRACKED_STRLENS,
1029 "max-tracked-strlens",
1030 "Maximum number of strings for which strlen optimization pass will "
1031 "track string lengths",
1032 1000, 0, 0)
1033
c881de02
RS
1034/* Keep this in sync with the sched_pressure_algorithm enum. */
1035DEFPARAM (PARAM_SCHED_PRESSURE_ALGORITHM,
1036 "sched-pressure-algorithm",
1037 "Which -fsched-pressure algorithm to apply",
1038 1, 1, 2)
1039
ccdbfe93
BS
1040/* Maximum length of candidate scans in straight-line strength reduction. */
1041DEFPARAM (PARAM_MAX_SLSR_CANDIDATE_SCAN,
1042 "max-slsr-cand-scan",
1043 "Maximum length of candidate scans for straight-line "
1044 "strength reduction",
1045 50, 1, 999999)
1046
c6d9a88c
MM
1047/*
1048Local variables:
1049mode:c
f4b4a3e2
NC
1050End:
1051*/