comparison src/share/vm/runtime/globals.hpp @ 7154:5d0bb7d52783

changes to support Graal co-existing with the other HotSpot compiler(s) and being used for explicit compilation requests and code installation via the Graal API
author Doug Simon <doug.simon@oracle.com>
date Wed, 12 Dec 2012 21:36:40 +0100
parents 1baf7f1e3f23
children 8a3efb8c831d
comparison
equal deleted inserted replaced
7153:c421c19b7bf8 7154:5d0bb7d52783
1217 "Trace JNI calls") \ 1217 "Trace JNI calls") \
1218 \ 1218 \
1219 notproduct(bool, TraceJVMCalls, false, \ 1219 notproduct(bool, TraceJVMCalls, false, \
1220 "Trace JVM calls") \ 1220 "Trace JVM calls") \
1221 \ 1221 \
1222 product(bool, TraceSignals, false, \
1223 "Trace signals and implicit exception handling") \
1224 \
1222 product(ccstr, TraceJVMTI, NULL, \ 1225 product(ccstr, TraceJVMTI, NULL, \
1223 "Trace flags for JVMTI functions and events") \ 1226 "Trace flags for JVMTI functions and events") \
1224 \ 1227 \
1225 /* This option can change an EMCP method into an obsolete method. */ \ 1228 /* This option can change an EMCP method into an obsolete method. */ \
1226 /* This can affect tests that except specific methods to be EMCP. */ \ 1229 /* This can affect tests that except specific methods to be EMCP. */ \
2371 /* compiler */ \ 2374 /* compiler */ \
2372 \ 2375 \
2373 product(intx, CICompilerCount, CI_COMPILER_COUNT, \ 2376 product(intx, CICompilerCount, CI_COMPILER_COUNT, \
2374 "Number of compiler threads to run") \ 2377 "Number of compiler threads to run") \
2375 \ 2378 \
2376 product(intx, CompilationPolicyChoice, NOT_GRAAL(0) GRAAL_ONLY(4), \ 2379 product(intx, CompilationPolicyChoice, NOT_GRAALVM(0) GRAALVM_ONLY(4), \
2377 "which compilation policy (0/1)") \ 2380 "which compilation policy (0/1)") \
2378 \ 2381 \
2379 develop(bool, UseStackBanging, true, \ 2382 develop(bool, UseStackBanging, true, \
2380 "use stack banging for stack overflow checks (required for " \ 2383 "use stack banging for stack overflow checks (required for " \
2381 "proper StackOverflow handling; disable only to measure cost " \ 2384 "proper StackOverflow handling; disable only to measure cost " \