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

src/share/vm/c1/c1_globals.hpp

Print this page




 261           "Adds oopmap verification code to the generated code")            \
 262                                                                             \
 263   develop(bool, PrintLIR, false,                                            \
 264           "print low-level IR")                                             \
 265                                                                             \
 266   develop(bool, BailoutAfterHIR, false,                                     \
 267           "bailout of compilation after building of HIR")                   \
 268                                                                             \
 269   develop(bool, BailoutAfterLIR, false,                                     \
 270           "bailout of compilation after building of LIR")                   \
 271                                                                             \
 272   develop(bool, BailoutOnExceptionHandlers, false,                          \
 273           "bailout of compilation for methods with exception handlers")     \
 274                                                                             \
 275   develop(bool, InstallMethods, true,                                       \
 276           "Install methods at the end of successful compilations")          \
 277                                                                             \
 278   product(intx, CompilationRepeat, 0,                                       \
 279           "Number of times to recompile method before returning result")    \
 280                                                                             \
 281   develop(intx, NMethodSizeLimit, (32*K)*wordSize,                          \
 282           "Maximum size of a compiled method.")                             \
 283                                                                             \
 284   develop(bool, TraceFPUStack, false,                                       \
 285           "Trace emulation of the FPU stack (intel only)")                  \
 286                                                                             \
 287   develop(bool, TraceFPURegisterUsage, false,                               \
 288           "Trace usage of FPU registers at start of blocks (intel only)")   \
 289                                                                             \
 290   develop(bool, OptimizeUnsafes, true,                                      \
 291           "Optimize raw unsafe ops")                                        \
 292                                                                             \
 293   develop(bool, PrintUnsafeOptimization, false,                             \
 294           "Print optimization of raw unsafe ops")                           \
 295                                                                             \
 296   develop(intx, InstructionCountCutoff, 37000,                              \
 297           "If GraphBuilder adds this many instructions, bails out")         \
 298                                                                             \
 299   product_pd(intx, SafepointPollOffset,                                     \
 300           "Offset added to polling address (Intel only)")                   \
 301                                                                             \




 261           "Adds oopmap verification code to the generated code")            \
 262                                                                             \
 263   develop(bool, PrintLIR, false,                                            \
 264           "print low-level IR")                                             \
 265                                                                             \
 266   develop(bool, BailoutAfterHIR, false,                                     \
 267           "bailout of compilation after building of HIR")                   \
 268                                                                             \
 269   develop(bool, BailoutAfterLIR, false,                                     \
 270           "bailout of compilation after building of LIR")                   \
 271                                                                             \
 272   develop(bool, BailoutOnExceptionHandlers, false,                          \
 273           "bailout of compilation for methods with exception handlers")     \
 274                                                                             \
 275   develop(bool, InstallMethods, true,                                       \
 276           "Install methods at the end of successful compilations")          \
 277                                                                             \
 278   product(intx, CompilationRepeat, 0,                                       \
 279           "Number of times to recompile method before returning result")    \
 280                                                                             \
 281   develop(intx, NMethodSizeLimit, (64*K)*wordSize,                          \
 282           "Maximum size of a compiled method.")                             \
 283                                                                             \
 284   develop(bool, TraceFPUStack, false,                                       \
 285           "Trace emulation of the FPU stack (intel only)")                  \
 286                                                                             \
 287   develop(bool, TraceFPURegisterUsage, false,                               \
 288           "Trace usage of FPU registers at start of blocks (intel only)")   \
 289                                                                             \
 290   develop(bool, OptimizeUnsafes, true,                                      \
 291           "Optimize raw unsafe ops")                                        \
 292                                                                             \
 293   develop(bool, PrintUnsafeOptimization, false,                             \
 294           "Print optimization of raw unsafe ops")                           \
 295                                                                             \
 296   develop(intx, InstructionCountCutoff, 37000,                              \
 297           "If GraphBuilder adds this many instructions, bails out")         \
 298                                                                             \
 299   product_pd(intx, SafepointPollOffset,                                     \
 300           "Offset added to polling address (Intel only)")                   \
 301                                                                             \


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