author | neliasso |
Fri, 06 Nov 2015 16:42:01 +0100 | |
changeset 33639 | e672d407c0d9 |
parent 33469 | 30f4811eded0 |
child 34162 | 16b54851eaf6 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
2 |
* Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5249
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5249
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5249
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_OPTO_C2_GLOBALS_HPP |
26 |
#define SHARE_VM_OPTO_C2_GLOBALS_HPP |
|
27 |
||
28 |
#include "runtime/globals.hpp" |
|
29 |
#ifdef TARGET_ARCH_x86 |
|
30 |
# include "c2_globals_x86.hpp" |
|
31 |
#endif |
|
32 |
#ifdef TARGET_ARCH_sparc |
|
33 |
# include "c2_globals_sparc.hpp" |
|
34 |
#endif |
|
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7433
diff
changeset
|
35 |
#ifdef TARGET_ARCH_arm |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7433
diff
changeset
|
36 |
# include "c2_globals_arm.hpp" |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7433
diff
changeset
|
37 |
#endif |
22807 | 38 |
#ifdef TARGET_ARCH_ppc |
39 |
# include "c2_globals_ppc.hpp" |
|
40 |
#endif |
|
29180 | 41 |
#ifdef TARGET_ARCH_aarch64 |
42 |
# include "c2_globals_aarch64.hpp" |
|
43 |
#endif |
|
7397 | 44 |
#ifdef TARGET_OS_FAMILY_linux |
45 |
# include "c2_globals_linux.hpp" |
|
46 |
#endif |
|
47 |
#ifdef TARGET_OS_FAMILY_solaris |
|
48 |
# include "c2_globals_solaris.hpp" |
|
49 |
#endif |
|
50 |
#ifdef TARGET_OS_FAMILY_windows |
|
51 |
# include "c2_globals_windows.hpp" |
|
52 |
#endif |
|
22827 | 53 |
#ifdef TARGET_OS_FAMILY_aix |
54 |
# include "c2_globals_aix.hpp" |
|
55 |
#endif |
|
10565 | 56 |
#ifdef TARGET_OS_FAMILY_bsd |
57 |
# include "c2_globals_bsd.hpp" |
|
58 |
#endif |
|
7397 | 59 |
|
1 | 60 |
// |
61 |
// Defines all globals flags used by the server compiler. |
|
62 |
// |
|
63 |
||
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
64 |
#define C2_FLAGS(develop, develop_pd, product, product_pd, diagnostic, experimental, notproduct, range, constraint) \ |
1 | 65 |
\ |
15871
b04dd94da4e6
8009120: Fuzz instruction scheduling in HotSpot compilers
shade
parents:
15618
diff
changeset
|
66 |
develop(bool, StressLCM, false, \ |
b04dd94da4e6
8009120: Fuzz instruction scheduling in HotSpot compilers
shade
parents:
15618
diff
changeset
|
67 |
"Randomize instruction scheduling in LCM") \ |
b04dd94da4e6
8009120: Fuzz instruction scheduling in HotSpot compilers
shade
parents:
15618
diff
changeset
|
68 |
\ |
b04dd94da4e6
8009120: Fuzz instruction scheduling in HotSpot compilers
shade
parents:
15618
diff
changeset
|
69 |
develop(bool, StressGCM, false, \ |
b04dd94da4e6
8009120: Fuzz instruction scheduling in HotSpot compilers
shade
parents:
15618
diff
changeset
|
70 |
"Randomize instruction scheduling in GCM") \ |
b04dd94da4e6
8009120: Fuzz instruction scheduling in HotSpot compilers
shade
parents:
15618
diff
changeset
|
71 |
\ |
1 | 72 |
develop(intx, OptoPrologueNops, 0, \ |
73 |
"Insert this many extra nop instructions " \ |
|
74 |
"in the prologue of every nmethod") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
75 |
range(0, 128) \ |
1 | 76 |
\ |
77 |
product_pd(intx, InteriorEntryAlignment, \ |
|
78 |
"Code alignment for interior entry points " \ |
|
79 |
"in generated code (in bytes)") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
80 |
constraint(InteriorEntryAlignmentConstraintFunc, AfterErgo) \ |
1 | 81 |
\ |
82 |
product(intx, MaxLoopPad, (OptoLoopAlignment-1), \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
83 |
"Align a loop if padding size in bytes is less or equal to this " \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
84 |
"value") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
85 |
range(0, max_jint) \ |
1 | 86 |
\ |
30624 | 87 |
product(intx, MaxVectorSize, 64, \ |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12158
diff
changeset
|
88 |
"Max vector size in bytes, " \ |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12158
diff
changeset
|
89 |
"actual size could be less depending on elements type") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
90 |
range(0, max_jint) \ |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12158
diff
changeset
|
91 |
\ |
13885 | 92 |
product(bool, AlignVector, true, \ |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12158
diff
changeset
|
93 |
"Perform vector store/load alignment in loop") \ |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12158
diff
changeset
|
94 |
\ |
1 | 95 |
product(intx, NumberOfLoopInstrToAlign, 4, \ |
96 |
"Number of first instructions in a loop to align") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
97 |
range(0, max_jint) \ |
1 | 98 |
\ |
99 |
notproduct(intx, IndexSetWatch, 0, \ |
|
100 |
"Trace all operations on this IndexSet (-1 means all, 0 none)") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
101 |
range(-1, 0) \ |
1 | 102 |
\ |
103 |
develop(intx, OptoNodeListSize, 4, \ |
|
104 |
"Starting allocation size of Node_List data structures") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
105 |
range(0, max_jint) \ |
1 | 106 |
\ |
107 |
develop(intx, OptoBlockListSize, 8, \ |
|
108 |
"Starting allocation size of Block_List data structures") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
109 |
range(0, max_jint) \ |
1 | 110 |
\ |
111 |
develop(intx, OptoPeepholeAt, -1, \ |
|
112 |
"Apply peephole optimizations to this peephole rule") \ |
|
113 |
\ |
|
114 |
notproduct(bool, PrintIdeal, false, \ |
|
115 |
"Print ideal graph before code generation") \ |
|
116 |
\ |
|
117 |
notproduct(bool, PrintOpto, false, \ |
|
118 |
"Print compiler2 attempts") \ |
|
119 |
\ |
|
120 |
notproduct(bool, PrintOptoInlining, false, \ |
|
121 |
"Print compiler2 inlining decisions") \ |
|
122 |
\ |
|
123 |
notproduct(bool, VerifyOpto, false, \ |
|
124 |
"Apply more time consuming verification during compilation") \ |
|
125 |
\ |
|
14623
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14133
diff
changeset
|
126 |
notproduct(bool, VerifyIdealNodeCount, false, \ |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14133
diff
changeset
|
127 |
"Verify that tracked dead ideal node count is accurate") \ |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14133
diff
changeset
|
128 |
\ |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14133
diff
changeset
|
129 |
notproduct(bool, PrintIdealNodeCount, false, \ |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14133
diff
changeset
|
130 |
"Print liveness counts of ideal nodes") \ |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14133
diff
changeset
|
131 |
\ |
1 | 132 |
notproduct(bool, VerifyOptoOopOffsets, false, \ |
133 |
"Check types of base addresses in field references") \ |
|
134 |
\ |
|
135 |
develop(bool, IdealizedNumerics, false, \ |
|
136 |
"Check performance difference allowing FP " \ |
|
137 |
"associativity and commutativity...") \ |
|
138 |
\ |
|
139 |
develop(bool, OptoBreakpoint, false, \ |
|
140 |
"insert breakpoint at method entry") \ |
|
141 |
\ |
|
142 |
notproduct(bool, OptoBreakpointOSR, false, \ |
|
143 |
"insert breakpoint at osr method entry") \ |
|
144 |
\ |
|
145 |
notproduct(intx, BreakAtNode, 0, \ |
|
146 |
"Break at construction of this Node (either _idx or _debug_idx)") \ |
|
147 |
\ |
|
148 |
notproduct(bool, OptoBreakpointC2R, false, \ |
|
149 |
"insert breakpoint at runtime stub entry") \ |
|
150 |
\ |
|
151 |
notproduct(bool, OptoNoExecute, false, \ |
|
152 |
"Attempt to parse and compile but do not execute generated code") \ |
|
153 |
\ |
|
154 |
notproduct(bool, PrintOptoStatistics, false, \ |
|
155 |
"Print New compiler statistics") \ |
|
156 |
\ |
|
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33447
diff
changeset
|
157 |
diagnostic(bool, PrintOptoAssembly, false, \ |
1 | 158 |
"Print New compiler assembly output") \ |
159 |
\ |
|
160 |
develop_pd(bool, OptoPeephole, \ |
|
161 |
"Apply peephole optimizations after register allocation") \ |
|
162 |
\ |
|
163 |
develop(bool, OptoRemoveUseless, true, \ |
|
164 |
"Remove useless nodes after parsing") \ |
|
165 |
\ |
|
166 |
notproduct(bool, PrintFrameConverterAssembly, false, \ |
|
167 |
"Print New compiler assembly output for frame converters") \ |
|
168 |
\ |
|
169 |
notproduct(bool, PrintParseStatistics, false, \ |
|
170 |
"Print nodes, transforms and new values made per bytecode parsed")\ |
|
171 |
\ |
|
172 |
notproduct(bool, PrintOptoPeephole, false, \ |
|
173 |
"Print New compiler peephole replacements") \ |
|
174 |
\ |
|
175 |
develop(bool, PrintCFGBlockFreq, false, \ |
|
176 |
"Print CFG block freqencies") \ |
|
177 |
\ |
|
178 |
develop(bool, TraceOptoParse, false, \ |
|
179 |
"Trace bytecode parse and control-flow merge") \ |
|
180 |
\ |
|
181 |
product_pd(intx, LoopUnrollLimit, \ |
|
182 |
"Unroll loop bodies with node count less than this") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
183 |
range(0, max_jint / 4) \ |
1 | 184 |
\ |
19283
4df251ee863c
8022993: Convert MAX_UNROLL constant to LoopMaxUnroll C2 flag
kvn
parents:
18099
diff
changeset
|
185 |
product(intx, LoopMaxUnroll, 16, \ |
4df251ee863c
8022993: Convert MAX_UNROLL constant to LoopMaxUnroll C2 flag
kvn
parents:
18099
diff
changeset
|
186 |
"Maximum number of unrolls for main loop") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
187 |
range(0, max_jint) \ |
19283
4df251ee863c
8022993: Convert MAX_UNROLL constant to LoopMaxUnroll C2 flag
kvn
parents:
18099
diff
changeset
|
188 |
\ |
31403 | 189 |
product(bool, SuperWordLoopUnrollAnalysis, false, \ |
190 |
"Map number of unrolls for main loop via " \ |
|
191 |
"Superword Level Parallelism analysis") \ |
|
192 |
\ |
|
193 |
notproduct(bool, TraceSuperWordLoopUnrollAnalysis, false, \ |
|
194 |
"Trace what Superword Level Parallelism analysis applies") \ |
|
195 |
\ |
|
1 | 196 |
product(intx, LoopUnrollMin, 4, \ |
197 |
"Minimum number of unroll loop bodies before checking progress" \ |
|
198 |
"of rounds of unroll,optimize,..") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
199 |
range(0, max_jint) \ |
1 | 200 |
\ |
201 |
develop(intx, UnrollLimitForProfileCheck, 1, \ |
|
202 |
"Don't use profile_trip_cnt() to restrict unrolling until " \ |
|
203 |
"unrolling would push the number of unrolled iterations above " \ |
|
204 |
"UnrollLimitForProfileCheck. A higher value allows more " \ |
|
205 |
"unrolling. Zero acts as a very large value." ) \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
206 |
range(0, max_intx) \ |
1 | 207 |
\ |
208 |
product(intx, MultiArrayExpandLimit, 6, \ |
|
209 |
"Maximum number of individual allocations in an inline-expanded " \ |
|
210 |
"multianewarray instruction") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
211 |
range(0, max_jint) \ |
1 | 212 |
\ |
213 |
notproduct(bool, TraceProfileTripCount, false, \ |
|
214 |
"Trace profile loop trip count information") \ |
|
215 |
\ |
|
4643 | 216 |
product(bool, UseLoopPredicate, true, \ |
217 |
"Generate a predicate to select fast/slow loop versions") \ |
|
218 |
\ |
|
219 |
develop(bool, TraceLoopPredicate, false, \ |
|
220 |
"Trace generation of loop predicates") \ |
|
221 |
\ |
|
8732
16fc1c68714b
7008866: Missing loop predicate for loop with multiple entries
kvn
parents:
8107
diff
changeset
|
222 |
develop(bool, TraceLoopOpts, false, \ |
16fc1c68714b
7008866: Missing loop predicate for loop with multiple entries
kvn
parents:
8107
diff
changeset
|
223 |
"Trace executed loop optimizations") \ |
16fc1c68714b
7008866: Missing loop predicate for loop with multiple entries
kvn
parents:
8107
diff
changeset
|
224 |
\ |
9446 | 225 |
diagnostic(bool, LoopLimitCheck, true, \ |
226 |
"Generate a loop limits check for overflow") \ |
|
227 |
\ |
|
228 |
develop(bool, TraceLoopLimitCheck, false, \ |
|
229 |
"Trace generation of loop limits checks") \ |
|
230 |
\ |
|
231 |
diagnostic(bool, RangeLimitCheck, true, \ |
|
232 |
"Additional overflow checks during range check elimination") \ |
|
233 |
\ |
|
234 |
develop(bool, TraceRangeLimitCheck, false, \ |
|
235 |
"Trace additional overflow checks in RCE") \ |
|
236 |
\ |
|
237 |
diagnostic(bool, UnrollLimitCheck, true, \ |
|
238 |
"Additional overflow checks during loop unroll") \ |
|
239 |
\ |
|
22853
308672304981
8028767: PPC64: (part 121): smaller shared changes needed to build C2
goetz
parents:
22844
diff
changeset
|
240 |
/* OptimizeFill not yet supported on PowerPC. */ \ |
308672304981
8028767: PPC64: (part 121): smaller shared changes needed to build C2
goetz
parents:
22844
diff
changeset
|
241 |
product(bool, OptimizeFill, true PPC64_ONLY(&& false), \ |
6433 | 242 |
"convert fill/copy loops into intrinsic") \ |
243 |
\ |
|
244 |
develop(bool, TraceOptimizeFill, false, \ |
|
245 |
"print detailed information about fill conversion") \ |
|
246 |
\ |
|
1 | 247 |
develop(bool, OptoCoalesce, true, \ |
248 |
"Use Conservative Copy Coalescing in the Register Allocator") \ |
|
249 |
\ |
|
250 |
develop(bool, UseUniqueSubclasses, true, \ |
|
251 |
"Narrow an abstract reference to the unique concrete subclass") \ |
|
252 |
\ |
|
253 |
develop(bool, UseExactTypes, true, \ |
|
254 |
"Use exact types to eliminate array store checks and v-calls") \ |
|
255 |
\ |
|
256 |
product(intx, TrackedInitializationLimit, 50, \ |
|
257 |
"When initializing fields, track up to this many words") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
258 |
range(0, 65535) \ |
1 | 259 |
\ |
260 |
product(bool, ReduceFieldZeroing, true, \ |
|
261 |
"When initializing fields, try to avoid needless zeroing") \ |
|
262 |
\ |
|
263 |
product(bool, ReduceInitialCardMarks, true, \ |
|
264 |
"When initializing fields, try to avoid needless card marks") \ |
|
265 |
\ |
|
266 |
product(bool, ReduceBulkZeroing, true, \ |
|
267 |
"When bulk-initializing, try to avoid needless zeroing") \ |
|
268 |
\ |
|
6272
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
6180
diff
changeset
|
269 |
product(bool, UseFPUForSpilling, false, \ |
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
6180
diff
changeset
|
270 |
"Spill integer registers to FPU instead of stack when possible") \ |
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
6180
diff
changeset
|
271 |
\ |
1 | 272 |
develop_pd(intx, RegisterCostAreaRatio, \ |
273 |
"Spill selection in reg allocator: scale area by (X/64K) before " \ |
|
274 |
"adding cost") \ |
|
275 |
\ |
|
276 |
develop_pd(bool, UseCISCSpill, \ |
|
277 |
"Use ADLC supplied cisc instructions during allocation") \ |
|
278 |
\ |
|
279 |
notproduct(bool, VerifyGraphEdges , false, \ |
|
280 |
"Verify Bi-directional Edges") \ |
|
281 |
\ |
|
282 |
notproduct(bool, VerifyDUIterators, true, \ |
|
283 |
"Verify the safety of all iterations of Bi-directional Edges") \ |
|
284 |
\ |
|
285 |
notproduct(bool, VerifyHashTableKeys, true, \ |
|
286 |
"Verify the immutability of keys in the VN hash tables") \ |
|
287 |
\ |
|
2014
5510e7394f2d
6782232: assert("CreateEx must be first instruction in block" )
kvn
parents:
1553
diff
changeset
|
288 |
notproduct(bool, VerifyRegisterAllocator , false, \ |
5510e7394f2d
6782232: assert("CreateEx must be first instruction in block" )
kvn
parents:
1553
diff
changeset
|
289 |
"Verify Register Allocator") \ |
5510e7394f2d
6782232: assert("CreateEx must be first instruction in block" )
kvn
parents:
1553
diff
changeset
|
290 |
\ |
1 | 291 |
develop_pd(intx, FLOATPRESSURE, \ |
292 |
"Number of float LRG's that constitute high register pressure") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
293 |
range(0, max_jint) \ |
1 | 294 |
\ |
295 |
develop_pd(intx, INTPRESSURE, \ |
|
296 |
"Number of integer LRG's that constitute high register pressure") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
297 |
range(0, max_jint) \ |
1 | 298 |
\ |
299 |
notproduct(bool, TraceOptoPipelining, false, \ |
|
300 |
"Trace pipelining information") \ |
|
301 |
\ |
|
302 |
notproduct(bool, TraceOptoOutput, false, \ |
|
303 |
"Trace pipelining information") \ |
|
304 |
\ |
|
305 |
product_pd(bool, OptoScheduling, \ |
|
306 |
"Instruction Scheduling after register allocation") \ |
|
307 |
\ |
|
33065 | 308 |
product_pd(bool, OptoRegScheduling, \ |
309 |
"Instruction Scheduling before register allocation for pressure") \ |
|
310 |
\ |
|
1 | 311 |
product(bool, PartialPeelLoop, true, \ |
312 |
"Partial peel (rotate) loops") \ |
|
313 |
\ |
|
314 |
product(intx, PartialPeelNewPhiDelta, 0, \ |
|
315 |
"Additional phis that can be created by partial peeling") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
316 |
range(0, max_jint) \ |
1 | 317 |
\ |
318 |
notproduct(bool, TracePartialPeeling, false, \ |
|
319 |
"Trace partial peeling (loop rotation) information") \ |
|
320 |
\ |
|
321 |
product(bool, PartialPeelAtUnsignedTests, true, \ |
|
322 |
"Partial peel at unsigned tests if no signed test exists") \ |
|
323 |
\ |
|
324 |
product(bool, ReassociateInvariants, true, \ |
|
325 |
"Enable reassociation of expressions with loop invariants.") \ |
|
326 |
\ |
|
327 |
product(bool, LoopUnswitching, true, \ |
|
328 |
"Enable loop unswitching (a form of invariant test hoisting)") \ |
|
329 |
\ |
|
330 |
notproduct(bool, TraceLoopUnswitching, false, \ |
|
331 |
"Trace loop unswitching") \ |
|
332 |
\ |
|
30593 | 333 |
product(bool, AllowVectorizeOnDemand, true, \ |
334 |
"Globally supress vectorization set in VectorizeMethod") \ |
|
335 |
\ |
|
1 | 336 |
product(bool, UseSuperWord, true, \ |
337 |
"Transform scalar operations into superword operations") \ |
|
338 |
\ |
|
339 |
develop(bool, SuperWordRTDepCheck, false, \ |
|
340 |
"Enable runtime dependency checks.") \ |
|
341 |
\ |
|
30211 | 342 |
product(bool, SuperWordReductions, true, \ |
343 |
"Enable reductions support in superword.") \ |
|
344 |
\ |
|
33469
30f4811eded0
8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents:
33455
diff
changeset
|
345 |
product(bool, UseCMoveUnconditionally, false, \ |
30f4811eded0
8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents:
33455
diff
changeset
|
346 |
"Use CMove (scalar and vector) ignoring profitability test.") \ |
30f4811eded0
8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents:
33455
diff
changeset
|
347 |
\ |
33166
81352250770f
8136725: Provide utility for creation a counted loop reserve copy (clone)
iveresov
parents:
33163
diff
changeset
|
348 |
product(bool, DoReserveCopyInSuperWord, true, \ |
81352250770f
8136725: Provide utility for creation a counted loop reserve copy (clone)
iveresov
parents:
33163
diff
changeset
|
349 |
"Create reserve copy of graph in SuperWord.") \ |
81352250770f
8136725: Provide utility for creation a counted loop reserve copy (clone)
iveresov
parents:
33163
diff
changeset
|
350 |
\ |
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
351 |
notproduct(bool, TraceSuperWord, false, \ |
1 | 352 |
"Trace superword transforms") \ |
353 |
\ |
|
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
354 |
notproduct(bool, TraceNewVectors, false, \ |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
355 |
"Trace creation of Vector nodes") \ |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
356 |
\ |
1 | 357 |
product_pd(bool, OptoBundling, \ |
358 |
"Generate nops to fill i-cache lines") \ |
|
359 |
\ |
|
360 |
product_pd(intx, ConditionalMoveLimit, \ |
|
361 |
"Limit of ops to make speculative when using CMOVE") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
362 |
range(0, max_jint) \ |
1 | 363 |
\ |
364 |
/* Set BranchOnRegister == false. See 4965987. */ \ |
|
365 |
product(bool, BranchOnRegister, false, \ |
|
366 |
"Use Sparc V9 branch-on-register opcodes") \ |
|
367 |
\ |
|
368 |
develop(bool, SparcV9RegsHiBitsZero, true, \ |
|
369 |
"Assume Sparc V9 I&L registers on V8+ systems are zero-extended") \ |
|
370 |
\ |
|
7433 | 371 |
product(bool, UseRDPCForConstantTableBase, false, \ |
372 |
"Use Sparc RDPC instruction for the constant table base.") \ |
|
373 |
\ |
|
33454
d97c7a894c66
8132168: Support IdealGraphVisualizer in optimized build
vlivanov
parents:
33447
diff
changeset
|
374 |
notproduct(bool, PrintIdealGraph, false, \ |
1 | 375 |
"Print ideal graph to XML file / network interface. " \ |
376 |
"By default attempts to connect to the visualizer on a socket.") \ |
|
377 |
\ |
|
33454
d97c7a894c66
8132168: Support IdealGraphVisualizer in optimized build
vlivanov
parents:
33447
diff
changeset
|
378 |
notproduct(intx, PrintIdealGraphLevel, 0, \ |
27147 | 379 |
"Level of detail of the ideal graph printout. " \ |
33447
fa16119dcde7
8065151: Support IdealGraphVisualizer in optimized build
vlivanov
parents:
33166
diff
changeset
|
380 |
"System-wide value, 0=nothing is printed, 4=all details printed. "\ |
27147 | 381 |
"Level of detail of printouts can be set on a per-method level " \ |
382 |
"as well by using CompileCommand=option.") \ |
|
33447
fa16119dcde7
8065151: Support IdealGraphVisualizer in optimized build
vlivanov
parents:
33166
diff
changeset
|
383 |
range(0, 4) \ |
27147 | 384 |
\ |
33454
d97c7a894c66
8132168: Support IdealGraphVisualizer in optimized build
vlivanov
parents:
33447
diff
changeset
|
385 |
notproduct(intx, PrintIdealGraphPort, 4444, \ |
1 | 386 |
"Ideal graph printer to network port") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
387 |
range(0, SHRT_MAX) \ |
1 | 388 |
\ |
1553 | 389 |
notproduct(ccstr, PrintIdealGraphAddress, "127.0.0.1", \ |
1 | 390 |
"IP address to connect to visualizer") \ |
391 |
\ |
|
1553 | 392 |
notproduct(ccstr, PrintIdealGraphFile, NULL, \ |
1 | 393 |
"File to dump ideal graph to. If set overrides the " \ |
394 |
"use of the network") \ |
|
395 |
\ |
|
396 |
product(bool, UseBimorphicInlining, true, \ |
|
397 |
"Profiling based inlining for two receivers") \ |
|
398 |
\ |
|
399 |
product(bool, UseOnlyInlinedBimorphic, true, \ |
|
400 |
"Don't use BimorphicInlining if can't inline a second method") \ |
|
401 |
\ |
|
402 |
product(bool, InsertMemBarAfterArraycopy, true, \ |
|
403 |
"Insert memory barrier after arraycopy call") \ |
|
404 |
\ |
|
6180 | 405 |
develop(bool, SubsumeLoads, true, \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
406 |
"Attempt to compile while subsuming loads into machine " \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
407 |
"instructions.") \ |
6180 | 408 |
\ |
409 |
develop(bool, StressRecompilation, false, \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
410 |
"Recompile each compiled method without subsuming loads " \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
411 |
"or escape analysis.") \ |
6180 | 412 |
\ |
1 | 413 |
develop(intx, ImplicitNullCheckThreshold, 3, \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
414 |
"Don't do implicit null checks if NPE's in a method exceeds " \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
415 |
"limit") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
416 |
range(0, max_jint) \ |
1 | 417 |
\ |
418 |
product(intx, LoopOptsCount, 43, \ |
|
419 |
"Set level of loop optimization for tier 1 compiles") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
420 |
range(5, 43) \ |
1 | 421 |
\ |
422 |
/* controls for heat-based inlining */ \ |
|
423 |
\ |
|
424 |
develop(intx, NodeCountInliningCutoff, 18000, \ |
|
425 |
"If parser node generation exceeds limit stop inlining") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
426 |
range(0, max_jint) \ |
1 | 427 |
\ |
428 |
develop(intx, NodeCountInliningStep, 1000, \ |
|
429 |
"Target size of warm calls inlined between optimization passes") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
430 |
range(0, max_jint) \ |
1 | 431 |
\ |
432 |
develop(bool, InlineWarmCalls, false, \ |
|
433 |
"Use a heat-based priority queue to govern inlining") \ |
|
434 |
\ |
|
435 |
develop(intx, HotCallCountThreshold, 999999, \ |
|
436 |
"large numbers of calls (per method invocation) force hotness") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
437 |
range(0, max_intx) \ |
1 | 438 |
\ |
439 |
develop(intx, HotCallProfitThreshold, 999999, \ |
|
440 |
"highly profitable inlining opportunities force hotness") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
441 |
range(0, max_intx) \ |
1 | 442 |
\ |
443 |
develop(intx, HotCallTrivialWork, -1, \ |
|
444 |
"trivial execution time (no larger than this) forces hotness") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
445 |
range(-1, max_intx) \ |
1 | 446 |
\ |
447 |
develop(intx, HotCallTrivialSize, -1, \ |
|
448 |
"trivial methods (no larger than this) force calls to be hot") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
449 |
range(-1, max_intx) \ |
1 | 450 |
\ |
451 |
develop(intx, WarmCallMinCount, -1, \ |
|
452 |
"number of calls (per method invocation) to enable inlining") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
453 |
range(-1, max_intx) \ |
1 | 454 |
\ |
455 |
develop(intx, WarmCallMinProfit, -1, \ |
|
456 |
"number of calls (per method invocation) to enable inlining") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
457 |
range(-1, max_intx) \ |
1 | 458 |
\ |
459 |
develop(intx, WarmCallMaxWork, 999999, \ |
|
460 |
"execution time of the largest inlinable method") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
461 |
range(0, max_intx) \ |
1 | 462 |
\ |
463 |
develop(intx, WarmCallMaxSize, 999999, \ |
|
464 |
"size of the largest inlinable method") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
465 |
range(0, max_intx) \ |
1 | 466 |
\ |
18099
45973b036c3e
8014959: assert(Compile::current()->live_nodes() < (uint)MaxNodeLimit) failed: Live Node limit exceeded limit
drchase
parents:
17383
diff
changeset
|
467 |
product(intx, MaxNodeLimit, 80000, \ |
1 | 468 |
"Maximum number of nodes") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
469 |
range(1000, max_jint / 3) \ |
1 | 470 |
\ |
18099
45973b036c3e
8014959: assert(Compile::current()->live_nodes() < (uint)MaxNodeLimit) failed: Live Node limit exceeded limit
drchase
parents:
17383
diff
changeset
|
471 |
product(intx, NodeLimitFudgeFactor, 2000, \ |
1 | 472 |
"Fudge Factor for certain optimizations") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
473 |
constraint(NodeLimitFudgeFactorConstraintFunc, AfterErgo) \ |
1 | 474 |
\ |
475 |
product(bool, UseJumpTables, true, \ |
|
476 |
"Use JumpTables instead of a binary search tree for switches") \ |
|
477 |
\ |
|
478 |
product(bool, UseDivMod, true, \ |
|
479 |
"Use combined DivMod instruction if available") \ |
|
480 |
\ |
|
19772
6e60ae28d9f6
8010941: MinJumpTableSize is set to 18, investigate if that's still optimal
adlertz
parents:
19770
diff
changeset
|
481 |
product_pd(intx, MinJumpTableSize, \ |
1 | 482 |
"Minimum number of targets in a generated jump table") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
483 |
range(0, max_intx) \ |
1 | 484 |
\ |
485 |
product(intx, MaxJumpTableSize, 65000, \ |
|
486 |
"Maximum number of targets in a generated jump table") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
487 |
range(0, max_intx) \ |
1 | 488 |
\ |
489 |
product(intx, MaxJumpTableSparseness, 5, \ |
|
490 |
"Maximum sparseness for jumptables") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
491 |
range(0, max_intx / 4) \ |
1 | 492 |
\ |
493 |
product(bool, EliminateLocks, true, \ |
|
494 |
"Coarsen locks when possible") \ |
|
495 |
\ |
|
11445 | 496 |
product(bool, EliminateNestedLocks, true, \ |
497 |
"Eliminate nested locks of the same object when possible") \ |
|
498 |
\ |
|
1 | 499 |
notproduct(bool, PrintLockStatistics, false, \ |
500 |
"Print precise statistics on the dynamic lock usage") \ |
|
501 |
\ |
|
502 |
diagnostic(bool, PrintPreciseBiasedLockingStatistics, false, \ |
|
503 |
"Print per-lock-site statistics of biased locking in JVM") \ |
|
504 |
\ |
|
23491 | 505 |
diagnostic(bool, PrintPreciseRTMLockingStatistics, false, \ |
506 |
"Print per-lock-site statistics of rtm locking in JVM") \ |
|
507 |
\ |
|
1 | 508 |
notproduct(bool, PrintEliminateLocks, false, \ |
509 |
"Print out when locks are eliminated") \ |
|
510 |
\ |
|
24479 | 511 |
product(bool, EliminateAutoBox, true, \ |
17383 | 512 |
"Control optimizations for autobox elimination") \ |
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
513 |
\ |
23192 | 514 |
diagnostic(bool, UseImplicitStableValues, true, \ |
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
19283
diff
changeset
|
515 |
"Mark well-known stable fields as such (e.g. String.value)") \ |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
19283
diff
changeset
|
516 |
\ |
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
517 |
product(intx, AutoBoxCacheMax, 128, \ |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
518 |
"Sets max value cached by the java.lang.Integer autobox cache") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
519 |
range(0, max_jint) \ |
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
520 |
\ |
17383 | 521 |
experimental(bool, AggressiveUnboxing, false, \ |
522 |
"Control optimizations for aggressive boxing elimination") \ |
|
523 |
\ |
|
22844
90f76a40ed8a
8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents:
22838
diff
changeset
|
524 |
develop(bool, TracePostallocExpand, false, "Trace expanding nodes after" \ |
90f76a40ed8a
8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents:
22838
diff
changeset
|
525 |
" register allocation.") \ |
90f76a40ed8a
8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents:
22838
diff
changeset
|
526 |
\ |
3685 | 527 |
product(bool, DoEscapeAnalysis, true, \ |
1 | 528 |
"Perform escape analysis") \ |
529 |
\ |
|
27424
77a7f4a2463b
8041984: CompilerThread seems to occupy all CPU in a very rare situation
kvn
parents:
27147
diff
changeset
|
530 |
product(double, EscapeAnalysisTimeout, 20. DEBUG_ONLY(+40.), \ |
77a7f4a2463b
8041984: CompilerThread seems to occupy all CPU in a very rare situation
kvn
parents:
27147
diff
changeset
|
531 |
"Abort EA when it reaches time limit (in sec)") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
532 |
range(0, DBL_MAX) \ |
27424
77a7f4a2463b
8041984: CompilerThread seems to occupy all CPU in a very rare situation
kvn
parents:
27147
diff
changeset
|
533 |
\ |
14133
c2e317724c4c
7163534: VM could crashes assert(false) failed: infinite EA connection graph build
kvn
parents:
13885
diff
changeset
|
534 |
develop(bool, ExitEscapeAnalysisOnTimeout, true, \ |
c2e317724c4c
7163534: VM could crashes assert(false) failed: infinite EA connection graph build
kvn
parents:
13885
diff
changeset
|
535 |
"Exit or throw assert in EA when it reaches time limit") \ |
c2e317724c4c
7163534: VM could crashes assert(false) failed: infinite EA connection graph build
kvn
parents:
13885
diff
changeset
|
536 |
\ |
1 | 537 |
notproduct(bool, PrintEscapeAnalysis, false, \ |
538 |
"Print the results of escape analysis") \ |
|
539 |
\ |
|
540 |
product(bool, EliminateAllocations, true, \ |
|
541 |
"Use escape analysis to eliminate allocations") \ |
|
542 |
\ |
|
238
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
190
diff
changeset
|
543 |
notproduct(bool, PrintEliminateAllocations, false, \ |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
190
diff
changeset
|
544 |
"Print out when allocations are eliminated") \ |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
190
diff
changeset
|
545 |
\ |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
190
diff
changeset
|
546 |
product(intx, EliminateAllocationArraySizeLimit, 64, \ |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
190
diff
changeset
|
547 |
"Array size (number of elements) limit for scalar replacement") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
548 |
range(0, max_jint) \ |
238
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
190
diff
changeset
|
549 |
\ |
11189 | 550 |
product(bool, OptimizePtrCompare, true, \ |
551 |
"Use escape analysis to optimize pointers compare") \ |
|
552 |
\ |
|
553 |
notproduct(bool, PrintOptimizePtrCompare, false, \ |
|
554 |
"Print information about optimized pointers compare") \ |
|
555 |
\ |
|
12158
f24f2560da32
7147744: CTW: assert(false) failed: infinite EA connection graph build
kvn
parents:
11445
diff
changeset
|
556 |
notproduct(bool, VerifyConnectionGraph , true, \ |
f24f2560da32
7147744: CTW: assert(false) failed: infinite EA connection graph build
kvn
parents:
11445
diff
changeset
|
557 |
"Verify Connection Graph construction in Escape Analysis") \ |
f24f2560da32
7147744: CTW: assert(false) failed: infinite EA connection graph build
kvn
parents:
11445
diff
changeset
|
558 |
\ |
2340 | 559 |
product(bool, UseOptoBiasInlining, true, \ |
1500
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1498
diff
changeset
|
560 |
"Generate biased locking code in C2 ideal graph") \ |
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1498
diff
changeset
|
561 |
\ |
10963 | 562 |
product(bool, OptimizeStringConcat, true, \ |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3685
diff
changeset
|
563 |
"Optimize the construction of Strings by StringBuilder") \ |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3685
diff
changeset
|
564 |
\ |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3685
diff
changeset
|
565 |
notproduct(bool, PrintOptimizeStringConcat, false, \ |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3685
diff
changeset
|
566 |
"Print information about transformations performed on Strings") \ |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3685
diff
changeset
|
567 |
\ |
961
7fb3b13d4205
6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents:
953
diff
changeset
|
568 |
product(intx, ValueSearchLimit, 1000, \ |
7fb3b13d4205
6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents:
953
diff
changeset
|
569 |
"Recursion limit in PhaseMacroExpand::value_from_mem_phi") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
570 |
range(0, max_jint) \ |
961
7fb3b13d4205
6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents:
953
diff
changeset
|
571 |
\ |
1 | 572 |
product(intx, MaxLabelRootDepth, 1100, \ |
573 |
"Maximum times call Label_Root to prevent stack overflow") \ |
|
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
574 |
range(100, max_jint) \ |
581
02338c8a1bcf
6701887: JDK7 server VM in endless loop in Node::dominates
kvn
parents:
238
diff
changeset
|
575 |
\ |
02338c8a1bcf
6701887: JDK7 server VM in endless loop in Node::dominates
kvn
parents:
238
diff
changeset
|
576 |
diagnostic(intx, DominatorSearchLimit, 1000, \ |
02338c8a1bcf
6701887: JDK7 server VM in endless loop in Node::dominates
kvn
parents:
238
diff
changeset
|
577 |
"Iterations limit in Node::dominates") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
578 |
range(0, max_jint) \ |
1498 | 579 |
\ |
580 |
product(bool, BlockLayoutByFrequency, true, \ |
|
581 |
"Use edge frequencies to drive block ordering") \ |
|
582 |
\ |
|
583 |
product(intx, BlockLayoutMinDiamondPercentage, 20, \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
584 |
"Miniumum %% of a successor (predecessor) for which block " \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
585 |
"layout a will allow a fork (join) in a single chain") \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
586 |
range(0, 100) \ |
1498 | 587 |
\ |
2340 | 588 |
product(bool, BlockLayoutRotateLoops, true, \ |
1498 | 589 |
"Allow back branches to be fall throughs in the block layour") \ |
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
590 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
591 |
develop(bool, InlineReflectionGetCallerClass, true, \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
592 |
"inline sun.reflect.Reflection.getCallerClass(), known to be " \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
593 |
"part of base library DLL") \ |
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
594 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
595 |
develop(bool, InlineObjectCopy, true, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
596 |
"inline Object.clone and Arrays.copyOf[Range] intrinsics") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
597 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
598 |
develop(bool, SpecialStringCompareTo, true, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
599 |
"special version of string compareTo") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
600 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
601 |
develop(bool, SpecialStringIndexOf, true, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
602 |
"special version of string indexOf") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
603 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
604 |
develop(bool, SpecialStringEquals, true, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
605 |
"special version of string equals") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
606 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
607 |
develop(bool, SpecialArraysEquals, true, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
608 |
"special version of Arrays.equals(char[],char[])") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
609 |
\ |
15242
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
15113
diff
changeset
|
610 |
product(bool, SpecialEncodeISOArray, true, \ |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
15113
diff
changeset
|
611 |
"special version of ISO_8859_1$Encoder.encodeISOArray") \ |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
15113
diff
changeset
|
612 |
\ |
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
613 |
develop(bool, BailoutToInterpreterForThrows, false, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
614 |
"Compiled methods which throws/catches exceptions will be " \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
615 |
"deopt and intp.") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
616 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
617 |
develop(bool, ConvertCmpD2CmpF, true, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
618 |
"Convert cmpD to cmpF when one input is constant in float range") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
619 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
620 |
develop(bool, ConvertFloat2IntClipping, true, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
621 |
"Convert float2int clipping idiom to integer clipping") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
622 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
623 |
develop(bool, Use24BitFPMode, true, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
624 |
"Set 24-bit FPU mode on a per-compile basis ") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
625 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
626 |
develop(bool, Use24BitFP, true, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
627 |
"use FP instructions that produce 24-bit precise results") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
628 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
629 |
develop(bool, MonomorphicArrayCheck, true, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
630 |
"Uncommon-trap array store checks that require full type check") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
631 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
632 |
notproduct(bool, TracePhaseCCP, false, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
633 |
"Print progress during Conditional Constant Propagation") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
634 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
635 |
develop(bool, PrintDominators, false, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
636 |
"Print out dominator trees for GVN") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
637 |
\ |
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33447
diff
changeset
|
638 |
diagnostic(bool, TraceSpilling, false, \ |
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
639 |
"Trace spilling") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
640 |
\ |
13884 | 641 |
diagnostic(bool, TraceTypeProfile, false, \ |
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
642 |
"Trace type profile") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
643 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
644 |
develop(bool, PoisonOSREntry, true, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
645 |
"Detect abnormal calls to OSR code") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
646 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
647 |
develop(bool, SoftMatchFailure, trueInProduct, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
648 |
"If the DFA fails to match a node, print a message and bail out") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
649 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
650 |
develop(bool, InlineAccessors, true, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
651 |
"inline accessor methods (get/set)") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
652 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
653 |
product(intx, TypeProfileMajorReceiverPercent, 90, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
654 |
"% of major receiver type to all profiled receivers") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
655 |
range(0, 100) \ |
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
656 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
657 |
diagnostic(bool, PrintIntrinsics, false, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
658 |
"prints attempted and successful inlining of intrinsics") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
659 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
660 |
develop(bool, StressReflectiveCode, false, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
661 |
"Use inexact types at allocations, etc., to test reflection") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
662 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
663 |
diagnostic(bool, DebugInlinedCalls, true, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
664 |
"If false, restricts profiled locations to the root method only") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
665 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
666 |
notproduct(bool, VerifyLoopOptimizations, false, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
667 |
"verify major loop optimizations") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
668 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
669 |
diagnostic(bool, ProfileDynamicTypes, true, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
670 |
"do extra type profiling and use it more aggressively") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
671 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
672 |
develop(bool, TraceIterativeGVN, false, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
673 |
"Print progress during Iterative Global Value Numbering") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
674 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
675 |
develop(bool, VerifyIterativeGVN, false, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
676 |
"Verify Def-Use modifications during sparse Iterative Global " \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
677 |
"Value Numbering") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
678 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
679 |
notproduct(bool, TraceCISCSpill, false, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
680 |
"Trace allocators use of cisc spillable instructions") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
681 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
682 |
product(bool, SplitIfBlocks, true, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
683 |
"Clone compares and control flow through merge points to fold " \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
684 |
"some branches") \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
685 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
686 |
develop(intx, FreqCountInvocations, 1, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
687 |
"Scaling factor for branch frequencies (deprecated)") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
688 |
range(1, max_intx) \ |
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
689 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
690 |
product(intx, AliasLevel, 3, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
691 |
"0 for no aliasing, 1 for oop/field/static/array split, " \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
692 |
"2 for class split, 3 for unique instances") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
693 |
range(0, 3) \ |
31995
aa4049b4184a
8130459: Add additional validation after heap creation
sangheki
parents:
31584
diff
changeset
|
694 |
constraint(AliasLevelConstraintFunc,AfterErgo) \ |
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
695 |
\ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
696 |
develop(bool, VerifyAliases, false, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13108
diff
changeset
|
697 |
"perform extra checks on the results of alias analysis") \ |
15113 | 698 |
\ |
699 |
product(bool, IncrementalInline, true, \ |
|
700 |
"do post parse inlining") \ |
|
701 |
\ |
|
702 |
develop(bool, AlwaysIncrementalInline, false, \ |
|
703 |
"do all inlining incrementally") \ |
|
704 |
\ |
|
27707
f7d26e5b8b5d
8058148: MaxNodeLimit and LiveNodeCountInliningCutoff
vlivanov
parents:
27424
diff
changeset
|
705 |
product(intx, LiveNodeCountInliningCutoff, 40000, \ |
15113 | 706 |
"max number of live nodes in a method") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
707 |
range(0, max_juint / 8) \ |
15618
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15242
diff
changeset
|
708 |
\ |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15242
diff
changeset
|
709 |
diagnostic(bool, OptimizeExpensiveOps, true, \ |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15242
diff
changeset
|
710 |
"Find best control for expensive operations") \ |
20289 | 711 |
\ |
22911
ff49c48c887d
8027754: Enable loop optimizations for loops with MathExact inside
rbackman
parents:
22873
diff
changeset
|
712 |
product(bool, UseMathExactIntrinsics, true, \ |
21089
e1986ff6fe2e
8024069: replace_in_map() should operate on parent maps
roland
parents:
20289
diff
changeset
|
713 |
"Enables intrinsification of various java.lang.Math functions") \ |
e1986ff6fe2e
8024069: replace_in_map() should operate on parent maps
roland
parents:
20289
diff
changeset
|
714 |
\ |
26434
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
24946
diff
changeset
|
715 |
product(bool, UseMultiplyToLenIntrinsic, false, \ |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
24946
diff
changeset
|
716 |
"Enables intrinsification of BigInteger.multiplyToLen()") \ |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
24946
diff
changeset
|
717 |
\ |
31129
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30624
diff
changeset
|
718 |
product(bool, UseSquareToLenIntrinsic, false, \ |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30624
diff
changeset
|
719 |
"Enables intrinsification of BigInteger.squareToLen()") \ |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30624
diff
changeset
|
720 |
\ |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30624
diff
changeset
|
721 |
product(bool, UseMulAddIntrinsic, false, \ |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30624
diff
changeset
|
722 |
"Enables intrinsification of BigInteger.mulAdd()") \ |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30624
diff
changeset
|
723 |
\ |
31583
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
724 |
product(bool, UseMontgomeryMultiplyIntrinsic, false, \ |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
725 |
"Enables intrinsification of BigInteger.montgomeryMultiply()") \ |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
726 |
\ |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
727 |
product(bool, UseMontgomerySquareIntrinsic, false, \ |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
728 |
"Enables intrinsification of BigInteger.montgomerySquare()") \ |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
729 |
\ |
23208 | 730 |
product(bool, UseTypeSpeculation, true, \ |
22856
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22853
diff
changeset
|
731 |
"Speculatively propagate types from profiles") \ |
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22853
diff
changeset
|
732 |
\ |
22928
b2bb101a9ae3
8031754: Type speculation should favor profile data from outermost inlined method
roland
parents:
22911
diff
changeset
|
733 |
diagnostic(bool, UseInlineDepthForSpeculativeTypes, true, \ |
b2bb101a9ae3
8031754: Type speculation should favor profile data from outermost inlined method
roland
parents:
22911
diff
changeset
|
734 |
"Carry inline depth of profile point with speculative type " \ |
b2bb101a9ae3
8031754: Type speculation should favor profile data from outermost inlined method
roland
parents:
22911
diff
changeset
|
735 |
"and give priority to profiling from lower inline depth") \ |
b2bb101a9ae3
8031754: Type speculation should favor profile data from outermost inlined method
roland
parents:
22911
diff
changeset
|
736 |
\ |
22856
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22853
diff
changeset
|
737 |
product_pd(bool, TrapBasedRangeChecks, \ |
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22853
diff
changeset
|
738 |
"Generate code for range checks that uses a cmp and trap " \ |
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22853
diff
changeset
|
739 |
"instruction raising SIGTRAP. Used on PPC64.") \ |
28396
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
27707
diff
changeset
|
740 |
\ |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
27707
diff
changeset
|
741 |
product(intx, ArrayCopyLoadStoreMaxElem, 8, \ |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
27707
diff
changeset
|
742 |
"Maximum number of arraycopy elements inlined as a sequence of" \ |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
27707
diff
changeset
|
743 |
"loads/stores") \ |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
33065
diff
changeset
|
744 |
range(0, max_intx) \ |
28396
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
27707
diff
changeset
|
745 |
\ |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
27707
diff
changeset
|
746 |
develop(bool, StressArrayCopyMacroNode, false, \ |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
27707
diff
changeset
|
747 |
"Perform ArrayCopy load/store replacement during IGVN only") |
1 | 748 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
749 |
C2_FLAGS(DECLARE_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
750 |
DECLARE_PD_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
751 |
DECLARE_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
752 |
DECLARE_PD_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
753 |
DECLARE_DIAGNOSTIC_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
754 |
DECLARE_EXPERIMENTAL_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
755 |
DECLARE_NOTPRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
756 |
IGNORE_RANGE, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31129
diff
changeset
|
757 |
IGNORE_CONSTRAINT) |
7397 | 758 |
|
759 |
#endif // SHARE_VM_OPTO_C2_GLOBALS_HPP |