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

src/share/vm/c1/c1_globals.hpp

Print this page
rev 7049 : 8058583: Remove CompilationRepeat
Summary: Remove product flag -XX:CompilationRepeat
Reviewed-by:


 270           "Marks all fields as having unloaded classes")                    \
 271                                                                             \
 272   develop(bool, PrintNotLoaded, false,                                      \
 273           "Prints where classes are not loaded during code generation")     \
 274                                                                             \
 275   develop(bool, PrintLIR, false,                                            \
 276           "print low-level IR")                                             \
 277                                                                             \
 278   develop(bool, BailoutAfterHIR, false,                                     \
 279           "bailout of compilation after building of HIR")                   \
 280                                                                             \
 281   develop(bool, BailoutAfterLIR, false,                                     \
 282           "bailout of compilation after building of LIR")                   \
 283                                                                             \
 284   develop(bool, BailoutOnExceptionHandlers, false,                          \
 285           "bailout of compilation for methods with exception handlers")     \
 286                                                                             \
 287   develop(bool, InstallMethods, true,                                       \
 288           "Install methods at the end of successful compilations")          \
 289                                                                             \
 290   product(intx, CompilationRepeat, 0,                                       \
 291           "Number of times to recompile method before returning result")    \
 292                                                                             \
 293   develop(intx, NMethodSizeLimit, (64*K)*wordSize,                          \
 294           "Maximum size of a compiled method.")                             \
 295                                                                             \
 296   develop(bool, TraceFPUStack, false,                                       \
 297           "Trace emulation of the FPU stack (intel only)")                  \
 298                                                                             \
 299   develop(bool, TraceFPURegisterUsage, false,                               \
 300           "Trace usage of FPU registers at start of blocks (intel only)")   \
 301                                                                             \
 302   develop(bool, OptimizeUnsafes, true,                                      \
 303           "Optimize raw unsafe ops")                                        \
 304                                                                             \
 305   develop(bool, PrintUnsafeOptimization, false,                             \
 306           "Print optimization of raw unsafe ops")                           \
 307                                                                             \
 308   develop(intx, InstructionCountCutoff, 37000,                              \
 309           "If GraphBuilder adds this many instructions, bails out")         \
 310                                                                             \
 311   develop(bool, ComputeExactFPURegisterUsage, true,                         \
 312           "Compute additional live set for fpu registers to simplify fpu stack merge (Intel only)") \




 270           "Marks all fields as having unloaded classes")                    \
 271                                                                             \
 272   develop(bool, PrintNotLoaded, false,                                      \
 273           "Prints where classes are not loaded during code generation")     \
 274                                                                             \
 275   develop(bool, PrintLIR, false,                                            \
 276           "print low-level IR")                                             \
 277                                                                             \
 278   develop(bool, BailoutAfterHIR, false,                                     \
 279           "bailout of compilation after building of HIR")                   \
 280                                                                             \
 281   develop(bool, BailoutAfterLIR, false,                                     \
 282           "bailout of compilation after building of LIR")                   \
 283                                                                             \
 284   develop(bool, BailoutOnExceptionHandlers, false,                          \
 285           "bailout of compilation for methods with exception handlers")     \
 286                                                                             \
 287   develop(bool, InstallMethods, true,                                       \
 288           "Install methods at the end of successful compilations")          \
 289                                                                             \



 290   develop(intx, NMethodSizeLimit, (64*K)*wordSize,                          \
 291           "Maximum size of a compiled method.")                             \
 292                                                                             \
 293   develop(bool, TraceFPUStack, false,                                       \
 294           "Trace emulation of the FPU stack (intel only)")                  \
 295                                                                             \
 296   develop(bool, TraceFPURegisterUsage, false,                               \
 297           "Trace usage of FPU registers at start of blocks (intel only)")   \
 298                                                                             \
 299   develop(bool, OptimizeUnsafes, true,                                      \
 300           "Optimize raw unsafe ops")                                        \
 301                                                                             \
 302   develop(bool, PrintUnsafeOptimization, false,                             \
 303           "Print optimization of raw unsafe ops")                           \
 304                                                                             \
 305   develop(intx, InstructionCountCutoff, 37000,                              \
 306           "If GraphBuilder adds this many instructions, bails out")         \
 307                                                                             \
 308   develop(bool, ComputeExactFPURegisterUsage, true,                         \
 309           "Compute additional live set for fpu registers to simplify fpu stack merge (Intel only)") \


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