1 /*
   2  * Copyright 1997-2009 Sun Microsystems, Inc.  All Rights Reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  20  * CA 95054 USA or visit www.sun.com if you need additional information or
  21  * have any questions.
  22  *
  23  */
  24 
  25 #if !defined(COMPILER1) && !defined(COMPILER2)
  26 define_pd_global(bool, BackgroundCompilation,        false);
  27 define_pd_global(bool, UseTLAB,                      false);
  28 define_pd_global(bool, CICompileOSR,                 false);
  29 define_pd_global(bool, UseTypeProfile,               false);
  30 define_pd_global(bool, UseOnStackReplacement,        false);
  31 define_pd_global(bool, InlineIntrinsics,             false);
  32 define_pd_global(bool, PreferInterpreterNativeStubs, true);
  33 define_pd_global(bool, ProfileInterpreter,           false);
  34 define_pd_global(bool, ProfileTraps,                 false);
  35 define_pd_global(bool, TieredCompilation,            false);
  36 
  37 define_pd_global(intx, CompileThreshold,             0);
  38 define_pd_global(intx, Tier2CompileThreshold,        0);
  39 define_pd_global(intx, Tier3CompileThreshold,        0);
  40 define_pd_global(intx, Tier4CompileThreshold,        0);
  41 
  42 define_pd_global(intx, BackEdgeThreshold,            0);
  43 define_pd_global(intx, Tier2BackEdgeThreshold,       0);
  44 define_pd_global(intx, Tier3BackEdgeThreshold,       0);
  45 define_pd_global(intx, Tier4BackEdgeThreshold,       0);
  46 
  47 define_pd_global(intx, OnStackReplacePercentage,     0);
  48 define_pd_global(bool, ResizeTLAB,                   false);
  49 define_pd_global(intx, FreqInlineSize,               0);
  50 define_pd_global(intx, InlineSmallCode,              0);
  51 define_pd_global(intx, NewSizeThreadIncrease,        4*K);
  52 define_pd_global(intx, InlineClassNatives,           true);
  53 define_pd_global(intx, InlineUnsafeOps,              true);
  54 define_pd_global(intx, InitialCodeCacheSize,         160*K);
  55 define_pd_global(intx, ReservedCodeCacheSize,        32*M);
  56 define_pd_global(intx, CodeCacheExpansionSize,       32*K);
  57 define_pd_global(intx, CodeCacheMinBlockLength,      1);
  58 define_pd_global(uintx,PermSize,    ScaleForWordSize(4*M));
  59 define_pd_global(uintx,MaxPermSize, ScaleForWordSize(64*M));
  60 define_pd_global(bool, NeverActAsServerClassMachine, true);
  61 define_pd_global(uint64_t,MaxRAM,                    1ULL*G);
  62 #define CI_COMPILER_COUNT 0
  63 #else
  64 
  65 #ifdef COMPILER2
  66 #define CI_COMPILER_COUNT 2
  67 #else
  68 #define CI_COMPILER_COUNT 1
  69 #endif // COMPILER2
  70 
  71 #endif // no compilers
  72 
  73 
  74 // string type aliases used only in this file
  75 typedef const char* ccstr;
  76 typedef const char* ccstrlist;   // represents string arguments which accumulate
  77 
  78 enum FlagValueOrigin {
  79   DEFAULT          = 0,
  80   COMMAND_LINE     = 1,
  81   ENVIRON_VAR      = 2,
  82   CONFIG_FILE      = 3,
  83   MANAGEMENT       = 4,
  84   ERGONOMIC        = 5,
  85   ATTACH_ON_DEMAND = 6,
  86   INTERNAL         = 99
  87 };
  88 
  89 struct Flag {
  90   const char *type;
  91   const char *name;
  92   void*       addr;
  93   const char *kind;
  94   FlagValueOrigin origin;
  95 
  96   // points to all Flags static array
  97   static Flag *flags;
  98 
  99   // number of flags
 100   static size_t numFlags;
 101 
 102   static Flag* find_flag(char* name, size_t length);
 103 
 104   bool is_bool() const        { return strcmp(type, "bool") == 0; }
 105   bool get_bool() const       { return *((bool*) addr); }
 106   void set_bool(bool value)   { *((bool*) addr) = value; }
 107 
 108   bool is_intx()  const       { return strcmp(type, "intx")  == 0; }
 109   intx get_intx() const       { return *((intx*) addr); }
 110   void set_intx(intx value)   { *((intx*) addr) = value; }
 111 
 112   bool is_uintx() const       { return strcmp(type, "uintx") == 0; }
 113   uintx get_uintx() const     { return *((uintx*) addr); }
 114   void set_uintx(uintx value) { *((uintx*) addr) = value; }
 115 
 116   bool is_uint64_t() const          { return strcmp(type, "uint64_t") == 0; }
 117   uint64_t get_uint64_t() const     { return *((uint64_t*) addr); }
 118   void set_uint64_t(uint64_t value) { *((uint64_t*) addr) = value; }
 119 
 120   bool is_double() const        { return strcmp(type, "double") == 0; }
 121   double get_double() const     { return *((double*) addr); }
 122   void set_double(double value) { *((double*) addr) = value; }
 123 
 124   bool is_ccstr() const          { return strcmp(type, "ccstr") == 0 || strcmp(type, "ccstrlist") == 0; }
 125   bool ccstr_accumulates() const { return strcmp(type, "ccstrlist") == 0; }
 126   ccstr get_ccstr() const     { return *((ccstr*) addr); }
 127   void set_ccstr(ccstr value) { *((ccstr*) addr) = value; }
 128 
 129   bool is_unlocker() const;
 130   bool is_unlocked() const;
 131   bool is_writeable() const;
 132   bool is_external() const;
 133 
 134   void print_on(outputStream* st);
 135   void print_as_flag(outputStream* st);
 136 };
 137 
 138 // debug flags control various aspects of the VM and are global accessible
 139 
 140 // use FlagSetting to temporarily change some debug flag
 141 // e.g. FlagSetting fs(DebugThisAndThat, true);
 142 // restored to previous value upon leaving scope
 143 class FlagSetting {
 144   bool val;
 145   bool* flag;
 146  public:
 147   FlagSetting(bool& fl, bool newValue) { flag = &fl; val = fl; fl = newValue; }
 148   ~FlagSetting()                       { *flag = val; }
 149 };
 150 
 151 
 152 class CounterSetting {
 153   intx* counter;
 154  public:
 155   CounterSetting(intx* cnt) { counter = cnt; (*counter)++; }
 156   ~CounterSetting()         { (*counter)--; }
 157 };
 158 
 159 
 160 class IntFlagSetting {
 161   intx val;
 162   intx* flag;
 163  public:
 164   IntFlagSetting(intx& fl, intx newValue) { flag = &fl; val = fl; fl = newValue; }
 165   ~IntFlagSetting()                       { *flag = val; }
 166 };
 167 
 168 
 169 class DoubleFlagSetting {
 170   double val;
 171   double* flag;
 172  public:
 173   DoubleFlagSetting(double& fl, double newValue) { flag = &fl; val = fl; fl = newValue; }
 174   ~DoubleFlagSetting()                           { *flag = val; }
 175 };
 176 
 177 
 178 class CommandLineFlags {
 179  public:
 180   static bool boolAt(char* name, size_t len, bool* value);
 181   static bool boolAt(char* name, bool* value)      { return boolAt(name, strlen(name), value); }
 182   static bool boolAtPut(char* name, size_t len, bool* value, FlagValueOrigin origin);
 183   static bool boolAtPut(char* name, bool* value, FlagValueOrigin origin)   { return boolAtPut(name, strlen(name), value, origin); }
 184 
 185   static bool intxAt(char* name, size_t len, intx* value);
 186   static bool intxAt(char* name, intx* value)      { return intxAt(name, strlen(name), value); }
 187   static bool intxAtPut(char* name, size_t len, intx* value, FlagValueOrigin origin);
 188   static bool intxAtPut(char* name, intx* value, FlagValueOrigin origin)   { return intxAtPut(name, strlen(name), value, origin); }
 189 
 190   static bool uintxAt(char* name, size_t len, uintx* value);
 191   static bool uintxAt(char* name, uintx* value)    { return uintxAt(name, strlen(name), value); }
 192   static bool uintxAtPut(char* name, size_t len, uintx* value, FlagValueOrigin origin);
 193   static bool uintxAtPut(char* name, uintx* value, FlagValueOrigin origin) { return uintxAtPut(name, strlen(name), value, origin); }
 194 
 195   static bool uint64_tAt(char* name, size_t len, uint64_t* value);
 196   static bool uint64_tAt(char* name, uint64_t* value) { return uint64_tAt(name, strlen(name), value); }
 197   static bool uint64_tAtPut(char* name, size_t len, uint64_t* value, FlagValueOrigin origin);
 198   static bool uint64_tAtPut(char* name, uint64_t* value, FlagValueOrigin origin) { return uint64_tAtPut(name, strlen(name), value, origin); }
 199 
 200   static bool doubleAt(char* name, size_t len, double* value);
 201   static bool doubleAt(char* name, double* value)    { return doubleAt(name, strlen(name), value); }
 202   static bool doubleAtPut(char* name, size_t len, double* value, FlagValueOrigin origin);
 203   static bool doubleAtPut(char* name, double* value, FlagValueOrigin origin) { return doubleAtPut(name, strlen(name), value, origin); }
 204 
 205   static bool ccstrAt(char* name, size_t len, ccstr* value);
 206   static bool ccstrAt(char* name, ccstr* value)    { return ccstrAt(name, strlen(name), value); }
 207   static bool ccstrAtPut(char* name, size_t len, ccstr* value, FlagValueOrigin origin);
 208   static bool ccstrAtPut(char* name, ccstr* value, FlagValueOrigin origin) { return ccstrAtPut(name, strlen(name), value, origin); }
 209 
 210   // Returns false if name is not a command line flag.
 211   static bool wasSetOnCmdline(const char* name, bool* value);
 212   static void printSetFlags();
 213 
 214   static void printFlags() PRODUCT_RETURN;
 215 
 216   static void verify() PRODUCT_RETURN;
 217 };
 218 
 219 // use this for flags that are true by default in the debug version but
 220 // false in the optimized version, and vice versa
 221 #ifdef ASSERT
 222 #define trueInDebug  true
 223 #define falseInDebug false
 224 #else
 225 #define trueInDebug  false
 226 #define falseInDebug true
 227 #endif
 228 
 229 // use this for flags that are true per default in the product build
 230 // but false in development builds, and vice versa
 231 #ifdef PRODUCT
 232 #define trueInProduct  true
 233 #define falseInProduct false
 234 #else
 235 #define trueInProduct  false
 236 #define falseInProduct true
 237 #endif
 238 
 239 // use this for flags that are true per default in the tiered build
 240 // but false in non-tiered builds, and vice versa
 241 #ifdef TIERED
 242 #define  trueInTiered true
 243 #define falseInTiered false
 244 #else
 245 #define  trueInTiered false
 246 #define falseInTiered true
 247 #endif
 248 
 249 // develop flags are settable / visible only during development and are constant in the PRODUCT version
 250 // product flags are always settable / visible
 251 // notproduct flags are settable / visible only during development and are not declared in the PRODUCT version
 252 
 253 // A flag must be declared with one of the following types:
 254 // bool, intx, uintx, ccstr.
 255 // The type "ccstr" is an alias for "const char*" and is used
 256 // only in this file, because the macrology requires single-token type names.
 257 
 258 // Note: Diagnostic options not meant for VM tuning or for product modes.
 259 // They are to be used for VM quality assurance or field diagnosis
 260 // of VM bugs.  They are hidden so that users will not be encouraged to
 261 // try them as if they were VM ordinary execution options.  However, they
 262 // are available in the product version of the VM.  Under instruction
 263 // from support engineers, VM customers can turn them on to collect
 264 // diagnostic information about VM problems.  To use a VM diagnostic
 265 // option, you must first specify +UnlockDiagnosticVMOptions.
 266 // (This master switch also affects the behavior of -Xprintflags.)
 267 //
 268 // experimental flags are in support of features that are not
 269 //    part of the officially supported product, but are available
 270 //    for experimenting with. They could, for example, be performance
 271 //    features that may not have undergone full or rigorous QA, but which may
 272 //    help performance in some cases and released for experimentation
 273 //    by the community of users and developers. This flag also allows one to
 274 //    be able to build a fully supported product that nonetheless also
 275 //    ships with some unsupported, lightly tested, experimental features.
 276 //    Like the UnlockDiagnosticVMOptions flag above, there is a corresponding
 277 //    UnlockExperimentalVMOptions flag, which allows the control and
 278 //    modification of the experimental flags.
 279 //
 280 // manageable flags are writeable external product flags.
 281 //    They are dynamically writeable through the JDK management interface
 282 //    (com.sun.management.HotSpotDiagnosticMXBean API) and also through JConsole.
 283 //    These flags are external exported interface (see CCC).  The list of
 284 //    manageable flags can be queried programmatically through the management
 285 //    interface.
 286 //
 287 //    A flag can be made as "manageable" only if
 288 //    - the flag is defined in a CCC as an external exported interface.
 289 //    - the VM implementation supports dynamic setting of the flag.
 290 //      This implies that the VM must *always* query the flag variable
 291 //      and not reuse state related to the flag state at any given time.
 292 //    - you want the flag to be queried programmatically by the customers.
 293 //
 294 // product_rw flags are writeable internal product flags.
 295 //    They are like "manageable" flags but for internal/private use.
 296 //    The list of product_rw flags are internal/private flags which
 297 //    may be changed/removed in a future release.  It can be set
 298 //    through the management interface to get/set value
 299 //    when the name of flag is supplied.
 300 //
 301 //    A flag can be made as "product_rw" only if
 302 //    - the VM implementation supports dynamic setting of the flag.
 303 //      This implies that the VM must *always* query the flag variable
 304 //      and not reuse state related to the flag state at any given time.
 305 //
 306 // Note that when there is a need to support develop flags to be writeable,
 307 // it can be done in the same way as product_rw.
 308 
 309 #define RUNTIME_FLAGS(develop, develop_pd, product, product_pd, diagnostic, experimental, notproduct, manageable, product_rw, lp64_product) \
 310                                                                             \
 311   lp64_product(bool, UseCompressedOops, false,                              \
 312             "Use 32-bit object references in 64-bit VM. "                   \
 313             "lp64_product means flag is always constant in 32 bit VM")      \
 314                                                                             \
 315   notproduct(bool, CheckCompressedOops, true,                               \
 316             "generate checks in encoding/decoding code in debug VM")        \
 317                                                                             \
 318   product_pd(uintx, HeapBaseMinAddress,                                     \
 319             "OS specific low limit for heap base address")                  \
 320                                                                             \
 321   diagnostic(bool, PrintCompressedOopsMode, false,                          \
 322             "Print compressed oops base address and encoding mode")         \
 323                                                                             \
 324   /* UseMembar is theoretically a temp flag used for memory barrier         \
 325    * removal testing.  It was supposed to be removed before FCS but has     \
 326    * been re-added (see 6401008) */                                         \
 327   product(bool, UseMembar, false,                                           \
 328           "(Unstable) Issues membars on thread state transitions")          \
 329                                                                             \
 330   product(bool, PrintCommandLineFlags, false,                               \
 331           "Prints flags that appeared on the command line")                 \
 332                                                                             \
 333   diagnostic(bool, UnlockDiagnosticVMOptions, trueInDebug,                  \
 334           "Enable normal processing of flags relating to field diagnostics")\
 335                                                                             \
 336   experimental(bool, UnlockExperimentalVMOptions, false,                    \
 337           "Enable normal processing of flags relating to experimental features")\
 338                                                                             \
 339   product(bool, JavaMonitorsInStackTrace, true,                             \
 340           "Print info. about Java monitor locks when the stacks are dumped")\
 341                                                                             \
 342   product_pd(bool, UseLargePages,                                           \
 343           "Use large page memory")                                          \
 344                                                                             \
 345   product_pd(bool, UseLargePagesIndividualAllocation,                       \
 346           "Allocate large pages individually for better affinity")          \
 347                                                                             \
 348   develop(bool, LargePagesIndividualAllocationInjectError, false,           \
 349           "Fail large pages individual allocation")                         \
 350                                                                             \
 351   develop(bool, TracePageSizes, false,                                      \
 352           "Trace page size selection and usage.")                           \
 353                                                                             \
 354   product(bool, UseNUMA, false,                                             \
 355           "Use NUMA if available")                                          \
 356                                                                             \
 357   product(bool, ForceNUMA, false,                                           \
 358           "Force NUMA optimizations on single-node/UMA systems")            \
 359                                                                             \
 360   product(intx, NUMAChunkResizeWeight, 20,                                  \
 361           "Percentage (0-100) used to weight the current sample when "      \
 362           "computing exponentially decaying average for "                   \
 363           "AdaptiveNUMAChunkSizing")                                        \
 364                                                                             \
 365   product(intx, NUMASpaceResizeRate, 1*G,                                   \
 366           "Do not reallocate more that this amount per collection")         \
 367                                                                             \
 368   product(bool, UseAdaptiveNUMAChunkSizing, true,                           \
 369           "Enable adaptive chunk sizing for NUMA")                          \
 370                                                                             \
 371   product(bool, NUMAStats, false,                                           \
 372           "Print NUMA stats in detailed heap information")                  \
 373                                                                             \
 374   product(intx, NUMAPageScanRate, 256,                                      \
 375           "Maximum number of pages to include in the page scan procedure")  \
 376                                                                             \
 377   product_pd(bool, NeedsDeoptSuspend,                                       \
 378           "True for register window machines (sparc/ia64)")                 \
 379                                                                             \
 380   product(intx, UseSSE, 99,                                                 \
 381           "Highest supported SSE instructions set on x86/x64")              \
 382                                                                             \
 383   product(uintx, LargePageSizeInBytes, 0,                                   \
 384           "Large page size (0 to let VM choose the page size")              \
 385                                                                             \
 386   product(uintx, LargePageHeapSizeThreshold, 128*M,                         \
 387           "Use large pages if max heap is at least this big")               \
 388                                                                             \
 389   product(bool, ForceTimeHighResolution, false,                             \
 390           "Using high time resolution(For Win32 only)")                     \
 391                                                                             \
 392   develop(bool, TraceItables, false,                                        \
 393           "Trace initialization and use of itables")                        \
 394                                                                             \
 395   develop(bool, TracePcPatching, false,                                     \
 396           "Trace usage of frame::patch_pc")                                 \
 397                                                                             \
 398   develop(bool, TraceJumps, false,                                          \
 399           "Trace assembly jumps in thread ring buffer")                     \
 400                                                                             \
 401   develop(bool, TraceRelocator, false,                                      \
 402           "Trace the bytecode relocator")                                   \
 403                                                                             \
 404   develop(bool, TraceLongCompiles, false,                                   \
 405           "Print out every time compilation is longer than "                \
 406           "a given threashold")                                             \
 407                                                                             \
 408   develop(bool, SafepointALot, false,                                       \
 409           "Generates a lot of safepoints. Works with "                      \
 410           "GuaranteedSafepointInterval")                                    \
 411                                                                             \
 412   product_pd(bool, BackgroundCompilation,                                   \
 413           "A thread requesting compilation is not blocked during "          \
 414           "compilation")                                                    \
 415                                                                             \
 416   product(bool, PrintVMQWaitTime, false,                                    \
 417           "Prints out the waiting time in VM operation queue")              \
 418                                                                             \
 419   develop(bool, BailoutToInterpreterForThrows, false,                       \
 420           "Compiled methods which throws/catches exceptions will be "       \
 421           "deopt and intp.")                                                \
 422                                                                             \
 423   product(bool, CheckExceptionEventsNeeded, true,                           \
 424           "Check whether exception events are really enabled"               \
 425           "so we can avoid unnecssary deoptimization")                      \
 426                                                                             \
 427   develop(bool, NoYieldsInMicrolock, false,                                 \
 428           "Disable yields in microlock")                                    \
 429                                                                             \
 430   develop(bool, TraceOopMapGeneration, false,                               \
 431           "Shows oopmap generation")                                        \
 432                                                                             \
 433   product(bool, MethodFlushing, true,                                       \
 434           "Reclamation of zombie and not-entrant methods")                  \
 435                                                                             \
 436   develop(bool, VerifyStack, false,                                         \
 437           "Verify stack of each thread when it is entering a runtime call") \
 438                                                                             \
 439   develop(bool, ForceUnreachable, false,                                    \
 440           "(amd64) Make all non code cache addresses to be unreachable with rip-rel forcing use of 64bit literal fixups") \
 441                                                                             \
 442   notproduct(bool, StressDerivedPointers, false,                            \
 443           "Force scavenge when a derived pointers is detected on stack "    \
 444           "after rtm call")                                                 \
 445                                                                             \
 446   develop(bool, TraceDerivedPointers, false,                                \
 447           "Trace traversal of derived pointers on stack")                   \
 448                                                                             \
 449   notproduct(bool, TraceCodeBlobStacks, false,                              \
 450           "Trace stack-walk of codeblobs")                                  \
 451                                                                             \
 452   product(bool, PrintJNIResolving, false,                                   \
 453           "Used to implement -v:jni")                                       \
 454                                                                             \
 455   notproduct(bool, PrintRewrites, false,                                    \
 456           "Print methods that are being rewritten")                         \
 457                                                                             \
 458   product(bool, UseInlineCaches, true,                                      \
 459           "Use Inline Caches for virtual calls ")                           \
 460                                                                             \
 461   develop(bool, InlineArrayCopy, true,                                      \
 462           "inline arraycopy native that is known to be part of "            \
 463           "base library DLL")                                               \
 464                                                                             \
 465   develop(bool, InlineObjectHash, true,                                     \
 466           "inline Object::hashCode() native that is known to be part "      \
 467           "of base library DLL")                                            \
 468                                                                             \
 469   develop(bool, InlineObjectCopy, true,                                     \
 470           "inline Object.clone and Arrays.copyOf[Range] intrinsics")        \
 471                                                                             \
 472   develop(bool, InlineNatives, true,                                        \
 473           "inline natives that are known to be part of base library DLL")   \
 474                                                                             \
 475   develop(bool, InlineMathNatives, true,                                    \
 476           "inline SinD, CosD, etc.")                                        \
 477                                                                             \
 478   develop(bool, InlineClassNatives, true,                                   \
 479           "inline Class.isInstance, etc")                                   \
 480                                                                             \
 481   develop(bool, InlineAtomicLong, true,                                     \
 482           "inline sun.misc.AtomicLong")                                     \
 483                                                                             \
 484   develop(bool, InlineThreadNatives, true,                                  \
 485           "inline Thread.currentThread, etc")                               \
 486                                                                             \
 487   develop(bool, InlineReflectionGetCallerClass, true,                       \
 488           "inline sun.reflect.Reflection.getCallerClass(), known to be part "\
 489           "of base library DLL")                                            \
 490                                                                             \
 491   develop(bool, InlineUnsafeOps, true,                                      \
 492           "inline memory ops (native methods) from sun.misc.Unsafe")        \
 493                                                                             \
 494   develop(bool, ConvertCmpD2CmpF, true,                                     \
 495           "Convert cmpD to cmpF when one input is constant in float range") \
 496                                                                             \
 497   develop(bool, ConvertFloat2IntClipping, true,                             \
 498           "Convert float2int clipping idiom to integer clipping")           \
 499                                                                             \
 500   develop(bool, SpecialStringCompareTo, true,                               \
 501           "special version of string compareTo")                            \
 502                                                                             \
 503   develop(bool, SpecialStringIndexOf, true,                                 \
 504           "special version of string indexOf")                              \
 505                                                                             \
 506   develop(bool, SpecialStringEquals, true,                                  \
 507           "special version of string equals")                               \
 508                                                                             \
 509   develop(bool, SpecialArraysEquals, true,                                  \
 510           "special version of Arrays.equals(char[],char[])")                \
 511                                                                             \
 512   product(bool, UseSSE42Intrinsics, false,                                  \
 513           "SSE4.2 versions of intrinsics")                                  \
 514                                                                             \
 515   develop(bool, TraceCallFixup, false,                                      \
 516           "traces all call fixups")                                         \
 517                                                                             \
 518   develop(bool, DeoptimizeALot, false,                                      \
 519           "deoptimize at every exit from the runtime system")               \
 520                                                                             \
 521   notproduct(ccstrlist, DeoptimizeOnlyAt, "",                               \
 522           "a comma separated list of bcis to deoptimize at")                \
 523                                                                             \
 524   product(bool, DeoptimizeRandom, false,                                    \
 525           "deoptimize random frames on random exit from the runtime system")\
 526                                                                             \
 527   notproduct(bool, ZombieALot, false,                                       \
 528           "creates zombies (non-entrant) at exit from the runt. system")    \
 529                                                                             \
 530   notproduct(bool, WalkStackALot, false,                                    \
 531           "trace stack (no print) at every exit from the runtime system")   \
 532                                                                             \
 533   develop(bool, Debugging, false,                                           \
 534           "set when executing debug methods in debug.ccp "                  \
 535           "(to prevent triggering assertions)")                             \
 536                                                                             \
 537   notproduct(bool, StrictSafepointChecks, trueInDebug,                      \
 538           "Enable strict checks that safepoints cannot happen for threads " \
 539           "that used No_Safepoint_Verifier")                                \
 540                                                                             \
 541   notproduct(bool, VerifyLastFrame, false,                                  \
 542           "Verify oops on last frame on entry to VM")                       \
 543                                                                             \
 544   develop(bool, TraceHandleAllocation, false,                               \
 545           "Prints out warnings when suspicious many handles are allocated") \
 546                                                                             \
 547   product(bool, UseCompilerSafepoints, true,                                \
 548           "Stop at safepoints in compiled code")                            \
 549                                                                             \
 550   product(bool, UseSplitVerifier, true,                                     \
 551           "use split verifier with StackMapTable attributes")               \
 552                                                                             \
 553   product(bool, FailOverToOldVerifier, true,                                \
 554           "fail over to old verifier when split verifier fails")            \
 555                                                                             \
 556   develop(bool, ShowSafepointMsgs, false,                                   \
 557           "Show msg. about safepoint synch.")                               \
 558                                                                             \
 559   product(bool, SafepointTimeout, false,                                    \
 560           "Time out and warn or fail after SafepointTimeoutDelay "          \
 561           "milliseconds if failed to reach safepoint")                      \
 562                                                                             \
 563   develop(bool, DieOnSafepointTimeout, false,                               \
 564           "Die upon failure to reach safepoint (see SafepointTimeout)")     \
 565                                                                             \
 566   /* 50 retries * (5 * current_retry_count) millis = ~6.375 seconds */      \
 567   /* typically, at most a few retries are needed */                         \
 568   product(intx, SuspendRetryCount, 50,                                      \
 569           "Maximum retry count for an external suspend request")            \
 570                                                                             \
 571   product(intx, SuspendRetryDelay, 5,                                       \
 572           "Milliseconds to delay per retry (* current_retry_count)")        \
 573                                                                             \
 574   product(bool, AssertOnSuspendWaitFailure, false,                          \
 575           "Assert/Guarantee on external suspend wait failure")              \
 576                                                                             \
 577   product(bool, TraceSuspendWaitFailures, false,                            \
 578           "Trace external suspend wait failures")                           \
 579                                                                             \
 580   product(bool, MaxFDLimit, true,                                           \
 581           "Bump the number of file descriptors to max in solaris.")         \
 582                                                                             \
 583   notproduct(bool, LogEvents, trueInDebug,                                  \
 584           "Enable Event log")                                               \
 585                                                                             \
 586   product(bool, BytecodeVerificationRemote, true,                           \
 587           "Enables the Java bytecode verifier for remote classes")          \
 588                                                                             \
 589   product(bool, BytecodeVerificationLocal, false,                           \
 590           "Enables the Java bytecode verifier for local classes")           \
 591                                                                             \
 592   develop(bool, ForceFloatExceptions, trueInDebug,                          \
 593           "Force exceptions on FP stack under/overflow")                    \
 594                                                                             \
 595   develop(bool, SoftMatchFailure, trueInProduct,                            \
 596           "If the DFA fails to match a node, print a message and bail out") \
 597                                                                             \
 598   develop(bool, VerifyStackAtCalls, false,                                  \
 599           "Verify that the stack pointer is unchanged after calls")         \
 600                                                                             \
 601   develop(bool, TraceJavaAssertions, false,                                 \
 602           "Trace java language assertions")                                 \
 603                                                                             \
 604   notproduct(bool, CheckAssertionStatusDirectives, false,                   \
 605           "temporary - see javaClasses.cpp")                                \
 606                                                                             \
 607   notproduct(bool, PrintMallocFree, false,                                  \
 608           "Trace calls to C heap malloc/free allocation")                   \
 609                                                                             \
 610   notproduct(bool, PrintOopAddress, false,                                  \
 611           "Always print the location of the oop")                           \
 612                                                                             \
 613   notproduct(bool, VerifyCodeCacheOften, false,                             \
 614           "Verify compiled-code cache often")                               \
 615                                                                             \
 616   develop(bool, ZapDeadCompiledLocals, false,                               \
 617           "Zap dead locals in compiler frames")                             \
 618                                                                             \
 619   notproduct(bool, ZapDeadLocalsOld, false,                                 \
 620           "Zap dead locals (old version, zaps all frames when "             \
 621           "entering the VM")                                                \
 622                                                                             \
 623   notproduct(bool, CheckOopishValues, false,                                \
 624           "Warn if value contains oop ( requires ZapDeadLocals)")           \
 625                                                                             \
 626   develop(bool, UseMallocOnly, false,                                       \
 627           "use only malloc/free for allocation (no resource area/arena)")   \
 628                                                                             \
 629   develop(bool, PrintMalloc, false,                                         \
 630           "print all malloc/free calls")                                    \
 631                                                                             \
 632   develop(bool, ZapResourceArea, trueInDebug,                               \
 633           "Zap freed resource/arena space with 0xABABABAB")                 \
 634                                                                             \
 635   notproduct(bool, ZapVMHandleArea, trueInDebug,                            \
 636           "Zap freed VM handle space with 0xBCBCBCBC")                      \
 637                                                                             \
 638   develop(bool, ZapJNIHandleArea, trueInDebug,                              \
 639           "Zap freed JNI handle space with 0xFEFEFEFE")                     \
 640                                                                             \
 641   develop(bool, ZapUnusedHeapArea, trueInDebug,                             \
 642           "Zap unused heap space with 0xBAADBABE")                          \
 643                                                                             \
 644   develop(bool, TraceZapUnusedHeapArea, false,                              \
 645           "Trace zapping of unused heap space")                             \
 646                                                                             \
 647   develop(bool, CheckZapUnusedHeapArea, false,                              \
 648           "Check zapping of unused heap space")                             \
 649                                                                             \
 650   develop(bool, ZapFillerObjects, trueInDebug,                              \
 651           "Zap filler objects with 0xDEAFBABE")                             \
 652                                                                             \
 653   develop(bool, PrintVMMessages, true,                                      \
 654           "Print vm messages on console")                                   \
 655                                                                             \
 656   product(bool, PrintGCApplicationConcurrentTime, false,                    \
 657           "Print the time the application has been running")                \
 658                                                                             \
 659   product(bool, PrintGCApplicationStoppedTime, false,                       \
 660           "Print the time the application has been stopped")                \
 661                                                                             \
 662   develop(bool, Verbose, false,                                             \
 663           "Prints additional debugging information from other modes")       \
 664                                                                             \
 665   develop(bool, PrintMiscellaneous, false,                                  \
 666           "Prints uncategorized debugging information (requires +Verbose)") \
 667                                                                             \
 668   develop(bool, WizardMode, false,                                          \
 669           "Prints much more debugging information")                         \
 670                                                                             \
 671   product(bool, ShowMessageBoxOnError, false,                               \
 672           "Keep process alive on VM fatal error")                           \
 673                                                                             \
 674   product_pd(bool, UseOSErrorReporting,                                     \
 675           "Let VM fatal error propagate to the OS (ie. WER on Windows)")    \
 676                                                                             \
 677   product(bool, SuppressFatalErrorMessage, false,                           \
 678           "Do NO Fatal Error report [Avoid deadlock]")                      \
 679                                                                             \
 680   product(ccstrlist, OnError, "",                                           \
 681           "Run user-defined commands on fatal error; see VMError.cpp "      \
 682           "for examples")                                                   \
 683                                                                             \
 684   product(ccstrlist, OnOutOfMemoryError, "",                                \
 685           "Run user-defined commands on first java.lang.OutOfMemoryError")  \
 686                                                                             \
 687   manageable(bool, HeapDumpBeforeFullGC, false,                             \
 688           "Dump heap to file before any major stop-world GC")               \
 689                                                                             \
 690   manageable(bool, HeapDumpAfterFullGC, false,                              \
 691           "Dump heap to file after any major stop-world GC")                \
 692                                                                             \
 693   manageable(bool, HeapDumpOnOutOfMemoryError, false,                       \
 694           "Dump heap to file when java.lang.OutOfMemoryError is thrown")    \
 695                                                                             \
 696   manageable(ccstr, HeapDumpPath, NULL,                                     \
 697           "When HeapDumpOnOutOfMemoryError is on, the path (filename or"    \
 698           "directory) of the dump file (defaults to java_pid<pid>.hprof"    \
 699           "in the working directory)")                                      \
 700                                                                             \
 701   develop(uintx, SegmentedHeapDumpThreshold, 2*G,                           \
 702           "Generate a segmented heap dump (JAVA PROFILE 1.0.2 format) "     \
 703           "when the heap usage is larger than this")                        \
 704                                                                             \
 705   develop(uintx, HeapDumpSegmentSize, 1*G,                                  \
 706           "Approximate segment size when generating a segmented heap dump") \
 707                                                                             \
 708   develop(bool, BreakAtWarning, false,                                      \
 709           "Execute breakpoint upon encountering VM warning")                \
 710                                                                             \
 711   product_pd(bool, UseVectoredExceptions,                                   \
 712           "Temp Flag - Use Vectored Exceptions rather than SEH (Windows Only)") \
 713                                                                             \
 714   develop(bool, TraceVMOperation, false,                                    \
 715           "Trace vm operations")                                            \
 716                                                                             \
 717   develop(bool, UseFakeTimers, false,                                       \
 718           "Tells whether the VM should use system time or a fake timer")    \
 719                                                                             \
 720   diagnostic(bool, LogCompilation, false,                                   \
 721           "Log compilation activity in detail to hotspot.log or LogFile")   \
 722                                                                             \
 723   product(bool, PrintCompilation, false,                                    \
 724           "Print compilations")                                             \
 725                                                                             \
 726   diagnostic(bool, TraceNMethodInstalls, false,                             \
 727              "Trace nmethod intallation")                                   \
 728                                                                             \
 729   diagnostic(intx, ScavengeRootsInCode, 0,                                  \
 730              "0: do not allow scavengable oops in the code cache; "         \
 731              "1: allow scavenging from the code cache; "                    \
 732              "2: emit as many constants as the compiler can see")           \
 733                                                                             \
 734   diagnostic(bool, TraceOSRBreakpoint, false,                               \
 735              "Trace OSR Breakpoint ")                                       \
 736                                                                             \
 737   diagnostic(bool, TraceCompileTriggered, false,                            \
 738              "Trace compile triggered")                                     \
 739                                                                             \
 740   diagnostic(bool, TraceTriggers, false,                                    \
 741              "Trace triggers")                                              \
 742                                                                             \
 743   product(bool, AlwaysRestoreFPU, false,                                    \
 744           "Restore the FPU control word after every JNI call (expensive)")  \
 745                                                                             \
 746   notproduct(bool, PrintCompilation2, false,                                \
 747           "Print additional statistics per compilation")                    \
 748                                                                             \
 749   diagnostic(bool, PrintAdapterHandlers, false,                             \
 750           "Print code generated for i2c/c2i adapters")                      \
 751                                                                             \
 752   diagnostic(bool, PrintAssembly, false,                                    \
 753           "Print assembly code (using external disassembler.so)")           \
 754                                                                             \
 755   diagnostic(ccstr, PrintAssemblyOptions, NULL,                             \
 756           "Options string passed to disassembler.so")                       \
 757                                                                             \
 758   diagnostic(bool, PrintNMethods, false,                                    \
 759           "Print assembly code for nmethods when generated")                \
 760                                                                             \
 761   diagnostic(bool, PrintNativeNMethods, false,                              \
 762           "Print assembly code for native nmethods when generated")         \
 763                                                                             \
 764   develop(bool, PrintDebugInfo, false,                                      \
 765           "Print debug information for all nmethods when generated")        \
 766                                                                             \
 767   develop(bool, PrintRelocations, false,                                    \
 768           "Print relocation information for all nmethods when generated")   \
 769                                                                             \
 770   develop(bool, PrintDependencies, false,                                   \
 771           "Print dependency information for all nmethods when generated")   \
 772                                                                             \
 773   develop(bool, PrintExceptionHandlers, false,                              \
 774           "Print exception handler tables for all nmethods when generated") \
 775                                                                             \
 776   develop(bool, InterceptOSException, false,                                \
 777           "Starts debugger when an implicit OS (e.g., NULL) "               \
 778           "exception happens")                                              \
 779                                                                             \
 780   notproduct(bool, PrintCodeCache, false,                                   \
 781           "Print the compiled_code cache when exiting")                     \
 782                                                                             \
 783   develop(bool, PrintCodeCache2, false,                                     \
 784           "Print detailed info on the compiled_code cache when exiting")    \
 785                                                                             \
 786   diagnostic(bool, PrintStubCode, false,                                    \
 787           "Print generated stub code")                                      \
 788                                                                             \
 789   product(bool, StackTraceInThrowable, true,                                \
 790           "Collect backtrace in throwable when exception happens")          \
 791                                                                             \
 792   product(bool, OmitStackTraceInFastThrow, true,                            \
 793           "Omit backtraces for some 'hot' exceptions in optimized code")    \
 794                                                                             \
 795   product(bool, ProfilerPrintByteCodeStatistics, false,                     \
 796           "Prints byte code statictics when dumping profiler output")       \
 797                                                                             \
 798   product(bool, ProfilerRecordPC, false,                                    \
 799           "Collects tick for each 16 byte interval of compiled code")       \
 800                                                                             \
 801   product(bool, ProfileVM, false,                                           \
 802           "Profiles ticks that fall within VM (either in the VM Thread "    \
 803           "or VM code called through stubs)")                               \
 804                                                                             \
 805   product(bool, ProfileIntervals, false,                                    \
 806           "Prints profiles for each interval (see ProfileIntervalsTicks)")  \
 807                                                                             \
 808   notproduct(bool, ProfilerCheckIntervals, false,                           \
 809           "Collect and print info on spacing of profiler ticks")            \
 810                                                                             \
 811   develop(bool, PrintJVMWarnings, false,                                    \
 812           "Prints warnings for unimplemented JVM functions")                \
 813                                                                             \
 814   notproduct(uintx, WarnOnStalledSpinLock, 0,                               \
 815           "Prints warnings for stalled SpinLocks")                          \
 816                                                                             \
 817   develop(bool, InitializeJavaLangSystem, true,                             \
 818           "Initialize java.lang.System - turn off for individual "          \
 819           "method debugging")                                               \
 820                                                                             \
 821   develop(bool, InitializeJavaLangString, true,                             \
 822           "Initialize java.lang.String - turn off for individual "          \
 823           "method debugging")                                               \
 824                                                                             \
 825   develop(bool, InitializeJavaLangExceptionsErrors, true,                   \
 826           "Initialize various error and exception classes - turn off for "  \
 827           "individual method debugging")                                    \
 828                                                                             \
 829   product(bool, RegisterFinalizersAtInit, true,                             \
 830           "Register finalizable objects at end of Object.<init> or "        \
 831           "after allocation")                                               \
 832                                                                             \
 833   develop(bool, RegisterReferences, true,                                   \
 834           "Tells whether the VM should register soft/weak/final/phantom "   \
 835           "references")                                                     \
 836                                                                             \
 837   develop(bool, IgnoreRewrites, false,                                      \
 838           "Supress rewrites of bytecodes in the oopmap generator. "         \
 839           "This is unsafe!")                                                \
 840                                                                             \
 841   develop(bool, PrintCodeCacheExtension, false,                             \
 842           "Print extension of code cache")                                  \
 843                                                                             \
 844   develop(bool, UsePrivilegedStack, true,                                   \
 845           "Enable the security JVM functions")                              \
 846                                                                             \
 847   develop(bool, IEEEPrecision, true,                                        \
 848           "Enables IEEE precision (for INTEL only)")                        \
 849                                                                             \
 850   develop(bool, ProtectionDomainVerification, true,                         \
 851           "Verifies protection domain before resolution in system "         \
 852           "dictionary")                                                     \
 853                                                                             \
 854   product(bool, ClassUnloading, true,                                       \
 855           "Do unloading of classes")                                        \
 856                                                                             \
 857   diagnostic(bool, LinkWellKnownClasses, false,                             \
 858           "Resolve a well known class as soon as its name is seen")         \
 859                                                                             \
 860   develop(bool, DisableStartThread, false,                                  \
 861           "Disable starting of additional Java threads "                    \
 862           "(for debugging only)")                                           \
 863                                                                             \
 864   develop(bool, MemProfiling, false,                                        \
 865           "Write memory usage profiling to log file")                       \
 866                                                                             \
 867   notproduct(bool, PrintSystemDictionaryAtExit, false,                      \
 868           "Prints the system dictionary at exit")                           \
 869                                                                             \
 870   diagnostic(bool, UnsyncloadClass, false,                                  \
 871           "Unstable: VM calls loadClass unsynchronized. Custom "            \
 872           "class loader  must call VM synchronized for findClass "          \
 873           "and defineClass.")                                               \
 874                                                                             \
 875   product(bool, AlwaysLockClassLoader, false,                               \
 876           "Require the VM to acquire the class loader lock before calling " \
 877           "loadClass() even for class loaders registering "                 \
 878           "as parallel capable")                                            \
 879                                                                             \
 880   product(bool, AllowParallelDefineClass, false,                            \
 881           "Allow parallel defineClass requests for class loaders "          \
 882           "registering as parallel capable")                                \
 883                                                                             \
 884   product(bool, MustCallLoadClassInternal, false,                           \
 885           "Call loadClassInternal() rather than loadClass()")               \
 886                                                                             \
 887   product_pd(bool, DontYieldALot,                                           \
 888           "Throw away obvious excess yield calls (for SOLARIS only)")       \
 889                                                                             \
 890   product_pd(bool, ConvertSleepToYield,                                     \
 891           "Converts sleep(0) to thread yield "                              \
 892           "(may be off for SOLARIS to improve GUI)")                        \
 893                                                                             \
 894   product(bool, ConvertYieldToSleep, false,                                 \
 895           "Converts yield to a sleep of MinSleepInterval to simulate Win32 "\
 896           "behavior (SOLARIS only)")                                        \
 897                                                                             \
 898   product(bool, UseBoundThreads, true,                                      \
 899           "Bind user level threads to kernel threads (for SOLARIS only)")   \
 900                                                                             \
 901   develop(bool, UseDetachedThreads, true,                                   \
 902           "Use detached threads that are recycled upon termination "        \
 903           "(for SOLARIS only)")                                             \
 904                                                                             \
 905   product(bool, UseLWPSynchronization, true,                                \
 906           "Use LWP-based instead of libthread-based synchronization "       \
 907           "(SPARC only)")                                                   \
 908                                                                             \
 909   product(ccstr, SyncKnobs, NULL,                                           \
 910           "(Unstable) Various monitor synchronization tunables")            \
 911                                                                             \
 912   product(intx, EmitSync, 0,                                                \
 913           "(Unsafe,Unstable) "                                              \
 914           " Controls emission of inline sync fast-path code")               \
 915                                                                             \
 916   product(intx, AlwaysInflate, 0, "(Unstable) Force inflation")             \
 917                                                                             \
 918   product(intx, Atomics, 0,                                                 \
 919           "(Unsafe,Unstable) Diagnostic - Controls emission of atomics")    \
 920                                                                             \
 921   product(intx, FenceInstruction, 0,                                        \
 922           "(Unsafe,Unstable) Experimental")                                 \
 923                                                                             \
 924   product(intx, SyncFlags, 0, "(Unsafe,Unstable) Experimental Sync flags" ) \
 925                                                                             \
 926   product(intx, SyncVerbose, 0, "(Unstable)" )                              \
 927                                                                             \
 928   product(intx, ClearFPUAtPark, 0, "(Unsafe,Unstable)" )                    \
 929                                                                             \
 930   product(intx, hashCode, 0,                                                \
 931          "(Unstable) select hashCode generation algorithm" )                \
 932                                                                             \
 933   product(intx, WorkAroundNPTLTimedWaitHang, 1,                             \
 934          "(Unstable, Linux-specific)"                                       \
 935          " avoid NPTL-FUTEX hang pthread_cond_timedwait" )                  \
 936                                                                             \
 937   product(bool, FilterSpuriousWakeups, true,                                \
 938           "Prevent spurious or premature wakeups from object.wait "         \
 939           "(Solaris only)")                                                 \
 940                                                                             \
 941   product(intx, NativeMonitorTimeout, -1, "(Unstable)" )                    \
 942   product(intx, NativeMonitorFlags, 0, "(Unstable)" )                       \
 943   product(intx, NativeMonitorSpinLimit, 20, "(Unstable)" )                  \
 944                                                                             \
 945   develop(bool, UsePthreads, false,                                         \
 946           "Use pthread-based instead of libthread-based synchronization "   \
 947           "(SPARC only)")                                                   \
 948                                                                             \
 949   product(bool, AdjustConcurrency, false,                                   \
 950           "call thr_setconcurrency at thread create time to avoid "         \
 951           "LWP starvation on MP systems (For Solaris Only)")                \
 952                                                                             \
 953   develop(bool, UpdateHotSpotCompilerFileOnError, true,                     \
 954           "Should the system attempt to update the compiler file when "     \
 955           "an error occurs?")                                               \
 956                                                                             \
 957   product(bool, ReduceSignalUsage, false,                                   \
 958           "Reduce the use of OS signals in Java and/or the VM")             \
 959                                                                             \
 960   notproduct(bool, ValidateMarkSweep, false,                                \
 961           "Do extra validation during MarkSweep collection")                \
 962                                                                             \
 963   notproduct(bool, RecordMarkSweepCompaction, false,                        \
 964           "Enable GC-to-GC recording and querying of compaction during "    \
 965           "MarkSweep")                                                      \
 966                                                                             \
 967   develop_pd(bool, ShareVtableStubs,                                        \
 968           "Share vtable stubs (smaller code but worse branch prediction")   \
 969                                                                             \
 970   develop(bool, LoadLineNumberTables, true,                                 \
 971           "Tells whether the class file parser loads line number tables")   \
 972                                                                             \
 973   develop(bool, LoadLocalVariableTables, true,                              \
 974           "Tells whether the class file parser loads local variable tables")\
 975                                                                             \
 976   develop(bool, LoadLocalVariableTypeTables, true,                          \
 977           "Tells whether the class file parser loads local variable type tables")\
 978                                                                             \
 979   product(bool, AllowUserSignalHandlers, false,                             \
 980           "Do not complain if the application installs signal handlers "    \
 981           "(Solaris & Linux only)")                                         \
 982                                                                             \
 983   product(bool, UseSignalChaining, true,                                    \
 984           "Use signal-chaining to invoke signal handlers installed "        \
 985           "by the application (Solaris & Linux only)")                      \
 986                                                                             \
 987   product(bool, UseAltSigs, false,                                          \
 988           "Use alternate signals instead of SIGUSR1 & SIGUSR2 for VM "      \
 989           "internal signals (Solaris only)")                                \
 990                                                                             \
 991   product(bool, UseSpinning, false,                                         \
 992           "Use spinning in monitor inflation and before entry")             \
 993                                                                             \
 994   product(bool, PreSpinYield, false,                                        \
 995           "Yield before inner spinning loop")                               \
 996                                                                             \
 997   product(bool, PostSpinYield, true,                                        \
 998           "Yield after inner spinning loop")                                \
 999                                                                             \
