src/hotspot/share/jvmci/jvmci_globals.hpp
Index Unified diffs Context diffs Sdiffs Frames Patch New Old Previous File Next File open Sdiff src/hotspot/share/jvmci

src/hotspot/share/jvmci/jvmci_globals.hpp

Print this page




  38                     diagnostic, \
  39                     diagnostic_pd, \
  40                     experimental, \
  41                     notproduct, \
  42                     range, \
  43                     constraint, \
  44                     writeable) \
  45                                                                             \
  46   experimental(bool, EnableJVMCI, false,                                    \
  47           "Enable JVMCI")                                                   \
  48                                                                             \
  49   experimental(bool, UseJVMCICompiler, false,                               \
  50           "Use JVMCI as the default compiler")                              \
  51                                                                             \
  52   experimental(bool, JVMCIPrintProperties, false,                           \
  53           "Prints properties used by the JVMCI compiler and exits")         \
  54                                                                             \
  55   experimental(bool, BootstrapJVMCI, false,                                 \
  56           "Bootstrap JVMCI before running Java main method")                \
  57                                                                             \



  58   experimental(bool, PrintBootstrap, true,                                  \
  59           "Print JVMCI bootstrap progress and summary")                     \
  60                                                                             \
  61   experimental(intx, JVMCIThreads, 1,                                       \
  62           "Force number of JVMCI compiler threads to use")                  \
  63           range(1, max_jint)                                                \
  64                                                                             \
  65   experimental(intx, JVMCIHostThreads, 1,                                   \
  66           "Force number of compiler threads for JVMCI host compiler")       \
  67           range(1, max_jint)                                                \
  68                                                                             \
  69   NOT_COMPILER2(product(intx, MaxVectorSize, 64,                            \
  70           "Max vector size in bytes, "                                      \
  71           "actual size could be less depending on elements type"))          \
  72                                                                             \
  73   NOT_COMPILER2(product(bool, ReduceInitialCardMarks, true,                 \
  74           "Defer write barriers of young objects"))                         \
  75                                                                             \
  76   experimental(intx, JVMCITraceLevel, 0,                                    \
  77           "Trace level for JVMCI: "                                         \




  38                     diagnostic, \
  39                     diagnostic_pd, \
  40                     experimental, \
  41                     notproduct, \
  42                     range, \
  43                     constraint, \
  44                     writeable) \
  45                                                                             \
  46   experimental(bool, EnableJVMCI, false,                                    \
  47           "Enable JVMCI")                                                   \
  48                                                                             \
  49   experimental(bool, UseJVMCICompiler, false,                               \
  50           "Use JVMCI as the default compiler")                              \
  51                                                                             \
  52   experimental(bool, JVMCIPrintProperties, false,                           \
  53           "Prints properties used by the JVMCI compiler and exits")         \
  54                                                                             \
  55   experimental(bool, BootstrapJVMCI, false,                                 \
  56           "Bootstrap JVMCI before running Java main method")                \
  57                                                                             \
  58   experimental(bool, EagerJVMCI, false,                                     \
  59           "Force eager JVMCI initialization")                               \
  60                                                                             \
  61   experimental(bool, PrintBootstrap, true,                                  \
  62           "Print JVMCI bootstrap progress and summary")                     \
  63                                                                             \
  64   experimental(intx, JVMCIThreads, 1,                                       \
  65           "Force number of JVMCI compiler threads to use")                  \
  66           range(1, max_jint)                                                \
  67                                                                             \
  68   experimental(intx, JVMCIHostThreads, 1,                                   \
  69           "Force number of compiler threads for JVMCI host compiler")       \
  70           range(1, max_jint)                                                \
  71                                                                             \
  72   NOT_COMPILER2(product(intx, MaxVectorSize, 64,                            \
  73           "Max vector size in bytes, "                                      \
  74           "actual size could be less depending on elements type"))          \
  75                                                                             \
  76   NOT_COMPILER2(product(bool, ReduceInitialCardMarks, true,                 \
  77           "Defer write barriers of young objects"))                         \
  78                                                                             \
  79   experimental(intx, JVMCITraceLevel, 0,                                    \
  80           "Trace level for JVMCI: "                                         \


src/hotspot/share/jvmci/jvmci_globals.hpp
Index Unified diffs Context diffs Sdiffs Frames Patch New Old Previous File Next File