src/share/vm/c1/c1_globals.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8078554 Cdiff src/share/vm/c1/c1_globals.hpp

src/share/vm/c1/c1_globals.hpp

Print this page

        

*** 150,159 **** --- 150,160 ---- "Initial size of a value map") \ range(1, NOT_LP64(1*K) LP64_ONLY(32*K)) \ \ product(intx, ValueMapMaxLoopSize, 8, \ "maximum size of a loop optimized by global value numbering") \ + range(0, 128) \ \ develop(bool, EliminateBlocks, true, \ "Eliminate unneccessary basic blocks") \ \ develop(bool, PrintBlockElimination, false, \
*** 218,227 **** --- 219,229 ---- develop_pd(bool, TwoOperandLIRForm, \ "true if LIR requires src1 and dst to match in binary LIR ops") \ \ develop(intx, TraceLinearScanLevel, 0, \ "Debug levels for the linear scan allocator") \ + range(0, 4) \ \ develop(bool, StressLinearScan, false, \ "scramble block order used by LinearScan (stress test)") \ \ product(bool, TimeLinearScan, false, \
*** 292,301 **** --- 294,304 ---- develop(bool, InstallMethods, true, \ "Install methods at the end of successful compilations") \ \ develop(intx, NMethodSizeLimit, (64*K)*wordSize, \ "Maximum size of a compiled method.") \ + range(0, max_jint) \ \ develop(bool, TraceFPUStack, false, \ "Trace emulation of the FPU stack (intel only)") \ \ develop(bool, TraceFPURegisterUsage, false, \
*** 307,316 **** --- 310,320 ---- develop(bool, PrintUnsafeOptimization, false, \ "Print optimization of raw unsafe ops") \ \ develop(intx, InstructionCountCutoff, 37000, \ "If GraphBuilder adds this many instructions, bails out") \ + range(0, max_jint) \ \ develop(bool, ComputeExactFPURegisterUsage, true, \ "Compute additional live set for fpu registers to simplify fpu stack merge (Intel only)") \ \ product(bool, C1ProfileCalls, true, \
src/share/vm/c1/c1_globals.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File