1000   product(bool, AllowJNIEnvProxy, false,                                    \
1001           "Allow JNIEnv proxies for jdbx")                                  \
1002                                                                             \
1003   product(bool, JNIDetachReleasesMonitors, true,                            \
1004           "JNI DetachCurrentThread releases monitors owned by thread")      \
1005                                                                             \
1006   product(bool, RestoreMXCSROnJNICalls, false,                              \
1007           "Restore MXCSR when returning from JNI calls")                    \
1008                                                                             \
1009   product(bool, CheckJNICalls, false,                                       \
1010           "Verify all arguments to JNI calls")                              \
1011                                                                             \
1012   product(bool, UseFastJNIAccessors, true,                                  \
1013           "Use optimized versions of Get<Primitive>Field")                  \
1014                                                                             \
1015   product(bool, EagerXrunInit, false,                                       \
1016           "Eagerly initialize -Xrun libraries; allows startup profiling, "  \
1017           " but not all -Xrun libraries may support the state of the VM at this time") \
1018                                                                             \
1019   product(bool, PreserveAllAnnotations, false,                              \
1020           "Preserve RuntimeInvisibleAnnotations as well as RuntimeVisibleAnnotations") \
1021                                                                             \
1022   develop(uintx, PreallocatedOutOfMemoryErrorCount, 4,                      \
1023           "Number of OutOfMemoryErrors preallocated with backtrace")        \
1024                                                                             \
1025   product(bool, LazyBootClassLoader, true,                                  \
1026           "Enable/disable lazy opening of boot class path entries")         \
1027                                                                             \
1028   diagnostic(bool, UseIncDec, true,                                         \
1029           "Use INC, DEC instructions on x86")                               \
1030                                                                             \
1031   product(bool, UseNewLongLShift, false,                                    \
1032           "Use optimized bitwise shift left")                               \
1033                                                                             \
1034   product(bool, UseStoreImmI16, true,                                       \
1035           "Use store immediate 16-bits value instruction on x86")           \
1036                                                                             \
1037   product(bool, UseAddressNop, false,                                       \
1038           "Use '0F 1F [addr]' NOP instructions on x86 cpus")                \
1039                                                                             \
1040   product(bool, UseXmmLoadAndClearUpper, true,                              \
1041           "Load low part of XMM register and clear upper part")             \
1042                                                                             \
1043   product(bool, UseXmmRegToRegMoveAll, false,                               \
1044           "Copy all XMM register bits when moving value between registers") \
1045                                                                             \
1046   product(bool, UseXmmI2D, false,                                           \
1047           "Use SSE2 CVTDQ2PD instruction to convert Integer to Double")     \
1048                                                                             \
1049   product(bool, UseXmmI2F, false,                                           \
1050           "Use SSE2 CVTDQ2PS instruction to convert Integer to Float")      \
1051                                                                             \
1052   product(bool, UseXMMForArrayCopy, false,                                  \
1053           "Use SSE2 MOVQ instruction for Arraycopy")                        \
1054                                                                             \
1055   product(bool, UseUnalignedLoadStores, false,                              \
1056           "Use SSE2 MOVDQU instruction for Arraycopy")                      \
1057                                                                             \
1058   product(intx, FieldsAllocationStyle, 1,                                   \
1059           "0 - type based with oops first, 1 - with oops last")             \
1060                                                                             \
1061   product(bool, CompactFields, true,                                        \
1062           "Allocate nonstatic fields in gaps between previous fields")      \
1063                                                                             \
1064   notproduct(bool, PrintCompactFieldsSavings, false,                        \
1065           "Print how many words were saved with CompactFields")             \
1066                                                                             \
1067   product(bool, UseBiasedLocking, true,                                     \
1068           "Enable biased locking in JVM")                                   \
1069                                                                             \
1070   product(intx, BiasedLockingStartupDelay, 4000,                            \
1071           "Number of milliseconds to wait before enabling biased locking")  \
1072                                                                             \
1073   diagnostic(bool, PrintBiasedLockingStatistics, false,                     \
1074           "Print statistics of biased locking in JVM")                      \
1075                                                                             \
1076   product(intx, BiasedLockingBulkRebiasThreshold, 20,                       \
1077           "Threshold of number of revocations per type to try to "          \
1078           "rebias all objects in the heap of that type")                    \
1079                                                                             \
1080   product(intx, BiasedLockingBulkRevokeThreshold, 40,                       \
1081           "Threshold of number of revocations per type to permanently "     \
1082           "revoke biases of all objects in the heap of that type")          \
1083                                                                             \
1084   product(intx, BiasedLockingDecayTime, 25000,                              \
1085           "Decay time (in milliseconds) to re-enable bulk rebiasing of a "  \
1086           "type after previous bulk rebias")                                \
1087                                                                             \
1088   /* tracing */                                                             \
1089                                                                             \
1090   notproduct(bool, TraceRuntimeCalls, false,                                \
1091           "Trace run-time calls")                                           \
1092                                                                             \
1093   develop(bool, TraceJNICalls, false,                                       \
1094           "Trace JNI calls")                                                \
1095                                                                             \
1096   notproduct(bool, TraceJVMCalls, false,                                    \
1097           "Trace JVM calls")                                                \
1098                                                                             \
1099   product(ccstr, TraceJVMTI, NULL,                                          \
1100           "Trace flags for JVMTI functions and events")                     \
1101                                                                             \
1102   product(bool, ForceFullGCJVMTIEpilogues, false,                           \
1103           "Force 'Full GC' was done semantics for JVMTI GC epilogues")      \
1104                                                                             \
1105   /* This option can change an EMCP method into an obsolete method. */      \
1106   /* This can affect tests that except specific methods to be EMCP. */      \
1107   /* This option should be used with caution. */                            \
1108   product(bool, StressLdcRewrite, false,                                    \
1109           "Force ldc -> ldc_w rewrite during RedefineClasses")              \
1110                                                                             \
1111   product(intx, TraceRedefineClasses, 0,                                    \
1112           "Trace level for JVMTI RedefineClasses")                          \
1113                                                                             \
1114   /* change to false by default sometime after Mustang */                   \
1115   product(bool, VerifyMergedCPBytecodes, true,                              \
1116           "Verify bytecodes after RedefineClasses constant pool merging")   \
1117                                                                             \
1118   develop(bool, TraceJNIHandleAllocation, false,                            \
1119           "Trace allocation/deallocation of JNI handle blocks")             \
1120                                                                             \
1121   develop(bool, TraceThreadEvents, false,                                   \
1122           "Trace all thread events")                                        \
1123                                                                             \
1124   develop(bool, TraceBytecodes, false,                                      \
1125           "Trace bytecode execution")                                       \
1126                                                                             \
1127   develop(bool, TraceClassInitialization, false,                            \
1128           "Trace class initialization")                                     \
1129                                                                             \
1130   develop(bool, TraceExceptions, false,                                     \
1131           "Trace exceptions")                                               \
1132                                                                             \
1133   develop(bool, TraceICs, false,                                            \
1134           "Trace inline cache changes")                                     \
1135                                                                             \
1136   notproduct(bool, TraceInvocationCounterOverflow, false,                   \
1137           "Trace method invocation counter overflow")                       \
1138                                                                             \
1139   develop(bool, TraceInlineCacheClearing, false,                            \
1140           "Trace clearing of inline caches in nmethods")                    \
1141                                                                             \
1142   develop(bool, TraceDependencies, false,                                   \
1143           "Trace dependencies")                                             \
1144                                                                             \
1145   develop(bool, VerifyDependencies, trueInDebug,                            \
1146          "Exercise and verify the compilation dependency mechanism")        \
1147                                                                             \
1148   develop(bool, TraceNewOopMapGeneration, false,                            \
1149           "Trace OopMapGeneration")                                         \
1150                                                                             \
1151   develop(bool, TraceNewOopMapGenerationDetailed, false,                    \
1152           "Trace OopMapGeneration: print detailed cell states")             \
1153                                                                             \
1154   develop(bool, TimeOopMap, false,                                          \
1155           "Time calls to GenerateOopMap::compute_map() in sum")             \
1156                                                                             \
1157   develop(bool, TimeOopMap2, false,                                         \
1158           "Time calls to GenerateOopMap::compute_map() individually")       \
1159                                                                             \
1160   develop(bool, TraceMonitorMismatch, false,                                \
1161           "Trace monitor matching failures during OopMapGeneration")        \
1162                                                                             \
1163   develop(bool, TraceOopMapRewrites, false,                                 \
1164           "Trace rewritting of method oops during oop map generation")      \
1165                                                                             \
1166   develop(bool, TraceSafepoint, false,                                      \
1167           "Trace safepoint operations")                                     \
1168                                                                             \
1169   develop(bool, TraceICBuffer, false,                                       \
1170           "Trace usage of IC buffer")                                       \
1171                                                                             \
1172   develop(bool, TraceCompiledIC, false,                                     \
1173           "Trace changes of compiled IC")                                   \
1174                                                                             \
1175   notproduct(bool, TraceZapDeadLocals, false,                               \
1176           "Trace zapping dead locals")                                      \
1177                                                                             \
1178   develop(bool, TraceStartupTime, false,                                    \
1179           "Trace setup time")                                               \
1180                                                                             \
1181   develop(bool, TraceHPI, false,                                            \
1182           "Trace Host Porting Interface (HPI)")                             \
1183                                                                             \
1184   product(ccstr, HPILibPath, NULL,                                          \
1185           "Specify alternate path to HPI library")                          \
1186                                                                             \
1187   develop(bool, TraceProtectionDomainVerification, false,                   \
1188           "Trace protection domain verifcation")                            \
1189                                                                             \
1190   develop(bool, TraceClearedExceptions, false,                              \
1191           "Prints when an exception is forcibly cleared")                   \
1192                                                                             \
1193   product(bool, TraceClassResolution, false,                                \
1194           "Trace all constant pool resolutions (for debugging)")            \
1195                                                                             \
1196   product(bool, TraceBiasedLocking, false,                                  \
1197           "Trace biased locking in JVM")                                    \
1198                                                                             \
1199   product(bool, TraceMonitorInflation, false,                               \
1200           "Trace monitor inflation in JVM")                                 \
1201                                                                             \
1202   /* assembler */                                                           \
1203   product(bool, Use486InstrsOnly, false,                                    \
1204           "Use 80486 Compliant instruction subset")                         \
1205                                                                             \
1206   /* gc */                                                                  \
1207                                                                             \
1208   product(bool, UseSerialGC, false,                                         \
1209           "Use the serial garbage collector")                               \
1210                                                                             \
1211   experimental(bool, UseG1GC, false,                                        \
1212           "Use the Garbage-First garbage collector")                        \
1213                                                                             \
1214   product(bool, UseParallelGC, false,                                       \
1215           "Use the Parallel Scavenge garbage collector")                    \
1216                                                                             \
1217   product(bool, UseParallelOldGC, false,                                    \
1218           "Use the Parallel Old garbage collector")                         \
1219                                                                             \
1220   product(bool, UseParallelOldGCCompacting, true,                           \
1221           "In the Parallel Old garbage collector use parallel compaction")  \
1222                                                                             \
1223   product(bool, UseParallelDensePrefixUpdate, true,                         \
1224           "In the Parallel Old garbage collector use parallel dense"        \
1225           " prefix update")                                                 \
1226                                                                             \
1227   product(uintx, HeapMaximumCompactionInterval, 20,                         \
1228           "How often should we maximally compact the heap (not allowing "   \
1229           "any dead space)")                                                \
1230                                                                             \
1231   product(uintx, HeapFirstMaximumCompactionCount, 3,                        \
1232           "The collection count for the first maximum compaction")          \
1233                                                                             \
1234   product(bool, UseMaximumCompactionOnSystemGC, true,                       \
1235           "In the Parallel Old garbage collector maximum compaction for "   \
1236           "a system GC")                                                    \
1237                                                                             \
1238   product(uintx, ParallelOldDeadWoodLimiterMean, 50,                        \
1239           "The mean used by the par compact dead wood"                      \
1240           "limiter (a number between 0-100).")                              \
1241                                                                             \
1242   product(uintx, ParallelOldDeadWoodLimiterStdDev, 80,                      \
1243           "The standard deviation used by the par compact dead wood"        \
1244           "limiter (a number between 0-100).")                              \
1245                                                                             \
1246   product(bool, UseParallelOldGCDensePrefix, true,                          \
1247           "Use a dense prefix with the Parallel Old garbage collector")     \
1248                                                                             \
1249   product(uintx, ParallelGCThreads, 0,                                      \
1250           "Number of parallel threads parallel gc will use")                \
1251                                                                             \
1252   product(uintx, ParallelCMSThreads, 0,                                     \
1253           "Max number of threads CMS will use for concurrent work")         \
1254                                                                             \
1255   develop(bool, ParallelOldGCSplitALot, false,                              \
1256           "Provoke splitting (copying data from a young gen space to"       \
1257           "multiple destination spaces)")                                   \
1258                                                                             \
1259   develop(uintx, ParallelOldGCSplitInterval, 3,                             \
1260           "How often to provoke splitting a young gen space")               \
1261                                                                             \
1262   develop(bool, TraceRegionTasksQueuing, false,                             \
1263           "Trace the queuing of the region tasks")                          \
1264                                                                             \
1265   product(uintx, ParallelMarkingThreads, 0,                                 \
1266           "Number of marking threads concurrent gc will use")               \
1267                                                                             \
1268   product(uintx, YoungPLABSize, 4096,                                       \
1269           "Size of young gen promotion labs (in HeapWords)")                \
1270                                                                             \
1271   product(uintx, OldPLABSize, 1024,                                         \
1272           "Size of old gen promotion labs (in HeapWords)")                  \
1273                                                                             \
1274   product(uintx, GCTaskTimeStampEntries, 200,                               \
1275           "Number of time stamp entries per gc worker thread")              \
1276                                                                             \
1277   product(bool, AlwaysTenure, false,                                        \
1278           "Always tenure objects in eden. (ParallelGC only)")               \
1279                                                                             \
1280   product(bool, NeverTenure, false,                                         \
1281           "Never tenure objects in eden, May tenure on overflow "           \
1282           "(ParallelGC only)")                                              \
1283                                                                             \
1284   product(bool, ScavengeBeforeFullGC, true,                                 \
1285           "Scavenge youngest generation before each full GC, "              \
1286           "used with UseParallelGC")                                        \
1287                                                                             \
1288   develop(bool, ScavengeWithObjectsInToSpace, false,                        \
1289           "Allow scavenges to occur when to_space contains objects.")       \
1290                                                                             \
1291   product(bool, UseConcMarkSweepGC, false,                                  \
1292           "Use Concurrent Mark-Sweep GC in the old generation")             \
1293                                                                             \
1294   product(bool, ExplicitGCInvokesConcurrent, false,                         \
1295           "A System.gc() request invokes a concurrent collection;"          \
1296           " (effective only when UseConcMarkSweepGC)")                      \
1297                                                                             \
1298   product(bool, ExplicitGCInvokesConcurrentAndUnloadsClasses, false,        \
1299           "A System.gc() request invokes a concurrent collection and "      \
1300           "also unloads classes during such a concurrent gc cycle "         \
1301           "(effective only when UseConcMarkSweepGC)")                       \
1302                                                                             \
1303   develop(bool, UseCMSAdaptiveFreeLists, true,                              \
1304           "Use Adaptive Free Lists in the CMS generation")                  \
1305                                                                             \
1306   develop(bool, UseAsyncConcMarkSweepGC, true,                              \
1307           "Use Asynchronous Concurrent Mark-Sweep GC in the old generation")\
1308                                                                             \
1309   develop(bool, RotateCMSCollectionTypes, false,                            \
1310           "Rotate the CMS collections among concurrent and STW")            \
1311                                                                             \
1312   product(bool, UseCMSBestFit, true,                                        \
1313           "Use CMS best fit allocation strategy")                           \
1314                                                                             \
1315   product(bool, UseCMSCollectionPassing, true,                              \
1316           "Use passing of collection from background to foreground")        \
1317                                                                             \
1318   product(bool, UseParNewGC, false,                                         \
1319           "Use parallel threads in the new generation.")                    \
1320                                                                             \
1321   product(bool, ParallelGCVerbose, false,                                   \
1322           "Verbose output for parallel GC.")                                \
1323                                                                             \
1324   product(intx, ParallelGCBufferWastePct, 10,                               \
1325           "wasted fraction of parallel allocation buffer.")                 \
1326                                                                             \
1327   product(bool, ParallelGCRetainPLAB, true,                                 \
1328           "Retain parallel allocation buffers across scavenges.")           \
1329                                                                             \
1330   product(intx, TargetPLABWastePct, 10,                                     \
1331           "target wasted space in last buffer as pct of overall allocation")\
1332                                                                             \
1333   product(uintx, PLABWeight, 75,                                            \
1334           "Percentage (0-100) used to weight the current sample when"       \
1335           "computing exponentially decaying average for ResizePLAB.")       \
1336                                                                             \
1337   product(bool, ResizePLAB, true,                                           \
1338           "Dynamically resize (survivor space) promotion labs")             \
1339                                                                             \
1340   product(bool, PrintPLAB, false,                                           \
1341           "Print (survivor space) promotion labs sizing decisions")         \
1342                                                                             \
1343   product(intx, ParGCArrayScanChunk, 50,                                    \
1344           "Scan a subset and push remainder, if array is bigger than this") \
1345                                                                             \
1346   product(bool, ParGCUseLocalOverflow, false,                               \
1347           "Instead of a global overflow list, use local overflow stacks")   \
1348                                                                             \
1349   product(bool, ParGCTrimOverflow, true,                                    \
1350           "Eagerly trim the local overflow lists (when ParGCUseLocalOverflow") \
1351                                                                             \
1352   notproduct(bool, ParGCWorkQueueOverflowALot, false,                       \
1353           "Whether we should simulate work queue overflow in ParNew")       \
1354                                                                             \
1355   notproduct(uintx, ParGCWorkQueueOverflowInterval, 1000,                   \
1356           "An `interval' counter that determines how frequently "           \
1357           "we simulate overflow; a smaller number increases frequency")     \
1358                                                                             \
1359   product(uintx, ParGCDesiredObjsFromOverflowList, 20,                      \
1360           "The desired number of objects to claim from the overflow list")  \
1361                                                                             \
1362   product(uintx, CMSParPromoteBlocksToClaim, 50,                            \
1363           "Number of blocks to attempt to claim when refilling CMS LAB for "\
1364           "parallel GC.")                                                   \
1365                                                                             \
1366   product(bool, AlwaysPreTouch, false,                                      \
1367           "It forces all freshly committed pages to be pre-touched.")       \
1368                                                                             \
1369   product(bool, CMSUseOldDefaults, false,                                   \
1370           "A flag temporarily introduced to allow reverting to some "       \
1371           "older default settings; older as of 6.0")                        \
1372                                                                             \
1373   product(intx, CMSYoungGenPerWorker, 16*M,                                 \
1374           "The amount of young gen chosen by default per GC worker "        \
1375           "thread available")                                               \
1376                                                                             \
1377   product(bool, GCOverheadReporting, false,                                 \
1378          "Enables the GC overhead reporting facility")                      \
1379                                                                             \
1380   product(intx, GCOverheadReportingPeriodMS, 100,                           \
1381           "Reporting period for conc GC overhead reporting, in ms ")        \
1382                                                                             \
1383   product(bool, CMSIncrementalMode, false,                                  \
1384           "Whether CMS GC should operate in \"incremental\" mode")          \
1385                                                                             \
1386   product(uintx, CMSIncrementalDutyCycle, 10,                               \
1387           "CMS incremental mode duty cycle (a percentage, 0-100).  If"      \
1388           "CMSIncrementalPacing is enabled, then this is just the initial"  \
1389           "value")                                                          \
1390                                                                             \
1391   product(bool, CMSIncrementalPacing, true,                                 \
1392           "Whether the CMS incremental mode duty cycle should be "          \
1393           "automatically adjusted")                                         \
1394                                                                             \
1395   product(uintx, CMSIncrementalDutyCycleMin, 0,                             \
1396           "Lower bound on the duty cycle when CMSIncrementalPacing is "     \
1397           "enabled (a percentage, 0-100)")                                  \
1398                                                                             \
1399   product(uintx, CMSIncrementalSafetyFactor, 10,                            \
1400           "Percentage (0-100) used to add conservatism when computing the " \
1401           "duty cycle")                                                     \
1402                                                                             \
1403   product(uintx, CMSIncrementalOffset, 0,                                   \
1404           "Percentage (0-100) by which the CMS incremental mode duty cycle" \
1405           " is shifted to the right within the period between young GCs")   \
1406                                                                             \
1407   product(uintx, CMSExpAvgFactor, 25,                                       \
1408           "Percentage (0-100) used to weight the current sample when "      \
1409           "computing exponential averages for CMS statistics")              \
1410                                                                             \
1411   product(uintx, CMS_FLSWeight, 50,                                         \
1412           "Percentage (0-100) used to weight the current sample when "      \
1413           "computing exponentially decating averages for CMS FLS statistics") \
1414                                                                             \
1415   product(uintx, CMS_FLSPadding, 2,                                         \
1416           "The multiple of deviation from mean to use for buffering "       \
1417           "against volatility in free list demand.")                        \
1418                                                                             \
1419   product(uintx, FLSCoalescePolicy, 2,                                      \
1420           "CMS: Aggression level for coalescing, increasing from 0 to 4")   \
1421                                                                             \
1422   product(uintx, CMS_SweepWeight, 50,                                       \
1423           "Percentage (0-100) used to weight the current sample when "      \
1424           "computing exponentially decaying average for inter-sweep "       \
1425           "duration")                                                       \
1426                                                                             \
1427   product(uintx, CMS_SweepPadding, 2,                                       \
1428           "The multiple of deviation from mean to use for buffering "       \
1429           "against volatility in inter-sweep duration.")                    \
1430                                                                             \
1431   product(uintx, CMS_SweepTimerThresholdMillis, 10,                         \
1432           "Skip block flux-rate sampling for an epoch unless inter-sweep "  \
1433           "duration exceeds this threhold in milliseconds")                 \
1434                                                                             \
1435   develop(bool, CMSTraceIncrementalMode, false,                             \
1436           "Trace CMS incremental mode")                                     \
1437                                                                             \
1438   develop(bool, CMSTraceIncrementalPacing, false,                           \
1439           "Trace CMS incremental mode pacing computation")                  \
1440                                                                             \
1441   develop(bool, CMSTraceThreadState, false,                                 \
1442           "Trace the CMS thread state (enable the trace_state() method)")   \
1443                                                                             \
1444   product(bool, CMSClassUnloadingEnabled, false,                            \
1445           "Whether class unloading enabled when using CMS GC")              \
1446                                                                             \
1447   product(uintx, CMSClassUnloadingMaxInterval, 0,                           \
1448           "When CMS class unloading is enabled, the maximum CMS cycle count"\
1449           " for which classes may not be unloaded")                         \
1450                                                                             \
1451   product(bool, CMSCompactWhenClearAllSoftRefs, true,                       \
1452           "Compact when asked to collect CMS gen with clear_all_soft_refs") \
1453                                                                             \
1454   product(bool, UseCMSCompactAtFullCollection, true,                        \
1455           "Use mark sweep compact at full collections")                     \
1456                                                                             \
1457   product(uintx, CMSFullGCsBeforeCompaction, 0,                             \
1458           "Number of CMS full collection done before compaction if > 0")    \
1459                                                                             \
1460   develop(intx, CMSDictionaryChoice, 0,                                     \
1461           "Use BinaryTreeDictionary as default in the CMS generation")      \
1462                                                                             \
1463   product(uintx, CMSIndexedFreeListReplenish, 4,                            \
1464           "Replenish and indexed free list with this number of chunks")     \
1465                                                                             \
1466   product(bool, CMSLoopWarn, false,                                         \
1467           "Warn in case of excessive CMS looping")                          \
1468                                                                             \
1469   develop(bool, CMSOverflowEarlyRestoration, false,                         \
1470           "Whether preserved marks should be restored early")               \
1471                                                                             \
1472   product(uintx, CMSMarkStackSize, NOT_LP64(32*K) LP64_ONLY(4*M),           \
1473           "Size of CMS marking stack")                                      \
1474                                                                             \
1475   product(uintx, CMSMarkStackSizeMax, NOT_LP64(4*M) LP64_ONLY(512*M),       \
1476           "Max size of CMS marking stack")                                  \
1477                                                                             \
1478   notproduct(bool, CMSMarkStackOverflowALot, false,                         \
1479           "Whether we should simulate frequent marking stack / work queue"  \
1480           " overflow")                                                      \
1481                                                                             \
1482   notproduct(uintx, CMSMarkStackOverflowInterval, 1000,                     \
1483           "An `interval' counter that determines how frequently"            \
1484           " we simulate overflow; a smaller number increases frequency")    \
1485                                                                             \
1486   product(uintx, CMSMaxAbortablePrecleanLoops, 0,                           \
1487           "(Temporary, subject to experimentation)"                         \
1488           "Maximum number of abortable preclean iterations, if > 0")        \
1489                                                                             \
1490   product(intx, CMSMaxAbortablePrecleanTime, 5000,                          \
1491           "(Temporary, subject to experimentation)"                         \
1492           "Maximum time in abortable preclean in ms")                       \
1493                                                                             \
1494   product(uintx, CMSAbortablePrecleanMinWorkPerIteration, 100,              \
1495           "(Temporary, subject to experimentation)"                         \
1496           "Nominal minimum work per abortable preclean iteration")          \
1497                                                                             \
1498   product(intx, CMSAbortablePrecleanWaitMillis, 100,                        \
1499           "(Temporary, subject to experimentation)"                         \
1500           " Time that we sleep between iterations when not given"           \
1501           " enough work per iteration")                                     \
1502                                                                             \
1503   product(uintx, CMSRescanMultiple, 32,                                     \
1504           "Size (in cards) of CMS parallel rescan task")                    \
1505                                                                             \
1506   product(uintx, CMSConcMarkMultiple, 32,                                   \
1507           "Size (in cards) of CMS concurrent MT marking task")              \
1508                                                                             \
1509   product(uintx, CMSRevisitStackSize, 1*M,                                  \
1510           "Size of CMS KlassKlass revisit stack")                           \
1511                                                                             \
1512   product(bool, CMSAbortSemantics, false,                                   \
1513           "Whether abort-on-overflow semantics is implemented")             \
1514                                                                             \
1515   product(bool, CMSParallelRemarkEnabled, true,                             \
1516           "Whether parallel remark enabled (only if ParNewGC)")             \
1517                                                                             \
1518   product(bool, CMSParallelSurvivorRemarkEnabled, true,                     \
1519           "Whether parallel remark of survivor space"                       \
1520           " enabled (effective only if CMSParallelRemarkEnabled)")          \
1521                                                                             \
1522   product(bool, CMSPLABRecordAlways, true,                                  \
1523           "Whether to always record survivor space PLAB bdries"             \
1524           " (effective only if CMSParallelSurvivorRemarkEnabled)")          \
1525                                                                             \
1526   product(bool, CMSConcurrentMTEnabled, true,                               \
1527           "Whether multi-threaded concurrent work enabled (if ParNewGC)")   \
1528                                                                             \
1529   product(bool, CMSPermGenPrecleaningEnabled, true,                         \
1530           "Whether concurrent precleaning enabled in perm gen"              \
1531           " (effective only when CMSPrecleaningEnabled is true)")           \
1532                                                                             \
1533   product(bool, CMSPrecleaningEnabled, true,                                \
1534           "Whether concurrent precleaning enabled")                         \
1535                                                                             \
1536   product(uintx, CMSPrecleanIter, 3,                                        \
1537           "Maximum number of precleaning iteration passes")                 \
1538                                                                             \
1539   product(uintx, CMSPrecleanNumerator, 2,                                   \
1540           "CMSPrecleanNumerator:CMSPrecleanDenominator yields convergence"  \
1541           " ratio")                                                         \
1542                                                                             \
1543   product(uintx, CMSPrecleanDenominator, 3,                                 \
1544           "CMSPrecleanNumerator:CMSPrecleanDenominator yields convergence"  \
1545           " ratio")                                                         \
1546                                                                             \
1547   product(bool, CMSPrecleanRefLists1, true,                                 \
1548           "Preclean ref lists during (initial) preclean phase")             \
1549                                                                             \
1550   product(bool, CMSPrecleanRefLists2, false,                                \
1551           "Preclean ref lists during abortable preclean phase")             \
1552                                                                             \
1553   product(bool, CMSPrecleanSurvivors1, false,                               \
1554           "Preclean survivors during (initial) preclean phase")             \
1555                                                                             \
1556   product(bool, CMSPrecleanSurvivors2, true,                                \
1557           "Preclean survivors during abortable preclean phase")             \
1558                                                                             \
1559   product(uintx, CMSPrecleanThreshold, 1000,                                \
1560           "Don't re-iterate if #dirty cards less than this")                \
1561                                                                             \
1562   product(bool, CMSCleanOnEnter, true,                                      \
1563           "Clean-on-enter optimization for reducing number of dirty cards") \
1564                                                                             \
1565   product(uintx, CMSRemarkVerifyVariant, 1,                                 \
1566           "Choose variant (1,2) of verification following remark")          \
1567                                                                             \
1568   product(uintx, CMSScheduleRemarkEdenSizeThreshold, 2*M,                   \
1569           "If Eden used is below this value, don't try to schedule remark") \
1570                                                                             \
1571   product(uintx, CMSScheduleRemarkEdenPenetration, 50,                      \
1572           "The Eden occupancy % at which to try and schedule remark pause") \
1573                                                                             \
1574   product(uintx, CMSScheduleRemarkSamplingRatio, 5,                         \
1575           "Start sampling Eden top at least before yg occupancy reaches"    \
1576           " 1/<ratio> of the size at which we plan to schedule remark")     \
1577                                                                             \
1578   product(uintx, CMSSamplingGrain, 16*K,                                    \
1579           "The minimum distance between eden samples for CMS (see above)")  \
1580                                                                             \
1581   product(bool, CMSScavengeBeforeRemark, false,                             \
1582           "Attempt scavenge before the CMS remark step")                    \
1583                                                                             \
1584   develop(bool, CMSTraceSweeper, false,                                     \
1585           "Trace some actions of the CMS sweeper")                          \
1586                                                                             \
1587   product(uintx, CMSWorkQueueDrainThreshold, 10,                            \
1588           "Don't drain below this size per parallel worker/thief")          \
1589                                                                             \
1590   product(intx, CMSWaitDuration, 2000,                                      \
1591           "Time in milliseconds that CMS thread waits for young GC")        \
1592                                                                             \
1593   product(bool, CMSYield, true,                                             \
1594           "Yield between steps of concurrent mark & sweep")                 \
1595                                                                             \
1596   product(uintx, CMSBitMapYieldQuantum, 10*M,                               \
1597           "Bitmap operations should process at most this many bits"         \
1598           "between yields")                                                 \
1599                                                                             \
1600   diagnostic(bool, FLSVerifyAllHeapReferences, false,                       \
1601           "Verify that all refs across the FLS boundary "                   \
1602           " are to valid objects")                                          \
1603                                                                             \
1604   diagnostic(bool, FLSVerifyLists, false,                                   \
1605           "Do lots of (expensive) FreeListSpace verification")              \
1606                                                                             \
1607   diagnostic(bool, FLSVerifyIndexTable, false,                              \
1608           "Do lots of (expensive) FLS index table verification")            \
1609                                                                             \
1610   develop(bool, FLSVerifyDictionary, false,                                 \
1611           "Do lots of (expensive) FLS dictionary verification")             \
1612                                                                             \
1613   develop(bool, VerifyBlockOffsetArray, false,                              \
1614           "Do (expensive!) block offset array verification")                \
1615                                                                             \
1616   product(bool, BlockOffsetArrayUseUnallocatedBlock, trueInDebug,           \
1617           "Maintain _unallocated_block in BlockOffsetArray"                 \
1618           " (currently applicable only to CMS collector)")                  \
1619                                                                             \
1620   develop(bool, TraceCMSState, false,                                       \
1621           "Trace the state of the CMS collection")                          \
1622                                                                             \
1623   product(intx, RefDiscoveryPolicy, 0,                                      \
1624           "Whether reference-based(0) or referent-based(1)")                \
1625                                                                             \
1626   product(bool, ParallelRefProcEnabled, false,                              \
1627           "Enable parallel reference processing whenever possible")         \
1628                                                                             \
1629   product(bool, ParallelRefProcBalancingEnabled, true,                      \
1630           "Enable balancing of reference processing queues")                \
1631                                                                             \
1632   product(intx, CMSTriggerRatio, 80,                                        \
1633           "Percentage of MinHeapFreeRatio in CMS generation that is "       \
1634           "allocated before a CMS collection cycle commences")              \
1635                                                                             \
1636   product(intx, CMSTriggerPermRatio, 80,                                    \
1637           "Percentage of MinHeapFreeRatio in the CMS perm generation that " \
1638           "is allocated before a CMS collection cycle commences, that "     \
1639           "also collects the perm generation")                              \
1640                                                                             \
1641   product(uintx, CMSBootstrapOccupancy, 50,                                 \
1642           "Percentage CMS generation occupancy at which to "                \
1643           "initiate CMS collection for bootstrapping collection stats")     \
1644                                                                             \
1645   product(intx, CMSInitiatingOccupancyFraction, -1,                         \
1646           "Percentage CMS generation occupancy to start a CMS collection "  \
1647           "cycle. A negative value means that CMSTriggerRatio is used")     \
1648                                                                             \
1649   product(intx, CMSInitiatingPermOccupancyFraction, -1,                     \
1650           "Percentage CMS perm generation occupancy to start a "            \
1651           "CMScollection cycle. A negative value means that "               \
1652           "CMSTriggerPermRatio is used")                                    \
1653                                                                             \
1654   product(bool, UseCMSInitiatingOccupancyOnly, false,                       \
1655           "Only use occupancy as a crierion for starting a CMS collection") \
1656                                                                             \
1657   product(intx, CMSIsTooFullPercentage, 98,                                 \
1658           "An absolute ceiling above which CMS will always consider the "   \
1659           "perm gen ripe for collection")                                   \
1660                                                                             \
1661   develop(bool, CMSTestInFreeList, false,                                   \
1662           "Check if the coalesced range is already in the "                 \
1663           "free lists as claimed")                                          \
1664                                                                             \
1665   notproduct(bool, CMSVerifyReturnedBytes, false,                           \
1666           "Check that all the garbage collected was returned to the "       \
1667           "free lists.")                                                    \
1668                                                                             \
1669   notproduct(bool, ScavengeALot, false,                                     \
1670           "Force scavenge at every Nth exit from the runtime system "       \
1671           "(N=ScavengeALotInterval)")                                       \
1672                                                                             \
1673   develop(bool, FullGCALot, false,                                          \
1674           "Force full gc at every Nth exit from the runtime system "        \
1675           "(N=FullGCALotInterval)")                                         \
1676                                                                             \
1677   notproduct(bool, GCALotAtAllSafepoints, false,                            \
1678           "Enforce ScavengeALot/GCALot at all potential safepoints")        \
1679                                                                             \
1680   product(bool, HandlePromotionFailure, true,                               \
1681           "The youngest generation collection does not require "            \
1682           "a guarantee of full promotion of all live objects.")             \
1683                                                                             \
1684   notproduct(bool, PromotionFailureALot, false,                             \
1685           "Use promotion failure handling on every youngest generation "    \
1686           "collection")                                                     \
1687                                                                             \
1688   develop(uintx, PromotionFailureALotCount, 1000,                           \
1689           "Number of promotion failures occurring at ParGCAllocBuffer"      \
1690           "refill attempts (ParNew) or promotion attempts "                 \
1691           "(other young collectors) ")                                      \
1692                                                                             \
1693   develop(uintx, PromotionFailureALotInterval, 5,                           \
1694           "Total collections between promotion failures alot")              \
1695                                                                             \
1696   develop(intx, WorkStealingSleepMillis, 1,                                 \
1697           "Sleep time when sleep is used for yields")                       \
1698                                                                             \
1699   develop(uintx, WorkStealingYieldsBeforeSleep, 1000,                       \
1700           "Number of yields before a sleep is done during workstealing")    \
1701                                                                             \
1702   develop(uintx, WorkStealingHardSpins, 4096,                               \
1703           "Number of iterations in a spin loop between checks on "          \
1704           "time out of hard spin")                                          \
1705                                                                             \
1706   develop(uintx, WorkStealingSpinToYieldRatio, 10,                          \
1707           "Ratio of hard spins to calls to yield")                          \
1708                                                                             \
1709   product(uintx, PreserveMarkStackSize, 1024,                               \
1710           "Size for stack used in promotion failure handling")              \
1711                                                                             \
1712   product_pd(bool, UseTLAB, "Use thread-local object allocation")           \
1713                                                                             \
1714   product_pd(bool, ResizeTLAB,                                              \
1715           "Dynamically resize tlab size for threads")                       \
1716                                                                             \
1717   product(bool, ZeroTLAB, false,                                            \
1718           "Zero out the newly created TLAB")                                \
1719                                                                             \
1720   product(bool, FastTLABRefill, true,                                       \
1721           "Use fast TLAB refill code")                                      \
1722                                                                             \
1723   product(bool, PrintTLAB, false,                                           \
1724           "Print various TLAB related information")                         \
1725                                                                             \
1726   product(bool, TLABStats, true,                                            \
1727           "Print various TLAB related information")                         \
1728                                                                             \
1729   product(bool, PrintRevisitStats, false,                                   \
1730           "Print revisit (klass and MDO) stack related information")        \
1731                                                                             \
1732   product_pd(bool, NeverActAsServerClassMachine,                            \
1733           "Never act like a server-class machine")                          \
1734                                                                             \
1735   product(bool, AlwaysActAsServerClassMachine, false,                       \
1736           "Always act like a server-class machine")                         \
1737                                                                             \
1738   product_pd(uint64_t, MaxRAM,                                              \
1739           "Real memory size (in bytes) used to set maximum heap size")      \
1740                                                                             \
1741   product(uintx, ErgoHeapSizeLimit, 0,                                      \
1742           "Maximum ergonomically set heap size (in bytes); zero means use " \
1743           "MaxRAM / MaxRAMFraction")                                        \
1744                                                                             \
1745   product(uintx, MaxRAMFraction, 4,                                         \
1746           "Maximum fraction (1/n) of real memory used for maximum heap "    \
1747           "size")                                                           \
1748                                                                             \
1749   product(uintx, DefaultMaxRAMFraction, 4,                                  \
1750           "Maximum fraction (1/n) of real memory used for maximum heap "    \
1751           "size; deprecated: to be renamed to MaxRAMFraction")              \
1752                                                                             \
1753   product(uintx, MinRAMFraction, 2,                                         \
1754           "Minimum fraction (1/n) of real memory used for maxmimum heap "   \
1755           "size on systems with small physical memory size")                \
1756                                                                             \
1757   product(uintx, InitialRAMFraction, 64,                                    \
1758           "Fraction (1/n) of real memory used for initial heap size")       \
1759                                                                             \
1760   product(bool, UseAutoGCSelectPolicy, false,                               \
1761           "Use automatic collection selection policy")                      \
1762                                                                             \
1763   product(uintx, AutoGCSelectPauseMillis, 5000,                             \
1764           "Automatic GC selection pause threshhold in ms")                  \
1765                                                                             \
1766   product(bool, UseAdaptiveSizePolicy, true,                                \
1767           "Use adaptive generation sizing policies")                        \
1768                                                                             \
1769   product(bool, UsePSAdaptiveSurvivorSizePolicy, true,                      \
1770           "Use adaptive survivor sizing policies")                          \
1771                                                                             \
1772   product(bool, UseAdaptiveGenerationSizePolicyAtMinorCollection, true,     \
1773           "Use adaptive young-old sizing policies at minor collections")    \
1774                                                                             \
1775   product(bool, UseAdaptiveGenerationSizePolicyAtMajorCollection, true,     \
1776           "Use adaptive young-old sizing policies at major collections")    \
1777                                                                             \
1778   product(bool, UseAdaptiveSizePolicyWithSystemGC, false,                   \
1779           "Use statistics from System.GC for adaptive size policy")         \
1780                                                                             \
1781   product(bool, UseAdaptiveGCBoundary, false,                               \
1782           "Allow young-old boundary to move")                               \
1783                                                                             \
1784   develop(bool, TraceAdaptiveGCBoundary, false,                             \
1785           "Trace young-old boundary moves")                                 \
1786                                                                             \
1787   develop(intx, PSAdaptiveSizePolicyResizeVirtualSpaceAlot, -1,             \
1788           "Resize the virtual spaces of the young or old generations")      \
1789                                                                             \
1790   product(uintx, AdaptiveSizeThroughPutPolicy, 0,                           \
1791           "Policy for changeing generation size for throughput goals")      \
1792                                                                             \
1793   product(uintx, AdaptiveSizePausePolicy, 0,                                \
1794           "Policy for changing generation size for pause goals")            \
1795                                                                             \
1796   develop(bool, PSAdjustTenuredGenForMinorPause, false,                     \
1797           "Adjust tenured generation to achive a minor pause goal")         \
1798                                                                             \
1799   develop(bool, PSAdjustYoungGenForMajorPause, false,                       \
1800           "Adjust young generation to achive a major pause goal")           \
1801                                                                             \
1802   product(uintx, AdaptiveSizePolicyInitializingSteps, 20,                   \
1803           "Number of steps where heuristics is used before data is used")   \
1804                                                                             \
1805   develop(uintx, AdaptiveSizePolicyReadyThreshold, 5,                       \
1806           "Number of collections before the adaptive sizing is started")    \
1807                                                                             \
1808   product(uintx, AdaptiveSizePolicyOutputInterval, 0,                       \
1809           "Collecton interval for printing information; zero => never")     \
1810                                                                             \
1811   product(bool, UseAdaptiveSizePolicyFootprintGoal, true,                   \
1812           "Use adaptive minimum footprint as a goal")                       \
1813                                                                             \
1814   product(uintx, AdaptiveSizePolicyWeight, 10,                              \
1815           "Weight given to exponential resizing, between 0 and 100")        \
1816                                                                             \
1817   product(uintx, AdaptiveTimeWeight,       25,                              \
1818           "Weight given to time in adaptive policy, between 0 and 100")     \
1819                                                                             \
1820   product(uintx, PausePadding, 1,                                           \
1821           "How much buffer to keep for pause time")                         \
1822                                                                             \
1823   product(uintx, PromotedPadding, 3,                                        \
1824           "How much buffer to keep for promotion failure")                  \
1825                                                                             \
1826   product(uintx, SurvivorPadding, 3,                                        \
1827           "How much buffer to keep for survivor overflow")                  \
1828                                                                             \
1829   product(uintx, AdaptivePermSizeWeight, 20,                                \
1830           "Weight for perm gen exponential resizing, between 0 and 100")    \
1831                                                                             \
1832   product(uintx, PermGenPadding, 3,                                         \
1833           "How much buffer to keep for perm gen sizing")                    \
1834                                                                             \
1835   product(uintx, ThresholdTolerance, 10,                                    \
1836           "Allowed collection cost difference between generations")         \
1837                                                                             \
1838   product(uintx, AdaptiveSizePolicyCollectionCostMargin, 50,                \
1839           "If collection costs are within margin, reduce both by full "     \
1840           "delta")                                                          \
1841                                                                             \
1842   product(uintx, YoungGenerationSizeIncrement, 20,                          \
1843           "Adaptive size percentage change in young generation")            \
1844                                                                             \
1845   product(uintx, YoungGenerationSizeSupplement, 80,                         \
1846           "Supplement to YoungedGenerationSizeIncrement used at startup")   \
1847                                                                             \
1848   product(uintx, YoungGenerationSizeSupplementDecay, 8,                     \
1849           "Decay factor to YoungedGenerationSizeSupplement")                \
1850                                                                             \
1851   product(uintx, TenuredGenerationSizeIncrement, 20,                        \
1852           "Adaptive size percentage change in tenured generation")          \
1853                                                                             \
1854   product(uintx, TenuredGenerationSizeSupplement, 80,                       \
1855           "Supplement to TenuredGenerationSizeIncrement used at startup")   \
1856                                                                             \
1857   product(uintx, TenuredGenerationSizeSupplementDecay, 2,                   \
1858           "Decay factor to TenuredGenerationSizeIncrement")                 \
1859                                                                             \
1860   product(uintx, MaxGCPauseMillis, max_uintx,                               \
1861           "Adaptive size policy maximum GC pause time goal in msec, "       \
1862           "or (G1 Only) the max. GC time per MMU time slice")               \
1863                                                                             \
1864   product(intx, GCPauseIntervalMillis, 500,                                 \
1865           "Time slice for MMU specification")                               \
1866                                                                             \
1867   product(uintx, MaxGCMinorPauseMillis, max_uintx,                          \
1868           "Adaptive size policy maximum GC minor pause time goal in msec")  \
1869                                                                             \
1870   product(uintx, GCTimeRatio, 99,                                           \
1871           "Adaptive size policy application time to GC time ratio")         \
1872                                                                             \
1873   product(uintx, AdaptiveSizeDecrementScaleFactor, 4,                       \
1874           "Adaptive size scale down factor for shrinking")                  \
1875                                                                             \
1876   product(bool, UseAdaptiveSizeDecayMajorGCCost, true,                      \
1877           "Adaptive size decays the major cost for long major intervals")   \
1878                                                                             \
1879   product(uintx, AdaptiveSizeMajorGCDecayTimeScale, 10,                     \
1880           "Time scale over which major costs decay")                        \
1881                                                                             \
1882   product(uintx, MinSurvivorRatio, 3,                                       \
1883           "Minimum ratio of young generation/survivor space size")          \
1884                                                                             \
1885   product(uintx, InitialSurvivorRatio, 8,                                   \
1886           "Initial ratio of eden/survivor space size")                      \
1887                                                                             \
1888   product(uintx, BaseFootPrintEstimate, 256*M,                              \
1889           "Estimate of footprint other than Java Heap")                     \
1890                                                                             \
1891   product(bool, UseGCOverheadLimit, true,                                   \
1892           "Use policy to limit of proportion of time spent in GC "          \
1893           "before an OutOfMemory error is thrown")                          \
1894                                                                             \
1895   product(uintx, GCTimeLimit, 98,                                           \
1896           "Limit of proportion of time spent in GC before an OutOfMemory"   \
1897           "error is thrown (used with GCHeapFreeLimit)")                    \
1898                                                                             \
1899   product(uintx, GCHeapFreeLimit, 2,                                        \
1900           "Minimum percentage of free space after a full GC before an "     \
1901           "OutOfMemoryError is thrown (used with GCTimeLimit)")             \
1902                                                                             \
1903   develop(uintx, AdaptiveSizePolicyGCTimeLimitThreshold, 5,                 \
1904           "Number of consecutive collections before gc time limit fires")   \
1905                                                                             \
1906   product(bool, PrintAdaptiveSizePolicy, false,                             \
1907           "Print information about AdaptiveSizePolicy")                     \
1908                                                                             \
1909   product(intx, PrefetchCopyIntervalInBytes, -1,                            \
1910           "How far ahead to prefetch destination area (<= 0 means off)")    \
1911                                                                             \
1912   product(intx, PrefetchScanIntervalInBytes, -1,                            \
1913           "How far ahead to prefetch scan area (<= 0 means off)")           \
1914                                                                             \
1915   product(intx, PrefetchFieldsAhead, -1,                                    \
1916           "How many fields ahead to prefetch in oop scan (<= 0 means off)") \
1917                                                                             \
1918   develop(bool, UsePrefetchQueue, true,                                     \
1919           "Use the prefetch queue during PS promotion")                     \
1920                                                                             \
1921   diagnostic(bool, VerifyBeforeExit, trueInDebug,                           \
1922           "Verify system before exiting")                                   \
1923                                                                             \
1924   diagnostic(bool, VerifyBeforeGC, false,                                   \
1925           "Verify memory system before GC")                                 \
1926                                                                             \
1927   diagnostic(bool, VerifyAfterGC, false,                                    \
1928           "Verify memory system after GC")                                  \
1929                                                                             \
1930   diagnostic(bool, VerifyDuringGC, false,                                   \
1931           "Verify memory system during GC (between phases)")                \
1932                                                                             \
1933   diagnostic(bool, GCParallelVerificationEnabled, true,                     \
1934           "Enable parallel memory system verification")                     \
1935                                                                             \
1936   diagnostic(bool, VerifyRememberedSets, false,                             \
1937           "Verify GC remembered sets")                                      \
1938                                                                             \
1939   diagnostic(bool, VerifyObjectStartArray, true,                            \
1940           "Verify GC object start array if verify before/after")            \
1941                                                                             \
1942   product(bool, DisableExplicitGC, false,                                   \
1943           "Tells whether calling System.gc() does a full GC")               \
1944                                                                             \
1945   notproduct(bool, CheckMemoryInitialization, false,                        \
1946           "Checks memory initialization")                                   \
1947                                                                             \
1948   product(bool, CollectGen0First, false,                                    \
1949           "Collect youngest generation before each full GC")                \
1950                                                                             \
1951   diagnostic(bool, BindCMSThreadToCPU, false,                               \
1952           "Bind CMS Thread to CPU if possible")                             \
1953                                                                             \
1954   diagnostic(uintx, CPUForCMSThread, 0,                                     \
1955           "When BindCMSThreadToCPU is true, the CPU to bind CMS thread to") \
1956                                                                             \
1957   product(bool, BindGCTaskThreadsToCPUs, false,                             \
1958           "Bind GCTaskThreads to CPUs if possible")                         \
1959                                                                             \
1960   product(bool, UseGCTaskAffinity, false,                                   \
1961           "Use worker affinity when asking for GCTasks")                    \
1962                                                                             \
1963   product(uintx, ProcessDistributionStride, 4,                              \
1964           "Stride through processors when distributing processes")          \
1965                                                                             \
1966   product(uintx, CMSCoordinatorYieldSleepCount, 10,                         \
1967           "number of times the coordinator GC thread will sleep while "     \
1968           "yielding before giving up and resuming GC")                      \
1969                                                                             \
1970   product(uintx, CMSYieldSleepCount, 0,                                     \
1971           "number of times a GC thread (minus the coordinator) "            \
1972           "will sleep while yielding before giving up and resuming GC")     \
1973                                                                             \
1974   notproduct(bool, PrintFlagsFinal, false,                                  \
1975           "Print all command line flags after argument processing")         \
1976                                                                             \
1977   /* gc tracing */                                                          \
1978   manageable(bool, PrintGC, false,                                          \
1979           "Print message at garbage collect")                               \
1980                                                                             \
1981   manageable(bool, PrintGCDetails, false,                                   \
1982           "Print more details at garbage collect")                          \
1983                                                                             \
1984   manageable(bool, PrintGCDateStamps, false,                                \
1985           "Print date stamps at garbage collect")                           \
1986                                                                             \
1987   manageable(bool, PrintGCTimeStamps, false,                                \
1988           "Print timestamps at garbage collect")                            \
1989                                                                             \
1990   product(bool, PrintGCTaskTimeStamps, false,                               \
1991           "Print timestamps for individual gc worker thread tasks")         \
1992                                                                             \
1993   develop(intx, ConcGCYieldTimeout, 0,                                      \
1994           "If non-zero, assert that GC threads yield within this # of ms.") \
1995                                                                             \
1996   notproduct(bool, TraceMarkSweep, false,                                   \
1997           "Trace mark sweep")                                               \
1998                                                                             \
1999   product(bool, PrintReferenceGC, false,                                    \
2000           "Print times spent handling reference objects during GC "         \
2001           " (enabled only when PrintGCDetails)")                            \
2002                                                                             \
2003   develop(bool, TraceReferenceGC, false,                                    \
2004           "Trace handling of soft/weak/final/phantom references")           \
2005                                                                             \
2006   develop(bool, TraceFinalizerRegistration, false,                          \
2007          "Trace registration of final references")                          \
2008                                                                             \
2009   notproduct(bool, TraceScavenge, false,                                    \
2010           "Trace scavenge")                                                 \
2011                                                                             \
2012   product_rw(bool, TraceClassLoading, false,                                \
2013           "Trace all classes loaded")                                       \
2014                                                                             \
2015   product(bool, TraceClassLoadingPreorder, false,                           \
2016           "Trace all classes loaded in order referenced (not loaded)")      \
2017                                                                             \
2018   product_rw(bool, TraceClassUnloading, false,                              \
2019           "Trace unloading of classes")                                     \
2020                                                                             \
2021   product_rw(bool, TraceLoaderConstraints, false,                           \
2022           "Trace loader constraints")                                       \
2023                                                                             \
2024   product(bool, TraceGen0Time, false,                                       \
2025           "Trace accumulated time for Gen 0 collection")                    \
2026                                                                             \
2027   product(bool, TraceGen1Time, false,                                       \
2028           "Trace accumulated time for Gen 1 collection")                    \
2029                                                                             \
2030   product(bool, PrintTenuringDistribution, false,                           \
2031           "Print tenuring age information")                                 \
2032                                                                             \
2033   product_rw(bool, PrintHeapAtGC, false,                                    \
2034           "Print heap layout before and after each GC")                     \
2035                                                                             \
2036   product_rw(bool, PrintHeapAtGCExtended, false,                            \
2037           "Prints extended information about the layout of the heap "       \
2038           "when -XX:+PrintHeapAtGC is set")                                 \
2039                                                                             \
2040   product(bool, PrintHeapAtSIGBREAK, true,                                  \
2041           "Print heap layout in response to SIGBREAK")                      \
2042                                                                             \
2043   manageable(bool, PrintClassHistogramBeforeFullGC, false,                  \
2044           "Print a class histogram before any major stop-world GC")         \
2045                                                                             \
2046   manageable(bool, PrintClassHistogramAfterFullGC, false,                   \
2047           "Print a class histogram after any major stop-world GC")          \
2048                                                                             \
2049   manageable(bool, PrintClassHistogram, false,                              \
2050           "Print a histogram of class instances")                           \
2051                                                                             \
2052   develop(bool, TraceWorkGang, false,                                       \
2053           "Trace activities of work gangs")                                 \
2054                                                                             \
2055   product(bool, TraceParallelOldGCTasks, false,                             \
2056           "Trace multithreaded GC activity")                                \
2057                                                                             \
2058   develop(bool, TraceBlockOffsetTable, false,                               \
2059           "Print BlockOffsetTable maps")                                    \
2060                                                                             \
2061   develop(bool, TraceCardTableModRefBS, false,                              \
2062           "Print CardTableModRefBS maps")                                   \
2063                                                                             \
2064   develop(bool, TraceGCTaskManager, false,                                  \
2065           "Trace actions of the GC task manager")                           \
2066                                                                             \
2067   develop(bool, TraceGCTaskQueue, false,                                    \
2068           "Trace actions of the GC task queues")                            \
2069                                                                             \
2070   develop(bool, TraceGCTaskThread, false,                                   \
2071           "Trace actions of the GC task threads")                           \
2072                                                                             \
2073   product(bool, PrintParallelOldGCPhaseTimes, false,                        \
2074           "Print the time taken by each parallel old gc phase."             \
2075           "PrintGCDetails must also be enabled.")                           \
2076                                                                             \
2077   develop(bool, TraceParallelOldGCMarkingPhase, false,                      \
2078           "Trace parallel old gc marking phase")                            \
2079                                                                             \
2080   develop(bool, TraceParallelOldGCSummaryPhase, false,                      \
2081           "Trace parallel old gc summary phase")                            \
2082                                                                             \
2083   develop(bool, TraceParallelOldGCCompactionPhase, false,                   \
2084           "Trace parallel old gc compaction phase")                         \
2085                                                                             \
2086   develop(bool, TraceParallelOldGCDensePrefix, false,                       \
2087           "Trace parallel old gc dense prefix computation")                 \
2088                                                                             \
2089   develop(bool, IgnoreLibthreadGPFault, false,                              \
2090           "Suppress workaround for libthread GP fault")                     \
2091                                                                             \
2092   product(bool, PrintJNIGCStalls, false,                                    \
2093           "Print diagnostic message when GC is stalled"                     \
2094           "by JNI critical section")                                        \
2095                                                                             \
2096   /* JVMTI heap profiling */                                                \
2097                                                                             \
2098   diagnostic(bool, TraceJVMTIObjectTagging, false,                          \
2099           "Trace JVMTI object tagging calls")                               \
2100                                                                             \
2101   diagnostic(bool, VerifyBeforeIteration, false,                            \
2102           "Verify memory system before JVMTI iteration")                    \
2103                                                                             \
2104   /* compiler interface */                                                  \
2105                                                                             \
2106   develop(bool, CIPrintCompilerName, false,                                 \
2107           "when CIPrint is active, print the name of the active compiler")  \
2108                                                                             \
2109   develop(bool, CIPrintCompileQueue, false,                                 \
2110           "display the contents of the compile queue whenever a "           \
2111           "compilation is enqueued")                                        \
2112                                                                             \
2113   develop(bool, CIPrintRequests, false,                                     \
2114           "display every request for compilation")                          \
2115                                                                             \
2116   product(bool, CITime, false,                                              \
2117           "collect timing information for compilation")                     \
2118                                                                             \
2119   develop(bool, CITimeEach, false,                                          \
2120           "display timing information after each successful compilation")   \
2121                                                                             \
2122   develop(bool, CICountOSR, true,                                           \
2123           "use a separate counter when assigning ids to osr compilations")  \
2124                                                                             \
2125   develop(bool, CICompileNatives, true,                                     \
2126           "compile native methods if supported by the compiler")            \
2127                                                                             \
2128   develop_pd(bool, CICompileOSR,                                            \
2129           "compile on stack replacement methods if supported by the "       \
2130           "compiler")                                                       \
2131                                                                             \
2132   develop(bool, CIPrintMethodCodes, false,                                  \
2133           "print method bytecodes of the compiled code")                    \
2134                                                                             \
2135   develop(bool, CIPrintTypeFlow, false,                                     \
2136           "print the results of ciTypeFlow analysis")                       \
2137                                                                             \
2138   develop(bool, CITraceTypeFlow, false,                                     \
2139           "detailed per-bytecode tracing of ciTypeFlow analysis")           \
2140                                                                             \
2141   develop(intx, CICloneLoopTestLimit, 100,                                  \
2142           "size limit for blocks heuristically cloned in ciTypeFlow")       \
2143                                                                             \
2144   /* temp diagnostics */                                                    \
2145                                                                             \
2146   diagnostic(bool, TraceRedundantCompiles, false,                           \
2147           "Have compile broker print when a request already in the queue is"\
2148           " requested again")                                               \
2149                                                                             \
2150   diagnostic(bool, InitialCompileFast, false,                               \
2151           "Initial compile at CompLevel_fast_compile")                      \
2152                                                                             \
2153   diagnostic(bool, InitialCompileReallyFast, false,                         \
2154           "Initial compile at CompLevel_really_fast_compile (no profile)")  \
2155                                                                             \
2156   diagnostic(bool, FullProfileOnReInterpret, true,                          \
2157           "On re-interpret unc-trap compile next at CompLevel_fast_compile")\
2158                                                                             \
2159   /* compiler */                                                            \
2160                                                                             \
2161   product(intx, CICompilerCount, CI_COMPILER_COUNT,                         \
2162           "Number of compiler threads to run")                              \
2163                                                                             \
2164   product(intx, CompilationPolicyChoice, 0,                                 \
2165           "which compilation policy (0/1)")                                 \
2166                                                                             \
2167   develop(bool, UseStackBanging, true,                                      \
2168           "use stack banging for stack overflow checks (required for "      \
2169           "proper StackOverflow handling; disable only to measure cost "    \
2170           "of stackbanging)")                                               \
2171                                                                             \
2172   develop(bool, Use24BitFPMode, true,                                       \
2173           "Set 24-bit FPU mode on a per-compile basis ")                    \
2174                                                                             \
2175   develop(bool, Use24BitFP, true,                                           \
2176           "use FP instructions that produce 24-bit precise results")        \
2177                                                                             \
2178   develop(bool, UseStrictFP, true,                                          \
2179           "use strict fp if modifier strictfp is set")                      \
2180                                                                             \
2181   develop(bool, GenerateSynchronizationCode, true,                          \
2182           "generate locking/unlocking code for synchronized methods and "   \
2183           "monitors")                                                       \
2184                                                                             \
2185   develop(bool, GenerateCompilerNullChecks, true,                           \
2186           "Generate explicit null checks for loads/stores/calls")           \
2187                                                                             \
2188   develop(bool, GenerateRangeChecks, true,                                  \
2189           "Generate range checks for array accesses")                       \
2190                                                                             \
2191   develop_pd(bool, ImplicitNullChecks,                                      \
2192           "generate code for implicit null checks")                         \
2193                                                                             \
2194   product(bool, PrintSafepointStatistics, false,                            \
2195           "print statistics about safepoint synchronization")               \
2196                                                                             \
2197   product(intx, PrintSafepointStatisticsCount, 300,                         \
2198           "total number of safepoint statistics collected "                 \
2199           "before printing them out")                                       \
2200                                                                             \
2201   product(intx, PrintSafepointStatisticsTimeout,  -1,                       \
2202           "print safepoint statistics only when safepoint takes"            \
2203           " more than PrintSafepointSatisticsTimeout in millis")            \
2204                                                                             \
2205   develop(bool, InlineAccessors, true,                                      \
2206           "inline accessor methods (get/set)")                              \
2207                                                                             \
2208   product(bool, Inline, true,                                               \
2209           "enable inlining")                                                \
2210                                                                             \
2211   product(bool, ClipInlining, true,                                         \
2212           "clip inlining if aggregate method exceeds DesiredMethodLimit")   \
2213                                                                             \
2214   develop(bool, UseCHA, true,                                               \
2215           "enable CHA")                                                     \
2216                                                                             \
2217   product(bool, UseTypeProfile, true,                                       \
2218           "Check interpreter profile for historically monomorphic calls")   \
2219                                                                             \
2220   product(intx, TypeProfileMajorReceiverPercent, 90,                        \
2221           "% of major receiver type to all profiled receivers")             \
2222                                                                             \
2223   notproduct(bool, TimeCompiler, false,                                     \
2224           "time the compiler")                                              \
2225                                                                             \
2226   notproduct(bool, TimeCompiler2, false,                                    \
2227           "detailed time the compiler (requires +TimeCompiler)")            \
2228                                                                             \
2229   diagnostic(bool, PrintInlining, false,                                    \
2230           "prints inlining optimizations")                                  \
2231                                                                             \
2232   diagnostic(bool, PrintIntrinsics, false,                                  \
2233           "prints attempted and successful inlining of intrinsics")         \
2234                                                                             \
2235   product(bool, UseCountLeadingZerosInstruction, false,                     \
2236           "Use count leading zeros instruction")                            \
2237                                                                             \
2238   product(bool, UsePopCountInstruction, false,                              \
2239           "Use population count instruction")                               \
2240                                                                             \
2241   diagnostic(ccstrlist, DisableIntrinsic, "",                               \
2242           "do not expand intrinsics whose (internal) names appear here")    \
2243                                                                             \
2244   develop(bool, StressReflectiveCode, false,                                \
2245           "Use inexact types at allocations, etc., to test reflection")     \
2246                                                                             \
2247   develop(bool, EagerInitialization, false,                                 \
2248           "Eagerly initialize classes if possible")                         \
2249                                                                             \
2250   product(bool, Tier1UpdateMethodData, trueInTiered,                        \
2251           "Update methodDataOops in Tier1-generated code")                  \
2252                                                                             \
2253   develop(bool, TraceMethodReplacement, false,                              \
2254           "Print when methods are replaced do to recompilation")            \
2255                                                                             \
2256   develop(bool, PrintMethodFlushing, false,                                 \
2257           "print the nmethods being flushed")                               \
2258                                                                             \
2259   notproduct(bool, LogMultipleMutexLocking, false,                          \
2260           "log locking and unlocking of mutexes (only if multiple locks "   \
2261           "are held)")                                                      \
2262                                                                             \
2263   develop(bool, UseRelocIndex, false,                                       \
2264          "use an index to speed random access to relocations")              \
2265                                                                             \
2266   develop(bool, StressCodeBuffers, false,                                   \
2267          "Exercise code buffer expansion and other rare state changes")     \
2268                                                                             \
2269   diagnostic(bool, DebugNonSafepoints, trueInDebug,                         \
2270          "Generate extra debugging info for non-safepoints in nmethods")    \
2271                                                                             \
2272   diagnostic(bool, DebugInlinedCalls, true,                                 \
2273          "If false, restricts profiled locations to the root method only")  \
2274                                                                             \
2275   product(bool, PrintVMOptions, trueInDebug,                                \
2276          "print VM flag settings")                                          \
2277                                                                             \
2278   product(bool, IgnoreUnrecognizedVMOptions, false,                         \
2279          "Ignore unrecognized VM options")                                  \
2280                                                                             \
2281   diagnostic(bool, SerializeVMOutput, true,                                 \
2282          "Use a mutex to serialize output to tty and hotspot.log")          \
2283                                                                             \
2284   diagnostic(bool, DisplayVMOutput, true,                                   \
2285          "Display all VM output on the tty, independently of LogVMOutput")  \
2286                                                                             \
2287   diagnostic(bool, LogVMOutput, trueInDebug,                                \
2288          "Save VM output to hotspot.log, or to LogFile")                    \
2289                                                                             \
2290   diagnostic(ccstr, LogFile, NULL,                                          \
2291          "If LogVMOutput is on, save VM output to this file [hotspot.log]") \
2292                                                                             \
2293   product(ccstr, ErrorFile, NULL,                                           \
2294          "If an error occurs, save the error data to this file "            \
2295          "[default: ./hs_err_pid%p.log] (%p replaced with pid)")            \
2296                                                                             \
2297   product(bool, DisplayVMOutputToStderr, false,                             \
2298          "If DisplayVMOutput is true, display all VM output to stderr")     \
2299                                                                             \
2300   product(bool, DisplayVMOutputToStdout, false,                             \
2301          "If DisplayVMOutput is true, display all VM output to stdout")     \
2302                                                                             \
2303   product(bool, UseHeavyMonitors, false,                                    \
2304           "use heavyweight instead of lightweight Java monitors")           \
2305                                                                             \
2306   notproduct(bool, PrintSymbolTableSizeHistogram, false,                    \
2307           "print histogram of the symbol table")                            \
2308                                                                             \
2309   notproduct(bool, ExitVMOnVerifyError, false,                              \
2310           "standard exit from VM if bytecode verify error "                 \
2311           "(only in debug mode)")                                           \
2312                                                                             \
2313   notproduct(ccstr, AbortVMOnException, NULL,                               \
2314           "Call fatal if this exception is thrown.  Example: "              \
2315           "java -XX:AbortVMOnException=java.lang.NullPointerException Foo") \
2316                                                                             \
2317   develop(bool, DebugVtables, false,                                        \
2318           "add debugging code to vtable dispatch")                          \
2319                                                                             \
2320   develop(bool, PrintVtables, false,                                        \
2321           "print vtables when printing klass")                              \
2322                                                                             \
2323   notproduct(bool, PrintVtableStats, false,                                 \
2324           "print vtables stats at end of run")                              \
2325                                                                             \
2326   develop(bool, TraceCreateZombies, false,                                  \
2327           "trace creation of zombie nmethods")                              \
2328                                                                             \
2329   notproduct(bool, IgnoreLockingAssertions, false,                          \
2330           "disable locking assertions (for speed)")                         \
2331                                                                             \
2332   notproduct(bool, VerifyLoopOptimizations, false,                          \
2333           "verify major loop optimizations")                                \
2334                                                                             \
2335   product(bool, RangeCheckElimination, true,                                \
2336           "Split loop iterations to eliminate range checks")                \
2337                                                                             \
2338   develop_pd(bool, UncommonNullCast,                                        \
2339           "track occurrences of null in casts; adjust compiler tactics")    \
2340                                                                             \
2341   develop(bool, TypeProfileCasts,  true,                                    \
2342           "treat casts like calls for purposes of type profiling")          \
2343                                                                             \
2344   develop(bool, MonomorphicArrayCheck, true,                                \
2345           "Uncommon-trap array store checks that require full type check")  \
2346                                                                             \
2347   develop(bool, DelayCompilationDuringStartup, true,                        \
2348           "Delay invoking the compiler until main application class is "    \
2349           "loaded")                                                         \
2350                                                                             \
2351   develop(bool, CompileTheWorld, false,                                     \
2352           "Compile all methods in all classes in bootstrap class path "     \
2353           "(stress test)")                                                  \
2354                                                                             \
2355   develop(bool, CompileTheWorldPreloadClasses, true,                        \
2356           "Preload all classes used by a class before start loading")       \
2357                                                                             \
2358   notproduct(bool, CompileTheWorldIgnoreInitErrors, false,                  \
2359           "Compile all methods although class initializer failed")          \
2360                                                                             \
2361   develop(bool, TraceIterativeGVN, false,                                   \
2362           "Print progress during Iterative Global Value Numbering")         \
2363                                                                             \
2364   develop(bool, FillDelaySlots, true,                                       \
2365           "Fill delay slots (on SPARC only)")                               \
2366                                                                             \
2367   develop(bool, VerifyIterativeGVN, false,                                  \
2368           "Verify Def-Use modifications during sparse Iterative Global "    \
2369           "Value Numbering")                                                \
2370                                                                             \
2371   notproduct(bool, TracePhaseCCP, false,                                    \
2372           "Print progress during Conditional Constant Propagation")         \
2373                                                                             \
2374   develop(bool, TimeLivenessAnalysis, false,                                \
2375           "Time computation of bytecode liveness analysis")                 \
2376                                                                             \
2377   develop(bool, TraceLivenessGen, false,                                    \
2378           "Trace the generation of liveness analysis information")          \
2379                                                                             \
2380   notproduct(bool, TraceLivenessQuery, false,                               \
2381           "Trace queries of liveness analysis information")                 \
2382                                                                             \
2383   notproduct(bool, CollectIndexSetStatistics, false,                        \
2384           "Collect information about IndexSets")                            \
2385                                                                             \
2386   develop(bool, PrintDominators, false,                                     \
2387           "Print out dominator trees for GVN")                              \
2388                                                                             \
2389   develop(bool, UseLoopSafepoints, true,                                    \
2390           "Generate Safepoint nodes in every loop")                         \
2391                                                                             \
2392   notproduct(bool, TraceCISCSpill, false,                                   \
2393           "Trace allocators use of cisc spillable instructions")            \
2394                                                                             \
2395   notproduct(bool, TraceSpilling, false,                                    \
2396           "Trace spilling")                                                 \
2397                                                                             \
2398   develop(bool, DeutschShiffmanExceptions, true,                            \
2399           "Fast check to find exception handler for precisely typed "       \
2400           "exceptions")                                                     \
2401                                                                             \
2402   product(bool, SplitIfBlocks, true,                                        \
2403           "Clone compares and control flow through merge points to fold "   \
2404           "some branches")                                                  \
2405                                                                             \
2406   develop(intx, FastAllocateSizeLimit, 128*K,                               \
2407           /* Note:  This value is zero mod 1<<13 for a cheap sparc set. */  \
2408           "Inline allocations larger than this in doublewords must go slow")\
2409                                                                             \
2410   product(bool, AggressiveOpts, false,                                      \
2411           "Enable aggressive optimizations - see arguments.cpp")            \
2412                                                                             \
2413   product(bool, UseStringCache, false,                                      \
2414           "Enable String cache capabilities on String.java")                \
2415                                                                             \
2416   /* statistics */                                                          \
2417   develop(bool, UseVTune, false,                                            \
2418           "enable support for Intel's VTune profiler")                      \
2419                                                                             \
2420   develop(bool, CountCompiledCalls, false,                                  \
2421           "counts method invocations")                                      \
2422                                                                             \
2423   notproduct(bool, CountRuntimeCalls, false,                                \
2424           "counts VM runtime calls")                                        \
2425                                                                             \
2426   develop(bool, CountJNICalls, false,                                       \
2427           "counts jni method invocations")                                  \
2428                                                                             \
2429   notproduct(bool, CountJVMCalls, false,                                    \
2430           "counts jvm method invocations")                                  \
2431                                                                             \
2432   notproduct(bool, CountRemovableExceptions, false,                         \
2433           "count exceptions that could be replaced by branches due to "     \
2434           "inlining")                                                       \
2435                                                                             \
2436   notproduct(bool, ICMissHistogram, false,                                  \
2437           "produce histogram of IC misses")                                 \
2438                                                                             \
2439   notproduct(bool, PrintClassStatistics, false,                             \
2440           "prints class statistics at end of run")                          \
2441                                                                             \
2442   notproduct(bool, PrintMethodStatistics, false,                            \
2443           "prints method statistics at end of run")                         \
2444                                                                             \
2445   /* interpreter */                                                         \
2446   develop(bool, ClearInterpreterLocals, false,                              \
2447           "Always clear local variables of interpreter activations upon "   \
2448           "entry")                                                          \
2449                                                                             \
2450   product_pd(bool, RewriteBytecodes,                                        \
2451           "Allow rewriting of bytecodes (bytecodes are not immutable)")     \
2452                                                                             \
2453   product_pd(bool, RewriteFrequentPairs,                                    \
2454           "Rewrite frequently used bytecode pairs into a single bytecode")  \
2455                                                                             \
2456   diagnostic(bool, PrintInterpreter, false,                                 \
2457           "Prints the generated interpreter code")                          \
2458                                                                             \
2459   product(bool, UseInterpreter, true,                                       \
2460           "Use interpreter for non-compiled methods")                       \
2461                                                                             \
2462   develop(bool, UseFastSignatureHandlers, true,                             \
2463           "Use fast signature handlers for native calls")                   \
2464                                                                             \
2465   develop(bool, UseV8InstrsOnly, false,                                     \
2466           "Use SPARC-V8 Compliant instruction subset")                      \
2467                                                                             \
2468   product(bool, UseNiagaraInstrs, false,                                    \
2469           "Use Niagara-efficient instruction subset")                       \
2470                                                                             \
2471   develop(bool, UseCASForSwap, false,                                       \
2472           "Do not use swap instructions, but only CAS (in a loop) on SPARC")\
2473                                                                             \
2474   product(bool, UseLoopCounter, true,                                       \
2475           "Increment invocation counter on backward branch")                \
2476                                                                             \
2477   product(bool, UseFastEmptyMethods, true,                                  \
2478           "Use fast method entry code for empty methods")                   \
2479                                                                             \
2480   product(bool, UseFastAccessorMethods, true,                               \
2481           "Use fast method entry code for accessor methods")                \
2482                                                                             \
2483   product_pd(bool, UseOnStackReplacement,                                   \
2484            "Use on stack replacement, calls runtime if invoc. counter "     \
2485            "overflows in loop")                                             \
2486                                                                             \
2487   notproduct(bool, TraceOnStackReplacement, false,                          \
2488           "Trace on stack replacement")                                     \
2489                                                                             \
2490   develop(bool, PoisonOSREntry, true,                                       \
2491            "Detect abnormal calls to OSR code")                             \
2492                                                                             \
2493   product_pd(bool, PreferInterpreterNativeStubs,                            \
2494           "Use always interpreter stubs for native methods invoked via "    \
2495           "interpreter")                                                    \
2496                                                                             \
2497   develop(bool, CountBytecodes, false,                                      \
2498           "Count number of bytecodes executed")                             \
2499                                                                             \
2500   develop(bool, PrintBytecodeHistogram, false,                              \
2501           "Print histogram of the executed bytecodes")                      \
2502                                                                             \
2503   develop(bool, PrintBytecodePairHistogram, false,                          \
2504           "Print histogram of the executed bytecode pairs")                 \
2505                                                                             \
2506   diagnostic(bool, PrintSignatureHandlers, false,                           \
2507           "Print code generated for native method signature handlers")      \
2508                                                                             \
2509   develop(bool, VerifyOops, false,                                          \
2510           "Do plausibility checks for oops")                                \
2511                                                                             \
2512   develop(bool, CheckUnhandledOops, false,                                  \
2513           "Check for unhandled oops in VM code")                            \
2514                                                                             \
2515   develop(bool, VerifyJNIFields, trueInDebug,                               \
2516           "Verify jfieldIDs for instance fields")                           \
2517                                                                             \
2518   notproduct(bool, VerifyJNIEnvThread, false,                               \
2519           "Verify JNIEnv.thread == Thread::current() when entering VM "     \
2520           "from JNI")                                                       \
2521                                                                             \
2522   develop(bool, VerifyFPU, false,                                           \
2523           "Verify FPU state (check for NaN's, etc.)")                       \
2524                                                                             \
2525   develop(bool, VerifyThread, false,                                        \
2526           "Watch the thread register for corruption (SPARC only)")          \
2527                                                                             \
2528   develop(bool, VerifyActivationFrameSize, false,                           \
2529           "Verify that activation frame didn't become smaller than its "    \
2530           "minimal size")                                                   \
2531                                                                             \
2532   develop(bool, TraceFrequencyInlining, false,                              \
2533           "Trace frequency based inlining")                                 \
2534                                                                             \
2535   notproduct(bool, TraceTypeProfile, false,                                 \
2536           "Trace type profile")                                             \
2537                                                                             \
2538   develop_pd(bool, InlineIntrinsics,                                        \
2539            "Inline intrinsics that can be statically resolved")             \
2540                                                                             \
2541   product_pd(bool, ProfileInterpreter,                                      \
2542            "Profile at the bytecode level during interpretation")           \
2543                                                                             \
2544   develop_pd(bool, ProfileTraps,                                            \
2545           "Profile deoptimization traps at the bytecode level")             \
2546                                                                             \
2547   product(intx, ProfileMaturityPercentage, 20,                              \
2548           "number of method invocations/branches (expressed as % of "       \
2549           "CompileThreshold) before using the method's profile")            \
2550                                                                             \
2551   develop(bool, PrintMethodData, false,                                     \
2552            "Print the results of +ProfileInterpreter at end of run")        \
2553                                                                             \
2554   develop(bool, VerifyDataPointer, trueInDebug,                             \
2555           "Verify the method data pointer during interpreter profiling")    \
2556                                                                             \
2557   develop(bool, VerifyCompiledCode, false,                                  \
2558           "Include miscellaneous runtime verifications in nmethod code; "   \
2559           "default off because it disturbs nmethod size heuristics")        \
2560                                                                             \
2561                                                                             \
2562   /* compilation */                                                         \
2563   product(bool, UseCompiler, true,                                          \
2564           "use compilation")                                                \
2565                                                                             \
2566   develop(bool, TraceCompilationPolicy, false,                              \
2567           "Trace compilation policy")                                       \
2568                                                                             \
2569   develop(bool, TimeCompilationPolicy, false,                               \
2570           "Time the compilation policy")                                    \
2571                                                                             \
2572   product(bool, UseCounterDecay, true,                                      \
2573            "adjust recompilation counters")                                 \
2574                                                                             \
2575   develop(intx, CounterHalfLifeTime,    30,                                 \
2576           "half-life time of invocation counters (in secs)")                \
2577                                                                             \
2578   develop(intx, CounterDecayMinIntervalLength,   500,                       \
2579           "Min. ms. between invocation of CounterDecay")                    \
2580                                                                             \
2581   product(bool, AlwaysCompileLoopMethods, false,                            \
2582           "when using recompilation, never interpret methods "              \
2583           "containing loops")                                               \
2584                                                                             \
2585   product(bool, DontCompileHugeMethods, true,                               \
2586           "don't compile methods > HugeMethodLimit")                        \
2587                                                                             \
2588   /* Bytecode escape analysis estimation. */                                \
2589   product(bool, EstimateArgEscape, true,                                    \
2590           "Analyze bytecodes to estimate escape state of arguments")        \
2591                                                                             \
2592   product(intx, BCEATraceLevel, 0,                                          \
2593           "How much tracing to do of bytecode escape analysis estimates")   \
2594                                                                             \
2595   product(intx, MaxBCEAEstimateLevel, 5,                                    \
2596           "Maximum number of nested calls that are analyzed by BC EA.")     \
2597                                                                             \
2598   product(intx, MaxBCEAEstimateSize, 150,                                   \
2599           "Maximum bytecode size of a method to be analyzed by BC EA.")     \
2600                                                                             \
2601   product(intx,  AllocatePrefetchStyle, 1,                                  \
2602           "0 = no prefetch, "                                               \
2603           "1 = prefetch instructions for each allocation, "                 \
2604           "2 = use TLAB watermark to gate allocation prefetch")             \
2605                                                                             \
2606   product(intx,  AllocatePrefetchDistance, -1,                              \
2607           "Distance to prefetch ahead of allocation pointer")               \
2608                                                                             \
2609   product(intx,  AllocatePrefetchLines, 1,                                  \
2610           "Number of lines to prefetch ahead of allocation pointer")        \
2611                                                                             \
2612   product(intx,  AllocatePrefetchStepSize, 16,                              \
2613           "Step size in bytes of sequential prefetch instructions")         \
2614                                                                             \
2615   product(intx,  AllocatePrefetchInstr, 0,                                  \
2616           "Prefetch instruction to prefetch ahead of allocation pointer")   \
2617                                                                             \
2618   product(intx,  ReadPrefetchInstr, 0,                                      \
2619           "Prefetch instruction to prefetch ahead")                         \
2620                                                                             \
2621   /* deoptimization */                                                      \
2622   develop(bool, TraceDeoptimization, false,                                 \
2623           "Trace deoptimization")                                           \
2624                                                                             \
2625   develop(bool, DebugDeoptimization, false,                                 \
2626           "Tracing various information while debugging deoptimization")     \
2627                                                                             \
2628   product(intx, SelfDestructTimer, 0,                                       \
2629           "Will cause VM to terminate after a given time (in minutes) "     \
2630           "(0 means off)")                                                  \
2631                                                                             \
2632   product(intx, MaxJavaStackTraceDepth, 1024,                               \
2633           "Max. no. of lines in the stack trace for Java exceptions "       \
2634           "(0 means all)")                                                  \
2635                                                                             \
2636   develop(intx, GuaranteedSafepointInterval, 1000,                          \
2637           "Guarantee a safepoint (at least) every so many milliseconds "    \
2638           "(0 means none)")                                                 \
2639                                                                             \
2640   product(intx, SafepointTimeoutDelay, 10000,                               \
2641           "Delay in milliseconds for option SafepointTimeout")              \
2642                                                                             \
2643   product(intx, NmethodSweepFraction, 4,                                    \
2644           "Number of invocations of sweeper to cover all nmethods")         \
2645                                                                             \
2646   notproduct(intx, MemProfilingInterval, 500,                               \
2647           "Time between each invocation of the MemProfiler")                \
2648                                                                             \
2649   develop(intx, MallocCatchPtr, -1,                                         \
2650           "Hit breakpoint when mallocing/freeing this pointer")             \
2651                                                                             \
2652   notproduct(intx, AssertRepeat, 1,                                         \
2653           "number of times to evaluate expression in assert "               \
2654           "(to estimate overhead); only works with -DUSE_REPEATED_ASSERTS") \
2655                                                                             \
2656   notproduct(ccstrlist, SuppressErrorAt, "",                                \
2657           "List of assertions (file:line) to muzzle")                       \
2658                                                                             \
2659   notproduct(uintx, HandleAllocationLimit, 1024,                            \
2660           "Threshold for HandleMark allocation when +TraceHandleAllocation "\
2661           "is used")                                                        \
2662                                                                             \
2663   develop(uintx, TotalHandleAllocationLimit, 1024,                          \
2664           "Threshold for total handle allocation when "                     \
2665           "+TraceHandleAllocation is used")                                 \
2666                                                                             \
2667   develop(intx, StackPrintLimit, 100,                                       \
2668           "number of stack frames to print in VM-level stack dump")         \
2669                                                                             \
2670   notproduct(intx, MaxElementPrintSize, 256,                                \
2671           "maximum number of elements to print")                            \
2672                                                                             \
2673   notproduct(intx, MaxSubklassPrintSize, 4,                                 \
2674           "maximum number of subklasses to print when printing klass")      \
2675                                                                             \
2676   develop(intx, MaxInlineLevel, 9,                                          \
2677           "maximum number of nested calls that are inlined")                \
2678                                                                             \
2679   develop(intx, MaxRecursiveInlineLevel, 1,                                 \
2680           "maximum number of nested recursive calls that are inlined")      \
2681                                                                             \
2682   product_pd(intx, InlineSmallCode,                                         \
2683           "Only inline already compiled methods if their code size is "     \
2684           "less than this")                                                 \
2685                                                                             \
2686   product(intx, MaxInlineSize, 35,                                          \
2687           "maximum bytecode size of a method to be inlined")                \
2688                                                                             \
2689   product_pd(intx, FreqInlineSize,                                          \
2690           "maximum bytecode size of a frequent method to be inlined")       \
2691                                                                             \
2692   develop(intx, MaxTrivialSize, 6,                                          \
2693           "maximum bytecode size of a trivial method to be inlined")        \
2694                                                                             \
2695   develop(intx, MinInliningThreshold, 250,                                  \
2696           "min. invocation count a method needs to have to be inlined")     \
2697                                                                             \
2698   develop(intx, AlignEntryCode, 4,                                          \
2699           "aligns entry code to specified value (in bytes)")                \
2700                                                                             \
2701   develop(intx, MethodHistogramCutoff, 100,                                 \
2702           "cutoff value for method invoc. histogram (+CountCalls)")         \
2703                                                                             \
2704   develop(intx, ProfilerNumberOfInterpretedMethods, 25,                     \
2705           "# of interpreted methods to show in profile")                    \
2706                                                                             \
2707   develop(intx, ProfilerNumberOfCompiledMethods, 25,                        \
2708           "# of compiled methods to show in profile")                       \
2709                                                                             \
2710   develop(intx, ProfilerNumberOfStubMethods, 25,                            \
2711           "# of stub methods to show in profile")                           \
2712                                                                             \
2713   develop(intx, ProfilerNumberOfRuntimeStubNodes, 25,                       \
2714           "# of runtime stub nodes to show in profile")                     \
2715                                                                             \
2716   product(intx, ProfileIntervalsTicks, 100,                                 \
2717           "# of ticks between printing of interval profile "                \
2718           "(+ProfileIntervals)")                                            \
2719                                                                             \
2720   notproduct(intx, ScavengeALotInterval,     1,                             \
2721           "Interval between which scavenge will occur with +ScavengeALot")  \
2722                                                                             \
2723   notproduct(intx, FullGCALotInterval,     1,                               \
2724           "Interval between which full gc will occur with +FullGCALot")     \
2725                                                                             \
2726   notproduct(intx, FullGCALotStart,     0,                                  \
2727           "For which invocation to start FullGCAlot")                       \
2728                                                                             \
2729   notproduct(intx, FullGCALotDummies,  32*K,                                \
2730           "Dummy object allocated with +FullGCALot, forcing all objects "   \
2731           "to move")                                                        \
2732                                                                             \
2733   develop(intx, DontYieldALotInterval,    10,                               \
2734           "Interval between which yields will be dropped (milliseconds)")   \
2735                                                                             \
2736   develop(intx, MinSleepInterval,     1,                                    \
2737           "Minimum sleep() interval (milliseconds) when "                   \
2738           "ConvertSleepToYield is off (used for SOLARIS)")                  \
2739                                                                             \
2740   product(intx, EventLogLength,  2000,                                      \
2741           "maximum nof events in event log")                                \
2742                                                                             \
2743   develop(intx, ProfilerPCTickThreshold,    15,                             \
2744           "Number of ticks in a PC buckets to be a hotspot")                \
2745                                                                             \
2746   notproduct(intx, DeoptimizeALotInterval,     5,                           \
2747           "Number of exits until DeoptimizeALot kicks in")                  \
2748                                                                             \
2749   notproduct(intx, ZombieALotInterval,     5,                               \
2750           "Number of exits until ZombieALot kicks in")                      \
2751                                                                             \
2752   develop(bool, StressNonEntrant, false,                                    \
2753           "Mark nmethods non-entrant at registration")                      \
2754                                                                             \
2755   diagnostic(intx, MallocVerifyInterval,     0,                             \
2756           "if non-zero, verify C heap after every N calls to "              \
2757           "malloc/realloc/free")                                            \
2758                                                                             \
2759   diagnostic(intx, MallocVerifyStart,     0,                                \
2760           "if non-zero, start verifying C heap after Nth call to "          \
2761           "malloc/realloc/free")                                            \
2762                                                                             \
2763   product(intx, TypeProfileWidth,      2,                                   \
2764           "number of receiver types to record in call/cast profile")        \
2765                                                                             \
2766   develop(intx, BciProfileWidth,      2,                                    \
2767           "number of return bci's to record in ret profile")                \
2768                                                                             \
2769   product(intx, PerMethodRecompilationCutoff, 400,                          \
2770           "After recompiling N times, stay in the interpreter (-1=>'Inf')") \
2771                                                                             \
2772   product(intx, PerBytecodeRecompilationCutoff, 100,                        \
2773           "Per-BCI limit on repeated recompilation (-1=>'Inf')")            \
2774                                                                             \
2775   product(intx, PerMethodTrapLimit,  100,                                   \
2776           "Limit on traps (of one kind) in a method (includes inlines)")    \
2777                                                                             \
2778   product(intx, PerBytecodeTrapLimit,  4,                                   \
2779           "Limit on traps (of one kind) at a particular BCI")               \
2780                                                                             \
2781   develop(intx, FreqCountInvocations,  1,                                   \
2782           "Scaling factor for branch frequencies (deprecated)")             \
2783                                                                             \
2784   develop(intx, InlineFrequencyRatio,    20,                                \
2785           "Ratio of call site execution to caller method invocation")       \
2786                                                                             \
2787   develop_pd(intx, InlineFrequencyCount,                                    \
2788           "Count of call site execution necessary to trigger frequent "     \
2789           "inlining")                                                       \
2790                                                                             \
2791   develop(intx, InlineThrowCount,    50,                                    \
2792           "Force inlining of interpreted methods that throw this often")    \
2793                                                                             \
2794   develop(intx, InlineThrowMaxSize,   200,                                  \
2795           "Force inlining of throwing methods smaller than this")           \
2796                                                                             \
2797   product(intx, AliasLevel,     3,                                          \
2798           "0 for no aliasing, 1 for oop/field/static/array split, "         \
2799           "2 for class split, 3 for unique instances")                      \
2800                                                                             \
2801   develop(bool, VerifyAliases, false,                                       \
2802           "perform extra checks on the results of alias analysis")          \
2803                                                                             \
2804   develop(intx, ProfilerNodeSize,  1024,                                    \
2805           "Size in K to allocate for the Profile Nodes of each thread")     \
2806                                                                             \
2807   develop(intx, V8AtomicOperationUnderLockSpinCount,    50,                 \
2808           "Number of times to spin wait on a v8 atomic operation lock")     \
2809                                                                             \
2810   product(intx, ReadSpinIterations,   100,                                  \
2811           "Number of read attempts before a yield (spin inner loop)")       \
2812                                                                             \
2813   product_pd(intx, PreInflateSpin,                                          \
2814           "Number of times to spin wait before inflation")                  \
2815                                                                             \
2816   product(intx, PreBlockSpin,    10,                                        \
2817           "Number of times to spin in an inflated lock before going to "    \
2818           "an OS lock")                                                     \
2819                                                                             \
2820   /* gc parameters */                                                       \
2821   product(uintx, InitialHeapSize, 0,                                        \
2822           "Initial heap size (in bytes); zero means OldSize + NewSize")     \
2823                                                                             \
2824   product(uintx, MaxHeapSize, ScaleForWordSize(96*M),                       \
2825           "Maximum heap size (in bytes)")                                   \
2826                                                                             \
2827   product(uintx, OldSize, ScaleForWordSize(4*M),                            \
2828           "Initial tenured generation size (in bytes)")                     \
2829                                                                             \
2830   product(uintx, NewSize, ScaleForWordSize(4*M),                            \
2831           "Initial new generation size (in bytes)")                         \
2832                                                                             \
2833   product(uintx, MaxNewSize, max_uintx,                                     \
2834           "Maximum new generation size (in bytes), max_uintx means set "    \
2835           "ergonomically")                                                  \
2836                                                                             \
2837   product(uintx, PretenureSizeThreshold, 0,                                 \
2838           "Maximum size in bytes of objects allocated in DefNew "           \
2839           "generation; zero means no maximum")                              \
2840                                                                             \
2841   product(uintx, TLABSize, 0,                                               \
2842           "Starting TLAB size (in bytes); zero means set ergonomically")    \
2843                                                                             \
2844   product(uintx, MinTLABSize, 2*K,                                          \
2845           "Minimum allowed TLAB size (in bytes)")                           \
2846                                                                             \
2847   product(uintx, TLABAllocationWeight, 35,                                  \
2848           "Allocation averaging weight")                                    \
2849                                                                             \
2850   product(uintx, TLABWasteTargetPercent, 1,                                 \
2851           "Percentage of Eden that can be wasted")                          \
2852                                                                             \
2853   product(uintx, TLABRefillWasteFraction,    64,                            \
2854           "Max TLAB waste at a refill (internal fragmentation)")            \
2855                                                                             \
2856   product(uintx, TLABWasteIncrement,    4,                                  \
2857           "Increment allowed waste at slow allocation")                     \
2858                                                                             \
2859   product(intx, SurvivorRatio, 8,                                           \
2860           "Ratio of eden/survivor space size")                              \
2861                                                                             \
2862   product(intx, NewRatio, 2,                                                \
2863           "Ratio of new/old generation sizes")                              \
2864                                                                             \
2865   product(uintx, MaxLiveObjectEvacuationRatio, 100,                         \
2866           "Max percent of eden objects that will be live at scavenge")      \
2867                                                                             \
2868   product_pd(uintx, NewSizeThreadIncrease,                                  \
2869           "Additional size added to desired new generation size per "       \
2870           "non-daemon thread (in bytes)")                                   \
2871                                                                             \
2872   product_pd(uintx, PermSize,                                               \
2873           "Initial size of permanent generation (in bytes)")                \
2874                                                                             \
2875   product_pd(uintx, MaxPermSize,                                            \
2876           "Maximum size of permanent generation (in bytes)")                \
2877                                                                             \
2878   product(uintx, MinHeapFreeRatio,    40,                                   \
2879           "Min percentage of heap free after GC to avoid expansion")        \
2880                                                                             \
2881   product(uintx, MaxHeapFreeRatio,    70,                                   \
2882           "Max percentage of heap free after GC to avoid shrinking")        \
2883                                                                             \
2884   product(intx, SoftRefLRUPolicyMSPerMB, 1000,                              \
2885           "Number of milliseconds per MB of free space in the heap")        \
2886                                                                             \
2887   product(uintx, MinHeapDeltaBytes, ScaleForWordSize(128*K),                \
2888           "Min change in heap space due to GC (in bytes)")                  \
2889                                                                             \
2890   product(uintx, MinPermHeapExpansion, ScaleForWordSize(256*K),             \
2891           "Min expansion of permanent heap (in bytes)")                     \
2892                                                                             \
2893   product(uintx, MaxPermHeapExpansion, ScaleForWordSize(4*M),               \
2894           "Max expansion of permanent heap without full GC (in bytes)")     \
2895                                                                             \
2896   product(intx, QueuedAllocationWarningCount, 0,                            \
2897           "Number of times an allocation that queues behind a GC "          \
2898           "will retry before printing a warning")                           \
2899                                                                             \
2900   diagnostic(uintx, VerifyGCStartAt,   0,                                   \
2901           "GC invoke count where +VerifyBefore/AfterGC kicks in")           \
2902                                                                             \
2903   diagnostic(intx, VerifyGCLevel,     0,                                    \
2904           "Generation level at which to start +VerifyBefore/AfterGC")       \
2905                                                                             \
2906   develop(uintx, ExitAfterGCNum,   0,                                       \
2907           "If non-zero, exit after this GC.")                               \
2908                                                                             \
2909   product(intx, MaxTenuringThreshold,    15,                                \
2910           "Maximum value for tenuring threshold")                           \
2911                                                                             \
2912   product(intx, InitialTenuringThreshold,     7,                            \
2913           "Initial value for tenuring threshold")                           \
2914                                                                             \
2915   product(intx, TargetSurvivorRatio,    50,                                 \
2916           "Desired percentage of survivor space used after scavenge")       \
2917                                                                             \
2918   product(uintx, MarkSweepDeadRatio,     5,                                 \
2919           "Percentage (0-100) of the old gen allowed as dead wood."         \
2920           "Serial mark sweep treats this as both the min and max value."    \
2921           "CMS uses this value only if it falls back to mark sweep."        \
2922           "Par compact uses a variable scale based on the density of the"   \
2923           "generation and treats this as the max value when the heap is"    \
2924           "either completely full or completely empty.  Par compact also"   \
2925           "has a smaller default value; see arguments.cpp.")                \
2926                                                                             \
2927   product(uintx, PermMarkSweepDeadRatio,    20,                             \
2928           "Percentage (0-100) of the perm gen allowed as dead wood."        \
2929           "See MarkSweepDeadRatio for collector-specific comments.")        \
2930                                                                             \
2931   product(intx, MarkSweepAlwaysCompactCount,     4,                         \
2932           "How often should we fully compact the heap (ignoring the dead "  \
2933           "space parameters)")                                              \
2934                                                                             \
2935   product(intx, PrintCMSStatistics, 0,                                      \
2936           "Statistics for CMS")                                             \
2937                                                                             \
2938   product(bool, PrintCMSInitiationStatistics, false,                        \
2939           "Statistics for initiating a CMS collection")                     \
2940                                                                             \
2941   product(intx, PrintFLSStatistics, 0,                                      \
2942           "Statistics for CMS' FreeListSpace")                              \
2943                                                                             \
2944   product(intx, PrintFLSCensus, 0,                                          \
2945           "Census for CMS' FreeListSpace")                                  \
2946                                                                             \
2947   develop(uintx, GCExpandToAllocateDelayMillis, 0,                          \
2948           "Delay in ms between expansion and allocation")                   \
2949                                                                             \
2950   product(intx, DeferThrSuspendLoopCount,     4000,                         \
2951           "(Unstable) Number of times to iterate in safepoint loop "        \
2952           " before blocking VM threads ")                                   \
2953                                                                             \
2954   product(intx, DeferPollingPageLoopCount,     -1,                          \
2955           "(Unsafe,Unstable) Number of iterations in safepoint loop "       \
2956           "before changing safepoint polling page to RO ")                  \
2957                                                                             \
2958   product(intx, SafepointSpinBeforeYield, 2000,  "(Unstable)")              \
2959                                                                             \
2960   product(bool, UseDepthFirstScavengeOrder, true,                           \
2961           "true: the scavenge order will be depth-first, "                  \
2962           "false: the scavenge order will be breadth-first")                \
2963                                                                             \
2964   product(bool, PSChunkLargeArrays, true,                                   \
2965           "true: process large arrays in chunks")                           \
2966                                                                             \
2967   product(uintx, GCDrainStackTargetSize, 64,                                \
2968           "how many entries we'll try to leave on the stack during "        \
2969           "parallel GC")                                                    \
2970                                                                             \
2971   /* stack parameters */                                                    \
2972   product_pd(intx, StackYellowPages,                                        \
2973           "Number of yellow zone (recoverable overflows) pages")            \
2974                                                                             \
2975   product_pd(intx, StackRedPages,                                           \
2976           "Number of red zone (unrecoverable overflows) pages")             \
2977                                                                             \
2978   product_pd(intx, StackShadowPages,                                        \
2979           "Number of shadow zone (for overflow checking) pages"             \
2980           " this should exceed the depth of the VM and native call stack")  \
2981                                                                             \
2982   product_pd(intx, ThreadStackSize,                                         \
2983           "Thread Stack Size (in Kbytes)")                                  \
2984                                                                             \
2985   product_pd(intx, VMThreadStackSize,                                       \
2986           "Non-Java Thread Stack Size (in Kbytes)")                         \
2987                                                                             \
2988   product_pd(intx, CompilerThreadStackSize,                                 \
2989           "Compiler Thread Stack Size (in Kbytes)")                         \
2990                                                                             \
2991   develop_pd(uintx, JVMInvokeMethodSlack,                                   \
2992           "Stack space (bytes) required for JVM_InvokeMethod to complete")  \
2993                                                                             \
2994   product(uintx, ThreadSafetyMargin, 50*M,                                  \
2995           "Thread safety margin is used on fixed-stack LinuxThreads (on "   \
2996           "Linux/x86 only) to prevent heap-stack collision. Set to 0 to "   \
2997           "disable this feature")                                           \
2998                                                                             \
2999   /* code cache parameters */                                               \
3000   develop(uintx, CodeCacheSegmentSize, 64,                                  \
3001           "Code cache segment size (in bytes) - smallest unit of "          \
3002           "allocation")                                                     \
3003                                                                             \
3004   develop_pd(intx, CodeEntryAlignment,                                      \
3005           "Code entry alignment for generated code (in bytes)")             \
3006                                                                             \
3007   product_pd(uintx, InitialCodeCacheSize,                                   \
3008           "Initial code cache size (in bytes)")                             \
3009                                                                             \
3010   product_pd(uintx, ReservedCodeCacheSize,                                  \
3011           "Reserved code cache size (in bytes) - maximum code cache size")  \
3012                                                                             \
3013   product(uintx, CodeCacheMinimumFreeSpace, 500*K,                          \
3014           "When less than X space left, we stop compiling.")                \
3015                                                                             \
3016   product_pd(uintx, CodeCacheExpansionSize,                                 \
3017           "Code cache expansion size (in bytes)")                           \
3018                                                                             \
3019   develop_pd(uintx, CodeCacheMinBlockLength,                                \
3020           "Minimum number of segments in a code cache block.")              \
3021                                                                             \
3022   notproduct(bool, ExitOnFullCodeCache, false,                              \
3023           "Exit the VM if we fill the code cache.")                         \
3024                                                                             \
3025   /* interpreter debugging */                                               \
3026   develop(intx, BinarySwitchThreshold, 5,                                   \
3027           "Minimal number of lookupswitch entries for rewriting to binary " \
3028           "switch")                                                         \
3029                                                                             \
3030   develop(intx, StopInterpreterAt, 0,                                       \
3031           "Stops interpreter execution at specified bytecode number")       \
3032                                                                             \
3033   develop(intx, TraceBytecodesAt, 0,                                        \
3034           "Traces bytecodes starting with specified bytecode number")       \
3035                                                                             \
3036   /* compiler interface */                                                  \
3037   develop(intx, CIStart, 0,                                                 \
3038           "the id of the first compilation to permit")                      \
3039                                                                             \
3040   develop(intx, CIStop,    -1,                                              \
3041           "the id of the last compilation to permit")                       \
3042                                                                             \
3043   develop(intx, CIStartOSR,     0,                                          \
3044           "the id of the first osr compilation to permit "                  \
3045           "(CICountOSR must be on)")                                        \
3046                                                                             \
3047   develop(intx, CIStopOSR,    -1,                                           \
3048           "the id of the last osr compilation to permit "                   \
3049           "(CICountOSR must be on)")                                        \
3050                                                                             \
3051   develop(intx, CIBreakAtOSR,    -1,                                        \
3052           "id of osr compilation to break at")                              \
3053                                                                             \
3054   develop(intx, CIBreakAt,    -1,                                           \
3055           "id of compilation to break at")                                  \
3056                                                                             \
3057   product(ccstrlist, CompileOnly, "",                                       \
3058           "List of methods (pkg/class.name) to restrict compilation to")    \
3059                                                                             \
3060   product(ccstr, CompileCommandFile, NULL,                                  \
3061           "Read compiler commands from this file [.hotspot_compiler]")      \
3062                                                                             \
3063   product(ccstrlist, CompileCommand, "",                                    \
3064           "Prepend to .hotspot_compiler; e.g. log,java/lang/String.<init>") \
3065                                                                             \
3066   product(bool, CICompilerCountPerCPU, false,                               \
3067           "1 compiler thread for log(N CPUs)")                              \
3068                                                                             \
3069   develop(intx, CIFireOOMAt,    -1,                                         \
3070           "Fire OutOfMemoryErrors throughout CI for testing the compiler "  \
3071           "(non-negative value throws OOM after this many CI accesses "     \
3072           "in each compile)")                                               \
3073                                                                             \
3074   develop(intx, CIFireOOMAtDelay, -1,                                       \
3075           "Wait for this many CI accesses to occur in all compiles before " \
3076           "beginning to throw OutOfMemoryErrors in each compile")           \
3077                                                                             \
3078   notproduct(bool, CIObjectFactoryVerify, false,                            \
3079           "enable potentially expensive verification in ciObjectFactory")   \
3080                                                                             \
3081   /* Priorities */                                                          \
3082   product_pd(bool, UseThreadPriorities,  "Use native thread priorities")    \
3083                                                                             \
3084   product(intx, ThreadPriorityPolicy, 0,                                    \
3085           "0 : Normal.                                                     "\
3086           "    VM chooses priorities that are appropriate for normal       "\
3087           "    applications. On Solaris NORM_PRIORITY and above are mapped "\
3088           "    to normal native priority. Java priorities below NORM_PRIORITY"\
3089           "    map to lower native priority values. On Windows applications"\
3090           "    are allowed to use higher native priorities. However, with  "\
3091           "    ThreadPriorityPolicy=0, VM will not use the highest possible"\
3092           "    native priority, THREAD_PRIORITY_TIME_CRITICAL, as it may   "\
3093           "    interfere with system threads. On Linux thread priorities   "\
3094           "    are ignored because the OS does not support static priority "\
3095           "    in SCHED_OTHER scheduling class which is the only choice for"\
3096           "    non-root, non-realtime applications.                        "\
3097           "1 : Aggressive.                                                 "\
3098           "    Java thread priorities map over to the entire range of      "\
3099           "    native thread priorities. Higher Java thread priorities map "\
3100           "    to higher native thread priorities. This policy should be   "\
3101           "    used with care, as sometimes it can cause performance       "\
3102           "    degradation in the application and/or the entire system. On "\
3103           "    Linux this policy requires root privilege.")                 \
3104                                                                             \
3105   product(bool, ThreadPriorityVerbose, false,                               \
3106           "print priority changes")                                         \
3107                                                                             \
3108   product(intx, DefaultThreadPriority, -1,                                  \
3109           "what native priority threads run at if not specified elsewhere (-1 means no change)") \
3110                                                                             \
3111   product(intx, CompilerThreadPriority, -1,                                 \
3112           "what priority should compiler threads run at (-1 means no change)") \
3113                                                                             \
3114   product(intx, VMThreadPriority, -1,                                       \
3115           "what priority should VM threads run at (-1 means no change)")    \
3116                                                                             \
3117   product(bool, CompilerThreadHintNoPreempt, true,                          \
3118           "(Solaris only) Give compiler threads an extra quanta")           \
3119                                                                             \
3120   product(bool, VMThreadHintNoPreempt, false,                               \
3121           "(Solaris only) Give VM thread an extra quanta")                  \
3122                                                                             \
3123   product(intx, JavaPriority1_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3124   product(intx, JavaPriority2_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3125   product(intx, JavaPriority3_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3126   product(intx, JavaPriority4_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3127   product(intx, JavaPriority5_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3128   product(intx, JavaPriority6_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3129   product(intx, JavaPriority7_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3130   product(intx, JavaPriority8_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3131   product(intx, JavaPriority9_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3132   product(intx, JavaPriority10_To_OSPriority,-1, "Map Java priorities to OS priorities") \
3133                                                                             \
3134   /* compiler debugging */                                                  \
3135   notproduct(intx, CompileTheWorldStartAt,     1,                           \
3136           "First class to consider when using +CompileTheWorld")            \
3137                                                                             \
3138   notproduct(intx, CompileTheWorldStopAt, max_jint,                         \
3139           "Last class to consider when using +CompileTheWorld")             \
3140                                                                             \
3141   develop(intx, NewCodeParameter,      0,                                   \
3142           "Testing Only: Create a dedicated integer parameter before "      \
3143           "putback")                                                        \
3144                                                                             \
3145   /* new oopmap storage allocation */                                       \
3146   develop(intx, MinOopMapAllocation,     8,                                 \
3147           "Minimum number of OopMap entries in an OopMapSet")               \
3148                                                                             \
3149   /* Background Compilation */                                              \
3150   develop(intx, LongCompileThreshold,     50,                               \
3151           "Used with +TraceLongCompiles")                                   \
3152                                                                             \
3153   product(intx, StarvationMonitorInterval,    200,                          \
3154           "Pause between each check in ms")                                 \
3155                                                                             \
3156   /* recompilation */                                                       \
3157   product_pd(intx, CompileThreshold,                                        \
3158           "number of interpreted method invocations before (re-)compiling") \
3159                                                                             \
3160   product_pd(intx, BackEdgeThreshold,                                       \
3161           "Interpreter Back edge threshold at which an OSR compilation is invoked")\
3162                                                                             \
3163   product(intx, Tier1BytecodeLimit,      10,                                \
3164           "Must have at least this many bytecodes before tier1"             \
3165           "invocation counters are used")                                   \
3166                                                                             \
3167   product_pd(intx, Tier2CompileThreshold,                                   \
3168           "threshold at which a tier 2 compilation is invoked")             \
3169                                                                             \
3170   product_pd(intx, Tier2BackEdgeThreshold,                                  \
3171           "Back edge threshold at which a tier 2 compilation is invoked")   \
3172                                                                             \
3173   product_pd(intx, Tier3CompileThreshold,                                   \
3174           "threshold at which a tier 3 compilation is invoked")             \
3175                                                                             \
3176   product_pd(intx, Tier3BackEdgeThreshold,                                  \
3177           "Back edge threshold at which a tier 3 compilation is invoked")   \
3178                                                                             \
3179   product_pd(intx, Tier4CompileThreshold,                                   \
3180           "threshold at which a tier 4 compilation is invoked")             \
3181                                                                             \
3182   product_pd(intx, Tier4BackEdgeThreshold,                                  \
3183           "Back edge threshold at which a tier 4 compilation is invoked")   \
3184                                                                             \
3185   product_pd(bool, TieredCompilation,                                       \
3186           "Enable two-tier compilation")                                    \
3187                                                                             \
3188   product(bool, StressTieredRuntime, false,                                 \
3189           "Alternate client and server compiler on compile requests")       \
3190                                                                             \
3191   product_pd(intx, OnStackReplacePercentage,                                \
3192           "NON_TIERED number of method invocations/branches (expressed as %"\
3193           "of CompileThreshold) before (re-)compiling OSR code")            \
3194                                                                             \
3195   product(intx, InterpreterProfilePercentage, 33,                           \
3196           "NON_TIERED number of method invocations/branches (expressed as %"\
3197           "of CompileThreshold) before profiling in the interpreter")       \
3198                                                                             \
3199   develop(intx, MaxRecompilationSearchLength,    10,                        \
3200           "max. # frames to inspect searching for recompilee")              \
3201                                                                             \
3202   develop(intx, MaxInterpretedSearchLength,     3,                          \
3203           "max. # interp. frames to skip when searching for recompilee")    \
3204                                                                             \
3205   develop(intx, DesiredMethodLimit,  8000,                                  \
3206           "desired max. method size (in bytecodes) after inlining")         \
3207                                                                             \
3208   develop(intx, HugeMethodLimit,  8000,                                     \
3209           "don't compile methods larger than this if "                      \
3210           "+DontCompileHugeMethods")                                        \
3211                                                                             \
3212   /* New JDK 1.4 reflection implementation */                               \
3213                                                                             \
3214   develop(bool, UseNewReflection, true,                                     \
3215           "Temporary flag for transition to reflection based on dynamic "   \
3216           "bytecode generation in 1.4; can no longer be turned off in 1.4 " \
3217           "JDK, and is unneeded in 1.3 JDK, but marks most places VM "      \
3218           "changes were needed")                                            \
3219                                                                             \
3220   develop(bool, VerifyReflectionBytecodes, false,                           \
3221           "Force verification of 1.4 reflection bytecodes. Does not work "  \
3222           "in situations like that described in 4486457 or for "            \
3223           "constructors generated for serialization, so can not be enabled "\
3224           "in product.")                                                    \
3225                                                                             \
3226   product(bool, ReflectionWrapResolutionErrors, true,                       \
3227           "Temporary flag for transition to AbstractMethodError wrapped "   \
3228           "in InvocationTargetException. See 6531596")                      \
3229                                                                             \
3230                                                                             \
3231   develop(intx, FastSuperclassLimit, 8,                                     \
3232           "Depth of hardwired instanceof accelerator array")                \
3233                                                                             \
3234   /* Properties for Java libraries  */                                      \
3235                                                                             \
3236   product(intx, MaxDirectMemorySize, -1,                                    \
3237           "Maximum total size of NIO direct-buffer allocations")            \
3238                                                                             \
3239   /* temporary developer defined flags  */                                  \
3240                                                                             \
3241   diagnostic(bool, UseNewCode, false,                                       \
3242           "Testing Only: Use the new version while testing")                \
3243                                                                             \
3244   diagnostic(bool, UseNewCode2, false,                                      \
3245           "Testing Only: Use the new version while testing")                \
3246                                                                             \
3247   diagnostic(bool, UseNewCode3, false,                                      \
3248           "Testing Only: Use the new version while testing")                \
3249                                                                             \
3250   /* flags for performance data collection */                               \
3251                                                                             \
3252   product(bool, UsePerfData, true,                                          \
3253           "Flag to disable jvmstat instrumentation for performance testing" \
3254           "and problem isolation purposes.")                                \
3255                                                                             \
3256   product(bool, PerfDataSaveToFile, false,                                  \
3257           "Save PerfData memory to hsperfdata_<pid> file on exit")          \
3258                                                                             \
3259   product(ccstr, PerfDataSaveFile, NULL,                                    \
3260           "Save PerfData memory to the specified absolute pathname,"        \
3261            "%p in the file name if present will be replaced by pid")        \
3262                                                                             \
3263   product(intx, PerfDataSamplingInterval, 50 /*ms*/,                        \
3264           "Data sampling interval in milliseconds")                         \
3265                                                                             \
3266   develop(bool, PerfTraceDataCreation, false,                               \
3267           "Trace creation of Performance Data Entries")                     \
3268                                                                             \
3269   develop(bool, PerfTraceMemOps, false,                                     \
3270           "Trace PerfMemory create/attach/detach calls")                    \
3271                                                                             \
3272   product(bool, PerfDisableSharedMem, false,                                \
3273           "Store performance data in standard memory")                      \
3274                                                                             \
3275   product(intx, PerfDataMemorySize, 32*K,                                   \
3276           "Size of performance data memory region. Will be rounded "        \
3277           "up to a multiple of the native os page size.")                   \
3278                                                                             \
3279   product(intx, PerfMaxStringConstLength, 1024,                             \
3280           "Maximum PerfStringConstant string length before truncation")     \
3281                                                                             \
3282   product(bool, PerfAllowAtExitRegistration, false,                         \
3283           "Allow registration of atexit() methods")                         \
3284                                                                             \
3285   product(bool, PerfBypassFileSystemCheck, false,                           \
3286           "Bypass Win32 file system criteria checks (Windows Only)")        \
3287                                                                             \
3288   product(intx, UnguardOnExecutionViolation, 0,                             \
3289           "Unguard page and retry on no-execute fault (Win32 only)"         \
3290           "0=off, 1=conservative, 2=aggressive")                            \
3291                                                                             \
3292   /* Serviceability Support */                                              \
3293                                                                             \
3294   product(bool, ManagementServer, false,                                    \
3295           "Create JMX Management Server")                                   \
3296                                                                             \
3297   product(bool, DisableAttachMechanism, false,                              \
3298          "Disable mechanism that allows tools to attach to this VM")        \
3299                                                                             \
3300   product(bool, StartAttachListener, false,                                 \
3301           "Always start Attach Listener at VM startup")                     \
3302                                                                             \
3303   manageable(bool, PrintConcurrentLocks, false,                             \
3304           "Print java.util.concurrent locks in thread dump")                \
3305                                                                             \
3306   /* Shared spaces */                                                       \
3307                                                                             \
3308   product(bool, UseSharedSpaces, true,                                      \
3309           "Use shared spaces in the permanent generation")                  \
3310                                                                             \
3311   product(bool, RequireSharedSpaces, false,                                 \
3312           "Require shared spaces in the permanent generation")              \
3313                                                                             \
3314   product(bool, ForceSharedSpaces, false,                                   \
3315           "Require shared spaces in the permanent generation")              \
3316                                                                             \
3317   product(bool, DumpSharedSpaces, false,                                    \
3318            "Special mode: JVM reads a class list, loads classes, builds "   \
3319             "shared spaces, and dumps the shared spaces to a file to be "   \
3320             "used in future JVM runs.")                                     \
3321                                                                             \
3322   product(bool, PrintSharedSpaces, false,                                   \
3323           "Print usage of shared spaces")                                   \
3324                                                                             \
3325   product(uintx, SharedDummyBlockSize, 512*M,                               \
3326           "Size of dummy block used to shift heap addresses (in bytes)")    \
3327                                                                             \
3328   product(uintx, SharedReadWriteSize,  12*M,                                \
3329           "Size of read-write space in permanent generation (in bytes)")    \
3330                                                                             \
3331   product(uintx, SharedReadOnlySize,   10*M,                                \
3332           "Size of read-only space in permanent generation (in bytes)")     \
3333                                                                             \
3334   product(uintx, SharedMiscDataSize,    4*M,                                \
3335           "Size of the shared data area adjacent to the heap (in bytes)")   \
3336                                                                             \
3337   product(uintx, SharedMiscCodeSize,    4*M,                                \
3338           "Size of the shared code area adjacent to the heap (in bytes)")   \
3339                                                                             \
3340   diagnostic(bool, SharedOptimizeColdStart, true,                           \
3341           "At dump time, order shared objects to achieve better "           \
3342           "cold startup time.")                                             \
3343                                                                             \
3344   develop(intx, SharedOptimizeColdStartPolicy, 2,                           \
3345           "Reordering policy for SharedOptimizeColdStart "                  \
3346           "0=favor classload-time locality, 1=balanced, "                   \
3347           "2=favor runtime locality")                                       \
3348                                                                             \
3349   diagnostic(bool, SharedSkipVerify, false,                                 \
3350           "Skip assert() and verify() which page-in unwanted shared "       \
3351           "objects. ")                                                      \
3352                                                                             \
3353   product(bool, AnonymousClasses, false,                                    \
3354           "support sun.misc.Unsafe.defineAnonymousClass")                   \
3355                                                                             \
3356   experimental(bool, EnableMethodHandles, false,                            \
3357           "support method handles (true by default under JSR 292)")         \
3358                                                                             \
3359   diagnostic(intx, MethodHandlePushLimit, 3,                                \
3360           "number of additional stack slots a method handle may push")      \
3361                                                                             \
3362   develop(bool, TraceMethodHandles, false,                                  \
3363           "trace internal method handle operations")                        \
3364                                                                             \
3365   diagnostic(bool, VerifyMethodHandles, trueInDebug,                        \
3366           "perform extra checks when constructing method handles")          \
3367                                                                             \
3368   diagnostic(bool, OptimizeMethodHandles, true,                             \
3369           "when constructing method handles, try to improve them")          \
3370                                                                             \
3371   experimental(bool, EnableInvokeDynamic, false,                            \
3372           "recognize the invokedynamic instruction")                        \
3373                                                                             \
3374   develop(bool, TraceInvokeDynamic, false,                                  \
3375           "trace internal invoke dynamic operations")                       \
3376                                                                             \
3377   product(bool, TaggedStackInterpreter, false,                              \
3378           "Insert tags in interpreter execution stack for oopmap generaion")\
3379                                                                             \
3380   diagnostic(bool, PauseAtStartup,      false,                              \
3381           "Causes the VM to pause at startup time and wait for the pause "  \
3382           "file to be removed (default: ./vm.paused.<pid>)")                \
3383                                                                             \
3384   diagnostic(ccstr, PauseAtStartupFile, NULL,                               \
3385           "The file to create and for whose removal to await when pausing " \
3386           "at startup. (default: ./vm.paused.<pid>)")                       \
3387                                                                             \
3388   product(bool, ExtendedDTraceProbes,    false,                             \
3389           "Enable performance-impacting dtrace probes")                     \
3390                                                                             \
3391   product(bool, DTraceMethodProbes, false,                                  \
3392           "Enable dtrace probes for method-entry and method-exit")          \
3393                                                                             \
3394   product(bool, DTraceAllocProbes, false,                                   \
3395           "Enable dtrace probes for object allocation")                     \
3396                                                                             \
3397   product(bool, DTraceMonitorProbes, false,                                 \
3398           "Enable dtrace probes for monitor events")                        \
3399                                                                             \
3400   product(bool, RelaxAccessControlCheck, false,                             \
3401           "Relax the access control checks in the verifier")                \
3402                                                                             \
3403   diagnostic(bool, PrintDTraceDOF, false,                                   \
3404              "Print the DTrace DOF passed to the system for JSDT probes")   \
3405                                                                             \
3406   product(bool, UseVMInterruptibleIO, false,                                \
3407           "(Unstable, Solaris-specific) Thread interrupt before or with "   \
3408           "EINTR for I/O operations results in OS_INTRPT. The default value"\
3409           " of this flag is true for JDK 6 and earliers")
3410 
3411 
3412 /*
3413  *  Macros for factoring of globals
3414  */
3415 
3416 // Interface macros
3417 #define DECLARE_PRODUCT_FLAG(type, name, value, doc)    extern "C" type name;
3418 #define DECLARE_PD_PRODUCT_FLAG(type, name, doc)        extern "C" type name;
3419 #define DECLARE_DIAGNOSTIC_FLAG(type, name, value, doc) extern "C" type name;
3420 #define DECLARE_EXPERIMENTAL_FLAG(type, name, value, doc) extern "C" type name;
3421 #define DECLARE_MANAGEABLE_FLAG(type, name, value, doc) extern "C" type name;
3422 #define DECLARE_PRODUCT_RW_FLAG(type, name, value, doc) extern "C" type name;
3423 #ifdef PRODUCT
3424 #define DECLARE_DEVELOPER_FLAG(type, name, value, doc)  const type name = value;
3425 #define DECLARE_PD_DEVELOPER_FLAG(type, name, doc)      const type name = pd_##name;
3426 #define DECLARE_NOTPRODUCT_FLAG(type, name, value, doc)
3427 #else
3428 #define DECLARE_DEVELOPER_FLAG(type, name, value, doc)  extern "C" type name;
3429 #define DECLARE_PD_DEVELOPER_FLAG(type, name, doc)      extern "C" type name;
3430 #define DECLARE_NOTPRODUCT_FLAG(type, name, value, doc)  extern "C" type name;
3431 #endif
3432 // Special LP64 flags, product only needed for now.
3433 #ifdef _LP64
3434 #define DECLARE_LP64_PRODUCT_FLAG(type, name, value, doc) extern "C" type name;
3435 #else
3436 #define DECLARE_LP64_PRODUCT_FLAG(type, name, value, doc) const type name = value;
3437 #endif // _LP64
3438 
3439 // Implementation macros
3440 #define MATERIALIZE_PRODUCT_FLAG(type, name, value, doc)   type name = value;
3441 #define MATERIALIZE_PD_PRODUCT_FLAG(type, name, doc)       type name = pd_##name;
3442 #define MATERIALIZE_DIAGNOSTIC_FLAG(type, name, value, doc) type name = value;
3443 #define MATERIALIZE_EXPERIMENTAL_FLAG(type, name, value, doc) type name = value;
3444 #define MATERIALIZE_MANAGEABLE_FLAG(type, name, value, doc) type name = value;
3445 #define MATERIALIZE_PRODUCT_RW_FLAG(type, name, value, doc) type name = value;
3446 #ifdef PRODUCT
3447 #define MATERIALIZE_DEVELOPER_FLAG(type, name, value, doc) /* flag name is constant */
3448 #define MATERIALIZE_PD_DEVELOPER_FLAG(type, name, doc)     /* flag name is constant */
3449 #define MATERIALIZE_NOTPRODUCT_FLAG(type, name, value, doc)
3450 #else
3451 #define MATERIALIZE_DEVELOPER_FLAG(type, name, value, doc) type name = value;
3452 #define MATERIALIZE_PD_DEVELOPER_FLAG(type, name, doc)     type name = pd_##name;
3453 #define MATERIALIZE_NOTPRODUCT_FLAG(type, name, value, doc) type name = value;
3454 #endif
3455 #ifdef _LP64
3456 #define MATERIALIZE_LP64_PRODUCT_FLAG(type, name, value, doc)   type name = value;
3457 #else
3458 #define MATERIALIZE_LP64_PRODUCT_FLAG(type, name, value, doc) /* flag is constant */
3459 #endif // _LP64
3460 
3461 RUNTIME_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_DIAGNOSTIC_FLAG, DECLARE_EXPERIMENTAL_FLAG, DECLARE_NOTPRODUCT_FLAG, DECLARE_MANAGEABLE_FLAG, DECLARE_PRODUCT_RW_FLAG, DECLARE_LP64_PRODUCT_FLAG)
3462 
3463 RUNTIME_OS_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_DIAGNOSTIC_FLAG, DECLARE_NOTPRODUCT_FLAG)