src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/runtime/globals.hpp

src/share/vm/runtime/globals.hpp

Print this page
rev 29185 : Review changes

*** 3676,3696 **** --- 3676,3700 ---- range(0, max_jint) \ \ product(intx, Tier3AOTInvocationThreshold, 10000, \ "Compile if number of method invocations crosses this " \ "threshold if coming from AOT") \ + range(0, max_jint) \ \ product(intx, Tier3AOTMinInvocationThreshold, 1000, \ "Minimum invocation to compile at tier 3 if coming from AOT") \ + range(0, max_jint) \ \ product(intx, Tier3AOTCompileThreshold, 15000, \ "Threshold at which tier 3 compilation is invoked (invocation " \ "minimum must be satisfied) if coming from AOT") \ + range(0, max_jint) \ \ product(intx, Tier3AOTBackEdgeThreshold, 120000, \ "Back edge threshold at which tier 3 OSR compilation is invoked " \ "if coming from AOT") \ + range(0, max_jint) \ \ product(intx, Tier4InvocationThreshold, 5000, \ "Compile if number of method invocations crosses this " \ "threshold") \ range(0, max_jint) \
src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File