EnumSet*.class: Regenerate
[official-gcc.git] / gcc / params.def
blobbcdb4bb2da214de9c52bcfa6f1a823d0cf4f4286
1 /* params.def - Run-time parameters.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
4 Written by Mark Mitchell <mark@codesourcery.com>.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* This file contains definitions for language-independent
23 parameters. The DEFPARAM macro takes 6 arguments:
25 - The enumeral corresponding to this parameter.
27 - The name that can be used to set this parameter using the
28 command-line option `--param <name>=<value>'.
30 - A help string explaining how the parameter is used.
32 - A default value for the parameter.
34 - The minimum acceptable value for the parameter.
36 - The maximum acceptable value for the parameter (if greater than
37 the minimum).
39 Be sure to add an entry to invoke.texi summarizing the parameter. */
41 /* The maximum number of fields in a variable with only implicit uses
42 for which structure aliasing will consider trying to track each
43 field. The default is 5. */
44 DEFPARAM (PARAM_SALIAS_MAX_IMPLICIT_FIELDS,
45 "salias-max-implicit-fields",
46 "The maximum number of fields in a structure variable without direct structure accesses that GCC will attempt to track separately",
47 5, 0, 0)
49 /* The maximum number of array elements structure aliasing will decompose
50 an array for. The default is 4. */
51 DEFPARAM (PARAM_SALIAS_MAX_ARRAY_ELEMENTS,
52 "salias-max-array-elements",
53 "The maximum number of elements in an array for wich we track its elements separately",
54 4, 0, 0)
56 /* The maximum structure size at which the scalar replacement of
57 aggregates (SRA) pass will perform block copies. The default
58 value, 0, implies that GCC will select the most appropriate size
59 itself. */
60 DEFPARAM (PARAM_SRA_MAX_STRUCTURE_SIZE,
61 "sra-max-structure-size",
62 "The maximum structure size (in bytes) for which GCC will "
63 "use by-element copies",
64 0, 0, 0)
66 /* The maximum number of structure fields which the SRA pass will
67 instantiate to avoid block copies. The default value, 0, implies
68 that GCC will select the appropriate value itself. */
69 DEFPARAM (PARAM_SRA_MAX_STRUCTURE_COUNT,
70 "sra-max-structure-count",
71 "The maximum number of structure fields for which GCC will "
72 "use by-element copies",
73 0, 0, 0)
75 /* The ratio between instantiated fields and the complete structure
76 size. We say that if the ratio of the number of bytes in
77 instantiated fields to the number of bytes in the complete
78 structure exceeds this parameter, or if the number of instantiated
79 fields to the total number of fields exceeds this parameter, then
80 block copies are not used. The default is 75%. */
81 DEFPARAM (PARAM_SRA_FIELD_STRUCTURE_RATIO,
82 "sra-field-structure-ratio",
83 "The threshold ratio between instantiated fields and the total structure size",
84 75, 0, 100)
86 /* The single function inlining limit. This is the maximum size
87 of a function counted in internal gcc instructions (not in
88 real machine instructions) that is eligible for inlining
89 by the tree inliner.
90 The default value is 450.
91 Only functions marked inline (or methods defined in the class
92 definition for C++) are affected by this.
93 There are more restrictions to inlining: If inlined functions
94 call other functions, the already inlined instructions are
95 counted and once the recursive inline limit (see
96 "max-inline-insns" parameter) is exceeded, the acceptable size
97 gets decreased. */
98 DEFPARAM (PARAM_MAX_INLINE_INSNS_SINGLE,
99 "max-inline-insns-single",
100 "The maximum number of instructions in a single function eligible for inlining",
101 450, 0, 0)
103 /* The single function inlining limit for functions that are
104 inlined by virtue of -finline-functions (-O3).
105 This limit should be chosen to be below or equal to the limit
106 that is applied to functions marked inlined (or defined in the
107 class declaration in C++) given by the "max-inline-insns-single"
108 parameter.
109 The default value is 90. */
110 DEFPARAM (PARAM_MAX_INLINE_INSNS_AUTO,
111 "max-inline-insns-auto",
112 "The maximum number of instructions when automatically inlining",
113 90, 0, 0)
115 DEFPARAM (PARAM_MAX_INLINE_INSNS_RECURSIVE,
116 "max-inline-insns-recursive",
117 "The maximum number of instructions inline function can grow to via recursive inlining",
118 450, 0, 0)
120 DEFPARAM (PARAM_MAX_INLINE_INSNS_RECURSIVE_AUTO,
121 "max-inline-insns-recursive-auto",
122 "The maximum number of instructions non-inline function can grow to via recursive inlining",
123 450, 0, 0)
125 DEFPARAM (PARAM_MAX_INLINE_RECURSIVE_DEPTH,
126 "max-inline-recursive-depth",
127 "The maximum depth of recursive inlining for inline functions",
128 8, 0, 0)
130 DEFPARAM (PARAM_MAX_INLINE_RECURSIVE_DEPTH_AUTO,
131 "max-inline-recursive-depth-auto",
132 "The maximum depth of recursive inlining for non-inline functions",
133 8, 0, 0)
135 DEFPARAM (PARAM_MIN_INLINE_RECURSIVE_PROBABILITY,
136 "min-inline-recursive-probability",
137 "Inline recursively only when the probability of call being executed exceeds the parameter",
138 10, 0, 0)
140 /* Limit the number of expansions created by the variable expansion
141 optimization to avoid register pressure. */
142 DEFPARAM (PARAM_MAX_VARIABLE_EXPANSIONS,
143 "max-variable-expansions-in-unroller",
144 "If -fvariable-expansion-in-unroller is used, the maximum number of times that an individual variable will be expanded during loop unrolling",
145 1, 0, 0)
147 /* Limit loop autovectorization to loops with large enough iteration count. */
148 DEFPARAM (PARAM_MIN_VECT_LOOP_BOUND,
149 "min-vect-loop-bound",
150 "If -ftree-vectorize is used, the minimal loop bound of a loop to be considered for vectorization",
151 0, 0, 0)
153 /* The maximum number of instructions to consider when looking for an
154 instruction to fill a delay slot. If more than this arbitrary
155 number of instructions is searched, the time savings from filling
156 the delay slot will be minimal so stop searching. Increasing
157 values mean more aggressive optimization, making the compile time
158 increase with probably small improvement in executable run time. */
159 DEFPARAM (PARAM_MAX_DELAY_SLOT_INSN_SEARCH,
160 "max-delay-slot-insn-search",
161 "The maximum number of instructions to consider to fill a delay slot",
162 100, 0, 0)
164 /* When trying to fill delay slots, the maximum number of instructions
165 to consider when searching for a block with valid live register
166 information. Increasing this arbitrarily chosen value means more
167 aggressive optimization, increasing the compile time. This
168 parameter should be removed when the delay slot code is rewritten
169 to maintain the control-flow graph. */
170 DEFPARAM(PARAM_MAX_DELAY_SLOT_LIVE_SEARCH,
171 "max-delay-slot-live-search",
172 "The maximum number of instructions to consider to find accurate live register information",
173 333, 0, 0)
175 /* This parameter limits the number of branch elements that the
176 scheduler will track anti-dependencies through without resetting
177 the tracking mechanism. Large functions with few calls or barriers
178 can generate lists containing many 1000's of dependencies. Generally
179 the compiler either uses all available memory, or runs for far too long. */
180 DEFPARAM(PARAM_MAX_PENDING_LIST_LENGTH,
181 "max-pending-list-length",
182 "The maximum length of scheduling's pending operations list",
183 32, 0, 0)
185 DEFPARAM(PARAM_LARGE_FUNCTION_INSNS,
186 "large-function-insns",
187 "The size of function body to be considered large",
188 2700, 0, 0)
189 DEFPARAM(PARAM_LARGE_FUNCTION_GROWTH,
190 "large-function-growth",
191 "Maximal growth due to inlining of large function (in percent)",
192 100, 0, 0)
193 DEFPARAM(PARAM_LARGE_UNIT_INSNS,
194 "large-unit-insns",
195 "The size of translation unit to be considered large",
196 10000, 0, 0)
197 DEFPARAM(PARAM_INLINE_UNIT_GROWTH,
198 "inline-unit-growth",
199 "how much can given compilation unit grow because of the inlining (in percent)",
200 30, 0, 0)
201 DEFPARAM(PARAM_INLINE_CALL_COST,
202 "inline-call-cost",
203 "expense of call operation relative to ordinary arithmetic operations",
204 16, 0, 0)
205 DEFPARAM(PARAM_LARGE_STACK_FRAME,
206 "large-stack-frame",
207 "The size of stack frame to be considered large",
208 256, 0, 0)
209 DEFPARAM(PARAM_STACK_FRAME_GROWTH,
210 "large-stack-frame-growth",
211 "Maximal stack frame growth due to inlining (in percent)",
212 1000, 0, 0)
214 /* The GCSE optimization will be disabled if it would require
215 significantly more memory than this value. */
216 DEFPARAM(PARAM_MAX_GCSE_MEMORY,
217 "max-gcse-memory",
218 "The maximum amount of memory to be allocated by GCSE",
219 50 * 1024 * 1024, 0, 0)
220 /* The number of repetitions of copy/const prop and PRE to run. */
221 DEFPARAM(PARAM_MAX_GCSE_PASSES,
222 "max-gcse-passes",
223 "The maximum number of passes to make when doing GCSE",
224 1, 1, 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)
242 /* This parameter limits the number of insns in a loop that will be unrolled,
243 and by how much the loop is unrolled.
245 This limit should be at most half of the peeling limits: loop unroller
246 decides to not unroll loops that iterate fewer than 2*number of allowed
247 unrollings and thus we would have loops that are neither peeled or unrolled
248 otherwise. */
249 DEFPARAM(PARAM_MAX_UNROLLED_INSNS,
250 "max-unrolled-insns",
251 "The maximum number of instructions to consider to unroll in a loop",
252 200, 0, 0)
253 /* This parameter limits how many times the loop is unrolled depending
254 on number of insns really executed in each iteration. */
255 DEFPARAM(PARAM_MAX_AVERAGE_UNROLLED_INSNS,
256 "max-average-unrolled-insns",
257 "The maximum number of instructions to consider to unroll in a loop on average",
258 80, 0, 0)
259 /* The maximum number of unrollings of a single loop. */
260 DEFPARAM(PARAM_MAX_UNROLL_TIMES,
261 "max-unroll-times",
262 "The maximum number of unrollings of a single loop",
263 8, 0, 0)
264 /* The maximum number of insns of a peeled loop. */
265 DEFPARAM(PARAM_MAX_PEELED_INSNS,
266 "max-peeled-insns",
267 "The maximum number of insns of a peeled loop",
268 400, 0, 0)
269 /* The maximum number of peelings of a single loop. */
270 DEFPARAM(PARAM_MAX_PEEL_TIMES,
271 "max-peel-times",
272 "The maximum number of peelings of a single loop",
273 16, 0, 0)
274 /* The maximum number of insns of a peeled loop. */
275 DEFPARAM(PARAM_MAX_COMPLETELY_PEELED_INSNS,
276 "max-completely-peeled-insns",
277 "The maximum number of insns of a completely peeled loop",
278 400, 0, 0)
279 /* The maximum number of peelings of a single loop that is peeled completely. */
280 DEFPARAM(PARAM_MAX_COMPLETELY_PEEL_TIMES,
281 "max-completely-peel-times",
282 "The maximum number of peelings of a single loop that is peeled completely",
283 16, 0, 0)
284 /* The maximum number of insns of a peeled loop that rolls only once. */
285 DEFPARAM(PARAM_MAX_ONCE_PEELED_INSNS,
286 "max-once-peeled-insns",
287 "The maximum number of insns of a peeled loop that rolls only once",
288 400, 0, 0)
290 /* The maximum number of insns of an unswitched loop. */
291 DEFPARAM(PARAM_MAX_UNSWITCH_INSNS,
292 "max-unswitch-insns",
293 "The maximum number of insns of an unswitched loop",
294 50, 0, 0)
295 /* The maximum level of recursion in unswitch_single_loop. */
296 DEFPARAM(PARAM_MAX_UNSWITCH_LEVEL,
297 "max-unswitch-level",
298 "The maximum number of unswitchings in a single loop",
299 3, 0, 0)
301 /* The maximum number of iterations of a loop the brute force algorithm
302 for analysis of # of iterations of the loop tries to evaluate. */
303 DEFPARAM(PARAM_MAX_ITERATIONS_TO_TRACK,
304 "max-iterations-to-track",
305 "Bound on the number of iterations the brute force # of iterations analysis algorithm evaluates",
306 1000, 0, 0)
307 /* A cutoff to avoid costly computations of the number of iterations in
308 the doloop transformation. */
309 DEFPARAM(PARAM_MAX_ITERATIONS_COMPUTATION_COST,
310 "max-iterations-computation-cost",
311 "Bound on the cost of an expression to compute the number of iterations",
312 10, 0, 0)
314 DEFPARAM(PARAM_MAX_SMS_LOOP_NUMBER,
315 "max-sms-loop-number",
316 "Maximum number of loops to perform swing modulo scheduling on (mainly for debugging)",
317 -1, -1, -1)
319 /* This parameter is used to tune SMS MAX II calculations. */
320 DEFPARAM(PARAM_SMS_MAX_II_FACTOR,
321 "sms-max-ii-factor",
322 "A factor for tuning the upper bound that swing modulo scheduler uses for scheduling a loop",
323 100, 0, 0)
324 DEFPARAM(PARAM_SMS_DFA_HISTORY,
325 "sms-dfa-history",
326 "The number of cycles the swing modulo scheduler considers when checking conflicts using DFA",
327 0, 0, 0)
328 DEFPARAM(PARAM_SMS_LOOP_AVERAGE_COUNT_THRESHOLD,
329 "sms-loop-average-count-threshold",
330 "A threshold on the average loop count considered by the swing modulo scheduler",
331 0, 0, 0)
333 DEFPARAM(HOT_BB_COUNT_FRACTION,
334 "hot-bb-count-fraction",
335 "Select fraction of the maximal count of repetitions of basic block in program given basic block needs to have to be considered hot",
336 10000, 0, 0)
337 DEFPARAM(HOT_BB_FREQUENCY_FRACTION,
338 "hot-bb-frequency-fraction",
339 "Select fraction of the maximal frequency of executions of basic block in function given basic block needs to have to be considered hot",
340 1000, 0, 0)
342 /* For guessed profiles, the loops having unknown number of iterations
343 are predicted to iterate relatively few (10) times at average.
344 For functions containing one loop with large known number of iterations
345 and other loops having unbounded loops we would end up predicting all
346 the other loops cold that is not usually the case. So we need to artificially
347 flatten the profile.
349 We need to cut the maximal predicted iterations to large enough iterations
350 so the loop appears important, but safely within HOT_BB_COUNT_FRACTION
351 range. */
353 DEFPARAM(PARAM_MAX_PREDICTED_ITERATIONS,
354 "max-predicted-iterations",
355 "The maximum number of loop iterations we predict statically",
356 100, 0, 0)
357 DEFPARAM(TRACER_DYNAMIC_COVERAGE_FEEDBACK,
358 "tracer-dynamic-coverage-feedback",
359 "The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is available",
360 95, 0, 100)
361 DEFPARAM(TRACER_DYNAMIC_COVERAGE,
362 "tracer-dynamic-coverage",
363 "The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is not available",
364 75, 0, 100)
365 DEFPARAM(TRACER_MAX_CODE_GROWTH,
366 "tracer-max-code-growth",
367 "Maximal code growth caused by tail duplication (in percent)",
368 100, 0, 0)
369 DEFPARAM(TRACER_MIN_BRANCH_RATIO,
370 "tracer-min-branch-ratio",
371 "Stop reverse growth if the reverse probability of best edge is less than this threshold (in percent)",
372 10, 0, 100)
373 DEFPARAM(TRACER_MIN_BRANCH_PROBABILITY_FEEDBACK,
374 "tracer-min-branch-probability-feedback",
375 "Stop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is available",
376 80, 0, 100)
377 DEFPARAM(TRACER_MIN_BRANCH_PROBABILITY,
378 "tracer-min-branch-probability",
379 "Stop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is not available",
380 50, 0, 100)
382 /* The maximum number of incoming edges to consider for crossjumping. */
383 DEFPARAM(PARAM_MAX_CROSSJUMP_EDGES,
384 "max-crossjump-edges",
385 "The maximum number of incoming edges to consider for crossjumping",
386 100, 0, 0)
388 /* The minimum number of matching instructions to consider for crossjumping. */
389 DEFPARAM(PARAM_MIN_CROSSJUMP_INSNS,
390 "min-crossjump-insns",
391 "The minimum number of matching instructions to consider for crossjumping",
392 5, 0, 0)
394 /* The maximum number expansion factor when copying basic blocks. */
395 DEFPARAM(PARAM_MAX_GROW_COPY_BB_INSNS,
396 "max-grow-copy-bb-insns",
397 "The maximum expansion factor when copying basic blocks",
398 8, 0, 0)
400 /* The maximum number of insns to duplicate when unfactoring computed gotos. */
401 DEFPARAM(PARAM_MAX_GOTO_DUPLICATION_INSNS,
402 "max-goto-duplication-insns",
403 "The maximum number of insns to duplicate when unfactoring computed gotos",
404 8, 0, 0)
406 /* The maximum length of path considered in cse. */
407 DEFPARAM(PARAM_MAX_CSE_PATH_LENGTH,
408 "max-cse-path-length",
409 "The maximum length of path considered in cse",
410 10, 0, 0)
411 DEFPARAM(PARAM_MAX_CSE_INSNS,
412 "max-cse-insns",
413 "The maximum instructions CSE process before flushing",
414 1000, 0, 0)
416 /* The cost of expression in loop invariant motion that is considered
417 expensive. */
418 DEFPARAM(PARAM_LIM_EXPENSIVE,
419 "lim-expensive",
420 "The minimum cost of an expensive expression in the loop invariant motion",
421 20, 0, 0)
423 /* Bound on number of candidates for induction variables below that
424 all candidates are considered for each use in induction variable
425 optimizations. */
427 DEFPARAM(PARAM_IV_CONSIDER_ALL_CANDIDATES_BOUND,
428 "iv-consider-all-candidates-bound",
429 "Bound on number of candidates below that all candidates are considered in iv optimizations",
430 30, 0, 0)
432 /* The induction variable optimizations give up on loops that contain more
433 induction variable uses. */
435 DEFPARAM(PARAM_IV_MAX_CONSIDERED_USES,
436 "iv-max-considered-uses",
437 "Bound on number of iv uses in loop optimized in iv optimizations",
438 250, 0, 0)
440 /* If there are at most this number of ivs in the set, try removing unnecessary
441 ivs from the set always. */
443 DEFPARAM(PARAM_IV_ALWAYS_PRUNE_CAND_SET_BOUND,
444 "iv-always-prune-cand-set-bound",
445 "If number of candidates in the set is smaller, we always try to remove unused ivs during its optimization",
446 10, 0, 0)
448 DEFPARAM(PARAM_SCEV_MAX_EXPR_SIZE,
449 "scev-max-expr-size",
450 "Bound on size of expressions used in the scalar evolutions analyzer",
451 20, 0, 0)
453 DEFPARAM(PARAM_OMEGA_MAX_VARS,
454 "omega-max-vars",
455 "Bound on the number of variables in Omega constraint systems",
456 128, 0, 0)
458 DEFPARAM(PARAM_OMEGA_MAX_GEQS,
459 "omega-max-geqs",
460 "Bound on the number of inequalities in Omega constraint systems",
461 256, 0, 0)
463 DEFPARAM(PARAM_OMEGA_MAX_EQS,
464 "omega-max-eqs",
465 "Bound on the number of equalities in Omega constraint systems",
466 128, 0, 0)
468 DEFPARAM(PARAM_OMEGA_MAX_WILD_CARDS,
469 "omega-max-wild-cards",
470 "Bound on the number of wild cards in Omega constraint systems",
471 18, 0, 0)
473 DEFPARAM(PARAM_OMEGA_HASH_TABLE_SIZE,
474 "omega-hash-table-size",
475 "Bound on the size of the hash table in Omega constraint systems",
476 550, 0, 0)
478 DEFPARAM(PARAM_OMEGA_MAX_KEYS,
479 "omega-max-keys",
480 "Bound on the number of keys in Omega constraint systems",
481 500, 0, 0)
483 DEFPARAM(PARAM_OMEGA_ELIMINATE_REDUNDANT_CONSTRAINTS,
484 "omega-eliminate-redundant-constraints",
485 "When set to 1, use expensive methods to eliminate all redundant constraints",
486 0, 0, 1)
488 DEFPARAM(PARAM_VECT_MAX_VERSION_FOR_ALIGNMENT_CHECKS,
489 "vect-max-version-for-alignment-checks",
490 "Bound on number of runtime checks inserted by the vectorizer's loop versioning for alignment check",
491 6, 0, 0)
493 DEFPARAM(PARAM_VECT_MAX_VERSION_FOR_ALIAS_CHECKS,
494 "vect-max-version-for-alias-checks",
495 "Bound on number of runtime checks inserted by the vectorizer's loop versioning for alias check",
496 10, 0, 0)
498 DEFPARAM(PARAM_MAX_CSELIB_MEMORY_LOCATIONS,
499 "max-cselib-memory-locations",
500 "The maximum memory locations recorded by cselib",
501 500, 0, 0)
502 DEFPARAM(PARAM_MAX_FLOW_MEMORY_LOCATIONS,
503 "max-flow-memory-locations",
504 "The maximum memory locations recorded by flow",
505 100, 0, 0)
507 #ifdef ENABLE_GC_ALWAYS_COLLECT
508 # define GGC_MIN_EXPAND_DEFAULT 0
509 # define GGC_MIN_HEAPSIZE_DEFAULT 0
510 #else
511 # define GGC_MIN_EXPAND_DEFAULT 30
512 # define GGC_MIN_HEAPSIZE_DEFAULT 4096
513 #endif
515 DEFPARAM(GGC_MIN_EXPAND,
516 "ggc-min-expand",
517 "Minimum heap expansion to trigger garbage collection, as a percentage of the total size of the heap",
518 GGC_MIN_EXPAND_DEFAULT, 0, 0)
520 DEFPARAM(GGC_MIN_HEAPSIZE,
521 "ggc-min-heapsize",
522 "Minimum heap size before we start collecting garbage, in kilobytes",
523 GGC_MIN_HEAPSIZE_DEFAULT, 0, 0)
525 #undef GGC_MIN_EXPAND_DEFAULT
526 #undef GGC_MIN_HEAPSIZE_DEFAULT
528 DEFPARAM(PARAM_MAX_RELOAD_SEARCH_INSNS,
529 "max-reload-search-insns",
530 "The maximum number of instructions to search backward when looking for equivalent reload",
531 100, 0, 0)
533 DEFPARAM(PARAM_MAX_ALIASED_VOPS,
534 "max-aliased-vops",
535 "The maximum number of virtual operators that a function is allowed to have before triggering memory partitioning heuristics",
536 100, 0, 0)
538 DEFPARAM(PARAM_AVG_ALIASED_VOPS,
539 "avg-aliased-vops",
540 "The average number of virtual operators that memory statements are allowed to have before triggering memory partitioning heuristics",
541 1, 0, 0)
543 DEFPARAM(PARAM_MAX_SCHED_REGION_BLOCKS,
544 "max-sched-region-blocks",
545 "The maximum number of blocks in a region to be considered for interblock scheduling",
546 10, 0, 0)
548 DEFPARAM(PARAM_MAX_SCHED_REGION_INSNS,
549 "max-sched-region-insns",
550 "The maximum number of insns in a region to be considered for interblock scheduling",
551 100, 0, 0)
553 DEFPARAM(PARAM_MIN_SPEC_PROB,
554 "min-spec-prob",
555 "The minimum probability of reaching a source block for interblock speculative scheduling",
556 40, 0, 0)
558 DEFPARAM(PARAM_MAX_SCHED_EXTEND_REGIONS_ITERS,
559 "max-sched-extend-regions-iters",
560 "The maximum number of iterations through CFG to extend regions",
561 0, 0, 0)
563 DEFPARAM(PARAM_MAX_SCHED_INSN_CONFLICT_DELAY,
564 "max-sched-insn-conflict-delay",
565 "The maximum conflict delay for an insn to be considered for speculative motion",
566 3, 1, 10)
568 DEFPARAM(PARAM_SCHED_SPEC_PROB_CUTOFF,
569 "sched-spec-prob-cutoff",
570 "The minimal probability of speculation success (in percents), so that speculative insn will be scheduled.",
571 40, 0, 100)
573 DEFPARAM(PARAM_MAX_LAST_VALUE_RTL,
574 "max-last-value-rtl",
575 "The maximum number of RTL nodes that can be recorded as combiner's last value",
576 10000, 0, 0)
578 /* INTEGER_CST nodes are shared for values [{-1,0} .. N) for
579 {signed,unsigned} integral types. This determines N.
580 Experimentation shows 256 to be a good value. */
581 DEFPARAM (PARAM_INTEGER_SHARE_LIMIT,
582 "integer-share-limit",
583 "The upper bound for sharing integer constants",
584 256, 2, 2)
586 /* Incremental SSA updates for virtual operands may be very slow if
587 there is a large number of mappings to process. In those cases, it
588 is faster to rewrite the virtual symbols from scratch as if they
589 had been recently introduced. This heuristic cannot be applied to
590 SSA mappings for real SSA names, only symbols kept in FUD chains.
592 PARAM_MIN_VIRTUAL_MAPPINGS specifies the minimum number of virtual
593 mappings that should be registered to trigger the heuristic.
595 PARAM_VIRTUAL_MAPPINGS_TO_SYMS_RATIO specifies the ratio between
596 mappings and symbols. If the number of virtual mappings is
597 PARAM_VIRTUAL_MAPPINGS_TO_SYMS_RATIO bigger than the number of
598 virtual symbols to be updated, then the updater switches to a full
599 update for those symbols. */
600 DEFPARAM (PARAM_MIN_VIRTUAL_MAPPINGS,
601 "min-virtual-mappings",
602 "Minimum number of virtual mappings to consider switching to full virtual renames",
603 100, 0, 0)
605 DEFPARAM (PARAM_VIRTUAL_MAPPINGS_TO_SYMS_RATIO,
606 "virtual-mappings-ratio",
607 "Ratio between virtual mappings and virtual symbols to do full virtual renames",
608 3, 0, 0)
610 DEFPARAM (PARAM_SSP_BUFFER_SIZE,
611 "ssp-buffer-size",
612 "The lower bound for a buffer to be considered for stack smashing protection",
613 8, 1, 0)
615 /* When we thread through a block we have to make copies of the
616 statements within the block. Clearly for large blocks the code
617 duplication is bad.
619 PARAM_MAX_JUMP_THREAD_DUPLICATION_STMTS specifies the maximum number
620 of statements and PHI nodes allowed in a block which is going to
621 be duplicated for thread jumping purposes.
623 Some simple analysis showed that more than 99% of the jump
624 threading opportunities are for blocks with less than 15
625 statements. So we can get the benefits of jump threading
626 without excessive code bloat for pathological cases with the
627 throttle set at 15 statements. */
628 DEFPARAM (PARAM_MAX_JUMP_THREAD_DUPLICATION_STMTS,
629 "max-jump-thread-duplication-stmts",
630 "Maximum number of statements allowed in a block that needs to be duplicated when threading jumps",
631 15, 0, 0)
633 /* This is the maximum number of fields a variable may have before the pointer analysis machinery
634 will stop trying to treat it in a field-sensitive manner.
635 There are programs out there with thousands of fields per structure, and handling them
636 field-sensitively is not worth the cost. */
637 DEFPARAM (PARAM_MAX_FIELDS_FOR_FIELD_SENSITIVE,
638 "max-fields-for-field-sensitive",
639 "Maximum number of fields in a structure before pointer analysis treats the structure as a single variable",
640 100, 0, 0)
642 DEFPARAM(PARAM_MAX_SCHED_READY_INSNS,
643 "max-sched-ready-insns",
644 "The maximum number of instructions ready to be issued to be considered by the scheduler during the first scheduling pass",
645 100, 0, 0)
647 /* Prefetching and cache-optimizations related parameters. Default values are
648 usually set by machine description. */
650 /* The number of insns executed before prefetch is completed. */
652 DEFPARAM (PARAM_PREFETCH_LATENCY,
653 "prefetch-latency",
654 "The number of insns executed before prefetch is completed",
655 200, 0, 0)
657 /* The number of prefetches that can run at the same time. */
659 DEFPARAM (PARAM_SIMULTANEOUS_PREFETCHES,
660 "simultaneous-prefetches",
661 "The number of prefetches that can run at the same time",
662 3, 0, 0)
664 /* The size of L1 cache in kB. */
666 DEFPARAM (PARAM_L1_CACHE_SIZE,
667 "l1-cache-size",
668 "The size of L1 cache",
669 64, 0, 0)
671 /* The size of L1 cache line in bytes. */
673 DEFPARAM (PARAM_L1_CACHE_LINE_SIZE,
674 "l1-cache-line-size",
675 "The size of L1 cache line",
676 32, 0, 0)
678 /* The size of L2 cache in kB. */
680 DEFPARAM (PARAM_L2_CACHE_SIZE,
681 "l2-cache-size",
682 "The size of L2 cache",
683 512, 0, 0)
685 /* Whether we should use canonical types rather than deep "structural"
686 type checking. Setting this value to 1 (the default) improves
687 compilation performance in the C++ and Objective-C++ front end;
688 this value should only be set to zero to work around bugs in the
689 canonical type system by disabling it. */
691 DEFPARAM (PARAM_USE_CANONICAL_TYPES,
692 "use-canonical-types",
693 "Whether to use canonical types",
694 1, 0, 1)
696 Local variables:
697 mode:c
698 End: