annotate src/share/vm/opto/c2_globals.hpp @ 253:b0fe4deeb9fb

6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.") Summary: Escape Analysis fixes. Reviewed-by: never, rasbold
author kvn
date Mon, 28 Jul 2008 17:12:52 -0700
parents 4a4c365f777d
children 40b69ca33f4b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 155
diff changeset
2 * Copyright 2000-2008 Sun Microsystems, Inc. All Rights Reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 //
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // Defines all globals flags used by the server compiler.
a61af66fc99e Initial load
duke
parents:
diff changeset
27 //
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 #define C2_FLAGS(develop, develop_pd, product, product_pd, diagnostic, notproduct) \
a61af66fc99e Initial load
duke
parents:
diff changeset
30 \
a61af66fc99e Initial load
duke
parents:
diff changeset
31 notproduct(intx, CompileZapFirst, 0, \
a61af66fc99e Initial load
duke
parents:
diff changeset
32 "If +ZapDeadCompiledLocals, " \
a61af66fc99e Initial load
duke
parents:
diff changeset
33 "skip this many before compiling in zap calls") \
a61af66fc99e Initial load
duke
parents:
diff changeset
34 \
a61af66fc99e Initial load
duke
parents:
diff changeset
35 notproduct(intx, CompileZapLast, -1, \
a61af66fc99e Initial load
duke
parents:
diff changeset
36 "If +ZapDeadCompiledLocals, " \
a61af66fc99e Initial load
duke
parents:
diff changeset
37 "compile this many after skipping (incl. skip count, -1 = all)") \
a61af66fc99e Initial load
duke
parents:
diff changeset
38 \
a61af66fc99e Initial load
duke
parents:
diff changeset
39 notproduct(intx, ZapDeadCompiledLocalsFirst, 0, \
a61af66fc99e Initial load
duke
parents:
diff changeset
40 "If +ZapDeadCompiledLocals, " \
a61af66fc99e Initial load
duke
parents:
diff changeset
41 "skip this many before really doing it") \
a61af66fc99e Initial load
duke
parents:
diff changeset
42 \
a61af66fc99e Initial load
duke
parents:
diff changeset
43 notproduct(intx, ZapDeadCompiledLocalsLast, -1, \
a61af66fc99e Initial load
duke
parents:
diff changeset
44 "If +ZapDeadCompiledLocals, " \
a61af66fc99e Initial load
duke
parents:
diff changeset
45 "do this many after skipping (incl. skip count, -1 = all)") \
a61af66fc99e Initial load
duke
parents:
diff changeset
46 \
a61af66fc99e Initial load
duke
parents:
diff changeset
47 develop(intx, OptoPrologueNops, 0, \
a61af66fc99e Initial load
duke
parents:
diff changeset
48 "Insert this many extra nop instructions " \
a61af66fc99e Initial load
duke
parents:
diff changeset
49 "in the prologue of every nmethod") \
a61af66fc99e Initial load
duke
parents:
diff changeset
50 \
a61af66fc99e Initial load
duke
parents:
diff changeset
51 product_pd(intx, InteriorEntryAlignment, \
a61af66fc99e Initial load
duke
parents:
diff changeset
52 "Code alignment for interior entry points " \
a61af66fc99e Initial load
duke
parents:
diff changeset
53 "in generated code (in bytes)") \
a61af66fc99e Initial load
duke
parents:
diff changeset
54 \
a61af66fc99e Initial load
duke
parents:
diff changeset
55 product_pd(intx, OptoLoopAlignment, \
a61af66fc99e Initial load
duke
parents:
diff changeset
56 "Align inner loops to zero relative to this modulus") \
a61af66fc99e Initial load
duke
parents:
diff changeset
57 \
a61af66fc99e Initial load
duke
parents:
diff changeset
58 product(intx, MaxLoopPad, (OptoLoopAlignment-1), \
a61af66fc99e Initial load
duke
parents:
diff changeset
59 "Align a loop if padding size in bytes is less or equal to this value") \
a61af66fc99e Initial load
duke
parents:
diff changeset
60 \
a61af66fc99e Initial load
duke
parents:
diff changeset
61 product(intx, NumberOfLoopInstrToAlign, 4, \
a61af66fc99e Initial load
duke
parents:
diff changeset
62 "Number of first instructions in a loop to align") \
a61af66fc99e Initial load
duke
parents:
diff changeset
63 \
a61af66fc99e Initial load
duke
parents:
diff changeset
64 notproduct(intx, IndexSetWatch, 0, \
a61af66fc99e Initial load
duke
parents:
diff changeset
65 "Trace all operations on this IndexSet (-1 means all, 0 none)") \
a61af66fc99e Initial load
duke
parents:
diff changeset
66 \
a61af66fc99e Initial load
duke
parents:
diff changeset
67 develop(intx, OptoNodeListSize, 4, \
a61af66fc99e Initial load
duke
parents:
diff changeset
68 "Starting allocation size of Node_List data structures") \
a61af66fc99e Initial load
duke
parents:
diff changeset
69 \
a61af66fc99e Initial load
duke
parents:
diff changeset
70 develop(intx, OptoBlockListSize, 8, \
a61af66fc99e Initial load
duke
parents:
diff changeset
71 "Starting allocation size of Block_List data structures") \
a61af66fc99e Initial load
duke
parents:
diff changeset
72 \
a61af66fc99e Initial load
duke
parents:
diff changeset
73 develop(intx, OptoPeepholeAt, -1, \
a61af66fc99e Initial load
duke
parents:
diff changeset
74 "Apply peephole optimizations to this peephole rule") \
a61af66fc99e Initial load
duke
parents:
diff changeset
75 \
a61af66fc99e Initial load
duke
parents:
diff changeset
76 notproduct(bool, PrintIdeal, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
77 "Print ideal graph before code generation") \
a61af66fc99e Initial load
duke
parents:
diff changeset
78 \
a61af66fc99e Initial load
duke
parents:
diff changeset
79 notproduct(bool, PrintOpto, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
80 "Print compiler2 attempts") \
a61af66fc99e Initial load
duke
parents:
diff changeset
81 \
a61af66fc99e Initial load
duke
parents:
diff changeset
82 notproduct(bool, PrintOptoInlining, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
83 "Print compiler2 inlining decisions") \
a61af66fc99e Initial load
duke
parents:
diff changeset
84 \
a61af66fc99e Initial load
duke
parents:
diff changeset
85 notproduct(bool, VerifyOpto, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
86 "Apply more time consuming verification during compilation") \
a61af66fc99e Initial load
duke
parents:
diff changeset
87 \
a61af66fc99e Initial load
duke
parents:
diff changeset
88 notproduct(bool, VerifyOptoOopOffsets, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
89 "Check types of base addresses in field references") \
a61af66fc99e Initial load
duke
parents:
diff changeset
90 \
a61af66fc99e Initial load
duke
parents:
diff changeset
91 develop(bool, IdealizedNumerics, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
92 "Check performance difference allowing FP " \
a61af66fc99e Initial load
duke
parents:
diff changeset
93 "associativity and commutativity...") \
a61af66fc99e Initial load
duke
parents:
diff changeset
94 \
a61af66fc99e Initial load
duke
parents:
diff changeset
95 develop(bool, OptoBreakpoint, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
96 "insert breakpoint at method entry") \
a61af66fc99e Initial load
duke
parents:
diff changeset
97 \
a61af66fc99e Initial load
duke
parents:
diff changeset
98 notproduct(bool, OptoBreakpointOSR, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
99 "insert breakpoint at osr method entry") \
a61af66fc99e Initial load
duke
parents:
diff changeset
100 \
a61af66fc99e Initial load
duke
parents:
diff changeset
101 notproduct(intx, BreakAtNode, 0, \
a61af66fc99e Initial load
duke
parents:
diff changeset
102 "Break at construction of this Node (either _idx or _debug_idx)") \
a61af66fc99e Initial load
duke
parents:
diff changeset
103 \
a61af66fc99e Initial load
duke
parents:
diff changeset
104 notproduct(bool, OptoBreakpointC2R, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
105 "insert breakpoint at runtime stub entry") \
a61af66fc99e Initial load
duke
parents:
diff changeset
106 \
a61af66fc99e Initial load
duke
parents:
diff changeset
107 notproduct(bool, OptoNoExecute, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
108 "Attempt to parse and compile but do not execute generated code") \
a61af66fc99e Initial load
duke
parents:
diff changeset
109 \
a61af66fc99e Initial load
duke
parents:
diff changeset
110 notproduct(bool, PrintOptoStatistics, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
111 "Print New compiler statistics") \
a61af66fc99e Initial load
duke
parents:
diff changeset
112 \
a61af66fc99e Initial load
duke
parents:
diff changeset
113 notproduct(bool, PrintOptoAssembly, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
114 "Print New compiler assembly output") \
a61af66fc99e Initial load
duke
parents:
diff changeset
115 \
a61af66fc99e Initial load
duke
parents:
diff changeset
116 develop_pd(bool, OptoPeephole, \
a61af66fc99e Initial load
duke
parents:
diff changeset
117 "Apply peephole optimizations after register allocation") \
a61af66fc99e Initial load
duke
parents:
diff changeset
118 \
a61af66fc99e Initial load
duke
parents:
diff changeset
119 develop(bool, OptoRemoveUseless, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
120 "Remove useless nodes after parsing") \
a61af66fc99e Initial load
duke
parents:
diff changeset
121 \
a61af66fc99e Initial load
duke
parents:
diff changeset
122 notproduct(bool, PrintFrameConverterAssembly, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
123 "Print New compiler assembly output for frame converters") \
a61af66fc99e Initial load
duke
parents:
diff changeset
124 \
a61af66fc99e Initial load
duke
parents:
diff changeset
125 notproduct(bool, PrintParseStatistics, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
126 "Print nodes, transforms and new values made per bytecode parsed")\
a61af66fc99e Initial load
duke
parents:
diff changeset
127 \
a61af66fc99e Initial load
duke
parents:
diff changeset
128 notproduct(bool, PrintOptoPeephole, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
129 "Print New compiler peephole replacements") \
a61af66fc99e Initial load
duke
parents:
diff changeset
130 \
a61af66fc99e Initial load
duke
parents:
diff changeset
131 develop(bool, PrintCFGBlockFreq, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
132 "Print CFG block freqencies") \
a61af66fc99e Initial load
duke
parents:
diff changeset
133 \
a61af66fc99e Initial load
duke
parents:
diff changeset
134 develop(bool, TraceOptoParse, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
135 "Trace bytecode parse and control-flow merge") \
a61af66fc99e Initial load
duke
parents:
diff changeset
136 \
a61af66fc99e Initial load
duke
parents:
diff changeset
137 product_pd(intx, LoopUnrollLimit, \
a61af66fc99e Initial load
duke
parents:
diff changeset
138 "Unroll loop bodies with node count less than this") \
a61af66fc99e Initial load
duke
parents:
diff changeset
139 \
a61af66fc99e Initial load
duke
parents:
diff changeset
140 product(intx, LoopUnrollMin, 4, \
a61af66fc99e Initial load
duke
parents:
diff changeset
141 "Minimum number of unroll loop bodies before checking progress" \
a61af66fc99e Initial load
duke
parents:
diff changeset
142 "of rounds of unroll,optimize,..") \
a61af66fc99e Initial load
duke
parents:
diff changeset
143 \
a61af66fc99e Initial load
duke
parents:
diff changeset
144 develop(intx, UnrollLimitForProfileCheck, 1, \
a61af66fc99e Initial load
duke
parents:
diff changeset
145 "Don't use profile_trip_cnt() to restrict unrolling until " \
a61af66fc99e Initial load
duke
parents:
diff changeset
146 "unrolling would push the number of unrolled iterations above " \
a61af66fc99e Initial load
duke
parents:
diff changeset
147 "UnrollLimitForProfileCheck. A higher value allows more " \
a61af66fc99e Initial load
duke
parents:
diff changeset
148 "unrolling. Zero acts as a very large value." ) \
a61af66fc99e Initial load
duke
parents:
diff changeset
149 \
a61af66fc99e Initial load
duke
parents:
diff changeset
150 product(intx, MultiArrayExpandLimit, 6, \
a61af66fc99e Initial load
duke
parents:
diff changeset
151 "Maximum number of individual allocations in an inline-expanded " \
a61af66fc99e Initial load
duke
parents:
diff changeset
152 "multianewarray instruction") \
a61af66fc99e Initial load
duke
parents:
diff changeset
153 \
a61af66fc99e Initial load
duke
parents:
diff changeset
154 notproduct(bool, TraceProfileTripCount, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
155 "Trace profile loop trip count information") \
a61af66fc99e Initial load
duke
parents:
diff changeset
156 \
a61af66fc99e Initial load
duke
parents:
diff changeset
157 develop(bool, OptoCoalesce, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
158 "Use Conservative Copy Coalescing in the Register Allocator") \
a61af66fc99e Initial load
duke
parents:
diff changeset
159 \
a61af66fc99e Initial load
duke
parents:
diff changeset
160 develop(bool, UseUniqueSubclasses, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
161 "Narrow an abstract reference to the unique concrete subclass") \
a61af66fc99e Initial load
duke
parents:
diff changeset
162 \
a61af66fc99e Initial load
duke
parents:
diff changeset
163 develop(bool, UseExactTypes, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
164 "Use exact types to eliminate array store checks and v-calls") \
a61af66fc99e Initial load
duke
parents:
diff changeset
165 \
a61af66fc99e Initial load
duke
parents:
diff changeset
166 product(intx, TrackedInitializationLimit, 50, \
a61af66fc99e Initial load
duke
parents:
diff changeset
167 "When initializing fields, track up to this many words") \
a61af66fc99e Initial load
duke
parents:
diff changeset
168 \
a61af66fc99e Initial load
duke
parents:
diff changeset
169 product(bool, ReduceFieldZeroing, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
170 "When initializing fields, try to avoid needless zeroing") \
a61af66fc99e Initial load
duke
parents:
diff changeset
171 \
a61af66fc99e Initial load
duke
parents:
diff changeset
172 product(bool, ReduceInitialCardMarks, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
173 "When initializing fields, try to avoid needless card marks") \
a61af66fc99e Initial load
duke
parents:
diff changeset
174 \
a61af66fc99e Initial load
duke
parents:
diff changeset
175 product(bool, ReduceBulkZeroing, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
176 "When bulk-initializing, try to avoid needless zeroing") \
a61af66fc99e Initial load
duke
parents:
diff changeset
177 \
a61af66fc99e Initial load
duke
parents:
diff changeset
178 develop_pd(intx, RegisterCostAreaRatio, \
a61af66fc99e Initial load
duke
parents:
diff changeset
179 "Spill selection in reg allocator: scale area by (X/64K) before " \
a61af66fc99e Initial load
duke
parents:
diff changeset
180 "adding cost") \
a61af66fc99e Initial load
duke
parents:
diff changeset
181 \
a61af66fc99e Initial load
duke
parents:
diff changeset
182 develop_pd(bool, UseCISCSpill, \
a61af66fc99e Initial load
duke
parents:
diff changeset
183 "Use ADLC supplied cisc instructions during allocation") \
a61af66fc99e Initial load
duke
parents:
diff changeset
184 \
a61af66fc99e Initial load
duke
parents:
diff changeset
185 notproduct(bool, VerifyGraphEdges , false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
186 "Verify Bi-directional Edges") \
a61af66fc99e Initial load
duke
parents:
diff changeset
187 \
a61af66fc99e Initial load
duke
parents:
diff changeset
188 notproduct(bool, VerifyDUIterators, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
189 "Verify the safety of all iterations of Bi-directional Edges") \
a61af66fc99e Initial load
duke
parents:
diff changeset
190 \
a61af66fc99e Initial load
duke
parents:
diff changeset
191 notproduct(bool, VerifyHashTableKeys, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
192 "Verify the immutability of keys in the VN hash tables") \
a61af66fc99e Initial load
duke
parents:
diff changeset
193 \
a61af66fc99e Initial load
duke
parents:
diff changeset
194 develop_pd(intx, FLOATPRESSURE, \
a61af66fc99e Initial load
duke
parents:
diff changeset
195 "Number of float LRG's that constitute high register pressure") \
a61af66fc99e Initial load
duke
parents:
diff changeset
196 \
a61af66fc99e Initial load
duke
parents:
diff changeset
197 develop_pd(intx, INTPRESSURE, \
a61af66fc99e Initial load
duke
parents:
diff changeset
198 "Number of integer LRG's that constitute high register pressure") \
a61af66fc99e Initial load
duke
parents:
diff changeset
199 \
a61af66fc99e Initial load
duke
parents:
diff changeset
200 notproduct(bool, TraceOptoPipelining, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
201 "Trace pipelining information") \
a61af66fc99e Initial load
duke
parents:
diff changeset
202 \
a61af66fc99e Initial load
duke
parents:
diff changeset
203 notproduct(bool, TraceOptoOutput, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
204 "Trace pipelining information") \
a61af66fc99e Initial load
duke
parents:
diff changeset
205 \
a61af66fc99e Initial load
duke
parents:
diff changeset
206 product_pd(bool, OptoScheduling, \
a61af66fc99e Initial load
duke
parents:
diff changeset
207 "Instruction Scheduling after register allocation") \
a61af66fc99e Initial load
duke
parents:
diff changeset
208 \
a61af66fc99e Initial load
duke
parents:
diff changeset
209 product(bool, PartialPeelLoop, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
210 "Partial peel (rotate) loops") \
a61af66fc99e Initial load
duke
parents:
diff changeset
211 \
a61af66fc99e Initial load
duke
parents:
diff changeset
212 product(intx, PartialPeelNewPhiDelta, 0, \
a61af66fc99e Initial load
duke
parents:
diff changeset
213 "Additional phis that can be created by partial peeling") \
a61af66fc99e Initial load
duke
parents:
diff changeset
214 \
a61af66fc99e Initial load
duke
parents:
diff changeset
215 notproduct(bool, TracePartialPeeling, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
216 "Trace partial peeling (loop rotation) information") \
a61af66fc99e Initial load
duke
parents:
diff changeset
217 \
a61af66fc99e Initial load
duke
parents:
diff changeset
218 product(bool, PartialPeelAtUnsignedTests, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
219 "Partial peel at unsigned tests if no signed test exists") \
a61af66fc99e Initial load
duke
parents:
diff changeset
220 \
a61af66fc99e Initial load
duke
parents:
diff changeset
221 product(bool, ReassociateInvariants, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
222 "Enable reassociation of expressions with loop invariants.") \
a61af66fc99e Initial load
duke
parents:
diff changeset
223 \
a61af66fc99e Initial load
duke
parents:
diff changeset
224 product(bool, LoopUnswitching, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
225 "Enable loop unswitching (a form of invariant test hoisting)") \
a61af66fc99e Initial load
duke
parents:
diff changeset
226 \
a61af66fc99e Initial load
duke
parents:
diff changeset
227 notproduct(bool, TraceLoopUnswitching, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
228 "Trace loop unswitching") \
a61af66fc99e Initial load
duke
parents:
diff changeset
229 \
a61af66fc99e Initial load
duke
parents:
diff changeset
230 product(bool, UseSuperWord, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
231 "Transform scalar operations into superword operations") \
a61af66fc99e Initial load
duke
parents:
diff changeset
232 \
a61af66fc99e Initial load
duke
parents:
diff changeset
233 develop(bool, SuperWordRTDepCheck, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
234 "Enable runtime dependency checks.") \
a61af66fc99e Initial load
duke
parents:
diff changeset
235 \
a61af66fc99e Initial load
duke
parents:
diff changeset
236 product(bool, TraceSuperWord, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
237 "Trace superword transforms") \
a61af66fc99e Initial load
duke
parents:
diff changeset
238 \
a61af66fc99e Initial load
duke
parents:
diff changeset
239 product_pd(bool, OptoBundling, \
a61af66fc99e Initial load
duke
parents:
diff changeset
240 "Generate nops to fill i-cache lines") \
a61af66fc99e Initial load
duke
parents:
diff changeset
241 \
a61af66fc99e Initial load
duke
parents:
diff changeset
242 product_pd(intx, ConditionalMoveLimit, \
a61af66fc99e Initial load
duke
parents:
diff changeset
243 "Limit of ops to make speculative when using CMOVE") \
a61af66fc99e Initial load
duke
parents:
diff changeset
244 \
a61af66fc99e Initial load
duke
parents:
diff changeset
245 /* Set BranchOnRegister == false. See 4965987. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
246 product(bool, BranchOnRegister, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
247 "Use Sparc V9 branch-on-register opcodes") \
a61af66fc99e Initial load
duke
parents:
diff changeset
248 \
a61af66fc99e Initial load
duke
parents:
diff changeset
249 develop(bool, SparcV9RegsHiBitsZero, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
250 "Assume Sparc V9 I&L registers on V8+ systems are zero-extended") \
a61af66fc99e Initial load
duke
parents:
diff changeset
251 \
a61af66fc99e Initial load
duke
parents:
diff changeset
252 develop(intx, PrintIdealGraphLevel, 0, \
a61af66fc99e Initial load
duke
parents:
diff changeset
253 "Print ideal graph to XML file / network interface. " \
a61af66fc99e Initial load
duke
parents:
diff changeset
254 "By default attempts to connect to the visualizer on a socket.") \
a61af66fc99e Initial load
duke
parents:
diff changeset
255 \
a61af66fc99e Initial load
duke
parents:
diff changeset
256 develop(intx, PrintIdealGraphPort, 4444, \
a61af66fc99e Initial load
duke
parents:
diff changeset
257 "Ideal graph printer to network port") \
a61af66fc99e Initial load
duke
parents:
diff changeset
258 \
a61af66fc99e Initial load
duke
parents:
diff changeset
259 develop(ccstr, PrintIdealGraphAddress, "127.0.0.1", \
a61af66fc99e Initial load
duke
parents:
diff changeset
260 "IP address to connect to visualizer") \
a61af66fc99e Initial load
duke
parents:
diff changeset
261 \
a61af66fc99e Initial load
duke
parents:
diff changeset
262 develop(ccstr, PrintIdealGraphFile, NULL, \
a61af66fc99e Initial load
duke
parents:
diff changeset
263 "File to dump ideal graph to. If set overrides the " \
a61af66fc99e Initial load
duke
parents:
diff changeset
264 "use of the network") \
a61af66fc99e Initial load
duke
parents:
diff changeset
265 \
a61af66fc99e Initial load
duke
parents:
diff changeset
266 product(bool, UseOldInlining, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
267 "Enable the 1.3 inlining strategy") \
a61af66fc99e Initial load
duke
parents:
diff changeset
268 \
a61af66fc99e Initial load
duke
parents:
diff changeset
269 product(bool, UseBimorphicInlining, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
270 "Profiling based inlining for two receivers") \
a61af66fc99e Initial load
duke
parents:
diff changeset
271 \
a61af66fc99e Initial load
duke
parents:
diff changeset
272 product(bool, UseOnlyInlinedBimorphic, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
273 "Don't use BimorphicInlining if can't inline a second method") \
a61af66fc99e Initial load
duke
parents:
diff changeset
274 \
a61af66fc99e Initial load
duke
parents:
diff changeset
275 product(bool, InsertMemBarAfterArraycopy, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
276 "Insert memory barrier after arraycopy call") \
a61af66fc99e Initial load
duke
parents:
diff changeset
277 \
a61af66fc99e Initial load
duke
parents:
diff changeset
278 /* controls for tier 1 compilations */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
279 \
a61af66fc99e Initial load
duke
parents:
diff changeset
280 develop(bool, Tier1CountInvocations, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
281 "Generate code, during tier 1, to update invocation counter") \
a61af66fc99e Initial load
duke
parents:
diff changeset
282 \
a61af66fc99e Initial load
duke
parents:
diff changeset
283 product(intx, Tier1Inline, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
284 "enable inlining during tier 1") \
a61af66fc99e Initial load
duke
parents:
diff changeset
285 \
a61af66fc99e Initial load
duke
parents:
diff changeset
286 product(intx, Tier1MaxInlineSize, 8, \
a61af66fc99e Initial load
duke
parents:
diff changeset
287 "maximum bytecode size of a method to be inlined, during tier 1") \
a61af66fc99e Initial load
duke
parents:
diff changeset
288 \
a61af66fc99e Initial load
duke
parents:
diff changeset
289 product(intx, Tier1FreqInlineSize, 35, \
a61af66fc99e Initial load
duke
parents:
diff changeset
290 "max bytecode size of a frequent method to be inlined, tier 1") \
a61af66fc99e Initial load
duke
parents:
diff changeset
291 \
a61af66fc99e Initial load
duke
parents:
diff changeset
292 develop(intx, ImplicitNullCheckThreshold, 3, \
a61af66fc99e Initial load
duke
parents:
diff changeset
293 "Don't do implicit null checks if NPE's in a method exceeds limit") \
a61af66fc99e Initial load
duke
parents:
diff changeset
294 \
a61af66fc99e Initial load
duke
parents:
diff changeset
295 /* controls for loop optimization */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
296 product(intx, Tier1LoopOptsCount, 0, \
a61af66fc99e Initial load
duke
parents:
diff changeset
297 "Set level of loop optimization for tier 1 compiles") \
a61af66fc99e Initial load
duke
parents:
diff changeset
298 \
a61af66fc99e Initial load
duke
parents:
diff changeset
299 product(intx, LoopOptsCount, 43, \
a61af66fc99e Initial load
duke
parents:
diff changeset
300 "Set level of loop optimization for tier 1 compiles") \
a61af66fc99e Initial load
duke
parents:
diff changeset
301 \
a61af66fc99e Initial load
duke
parents:
diff changeset
302 /* controls for heat-based inlining */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
303 \
a61af66fc99e Initial load
duke
parents:
diff changeset
304 develop(intx, NodeCountInliningCutoff, 18000, \
a61af66fc99e Initial load
duke
parents:
diff changeset
305 "If parser node generation exceeds limit stop inlining") \
a61af66fc99e Initial load
duke
parents:
diff changeset
306 \
a61af66fc99e Initial load
duke
parents:
diff changeset
307 develop(intx, NodeCountInliningStep, 1000, \
a61af66fc99e Initial load
duke
parents:
diff changeset
308 "Target size of warm calls inlined between optimization passes") \
a61af66fc99e Initial load
duke
parents:
diff changeset
309 \
a61af66fc99e Initial load
duke
parents:
diff changeset
310 develop(bool, InlineWarmCalls, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
311 "Use a heat-based priority queue to govern inlining") \
a61af66fc99e Initial load
duke
parents:
diff changeset
312 \
a61af66fc99e Initial load
duke
parents:
diff changeset
313 develop(intx, HotCallCountThreshold, 999999, \
a61af66fc99e Initial load
duke
parents:
diff changeset
314 "large numbers of calls (per method invocation) force hotness") \
a61af66fc99e Initial load
duke
parents:
diff changeset
315 \
a61af66fc99e Initial load
duke
parents:
diff changeset
316 develop(intx, HotCallProfitThreshold, 999999, \
a61af66fc99e Initial load
duke
parents:
diff changeset
317 "highly profitable inlining opportunities force hotness") \
a61af66fc99e Initial load
duke
parents:
diff changeset
318 \
a61af66fc99e Initial load
duke
parents:
diff changeset
319 develop(intx, HotCallTrivialWork, -1, \
a61af66fc99e Initial load
duke
parents:
diff changeset
320 "trivial execution time (no larger than this) forces hotness") \
a61af66fc99e Initial load
duke
parents:
diff changeset
321 \
a61af66fc99e Initial load
duke
parents:
diff changeset
322 develop(intx, HotCallTrivialSize, -1, \
a61af66fc99e Initial load
duke
parents:
diff changeset
323 "trivial methods (no larger than this) force calls to be hot") \
a61af66fc99e Initial load
duke
parents:
diff changeset
324 \
a61af66fc99e Initial load
duke
parents:
diff changeset
325 develop(intx, WarmCallMinCount, -1, \
a61af66fc99e Initial load
duke
parents:
diff changeset
326 "number of calls (per method invocation) to enable inlining") \
a61af66fc99e Initial load
duke
parents:
diff changeset
327 \
a61af66fc99e Initial load
duke
parents:
diff changeset
328 develop(intx, WarmCallMinProfit, -1, \
a61af66fc99e Initial load
duke
parents:
diff changeset
329 "number of calls (per method invocation) to enable inlining") \
a61af66fc99e Initial load
duke
parents:
diff changeset
330 \
a61af66fc99e Initial load
duke
parents:
diff changeset
331 develop(intx, WarmCallMaxWork, 999999, \
a61af66fc99e Initial load
duke
parents:
diff changeset
332 "execution time of the largest inlinable method") \
a61af66fc99e Initial load
duke
parents:
diff changeset
333 \
a61af66fc99e Initial load
duke
parents:
diff changeset
334 develop(intx, WarmCallMaxSize, 999999, \
a61af66fc99e Initial load
duke
parents:
diff changeset
335 "size of the largest inlinable method") \
a61af66fc99e Initial load
duke
parents:
diff changeset
336 \
a61af66fc99e Initial load
duke
parents:
diff changeset
337 product(intx, MaxNodeLimit, 65000, \
a61af66fc99e Initial load
duke
parents:
diff changeset
338 "Maximum number of nodes") \
a61af66fc99e Initial load
duke
parents:
diff changeset
339 \
a61af66fc99e Initial load
duke
parents:
diff changeset
340 product(intx, NodeLimitFudgeFactor, 1000, \
a61af66fc99e Initial load
duke
parents:
diff changeset
341 "Fudge Factor for certain optimizations") \
a61af66fc99e Initial load
duke
parents:
diff changeset
342 \
a61af66fc99e Initial load
duke
parents:
diff changeset
343 product(bool, UseJumpTables, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
344 "Use JumpTables instead of a binary search tree for switches") \
a61af66fc99e Initial load
duke
parents:
diff changeset
345 \
a61af66fc99e Initial load
duke
parents:
diff changeset
346 product(bool, UseDivMod, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
347 "Use combined DivMod instruction if available") \
a61af66fc99e Initial load
duke
parents:
diff changeset
348 \
a61af66fc99e Initial load
duke
parents:
diff changeset
349 product(intx, MinJumpTableSize, 18, \
a61af66fc99e Initial load
duke
parents:
diff changeset
350 "Minimum number of targets in a generated jump table") \
a61af66fc99e Initial load
duke
parents:
diff changeset
351 \
a61af66fc99e Initial load
duke
parents:
diff changeset
352 product(intx, MaxJumpTableSize, 65000, \
a61af66fc99e Initial load
duke
parents:
diff changeset
353 "Maximum number of targets in a generated jump table") \
a61af66fc99e Initial load
duke
parents:
diff changeset
354 \
a61af66fc99e Initial load
duke
parents:
diff changeset
355 product(intx, MaxJumpTableSparseness, 5, \
a61af66fc99e Initial load
duke
parents:
diff changeset
356 "Maximum sparseness for jumptables") \
a61af66fc99e Initial load
duke
parents:
diff changeset
357 \
a61af66fc99e Initial load
duke
parents:
diff changeset
358 product(bool, EliminateLocks, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
359 "Coarsen locks when possible") \
a61af66fc99e Initial load
duke
parents:
diff changeset
360 \
a61af66fc99e Initial load
duke
parents:
diff changeset
361 notproduct(bool, PrintLockStatistics, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
362 "Print precise statistics on the dynamic lock usage") \
a61af66fc99e Initial load
duke
parents:
diff changeset
363 \
a61af66fc99e Initial load
duke
parents:
diff changeset
364 diagnostic(bool, PrintPreciseBiasedLockingStatistics, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
365 "Print per-lock-site statistics of biased locking in JVM") \
a61af66fc99e Initial load
duke
parents:
diff changeset
366 \
a61af66fc99e Initial load
duke
parents:
diff changeset
367 notproduct(bool, PrintEliminateLocks, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
368 "Print out when locks are eliminated") \
a61af66fc99e Initial load
duke
parents:
diff changeset
369 \
17
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
370 diagnostic(bool, EliminateAutoBox, false, \
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
371 "Private flag to control optimizations for autobox elimination") \
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
372 \
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
373 product(intx, AutoBoxCacheMax, 128, \
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
374 "Sets max value cached by the java.lang.Integer autobox cache") \
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
375 \
244
524eca34ea76 6684714: Optimize EA Connection Graph build performance
kvn
parents: 155
diff changeset
376 product(bool, DoEscapeAnalysis, true, \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
377 "Perform escape analysis") \
a61af66fc99e Initial load
duke
parents:
diff changeset
378 \
a61af66fc99e Initial load
duke
parents:
diff changeset
379 notproduct(bool, PrintEscapeAnalysis, false, \
a61af66fc99e Initial load
duke
parents:
diff changeset
380 "Print the results of escape analysis") \
a61af66fc99e Initial load
duke
parents:
diff changeset
381 \
a61af66fc99e Initial load
duke
parents:
diff changeset
382 product(bool, EliminateAllocations, true, \
a61af66fc99e Initial load
duke
parents:
diff changeset
383 "Use escape analysis to eliminate allocations") \
a61af66fc99e Initial load
duke
parents:
diff changeset
384 \
65
99269dbf4ba8 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 17
diff changeset
385 notproduct(bool, PrintEliminateAllocations, false, \
99269dbf4ba8 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 17
diff changeset
386 "Print out when allocations are eliminated") \
99269dbf4ba8 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 17
diff changeset
387 \
99269dbf4ba8 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 17
diff changeset
388 product(intx, EliminateAllocationArraySizeLimit, 64, \
99269dbf4ba8 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 17
diff changeset
389 "Array size (number of elements) limit for scalar replacement") \
99269dbf4ba8 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 17
diff changeset
390 \
253
b0fe4deeb9fb 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 245
diff changeset
391 product(intx, ValueSearchLimit, 1000, \
b0fe4deeb9fb 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 245
diff changeset
392 "Recursion limit in PhaseMacroExpand::value_from_mem_phi") \
b0fe4deeb9fb 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 245
diff changeset
393 \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
394 product(intx, MaxLabelRootDepth, 1100, \
a61af66fc99e Initial load
duke
parents:
diff changeset
395 "Maximum times call Label_Root to prevent stack overflow") \
155
723be81c1212 6701887: JDK7 server VM in endless loop in Node::dominates
kvn
parents: 65
diff changeset
396 \
723be81c1212 6701887: JDK7 server VM in endless loop in Node::dominates
kvn
parents: 65
diff changeset
397 diagnostic(intx, DominatorSearchLimit, 1000, \
723be81c1212 6701887: JDK7 server VM in endless loop in Node::dominates
kvn
parents: 65
diff changeset
398 "Iterations limit in Node::dominates") \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
399
a61af66fc99e Initial load
duke
parents:
diff changeset
400 C2_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_DIAGNOSTIC_FLAG, DECLARE_NOTPRODUCT_FLAG)