< prev index next >

src/share/vm/c1/c1_globals.hpp

Print this page
rev 11572 : 8160245: C1: Clean up platform #defines in c1_LIR.hpp.
Summary: Also add fnoreg on x86, LIR_Address constructor without scale, and clean up templateInterpreterGenerator.hpp.
Reviewed-by: coleenp


 286           "Marks all fields as having unloaded classes")                    \
 287                                                                             \
 288   develop(bool, PrintNotLoaded, false,                                      \
 289           "Prints where classes are not loaded during code generation")     \
 290                                                                             \
 291   develop(bool, PrintLIR, false,                                            \
 292           "print low-level IR")                                             \
 293                                                                             \
 294   develop(bool, BailoutAfterHIR, false,                                     \
 295           "bailout of compilation after building of HIR")                   \
 296                                                                             \
 297   develop(bool, BailoutAfterLIR, false,                                     \
 298           "bailout of compilation after building of LIR")                   \
 299                                                                             \
 300   develop(bool, BailoutOnExceptionHandlers, false,                          \
 301           "bailout of compilation for methods with exception handlers")     \
 302                                                                             \
 303   develop(bool, InstallMethods, true,                                       \
 304           "Install methods at the end of successful compilations")          \
 305                                                                             \
 306   develop(intx, NMethodSizeLimit, (64*K)*wordSize,                          \
 307           "Maximum size of a compiled method.")                             \
 308           range(0, max_jint)                                                \
 309                                                                             \
 310   develop(bool, TraceFPUStack, false,                                       \
 311           "Trace emulation of the FPU stack (intel only)")                  \
 312                                                                             \
 313   develop(bool, TraceFPURegisterUsage, false,                               \
 314           "Trace usage of FPU registers at start of blocks (intel only)")   \
 315                                                                             \
 316   develop(bool, OptimizeUnsafes, true,                                      \
 317           "Optimize raw unsafe ops")                                        \
 318                                                                             \
 319   develop(bool, PrintUnsafeOptimization, false,                             \
 320           "Print optimization of raw unsafe ops")                           \
 321                                                                             \
 322   develop(intx, InstructionCountCutoff, 37000,                              \
 323           "If GraphBuilder adds this many instructions, bails out")         \
 324           range(0, max_jint)                                                \
 325                                                                             \
 326   develop(bool, ComputeExactFPURegisterUsage, true,                         \
 327           "Compute additional live set for fpu registers to simplify fpu stack merge (Intel only)") \
 328                                                                             \




 286           "Marks all fields as having unloaded classes")                    \
 287                                                                             \
 288   develop(bool, PrintNotLoaded, false,                                      \
 289           "Prints where classes are not loaded during code generation")     \
 290                                                                             \
 291   develop(bool, PrintLIR, false,                                            \
 292           "print low-level IR")                                             \
 293                                                                             \
 294   develop(bool, BailoutAfterHIR, false,                                     \
 295           "bailout of compilation after building of HIR")                   \
 296                                                                             \
 297   develop(bool, BailoutAfterLIR, false,                                     \
 298           "bailout of compilation after building of LIR")                   \
 299                                                                             \
 300   develop(bool, BailoutOnExceptionHandlers, false,                          \
 301           "bailout of compilation for methods with exception handlers")     \
 302                                                                             \
 303   develop(bool, InstallMethods, true,                                       \
 304           "Install methods at the end of successful compilations")          \
 305                                                                             \
 306   develop(intx, NMethodSizeLimit, NOT_PPC32(2*)(32*K)*wordSize,             \
 307           "Maximum size of a compiled method.")                             \
 308            range(0, NOT_PPC32(max_jint) PPC32_ONLY(32*K))                   \
 309                                                                             \
 310   develop(bool, TraceFPUStack, false,                                       \
 311           "Trace emulation of the FPU stack (intel only)")                  \
 312                                                                             \
 313   develop(bool, TraceFPURegisterUsage, false,                               \
 314           "Trace usage of FPU registers at start of blocks (intel only)")   \
 315                                                                             \
 316   develop(bool, OptimizeUnsafes, true,                                      \
 317           "Optimize raw unsafe ops")                                        \
 318                                                                             \
 319   develop(bool, PrintUnsafeOptimization, false,                             \
 320           "Print optimization of raw unsafe ops")                           \
 321                                                                             \
 322   develop(intx, InstructionCountCutoff, 37000,                              \
 323           "If GraphBuilder adds this many instructions, bails out")         \
 324           range(0, max_jint)                                                \
 325                                                                             \
 326   develop(bool, ComputeExactFPURegisterUsage, true,                         \
 327           "Compute additional live set for fpu registers to simplify fpu stack merge (Intel only)") \
 328                                                                             \


< prev index next >