2015-06-11 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / params.def
blob3e4ba3ad6ceda9d87ae4150d045572ac9808bb24
1 /* params.def - Run-time parameters.
2 Copyright (C) 2001-2015 Free Software Foundation, Inc.
3 Written by Mark Mitchell <mark@codesourcery.com>.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* This file contains definitions for language-independent
22 parameters. The DEFPARAM macro takes 6 arguments:
24 - The enumeral corresponding to this parameter.
26 - The name that can be used to set this parameter using the
27 command-line option `--param <name>=<value>'.
29 - A help string explaining how the parameter is used.
31 - A default value for the parameter.
33 - The minimum acceptable value for the parameter.
35 - The maximum acceptable value for the parameter (if greater than
36 the minimum).
38 Be sure to add an entry to invoke.texi summarizing the parameter. */
40 /* When branch is predicted to be taken with probability lower than this
41 threshold (in percent), then it is considered well predictable. */
42 DEFPARAM (PARAM_PREDICTABLE_BRANCH_OUTCOME,
43 "predictable-branch-outcome",
44 "Maximal estimated outcome of branch considered predictable",
45 2, 0, 50)
47 DEFPARAM (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)
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.
56 The default value is 450.
57 Only functions marked inline (or methods defined in the class
58 definition for C++) are affected by this.
59 There are more restrictions to inlining: If inlined functions
60 call other functions, the already inlined instructions are
61 counted and once the recursive inline limit (see
62 "max-inline-insns" parameter) is exceeded, the acceptable size
63 gets decreased. */
64 DEFPARAM (PARAM_MAX_INLINE_INSNS_SINGLE,
65 "max-inline-insns-single",
66 "The maximum number of instructions in a single function eligible for inlining",
67 400, 0, 0)
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.
75 The default value is 40. */
76 DEFPARAM (PARAM_MAX_INLINE_INSNS_AUTO,
77 "max-inline-insns-auto",
78 "The maximum number of instructions when automatically inlining",
79 40, 0, 0)
81 DEFPARAM (PARAM_MAX_INLINE_INSNS_RECURSIVE,
82 "max-inline-insns-recursive",
83 "The maximum number of instructions inline function can grow to via recursive inlining",
84 450, 0, 0)
86 DEFPARAM (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",
89 450, 0, 0)
91 DEFPARAM (PARAM_MAX_INLINE_RECURSIVE_DEPTH,
92 "max-inline-recursive-depth",
93 "The maximum depth of recursive inlining for inline functions",
94 8, 0, 0)
96 DEFPARAM (PARAM_MAX_INLINE_RECURSIVE_DEPTH_AUTO,
97 "max-inline-recursive-depth-auto",
98 "The maximum depth of recursive inlining for non-inline functions",
99 8, 0, 0)
101 DEFPARAM (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)
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. */
109 DEFPARAM (PARAM_EARLY_INLINER_MAX_ITERATIONS,
110 "max-early-inliner-iterations",
111 "The maximum number of nested indirect inlining performed by early inliner",
112 1, 0, 0)
114 /* Limit on probability of entry BB. */
115 DEFPARAM (PARAM_COMDAT_SHARING_PROBABILITY,
116 "comdat-sharing-probability",
117 "Probability that COMDAT function will be shared with different compilation unit",
118 20, 0, 0)
120 /* Limit on probability of entry BB. */
121 DEFPARAM (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)
126 /* Limit the number of expansions created by the variable expansion
127 optimization to avoid register pressure. */
128 DEFPARAM (PARAM_MAX_VARIABLE_EXPANSIONS,
129 "max-variable-expansions-in-unroller",
130 "If -fvariable-expansion-in-unroller is used, the maximum number of times that an individual variable will be expanded during loop unrolling",
131 1, 0, 0)
133 /* Limit loop autovectorization to loops with large enough iteration count. */
134 DEFPARAM (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",
137 1, 1, 0)
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. */
145 DEFPARAM (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",
148 100, 0, 0)
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. */
156 DEFPARAM(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",
159 333, 0, 0)
161 /* This parameter limits the number of branch elements that the
162 scheduler will track anti-dependencies through without resetting
163 the tracking mechanism. Large functions with few calls or barriers
164 can generate lists containing many 1000's of dependencies. Generally
165 the compiler either uses all available memory, or runs for far too long. */
166 DEFPARAM(PARAM_MAX_PENDING_LIST_LENGTH,
167 "max-pending-list-length",
168 "The maximum length of scheduling's pending operations list",
169 32, 0, 0)
171 /* This parameter limits the number of backtracking attempts when using the
172 haifa scheduler for modulo scheduling. */
173 DEFPARAM(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)
178 DEFPARAM(PARAM_LARGE_FUNCTION_INSNS,
179 "large-function-insns",
180 "The size of function body to be considered large",
181 2700, 0, 0)
182 DEFPARAM(PARAM_LARGE_FUNCTION_GROWTH,
183 "large-function-growth",
184 "Maximal growth due to inlining of large function (in percent)",
185 100, 0, 0)
186 DEFPARAM(PARAM_LARGE_UNIT_INSNS,
187 "large-unit-insns",
188 "The size of translation unit to be considered large",
189 10000, 0, 0)
190 DEFPARAM(PARAM_INLINE_UNIT_GROWTH,
191 "inline-unit-growth",
192 "How much can given compilation unit grow because of the inlining (in percent)",
193 20, 0, 0)
194 DEFPARAM(PARAM_IPCP_UNIT_GROWTH,
195 "ipcp-unit-growth",
196 "How much can given compilation unit grow because of the interprocedural constant propagation (in percent)",
197 10, 0, 0)
198 DEFPARAM(PARAM_EARLY_INLINING_INSNS,
199 "early-inlining-insns",
200 "Maximal estimated growth of function body caused by early inlining of single call",
201 14, 0, 0)
202 DEFPARAM(PARAM_LARGE_STACK_FRAME,
203 "large-stack-frame",
204 "The size of stack frame to be considered large",
205 256, 0, 0)
206 DEFPARAM(PARAM_STACK_FRAME_GROWTH,
207 "large-stack-frame-growth",
208 "Maximal stack frame growth due to inlining (in percent)",
209 1000, 0, 0)
211 /* The GCSE optimization will be disabled if it would require
212 significantly more memory than this value. */
213 DEFPARAM(PARAM_MAX_GCSE_MEMORY,
214 "max-gcse-memory",
215 "The maximum amount of memory to be allocated by GCSE",
216 50 * 1024 * 1024, 0, 0)
218 /* The GCSE optimization of an expression will avoided if the ratio of
219 insertions to deletions is greater than this value. */
220 DEFPARAM(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)
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) */
231 DEFPARAM(PARAM_GCSE_AFTER_RELOAD_PARTIAL_FRACTION,
232 "gcse-after-reload-partial-fraction",
233 "The threshold ratio for performing partial redundancy elimination after reload",
234 3, 0, 0)
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. */
238 DEFPARAM(PARAM_GCSE_AFTER_RELOAD_CRITICAL_FRACTION,
239 "gcse-after-reload-critical-fraction",
240 "The threshold ratio of critical edges execution count that permit performing redundancy elimination after reload",
241 10, 0, 0)
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. */
246 DEFPARAM(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. */
252 DEFPARAM(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)
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. */
260 DEFPARAM(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)
266 /* When synthesizing expnonentiation by a real constant operations using square
267 roots, this controls how deep sqrt chains we are willing to generate. */
268 DEFPARAM(PARAM_MAX_POW_SQRT_DEPTH,
269 "max-pow-sqrt-depth",
270 "Maximum depth of sqrt chains to use when synthesizing exponentiation by a real constant",
271 5, 1, 32)
273 /* This parameter limits the number of insns in a loop that will be unrolled,
274 and by how much the loop is unrolled.
276 This limit should be at most half of the peeling limits: loop unroller
277 decides to not unroll loops that iterate fewer than 2*number of allowed
278 unrollings and thus we would have loops that are neither peeled or unrolled
279 otherwise. */
280 DEFPARAM(PARAM_MAX_UNROLLED_INSNS,
281 "max-unrolled-insns",
282 "The maximum number of instructions to consider to unroll in a loop",
283 200, 0, 0)
284 /* This parameter limits how many times the loop is unrolled depending
285 on number of insns really executed in each iteration. */
286 DEFPARAM(PARAM_MAX_AVERAGE_UNROLLED_INSNS,
287 "max-average-unrolled-insns",
288 "The maximum number of instructions to consider to unroll in a loop on average",
289 80, 0, 0)
290 /* The maximum number of unrollings of a single loop. */
291 DEFPARAM(PARAM_MAX_UNROLL_TIMES,
292 "max-unroll-times",
293 "The maximum number of unrollings of a single loop",
294 8, 0, 0)
295 /* The maximum number of insns of a peeled loop. */
296 DEFPARAM(PARAM_MAX_PEELED_INSNS,
297 "max-peeled-insns",
298 "The maximum number of insns of a peeled loop",
299 100, 0, 0)
300 /* The maximum number of peelings of a single loop. */
301 DEFPARAM(PARAM_MAX_PEEL_TIMES,
302 "max-peel-times",
303 "The maximum number of peelings of a single loop",
304 16, 0, 0)
305 /* The maximum number of peelings of a single loop that is peeled completely. */
306 DEFPARAM(PARAM_MAX_PEEL_BRANCHES,
307 "max-peel-branches",
308 "The maximum number of branches on the path through the peeled sequence",
309 32, 0, 0)
310 /* The maximum number of insns of a peeled loop. */
311 DEFPARAM(PARAM_MAX_COMPLETELY_PEELED_INSNS,
312 "max-completely-peeled-insns",
313 "The maximum number of insns of a completely peeled loop",
314 200, 0, 0)
315 /* The maximum number of peelings of a single loop that is peeled completely. */
316 DEFPARAM(PARAM_MAX_COMPLETELY_PEEL_TIMES,
317 "max-completely-peel-times",
318 "The maximum number of peelings of a single loop that is peeled completely",
319 16, 0, 0)
320 /* The maximum number of insns of a peeled loop that rolls only once. */
321 DEFPARAM(PARAM_MAX_ONCE_PEELED_INSNS,
322 "max-once-peeled-insns",
323 "The maximum number of insns of a peeled loop that rolls only once",
324 400, 0, 0)
325 /* The maximum depth of a loop nest we completely peel. */
326 DEFPARAM(PARAM_MAX_UNROLL_ITERATIONS,
327 "max-completely-peel-loop-nest-depth",
328 "The maximum depth of a loop nest we completely peel",
329 8, 0, 0)
331 /* The maximum number of insns of an unswitched loop. */
332 DEFPARAM(PARAM_MAX_UNSWITCH_INSNS,
333 "max-unswitch-insns",
334 "The maximum number of insns of an unswitched loop",
335 50, 0, 0)
336 /* The maximum level of recursion in unswitch_single_loop. */
337 DEFPARAM(PARAM_MAX_UNSWITCH_LEVEL,
338 "max-unswitch-level",
339 "The maximum number of unswitchings in a single loop",
340 3, 0, 0)
342 /* The maximum number of iterations of a loop the brute force algorithm
343 for analysis of # of iterations of the loop tries to evaluate. */
344 DEFPARAM(PARAM_MAX_ITERATIONS_TO_TRACK,
345 "max-iterations-to-track",
346 "Bound on the number of iterations the brute force # of iterations analysis algorithm evaluates",
347 1000, 0, 0)
348 /* A cutoff to avoid costly computations of the number of iterations in
349 the doloop transformation. */
350 DEFPARAM(PARAM_MAX_ITERATIONS_COMPUTATION_COST,
351 "max-iterations-computation-cost",
352 "Bound on the cost of an expression to compute the number of iterations",
353 10, 0, 0)
355 /* This parameter is used to tune SMS MAX II calculations. */
356 DEFPARAM(PARAM_SMS_MAX_II_FACTOR,
357 "sms-max-ii-factor",
358 "A factor for tuning the upper bound that swing modulo scheduler uses for scheduling a loop",
359 100, 0, 0)
360 /* The minimum value of stage count that swing modulo scheduler will generate. */
361 DEFPARAM(PARAM_SMS_MIN_SC,
362 "sms-min-sc",
363 "The minimum value of stage count that swing modulo scheduler will generate.",
364 2, 1, 1)
365 DEFPARAM(PARAM_SMS_DFA_HISTORY,
366 "sms-dfa-history",
367 "The number of cycles the swing modulo scheduler considers when checking conflicts using DFA",
368 0, 0, 0)
369 DEFPARAM(PARAM_SMS_LOOP_AVERAGE_COUNT_THRESHOLD,
370 "sms-loop-average-count-threshold",
371 "A threshold on the average loop count considered by the swing modulo scheduler",
372 0, 0, 0)
374 DEFPARAM(HOT_BB_COUNT_WS_PERMILLE,
375 "hot-bb-count-ws-permille",
376 "A basic block profile count is considered hot if it contributes to "
377 "the given permillage of the entire profiled execution",
378 999, 0, 1000)
379 DEFPARAM(HOT_BB_FREQUENCY_FRACTION,
380 "hot-bb-frequency-fraction",
381 "Select fraction of the maximal frequency of executions of basic block in function given basic block needs to have to be considered hot",
382 1000, 0, 0)
384 DEFPARAM(UNLIKELY_BB_COUNT_FRACTION,
385 "unlikely-bb-count-fraction",
386 "The minimum fraction of profile runs a given basic block execution count must be not to be considered unlikely",
387 20, 1, 10000)
389 DEFPARAM (PARAM_ALIGN_THRESHOLD,
390 "align-threshold",
391 "Select fraction of the maximal frequency of executions of basic block in function given basic block get alignment",
392 100, 1, 0)
394 DEFPARAM (PARAM_ALIGN_LOOP_ITERATIONS,
395 "align-loop-iterations",
396 "Loops iterating at least selected number of iterations will get loop alignement.",
397 4, 0, 0)
399 /* For guessed profiles, the loops having unknown number of iterations
400 are predicted to iterate relatively few (10) times at average.
401 For functions containing one loop with large known number of iterations
402 and other loops having unbounded loops we would end up predicting all
403 the other loops cold that is not usually the case. So we need to artificially
404 flatten the profile.
406 We need to cut the maximal predicted iterations to large enough iterations
407 so the loop appears important, but safely within maximum hotness
408 range. */
410 DEFPARAM(PARAM_MAX_PREDICTED_ITERATIONS,
411 "max-predicted-iterations",
412 "The maximum number of loop iterations we predict statically",
413 100, 0, 0)
415 /* This parameter controls the probability of builtin_expect. The default
416 value is 90%. This empirical value is obtained through the weighted
417 probability of FDO counters (with the FDO count value as the weight)
418 in some real world programs:
419 (1) Google performance test benchmarks: the probability is 0.9081.
420 (2) Linux 3.3 kernel running Google search workload: the probability
421 is 0.8717. */
423 DEFPARAM(BUILTIN_EXPECT_PROBABILITY,
424 "builtin-expect-probability",
425 "Set the estimated probability in percentage for builtin expect. The default value is 90% probability.",
426 90, 0, 100)
427 DEFPARAM(TRACER_DYNAMIC_COVERAGE_FEEDBACK,
428 "tracer-dynamic-coverage-feedback",
429 "The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is available",
430 95, 0, 100)
431 DEFPARAM(TRACER_DYNAMIC_COVERAGE,
432 "tracer-dynamic-coverage",
433 "The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is not available",
434 75, 0, 100)
435 DEFPARAM(TRACER_MAX_CODE_GROWTH,
436 "tracer-max-code-growth",
437 "Maximal code growth caused by tail duplication (in percent)",
438 100, 0, 0)
439 DEFPARAM(TRACER_MIN_BRANCH_RATIO,
440 "tracer-min-branch-ratio",
441 "Stop reverse growth if the reverse probability of best edge is less than this threshold (in percent)",
442 10, 0, 100)
443 DEFPARAM(TRACER_MIN_BRANCH_PROBABILITY_FEEDBACK,
444 "tracer-min-branch-probability-feedback",
445 "Stop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is available",
446 80, 0, 100)
447 DEFPARAM(TRACER_MIN_BRANCH_PROBABILITY,
448 "tracer-min-branch-probability",
449 "Stop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is not available",
450 50, 0, 100)
452 /* The maximum number of incoming edges to consider for crossjumping. */
453 DEFPARAM(PARAM_MAX_CROSSJUMP_EDGES,
454 "max-crossjump-edges",
455 "The maximum number of incoming edges to consider for crossjumping",
456 100, 0, 0)
458 /* The minimum number of matching instructions to consider for crossjumping. */
459 DEFPARAM(PARAM_MIN_CROSSJUMP_INSNS,
460 "min-crossjump-insns",
461 "The minimum number of matching instructions to consider for crossjumping",
462 5, 1, 0)
464 /* The maximum number expansion factor when copying basic blocks. */
465 DEFPARAM(PARAM_MAX_GROW_COPY_BB_INSNS,
466 "max-grow-copy-bb-insns",
467 "The maximum expansion factor when copying basic blocks",
468 8, 0, 0)
470 /* The maximum number of insns to duplicate when unfactoring computed gotos. */
471 DEFPARAM(PARAM_MAX_GOTO_DUPLICATION_INSNS,
472 "max-goto-duplication-insns",
473 "The maximum number of insns to duplicate when unfactoring computed gotos",
474 8, 0, 0)
476 /* The maximum length of path considered in cse. */
477 DEFPARAM(PARAM_MAX_CSE_PATH_LENGTH,
478 "max-cse-path-length",
479 "The maximum length of path considered in cse",
480 10, 1, 0)
481 DEFPARAM(PARAM_MAX_CSE_INSNS,
482 "max-cse-insns",
483 "The maximum instructions CSE process before flushing",
484 1000, 0, 0)
486 /* The cost of expression in loop invariant motion that is considered
487 expensive. */
488 DEFPARAM(PARAM_LIM_EXPENSIVE,
489 "lim-expensive",
490 "The minimum cost of an expensive expression in the loop invariant motion",
491 20, 0, 0)
493 /* Bound on number of candidates for induction variables below that
494 all candidates are considered for each use in induction variable
495 optimizations. */
497 DEFPARAM(PARAM_IV_CONSIDER_ALL_CANDIDATES_BOUND,
498 "iv-consider-all-candidates-bound",
499 "Bound on number of candidates below that all candidates are considered in iv optimizations",
500 30, 0, 0)
502 /* The induction variable optimizations give up on loops that contain more
503 induction variable uses. */
505 DEFPARAM(PARAM_IV_MAX_CONSIDERED_USES,
506 "iv-max-considered-uses",
507 "Bound on number of iv uses in loop optimized in iv optimizations",
508 250, 0, 0)
510 /* If there are at most this number of ivs in the set, try removing unnecessary
511 ivs from the set always. */
513 DEFPARAM(PARAM_IV_ALWAYS_PRUNE_CAND_SET_BOUND,
514 "iv-always-prune-cand-set-bound",
515 "If number of candidates in the set is smaller, we always try to remove unused ivs during its optimization",
516 10, 0, 0)
518 DEFPARAM(PARAM_SCEV_MAX_EXPR_SIZE,
519 "scev-max-expr-size",
520 "Bound on size of expressions used in the scalar evolutions analyzer",
521 100, 0, 0)
523 DEFPARAM(PARAM_SCEV_MAX_EXPR_COMPLEXITY,
524 "scev-max-expr-complexity",
525 "Bound on the complexity of the expressions in the scalar evolutions analyzer",
526 10, 0, 0)
528 DEFPARAM(PARAM_OMEGA_MAX_VARS,
529 "omega-max-vars",
530 "Bound on the number of variables in Omega constraint systems",
531 128, 0, 0)
533 DEFPARAM(PARAM_OMEGA_MAX_GEQS,
534 "omega-max-geqs",
535 "Bound on the number of inequalities in Omega constraint systems",
536 256, 0, 0)
538 DEFPARAM(PARAM_OMEGA_MAX_EQS,
539 "omega-max-eqs",
540 "Bound on the number of equalities in Omega constraint systems",
541 128, 0, 0)
543 DEFPARAM(PARAM_OMEGA_MAX_WILD_CARDS,
544 "omega-max-wild-cards",
545 "Bound on the number of wild cards in Omega constraint systems",
546 18, 0, 0)
548 DEFPARAM(PARAM_OMEGA_HASH_TABLE_SIZE,
549 "omega-hash-table-size",
550 "Bound on the size of the hash table in Omega constraint systems",
551 550, 0, 0)
553 DEFPARAM(PARAM_OMEGA_MAX_KEYS,
554 "omega-max-keys",
555 "Bound on the number of keys in Omega constraint systems",
556 500, 0, 0)
558 DEFPARAM(PARAM_OMEGA_ELIMINATE_REDUNDANT_CONSTRAINTS,
559 "omega-eliminate-redundant-constraints",
560 "When set to 1, use expensive methods to eliminate all redundant constraints",
561 0, 0, 1)
563 DEFPARAM(PARAM_VECT_MAX_VERSION_FOR_ALIGNMENT_CHECKS,
564 "vect-max-version-for-alignment-checks",
565 "Bound on number of runtime checks inserted by the vectorizer's loop versioning for alignment check",
566 6, 0, 0)
568 DEFPARAM(PARAM_VECT_MAX_VERSION_FOR_ALIAS_CHECKS,
569 "vect-max-version-for-alias-checks",
570 "Bound on number of runtime checks inserted by the vectorizer's loop versioning for alias check",
571 10, 0, 0)
573 DEFPARAM(PARAM_VECT_MAX_PEELING_FOR_ALIGNMENT,
574 "vect-max-peeling-for-alignment",
575 "Max number of loop peels to enhancement alignment of data references in a loop",
576 -1, -1, 64)
578 DEFPARAM(PARAM_MAX_CSELIB_MEMORY_LOCATIONS,
579 "max-cselib-memory-locations",
580 "The maximum memory locations recorded by cselib",
581 500, 0, 0)
583 #ifdef ENABLE_GC_ALWAYS_COLLECT
584 # define GGC_MIN_EXPAND_DEFAULT 0
585 # define GGC_MIN_HEAPSIZE_DEFAULT 0
586 #else
587 # define GGC_MIN_EXPAND_DEFAULT 30
588 # define GGC_MIN_HEAPSIZE_DEFAULT 4096
589 #endif
591 DEFPARAM(GGC_MIN_EXPAND,
592 "ggc-min-expand",
593 "Minimum heap expansion to trigger garbage collection, as a percentage of the total size of the heap",
594 GGC_MIN_EXPAND_DEFAULT, 0, 0)
596 DEFPARAM(GGC_MIN_HEAPSIZE,
597 "ggc-min-heapsize",
598 "Minimum heap size before we start collecting garbage, in kilobytes",
599 GGC_MIN_HEAPSIZE_DEFAULT, 0, 0)
601 #undef GGC_MIN_EXPAND_DEFAULT
602 #undef GGC_MIN_HEAPSIZE_DEFAULT
604 DEFPARAM(PARAM_MAX_RELOAD_SEARCH_INSNS,
605 "max-reload-search-insns",
606 "The maximum number of instructions to search backward when looking for equivalent reload",
607 100, 0, 0)
609 DEFPARAM(PARAM_SINK_FREQUENCY_THRESHOLD,
610 "sink-frequency-threshold",
611 "Target block's relative execution frequency (as a percentage) required to sink a statement",
612 75, 0, 100)
614 DEFPARAM(PARAM_MAX_SCHED_REGION_BLOCKS,
615 "max-sched-region-blocks",
616 "The maximum number of blocks in a region to be considered for interblock scheduling",
617 10, 0, 0)
619 DEFPARAM(PARAM_MAX_SCHED_REGION_INSNS,
620 "max-sched-region-insns",
621 "The maximum number of insns in a region to be considered for interblock scheduling",
622 100, 0, 0)
624 DEFPARAM(PARAM_MAX_PIPELINE_REGION_BLOCKS,
625 "max-pipeline-region-blocks",
626 "The maximum number of blocks in a region to be considered for interblock scheduling",
627 15, 0, 0)
629 DEFPARAM(PARAM_MAX_PIPELINE_REGION_INSNS,
630 "max-pipeline-region-insns",
631 "The maximum number of insns in a region to be considered for interblock scheduling",
632 200, 0, 0)
634 DEFPARAM(PARAM_MIN_SPEC_PROB,
635 "min-spec-prob",
636 "The minimum probability of reaching a source block for interblock speculative scheduling",
637 40, 0, 0)
639 DEFPARAM(PARAM_MAX_SCHED_EXTEND_REGIONS_ITERS,
640 "max-sched-extend-regions-iters",
641 "The maximum number of iterations through CFG to extend regions",
642 0, 0, 0)
644 DEFPARAM(PARAM_MAX_SCHED_INSN_CONFLICT_DELAY,
645 "max-sched-insn-conflict-delay",
646 "The maximum conflict delay for an insn to be considered for speculative motion",
647 3, 1, 10)
649 DEFPARAM(PARAM_SCHED_SPEC_PROB_CUTOFF,
650 "sched-spec-prob-cutoff",
651 "The minimal probability of speculation success (in percents), so that speculative insn will be scheduled.",
652 40, 0, 100)
654 DEFPARAM(PARAM_SCHED_STATE_EDGE_PROB_CUTOFF,
655 "sched-state-edge-prob-cutoff",
656 "The minimum probability an edge must have for the scheduler to save its state across it.",
657 10, 0, 100)
659 DEFPARAM(PARAM_SELSCHED_MAX_LOOKAHEAD,
660 "selsched-max-lookahead",
661 "The maximum size of the lookahead window of selective scheduling",
662 50, 0, 0)
664 DEFPARAM(PARAM_SELSCHED_MAX_SCHED_TIMES,
665 "selsched-max-sched-times",
666 "Maximum number of times that an insn could be scheduled",
667 2, 0, 0)
669 DEFPARAM(PARAM_SELSCHED_INSNS_TO_RENAME,
670 "selsched-insns-to-rename",
671 "Maximum number of instructions in the ready list that are considered eligible for renaming",
672 2, 0, 0)
674 DEFPARAM (PARAM_SCHED_MEM_TRUE_DEP_COST,
675 "sched-mem-true-dep-cost",
676 "Minimal distance between possibly conflicting store and load",
677 1, 0, 0)
679 DEFPARAM (PARAM_SCHED_AUTOPREF_QUEUE_DEPTH,
680 "sched-autopref-queue-depth",
681 "Hardware autoprefetcher scheduler model control flag. Number of lookahead cycles the model looks into; at '0' only enable instruction sorting heuristic. Disabled by default.",
682 -1, 0, 0)
684 DEFPARAM(PARAM_MAX_LAST_VALUE_RTL,
685 "max-last-value-rtl",
686 "The maximum number of RTL nodes that can be recorded as combiner's last value",
687 10000, 0, 0)
689 DEFPARAM(PARAM_MAX_COMBINE_INSNS,
690 "max-combine-insns",
691 "The maximum number of insns combine tries to combine",
692 4, 2, 4)
694 /* INTEGER_CST nodes are shared for values [{-1,0} .. N) for
695 {signed,unsigned} integral types. This determines N.
696 Experimentation shows 251 to be a good value that generates the
697 least amount of garbage for allocating the TREE_VEC storage. */
698 DEFPARAM (PARAM_INTEGER_SHARE_LIMIT,
699 "integer-share-limit",
700 "The upper bound for sharing integer constants",
701 251, 2, 2)
703 DEFPARAM (PARAM_SSP_BUFFER_SIZE,
704 "ssp-buffer-size",
705 "The lower bound for a buffer to be considered for stack smashing protection",
706 8, 1, 0)
708 DEFPARAM (PARAM_MIN_SIZE_FOR_STACK_SHARING,
709 "min-size-for-stack-sharing",
710 "The minimum size of variables taking part in stack slot sharing "
711 "when not optimizing",
712 32, 0, 0)
714 /* When we thread through a block we have to make copies of the
715 statements within the block. Clearly for large blocks the code
716 duplication is bad.
718 PARAM_MAX_JUMP_THREAD_DUPLICATION_STMTS specifies the maximum number
719 of statements and PHI nodes allowed in a block which is going to
720 be duplicated for thread jumping purposes.
722 Some simple analysis showed that more than 99% of the jump
723 threading opportunities are for blocks with less than 15
724 statements. So we can get the benefits of jump threading
725 without excessive code bloat for pathological cases with the
726 throttle set at 15 statements. */
727 DEFPARAM (PARAM_MAX_JUMP_THREAD_DUPLICATION_STMTS,
728 "max-jump-thread-duplication-stmts",
729 "Maximum number of statements allowed in a block that needs to be duplicated when threading jumps",
730 15, 0, 0)
732 /* This is the maximum number of fields a variable may have before the pointer analysis machinery
733 will stop trying to treat it in a field-sensitive manner.
734 There are programs out there with thousands of fields per structure, and handling them
735 field-sensitively is not worth the cost. */
736 DEFPARAM (PARAM_MAX_FIELDS_FOR_FIELD_SENSITIVE,
737 "max-fields-for-field-sensitive",
738 "Maximum number of fields in a structure before pointer analysis treats the structure as a single variable",
739 0, 0, 0)
741 DEFPARAM(PARAM_MAX_SCHED_READY_INSNS,
742 "max-sched-ready-insns",
743 "The maximum number of instructions ready to be issued to be considered by the scheduler during the first scheduling pass",
744 100, 0, 0)
746 /* This is the maximum number of active local stores RTL DSE will consider. */
747 DEFPARAM (PARAM_MAX_DSE_ACTIVE_LOCAL_STORES,
748 "max-dse-active-local-stores",
749 "Maximum number of active local stores in RTL dead store elimination",
750 5000, 0, 0)
752 /* Prefetching and cache-optimizations related parameters. Default values are
753 usually set by machine description. */
755 /* The number of insns executed before prefetch is completed. */
757 DEFPARAM (PARAM_PREFETCH_LATENCY,
758 "prefetch-latency",
759 "The number of insns executed before prefetch is completed",
760 200, 0, 0)
762 /* The number of prefetches that can run at the same time. */
764 DEFPARAM (PARAM_SIMULTANEOUS_PREFETCHES,
765 "simultaneous-prefetches",
766 "The number of prefetches that can run at the same time",
767 3, 0, 0)
769 /* The size of L1 cache in kB. */
771 DEFPARAM (PARAM_L1_CACHE_SIZE,
772 "l1-cache-size",
773 "The size of L1 cache",
774 64, 0, 0)
776 /* The size of L1 cache line in bytes. */
778 DEFPARAM (PARAM_L1_CACHE_LINE_SIZE,
779 "l1-cache-line-size",
780 "The size of L1 cache line",
781 32, 0, 0)
783 /* The size of L2 cache in kB. */
785 DEFPARAM (PARAM_L2_CACHE_SIZE,
786 "l2-cache-size",
787 "The size of L2 cache",
788 512, 0, 0)
790 /* Whether we should use canonical types rather than deep "structural"
791 type checking. Setting this value to 1 (the default) improves
792 compilation performance in the C++ and Objective-C++ front end;
793 this value should only be set to zero to work around bugs in the
794 canonical type system by disabling it. */
796 DEFPARAM (PARAM_USE_CANONICAL_TYPES,
797 "use-canonical-types",
798 "Whether to use canonical types",
799 1, 0, 1)
801 DEFPARAM (PARAM_MAX_PARTIAL_ANTIC_LENGTH,
802 "max-partial-antic-length",
803 "Maximum length of partial antic set when performing tree pre optimization",
804 100, 0, 0)
806 /* The following is used as a stop-gap limit for cases where really huge
807 SCCs blow up memory and compile-time use too much. If we hit this limit,
808 SCCVN and such FRE and PRE will be not done at all for the current
809 function. */
811 DEFPARAM (PARAM_SCCVN_MAX_SCC_SIZE,
812 "sccvn-max-scc-size",
813 "Maximum size of a SCC before SCCVN stops processing a function",
814 10000, 10, 0)
816 /* The following is used as a stop-gap limit for cases where really huge
817 functions blow up compile-time use too much. It limits the number of
818 alias-queries we do for finding common subexpressions for memory loads and
819 stores. The number of alias-queries is otherwise limited by the number of
820 stores on paths to function entry. */
822 DEFPARAM (PARAM_SCCVN_MAX_ALIAS_QUERIES_PER_ACCESS,
823 "sccvn-max-alias-queries-per-access",
824 "Maximum number of disambiguations to perform per memory access",
825 1000, 0, 0)
827 DEFPARAM (PARAM_IRA_MAX_LOOPS_NUM,
828 "ira-max-loops-num",
829 "Max loops number for regional RA",
830 100, 0, 0)
832 DEFPARAM (PARAM_IRA_MAX_CONFLICT_TABLE_SIZE,
833 "ira-max-conflict-table-size",
834 "Max size of conflict table in MB",
835 1000, 0, 0)
837 DEFPARAM (PARAM_IRA_LOOP_RESERVED_REGS,
838 "ira-loop-reserved-regs",
839 "The number of registers in each class kept unused by loop invariant motion",
840 2, 0, 0)
842 DEFPARAM (PARAM_LRA_MAX_CONSIDERED_RELOAD_PSEUDOS,
843 "lra-max-considered-reload-pseudos",
844 "The max number of reload pseudos which are considered during spilling a non-reload pseudo",
845 500, 0, 0)
847 DEFPARAM (PARAM_LRA_INHERITANCE_EBB_PROBABILITY_CUTOFF,
848 "lra-inheritance-ebb-probability-cutoff",
849 "Minimal fall-through edge probability in percentage used to add BB to inheritance EBB in LRA",
850 40, 0, 100)
852 /* Switch initialization conversion will refuse to create arrays that are
853 bigger than this parameter times the number of switch branches. */
855 DEFPARAM (PARAM_SWITCH_CONVERSION_BRANCH_RATIO,
856 "switch-conversion-max-branch-ratio",
857 "The maximum ratio between array size and switch branches for "
858 "a switch conversion to take place",
859 8, 1, 0)
861 /* Size of tiles when doing loop blocking. */
863 DEFPARAM (PARAM_LOOP_BLOCK_TILE_SIZE,
864 "loop-block-tile-size",
865 "size of tiles for loop blocking",
866 51, 0, 0)
868 /* Size of unrolling factor for unroll-and-jam. */
870 DEFPARAM (PARAM_LOOP_UNROLL_JAM_SIZE,
871 "loop-unroll-jam-size",
872 "size of unrolling factor for unroll-and-jam",
873 4, 0, 0)
875 /* Size of the band formed by the strip mined dimension and the most inner one for unroll-and-jam. */
877 DEFPARAM (PARAM_LOOP_UNROLL_JAM_DEPTH,
878 "loop-unroll-jam-depth",
879 "depth of unrolled loop for unroll-and-jam",
880 2, 0, 0)
883 /* Maximal number of parameters that we allow in a SCoP. */
885 DEFPARAM (PARAM_GRAPHITE_MAX_NB_SCOP_PARAMS,
886 "graphite-max-nb-scop-params",
887 "maximum number of parameters in a SCoP",
888 10, 0, 0)
890 /* Maximal number of basic blocks in the functions analyzed by Graphite. */
892 DEFPARAM (PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION,
893 "graphite-max-bbs-per-function",
894 "maximum number of basic blocks per function to be analyzed by Graphite",
895 100, 0, 0)
897 /* Avoid data dependence analysis on very large loops. */
898 DEFPARAM (PARAM_LOOP_MAX_DATAREFS_FOR_DATADEPS,
899 "loop-max-datarefs-for-datadeps",
900 "Maximum number of datarefs in loop for building loop data dependencies",
901 1000, 0, 0)
903 /* Avoid doing loop invariant motion on very large loops. */
905 DEFPARAM (PARAM_LOOP_INVARIANT_MAX_BBS_IN_LOOP,
906 "loop-invariant-max-bbs-in-loop",
907 "Max basic blocks number in loop for loop invariant motion",
908 10000, 0, 0)
910 /* When the parameter is 1, use the internal function id
911 to look up for profile data. Otherwise, use a more stable
912 external id based on assembler name and source location. */
913 DEFPARAM (PARAM_PROFILE_FUNC_INTERNAL_ID,
914 "profile-func-internal-id",
915 "use internal function id in profile lookup",
916 0, 0, 1)
918 /* When the parameter is 1, track the most frequent N target
919 addresses in indirect-call profile. This disables
920 indirect_call_profiler_v2 which tracks single target. */
921 DEFPARAM (PARAM_INDIR_CALL_TOPN_PROFILE,
922 "indir-call-topn-profile",
923 "track topn target addresses in indirect-call profile",
924 0, 0, 1)
926 /* Avoid SLP vectorization of large basic blocks. */
927 DEFPARAM (PARAM_SLP_MAX_INSNS_IN_BB,
928 "slp-max-insns-in-bb",
929 "Maximum number of instructions in basic block to be considered for SLP vectorization",
930 1000, 0, 0)
932 DEFPARAM (PARAM_MIN_INSN_TO_PREFETCH_RATIO,
933 "min-insn-to-prefetch-ratio",
934 "Min. ratio of insns to prefetches to enable prefetching for "
935 "a loop with an unknown trip count",
936 9, 0, 0)
938 DEFPARAM (PARAM_PREFETCH_MIN_INSN_TO_MEM_RATIO,
939 "prefetch-min-insn-to-mem-ratio",
940 "Min. ratio of insns to mem ops to enable prefetching in a loop",
941 3, 0, 0)
943 /* Set maximum hash table size for var tracking. */
945 DEFPARAM (PARAM_MAX_VARTRACK_SIZE,
946 "max-vartrack-size",
947 "Max. size of var tracking hash tables",
948 50000000, 0, 0)
950 /* Set maximum recursion depth for var tracking expression expansion
951 and resolution. */
953 DEFPARAM (PARAM_MAX_VARTRACK_EXPR_DEPTH,
954 "max-vartrack-expr-depth",
955 "Max. recursion depth for expanding var tracking expressions",
956 12, 0, 0)
958 /* Set maximum length of value location list for which var tracking
959 should add reverse operations. */
961 DEFPARAM (PARAM_MAX_VARTRACK_REVERSE_OP_SIZE,
962 "max-vartrack-reverse-op-size",
963 "Max. size of loc list for which reverse ops should be added",
964 50, 0, 0)
966 /* Set minimum insn uid for non-debug insns. */
968 DEFPARAM (PARAM_MIN_NONDEBUG_INSN_UID,
969 "min-nondebug-insn-uid",
970 "The minimum UID to be used for a nondebug insn",
971 0, 1, 0)
973 DEFPARAM (PARAM_IPA_SRA_PTR_GROWTH_FACTOR,
974 "ipa-sra-ptr-growth-factor",
975 "Maximum allowed growth of size of new parameters ipa-sra replaces "
976 "a pointer to an aggregate with",
977 2, 0, 0)
979 DEFPARAM (PARAM_TM_MAX_AGGREGATE_SIZE,
980 "tm-max-aggregate-size",
981 "Size in bytes after which thread-local aggregates should be "
982 "instrumented with the logging functions instead of save/restore "
983 "pairs",
984 9, 0, 0)
986 DEFPARAM (PARAM_SRA_MAX_SCALARIZATION_SIZE_SPEED,
987 "sra-max-scalarization-size-Ospeed",
988 "Maximum size, in storage units, of an aggregate which should be "
989 "considered for scalarization when compiling for speed",
990 0, 0, 0)
992 DEFPARAM (PARAM_SRA_MAX_SCALARIZATION_SIZE_SIZE,
993 "sra-max-scalarization-size-Osize",
994 "Maximum size, in storage units, of an aggregate which should be "
995 "considered for scalarization when compiling for size",
996 0, 0, 0)
998 DEFPARAM (PARAM_IPA_CP_VALUE_LIST_SIZE,
999 "ipa-cp-value-list-size",
1000 "Maximum size of a list of values associated with each parameter for "
1001 "interprocedural constant propagation",
1002 8, 0, 0)
1004 DEFPARAM (PARAM_IPA_CP_EVAL_THRESHOLD,
1005 "ipa-cp-eval-threshold",
1006 "Threshold ipa-cp opportunity evaluation that is still considered "
1007 "beneficial to clone.",
1008 500, 0, 0)
1010 DEFPARAM (PARAM_IPA_CP_RECURSION_PENALTY,
1011 "ipa-cp-recursion-penalty",
1012 "Percentage penalty the recursive functions will receive when they "
1013 "are evaluated for cloning.",
1014 40, 0, 100)
1016 DEFPARAM (PARAM_IPA_CP_SINGLE_CALL_PENALTY,
1017 "ipa-cp-single-call-penalty",
1018 "Percentage penalty functions containg a single call to another "
1019 "function will receive when they are evaluated for cloning.",
1020 15, 0, 100)
1022 DEFPARAM (PARAM_IPA_MAX_AGG_ITEMS,
1023 "ipa-max-agg-items",
1024 "Maximum number of aggregate content items for a parameter in "
1025 "jump functions and lattices",
1026 16, 0, 0)
1028 DEFPARAM (PARAM_IPA_CP_LOOP_HINT_BONUS,
1029 "ipa-cp-loop-hint-bonus",
1030 "Compile-time bonus IPA-CP assigns to candidates which make loop "
1031 "bounds or strides known.",
1032 64, 0, 0)
1034 DEFPARAM (PARAM_IPA_CP_ARRAY_INDEX_HINT_BONUS,
1035 "ipa-cp-array-index-hint-bonus",
1036 "Compile-time bonus IPA-CP assigns to candidates which make an array "
1037 "index known.",
1038 48, 0, 0)
1040 DEFPARAM (PARAM_IPA_MAX_AA_STEPS,
1041 "ipa-max-aa-steps",
1042 "Maximum number of statements that will be visited by IPA formal "
1043 "parameter analysis based on alias analysis in any given function",
1044 25000, 0, 0)
1046 /* WHOPR partitioning configuration. */
1048 DEFPARAM (PARAM_LTO_PARTITIONS,
1049 "lto-partitions",
1050 "Number of partitions the program should be split to",
1051 32, 1, 0)
1053 DEFPARAM (MIN_PARTITION_SIZE,
1054 "lto-min-partition",
1055 "Minimal size of a partition for LTO (in estimated instructions)",
1056 1000, 0, 0)
1058 /* Diagnostic parameters. */
1060 DEFPARAM (CXX_MAX_NAMESPACES_FOR_DIAGNOSTIC_HELP,
1061 "cxx-max-namespaces-for-diagnostic-help",
1062 "Maximum number of namespaces to search for alternatives when "
1063 "name lookup fails",
1064 1000, 0, 0)
1066 /* Maximum number of conditional store pairs that can be sunk. */
1067 DEFPARAM (PARAM_MAX_STORES_TO_SINK,
1068 "max-stores-to-sink",
1069 "Maximum number of conditional store pairs that can be sunk",
1070 2, 0, 0)
1072 /* Override CASE_VALUES_THRESHOLD of when to switch from doing switch
1073 statements via if statements to using a table jump operation. If the value
1074 is 0, the default CASE_VALUES_THRESHOLD will be used. */
1075 DEFPARAM (PARAM_CASE_VALUES_THRESHOLD,
1076 "case-values-threshold",
1077 "The smallest number of different values for which it is best to "
1078 "use a jump-table instead of a tree of conditional branches, "
1079 "if 0, use the default for the machine",
1080 0, 0, 0)
1082 /* Data race flags for C++0x memory model compliance. */
1083 DEFPARAM (PARAM_ALLOW_STORE_DATA_RACES,
1084 "allow-store-data-races",
1085 "Allow new data races on stores to be introduced",
1086 0, 0, 1)
1088 /* Reassociation width to be used by tree reassoc optimization. */
1089 DEFPARAM (PARAM_TREE_REASSOC_WIDTH,
1090 "tree-reassoc-width",
1091 "Set the maximum number of instructions executed in parallel in "
1092 "reassociated tree. If 0, use the target dependent heuristic.",
1093 0, 0, 0)
1095 DEFPARAM (PARAM_MAX_TAIL_MERGE_COMPARISONS,
1096 "max-tail-merge-comparisons",
1097 "Maximum amount of similar bbs to compare a bb with",
1098 10, 0, 0)
1100 DEFPARAM (PARAM_MAX_TAIL_MERGE_ITERATIONS,
1101 "max-tail-merge-iterations",
1102 "Maximum amount of iterations of the pass over a function",
1103 2, 0, 0)
1105 /* Maximum number of strings for which strlen optimization pass will
1106 track string lenths. */
1107 DEFPARAM (PARAM_MAX_TRACKED_STRLENS,
1108 "max-tracked-strlens",
1109 "Maximum number of strings for which strlen optimization pass will "
1110 "track string lengths",
1111 10000, 0, 0)
1113 /* Keep this in sync with the sched_pressure_algorithm enum. */
1114 DEFPARAM (PARAM_SCHED_PRESSURE_ALGORITHM,
1115 "sched-pressure-algorithm",
1116 "Which -fsched-pressure algorithm to apply",
1117 1, 1, 2)
1119 /* Maximum length of candidate scans in straight-line strength reduction. */
1120 DEFPARAM (PARAM_MAX_SLSR_CANDIDATE_SCAN,
1121 "max-slsr-cand-scan",
1122 "Maximum length of candidate scans for straight-line "
1123 "strength reduction",
1124 50, 1, 999999)
1126 DEFPARAM (PARAM_ASAN_STACK,
1127 "asan-stack",
1128 "Enable asan stack protection",
1129 1, 0, 1)
1131 DEFPARAM (PARAM_ASAN_GLOBALS,
1132 "asan-globals",
1133 "Enable asan globals protection",
1134 1, 0, 1)
1136 DEFPARAM (PARAM_ASAN_INSTRUMENT_WRITES,
1137 "asan-instrument-writes",
1138 "Enable asan store operations protection",
1139 1, 0, 1)
1141 DEFPARAM (PARAM_ASAN_INSTRUMENT_READS,
1142 "asan-instrument-reads",
1143 "Enable asan load operations protection",
1144 1, 0, 1)
1146 DEFPARAM (PARAM_ASAN_MEMINTRIN,
1147 "asan-memintrin",
1148 "Enable asan builtin functions protection",
1149 1, 0, 1)
1151 DEFPARAM (PARAM_ASAN_USE_AFTER_RETURN,
1152 "asan-use-after-return",
1153 "Enable asan detection of use-after-return bugs",
1154 1, 0, 1)
1156 DEFPARAM (PARAM_ASAN_INSTRUMENTATION_WITH_CALL_THRESHOLD,
1157 "asan-instrumentation-with-call-threshold",
1158 "Use callbacks instead of inline code if number of accesses "
1159 "in function becomes greater or equal to this number",
1160 7000, 0, INT_MAX)
1162 DEFPARAM (PARAM_UNINIT_CONTROL_DEP_ATTEMPTS,
1163 "uninit-control-dep-attempts",
1164 "Maximum number of nested calls to search for control dependencies "
1165 "during uninitialized variable analysis",
1166 1000, 1, 0)
1168 DEFPARAM (PARAM_CHKP_MAX_CTOR_SIZE,
1169 "chkp-max-ctor-size",
1170 "Maximum number of statements to be included into a single static "
1171 "constructor generated by Pointer Bounds Checker",
1172 5000, 100, 0)
1174 DEFPARAM (PARAM_MAX_FSM_THREAD_PATH_INSNS,
1175 "max-fsm-thread-path-insns",
1176 "Maximum number of instructions to copy when duplicating blocks on a finite state automaton jump thread path",
1177 100, 1, 999999)
1179 DEFPARAM (PARAM_MAX_FSM_THREAD_LENGTH,
1180 "max-fsm-thread-length",
1181 "Maximum number of basic blocks on a finite state automaton jump thread path",
1182 10, 1, 999999)
1184 DEFPARAM (PARAM_MAX_FSM_THREAD_PATHS,
1185 "max-fsm-thread-paths",
1186 "Maximum number of new jump thread paths to create for a finite state automaton",
1187 50, 1, 999999)
1190 Local variables:
1191 mode:c
1192 End: