]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/params.def
re PR libstdc++/24198 (Remove from the testsuite gnu_char_type (or fix it))
[thirdparty/gcc.git] / gcc / params.def
CommitLineData
c6d9a88c 1/* params.def - Run-time parameters.
e42febca 2 Copyright (C) 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
c6d9a88c
MM
3 Written by Mark Mitchell <mark@codesourcery.com>.
4
1322177d 5This file is part of GCC.
c6d9a88c 6
1322177d
LB
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 2, or (at your option) any later
10version.
c6d9a88c 11
1322177d
LB
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
c6d9a88c
MM
16
17You should have received a copy of the GNU General Public License
1322177d 18along with GCC; see the file COPYING. If not, write to the Free
366ccddb
KC
19Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
2002110-1301, USA.
c6d9a88c
MM
21
22*/
23
24/* This file contains definitions for language-independent
1eb68dca 25 parameters. The DEFPARAM macro takes 6 arguments:
c6d9a88c 26
0443f602 27 - The enumeral corresponding to this parameter.
c6d9a88c
MM
28
29 - The name that can be used to set this parameter using the
30 command-line option `--param <name>=<value>'.
31
32 - A help string explaining how the parameter is used.
33
1c4c47db
JO
34 - A default value for the parameter.
35
9e7705cb 36 - The minimum acceptable value for the parameter.
1eb68dca 37
9e7705cb 38 - The maximum acceptable value for the parameter (if greater than
1eb68dca
KZ
39 the minimum).
40
1c4c47db 41 Be sure to add an entry to invoke.texi summarizing the parameter. */
c6d9a88c 42
31617ef1
DB
43/* The maximum number of fields in a variable with only implicit uses
44 for which structure aliasing will consider trying to track each
45 field. The default is 5. */
46DEFPARAM (PARAM_SALIAS_MAX_IMPLICIT_FIELDS,
47 "salias-max-implicit-fields",
48 "The maximum number of fields in a structure variable without direct structure accesses that GCC will attempt to track separately",
49 5, 0, 0)
50
61b58001
BE
51/* The maximum structure size at which the scalar replacement of
52 aggregates (SRA) pass will perform block copies. The default
53 value, 0, implies that GCC will select the most appropriate size
54 itself. */
55DEFPARAM (PARAM_SRA_MAX_STRUCTURE_SIZE,
56 "sra-max-structure-size",
460f84ed
RH
57 "The maximum structure size (in bytes) for which GCC will "
58 "use by-element copies",
59 0, 0, 0)
60
61/* The maximum number of structure fields which the SRA pass will
62 instantiate to avoid block copies. The default value, 0, implies
63 that GCC will select the appropriate value itself. */
64DEFPARAM (PARAM_SRA_MAX_STRUCTURE_COUNT,
65 "sra-max-structure-count",
66 "The maximum number of structure fields for which GCC will "
67 "use by-element copies",
e06c0feb 68 0, 0, 0)
61b58001
BE
69
70/* The ratio between instantiated fields and the complete structure
71 size. We say that if the ratio of the number of bytes in
72 instantiated fields to the number of bytes in the complete
460f84ed
RH
73 structure exceeds this parameter, or if the number of instantiated
74 fields to the total number of fields exceeds this parameter, then
75 block copies are not used. The default is 75%. */
61b58001
BE
76DEFPARAM (PARAM_SRA_FIELD_STRUCTURE_RATIO,
77 "sra-field-structure-ratio",
e06c0feb
NS
78 "The threshold ratio between instantiated fields and the total structure size",
79 75, 0, 100)
61b58001 80
a6227154
KG
81/* The single function inlining limit. This is the maximum size
82 of a function counted in internal gcc instructions (not in
83 real machine instructions) that is eligible for inlining
84 by the tree inliner.
e5c4f28a 85 The default value is 450.
a6227154 86 Only functions marked inline (or methods defined in the class
e5c4f28a 87 definition for C++) are affected by this.
a6227154
KG
88 There are more restrictions to inlining: If inlined functions
89 call other functions, the already inlined instructions are
90 counted and once the recursive inline limit (see
91 "max-inline-insns" parameter) is exceeded, the acceptable size
92 gets decreased. */
93DEFPARAM (PARAM_MAX_INLINE_INSNS_SINGLE,
94 "max-inline-insns-single",
bc522472 95 "The maximum number of instructions in a single function eligible for inlining",
e5c4f28a 96 450, 0, 0)
a6227154 97
bc522472
KG
98/* The single function inlining limit for functions that are
99 inlined by virtue of -finline-functions (-O3).
100 This limit should be chosen to be below or equal to the limit
101 that is applied to functions marked inlined (or defined in the
102 class declaration in C++) given by the "max-inline-insns-single"
103 parameter.
e5c4f28a 104 The default value is 90. */
bc522472
KG
105DEFPARAM (PARAM_MAX_INLINE_INSNS_AUTO,
106 "max-inline-insns-auto",
107 "The maximum number of instructions when automatically inlining",
e5c4f28a 108 90, 0, 0)
bc522472 109
6de9cd9a
DN
110DEFPARAM (PARAM_MAX_INLINE_INSNS_RECURSIVE,
111 "max-inline-insns-recursive",
112 "The maximum number of instructions inline function can grow to via recursive inlining",
e5c4f28a 113 450, 0, 0)
6de9cd9a
DN
114
115DEFPARAM (PARAM_MAX_INLINE_INSNS_RECURSIVE_AUTO,
116 "max-inline-insns-recursive-auto",
117 "The maximum number of instructions non-inline function can grow to via recursive inlining",
e5c4f28a 118 450, 0, 0)
6de9cd9a
DN
119
120DEFPARAM (PARAM_MAX_INLINE_RECURSIVE_DEPTH,
121 "max-inline-recursive-depth",
122 "The maximum depth of recursive inlining for inline functions",
e06c0feb 123 8, 0, 0)
6de9cd9a
DN
124
125DEFPARAM (PARAM_MAX_INLINE_RECURSIVE_DEPTH_AUTO,
126 "max-inline-recursive-depth-auto",
127 "The maximum depth of recursive inlining for non-inline functions",
e06c0feb 128 8, 0, 0)
6de9cd9a 129
c5a4444c
JH
130DEFPARAM (PARAM_MIN_INLINE_RECURSIVE_PROBABILITY,
131 "min-inline-recursive-probability",
132 "Inline recursively only when the probability of call being executed exceeds the parameter",
133 10, 0, 0)
134
f37a4f14
RE
135/* Limit the number of expansions created by the variable expansion
136 optimization to avoid register pressure. */
137DEFPARAM (PARAM_MAX_VARIABLE_EXPANSIONS,
138 "max-variable-expansions-in-unroller",
139 "If -fvariable-expansion-in-unroller is used, the maximum number of \
140 times that an individual variable will be expanded \
141 during loop unrolling",
e06c0feb 142 1, 0, 0)
f37a4f14 143
0443f602
JO
144/* The maximum number of instructions to consider when looking for an
145 instruction to fill a delay slot. If more than this arbitrary
146 number of instructions is searched, the time savings from filling
147 the delay slot will be minimal so stop searching. Increasing
148 values mean more aggressive optimization, making the compile time
149 increase with probably small improvement in executable run time. */
150DEFPARAM (PARAM_MAX_DELAY_SLOT_INSN_SEARCH,
151 "max-delay-slot-insn-search",
152 "The maximum number of instructions to consider to fill a delay slot",
e06c0feb 153 100, 0, 0)
0443f602 154
d5d063d7
JO
155/* When trying to fill delay slots, the maximum number of instructions
156 to consider when searching for a block with valid live register
157 information. Increasing this arbitrarily chosen value means more
158 aggressive optimization, increasing the compile time. This
159 parameter should be removed when the delay slot code is rewritten
160 to maintain the control-flow graph. */
161DEFPARAM(PARAM_MAX_DELAY_SLOT_LIVE_SEARCH,
162 "max-delay-slot-live-search",
163 "The maximum number of instructions to consider to find accurate live register information",
e06c0feb 164 333, 0, 0)
d5d063d7 165
4a121cc3 166/* This parameter limits the number of branch elements that the
ff7cc307 167 scheduler will track anti-dependencies through without resetting
4a121cc3 168 the tracking mechanism. Large functions with few calls or barriers
ff7cc307 169 can generate lists containing many 1000's of dependencies. Generally
4a121cc3
AM
170 the compiler either uses all available memory, or runs for far too long. */
171DEFPARAM(PARAM_MAX_PENDING_LIST_LENGTH,
172 "max-pending-list-length",
173 "The maximum length of scheduling's pending operations list",
e06c0feb 174 32, 0, 0)
4a121cc3 175
b58b1157
JH
176DEFPARAM(PARAM_LARGE_FUNCTION_INSNS,
177 "large-function-insns",
178 "The size of function body to be considered large",
e5c4f28a 179 2700, 0, 0)
b58b1157
JH
180DEFPARAM(PARAM_LARGE_FUNCTION_GROWTH,
181 "large-function-growth",
2cc98056 182 "Maximal growth due to inlining of large function (in percent)",
e06c0feb 183 100, 0, 0)
b58b1157
JH
184DEFPARAM(PARAM_INLINE_UNIT_GROWTH,
185 "inline-unit-growth",
2cc98056 186 "how much can given compilation unit grow because of the inlining (in percent)",
e06c0feb 187 50, 0, 0)
e5c4f28a
RG
188DEFPARAM(PARAM_INLINE_CALL_COST,
189 "inline-call-cost",
2e0ea515 190 "expense of call operation relative to ordinary arithmetic operations",
e5c4f28a 191 16, 0, 0)
b58b1157 192
f1fa37ff
MM
193/* The GCSE optimization will be disabled if it would require
194 significantly more memory than this value. */
195DEFPARAM(PARAM_MAX_GCSE_MEMORY,
196 "max-gcse-memory",
197 "The maximum amount of memory to be allocated by GCSE",
e06c0feb 198 50 * 1024 * 1024, 0, 0)
991b6592 199/* The number of repetitions of copy/const prop and PRE to run. */
740f35a0
DB
200DEFPARAM(PARAM_MAX_GCSE_PASSES,
201 "max-gcse-passes",
202 "The maximum number of passes to make when doing GCSE",
e06c0feb 203 1, 1, 0)
f9957958
MH
204/* This is the threshold ratio when to perform partial redundancy
205 elimination after reload. We perform partial redundancy elimination
206 when the following holds:
207 (Redundant load execution count)
208 ------------------------------- >= GCSE_AFTER_RELOAD_PARTIAL_FRACTION
209 (Added loads execution count) */
210DEFPARAM(PARAM_GCSE_AFTER_RELOAD_PARTIAL_FRACTION,
211 "gcse-after-reload-partial-fraction",
c85ce869 212 "The threshold ratio for performing partial redundancy elimination after reload",
e06c0feb 213 3, 0, 0)
f9957958
MH
214/* This is the threshold ratio of the critical edges execution count compared to
215 the redundant loads execution count that permits performing the load
216 redundancy elimination in gcse after reload. */
217DEFPARAM(PARAM_GCSE_AFTER_RELOAD_CRITICAL_FRACTION,
218 "gcse-after-reload-critical-fraction",
c85ce869 219 "The threshold ratio of critical edges execution count that permit performing redundancy elimination after reload",
e06c0feb 220 10, 0, 0)
03e9dbc9 221/* This parameter limits the number of insns in a loop that will be unrolled,
701ad47e
JH
222 and by how much the loop is unrolled.
223
224 This limit should be at most half of the peeling limits: loop unroller
225 decides to not unroll loops that iterate fewer than 2*number of allowed
a1105617 226 unrollings and thus we would have loops that are neither peeled or unrolled
701ad47e 227 otherwise. */
03e9dbc9
MM
228DEFPARAM(PARAM_MAX_UNROLLED_INSNS,
229 "max-unrolled-insns",
230 "The maximum number of instructions to consider to unroll in a loop",
e06c0feb 231 200, 0, 0)
b17d5d7c
ZD
232/* This parameter limits how many times the loop is unrolled depending
233 on number of insns really executed in each iteration. */
234DEFPARAM(PARAM_MAX_AVERAGE_UNROLLED_INSNS,
235 "max-average-unrolled-insns",
236 "The maximum number of instructions to consider to unroll in a loop on average",
e06c0feb 237 80, 0, 0)
b17d5d7c
ZD
238/* The maximum number of unrollings of a single loop. */
239DEFPARAM(PARAM_MAX_UNROLL_TIMES,
240 "max-unroll-times",
241 "The maximum number of unrollings of a single loop",
e06c0feb 242 8, 0, 0)
b17d5d7c
ZD
243/* The maximum number of insns of a peeled loop. */
244DEFPARAM(PARAM_MAX_PEELED_INSNS,
245 "max-peeled-insns",
246 "The maximum number of insns of a peeled loop",
e06c0feb 247 400, 0, 0)
b17d5d7c
ZD
248/* The maximum number of peelings of a single loop. */
249DEFPARAM(PARAM_MAX_PEEL_TIMES,
250 "max-peel-times",
251 "The maximum number of peelings of a single loop",
e06c0feb 252 16, 0, 0)
b17d5d7c
ZD
253/* The maximum number of insns of a peeled loop. */
254DEFPARAM(PARAM_MAX_COMPLETELY_PEELED_INSNS,
255 "max-completely-peeled-insns",
256 "The maximum number of insns of a completely peeled loop",
e06c0feb 257 400, 0, 0)
b17d5d7c
ZD
258/* The maximum number of peelings of a single loop that is peeled completely. */
259DEFPARAM(PARAM_MAX_COMPLETELY_PEEL_TIMES,
260 "max-completely-peel-times",
261 "The maximum number of peelings of a single loop that is peeled completely",
e06c0feb 262 16, 0, 0)
b17d5d7c
ZD
263/* The maximum number of insns of a peeled loop that rolls only once. */
264DEFPARAM(PARAM_MAX_ONCE_PEELED_INSNS,
265 "max-once-peeled-insns",
266 "The maximum number of insns of a peeled loop that rolls only once",
e06c0feb 267 400, 0, 0)
194734e9 268
617b465c
ZD
269/* The maximum number of insns of an unswitched loop. */
270DEFPARAM(PARAM_MAX_UNSWITCH_INSNS,
271 "max-unswitch-insns",
272 "The maximum number of insns of an unswitched loop",
e06c0feb 273 50, 0, 0)
617b465c
ZD
274/* The maximum level of recursion in unswitch_single_loop. */
275DEFPARAM(PARAM_MAX_UNSWITCH_LEVEL,
276 "max-unswitch-level",
277 "The maximum number of unswitchings in a single loop",
e06c0feb 278 3, 0, 0)
617b465c 279
e9eb809d
ZD
280/* The maximum number of iterations of a loop the brute force algorithm
281 for analysis of # of iterations of the loop tries to evaluate. */
282DEFPARAM(PARAM_MAX_ITERATIONS_TO_TRACK,
283 "max-iterations-to-track",
e06c0feb
NS
284 "Bound on the number of iterations the brute force # of iterations analysis algorithm evaluates",
285 1000, 0, 0)
e9eb809d 286
e5626198
AZ
287DEFPARAM(PARAM_MAX_SMS_LOOP_NUMBER,
288 "max-sms-loop-number",
e06c0feb
NS
289 "Maximum number of loops to perform swing modulo scheduling on (mainly for debugging)",
290 -1, -1, -1)
291
e5626198
AZ
292/* This parameter is used to tune SMS MAX II calculations. */
293DEFPARAM(PARAM_SMS_MAX_II_FACTOR,
294 "sms-max-ii-factor",
e06c0feb
NS
295 "A factor for tuning the upper bound that swing modulo scheduler uses for scheduling a loop",
296 100, 0, 0)
e5626198
AZ
297DEFPARAM(PARAM_SMS_DFA_HISTORY,
298 "sms-dfa-history",
299 "The number of cycles the swing modulo scheduler considers when \
300 checking conflicts using DFA",
e06c0feb 301 0, 0, 0)
e5626198
AZ
302DEFPARAM(PARAM_SMS_LOOP_AVERAGE_COUNT_THRESHOLD,
303 "sms-loop-average-count-threshold",
e06c0feb
NS
304 "A threshold on the average loop count considered by the swing modulo scheduler",
305 0, 0, 0)
e5626198 306
194734e9
JH
307DEFPARAM(HOT_BB_COUNT_FRACTION,
308 "hot-bb-count-fraction",
e06c0feb
NS
309 "Select fraction of the maximal count of repetitions of basic block in program given basic block needs to have to be considered hot",
310 10000, 0, 0)
194734e9
JH
311DEFPARAM(HOT_BB_FREQUENCY_FRACTION,
312 "hot-bb-frequency-fraction",
e06c0feb
NS
313 "Select fraction of the maximal frequency of executions of basic block in function given basic block needs to have to be considered hot",
314 1000, 0, 0)
5c856b23
JH
315DEFPARAM(TRACER_DYNAMIC_COVERAGE_FEEDBACK,
316 "tracer-dynamic-coverage-feedback",
e06c0feb
NS
317 "The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is available",
318 95, 0, 100)
5c856b23
JH
319DEFPARAM(TRACER_DYNAMIC_COVERAGE,
320 "tracer-dynamic-coverage",
e06c0feb
NS
321 "The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is not available",
322 75, 0, 100)
5c856b23
JH
323DEFPARAM(TRACER_MAX_CODE_GROWTH,
324 "tracer-max-code-growth",
2cc98056 325 "Maximal code growth caused by tail duplication (in percent)",
e06c0feb 326 100, 0, 0)
5c856b23
JH
327DEFPARAM(TRACER_MIN_BRANCH_RATIO,
328 "tracer-min-branch-ratio",
e06c0feb
NS
329 "Stop reverse growth if the reverse probability of best edge is less than this threshold (in percent)",
330 10, 0, 100)
5c856b23
JH
331DEFPARAM(TRACER_MIN_BRANCH_PROBABILITY_FEEDBACK,
332 "tracer-min-branch-probability-feedback",
e06c0feb
NS
333 "Stop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is available",
334 80, 0, 100)
5c856b23
JH
335DEFPARAM(TRACER_MIN_BRANCH_PROBABILITY,
336 "tracer-min-branch-probability",
e06c0feb
NS
337 "Stop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is not available",
338 50, 0, 100)
3788cc17 339
5f24e0dc
RH
340/* The maximum number of incoming edges to consider for crossjumping. */
341DEFPARAM(PARAM_MAX_CROSSJUMP_EDGES,
342 "max-crossjump-edges",
343 "The maximum number of incoming edges to consider for crossjumping",
e06c0feb 344 100, 0, 0)
5f24e0dc 345
12183e0f
PH
346/* The minimum number of matching instructions to consider for crossjumping. */
347DEFPARAM(PARAM_MIN_CROSSJUMP_INSNS,
348 "min-crossjump-insns",
349 "The minimum number of matching instructions to consider for crossjumping",
e06c0feb 350 5, 0, 0)
12183e0f 351
bbcb0c05
SB
352/* The maximum number of insns to duplicate when unfactoring computed gotos. */
353DEFPARAM(PARAM_MAX_GOTO_DUPLICATION_INSNS,
354 "max-goto-duplication-insns",
355 "The maximum number of insns to duplicate when unfactoring computed gotos",
356 8, 0, 0)
357
9bf8cfbf
ZD
358/* The maximum length of path considered in cse. */
359DEFPARAM(PARAM_MAX_CSE_PATH_LENGTH,
360 "max-cse-path-length",
2cc98056 361 "The maximum length of path considered in cse",
e06c0feb 362 10, 0, 0)
9bf8cfbf 363
a7e5372d
ZD
364/* The cost of expression in loop invariant motion that is considered
365 expensive. */
366DEFPARAM(PARAM_LIM_EXPENSIVE,
367 "lim-expensive",
368 "The minimum cost of an expensive expression in the loop invariant motion",
e06c0feb 369 20, 0, 0)
a7e5372d 370
8b11a64c
ZD
371/* Bound on number of candidates for induction variables below that
372 all candidates are considered for each use in induction variable
373 optimizations. */
374
375DEFPARAM(PARAM_IV_CONSIDER_ALL_CANDIDATES_BOUND,
376 "iv-consider-all-candidates-bound",
377 "Bound on number of candidates below that all candidates are considered in iv optimizations",
e06c0feb 378 30, 0, 0)
8b11a64c
ZD
379
380/* The induction variable optimizations give up on loops that contain more
381 induction variable uses. */
382
383DEFPARAM(PARAM_IV_MAX_CONSIDERED_USES,
384 "iv-max-considered-uses",
385 "Bound on number of iv uses in loop optimized in iv optimizations",
e06c0feb 386 250, 0, 0)
8b11a64c 387
36f5ada1
ZD
388/* If there are at most this number of ivs in the set, try removing unnecessary
389 ivs from the set always. */
390
391DEFPARAM(PARAM_IV_ALWAYS_PRUNE_CAND_SET_BOUND,
392 "iv-always-prune-cand-set-bound",
393 "If number of candidates in the set is smaller, we always try to remove unused ivs during its optimization",
394 10, 0, 0)
395
2412d35c
SP
396DEFPARAM(PARAM_SCEV_MAX_EXPR_SIZE,
397 "scev-max-expr-size",
398 "Bound on size of expressions used in the scalar evolutions analyzer",
399 20, 0, 0)
400
c12cc930
KB
401DEFPARAM(PARAM_VECT_MAX_VERSION_CHECKS,
402 "vect-max-version-checks",
403 "Bound on number of runtime checks inserted by the vectorizer's loop versioning",
404 6, 0, 0)
405
6de9cd9a
DN
406/* The product of the next two is used to decide whether or not to
407 use .GLOBAL_VAR. See tree-dfa.c. */
408DEFPARAM(PARAM_GLOBAL_VAR_THRESHOLD,
409 "global-var-threshold",
410 "Given N calls and V call-clobbered vars in a function. Use .GLOBAL_VAR if NxV is larger than this limit",
e06c0feb 411 500000, 0, 0)
6de9cd9a 412
c65ecebc
JH
413DEFPARAM(PARAM_MAX_CSELIB_MEMORY_LOCATIONS,
414 "max-cselib-memory-locations",
415 "The maximum memory locations recorded by cselib",
e06c0feb 416 500, 0, 0)
c65ecebc 417
3788cc17
ZW
418#ifdef ENABLE_GC_ALWAYS_COLLECT
419# define GGC_MIN_EXPAND_DEFAULT 0
737c38d1 420# define GGC_MIN_HEAPSIZE_DEFAULT 0
3788cc17
ZW
421#else
422# define GGC_MIN_EXPAND_DEFAULT 30
737c38d1 423# define GGC_MIN_HEAPSIZE_DEFAULT 4096
3788cc17
ZW
424#endif
425
426DEFPARAM(GGC_MIN_EXPAND,
427 "ggc-min-expand",
e06c0feb
NS
428 "Minimum heap expansion to trigger garbage collection, as a percentage of the total size of the heap",
429 GGC_MIN_EXPAND_DEFAULT, 0, 0)
3788cc17 430
3788cc17
ZW
431DEFPARAM(GGC_MIN_HEAPSIZE,
432 "ggc-min-heapsize",
2cc98056 433 "Minimum heap size before we start collecting garbage, in kilobytes",
e06c0feb 434 GGC_MIN_HEAPSIZE_DEFAULT, 0, 0)
737c38d1
GK
435
436#undef GGC_MIN_EXPAND_DEFAULT
437#undef GGC_MIN_HEAPSIZE_DEFAULT
3788cc17 438
0bcf8261
JH
439DEFPARAM(PARAM_MAX_RELOAD_SEARCH_INSNS,
440 "max-reload-search-insns",
441 "The maximum number of instructions to search backward when looking for equivalent reload",
e06c0feb 442 100, 0, 0)
0bcf8261 443
6de9cd9a
DN
444DEFPARAM(PARAM_MAX_ALIASED_VOPS,
445 "max-aliased-vops",
c85ce869 446 "The maximum number of virtual operands allowed to represent aliases before triggering alias grouping",
e06c0feb 447 500, 0, 0)
6de9cd9a 448
f72c6b56
DE
449DEFPARAM(PARAM_MAX_SCHED_REGION_BLOCKS,
450 "max-sched-region-blocks",
451 "The maximum number of blocks in a region to be considered for interblock scheduling",
e06c0feb 452 10, 0, 0)
f72c6b56
DE
453
454DEFPARAM(PARAM_MAX_SCHED_REGION_INSNS,
455 "max-sched-region-insns",
456 "The maximum number of insns in a region to be considered for interblock scheduling",
e06c0feb 457 100, 0, 0)
f72c6b56 458
6f48c21a
PS
459DEFPARAM(PARAM_MIN_SPEC_PROB,
460 "min-spec-prob",
461 "The minimum probability of reaching a source block for interblock speculative scheduling",
462 40, 0, 0)
463
49c3b9a8
JJ
464DEFPARAM(PARAM_MAX_LAST_VALUE_RTL,
465 "max-last-value-rtl",
466 "The maximum number of RTL nodes that can be recorded as combiner's last value",
467 10000, 0, 0)
468
89b0433e
NS
469/* INTEGER_CST nodes are shared for values [{-1,0} .. N) for
470 {signed,unsigned} integral types. This determines N.
471 Experimentation shows 256 to be a good value. */
472DEFPARAM (PARAM_INTEGER_SHARE_LIMIT,
473 "integer-share-limit",
474 "The upper bound for sharing integer constants",
e06c0feb 475 256, 2, 2)
89b0433e 476
84d65814
DN
477/* Incremental SSA updates for virtual operands may be very slow if
478 there is a large number of mappings to process. In those cases, it
479 is faster to rewrite the virtual symbols from scratch as if they
480 had been recently introduced. This heuristic cannot be applied to
481 SSA mappings for real SSA names, only symbols kept in FUD chains.
482
483 PARAM_MIN_VIRTUAL_MAPPINGS specifies the minimum number of virtual
484 mappings that should be registered to trigger the heuristic.
485
486 PARAM_VIRTUAL_MAPPINGS_TO_SYMS_RATIO specifies the ratio between
487 mappings and symbols. If the number of virtual mappings is
488 PARAM_VIRTUAL_MAPPINGS_TO_SYMS_RATIO bigger than the number of
489 virtual symbols to be updated, then the updater switches to a full
490 update for those symbols. */
491DEFPARAM (PARAM_MIN_VIRTUAL_MAPPINGS,
492 "min-virtual-mappings",
493 "Minimum number of virtual mappings to consider switching to full virtual renames",
494 100, 0, 0)
495
496DEFPARAM (PARAM_VIRTUAL_MAPPINGS_TO_SYMS_RATIO,
497 "virtual-mappings-ratio",
498 "Ratio between virtual mappings and virtual symbols to do full virtual renames",
499 3, 0, 0)
500
7d69de61
RH
501DEFPARAM (PARAM_SSP_BUFFER_SIZE,
502 "ssp-buffer-size",
503 "The lower bound for a buffer to be considered for stack smashing protection",
504 8, 1, 0)
505
c6d9a88c
MM
506/*
507Local variables:
508mode:c
509End: */