testsuite: Update scanning symbol sections to support AIX.
[official-gcc.git] / gcc / params.opt
blob5b00284c1fbb17e63d947dd772daa2f0ac81ae7a
1 ; Parameter options of the compiler.
3 ; Copyright (C) 2019-2020 Free Software Foundation, Inc.
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 ; See the GCC internals manual (options.texi) for a description of this file's format.
23 ; Please try to keep this file in ASCII collating order.
25 -param=align-loop-iterations=
26 Common Joined UInteger Var(param_align_loop_iterations) Init(4) Param Optimization
27 Loops iterating at least selected number of iterations will get loop alignment.
29 -param=align-threshold=
30 Common Joined UInteger Var(param_align_threshold) Init(100) IntegerRange(1, 65536) Param Optimization
31 Select fraction of the maximal frequency of executions of basic block in function given basic block get alignment.
33 -param=asan-globals=
34 Common Joined UInteger Var(param_asan_globals) Init(1) IntegerRange(0, 1) Param
35 Enable asan globals protection.
37 -param=asan-instrument-allocas=
38 Common Joined UInteger Var(param_asan_protect_allocas) Init(1) IntegerRange(0, 1) Param Optimization
39 Enable asan allocas/VLAs protection.
41 -param=asan-instrument-reads=
42 Common Joined UInteger Var(param_asan_instrument_reads) Init(1) IntegerRange(0, 1) Param Optimization
43 Enable asan load operations protection.
45 -param=asan-instrument-writes=
46 Common Joined UInteger Var(param_asan_instrument_writes) Init(1) IntegerRange(0, 1) Param Optimization
47 Enable asan store operations protection.
49 -param=asan-instrumentation-with-call-threshold=
50 Common Joined UInteger Var(param_asan_instrumentation_with_call_threshold) Init(7000) Param Optimization
51 Use callbacks instead of inline code if number of accesses in function becomes greater or equal to this number.
53 -param=asan-memintrin=
54 Common Joined UInteger Var(param_asan_memintrin) Init(1) IntegerRange(0, 1) Param Optimization
55 Enable asan builtin functions protection.
57 -param=asan-stack=
58 Common Joined UInteger Var(param_asan_stack) Init(1) IntegerRange(0, 1) Param Optimization
59 Enable asan stack protection.
61 -param=asan-use-after-return=
62 Common Joined UInteger Var(param_asan_use_after_return) Init(1) IntegerRange(0, 1) Param Optimization
63 Enable asan detection of use-after-return bugs.
65 -param=avg-loop-niter=
66 Common Joined UInteger Var(param_avg_loop_niter) Init(10) IntegerRange(1, 65536) Param Optimization
67 Average number of iterations of a loop.
69 -param=avoid-fma-max-bits=
70 Common Joined UInteger Var(param_avoid_fma_max_bits) IntegerRange(0, 512) Param Optimization
71 Maximum number of bits for which we avoid creating FMAs.
73 -param=builtin-expect-probability=
74 Common Joined UInteger Var(param_builtin_expect_probability) Init(90) IntegerRange(0, 100) Param Optimization
75 Set the estimated probability in percentage for builtin expect. The default value is 90% probability.
77 -param=builtin-string-cmp-inline-length=
78 Common Joined UInteger Var(param_builtin_string_cmp_inline_length) Init(3) IntegerRange(0, 100) Param Optimization
79 The maximum length of a constant string for a builtin string cmp call eligible for inlining. The default value is 3.
81 -param=case-values-threshold=
82 Common Joined UInteger Var(param_case_values_threshold) Param Optimization
83 The smallest number of different values for which it is best to use a jump-table instead of a tree of conditional branches, if 0, use the default for the machine.
85 -param=comdat-sharing-probability=
86 Common Joined UInteger Var(param_comdat_sharing_probability) Init(20) Param Optimization
87 Probability that COMDAT function will be shared with different compilation unit.
89 -param=cxx-max-namespaces-for-diagnostic-help=
90 Common Joined UInteger Var(param_cxx_max_namespaces_for_diagnostic_help) Init(1000) Param
91 Maximum number of namespaces to search for alternatives when name lookup fails.
93 -param=dse-max-alias-queries-per-store=
94 Common Joined UInteger Var(param_dse_max_alias_queries_per_store) Init(256) Param Optimization
95 Maximum number of queries into the alias oracle per store.
97 -param=dse-max-object-size=
98 Common Joined UInteger Var(param_dse_max_object_size) Init(256) Param Optimization
99 Maximum size (in bytes) of objects tracked bytewise by dead store elimination.
101 -param=early-inlining-insns=
102 Common Joined UInteger Var(param_early_inlining_insns) Init(6) Optimization Param
103 Maximal estimated growth of function body caused by early inlining of single call.
105 -param=evrp-mode=
106 Common Joined Var(param_evrp_mode) Enum(evrp_mode) Init(EVRP_MODE_EVRP_FIRST) Param Optimization
107 --param=evrp-mode=[legacy|ranger|legacy-first|ranger-first|ranger-trace|ranger-debug|trace|debug] Specifies the mode Early VRP should operate in.
109 Enum
110 Name(evrp_mode) Type(enum evrp_mode) UnknownError(unknown evrp mode %qs)
112 EnumValue
113 Enum(evrp_mode) String(legacy) Value(EVRP_MODE_EVRP_ONLY)
115 EnumValue
116 Enum(evrp_mode) String(ranger) Value(EVRP_MODE_RVRP_ONLY)
118 EnumValue
119 Enum(evrp_mode) String(legacy-first) Value(EVRP_MODE_EVRP_FIRST)
121 EnumValue
122 Enum(evrp_mode) String(ranger-first) Value(EVRP_MODE_RVRP_FIRST)
124 EnumValue
125 Enum(evrp_mode) String(ranger-trace) Value(EVRP_MODE_RVRP_TRACE)
127 EnumValue
128 Enum(evrp_mode) String(ranger-debug) Value(EVRP_MODE_RVRP_DEBUG)
130 EnumValue
131 Enum(evrp_mode) String(trace) Value(EVRP_MODE_TRACE)
133 EnumValue
134 Enum(evrp_mode) String(debug) Value(EVRP_MODE_DEBUG)
136 -param=fsm-maximum-phi-arguments=
137 Common Joined UInteger Var(param_fsm_maximum_phi_arguments) Init(100) IntegerRange(1, 999999) Param Optimization
138 Maximum number of arguments a PHI may have before the FSM threader will not try to thread through its block.
140 -param=fsm-scale-path-blocks=
141 Common Joined UInteger Var(param_fsm_scale_path_blocks) Init(3) IntegerRange(1, 10) Param Optimization
142 Scale factor to apply to the number of blocks in a threading path when comparing to the number of (scaled) statements.
144 -param=fsm-scale-path-stmts=
145 Common Joined UInteger Var(param_fsm_scale_path_stmts) Init(2) IntegerRange(1, 10) Param Optimization
146 Scale factor to apply to the number of statements in a threading path when comparing to the number of (scaled) blocks.
148 -param=gcse-after-reload-critical-fraction=
149 Common Joined UInteger Var(param_gcse_after_reload_critical_fraction) Init(10) Param Optimization
150 The threshold ratio of critical edges execution count that permit performing redundancy elimination after reload.
152 -param=gcse-after-reload-partial-fraction=
153 Common Joined UInteger Var(param_gcse_after_reload_partial_fraction) Init(3) Param Optimization
154 The threshold ratio for performing partial redundancy elimination after reload.
156 -param=gcse-cost-distance-ratio=
157 Common Joined UInteger Var(param_gcse_cost_distance_ratio) Init(10) Param Optimization
158 Scaling factor in calculation of maximum distance an expression can be moved by GCSE optimizations.
160 -param=gcse-unrestricted-cost=
161 Common Joined UInteger Var(param_gcse_unrestricted_cost) Init(3) Param Optimization
162 Cost at which GCSE optimizations will not constraint the distance an expression can travel.
164 -param=ggc-min-expand=
165 Common Joined UInteger Var(param_ggc_min_expand) Init(30) Param
166 Minimum heap expansion to trigger garbage collection, as a percentage of the total size of the heap.
168 -param=ggc-min-heapsize=
169 Common Joined UInteger Var(param_ggc_min_heapsize) Init(4096) Param
170 Minimum heap size before we start collecting garbage, in kilobytes.
172 -param=gimple-fe-computed-hot-bb-threshold=
173 Common Joined UInteger Var(param_gimple_fe_computed_hot_bb_threshold) Param
174 The number of executions of a basic block which is considered hot. The parameter is used only in GIMPLE FE.
176 -param=graphite-allow-codegen-errors=
177 Common Joined UInteger Var(param_graphite_allow_codegen_errors) IntegerRange(0, 1) Param
178 Whether codegen errors should be ICEs when -fchecking.
180 -param=graphite-max-arrays-per-scop=
181 Common Joined UInteger Var(param_graphite_max_arrays_per_scop) Init(100) Param Optimization
182 Maximum number of arrays per SCoP.
184 -param=graphite-max-nb-scop-params=
185 Common Joined UInteger Var(param_graphite_max_nb_scop_params) Init(10) Param Optimization
186 Maximum number of parameters in a SCoP.
188 -param=hash-table-verification-limit=
189 Common Joined UInteger Var(param_hash_table_verification_limit) Init(10) Param
190 The number of elements for which hash table verification is done for each searched element.
192 -param=hot-bb-count-fraction=
193 Common Joined UInteger Var(param_hot_bb_count_fraction) Init(10000) Param
194 The denominator n of fraction 1/n of the maximal execution count of a basic block in the entire program that a basic block needs to at least have in order to be considered hot (used in non-LTO mode).
196 -param=hot-bb-count-ws-permille=
197 Common Joined UInteger Var(param_hot_bb_count_ws_permille) Init(990) IntegerRange(0, 1000) Param
198 The number of most executed permilles of the profiled execution of the entire program to which the execution count of a basic block must be part of in order to be considered hot (used in LTO mode).
200 -param=hot-bb-frequency-fraction=
201 Common Joined UInteger Var(param_hot_bb_frequency_fraction) Init(1000) Param
202 The denominator n of fraction 1/n of the execution frequency of the entry block of a function that a basic block of this function needs to at least have in order to be considered hot.
204 -param=inline-heuristics-hint-percent=
205 Common Joined UInteger Var(param_inline_heuristics_hint_percent) Init(200) Optimization IntegerRange(100, 1000000) Param
206 The scale (in percents) applied to inline-insns-single and auto limits when heuristics hints that inlining is very profitable.
208 -param=inline-min-speedup=
209 Common Joined UInteger Var(param_inline_min_speedup) Init(30) Optimization IntegerRange(0, 100) Param
210 The minimal estimated speedup allowing inliner to ignore inline-insns-single and inline-insns-auto.
212 -param=inline-unit-growth=
213 Common Joined UInteger Var(param_inline_unit_growth) Init(40) Optimization Param
214 How much can given compilation unit grow because of the inlining (in percent).
216 -param=integer-share-limit=
217 Common Joined UInteger Var(param_integer_share_limit) Init(251) IntegerRange(2, 65536) Param
218 The upper bound for sharing integer constants.
220 -param=ipa-cp-eval-threshold=
221 Common Joined UInteger Var(param_ipa_cp_eval_threshold) Init(500) Param Optimization
222 Threshold ipa-cp opportunity evaluation that is still considered beneficial to clone.
224 -param=ipa-cp-loop-hint-bonus=
225 Common Joined UInteger Var(param_ipa_cp_loop_hint_bonus) Init(64) Param Optimization
226 Compile-time bonus IPA-CP assigns to candidates which make loop bounds or strides known.
228 -param=ipa-cp-max-recursive-depth=
229 Common Joined UInteger Var(param_ipa_cp_max_recursive_depth) Init(8) Param Optimization
230 Maximum depth of recursive cloning for self-recursive function.
232 -param=ipa-cp-min-recursive-probability=
233 Common Joined UInteger Var(param_ipa_cp_min_recursive_probability) Init(2) Param Optimization
234 Recursive cloning only when the probability of call being executed exceeds the parameter.
236 -param=ipa-cp-recursion-penalty=
237 Common Joined UInteger Var(param_ipa_cp_recursion_penalty) Init(40) IntegerRange(0, 100) Param Optimization
238 Percentage penalty the recursive functions will receive when they are evaluated for cloning.
240 -param=ipa-cp-single-call-penalty=
241 Common Joined UInteger Var(param_ipa_cp_single_call_penalty) Init(15) IntegerRange(0, 100) Param Optimization
242 Percentage penalty functions containing a single call to another function will receive when they are evaluated for cloning.
244 -param=ipa-cp-unit-growth=
245 Common Joined UInteger Var(param_ipa_cp_unit_growth) Init(10) Param Optimization
246 How much can given compilation unit grow because of the interprocedural constant propagation (in percent).
248 -param=ipa-cp-large-unit-insns=
249 Common Joined UInteger Var(param_ipa_cp_large_unit_insns) Optimization Init(16000) Param
250 The size of translation unit that IPA-CP pass considers large.
252 -param=ipa-cp-value-list-size=
253 Common Joined UInteger Var(param_ipa_cp_value_list_size) Init(8) Param Optimization
254 Maximum size of a list of values associated with each parameter for interprocedural constant propagation.
256 -param=ipa-jump-function-lookups=
257 Common Joined UInteger Var(param_ipa_jump_function_lookups) Init(8) Param Optimization
258 Maximum number of statements visited during jump function offset discovery.
260 -param=ipa-max-aa-steps=
261 Common Joined UInteger Var(param_ipa_max_aa_steps) Init(25000) Param Optimization
262 Maximum number of statements that will be visited by IPA formal parameter analysis based on alias analysis in any given function.
264 -param=ipa-max-agg-items=
265 Common Joined UInteger Var(param_ipa_max_agg_items) Init(16) Param Optimization
266 Maximum number of aggregate content items for a parameter in jump functions and lattices.
268 -param=ipa-max-param-expr-ops=
269 Common Joined UInteger Var(param_ipa_max_param_expr_ops) Init(10) Param Optimization
270 Maximum number of operations in a parameter expression that can be handled by IPA analysis.
272 -param=ipa-max-loop-predicates=
273 Common Joined UInteger Var(param_ipa_max_loop_predicates) Init(16) Param Optimization
274 Maximum number of different predicates used to track properties of loops in IPA analysis.
276 -param=ipa-max-switch-predicate-bounds=
277 Common Joined UInteger Var(param_ipa_max_switch_predicate_bounds) Init(5) Param Optimization
278 Maximal number of boundary endpoints of case ranges of switch statement used during IPA function summary generation.
280 -param=ipa-sra-max-replacements=
281 Common Joined UInteger Var(param_ipa_sra_max_replacements) Optimization Init(8) IntegerRange(0, 16) Param
282 Maximum pieces that IPA-SRA tracks per formal parameter, as a consequence, also the maximum number of replacements of a formal parameter.
284 -param=ipa-sra-ptr-growth-factor=
285 Common Joined UInteger Var(param_ipa_sra_ptr_growth_factor) Init(2) Param Optimization
286 Maximum allowed growth of number and total size of new parameters that ipa-sra replaces a pointer to an aggregate with.
288 -param=ira-loop-reserved-regs=
289 Common Joined UInteger Var(param_ira_loop_reserved_regs) Init(2) Param Optimization
290 The number of registers in each class kept unused by loop invariant motion.
292 -param=ira-max-conflict-table-size=
293 Common Joined UInteger Var(param_ira_max_conflict_table_size) Init(1000) Param Optimization
294 Max size of conflict table in MB.
296 -param=ira-max-loops-num=
297 Common Joined UInteger Var(param_ira_max_loops_num) Init(100) Param Optimization
298 Max loops number for regional RA.
300 -param=iv-always-prune-cand-set-bound=
301 Common Joined UInteger Var(param_iv_always_prune_cand_set_bound) Init(10) Param Optimization
302 If number of candidates in the set is smaller, we always try to remove unused ivs during its optimization.
304 -param=iv-consider-all-candidates-bound=
305 Common Joined UInteger Var(param_iv_consider_all_candidates_bound) Init(40) Param Optimization
306 Bound on number of candidates below that all candidates are considered in iv optimizations.
308 -param=iv-max-considered-uses=
309 Common Joined UInteger Var(param_iv_max_considered_uses) Init(250) Param Optimization
310 Bound on number of iv uses in loop optimized in iv optimizations.
312 -param=jump-table-max-growth-ratio-for-size=
313 Common Joined UInteger Var(param_jump_table_max_growth_ratio_for_size) Init(300) Param Optimization
314 The maximum code size growth ratio when expanding into a jump table (in percent).  The parameter is used when optimizing for size.
316 -param=jump-table-max-growth-ratio-for-speed=
317 Common Joined UInteger Var(param_jump_table_max_growth_ratio_for_speed) Init(800) Param Optimization
318 The maximum code size growth ratio when expanding into a jump table (in percent).  The parameter is used when optimizing for speed.
320 -param=l1-cache-line-size=
321 Common Joined UInteger Var(param_l1_cache_line_size) Init(32) Param Optimization
322 The size of L1 cache line.
324 -param=l1-cache-size=
325 Common Joined UInteger Var(param_l1_cache_size) Init(64) Param Optimization
326 The size of L1 cache.
328 -param=l2-cache-size=
329 Common Joined UInteger Var(param_l2_cache_size) Init(512) Param Optimization
330 The size of L2 cache.
332 -param=large-function-growth=
333 Common Joined UInteger Var(param_large_function_growth) Optimization Init(100) Param
334 Maximal growth due to inlining of large function (in percent).
336 -param=large-function-insns=
337 Common Joined UInteger Var(param_large_function_insns) Optimization Init(2700) Param
338 The size of function body to be considered large.
340 -param=large-stack-frame=
341 Common Joined UInteger Var(param_large_stack_frame) Init(256) Optimization Param
342 The size of stack frame to be considered large.
344 -param=large-stack-frame-growth=
345 Common Joined UInteger Var(param_stack_frame_growth) Optimization Init(1000) Param
346 Maximal stack frame growth due to inlining (in percent).
348 -param=large-unit-insns=
349 Common Joined UInteger Var(param_large_unit_insns) Optimization Init(10000) Param
350 The size of translation unit to be considered large.
352 -param=lim-expensive=
353 Common Joined UInteger Var(param_lim_expensive) Init(20) Param Optimization
354 The minimum cost of an expensive expression in the loop invariant motion.
356 -param=logical-op-non-short-circuit=
357 Common Joined UInteger Var(param_logical_op_non_short_circuit) Init(-1) IntegerRange(-1, 1) Param
358 True if a non-short-circuit operation is optimal.
360 -param=loop-block-tile-size=
361 Common Joined UInteger Var(param_loop_block_tile_size) Init(51) Param Optimization
362 Size of tiles for loop blocking.
364 -param=loop-interchange-max-num-stmts=
365 Common Joined UInteger Var(param_loop_interchange_max_num_stmts) Init(64) Param Optimization
366 The maximum number of stmts in loop nest for loop interchange.
368 -param=loop-interchange-stride-ratio=
369 Common Joined UInteger Var(param_loop_interchange_stride_ratio) Init(2) Param Optimization
370 The minimum stride ratio for loop interchange to be profitable.
372 -param=loop-invariant-max-bbs-in-loop=
373 Common Joined UInteger Var(param_loop_invariant_max_bbs_in_loop) Init(10000) Param Optimization
374 Max basic blocks number in loop for loop invariant motion.
376 -param=loop-max-datarefs-for-datadeps=
377 Common Joined UInteger Var(param_loop_max_datarefs_for_datadeps) Init(1000) Param Optimization
378 Maximum number of datarefs in loop for building loop data dependencies.
380 -param=loop-versioning-max-inner-insns=
381 Common Joined UInteger Var(param_loop_versioning_max_inner_insns) Init(200) Param Optimization
382 The maximum number of instructions in an inner loop that is being considered for versioning.
384 -param=loop-versioning-max-outer-insns=
385 Common Joined UInteger Var(param_loop_versioning_max_outer_insns) Init(100) Param Optimization
386 The maximum number of instructions in an outer loop that is being considered for versioning, on top of the instructions in inner loops.
388 -param=lra-inheritance-ebb-probability-cutoff=
389 Common Joined UInteger Var(param_lra_inheritance_ebb_probability_cutoff) Init(40) IntegerRange(0, 100) Param Optimization
390 Minimal fall-through edge probability in percentage used to add BB to inheritance EBB in LRA.
392 -param=lra-max-considered-reload-pseudos=
393 Common Joined UInteger Var(param_lra_max_considered_reload_pseudos) Init(500) Param Optimization
394 The max number of reload pseudos which are considered during spilling a non-reload pseudo.
396 -param=lto-max-partition=
397 Common Joined UInteger Var(param_max_partition_size) Init(1000000) Param
398 Maximal size of a partition for LTO (in estimated instructions).
400 -param=lto-max-streaming-parallelism=
401 Common Joined UInteger Var(param_max_lto_streaming_parallelism) Init(32) IntegerRange(1, 65536) Param
402 maximal number of LTO partitions streamed in parallel.
404 -param=lto-min-partition=
405 Common Joined UInteger Var(param_min_partition_size) Init(10000) Param
406 Minimal size of a partition for LTO (in estimated instructions).
408 -param=lto-partitions=
409 Common Joined UInteger Var(param_lto_partitions) Init(128) IntegerRange(1, 65536) Param
410 Number of partitions the program should be split to.
412 -param=max-average-unrolled-insns=
413 Common Joined UInteger Var(param_max_average_unrolled_insns) Init(80) Param Optimization
414 The maximum number of instructions to consider to unroll in a loop on average.
416 -param=max-combine-insns=
417 Common Joined UInteger Var(param_max_combine_insns) Init(4) IntegerRange(2, 4) Param Optimization
418 The maximum number of insns combine tries to combine.
420 -param=max-completely-peel-loop-nest-depth=
421 Common Joined UInteger Var(param_max_unroll_iterations) Init(8) Param Optimization
422 The maximum depth of a loop nest we completely peel.
424 -param=max-completely-peel-times=
425 Common Joined UInteger Var(param_max_completely_peel_times) Init(16) Param Optimization
426 The maximum number of peelings of a single loop that is peeled completely.
428 -param=max-completely-peeled-insns=
429 Common Joined UInteger Var(param_max_completely_peeled_insns) Init(200) Param Optimization
430 The maximum number of insns of a completely peeled loop.
432 -param=max-crossjump-edges=
433 Common Joined UInteger Var(param_max_crossjump_edges) Init(100) Param Optimization
434 The maximum number of incoming edges to consider for crossjumping.
436 -param=max-cse-insns=
437 Common Joined UInteger Var(param_max_cse_insns) Init(1000) Param Optimization
438 The maximum instructions CSE process before flushing.
440 -param=max-cse-path-length=
441 Common Joined UInteger Var(param_max_cse_path_length) Init(10) IntegerRange(1, 65536) Param Optimization
442 The maximum length of path considered in cse.
444 -param=max-cselib-memory-locations=
445 Common Joined UInteger Var(param_max_cselib_memory_locations) Init(500) Param Optimization
446 The maximum memory locations recorded by cselib.
448 -param=max-debug-marker-count=
449 Common Joined UInteger Var(param_max_debug_marker_count) Init(100000) Param Optimization
450 Max. count of debug markers to expand or inline.
452 -param=max-delay-slot-insn-search=
453 Common Joined UInteger Var(param_max_delay_slot_insn_search) Init(100) Param Optimization
454 The maximum number of instructions to consider to fill a delay slot.
456 -param=max-delay-slot-live-search=
457 Common Joined UInteger Var(param_max_delay_slot_live_search) Init(333) Param Optimization
458 The maximum number of instructions to consider to find accurate live register information.
460 -param=max-dse-active-local-stores=
461 Common Joined UInteger Var(param_max_dse_active_local_stores) Init(5000) Param Optimization
462 Maximum number of active local stores in RTL dead store elimination.
464 -param=max-early-inliner-iterations=
465 Common Joined UInteger Var(param_early_inliner_max_iterations) Init(1) Param Optimization
466 The maximum number of nested indirect inlining performed by early inliner.
468 -param=max-fields-for-field-sensitive=
469 Common Joined UInteger Var(param_max_fields_for_field_sensitive) Param
470 Maximum number of fields in a structure before pointer analysis treats the structure as a single variable.
472 -param=max-fsm-thread-length=
473 Common Joined UInteger Var(param_max_fsm_thread_length) Init(10) IntegerRange(1, 999999) Param Optimization
474 Maximum number of basic blocks on a finite state automaton jump thread path.
476 -param=max-fsm-thread-path-insns=
477 Common Joined UInteger Var(param_max_fsm_thread_path_insns) Init(100) IntegerRange(1, 999999) Param Optimization
478 Maximum number of instructions to copy when duplicating blocks on a finite state automaton jump thread path.
480 -param=max-fsm-thread-paths=
481 Common Joined UInteger Var(param_max_fsm_thread_paths) Init(50) IntegerRange(1, 999999) Param Optimization
482 Maximum number of new jump thread paths to create for a finite state automaton.
484 -param=max-gcse-insertion-ratio=
485 Common Joined UInteger Var(param_max_gcse_insertion_ratio) Init(20) Param Optimization
486 The maximum ratio of insertions to deletions of expressions in GCSE.
488 -param=max-gcse-memory=
489 Common Joined UInteger Var(param_max_gcse_memory) Init(134217728) Param Optimization
490 The maximum amount of memory to be allocated by GCSE.
492 -param=max-goto-duplication-insns=
493 Common Joined UInteger Var(param_max_goto_duplication_insns) Init(8) Param Optimization
494 The maximum number of insns to duplicate when unfactoring computed gotos.
496 -param=max-grow-copy-bb-insns=
497 Common Joined UInteger Var(param_max_grow_copy_bb_insns) Init(8) Param Optimization
498 The maximum expansion factor when copying basic blocks.
500 -param=max-hoist-depth=
501 Common Joined UInteger Var(param_max_hoist_depth) Init(30) Param Optimization
502 Maximum depth of search in the dominator tree for expressions to hoist.
504 -param=max-inline-insns-auto=
505 Common Joined UInteger Var(param_max_inline_insns_auto) Init(15) Optimization Param
506 The maximum number of instructions when automatically inlining.
508 -param=max-inline-insns-recursive=
509 Common Joined UInteger Var(param_max_inline_insns_recursive) Optimization Init(450) Param
510 The maximum number of instructions inline function can grow to via recursive inlining.
512 -param=max-inline-insns-recursive-auto=
513 Common Joined UInteger Var(param_max_inline_insns_recursive_auto) Optimization Init(450) Param
514 The maximum number of instructions non-inline function can grow to via recursive inlining.
516 -param=max-inline-insns-single=
517 Common Joined UInteger Var(param_max_inline_insns_single) Optimization Init(70) Param
518 The maximum number of instructions in a single function eligible for inlining.
520 -param=max-inline-insns-size=
521 Common Joined UInteger Var(param_max_inline_insns_size) Optimization Param
522 The maximum number of instructions when inlining for size.
524 -param=max-inline-insns-small=
525 Common Joined UInteger Var(param_max_inline_insns_small) Optimization Param
526 The maximum number of instructions when automatically inlining small functions.
528 -param=max-inline-recursive-depth=
529 Common Joined UInteger Var(param_max_inline_recursive_depth) Optimization Init(8) Param
530 The maximum depth of recursive inlining for inline functions.
532 -param=max-inline-recursive-depth-auto=
533 Common Joined UInteger Var(param_max_inline_recursive_depth_auto) Optimization Init(8) Param
534 The maximum depth of recursive inlining for non-inline functions.
536 -param=max-isl-operations=
537 Common Joined UInteger Var(param_max_isl_operations) Init(350000) Param Optimization
538 Maximum number of isl operations, 0 means unlimited.
540 -param=max-iterations-computation-cost=
541 Common Joined UInteger Var(param_max_iterations_computation_cost) Init(10) Param Optimization
542 Bound on the cost of an expression to compute the number of iterations.
544 -param=max-iterations-to-track=
545 Common Joined UInteger Var(param_max_iterations_to_track) Init(1000) Param Optimization
546 Bound on the number of iterations the brute force # of iterations analysis algorithm evaluates.
548 -param=max-jump-thread-duplication-stmts=
549 Common Joined UInteger Var(param_max_jump_thread_duplication_stmts) Init(15) Param Optimization
550 Maximum number of statements allowed in a block that needs to be duplicated when threading jumps.
552 -param=max-last-value-rtl=
553 Common Joined UInteger Var(param_max_last_value_rtl) Init(10000) Param Optimization
554 The maximum number of RTL nodes that can be recorded as combiner's last value.
556 -param=max-loop-header-insns=
557 Common Joined UInteger Var(param_max_loop_header_insns) Init(20) Param Optimization
558 The maximum number of insns in loop header duplicated by the copy loop headers pass.
560 -param=max-modulo-backtrack-attempts=
561 Common Joined UInteger Var(param_max_modulo_backtrack_attempts) Init(40) Param Optimization
562 The maximum number of backtrack attempts the scheduler should make when modulo scheduling a loop.
564 -param=max-partial-antic-length=
565 Common Joined UInteger Var(param_max_partial_antic_length) Init(100) Param Optimization
566 Maximum length of partial antic set when performing tree pre optimization.
568 -param=max-peel-branches=
569 Common Joined UInteger Var(param_max_peel_branches) Init(32) Param Optimization
570 The maximum number of branches on the path through the peeled sequence.
572 -param=max-peel-times=
573 Common Joined UInteger Var(param_max_peel_times) Init(16) Param Optimization
574 The maximum number of peelings of a single loop.
576 -param=max-peeled-insns=
577 Common Joined UInteger Var(param_max_peeled_insns) Init(100) Param Optimization
578 The maximum number of insns of a peeled loop.
580 -param=max-pending-list-length=
581 Common Joined UInteger Var(param_max_pending_list_length) Init(32) Param Optimization
582 The maximum length of scheduling's pending operations list.
584 -param=max-pipeline-region-blocks=
585 Common Joined UInteger Var(param_max_pipeline_region_blocks) Init(15) Param Optimization
586 The maximum number of blocks in a region to be considered for interblock scheduling.
588 -param=max-pipeline-region-insns=
589 Common Joined UInteger Var(param_max_pipeline_region_insns) Init(200) Param Optimization
590 The maximum number of insns in a region to be considered for interblock scheduling.
592 -param=max-pow-sqrt-depth=
593 Common Joined UInteger Var(param_max_pow_sqrt_depth) Init(5) IntegerRange(1, 32) Param Optimization
594 Maximum depth of sqrt chains to use when synthesizing exponentiation by a real constant.
596 -param=max-predicted-iterations=
597 Common Joined UInteger Var(param_max_predicted_iterations) Init(100) IntegerRange(0, 65536) Param Optimization
598 The maximum number of loop iterations we predict statically.
600 -param=max-reload-search-insns=
601 Common Joined UInteger Var(param_max_reload_search_insns) Init(100) Param Optimization
602 The maximum number of instructions to search backward when looking for equivalent reload.
604 -param=max-rtl-if-conversion-insns=
605 Common Joined UInteger Var(param_max_rtl_if_conversion_insns) Init(10) IntegerRange(0, 99) Param Optimization
606 Maximum number of insns in a basic block to consider for RTL if-conversion.
608 -param=max-rtl-if-conversion-predictable-cost=
609 Common Joined UInteger Var(param_max_rtl_if_conversion_predictable_cost) Init(20) IntegerRange(0, 200) Param Optimization
610 Maximum permissible cost for the sequence that would be generated by the RTL if-conversion pass for a branch that is considered predictable.
612 -param=max-rtl-if-conversion-unpredictable-cost=
613 Common Joined UInteger Var(param_max_rtl_if_conversion_unpredictable_cost) Init(40) IntegerRange(0, 200) Param Optimization
614 Maximum permissible cost for the sequence that would be generated by the RTL if-conversion pass for a branch that is considered unpredictable.
616 -param=max-sched-extend-regions-iters=
617 Common Joined UInteger Var(param_max_sched_extend_regions_iters) Param Optimization
618 The maximum number of iterations through CFG to extend regions.
620 -param=max-sched-insn-conflict-delay=
621 Common Joined UInteger Var(param_max_sched_insn_conflict_delay) Init(3) IntegerRange(1, 10) Param Optimization
622 The maximum conflict delay for an insn to be considered for speculative motion.
624 -param=max-sched-ready-insns=
625 Common Joined UInteger Var(param_max_sched_ready_insns) Init(100) IntegerRange(1, 65536) Param Optimization
626 The maximum number of instructions ready to be issued to be considered by the scheduler during the first scheduling pass.
628 -param=max-sched-region-blocks=
629 Common Joined UInteger Var(param_max_sched_region_blocks) Init(10) Param Optimization
630 The maximum number of blocks in a region to be considered for interblock scheduling.
632 -param=max-sched-region-insns=
633 Common Joined UInteger Var(param_max_sched_region_insns) Init(100) Param Optimization
634 The maximum number of insns in a region to be considered for interblock scheduling.
636 -param=max-slsr-cand-scan=
637 Common Joined UInteger Var(param_max_slsr_candidate_scan) Init(50) IntegerRange(1, 999999) Param Optimization
638 Maximum length of candidate scans for straight-line strength reduction.
640 -param=max-speculative-devirt-maydefs=
641 Common Joined UInteger Var(param_max_speculative_devirt_maydefs) Init(50) Param Optimization
642 Maximum number of may-defs visited when devirtualizing speculatively.
644 -param=max-ssa-name-query-depth=
645 Common Joined UInteger Var(param_max_ssa_name_query_depth) Init(3) IntegerRange(1, 10) Param
646 Maximum recursion depth allowed when querying a property of an SSA name.
648 -param=max-stores-to-merge=
649 Common Joined UInteger Var(param_max_stores_to_merge) Init(64) IntegerRange(2, 65536) Param Optimization
650 Maximum number of constant stores to merge in the store merging pass.
652 -param=max-stores-to-sink=
653 Common Joined UInteger Var(param_max_stores_to_sink) Init(2) Param Optimization
654 Maximum number of conditional store pairs that can be sunk.
656 -param=max-tail-merge-comparisons=
657 Common Joined UInteger Var(param_max_tail_merge_comparisons) Init(10) Param Optimization
658 Maximum amount of similar bbs to compare a bb with.
660 -param=max-tail-merge-iterations=
661 Common Joined UInteger Var(param_max_tail_merge_iterations) Init(2) Param Optimization
662 Maximum amount of iterations of the pass over a function.
664 -param=max-tracked-strlens=
665 Common Joined UInteger Var(param_max_tracked_strlens) Init(10000) Param Optimization
666 Maximum number of strings for which strlen optimization pass will track string lengths.
668 -param=max-tree-if-conversion-phi-args=
669 Common Joined UInteger Var(param_max_tree_if_conversion_phi_args) Init(4) IntegerRange(2, 65536) Param Optimization
670 Maximum number of arguments in a PHI supported by TREE if-conversion unless the loop is marked with simd pragma.
672 -param=max-unroll-times=
673 Common Joined UInteger Var(param_max_unroll_times) Init(8) Param Optimization
674 The maximum number of unrollings of a single loop.
676 -param=max-unrolled-insns=
677 Common Joined UInteger Var(param_max_unrolled_insns) Init(200) Param Optimization
678 The maximum number of instructions to consider to unroll in a loop.
680 -param=max-unswitch-insns=
681 Common Joined UInteger Var(param_max_unswitch_insns) Init(50) Param Optimization
682 The maximum number of insns of an unswitched loop.
684 -param=max-unswitch-level=
685 Common Joined UInteger Var(param_max_unswitch_level) Init(3) Param Optimization
686 The maximum number of unswitchings in a single loop.
688 -param=max-variable-expansions-in-unroller=
689 Common Joined UInteger Var(param_max_variable_expansions) Init(1) Param Optimization
690 If -fvariable-expansion-in-unroller is used, the maximum number of times that an individual variable will be expanded during loop unrolling.
692 -param=max-vartrack-expr-depth=
693 Common Joined UInteger Var(param_max_vartrack_expr_depth) Init(12) Param Optimization
694 Max. recursion depth for expanding var tracking expressions.
696 -param=max-vartrack-reverse-op-size=
697 Common Joined UInteger Var(param_max_vartrack_reverse_op_size) Init(50) Param Optimization
698 Max. size of loc list for which reverse ops should be added.
700 -param=max-vartrack-size=
701 Common Joined UInteger Var(param_max_vartrack_size) Init(50000000) Param Optimization
702 Max. size of var tracking hash tables.
704 -param=max-find-base-term-values=
705 Common Joined UInteger Var(param_max_find_base_term_values) Init(200) Param Optimization
706 Maximum number of VALUEs handled during a single find_base_term call.
708 -param=max-vrp-switch-assertions=
709 Common Joined UInteger Var(param_max_vrp_switch_assertions) Init(10) Param Optimization
710 Maximum number of assertions to add along the default edge of a switch statement during VRP.
712 -param=min-crossjump-insns=
713 Common Joined UInteger Var(param_min_crossjump_insns) Init(5) IntegerRange(1, 65536) Param Optimization
714 The minimum number of matching instructions to consider for crossjumping.
716 -param=min-inline-recursive-probability=
717 Common Joined UInteger Var(param_min_inline_recursive_probability) Init(10) Optimization Param
718 Inline recursively only when the probability of call being executed exceeds the parameter.
720 -param=min-insn-to-prefetch-ratio=
721 Common Joined UInteger Var(param_min_insn_to_prefetch_ratio) Init(9) Param Optimization
722 Min. ratio of insns to prefetches to enable prefetching for a loop with an unknown trip count.
724 -param=min-loop-cond-split-prob=
725 Common Joined UInteger Var(param_min_loop_cond_split_prob) Init(30) IntegerRange(0, 100) Param Optimization
726 The minimum threshold for probability of semi-invariant condition statement to trigger loop split.
728 -param=min-nondebug-insn-uid=
729 Common Joined UInteger Var(param_min_nondebug_insn_uid) Param
730 The minimum UID to be used for a nondebug insn.
732 -param=min-size-for-stack-sharing=
733 Common Joined UInteger Var(param_min_size_for_stack_sharing) Init(32) Param Optimization
734 The minimum size of variables taking part in stack slot sharing when not optimizing.
736 -param=min-spec-prob=
737 Common Joined UInteger Var(param_min_spec_prob) Init(40) Param Optimization
738 The minimum probability of reaching a source block for interblock speculative scheduling.
740 -param=min-vect-loop-bound=
741 Common Joined UInteger Var(param_min_vect_loop_bound) Param Optimization
742 If -ftree-vectorize is used, the minimal loop bound of a loop to be considered for vectorization.
744 -param=parloops-chunk-size=
745 Common Joined UInteger Var(param_parloops_chunk_size) Param Optimization
746 Chunk size of omp schedule for loops parallelized by parloops.
748 -param=parloops-min-per-thread=
749 Common Joined UInteger Var(param_parloops_min_per_thread) Init(100) IntegerRange(2, 65536) Param Optimization
750 Minimum number of iterations per thread of an innermost parallelized loop.
752 -param=parloops-schedule=
753 Common Joined Var(param_parloops_schedule) Enum(parloops_schedule_type) Param Optimization
754 --param=parloops-schedule=[static|dynamic|guided|auto|runtime]  Schedule type of omp schedule for loops parallelized by parloops.
756 Enum
757 Name(parloops_schedule_type) Type(int)
759 EnumValue
760 Enum(parloops_schedule_type) String(static) Value(PARLOOPS_SCHEDULE_STATIC)
762 EnumValue
763 Enum(parloops_schedule_type) String(dynamic) Value(PARLOOPS_SCHEDULE_DYNAMIC)
765 EnumValue
766 Enum(parloops_schedule_type) String(guided) Value(PARLOOPS_SCHEDULE_GUIDED)
768 EnumValue
769 Enum(parloops_schedule_type) String(auto) Value(PARLOOPS_SCHEDULE_AUTO)
771 EnumValue
772 Enum(parloops_schedule_type) String(runtime) Value(PARLOOPS_SCHEDULE_RUNTIME)
774 -param=partial-inlining-entry-probability=
775 Common Joined UInteger Var(param_partial_inlining_entry_probability) Init(70) Optimization IntegerRange(0, 100) Param
776 Maximum probability of the entry BB of split region (in percent relative to entry BB of the function) to make partial inlining happen.
778 -param=predictable-branch-outcome=
779 Common Joined UInteger Var(param_predictable_branch_outcome) Init(2) IntegerRange(0, 50) Param Optimization
780 Maximal estimated outcome of branch considered predictable.
782 -param=prefetch-dynamic-strides=
783 Common Joined UInteger Var(param_prefetch_dynamic_strides) Init(1) IntegerRange(0, 1) Param Optimization
784 Whether software prefetch hints should be issued for non-constant strides.
786 -param=prefetch-latency=
787 Common Joined UInteger Var(param_prefetch_latency) Init(200) Param Optimization
788 The number of insns executed before prefetch is completed.
790 -param=prefetch-min-insn-to-mem-ratio=
791 Common Joined UInteger Var(param_prefetch_min_insn_to_mem_ratio) Init(3) Param Optimization
792 Min. ratio of insns to mem ops to enable prefetching in a loop.
794 -param=prefetch-minimum-stride=
795 Common Joined UInteger Var(param_prefetch_minimum_stride) Init(-1) Param Optimization
796 The minimum constant stride beyond which we should use prefetch hints for.
798 -param=profile-func-internal-id=
799 Common Joined UInteger Var(param_profile_func_internal_id) IntegerRange(0, 1) Param
800 Use internal function id in profile lookup.
802 -param=rpo-vn-max-loop-depth=
803 Common Joined UInteger Var(param_rpo_vn_max_loop_depth) Init(7) IntegerRange(2, 65536) Param Optimization
804 Maximum depth of a loop nest to fully value-number optimistically.
806 -param=sccvn-max-alias-queries-per-access=
807 Common Joined UInteger Var(param_sccvn_max_alias_queries_per_access) Init(1000) Param Optimization
808 Maximum number of disambiguations to perform per memory access.
810 -param=scev-max-expr-complexity=
811 Common Joined UInteger Var(param_scev_max_expr_complexity) Init(10) Param Optimization
812 Bound on the complexity of the expressions in the scalar evolutions analyzer.
814 -param=scev-max-expr-size=
815 Common Joined UInteger Var(param_scev_max_expr_size) Init(100) Param Optimization
816 Bound on size of expressions used in the scalar evolutions analyzer.
818 -param=sched-autopref-queue-depth=
819 Common Joined UInteger Var(param_sched_autopref_queue_depth) Init(-1) Param Optimization
820 Hardware autoprefetcher scheduler model control flag.  Number of lookahead cycles the model looks into, at '0' only enable instruction sorting heuristic.  Disabled by default.
822 -param=sched-mem-true-dep-cost=
823 Common Joined UInteger Var(param_sched_mem_true_dep_cost) Init(1) Param Optimization
824 Minimal distance between possibly conflicting store and load.
826 -param=sched-pressure-algorithm=
827 Common Joined UInteger Var(param_sched_pressure_algorithm) Init(1) IntegerRange(1, 2) Param Optimization
828 Which -fsched-pressure algorithm to apply.
830 -param=sched-spec-prob-cutoff=
831 Common Joined UInteger Var(param_sched_spec_prob_cutoff) Init(40) IntegerRange(0, 100) Param Optimization
832 The minimal probability of speculation success (in percents), so that speculative insn will be scheduled.
834 -param=sched-state-edge-prob-cutoff=
835 Common Joined UInteger Var(param_sched_state_edge_prob_cutoff) Init(10) IntegerRange(0, 100) Param Optimization
836 The minimum probability an edge must have for the scheduler to save its state across it.
838 -param=selsched-insns-to-rename=
839 Common Joined UInteger Var(param_selsched_insns_to_rename) Init(2) Param Optimization
840 Maximum number of instructions in the ready list that are considered eligible for renaming.
842 -param=selsched-max-lookahead=
843 Common Joined UInteger Var(param_selsched_max_lookahead) Init(50) Param Optimization
844 The maximum size of the lookahead window of selective scheduling.
846 -param=selsched-max-sched-times=
847 Common Joined UInteger Var(param_selsched_max_sched_times) Init(2) IntegerRange(1, 65536) Param Optimization
848 Maximum number of times that an insn could be scheduled.
850 -param=simultaneous-prefetches=
851 Common Joined UInteger Var(param_simultaneous_prefetches) Init(3) Param Optimization
852 The number of prefetches that can run at the same time.
854 -param=sink-frequency-threshold=
855 Common Joined UInteger Var(param_sink_frequency_threshold) Init(75) IntegerRange(0, 100) Param Optimization
856 Target block's relative execution frequency (as a percentage) required to sink a statement.
858 -param=sms-dfa-history=
859 Common Joined UInteger Var(param_sms_dfa_history) IntegerRange(0, 16) Param Optimization
860 The number of cycles the swing modulo scheduler considers when checking conflicts using DFA.
862 -param=sms-loop-average-count-threshold=
863 Common Joined UInteger Var(param_sms_loop_average_count_threshold) Param Optimization
864 A threshold on the average loop count considered by the swing modulo scheduler.
866 -param=sms-max-ii-factor=
867 Common Joined UInteger Var(param_sms_max_ii_factor) Init(2) IntegerRange(1, 16) Param Optimization
868 A factor for tuning the upper bound that swing modulo scheduler uses for scheduling a loop.
870 -param=sms-min-sc=
871 Common Joined UInteger Var(param_sms_min_sc) Init(2) IntegerRange(1, 2) Param Optimization
872 The minimum value of stage count that swing modulo scheduler will generate.
874 -param=sra-max-scalarization-size-Osize=
875 Common Joined UInteger Var(param_sra_max_scalarization_size_size) Param Optimization
876 Maximum size, in storage units, of an aggregate which should be considered for scalarization when compiling for size.
878 -param=sra-max-scalarization-size-Ospeed=
879 Common Joined UInteger Var(param_sra_max_scalarization_size_speed) Param Optimization
880 Maximum size, in storage units, of an aggregate which should be considered for scalarization when compiling for speed.
882 -param=sra-max-propagations=
883 Common Joined UInteger Var(param_sra_max_propagations) Param Optimization Init(32)
884 Maximum number of artificial accesses to enable forward propagation that Scalar Replacement of Aggregates will keep for one local variable.
886 -param=ssa-name-def-chain-limit=
887 Common Joined UInteger Var(param_ssa_name_def_chain_limit) Init(512) Param Optimization
888 The maximum number of SSA_NAME assignments to follow in determining a value.
890 -param=ssp-buffer-size=
891 Common Joined UInteger Var(param_ssp_buffer_size) Init(8) IntegerRange(1, 65536) Param Optimization
892 The lower bound for a buffer to be considered for stack smashing protection.
894 -param=stack-clash-protection-guard-size=
895 Common Joined UInteger Var(param_stack_clash_protection_guard_size) Init(12) IntegerRange(12, 30) Param Optimization
896 Size of the stack guard expressed as a power of two in bytes.
898 -param=stack-clash-protection-probe-interval=
899 Common Joined UInteger Var(param_stack_clash_protection_probe_interval) Init(12) IntegerRange(10, 16) Param Optimization
900 Interval in which to probe the stack expressed as a power of two in bytes.
902 -param=store-merging-allow-unaligned=
903 Common Joined UInteger Var(param_store_merging_allow_unaligned) Init(1) IntegerRange(0, 1) Param Optimization
904 Allow the store merging pass to introduce unaligned stores if it is legal to do so.
906 -param=store-merging-max-size=
907 Common Joined UInteger Var(param_store_merging_max_size) Init(65536) IntegerRange(1, 65536) Param Optimization
908 Maximum size of a single store merging region in bytes.
910 -param=switch-conversion-max-branch-ratio=
911 Common Joined UInteger Var(param_switch_conversion_branch_ratio) Init(8) IntegerRange(1, 65536) Param Optimization
912 The maximum ratio between array size and switch branches for a switch conversion to take place.
914 -param=modref-max-bases=
915 Common Joined UInteger Var(param_modref_max_bases) Init(32)
916 Maximum number of bases stored in each modref tree.
918 -param=modref-max-refs=
919 Common Joined UInteger Var(param_modref_max_refs) Init(16)
920 Maximum number of references stored in each modref base.
922 -param=modref-max-accesses=
923 Common Joined UInteger Var(param_modref_max_accesses) Init(16)
924 Maximum number of accesse stored in each modref reference.
926 -param=modref-max-tests=
927 Common Joined UInteger Var(param_modref_max_tests) Init(64)
928 Maximum number of tests performed by modref query.
930 -param=modref-max-depth=
931 Common Joined UInteger Var(param_modref_max_depth) Init(256)
932 Maximum depth of DFS walk used by modref escape analysis
934 -param=tm-max-aggregate-size=
935 Common Joined UInteger Var(param_tm_max_aggregate_size) Init(9) Param Optimization
936 Size in bytes after which thread-local aggregates should be instrumented with the logging functions instead of save/restore pairs.
938 -param=tracer-dynamic-coverage=
939 Common Joined UInteger Var(param_tracer_dynamic_coverage) Init(75) IntegerRange(0, 100) Param Optimization
940 The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is not available.
942 -param=tracer-dynamic-coverage-feedback=
943 Common Joined UInteger Var(param_tracer_dynamic_coverage_feedback) Init(95) IntegerRange(0, 100) Param Optimization
944 The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is available.
946 -param=tracer-max-code-growth=
947 Common Joined UInteger Var(param_tracer_max_code_growth) Init(100) Param Optimization
948 Maximal code growth caused by tail duplication (in percent).
950 -param=tracer-min-branch-probability=
951 Common Joined UInteger Var(param_tracer_min_branch_probability) Init(50) IntegerRange(0, 100) Param Optimization
952 Stop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is not available.
954 -param=tracer-min-branch-probability-feedback=
955 Common Joined UInteger Var(param_tracer_min_branch_probability_feedback) Init(80) IntegerRange(0, 100) Param Optimization
956 Stop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is available.
958 -param=tracer-min-branch-ratio=
959 Common Joined UInteger Var(param_tracer_min_branch_ratio) Init(10) IntegerRange(0, 100) Param Optimization
960 Stop reverse growth if the reverse probability of best edge is less than this threshold (in percent).
962 -param=tree-reassoc-width=
963 Common Joined UInteger Var(param_tree_reassoc_width) Param Optimization
964 Set the maximum number of instructions executed in parallel in reassociated tree.  If 0, use the target dependent heuristic.
966 -param=tsan-distinguish-volatile=
967 Common Joined UInteger Var(param_tsan_distinguish_volatile) IntegerRange(0, 1) Param
968 Emit special instrumentation for accesses to volatiles.
970 -param=tsan-instrument-func-entry-exit=
971 Common Joined UInteger Var(param_tsan_instrument_func_entry_exit) Init(1) IntegerRange(0, 1) Param
972 Emit instrumentation calls to __tsan_func_entry() and __tsan_func_exit().
974 -param=uninit-control-dep-attempts=
975 Common Joined UInteger Var(param_uninit_control_dep_attempts) Init(1000) IntegerRange(1, 65536) Param Optimization
976 Maximum number of nested calls to search for control dependencies during uninitialized variable analysis.
978 -param=uninlined-function-insns=
979 Common Joined UInteger Var(param_uninlined_function_insns) Init(2) Optimization IntegerRange(0, 1000000) Param
980 Instruction accounted for function prologue, epilogue and other overhead.
982 -param=uninlined-function-time=
983 Common Joined UInteger Var(param_uninlined_function_time) Optimization IntegerRange(0, 1000000) Param
984 Time accounted for function prologue, epilogue and other overhead.
986 -param=uninlined-thunk-insns=
987 Common Joined UInteger Var(param_uninlined_function_thunk_insns) Optimization Init(2) IntegerRange(0, 1000000) Param
988 Instruction accounted for function thunk overhead.
990 -param=uninlined-thunk-time=
991 Common Joined UInteger Var(param_uninlined_function_thunk_time) Optimization Init(2) IntegerRange(0, 1000000) Param
992 Time accounted for function thunk overhead.
994 -param=unlikely-bb-count-fraction=
995 Common Joined UInteger Var(param_unlikely_bb_count_fraction) Init(20) Param Optimization
996 The denominator n of fraction 1/n of the number of profiled runs of the entire program below which the execution count of a basic block must be in order for the basic block to be considered unlikely.
998 -param=unroll-jam-max-unroll=
999 Common Joined UInteger Var(param_unroll_jam_max_unroll) Init(4) Param Optimization
1000 Maximum unroll factor for the unroll-and-jam transformation.
1002 -param=unroll-jam-min-percent=
1003 Common Joined UInteger Var(param_unroll_jam_min_percent) Init(1) IntegerRange(0, 100) Param Optimization
1004 Minimum percentage of memrefs that must go away for unroll-and-jam to be considered profitable.
1006 -param=use-after-scope-direct-emission-threshold=
1007 Common Joined UInteger Var(param_use_after_scope_direct_emission_threshold) Init(256) Param Optimization
1008 Use direct poisoning/unpoisoning instructions for variables smaller or equal to this number.
1010 -param=use-canonical-types=
1011 Common Joined UInteger Var(param_use_canonical_types) Init(1) IntegerRange(0, 1) Param
1012 Whether to use canonical types.
1014 -param=vect-epilogues-nomask=
1015 Common Joined UInteger Var(param_vect_epilogues_nomask) Init(1) IntegerRange(0, 1) Param Optimization
1016 Enable loop epilogue vectorization using smaller vector size.
1018 -param=vect-max-peeling-for-alignment=
1019 Common Joined UInteger Var(param_vect_max_peeling_for_alignment) Init(-1) IntegerRange(-1, 64) Param Optimization
1020 Maximum number of loop peels to enhance alignment of data references in a loop.
1022 -param=vect-max-version-for-alias-checks=
1023 Common Joined UInteger Var(param_vect_max_version_for_alias_checks) Init(10) Param Optimization
1024 Bound on number of runtime checks inserted by the vectorizer's loop versioning for alias check.
1026 -param=vect-max-version-for-alignment-checks=
1027 Common Joined UInteger Var(param_vect_max_version_for_alignment_checks) Init(6) Param Optimization
1028 Bound on number of runtime checks inserted by the vectorizer's loop versioning for alignment check.
1030 -param=vect-partial-vector-usage=
1031 Common Joined UInteger Var(param_vect_partial_vector_usage) Init(2) IntegerRange(0, 2) Param Optimization
1032 Controls how loop vectorizer uses partial vectors.  0 means never, 1 means only for loops whose need to iterate can be removed, 2 means for all loops.  The default value is 2.
1034 ; This comment is to ensure we retain the blank line above.