1 /*
   2  * Copyright (c) 1997, 2018, Oracle and/or its affiliates. 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_RUNTIME_GLOBALS_HPP
  26 #define SHARE_VM_RUNTIME_GLOBALS_HPP
  27 
  28 #include "gc/shared/gc_globals.hpp"
  29 #include "utilities/align.hpp"
  30 #include "utilities/globalDefinitions.hpp"
  31 #include "utilities/macros.hpp"
  32 
  33 #include <float.h> // for DBL_MAX
  34 
  35 // The larger HeapWordSize for 64bit requires larger heaps
  36 // for the same application running in 64bit.  See bug 4967770.
  37 // The minimum alignment to a heap word size is done.  Other
  38 // parts of the memory system may require additional alignment
  39 // and are responsible for those alignments.
  40 #ifdef _LP64
  41 #define ScaleForWordSize(x) align_down_((x) * 13 / 10, HeapWordSize)
  42 #else
  43 #define ScaleForWordSize(x) (x)
  44 #endif
  45 
  46 // use this for flags that are true per default in the tiered build
  47 // but false in non-tiered builds, and vice versa
  48 #ifdef TIERED
  49 #define  trueInTiered true
  50 #define falseInTiered false
  51 #else
  52 #define  trueInTiered false
  53 #define falseInTiered true
  54 #endif
  55 
  56 #include CPU_HEADER(globals)
  57 #include OS_HEADER(globals)
  58 #include OS_CPU_HEADER(globals)
  59 #ifdef COMPILER1
  60 #include CPU_HEADER(c1_globals)
  61 #include OS_HEADER(c1_globals)
  62 #endif
  63 #ifdef COMPILER2
  64 #include CPU_HEADER(c2_globals)
  65 #include OS_HEADER(c2_globals)
  66 #endif
  67 
  68 #if !defined(COMPILER1) && !defined(COMPILER2) && !INCLUDE_JVMCI
  69 define_pd_global(bool, BackgroundCompilation,        false);
  70 define_pd_global(bool, UseTLAB,                      false);
  71 define_pd_global(bool, CICompileOSR,                 false);
  72 define_pd_global(bool, UseTypeProfile,               false);
  73 define_pd_global(bool, UseOnStackReplacement,        false);
  74 define_pd_global(bool, InlineIntrinsics,             false);
  75 define_pd_global(bool, PreferInterpreterNativeStubs, true);
  76 define_pd_global(bool, ProfileInterpreter,           false);
  77 define_pd_global(bool, ProfileTraps,                 false);
  78 define_pd_global(bool, TieredCompilation,            false);
  79 
  80 define_pd_global(intx, CompileThreshold,             0);
  81 
  82 define_pd_global(intx,   OnStackReplacePercentage,   0);
  83 define_pd_global(bool,   ResizeTLAB,                 false);
  84 define_pd_global(intx,   FreqInlineSize,             0);
  85 define_pd_global(size_t, NewSizeThreadIncrease,      4*K);
  86 define_pd_global(bool,   InlineClassNatives,         true);
  87 define_pd_global(bool,   InlineUnsafeOps,            true);
  88 define_pd_global(uintx,  InitialCodeCacheSize,       160*K);
  89 define_pd_global(uintx,  ReservedCodeCacheSize,      32*M);
  90 define_pd_global(uintx,  NonProfiledCodeHeapSize,    0);
  91 define_pd_global(uintx,  ProfiledCodeHeapSize,       0);
  92 define_pd_global(uintx,  NonNMethodCodeHeapSize,     32*M);
  93 
  94 define_pd_global(uintx,  CodeCacheExpansionSize,     32*K);
  95 define_pd_global(uintx,  CodeCacheMinBlockLength,    1);
  96 define_pd_global(uintx,  CodeCacheMinimumUseSpace,   200*K);
  97 define_pd_global(size_t, MetaspaceSize,              ScaleForWordSize(4*M));
  98 define_pd_global(bool, NeverActAsServerClassMachine, true);
  99 define_pd_global(uint64_t,MaxRAM,                    1ULL*G);
 100 #define CI_COMPILER_COUNT 0
 101 #else
 102 
 103 #if COMPILER2_OR_JVMCI
 104 #define CI_COMPILER_COUNT 2
 105 #else
 106 #define CI_COMPILER_COUNT 1
 107 #endif // COMPILER2_OR_JVMCI
 108 
 109 #endif // no compilers
 110 
 111 // use this for flags that are true by default in the debug version but
 112 // false in the optimized version, and vice versa
 113 #ifdef ASSERT
 114 #define trueInDebug  true
 115 #define falseInDebug false
 116 #else
 117 #define trueInDebug  false
 118 #define falseInDebug true
 119 #endif
 120 
 121 // use this for flags that are true per default in the product build
 122 // but false in development builds, and vice versa
 123 #ifdef PRODUCT
 124 #define trueInProduct  true
 125 #define falseInProduct false
 126 #else
 127 #define trueInProduct  false
 128 #define falseInProduct true
 129 #endif
 130 
 131 // develop flags are settable / visible only during development and are constant in the PRODUCT version
 132 // product flags are always settable / visible
 133 // notproduct flags are settable / visible only during development and are not declared in the PRODUCT version
 134 
 135 // A flag must be declared with one of the following types:
 136 // bool, int, uint, intx, uintx, size_t, ccstr, double, or uint64_t.
 137 // The type "ccstr" is an alias for "const char*" and is used
 138 // only in this file, because the macrology requires single-token type names.
 139 
 140 // Note: Diagnostic options not meant for VM tuning or for product modes.
 141 // They are to be used for VM quality assurance or field diagnosis
 142 // of VM bugs.  They are hidden so that users will not be encouraged to
 143 // try them as if they were VM ordinary execution options.  However, they
 144 // are available in the product version of the VM.  Under instruction
 145 // from support engineers, VM customers can turn them on to collect
 146 // diagnostic information about VM problems.  To use a VM diagnostic
 147 // option, you must first specify +UnlockDiagnosticVMOptions.
 148 // (This master switch also affects the behavior of -Xprintflags.)
 149 //
 150 // experimental flags are in support of features that are not
 151 //    part of the officially supported product, but are available
 152 //    for experimenting with. They could, for example, be performance
 153 //    features that may not have undergone full or rigorous QA, but which may
 154 //    help performance in some cases and released for experimentation
 155 //    by the community of users and developers. This flag also allows one to
 156 //    be able to build a fully supported product that nonetheless also
 157 //    ships with some unsupported, lightly tested, experimental features.
 158 //    Like the UnlockDiagnosticVMOptions flag above, there is a corresponding
 159 //    UnlockExperimentalVMOptions flag, which allows the control and
 160 //    modification of the experimental flags.
 161 //
 162 // Nota bene: neither diagnostic nor experimental options should be used casually,
 163 //    and they are not supported on production loads, except under explicit
 164 //    direction from support engineers.
 165 //
 166 // manageable flags are writeable external product flags.
 167 //    They are dynamically writeable through the JDK management interface
 168 //    (com.sun.management.HotSpotDiagnosticMXBean API) and also through JConsole.
 169 //    These flags are external exported interface (see CCC).  The list of
 170 //    manageable flags can be queried programmatically through the management
 171 //    interface.
 172 //
 173 //    A flag can be made as "manageable" only if
 174 //    - the flag is defined in a CCC as an external exported interface.
 175 //    - the VM implementation supports dynamic setting of the flag.
 176 //      This implies that the VM must *always* query the flag variable
 177 //      and not reuse state related to the flag state at any given time.
 178 //    - you want the flag to be queried programmatically by the customers.
 179 //
 180 // product_rw flags are writeable internal product flags.
 181 //    They are like "manageable" flags but for internal/private use.
 182 //    The list of product_rw flags are internal/private flags which
 183 //    may be changed/removed in a future release.  It can be set
 184 //    through the management interface to get/set value
 185 //    when the name of flag is supplied.
 186 //
 187 //    A flag can be made as "product_rw" only if
 188 //    - the VM implementation supports dynamic setting of the flag.
 189 //      This implies that the VM must *always* query the flag variable
 190 //      and not reuse state related to the flag state at any given time.
 191 //
 192 // Note that when there is a need to support develop flags to be writeable,
 193 // it can be done in the same way as product_rw.
 194 //
 195 // range is a macro that will expand to min and max arguments for range
 196 //    checking code if provided - see jvmFlagRangeList.hpp
 197 //
 198 // constraint is a macro that will expand to custom function call
 199 //    for constraint checking if provided - see jvmFlagConstraintList.hpp
 200 //
 201 // writeable is a macro that controls if and how the value can change during the runtime
 202 //
 203 // writeable(Always) is optional and allows the flag to have its value changed
 204 //    without any limitations at any time
 205 //
 206 // writeable(Once) flag value's can be only set once during the lifetime of VM
 207 //
 208 // writeable(CommandLineOnly) flag value's can be only set from command line
 209 //    (multiple times allowed)
 210 //
 211 
 212 
 213 #define RUNTIME_FLAGS(develop, \
 214                       develop_pd, \
 215                       product, \
 216                       product_pd, \
 217                       diagnostic, \
 218                       diagnostic_pd, \
 219                       experimental, \
 220                       notproduct, \
 221                       manageable, \
 222                       product_rw, \
 223                       lp64_product, \
 224                       range, \
 225                       constraint, \
 226                       writeable) \
 227                                                                             \
 228   lp64_product(bool, UseCompressedOops, false,                              \
 229           "Use 32-bit object references in 64-bit VM. "                     \
 230           "lp64_product means flag is always constant in 32 bit VM")        \
 231                                                                             \
 232   lp64_product(bool, UseCompressedClassPointers, false,                     \
 233           "Use 32-bit class pointers in 64-bit VM. "                        \
 234           "lp64_product means flag is always constant in 32 bit VM")        \
 235                                                                             \
 236   notproduct(bool, CheckCompressedOops, true,                               \
 237           "Generate checks in encoding/decoding code in debug VM")          \
 238                                                                             \
 239   product(uintx, HeapSearchSteps, 3 PPC64_ONLY(+17),                        \
 240           "Heap allocation steps through preferred address regions to find" \
 241           " where it can allocate the heap. Number of steps to take per "   \
 242           "region.")                                                        \
 243           range(1, max_uintx)                                               \
 244                                                                             \
 245   lp64_product(intx, ObjectAlignmentInBytes, 8,                             \
 246           "Default object alignment in bytes, 8 is minimum")                \
 247           range(8, 256)                                                     \
 248           constraint(ObjectAlignmentInBytesConstraintFunc,AtParse)          \
 249                                                                             \
 250   develop(bool, CleanChunkPoolAsync, true,                                  \
 251           "Clean the chunk pool asynchronously")                            \
 252                                                                             \
 253   product_pd(bool, ThreadLocalHandshakes,                                   \
 254           "Use thread-local polls instead of global poll for safepoints.")  \
 255           constraint(ThreadLocalHandshakesConstraintFunc,AfterErgo)         \
 256                                                                             \
 257   diagnostic(uint, HandshakeTimeout, 0,                                     \
 258           "If nonzero set a timeout in milliseconds for handshakes")        \
 259                                                                             \
 260   experimental(bool, AlwaysSafeConstructors, false,                         \
 261           "Force safe construction, as if all fields are final.")           \
 262                                                                             \
 263   diagnostic(bool, UnlockDiagnosticVMOptions, trueInDebug,                  \
 264           "Enable normal processing of flags relating to field diagnostics")\
 265                                                                             \
 266   experimental(bool, UnlockExperimentalVMOptions, false,                    \
 267           "Enable normal processing of flags relating to experimental "     \
 268           "features")                                                       \
 269                                                                             \
 270   product(bool, JavaMonitorsInStackTrace, true,                             \
 271           "Print information about Java monitor locks when the stacks are"  \
 272           "dumped")                                                         \
 273                                                                             \
 274   product_pd(bool, UseLargePages,                                           \
 275           "Use large page memory")                                          \
 276                                                                             \
 277   product_pd(bool, UseLargePagesIndividualAllocation,                       \
 278           "Allocate large pages individually for better affinity")          \
 279                                                                             \
 280   develop(bool, LargePagesIndividualAllocationInjectError, false,           \
 281           "Fail large pages individual allocation")                         \
 282                                                                             \
 283   product(bool, UseLargePagesInMetaspace, false,                            \
 284           "Use large page memory in metaspace. "                            \
 285           "Only used if UseLargePages is enabled.")                         \
 286                                                                             \
 287   product(bool, UseNUMA, false,                                             \
 288           "Use NUMA if available")                                          \
 289                                                                             \
 290   product(bool, UseNUMAInterleaving, false,                                 \
 291           "Interleave memory across NUMA nodes if available")               \
 292                                                                             \
 293   product(size_t, NUMAInterleaveGranularity, 2*M,                           \
 294           "Granularity to use for NUMA interleaving on Windows OS")         \
 295           range(os::vm_allocation_granularity(), NOT_LP64(2*G) LP64_ONLY(8192*G)) \
 296                                                                             \
 297   product(bool, ForceNUMA, false,                                           \
 298           "Force NUMA optimizations on single-node/UMA systems")            \
 299                                                                             \
 300   product(uintx, NUMAChunkResizeWeight, 20,                                 \
 301           "Percentage (0-100) used to weight the current sample when "      \
 302           "computing exponentially decaying average for "                   \
 303           "AdaptiveNUMAChunkSizing")                                        \
 304           range(0, 100)                                                     \
 305                                                                             \
 306   product(size_t, NUMASpaceResizeRate, 1*G,                                 \
 307           "Do not reallocate more than this amount per collection")         \
 308           range(0, max_uintx)                                               \
 309                                                                             \
 310   product(bool, UseAdaptiveNUMAChunkSizing, true,                           \
 311           "Enable adaptive chunk sizing for NUMA")                          \
 312                                                                             \
 313   product(bool, NUMAStats, false,                                           \
 314           "Print NUMA stats in detailed heap information")                  \
 315                                                                             \
 316   product(uintx, NUMAPageScanRate, 256,                                     \
 317           "Maximum number of pages to include in the page scan procedure")  \
 318           range(0, max_uintx)                                               \
 319                                                                             \
 320   product_pd(bool, NeedsDeoptSuspend,                                       \
 321           "True for register window machines (sparc/ia64)")                 \
 322                                                                             \
 323   product(intx, UseSSE, 99,                                                 \
 324           "Highest supported SSE instructions set on x86/x64")              \
 325           range(0, 99)                                                      \
 326                                                                             \
 327   product(bool, UseAES, false,                                              \
 328           "Control whether AES instructions are used when available")       \
 329                                                                             \
 330   product(bool, UseFMA, false,                                              \
 331           "Control whether FMA instructions are used when available")       \
 332                                                                             \
 333   product(bool, UseSHA, false,                                              \
 334           "Control whether SHA instructions are used when available")       \
 335                                                                             \
 336   diagnostic(bool, UseGHASHIntrinsics, false,                               \
 337           "Use intrinsics for GHASH versions of crypto")                    \
 338                                                                             \
 339   product(bool, UseBASE64Intrinsics, false,                                 \
 340           "Use intrinsics for java.util.Base64")                            \
 341                                                                             \
 342   product(size_t, LargePageSizeInBytes, 0,                                  \
 343           "Large page size (0 to let VM choose the page size)")             \
 344           range(0, max_uintx)                                               \
 345                                                                             \
 346   product(size_t, LargePageHeapSizeThreshold, 128*M,                        \
 347           "Use large pages if maximum heap is at least this big")           \
 348           range(0, max_uintx)                                               \
 349                                                                             \
 350   product(bool, ForceTimeHighResolution, false,                             \
 351           "Using high time resolution (for Win32 only)")                    \
 352                                                                             \
 353   develop(bool, TracePcPatching, false,                                     \
 354           "Trace usage of frame::patch_pc")                                 \
 355                                                                             \
 356   develop(bool, TraceRelocator, false,                                      \
 357           "Trace the bytecode relocator")                                   \
 358                                                                             \
 359   develop(bool, TraceLongCompiles, false,                                   \
 360           "Print out every time compilation is longer than "                \
 361           "a given threshold")                                              \
 362                                                                             \
 363   develop(bool, SafepointALot, false,                                       \
 364           "Generate a lot of safepoints. This works with "                  \
 365           "GuaranteedSafepointInterval")                                    \
 366                                                                             \
 367   product_pd(bool, BackgroundCompilation,                                   \
 368           "A thread requesting compilation is not blocked during "          \
 369           "compilation")                                                    \
 370                                                                             \
 371   product(bool, PrintVMQWaitTime, false,                                    \
 372           "Print out the waiting time in VM operation queue")               \
 373                                                                             \
 374   product(bool, MethodFlushing, true,                                       \
 375           "Reclamation of zombie and not-entrant methods")                  \
 376                                                                             \
 377   develop(bool, VerifyStack, false,                                         \
 378           "Verify stack of each thread when it is entering a runtime call") \
 379                                                                             \
 380   diagnostic(bool, ForceUnreachable, false,                                 \
 381           "Make all non code cache addresses to be unreachable by "         \
 382           "forcing use of 64bit literal fixups")                            \
 383                                                                             \
 384   notproduct(bool, StressDerivedPointers, false,                            \
 385           "Force scavenge when a derived pointer is detected on stack "     \
 386           "after rtm call")                                                 \
 387                                                                             \
 388   develop(bool, TraceDerivedPointers, false,                                \
 389           "Trace traversal of derived pointers on stack")                   \
 390                                                                             \
 391   notproduct(bool, TraceCodeBlobStacks, false,                              \
 392           "Trace stack-walk of codeblobs")                                  \
 393                                                                             \
 394   product(bool, PrintJNIResolving, false,                                   \
 395           "Used to implement -v:jni")                                       \
 396                                                                             \
 397   notproduct(bool, PrintRewrites, false,                                    \
 398           "Print methods that are being rewritten")                         \
 399                                                                             \
 400   product(bool, UseInlineCaches, true,                                      \
 401           "Use Inline Caches for virtual calls ")                           \
 402                                                                             \
 403   diagnostic(bool, InlineArrayCopy, true,                                   \
 404           "Inline arraycopy native that is known to be part of "            \
 405           "base library DLL")                                               \
 406                                                                             \
 407   diagnostic(bool, InlineObjectHash, true,                                  \
 408           "Inline Object::hashCode() native that is known to be part "      \
 409           "of base library DLL")                                            \
 410                                                                             \
 411   diagnostic(bool, InlineNatives, true,                                     \
 412           "Inline natives that are known to be part of base library DLL")   \
 413                                                                             \
 414   diagnostic(bool, InlineMathNatives, true,                                 \
 415           "Inline SinD, CosD, etc.")                                        \
 416                                                                             \
 417   diagnostic(bool, InlineClassNatives, true,                                \
 418           "Inline Class.isInstance, etc")                                   \
 419                                                                             \
 420   diagnostic(bool, InlineThreadNatives, true,                               \
 421           "Inline Thread.currentThread, etc")                               \
 422                                                                             \
 423   diagnostic(bool, InlineUnsafeOps, true,                                   \
 424           "Inline memory ops (native methods) from Unsafe")                 \
 425                                                                             \
 426   product(bool, CriticalJNINatives, true,                                   \
 427           "Check for critical JNI entry points")                            \
 428                                                                             \
 429   notproduct(bool, StressCriticalJNINatives, false,                         \
 430           "Exercise register saving code in critical natives")              \
 431                                                                             \
 432   diagnostic(bool, UseAESIntrinsics, false,                                 \
 433           "Use intrinsics for AES versions of crypto")                      \
 434                                                                             \
 435   diagnostic(bool, UseAESCTRIntrinsics, false,                              \
 436           "Use intrinsics for the paralleled version of AES/CTR crypto")    \
 437                                                                             \
 438   diagnostic(bool, UseSHA1Intrinsics, false,                                \
 439           "Use intrinsics for SHA-1 crypto hash function. "                 \
 440           "Requires that UseSHA is enabled.")                               \
 441                                                                             \
 442   diagnostic(bool, UseSHA256Intrinsics, false,                              \
 443           "Use intrinsics for SHA-224 and SHA-256 crypto hash functions. "  \
 444           "Requires that UseSHA is enabled.")                               \
 445                                                                             \
 446   diagnostic(bool, UseSHA512Intrinsics, false,                              \
 447           "Use intrinsics for SHA-384 and SHA-512 crypto hash functions. "  \
 448           "Requires that UseSHA is enabled.")                               \
 449                                                                             \
 450   diagnostic(bool, UseCRC32Intrinsics, false,                               \
 451           "use intrinsics for java.util.zip.CRC32")                         \
 452                                                                             \
 453   diagnostic(bool, UseCRC32CIntrinsics, false,                              \
 454           "use intrinsics for java.util.zip.CRC32C")                        \
 455                                                                             \
 456   diagnostic(bool, UseAdler32Intrinsics, false,                             \
 457           "use intrinsics for java.util.zip.Adler32")                       \
 458                                                                             \
 459   diagnostic(bool, UseVectorizedMismatchIntrinsic, false,                   \
 460           "Enables intrinsification of ArraysSupport.vectorizedMismatch()") \
 461                                                                             \
 462   diagnostic(ccstrlist, DisableIntrinsic, "",                               \
 463          "do not expand intrinsics whose (internal) names appear here")     \
 464                                                                             \
 465   develop(bool, TraceCallFixup, false,                                      \
 466           "Trace all call fixups")                                          \
 467                                                                             \
 468   develop(bool, DeoptimizeALot, false,                                      \
 469           "Deoptimize at every exit from the runtime system")               \
 470                                                                             \
 471   notproduct(ccstrlist, DeoptimizeOnlyAt, "",                               \
 472           "A comma separated list of bcis to deoptimize at")                \
 473                                                                             \
 474   product(bool, DeoptimizeRandom, false,                                    \
 475           "Deoptimize random frames on random exit from the runtime system")\
 476                                                                             \
 477   notproduct(bool, ZombieALot, false,                                       \
 478           "Create zombies (non-entrant) at exit from the runtime system")   \
 479                                                                             \
 480   notproduct(bool, WalkStackALot, false,                                    \
 481           "Trace stack (no print) at every exit from the runtime system")   \
 482                                                                             \
 483   product(bool, Debugging, false,                                           \
 484           "Set when executing debug methods in debug.cpp "                  \
 485           "(to prevent triggering assertions)")                             \
 486                                                                             \
 487   notproduct(bool, StrictSafepointChecks, trueInDebug,                      \
 488           "Enable strict checks that safepoints cannot happen for threads " \
 489           "that use NoSafepointVerifier")                                   \
 490                                                                             \
 491   notproduct(bool, VerifyLastFrame, false,                                  \
 492           "Verify oops on last frame on entry to VM")                       \
 493                                                                             \
 494   product(bool, FailOverToOldVerifier, true,                                \
 495           "Fail over to old verifier when split verifier fails")            \
 496                                                                             \
 497   product(bool, SafepointTimeout, false,                                    \
 498           "Time out and warn or fail after SafepointTimeoutDelay "          \
 499           "milliseconds if failed to reach safepoint")                      \
 500                                                                             \
 501   diagnostic(bool, AbortVMOnSafepointTimeout, false,                        \
 502           "Abort upon failure to reach safepoint (see SafepointTimeout)")   \
 503                                                                             \
 504   /* 50 retries * (5 * current_retry_count) millis = ~6.375 seconds */      \
 505   /* typically, at most a few retries are needed                    */      \
 506   product(intx, SuspendRetryCount, 50,                                      \
 507           "Maximum retry count for an external suspend request")            \
 508           range(0, max_intx)                                                \
 509                                                                             \
 510   product(intx, SuspendRetryDelay, 5,                                       \
 511           "Milliseconds to delay per retry (* current_retry_count)")        \
 512           range(0, max_intx)                                                \
 513                                                                             \
 514   product(bool, AssertOnSuspendWaitFailure, false,                          \
 515           "Assert/Guarantee on external suspend wait failure")              \
 516                                                                             \
 517   product(bool, TraceSuspendWaitFailures, false,                            \
 518           "Trace external suspend wait failures")                           \
 519                                                                             \
 520   product(bool, MaxFDLimit, true,                                           \
 521           "Bump the number of file descriptors to maximum in Solaris")      \
 522                                                                             \
 523   diagnostic(bool, LogEvents, true,                                         \
 524           "Enable the various ring buffer event logs")                      \
 525                                                                             \
 526   diagnostic(uintx, LogEventsBufferEntries, 10,                             \
 527           "Number of ring buffer event logs")                               \
 528           range(1, NOT_LP64(1*K) LP64_ONLY(1*M))                            \
 529                                                                             \
 530   product(bool, BytecodeVerificationRemote, true,                           \
 531           "Enable the Java bytecode verifier for remote classes")           \
 532                                                                             \
 533   product(bool, BytecodeVerificationLocal, false,                           \
 534           "Enable the Java bytecode verifier for local classes")            \
 535                                                                             \
 536   develop(bool, ForceFloatExceptions, trueInDebug,                          \
 537           "Force exceptions on FP stack under/overflow")                    \
 538                                                                             \
 539   develop(bool, VerifyStackAtCalls, false,                                  \
 540           "Verify that the stack pointer is unchanged after calls")         \
 541                                                                             \
 542   develop(bool, TraceJavaAssertions, false,                                 \
 543           "Trace java language assertions")                                 \
 544                                                                             \
 545   notproduct(bool, VerifyCodeCache, false,                                  \
 546           "Verify code cache on memory allocation/deallocation")            \
 547                                                                             \
 548   develop(bool, UseMallocOnly, false,                                       \
 549           "Use only malloc/free for allocation (no resource area/arena)")   \
 550                                                                             \
 551   develop(bool, PrintMallocStatistics, false,                               \
 552           "Print malloc/free statistics")                                   \
 553                                                                             \
 554   develop(bool, ZapResourceArea, trueInDebug,                               \
 555           "Zap freed resource/arena space with 0xABABABAB")                 \
 556                                                                             \
 557   notproduct(bool, ZapVMHandleArea, trueInDebug,                            \
 558           "Zap freed VM handle space with 0xBCBCBCBC")                      \
 559                                                                             \
 560   notproduct(bool, ZapStackSegments, trueInDebug,                           \
 561           "Zap allocated/freed stack segments with 0xFADFADED")             \
 562                                                                             \
 563   develop(bool, ZapUnusedHeapArea, trueInDebug,                             \
 564           "Zap unused heap space with 0xBAADBABE")                          \
 565                                                                             \
 566   develop(bool, CheckZapUnusedHeapArea, false,                              \
 567           "Check zapping of unused heap space")                             \
 568                                                                             \
 569   develop(bool, ZapFillerObjects, trueInDebug,                              \
 570           "Zap filler objects with 0xDEAFBABE")                             \
 571                                                                             \
 572   develop(bool, PrintVMMessages, true,                                      \
 573           "Print VM messages on console")                                   \
 574                                                                             \
 575   notproduct(uintx, ErrorHandlerTest, 0,                                    \
 576           "If > 0, provokes an error after VM initialization; the value "   \
 577           "determines which error to provoke. See test_error_handler() "    \
 578           "in vmError.cpp.")                                                \
 579                                                                             \
 580   notproduct(uintx, TestCrashInErrorHandler, 0,                             \
 581           "If > 0, provokes an error inside VM error handler (a secondary " \
 582           "crash). see test_error_handler() in vmError.cpp")                \
 583                                                                             \
 584   notproduct(bool, TestSafeFetchInErrorHandler, false,                      \
 585           "If true, tests SafeFetch inside error handler.")                 \
 586                                                                             \
 587   notproduct(bool, TestUnresponsiveErrorHandler, false,                     \
 588           "If true, simulates an unresponsive error handler.")              \
 589                                                                             \
 590   develop(bool, Verbose, false,                                             \
 591           "Print additional debugging information from other modes")        \
 592                                                                             \
 593   develop(bool, PrintMiscellaneous, false,                                  \
 594           "Print uncategorized debugging information (requires +Verbose)")  \
 595                                                                             \
 596   develop(bool, WizardMode, false,                                          \
 597           "Print much more debugging information")                          \
 598                                                                             \
 599   product(bool, ShowMessageBoxOnError, false,                               \
 600           "Keep process alive on VM fatal error")                           \
 601                                                                             \
 602   product(bool, CreateCoredumpOnCrash, true,                                \
 603           "Create core/mini dump on VM fatal error")                        \
 604                                                                             \
 605   product(uint64_t, ErrorLogTimeout, 2 * 60,                                \
 606           "Timeout, in seconds, to limit the time spent on writing an "     \
 607           "error log in case of a crash.")                                  \
 608           range(0, (uint64_t)max_jlong/1000)                                \
 609                                                                             \
 610   product_pd(bool, UseOSErrorReporting,                                     \
 611           "Let VM fatal error propagate to the OS (ie. WER on Windows)")    \
 612                                                                             \
 613   product(bool, SuppressFatalErrorMessage, false,                           \
 614           "Report NO fatal error message (avoid deadlock)")                 \
 615                                                                             \
 616   product(ccstrlist, OnError, "",                                           \
 617           "Run user-defined commands on fatal error; see VMError.cpp "      \
 618           "for examples")                                                   \
 619                                                                             \
 620   product(ccstrlist, OnOutOfMemoryError, "",                                \
 621           "Run user-defined commands on first java.lang.OutOfMemoryError")  \
 622                                                                             \
 623   manageable(bool, HeapDumpBeforeFullGC, false,                             \
 624           "Dump heap to file before any major stop-the-world GC")           \
 625                                                                             \
 626   manageable(bool, HeapDumpAfterFullGC, false,                              \
 627           "Dump heap to file after any major stop-the-world GC")            \
 628                                                                             \
 629   manageable(bool, HeapDumpOnOutOfMemoryError, false,                       \
 630           "Dump heap to file when java.lang.OutOfMemoryError is thrown")    \
 631                                                                             \
 632   manageable(ccstr, HeapDumpPath, NULL,                                     \
 633           "When HeapDumpOnOutOfMemoryError is on, the path (filename or "   \
 634           "directory) of the dump file (defaults to java_pid<pid>.hprof "   \
 635           "in the working directory)")                                      \
 636                                                                             \
 637   develop(bool, BreakAtWarning, false,                                      \
 638           "Execute breakpoint upon encountering VM warning")                \
 639                                                                             \
 640   develop(bool, UseFakeTimers, false,                                       \
 641           "Tell whether the VM should use system time or a fake timer")     \
 642                                                                             \
 643   product(ccstr, NativeMemoryTracking, "off",                               \
 644           "Native memory tracking options")                                 \
 645                                                                             \
 646   diagnostic(bool, PrintNMTStatistics, false,                               \
 647           "Print native memory tracking summary data if it is on")          \
 648                                                                             \
 649   diagnostic(bool, LogCompilation, false,                                   \
 650           "Log compilation activity in detail to LogFile")                  \
 651                                                                             \
 652   product(bool, PrintCompilation, false,                                    \
 653           "Print compilations")                                             \
 654                                                                             \
 655   product(bool, PrintExtendedThreadInfo, false,                             \
 656           "Print more information in thread dump")                          \
 657                                                                             \
 658   diagnostic(bool, TraceNMethodInstalls, false,                             \
 659           "Trace nmethod installation")                                     \
 660                                                                             \
 661   diagnostic(intx, ScavengeRootsInCode, 2,                                  \
 662           "0: do not allow scavengable oops in the code cache; "            \
 663           "1: allow scavenging from the code cache; "                       \
 664           "2: emit as many constants as the compiler can see")              \
 665           range(0, 2)                                                       \
 666                                                                             \
 667   product(bool, AlwaysRestoreFPU, false,                                    \
 668           "Restore the FPU control word after every JNI call (expensive)")  \
 669                                                                             \
 670   diagnostic(bool, PrintCompilation2, false,                                \
 671           "Print additional statistics per compilation")                    \
 672                                                                             \
 673   diagnostic(bool, PrintAdapterHandlers, false,                             \
 674           "Print code generated for i2c/c2i adapters")                      \
 675                                                                             \
 676   diagnostic(bool, VerifyAdapterCalls, trueInDebug,                         \
 677           "Verify that i2c/c2i adapters are called properly")               \
 678                                                                             \
 679   develop(bool, VerifyAdapterSharing, false,                                \
 680           "Verify that the code for shared adapters is the equivalent")     \
 681                                                                             \
 682   diagnostic(bool, PrintAssembly, false,                                    \
 683           "Print assembly code (using external disassembler.so)")           \
 684                                                                             \
 685   diagnostic(ccstr, PrintAssemblyOptions, NULL,                             \
 686           "Print options string passed to disassembler.so")                 \
 687                                                                             \
 688   notproduct(bool, PrintNMethodStatistics, false,                           \
 689           "Print a summary statistic for the generated nmethods")           \
 690                                                                             \
 691   diagnostic(bool, PrintNMethods, false,                                    \
 692           "Print assembly code for nmethods when generated")                \
 693                                                                             \
 694   diagnostic(bool, PrintNativeNMethods, false,                              \
 695           "Print assembly code for native nmethods when generated")         \
 696                                                                             \
 697   develop(bool, PrintDebugInfo, false,                                      \
 698           "Print debug information for all nmethods when generated")        \
 699                                                                             \
 700   develop(bool, PrintRelocations, false,                                    \
 701           "Print relocation information for all nmethods when generated")   \
 702                                                                             \
 703   develop(bool, PrintDependencies, false,                                   \
 704           "Print dependency information for all nmethods when generated")   \
 705                                                                             \
 706   develop(bool, PrintExceptionHandlers, false,                              \
 707           "Print exception handler tables for all nmethods when generated") \
 708                                                                             \
 709   develop(bool, StressCompiledExceptionHandlers, false,                     \
 710           "Exercise compiled exception handlers")                           \
 711                                                                             \
 712   develop(bool, InterceptOSException, false,                                \
 713           "Start debugger when an implicit OS (e.g. NULL) "                 \
 714           "exception happens")                                              \
 715                                                                             \
 716   product(bool, PrintCodeCache, false,                                      \
 717           "Print the code cache memory usage when exiting")                 \
 718                                                                             \
 719   develop(bool, PrintCodeCache2, false,                                     \
 720           "Print detailed usage information on the code cache when exiting")\
 721                                                                             \
 722   product(bool, PrintCodeCacheOnCompilation, false,                         \
 723           "Print the code cache memory usage each time a method is "        \
 724           "compiled")                                                       \
 725                                                                             \
 726   diagnostic(bool, PrintCodeHeapAnalysis, false,                            \
 727           "Print code heap usage statistics on exit and on full condition") \
 728                                                                             \
 729   diagnostic(bool, PrintStubCode, false,                                    \
 730           "Print generated stub code")                                      \
 731                                                                             \
 732   product(bool, StackTraceInThrowable, true,                                \
 733           "Collect backtrace in throwable when exception happens")          \
 734                                                                             \
 735   product(bool, OmitStackTraceInFastThrow, true,                            \
 736           "Omit backtraces for some 'hot' exceptions in optimized code")    \
 737                                                                             \
 738   product(bool, ProfilerPrintByteCodeStatistics, false,                     \
 739           "Print bytecode statistics when dumping profiler output")         \
 740                                                                             \
 741   product(bool, ProfilerRecordPC, false,                                    \
 742           "Collect ticks for each 16 byte interval of compiled code")       \
 743                                                                             \
 744   product(bool, ProfileVM, false,                                           \
 745           "Profile ticks that fall within VM (either in the VM Thread "     \
 746           "or VM code called through stubs)")                               \
 747                                                                             \
 748   product(bool, ProfileIntervals, false,                                    \
 749           "Print profiles for each interval (see ProfileIntervalsTicks)")   \
 750                                                                             \
 751   notproduct(bool, ProfilerCheckIntervals, false,                           \
 752           "Collect and print information on spacing of profiler ticks")     \
 753                                                                             \
 754   product(bool, PrintWarnings, true,                                        \
 755           "Print JVM warnings to output stream")                            \
 756                                                                             \
 757   notproduct(uintx, WarnOnStalledSpinLock, 0,                               \
 758           "Print warnings for stalled SpinLocks")                           \
 759                                                                             \
 760   product(bool, RegisterFinalizersAtInit, true,                             \
 761           "Register finalizable objects at end of Object.<init> or "        \
 762           "after allocation")                                               \
 763                                                                             \
 764   develop(bool, RegisterReferences, true,                                   \
 765           "Tell whether the VM should register soft/weak/final/phantom "    \
 766           "references")                                                     \
 767                                                                             \
 768   develop(bool, IgnoreRewrites, false,                                      \
 769           "Suppress rewrites of bytecodes in the oopmap generator. "        \
 770           "This is unsafe!")                                                \
 771                                                                             \
 772   develop(bool, PrintCodeCacheExtension, false,                             \
 773           "Print extension of code cache")                                  \
 774                                                                             \
 775   develop(bool, UsePrivilegedStack, true,                                   \
 776           "Enable the security JVM functions")                              \
 777                                                                             \
 778   develop(bool, ProtectionDomainVerification, true,                         \
 779           "Verify protection domain before resolution in system dictionary")\
 780                                                                             \
 781   product(bool, ClassUnloading, true,                                       \
 782           "Do unloading of classes")                                        \
 783                                                                             \
 784   product(bool, ClassUnloadingWithConcurrentMark, true,                     \
 785           "Do unloading of classes with a concurrent marking cycle")        \
 786                                                                             \
 787   develop(bool, DisableStartThread, false,                                  \
 788           "Disable starting of additional Java threads "                    \
 789           "(for debugging only)")                                           \
 790                                                                             \
 791   develop(bool, MemProfiling, false,                                        \
 792           "Write memory usage profiling to log file")                       \
 793                                                                             \
 794   notproduct(bool, PrintSystemDictionaryAtExit, false,                      \
 795           "Print the system dictionary at exit")                            \
 796                                                                             \
 797   diagnostic(bool, DynamicallyResizeSystemDictionaries, true,               \
 798           "Dynamically resize system dictionaries as needed")               \
 799                                                                             \
 800   product(bool, AlwaysLockClassLoader, false,                               \
 801           "Require the VM to acquire the class loader lock before calling " \
 802           "loadClass() even for class loaders registering "                 \
 803           "as parallel capable")                                            \
 804                                                                             \
 805   product(bool, AllowParallelDefineClass, false,                            \
 806           "Allow parallel defineClass requests for class loaders "          \
 807           "registering as parallel capable")                                \
 808                                                                             \
 809   product_pd(bool, DontYieldALot,                                           \
 810           "Throw away obvious excess yield calls")                          \
 811                                                                             \
 812   develop(bool, UseDetachedThreads, true,                                   \
 813           "Use detached threads that are recycled upon termination "        \
 814           "(for Solaris only)")                                             \
 815                                                                             \
 816   experimental(bool, DisablePrimordialThreadGuardPages, false,              \
 817                "Disable the use of stack guard pages if the JVM is loaded " \
 818                "on the primordial process thread")                          \
 819                                                                             \
 820   product(bool, UseLWPSynchronization, true,                                \
 821           "Use LWP-based instead of libthread-based synchronization "       \
 822           "(SPARC only)")                                                   \
 823                                                                             \
 824   product(intx, MonitorBound, 0, "Bound Monitor population")                \
 825           range(0, max_jint)                                                \
 826                                                                             \
 827   experimental(intx, MonitorUsedDeflationThreshold, 90,                     \
 828                 "Percentage of used monitors before triggering cleanup "    \
 829                 "safepoint which deflates monitors (0 is off). "            \
 830                 "The check is performed on GuaranteedSafepointInterval.")   \
 831                 range(0, 100)                                               \
 832                                                                             \
 833   experimental(intx, hashCode, 5,                                           \
 834                "(Unstable) select hashCode generation algorithm")           \
 835                                                                             \
 836   product(bool, FilterSpuriousWakeups, true,                                \
 837           "When true prevents OS-level spurious, or premature, wakeups "    \
 838           "from Object.wait (Ignored for Windows)")                         \
 839                                                                             \
 840   develop(bool, UsePthreads, false,                                         \
 841           "Use pthread-based instead of libthread-based synchronization "   \
 842           "(SPARC only)")                                                   \
 843                                                                             \
 844   product(bool, ReduceSignalUsage, false,                                   \
 845           "Reduce the use of OS signals in Java and/or the VM")             \
 846                                                                             \
 847   develop_pd(bool, ShareVtableStubs,                                        \
 848           "Share vtable stubs (smaller code but worse branch prediction")   \
 849                                                                             \
 850   develop(bool, LoadLineNumberTables, true,                                 \
 851           "Tell whether the class file parser loads line number tables")    \
 852                                                                             \
 853   develop(bool, LoadLocalVariableTables, true,                              \
 854           "Tell whether the class file parser loads local variable tables") \
 855                                                                             \
 856   develop(bool, LoadLocalVariableTypeTables, true,                          \
 857           "Tell whether the class file parser loads local variable type"    \
 858           "tables")                                                         \
 859                                                                             \
 860   product(bool, AllowUserSignalHandlers, false,                             \
 861           "Do not complain if the application installs signal handlers "    \
 862           "(Solaris & Linux only)")                                         \
 863                                                                             \
 864   product(bool, UseSignalChaining, true,                                    \
 865           "Use signal-chaining to invoke signal handlers installed "        \
 866           "by the application (Solaris & Linux only)")                      \
 867                                                                             \
 868   product(bool, AllowJNIEnvProxy, false,                                    \
 869           "Allow JNIEnv proxies for jdbx")                                  \
 870                                                                             \
 871   product(bool, RestoreMXCSROnJNICalls, false,                              \
 872           "Restore MXCSR when returning from JNI calls")                    \
 873                                                                             \
 874   product(bool, CheckJNICalls, false,                                       \
 875           "Verify all arguments to JNI calls")                              \
 876                                                                             \
 877   product(bool, UseFastJNIAccessors, true,                                  \
 878           "Use optimized versions of Get<Primitive>Field")                  \
 879                                                                             \
 880   product(intx, MaxJNILocalCapacity, 65536,                                 \
 881           "Maximum allowable local JNI handle capacity to "                 \
 882           "EnsureLocalCapacity() and PushLocalFrame(), "                    \
 883           "where <= 0 is unlimited, default: 65536")                        \
 884           range(min_intx, max_intx)                                         \
 885                                                                             \
 886   product(bool, EagerXrunInit, false,                                       \
 887           "Eagerly initialize -Xrun libraries; allows startup profiling, "  \
 888           "but not all -Xrun libraries may support the state of the VM "    \
 889           "at this time")                                                   \
 890                                                                             \
 891   product(bool, PreserveAllAnnotations, false,                              \
 892           "Preserve RuntimeInvisibleAnnotations as well "                   \
 893           "as RuntimeVisibleAnnotations")                                   \
 894                                                                             \
 895   develop(uintx, PreallocatedOutOfMemoryErrorCount, 4,                      \
 896           "Number of OutOfMemoryErrors preallocated with backtrace")        \
 897                                                                             \
 898   product(bool, UseXMMForArrayCopy, false,                                  \
 899           "Use SSE2 MOVQ instruction for Arraycopy")                        \
 900                                                                             \
 901   product(intx, FieldsAllocationStyle, 1,                                   \
 902           "0 - type based with oops first, "                                \
 903           "1 - with oops last, "                                            \
 904           "2 - oops in super and sub classes are together")                 \
 905           range(0, 2)                                                       \
 906                                                                             \
 907   product(bool, CompactFields, true,                                        \
 908           "Allocate nonstatic fields in gaps between previous fields")      \
 909                                                                             \
 910   notproduct(bool, PrintFieldLayout, false,                                 \
 911           "Print field layout for each class")                              \
 912                                                                             \
 913   /* Need to limit the extent of the padding to reasonable size.          */\
 914   /* 8K is well beyond the reasonable HW cache line size, even with       */\
 915   /* aggressive prefetching, while still leaving the room for segregating */\
 916   /* among the distinct pages.                                            */\
 917   product(intx, ContendedPaddingWidth, 128,                                 \
 918           "How many bytes to pad the fields/classes marked @Contended with")\
 919           range(0, 8192)                                                    \
 920           constraint(ContendedPaddingWidthConstraintFunc,AfterErgo)         \
 921                                                                             \
 922   product(bool, EnableContended, true,                                      \
 923           "Enable @Contended annotation support")                           \
 924                                                                             \
 925   product(bool, RestrictContended, true,                                    \
 926           "Restrict @Contended to trusted classes")                         \
 927                                                                             \
 928   product(bool, UseBiasedLocking, true,                                     \
 929           "Enable biased locking in JVM")                                   \
 930                                                                             \
 931   product(intx, BiasedLockingStartupDelay, 0,                               \
 932           "Number of milliseconds to wait before enabling biased locking")  \
 933           range(0, (intx)(max_jint-(max_jint%PeriodicTask::interval_gran))) \
 934           constraint(BiasedLockingStartupDelayFunc,AfterErgo)               \
 935                                                                             \
 936   diagnostic(bool, PrintBiasedLockingStatistics, false,                     \
 937           "Print statistics of biased locking in JVM")                      \
 938                                                                             \
 939   product(intx, BiasedLockingBulkRebiasThreshold, 20,                       \
 940           "Threshold of number of revocations per type to try to "          \
 941           "rebias all objects in the heap of that type")                    \
 942           range(0, max_intx)                                                \
 943           constraint(BiasedLockingBulkRebiasThresholdFunc,AfterErgo)        \
 944                                                                             \
 945   product(intx, BiasedLockingBulkRevokeThreshold, 40,                       \
 946           "Threshold of number of revocations per type to permanently "     \
 947           "revoke biases of all objects in the heap of that type")          \
 948           range(0, max_intx)                                                \
 949           constraint(BiasedLockingBulkRevokeThresholdFunc,AfterErgo)        \
 950                                                                             \
 951   product(intx, BiasedLockingDecayTime, 25000,                              \
 952           "Decay time (in milliseconds) to re-enable bulk rebiasing of a "  \
 953           "type after previous bulk rebias")                                \
 954           range(500, max_intx)                                              \
 955           constraint(BiasedLockingDecayTimeFunc,AfterErgo)                  \
 956                                                                             \
 957   product(bool, ExitOnOutOfMemoryError, false,                              \
 958           "JVM exits on the first occurrence of an out-of-memory error")    \
 959                                                                             \
 960   product(bool, CrashOnOutOfMemoryError, false,                             \
 961           "JVM aborts, producing an error log and core/mini dump, on the "  \
 962           "first occurrence of an out-of-memory error")                     \
 963                                                                             \
 964   /* tracing */                                                             \
 965                                                                             \
 966   develop(bool, StressRewriter, false,                                      \
 967           "Stress linktime bytecode rewriting")                             \
 968                                                                             \
 969   product(ccstr, TraceJVMTI, NULL,                                          \
 970           "Trace flags for JVMTI functions and events")                     \
 971                                                                             \
 972   /* This option can change an EMCP method into an obsolete method. */      \
 973   /* This can affect tests that except specific methods to be EMCP. */      \
 974   /* This option should be used with caution.                       */      \
 975   product(bool, StressLdcRewrite, false,                                    \
 976           "Force ldc -> ldc_w rewrite during RedefineClasses")              \
 977                                                                             \
 978   /* change to false by default sometime after Mustang */                   \
 979   product(bool, VerifyMergedCPBytecodes, true,                              \
 980           "Verify bytecodes after RedefineClasses constant pool merging")   \
 981                                                                             \
 982   develop(bool, TraceBytecodes, false,                                      \
 983           "Trace bytecode execution")                                       \
 984                                                                             \
 985   develop(bool, TraceICs, false,                                            \
 986           "Trace inline cache changes")                                     \
 987                                                                             \
 988   notproduct(bool, TraceInvocationCounterOverflow, false,                   \
 989           "Trace method invocation counter overflow")                       \
 990                                                                             \
 991   develop(bool, TraceInlineCacheClearing, false,                            \
 992           "Trace clearing of inline caches in nmethods")                    \
 993                                                                             \
 994   develop(bool, TraceDependencies, false,                                   \
 995           "Trace dependencies")                                             \
 996                                                                             \
 997   develop(bool, VerifyDependencies, trueInDebug,                            \
 998           "Exercise and verify the compilation dependency mechanism")       \
 999                                                                             \
1000   develop(bool, TraceNewOopMapGeneration, false,                            \
1001           "Trace OopMapGeneration")                                         \
1002                                                                             \
1003   develop(bool, TraceNewOopMapGenerationDetailed, false,                    \
1004           "Trace OopMapGeneration: print detailed cell states")             \
1005                                                                             \
1006   develop(bool, TimeOopMap, false,                                          \
1007           "Time calls to GenerateOopMap::compute_map() in sum")             \
1008                                                                             \
1009   develop(bool, TimeOopMap2, false,                                         \
1010           "Time calls to GenerateOopMap::compute_map() individually")       \
1011                                                                             \
1012   develop(bool, TraceOopMapRewrites, false,                                 \
1013           "Trace rewriting of method oops during oop map generation")       \
1014                                                                             \
1015   develop(bool, TraceICBuffer, false,                                       \
1016           "Trace usage of IC buffer")                                       \
1017                                                                             \
1018   develop(bool, TraceCompiledIC, false,                                     \
1019           "Trace changes of compiled IC")                                   \
1020                                                                             \
1021   develop(bool, FLSVerifyDictionary, false,                                 \
1022           "Do lots of (expensive) FLS dictionary verification")             \
1023                                                                             \
1024                                                                             \
1025   notproduct(bool, CheckMemoryInitialization, false,                        \
1026           "Check memory initialization")                                    \
1027                                                                             \
1028   product(uintx, ProcessDistributionStride, 4,                              \
1029           "Stride through processors when distributing processes")          \
1030           range(0, max_juint)                                               \
1031                                                                             \
1032   develop(bool, TraceFinalizerRegistration, false,                          \
1033           "Trace registration of final references")                         \
1034                                                                             \
1035   product(bool, IgnoreEmptyClassPaths, false,                               \
1036           "Ignore empty path elements in -classpath")                       \
1037                                                                             \
1038   product(size_t, InitialBootClassLoaderMetaspaceSize,                      \
1039           NOT_LP64(2200*K) LP64_ONLY(4*M),                                  \
1040           "Initial size of the boot class loader data metaspace")           \
1041           range(30*K, max_uintx/BytesPerWord)                               \
1042           constraint(InitialBootClassLoaderMetaspaceSizeConstraintFunc, AfterErgo)\
1043                                                                             \
1044   product(bool, PrintHeapAtSIGBREAK, true,                                  \
1045           "Print heap layout in response to SIGBREAK")                      \
1046                                                                             \
1047   manageable(bool, PrintClassHistogram, false,                              \
1048           "Print a histogram of class instances")                           \
1049                                                                             \
1050   develop(bool, IgnoreLibthreadGPFault, false,                              \
1051           "Suppress workaround for libthread GP fault")                     \
1052                                                                             \
1053   experimental(double, ObjectCountCutOffPercent, 0.5,                       \
1054           "The percentage of the used heap that the instances of a class "  \
1055           "must occupy for the class to generate a trace event")            \
1056           range(0.0, 100.0)                                                 \
1057                                                                             \
1058   /* JVMTI heap profiling */                                                \
1059                                                                             \
1060   diagnostic(bool, TraceJVMTIObjectTagging, false,                          \
1061           "Trace JVMTI object tagging calls")                               \
1062                                                                             \
1063   diagnostic(bool, VerifyBeforeIteration, false,                            \
1064           "Verify memory system before JVMTI iteration")                    \
1065                                                                             \
1066   /* compiler interface */                                                  \
1067                                                                             \
1068   develop(bool, CIPrintCompilerName, false,                                 \
1069           "when CIPrint is active, print the name of the active compiler")  \
1070                                                                             \
1071   diagnostic(bool, CIPrintCompileQueue, false,                              \
1072           "display the contents of the compile queue whenever a "           \
1073           "compilation is enqueued")                                        \
1074                                                                             \
1075   develop(bool, CIPrintRequests, false,                                     \
1076           "display every request for compilation")                          \
1077                                                                             \
1078   product(bool, CITime, false,                                              \
1079           "collect timing information for compilation")                     \
1080                                                                             \
1081   develop(bool, CITimeVerbose, false,                                       \
1082           "be more verbose in compilation timings")                         \
1083                                                                             \
1084   develop(bool, CITimeEach, false,                                          \
1085           "display timing information after each successful compilation")   \
1086                                                                             \
1087   develop(bool, CICountOSR, false,                                          \
1088           "use a separate counter when assigning ids to osr compilations")  \
1089                                                                             \
1090   develop(bool, CICompileNatives, true,                                     \
1091           "compile native methods if supported by the compiler")            \
1092                                                                             \
1093   develop_pd(bool, CICompileOSR,                                            \
1094           "compile on stack replacement methods if supported by the "       \
1095           "compiler")                                                       \
1096                                                                             \
1097   develop(bool, CIPrintMethodCodes, false,                                  \
1098           "print method bytecodes of the compiled code")                    \
1099                                                                             \
1100   develop(bool, CIPrintTypeFlow, false,                                     \
1101           "print the results of ciTypeFlow analysis")                       \
1102                                                                             \
1103   develop(bool, CITraceTypeFlow, false,                                     \
1104           "detailed per-bytecode tracing of ciTypeFlow analysis")           \
1105                                                                             \
1106   develop(intx, OSROnlyBCI, -1,                                             \
1107           "OSR only at this bci.  Negative values mean exclude that bci")   \
1108                                                                             \
1109   /* compiler */                                                            \
1110                                                                             \
1111   /* notice: the max range value here is max_jint, not max_intx  */         \
1112   /* because of overflow issue                                   */         \
1113   product(intx, CICompilerCount, CI_COMPILER_COUNT,                         \
1114           "Number of compiler threads to run")                              \
1115           range(0, max_jint)                                                \
1116           constraint(CICompilerCountConstraintFunc, AfterErgo)              \
1117                                                                             \
1118   product(bool, UseDynamicNumberOfCompilerThreads, true,                    \
1119           "Dynamically choose the number of parallel compiler threads")     \
1120                                                                             \
1121   diagnostic(bool, ReduceNumberOfCompilerThreads, true,                     \
1122              "Reduce the number of parallel compiler threads when they "    \
1123              "are not used")                                                \
1124                                                                             \
1125   diagnostic(bool, TraceCompilerThreads, false,                             \
1126              "Trace creation and removal of compiler threads")              \
1127                                                                             \
1128   develop(bool, InjectCompilerCreationFailure, false,                       \
1129           "Inject thread creation failures for "                            \
1130           "UseDynamicNumberOfCompilerThreads")                              \
1131                                                                             \
1132   product(intx, CompilationPolicyChoice, 0,                                 \
1133           "which compilation policy (0-2)")                                 \
1134           range(0, 2)                                                       \
1135                                                                             \
1136   develop(bool, UseStackBanging, true,                                      \
1137           "use stack banging for stack overflow checks (required for "      \
1138           "proper StackOverflow handling; disable only to measure cost "    \
1139           "of stackbanging)")                                               \
1140                                                                             \
1141   develop(bool, UseStrictFP, true,                                          \
1142           "use strict fp if modifier strictfp is set")                      \
1143                                                                             \
1144   develop(bool, GenerateSynchronizationCode, true,                          \
1145           "generate locking/unlocking code for synchronized methods and "   \
1146           "monitors")                                                       \
1147                                                                             \
1148   develop(bool, GenerateRangeChecks, true,                                  \
1149           "Generate range checks for array accesses")                       \
1150                                                                             \
1151   diagnostic_pd(bool, ImplicitNullChecks,                                   \
1152           "Generate code for implicit null checks")                         \
1153                                                                             \
1154   product_pd(bool, TrapBasedNullChecks,                                     \
1155           "Generate code for null checks that uses a cmp and trap "         \
1156           "instruction raising SIGTRAP.  This is only used if an access to" \
1157           "null (+offset) will not raise a SIGSEGV, i.e.,"                  \
1158           "ImplicitNullChecks don't work (PPC64).")                         \
1159                                                                             \
1160   diagnostic(bool, EnableThreadSMRExtraValidityChecks, true,                \
1161              "Enable Thread SMR extra validity checks")                     \
1162                                                                             \
1163   diagnostic(bool, EnableThreadSMRStatistics, trueInDebug,                  \
1164              "Enable Thread SMR Statistics")                                \
1165                                                                             \
1166   product(bool, Inline, true,                                               \
1167           "Enable inlining")                                                \
1168                                                                             \
1169   product(bool, ClipInlining, true,                                         \
1170           "Clip inlining if aggregate method exceeds DesiredMethodLimit")   \
1171                                                                             \
1172   develop(bool, UseCHA, true,                                               \
1173           "Enable CHA")                                                     \
1174                                                                             \
1175   product(bool, UseTypeProfile, true,                                       \
1176           "Check interpreter profile for historically monomorphic calls")   \
1177                                                                             \
1178   diagnostic(bool, PrintInlining, false,                                    \
1179           "Print inlining optimizations")                                   \
1180                                                                             \
1181   product(bool, UsePopCountInstruction, false,                              \
1182           "Use population count instruction")                               \
1183                                                                             \
1184   develop(bool, EagerInitialization, false,                                 \
1185           "Eagerly initialize classes if possible")                         \
1186                                                                             \
1187   diagnostic(bool, LogTouchedMethods, false,                                \
1188           "Log methods which have been ever touched in runtime")            \
1189                                                                             \
1190   diagnostic(bool, PrintTouchedMethodsAtExit, false,                        \
1191           "Print all methods that have been ever touched in runtime")       \
1192                                                                             \
1193   develop(bool, TraceMethodReplacement, false,                              \
1194           "Print when methods are replaced do to recompilation")            \
1195                                                                             \
1196   develop(bool, PrintMethodFlushing, false,                                 \
1197           "Print the nmethods being flushed")                               \
1198                                                                             \
1199   diagnostic(bool, PrintMethodFlushingStatistics, false,                    \
1200           "print statistics about method flushing")                         \
1201                                                                             \
1202   diagnostic(intx, HotMethodDetectionLimit, 100000,                         \
1203           "Number of compiled code invocations after which "                \
1204           "the method is considered as hot by the flusher")                 \
1205           range(1, max_jint)                                                \
1206                                                                             \
1207   diagnostic(intx, MinPassesBeforeFlush, 10,                                \
1208           "Minimum number of sweeper passes before an nmethod "             \
1209           "can be flushed")                                                 \
1210           range(0, max_intx)                                                \
1211                                                                             \
1212   product(bool, UseCodeAging, true,                                         \
1213           "Insert counter to detect warm methods")                          \
1214                                                                             \
1215   diagnostic(bool, StressCodeAging, false,                                  \
1216           "Start with counters compiled in")                                \
1217                                                                             \
1218   develop(bool, StressCodeBuffers, false,                                   \
1219           "Exercise code buffer expansion and other rare state changes")    \
1220                                                                             \
1221   diagnostic(bool, DebugNonSafepoints, trueInDebug,                         \
1222           "Generate extra debugging information for non-safepoints in "     \
1223           "nmethods")                                                       \
1224                                                                             \
1225   product(bool, PrintVMOptions, false,                                      \
1226           "Print flags that appeared on the command line")                  \
1227                                                                             \
1228   product(bool, IgnoreUnrecognizedVMOptions, false,                         \
1229           "Ignore unrecognized VM options")                                 \
1230                                                                             \
1231   product(bool, PrintCommandLineFlags, false,                               \
1232           "Print flags specified on command line or set by ergonomics")     \
1233                                                                             \
1234   product(bool, PrintFlagsInitial, false,                                   \
1235           "Print all VM flags before argument processing and exit VM")      \
1236                                                                             \
1237   product(bool, PrintFlagsFinal, false,                                     \
1238           "Print all VM flags after argument and ergonomic processing")     \
1239                                                                             \
1240   notproduct(bool, PrintFlagsWithComments, false,                           \
1241           "Print all VM flags with default values and descriptions and "    \
1242           "exit")                                                           \
1243                                                                             \
1244   product(bool, PrintFlagsRanges, false,                                    \
1245           "Print VM flags and their ranges and exit VM")                    \
1246                                                                             \
1247   diagnostic(bool, SerializeVMOutput, true,                                 \
1248           "Use a mutex to serialize output to tty and LogFile")             \
1249                                                                             \
1250   diagnostic(bool, DisplayVMOutput, true,                                   \
1251           "Display all VM output on the tty, independently of LogVMOutput") \
1252                                                                             \
1253   diagnostic(bool, LogVMOutput, false,                                      \
1254           "Save VM output to LogFile")                                      \
1255                                                                             \
1256   diagnostic(ccstr, LogFile, NULL,                                          \
1257           "If LogVMOutput or LogCompilation is on, save VM output to "      \
1258           "this file [default: ./hotspot_pid%p.log] (%p replaced with pid)")\
1259                                                                             \
1260   product(ccstr, ErrorFile, NULL,                                           \
1261           "If an error occurs, save the error data to this file "           \
1262           "[default: ./hs_err_pid%p.log] (%p replaced with pid)")           \
1263                                                                             \
1264   product(bool, ExtensiveErrorReports,                                      \
1265           PRODUCT_ONLY(false) NOT_PRODUCT(true),                            \
1266           "Error reports are more extensive.")                              \
1267                                                                             \
1268   product(bool, DisplayVMOutputToStderr, false,                             \
1269           "If DisplayVMOutput is true, display all VM output to stderr")    \
1270                                                                             \
1271   product(bool, DisplayVMOutputToStdout, false,                             \
1272           "If DisplayVMOutput is true, display all VM output to stdout")    \
1273                                                                             \
1274   product(bool, UseHeavyMonitors, false,                                    \
1275           "use heavyweight instead of lightweight Java monitors")           \
1276                                                                             \
1277   product(bool, PrintStringTableStatistics, false,                          \
1278           "print statistics about the StringTable and SymbolTable")         \
1279                                                                             \
1280   diagnostic(bool, VerifyStringTableAtExit, false,                          \
1281           "verify StringTable contents at exit")                            \
1282                                                                             \
1283   notproduct(bool, PrintSymbolTableSizeHistogram, false,                    \
1284           "print histogram of the symbol table")                            \
1285                                                                             \
1286   notproduct(bool, ExitVMOnVerifyError, false,                              \
1287           "standard exit from VM if bytecode verify error "                 \
1288           "(only in debug mode)")                                           \
1289                                                                             \
1290   diagnostic(ccstr, AbortVMOnException, NULL,                               \
1291           "Call fatal if this exception is thrown.  Example: "              \
1292           "java -XX:AbortVMOnException=java.lang.NullPointerException Foo") \
1293                                                                             \
1294   diagnostic(ccstr, AbortVMOnExceptionMessage, NULL,                        \
1295           "Call fatal if the exception pointed by AbortVMOnException "      \
1296           "has this message")                                               \
1297                                                                             \
1298   develop(bool, DebugVtables, false,                                        \
1299           "add debugging code to vtable dispatch")                          \
1300                                                                             \
1301   notproduct(bool, PrintVtableStats, false,                                 \
1302           "print vtables stats at end of run")                              \
1303                                                                             \
1304   develop(bool, TraceCreateZombies, false,                                  \
1305           "trace creation of zombie nmethods")                              \
1306                                                                             \
1307   notproduct(bool, IgnoreLockingAssertions, false,                          \
1308           "disable locking assertions (for speed)")                         \
1309                                                                             \
1310   product(bool, RangeCheckElimination, true,                                \
1311           "Eliminate range checks")                                         \
1312                                                                             \
1313   develop_pd(bool, UncommonNullCast,                                        \
1314           "track occurrences of null in casts; adjust compiler tactics")    \
1315                                                                             \
1316   develop(bool, TypeProfileCasts,  true,                                    \
1317           "treat casts like calls for purposes of type profiling")          \
1318                                                                             \
1319   develop(bool, DelayCompilationDuringStartup, true,                        \
1320           "Delay invoking the compiler until main application class is "    \
1321           "loaded")                                                         \
1322                                                                             \
1323   develop(bool, CompileTheWorld, false,                                     \
1324           "Compile all methods in all classes in bootstrap class path "     \
1325             "(stress test)")                                                \
1326                                                                             \
1327   develop(bool, CompileTheWorldPreloadClasses, true,                        \
1328           "Preload all classes used by a class before start loading")       \
1329                                                                             \
1330   notproduct(intx, CompileTheWorldSafepointInterval, 100,                   \
1331           "Force a safepoint every n compiles so sweeper can keep up")      \
1332                                                                             \
1333   develop(bool, FillDelaySlots, true,                                       \
1334           "Fill delay slots (on SPARC only)")                               \
1335                                                                             \
1336   develop(bool, TimeLivenessAnalysis, false,                                \
1337           "Time computation of bytecode liveness analysis")                 \
1338                                                                             \
1339   develop(bool, TraceLivenessGen, false,                                    \
1340           "Trace the generation of liveness analysis information")          \
1341                                                                             \
1342   notproduct(bool, TraceLivenessQuery, false,                               \
1343           "Trace queries of liveness analysis information")                 \
1344                                                                             \
1345   notproduct(bool, CollectIndexSetStatistics, false,                        \
1346           "Collect information about IndexSets")                            \
1347                                                                             \
1348   develop(bool, UseLoopSafepoints, true,                                    \
1349           "Generate Safepoint nodes in every loop")                         \
1350                                                                             \
1351   develop(intx, FastAllocateSizeLimit, 128*K,                               \
1352           /* Note:  This value is zero mod 1<<13 for a cheap sparc set. */  \
1353           "Inline allocations larger than this in doublewords must go slow")\
1354                                                                             \
1355   product_pd(bool, CompactStrings,                                          \
1356           "Enable Strings to use single byte chars in backing store")       \
1357                                                                             \
1358   product_pd(uintx, TypeProfileLevel,                                       \
1359           "=XYZ, with Z: Type profiling of arguments at call; "             \
1360                      "Y: Type profiling of return value at call; "          \
1361                      "X: Type profiling of parameters to methods; "         \
1362           "X, Y and Z in 0=off ; 1=jsr292 only; 2=all methods")             \
1363           constraint(TypeProfileLevelConstraintFunc, AfterErgo)             \
1364                                                                             \
1365   product(intx, TypeProfileArgsLimit,     2,                                \
1366           "max number of call arguments to consider for type profiling")    \
1367           range(0, 16)                                                      \
1368                                                                             \
1369   product(intx, TypeProfileParmsLimit,    2,                                \
1370           "max number of incoming parameters to consider for type profiling"\
1371           ", -1 for all")                                                   \
1372           range(-1, 64)                                                     \
1373                                                                             \
1374   /* statistics */                                                          \
1375   develop(bool, CountCompiledCalls, false,                                  \
1376           "Count method invocations")                                       \
1377                                                                             \
1378   notproduct(bool, CountRuntimeCalls, false,                                \
1379           "Count VM runtime calls")                                         \
1380                                                                             \
1381   develop(bool, CountJNICalls, false,                                       \
1382           "Count jni method invocations")                                   \
1383                                                                             \
1384   notproduct(bool, CountJVMCalls, false,                                    \
1385           "Count jvm method invocations")                                   \
1386                                                                             \
1387   notproduct(bool, CountRemovableExceptions, false,                         \
1388           "Count exceptions that could be replaced by branches due to "     \
1389           "inlining")                                                       \
1390                                                                             \
1391   notproduct(bool, ICMissHistogram, false,                                  \
1392           "Produce histogram of IC misses")                                 \
1393                                                                             \
1394   /* interpreter */                                                         \
1395   product_pd(bool, RewriteBytecodes,                                        \
1396           "Allow rewriting of bytecodes (bytecodes are not immutable)")     \
1397                                                                             \
1398   product_pd(bool, RewriteFrequentPairs,                                    \
1399           "Rewrite frequently used bytecode pairs into a single bytecode")  \
1400                                                                             \
1401   diagnostic(bool, PrintInterpreter, false,                                 \
1402           "Print the generated interpreter code")                           \
1403                                                                             \
1404   product(bool, UseInterpreter, true,                                       \
1405           "Use interpreter for non-compiled methods")                       \
1406                                                                             \
1407   develop(bool, UseFastSignatureHandlers, true,                             \
1408           "Use fast signature handlers for native calls")                   \
1409                                                                             \
1410   product(bool, UseLoopCounter, true,                                       \
1411           "Increment invocation counter on backward branch")                \
1412                                                                             \
1413   product_pd(bool, UseOnStackReplacement,                                   \
1414           "Use on stack replacement, calls runtime if invoc. counter "      \
1415           "overflows in loop")                                              \
1416                                                                             \
1417   notproduct(bool, TraceOnStackReplacement, false,                          \
1418           "Trace on stack replacement")                                     \
1419                                                                             \
1420   product_pd(bool, PreferInterpreterNativeStubs,                            \
1421           "Use always interpreter stubs for native methods invoked via "    \
1422           "interpreter")                                                    \
1423                                                                             \
1424   develop(bool, CountBytecodes, false,                                      \
1425           "Count number of bytecodes executed")                             \
1426                                                                             \
1427   develop(bool, PrintBytecodeHistogram, false,                              \
1428           "Print histogram of the executed bytecodes")                      \
1429                                                                             \
1430   develop(bool, PrintBytecodePairHistogram, false,                          \
1431           "Print histogram of the executed bytecode pairs")                 \
1432                                                                             \
1433   diagnostic(bool, PrintSignatureHandlers, false,                           \
1434           "Print code generated for native method signature handlers")      \
1435                                                                             \
1436   develop(bool, VerifyOops, false,                                          \
1437           "Do plausibility checks for oops")                                \
1438                                                                             \
1439   develop(bool, CheckUnhandledOops, false,                                  \
1440           "Check for unhandled oops in VM code")                            \
1441                                                                             \
1442   develop(bool, VerifyJNIFields, trueInDebug,                               \
1443           "Verify jfieldIDs for instance fields")                           \
1444                                                                             \
1445   notproduct(bool, VerifyJNIEnvThread, false,                               \
1446           "Verify JNIEnv.thread == Thread::current() when entering VM "     \
1447           "from JNI")                                                       \
1448                                                                             \
1449   develop(bool, VerifyFPU, false,                                           \
1450           "Verify FPU state (check for NaN's, etc.)")                       \
1451                                                                             \
1452   develop(bool, VerifyThread, false,                                        \
1453           "Watch the thread register for corruption (SPARC only)")          \
1454                                                                             \
1455   develop(bool, VerifyActivationFrameSize, false,                           \
1456           "Verify that activation frame didn't become smaller than its "    \
1457           "minimal size")                                                   \
1458                                                                             \
1459   develop(bool, TraceFrequencyInlining, false,                              \
1460           "Trace frequency based inlining")                                 \
1461                                                                             \
1462   develop_pd(bool, InlineIntrinsics,                                        \
1463           "Inline intrinsics that can be statically resolved")              \
1464                                                                             \
1465   product_pd(bool, ProfileInterpreter,                                      \
1466           "Profile at the bytecode level during interpretation")            \
1467                                                                             \
1468   develop(bool, TraceProfileInterpreter, false,                             \
1469           "Trace profiling at the bytecode level during interpretation. "   \
1470           "This outputs the profiling information collected to improve "    \
1471           "jit compilation.")                                               \
1472                                                                             \
1473   develop_pd(bool, ProfileTraps,                                            \
1474           "Profile deoptimization traps at the bytecode level")             \
1475                                                                             \
1476   product(intx, ProfileMaturityPercentage, 20,                              \
1477           "number of method invocations/branches (expressed as % of "       \
1478           "CompileThreshold) before using the method's profile")            \
1479           range(0, 100)                                                     \
1480                                                                             \
1481   diagnostic(bool, PrintMethodData, false,                                  \
1482           "Print the results of +ProfileInterpreter at end of run")         \
1483                                                                             \
1484   develop(bool, VerifyDataPointer, trueInDebug,                             \
1485           "Verify the method data pointer during interpreter profiling")    \
1486                                                                             \
1487   develop(bool, VerifyCompiledCode, false,                                  \
1488           "Include miscellaneous runtime verifications in nmethod code; "   \
1489           "default off because it disturbs nmethod size heuristics")        \
1490                                                                             \
1491   notproduct(bool, CrashGCForDumpingJavaThread, false,                      \
1492           "Manually make GC thread crash then dump java stack trace;  "     \
1493           "Test only")                                                      \
1494                                                                             \
1495   /* compilation */                                                         \
1496   product(bool, UseCompiler, true,                                          \
1497           "Use Just-In-Time compilation")                                   \
1498                                                                             \
1499   develop(bool, TraceCompilationPolicy, false,                              \
1500           "Trace compilation policy")                                       \
1501                                                                             \
1502   develop(bool, TimeCompilationPolicy, false,                               \
1503           "Time the compilation policy")                                    \
1504                                                                             \
1505   product(bool, UseCounterDecay, true,                                      \
1506           "Adjust recompilation counters")                                  \
1507                                                                             \
1508   develop(intx, CounterHalfLifeTime,    30,                                 \
1509           "Half-life time of invocation counters (in seconds)")             \
1510                                                                             \
1511   develop(intx, CounterDecayMinIntervalLength,   500,                       \
1512           "The minimum interval (in milliseconds) between invocation of "   \
1513           "CounterDecay")                                                   \
1514                                                                             \
1515   product(bool, AlwaysCompileLoopMethods, false,                            \
1516           "When using recompilation, never interpret methods "              \
1517           "containing loops")                                               \
1518                                                                             \
1519   product(bool, DontCompileHugeMethods, true,                               \
1520           "Do not compile methods > HugeMethodLimit")                       \
1521                                                                             \
1522   /* Bytecode escape analysis estimation. */                                \
1523   product(bool, EstimateArgEscape, true,                                    \
1524           "Analyze bytecodes to estimate escape state of arguments")        \
1525                                                                             \
1526   product(intx, BCEATraceLevel, 0,                                          \
1527           "How much tracing to do of bytecode escape analysis estimates "   \
1528           "(0-3)")                                                          \
1529           range(0, 3)                                                       \
1530                                                                             \
1531   product(intx, MaxBCEAEstimateLevel, 5,                                    \
1532           "Maximum number of nested calls that are analyzed by BC EA")      \
1533           range(0, max_jint)                                                \
1534                                                                             \
1535   product(intx, MaxBCEAEstimateSize, 150,                                   \
1536           "Maximum bytecode size of a method to be analyzed by BC EA")      \
1537           range(0, max_jint)                                                \
1538                                                                             \
1539   product(intx,  AllocatePrefetchStyle, 1,                                  \
1540           "0 = no prefetch, "                                               \
1541           "1 = generate prefetch instructions for each allocation, "        \
1542           "2 = use TLAB watermark to gate allocation prefetch, "            \
1543           "3 = generate one prefetch instruction per cache line")           \
1544           range(0, 3)                                                       \
1545                                                                             \
1546   product(intx,  AllocatePrefetchDistance, -1,                              \
1547           "Distance to prefetch ahead of allocation pointer. "              \
1548           "-1: use system-specific value (automatically determined")        \
1549           constraint(AllocatePrefetchDistanceConstraintFunc, AfterMemoryInit)\
1550                                                                             \
1551   product(intx,  AllocatePrefetchLines, 3,                                  \
1552           "Number of lines to prefetch ahead of array allocation pointer")  \
1553           range(1, 64)                                                      \
1554                                                                             \
1555   product(intx,  AllocateInstancePrefetchLines, 1,                          \
1556           "Number of lines to prefetch ahead of instance allocation "       \
1557           "pointer")                                                        \
1558           range(1, 64)                                                      \
1559                                                                             \
1560   product(intx,  AllocatePrefetchStepSize, 16,                              \
1561           "Step size in bytes of sequential prefetch instructions")         \
1562           range(1, 512)                                                     \
1563           constraint(AllocatePrefetchStepSizeConstraintFunc,AfterMemoryInit)\
1564                                                                             \
1565   product(intx,  AllocatePrefetchInstr, 0,                                  \
1566           "Select instruction to prefetch ahead of allocation pointer")     \
1567           constraint(AllocatePrefetchInstrConstraintFunc, AfterMemoryInit)  \
1568                                                                             \
1569   /* deoptimization */                                                      \
1570   develop(bool, TraceDeoptimization, false,                                 \
1571           "Trace deoptimization")                                           \
1572                                                                             \
1573   develop(bool, PrintDeoptimizationDetails, false,                          \
1574           "Print more information about deoptimization")                    \
1575                                                                             \
1576   develop(bool, DebugDeoptimization, false,                                 \
1577           "Tracing various information while debugging deoptimization")     \
1578                                                                             \
1579   product(intx, SelfDestructTimer, 0,                                       \
1580           "Will cause VM to terminate after a given time (in minutes) "     \
1581           "(0 means off)")                                                  \
1582           range(0, max_intx)                                                \
1583                                                                             \
1584   product(intx, MaxJavaStackTraceDepth, 1024,                               \
1585           "The maximum number of lines in the stack trace for Java "        \
1586           "exceptions (0 means all)")                                       \
1587           range(0, max_jint/2)                                              \
1588                                                                             \
1589   /* notice: the max range value here is max_jint, not max_intx  */         \
1590   /* because of overflow issue                                   */         \
1591   diagnostic(intx, GuaranteedSafepointInterval, 1000,                       \
1592           "Guarantee a safepoint (at least) every so many milliseconds "    \
1593           "(0 means none)")                                                 \
1594           range(0, max_jint)                                                \
1595                                                                             \
1596   product(intx, SafepointTimeoutDelay, 10000,                               \
1597           "Delay in milliseconds for option SafepointTimeout")              \
1598   LP64_ONLY(range(0, max_intx/MICROUNITS))                                  \
1599   NOT_LP64(range(0, max_intx))                                              \
1600                                                                             \
1601   product(intx, NmethodSweepActivity, 10,                                   \
1602           "Removes cold nmethods from code cache if > 0. Higher values "    \
1603           "result in more aggressive sweeping")                             \
1604           range(0, 2000)                                                    \
1605                                                                             \
1606   notproduct(bool, LogSweeper, false,                                       \
1607           "Keep a ring buffer of sweeper activity")                         \
1608                                                                             \
1609   notproduct(intx, SweeperLogEntries, 1024,                                 \
1610           "Number of records in the ring buffer of sweeper activity")       \
1611                                                                             \
1612   notproduct(intx, MemProfilingInterval, 500,                               \
1613           "Time between each invocation of the MemProfiler")                \
1614                                                                             \
1615   develop(intx, MallocCatchPtr, -1,                                         \
1616           "Hit breakpoint when mallocing/freeing this pointer")             \
1617                                                                             \
1618   notproduct(ccstrlist, SuppressErrorAt, "",                                \
1619           "List of assertions (file:line) to muzzle")                       \
1620                                                                             \
1621   develop(intx, StackPrintLimit, 100,                                       \
1622           "number of stack frames to print in VM-level stack dump")         \
1623                                                                             \
1624   notproduct(intx, MaxElementPrintSize, 256,                                \
1625           "maximum number of elements to print")                            \
1626                                                                             \
1627   notproduct(intx, MaxSubklassPrintSize, 4,                                 \
1628           "maximum number of subklasses to print when printing klass")      \
1629                                                                             \
1630   product(intx, MaxInlineLevel, 9,                                          \
1631           "maximum number of nested calls that are inlined")                \
1632           range(0, max_jint)                                                \
1633                                                                             \
1634   product(intx, MaxRecursiveInlineLevel, 1,                                 \
1635           "maximum number of nested recursive calls that are inlined")      \
1636           range(0, max_jint)                                                \
1637                                                                             \
1638   develop(intx, MaxForceInlineLevel, 100,                                   \
1639           "maximum number of nested calls that are forced for inlining "    \
1640           "(using CompileCommand or marked w/ @ForceInline)")               \
1641           range(0, max_jint)                                                \
1642                                                                             \
1643   product_pd(intx, InlineSmallCode,                                         \
1644           "Only inline already compiled methods if their code size is "     \
1645           "less than this")                                                 \
1646           range(0, max_jint)                                                \
1647                                                                             \
1648   product(intx, MaxInlineSize, 35,                                          \
1649           "The maximum bytecode size of a method to be inlined")            \
1650           range(0, max_jint)                                                \
1651                                                                             \
1652   product_pd(intx, FreqInlineSize,                                          \
1653           "The maximum bytecode size of a frequent method to be inlined")   \
1654           range(0, max_jint)                                                \
1655                                                                             \
1656   product(intx, MaxTrivialSize, 6,                                          \
1657           "The maximum bytecode size of a trivial method to be inlined")    \
1658           range(0, max_jint)                                                \
1659                                                                             \
1660   product(intx, MinInliningThreshold, 250,                                  \
1661           "The minimum invocation count a method needs to have to be "      \
1662           "inlined")                                                        \
1663           range(0, max_jint)                                                \
1664                                                                             \
1665   develop(intx, MethodHistogramCutoff, 100,                                 \
1666           "The cutoff value for method invocation histogram (+CountCalls)") \
1667                                                                             \
1668   diagnostic(intx, ProfilerNumberOfInterpretedMethods, 25,                  \
1669           "Number of interpreted methods to show in profile")               \
1670                                                                             \
1671   diagnostic(intx, ProfilerNumberOfCompiledMethods, 25,                     \
1672           "Number of compiled methods to show in profile")                  \
1673                                                                             \
1674   diagnostic(intx, ProfilerNumberOfStubMethods, 25,                         \
1675           "Number of stub methods to show in profile")                      \
1676                                                                             \
1677   diagnostic(intx, ProfilerNumberOfRuntimeStubNodes, 25,                    \
1678           "Number of runtime stub nodes to show in profile")                \
1679                                                                             \
1680   product(intx, ProfileIntervalsTicks, 100,                                 \
1681           "Number of ticks between printing of interval profile "           \
1682           "(+ProfileIntervals)")                                            \
1683           range(0, max_intx)                                                \
1684                                                                             \
1685   develop(intx, DontYieldALotInterval,    10,                               \
1686           "Interval between which yields will be dropped (milliseconds)")   \
1687                                                                             \
1688   develop(intx, ProfilerPCTickThreshold,    15,                             \
1689           "Number of ticks in a PC buckets to be a hotspot")                \
1690                                                                             \
1691   notproduct(intx, DeoptimizeALotInterval,     5,                           \
1692           "Number of exits until DeoptimizeALot kicks in")                  \
1693                                                                             \
1694   notproduct(intx, ZombieALotInterval,     5,                               \
1695           "Number of exits until ZombieALot kicks in")                      \
1696                                                                             \
1697   diagnostic(uintx, MallocMaxTestWords,     0,                              \
1698           "If non-zero, maximum number of words that malloc/realloc can "   \
1699           "allocate (for testing only)")                                    \
1700           range(0, max_uintx)                                               \
1701                                                                             \
1702   product(intx, TypeProfileWidth, 2,                                        \
1703           "Number of receiver types to record in call/cast profile")        \
1704           range(0, 8)                                                       \
1705                                                                             \
1706   develop(intx, BciProfileWidth,      2,                                    \
1707           "Number of return bci's to record in ret profile")                \
1708                                                                             \
1709   product(intx, PerMethodRecompilationCutoff, 400,                          \
1710           "After recompiling N times, stay in the interpreter (-1=>'Inf')") \
1711           range(-1, max_intx)                                               \
1712                                                                             \
1713   product(intx, PerBytecodeRecompilationCutoff, 200,                        \
1714           "Per-BCI limit on repeated recompilation (-1=>'Inf')")            \
1715           range(-1, max_intx)                                               \
1716                                                                             \
1717   product(intx, PerMethodTrapLimit,  100,                                   \
1718           "Limit on traps (of one kind) in a method (includes inlines)")    \
1719           range(0, max_jint)                                                \
1720                                                                             \
1721   experimental(intx, PerMethodSpecTrapLimit,  5000,                         \
1722           "Limit on speculative traps (of one kind) in a method "           \
1723           "(includes inlines)")                                             \
1724           range(0, max_jint)                                                \
1725                                                                             \
1726   product(intx, PerBytecodeTrapLimit,  4,                                   \
1727           "Limit on traps (of one kind) at a particular BCI")               \
1728           range(0, max_jint)                                                \
1729                                                                             \
1730   experimental(intx, SpecTrapLimitExtraEntries,  3,                         \
1731           "Extra method data trap entries for speculation")                 \
1732                                                                             \
1733   develop(intx, InlineFrequencyRatio,    20,                                \
1734           "Ratio of call site execution to caller method invocation")       \
1735           range(0, max_jint)                                                \
1736                                                                             \
1737   diagnostic_pd(intx, InlineFrequencyCount,                                 \
1738           "Count of call site execution necessary to trigger frequent "     \
1739           "inlining")                                                       \
1740           range(0, max_jint)                                                \
1741                                                                             \
1742   develop(intx, InlineThrowCount,    50,                                    \
1743           "Force inlining of interpreted methods that throw this often")    \
1744           range(0, max_jint)                                                \
1745                                                                             \
1746   develop(intx, InlineThrowMaxSize,   200,                                  \
1747           "Force inlining of throwing methods smaller than this")           \
1748           range(0, max_jint)                                                \
1749                                                                             \
1750   develop(intx, ProfilerNodeSize,  1024,                                    \
1751           "Size in K to allocate for the Profile Nodes of each thread")     \
1752           range(0, 1024)                                                    \
1753                                                                             \
1754   product_pd(size_t, MetaspaceSize,                                         \
1755           "Initial threshold (in bytes) at which a garbage collection "     \
1756           "is done to reduce Metaspace usage")                              \
1757           constraint(MetaspaceSizeConstraintFunc,AfterErgo)                 \
1758                                                                             \
1759   product(size_t, MaxMetaspaceSize, max_uintx,                              \
1760           "Maximum size of Metaspaces (in bytes)")                          \
1761           constraint(MaxMetaspaceSizeConstraintFunc,AfterErgo)              \
1762                                                                             \
1763   product(size_t, CompressedClassSpaceSize, 1*G,                            \
1764           "Maximum size of class area in Metaspace when compressed "        \
1765           "class pointers are used")                                        \
1766           range(1*M, 3*G)                                                   \
1767                                                                             \
1768   manageable(uintx, MinHeapFreeRatio, 40,                                   \
1769           "The minimum percentage of heap free after GC to avoid expansion."\
1770           " For most GCs this applies to the old generation. In G1 and"     \
1771           " ParallelGC it applies to the whole heap.")                      \
1772           range(0, 100)                                                     \
1773           constraint(MinHeapFreeRatioConstraintFunc,AfterErgo)              \
1774                                                                             \
1775   manageable(uintx, MaxHeapFreeRatio, 70,                                   \
1776           "The maximum percentage of heap free after GC to avoid shrinking."\
1777           " For most GCs this applies to the old generation. In G1 and"     \
1778           " ParallelGC it applies to the whole heap.")                      \
1779           range(0, 100)                                                     \
1780           constraint(MaxHeapFreeRatioConstraintFunc,AfterErgo)              \
1781                                                                             \
1782   product(bool, ShrinkHeapInSteps, true,                                    \
1783           "When disabled, informs the GC to shrink the java heap directly"  \
1784           " to the target size at the next full GC rather than requiring"   \
1785           " smaller steps during multiple full GCs.")                       \
1786                                                                             \
1787   product(intx, SoftRefLRUPolicyMSPerMB, 1000,                              \
1788           "Number of milliseconds per MB of free space in the heap")        \
1789           range(0, max_intx)                                                \
1790           constraint(SoftRefLRUPolicyMSPerMBConstraintFunc,AfterMemoryInit) \
1791                                                                             \
1792   product(size_t, MinHeapDeltaBytes, ScaleForWordSize(128*K),               \
1793           "The minimum change in heap space due to GC (in bytes)")          \
1794           range(0, max_uintx)                                               \
1795                                                                             \
1796   product(size_t, MinMetaspaceExpansion, ScaleForWordSize(256*K),           \
1797           "The minimum expansion of Metaspace (in bytes)")                  \
1798           range(0, max_uintx)                                               \
1799                                                                             \
1800   product(uintx, MaxMetaspaceFreeRatio,    70,                              \
1801           "The maximum percentage of Metaspace free after GC to avoid "     \
1802           "shrinking")                                                      \
1803           range(0, 100)                                                     \
1804           constraint(MaxMetaspaceFreeRatioConstraintFunc,AfterErgo)         \
1805                                                                             \
1806   product(uintx, MinMetaspaceFreeRatio,    40,                              \
1807           "The minimum percentage of Metaspace free after GC to avoid "     \
1808           "expansion")                                                      \
1809           range(0, 99)                                                      \
1810           constraint(MinMetaspaceFreeRatioConstraintFunc,AfterErgo)         \
1811                                                                             \
1812   product(size_t, MaxMetaspaceExpansion, ScaleForWordSize(4*M),             \
1813           "The maximum expansion of Metaspace without full GC (in bytes)")  \
1814           range(0, max_uintx)                                               \
1815                                                                             \
1816   /* stack parameters */                                                    \
1817   product_pd(intx, StackYellowPages,                                        \
1818           "Number of yellow zone (recoverable overflows) pages of size "    \
1819           "4KB. If pages are bigger yellow zone is aligned up.")            \
1820           range(MIN_STACK_YELLOW_PAGES, (DEFAULT_STACK_YELLOW_PAGES+5))     \
1821                                                                             \
1822   product_pd(intx, StackRedPages,                                           \
1823           "Number of red zone (unrecoverable overflows) pages of size "     \
1824           "4KB. If pages are bigger red zone is aligned up.")               \
1825           range(MIN_STACK_RED_PAGES, (DEFAULT_STACK_RED_PAGES+2))           \
1826                                                                             \
1827   product_pd(intx, StackReservedPages,                                      \
1828           "Number of reserved zone (reserved to annotated methods) pages"   \
1829           " of size 4KB. If pages are bigger reserved zone is aligned up.") \
1830           range(MIN_STACK_RESERVED_PAGES, (DEFAULT_STACK_RESERVED_PAGES+10))\
1831                                                                             \
1832   product(bool, RestrictReservedStack, true,                                \
1833           "Restrict @ReservedStackAccess to trusted classes")               \
1834                                                                             \
1835   /* greater stack shadow pages can't generate instruction to bang stack */ \
1836   product_pd(intx, StackShadowPages,                                        \
1837           "Number of shadow zone (for overflow checking) pages of size "    \
1838           "4KB. If pages are bigger shadow zone is aligned up. "            \
1839           "This should exceed the depth of the VM and native call stack.")  \
1840           range(MIN_STACK_SHADOW_PAGES, (DEFAULT_STACK_SHADOW_PAGES+30))    \
1841                                                                             \
1842   product_pd(intx, ThreadStackSize,                                         \
1843           "Thread Stack Size (in Kbytes)")                                  \
1844           range(0, 1 * M)                                                   \
1845                                                                             \
1846   product_pd(intx, VMThreadStackSize,                                       \
1847           "Non-Java Thread Stack Size (in Kbytes)")                         \
1848           range(0, max_intx/(1 * K))                                        \
1849                                                                             \
1850   product_pd(intx, CompilerThreadStackSize,                                 \
1851           "Compiler Thread Stack Size (in Kbytes)")                         \
1852           range(0, max_intx/(1 * K))                                        \
1853                                                                             \
1854   develop_pd(size_t, JVMInvokeMethodSlack,                                  \
1855           "Stack space (bytes) required for JVM_InvokeMethod to complete")  \
1856                                                                             \
1857   /* code cache parameters                                    */            \
1858   develop_pd(uintx, CodeCacheSegmentSize,                                   \
1859           "Code cache segment size (in bytes) - smallest unit of "          \
1860           "allocation")                                                     \
1861           range(1, 1024)                                                    \
1862           constraint(CodeCacheSegmentSizeConstraintFunc, AfterErgo)         \
1863                                                                             \
1864   develop_pd(intx, CodeEntryAlignment,                                      \
1865           "Code entry alignment for generated code (in bytes)")             \
1866           constraint(CodeEntryAlignmentConstraintFunc, AfterErgo)           \
1867                                                                             \
1868   product_pd(intx, OptoLoopAlignment,                                       \
1869           "Align inner loops to zero relative to this modulus")             \
1870           range(1, 16)                                                      \
1871           constraint(OptoLoopAlignmentConstraintFunc, AfterErgo)            \
1872                                                                             \
1873   product_pd(uintx, InitialCodeCacheSize,                                   \
1874           "Initial code cache size (in bytes)")                             \
1875           range(os::vm_page_size(), max_uintx)                              \
1876                                                                             \
1877   develop_pd(uintx, CodeCacheMinimumUseSpace,                               \
1878           "Minimum code cache size (in bytes) required to start VM.")       \
1879           range(0, max_uintx)                                               \
1880                                                                             \
1881   product(bool, SegmentedCodeCache, false,                                  \
1882           "Use a segmented code cache")                                     \
1883                                                                             \
1884   product_pd(uintx, ReservedCodeCacheSize,                                  \
1885           "Reserved code cache size (in bytes) - maximum code cache size")  \
1886           range(os::vm_page_size(), max_uintx)                              \
1887                                                                             \
1888   product_pd(uintx, NonProfiledCodeHeapSize,                                \
1889           "Size of code heap with non-profiled methods (in bytes)")         \
1890           range(0, max_uintx)                                               \
1891                                                                             \
1892   product_pd(uintx, ProfiledCodeHeapSize,                                   \
1893           "Size of code heap with profiled methods (in bytes)")             \
1894           range(0, max_uintx)                                               \
1895                                                                             \
1896   product_pd(uintx, NonNMethodCodeHeapSize,                                 \
1897           "Size of code heap with non-nmethods (in bytes)")                 \
1898           range(os::vm_page_size(), max_uintx)                              \
1899                                                                             \
1900   product_pd(uintx, CodeCacheExpansionSize,                                 \
1901           "Code cache expansion size (in bytes)")                           \
1902           range(32*K, max_uintx)                                            \
1903                                                                             \
1904   diagnostic_pd(uintx, CodeCacheMinBlockLength,                             \
1905           "Minimum number of segments in a code cache block")               \
1906           range(1, 100)                                                     \
1907                                                                             \
1908   notproduct(bool, ExitOnFullCodeCache, false,                              \
1909           "Exit the VM if we fill the code cache")                          \
1910                                                                             \
1911   product(bool, UseCodeCacheFlushing, true,                                 \
1912           "Remove cold/old nmethods from the code cache")                   \
1913                                                                             \
1914   product(uintx, StartAggressiveSweepingAt, 10,                             \
1915           "Start aggressive sweeping if X[%] of the code cache is free."    \
1916           "Segmented code cache: X[%] of the non-profiled heap."            \
1917           "Non-segmented code cache: X[%] of the total code cache")         \
1918           range(0, 100)                                                     \
1919                                                                             \
1920   /* AOT parameters */                                                      \
1921   product(bool, UseAOT, AOT_ONLY(true) NOT_AOT(false),                      \
1922           "Use AOT compiled files")                                         \
1923                                                                             \
1924   product(ccstrlist, AOTLibrary, NULL,                                      \
1925           "AOT library")                                                    \
1926                                                                             \
1927   product(bool, PrintAOT, false,                                            \
1928           "Print used AOT klasses and methods")                             \
1929                                                                             \
1930   notproduct(bool, PrintAOTStatistics, false,                               \
1931           "Print AOT statistics")                                           \
1932                                                                             \
1933   diagnostic(bool, UseAOTStrictLoading, false,                              \
1934           "Exit the VM if any of the AOT libraries has invalid config")     \
1935                                                                             \
1936   product(bool, CalculateClassFingerprint, false,                           \
1937           "Calculate class fingerprint")                                    \
1938                                                                             \
1939   /* interpreter debugging */                                               \
1940   develop(intx, BinarySwitchThreshold, 5,                                   \
1941           "Minimal number of lookupswitch entries for rewriting to binary " \
1942           "switch")                                                         \
1943                                                                             \
1944   develop(intx, StopInterpreterAt, 0,                                       \
1945           "Stop interpreter execution at specified bytecode number")        \
1946                                                                             \
1947   develop(intx, TraceBytecodesAt, 0,                                        \
1948           "Trace bytecodes starting with specified bytecode number")        \
1949                                                                             \
1950   /* compiler interface */                                                  \
1951   develop(intx, CIStart, 0,                                                 \
1952           "The id of the first compilation to permit")                      \
1953                                                                             \
1954   develop(intx, CIStop, max_jint,                                           \
1955           "The id of the last compilation to permit")                       \
1956                                                                             \
1957   develop(intx, CIStartOSR, 0,                                              \
1958           "The id of the first osr compilation to permit "                  \
1959           "(CICountOSR must be on)")                                        \
1960                                                                             \
1961   develop(intx, CIStopOSR, max_jint,                                        \
1962           "The id of the last osr compilation to permit "                   \
1963           "(CICountOSR must be on)")                                        \
1964                                                                             \
1965   develop(intx, CIBreakAtOSR, -1,                                           \
1966           "The id of osr compilation to break at")                          \
1967                                                                             \
1968   develop(intx, CIBreakAt, -1,                                              \
1969           "The id of compilation to break at")                              \
1970                                                                             \
1971   product(ccstrlist, CompileOnly, "",                                       \
1972           "List of methods (pkg/class.name) to restrict compilation to")    \
1973                                                                             \
1974   product(ccstr, CompileCommandFile, NULL,                                  \
1975           "Read compiler commands from this file [.hotspot_compiler]")      \
1976                                                                             \
1977   diagnostic(ccstr, CompilerDirectivesFile, NULL,                           \
1978           "Read compiler directives from this file")                        \
1979                                                                             \
1980   product(ccstrlist, CompileCommand, "",                                    \
1981           "Prepend to .hotspot_compiler; e.g. log,java/lang/String.<init>") \
1982                                                                             \
1983   develop(bool, ReplayCompiles, false,                                      \
1984           "Enable replay of compilations from ReplayDataFile")              \
1985                                                                             \
1986   product(ccstr, ReplayDataFile, NULL,                                      \
1987           "File containing compilation replay information"                  \
1988           "[default: ./replay_pid%p.log] (%p replaced with pid)")           \
1989                                                                             \
1990    product(ccstr, InlineDataFile, NULL,                                     \
1991           "File containing inlining replay information"                     \
1992           "[default: ./inline_pid%p.log] (%p replaced with pid)")           \
1993                                                                             \
1994   develop(intx, ReplaySuppressInitializers, 2,                              \
1995           "Control handling of class initialization during replay: "        \
1996           "0 - don't do anything special; "                                 \
1997           "1 - treat all class initializers as empty; "                     \
1998           "2 - treat class initializers for application classes as empty; " \
1999           "3 - allow all class initializers to run during bootstrap but "   \
2000           "    pretend they are empty after starting replay")               \
2001           range(0, 3)                                                       \
2002                                                                             \
2003   develop(bool, ReplayIgnoreInitErrors, false,                              \
2004           "Ignore exceptions thrown during initialization for replay")      \
2005                                                                             \
2006   product(bool, DumpReplayDataOnError, true,                                \
2007           "Record replay data for crashing compiler threads")               \
2008                                                                             \
2009   product(bool, CICompilerCountPerCPU, false,                               \
2010           "1 compiler thread for log(N CPUs)")                              \
2011                                                                             \
2012   develop(intx, CIFireOOMAt,    -1,                                         \
2013           "Fire OutOfMemoryErrors throughout CI for testing the compiler "  \
2014           "(non-negative value throws OOM after this many CI accesses "     \
2015           "in each compile)")                                               \
2016   notproduct(intx, CICrashAt, -1,                                           \
2017           "id of compilation to trigger assert in compiler thread for "     \
2018           "the purpose of testing, e.g. generation of replay data")         \
2019   notproduct(bool, CIObjectFactoryVerify, false,                            \
2020           "enable potentially expensive verification in ciObjectFactory")   \
2021                                                                             \
2022   diagnostic(bool, AbortVMOnCompilationFailure, false,                      \
2023           "Abort VM when method had failed to compile.")                    \
2024                                                                             \
2025   /* Priorities */                                                          \
2026   product_pd(bool, UseThreadPriorities,  "Use native thread priorities")    \
2027                                                                             \
2028   product(intx, ThreadPriorityPolicy, 0,                                    \
2029           "0 : Normal.                                                     "\
2030           "    VM chooses priorities that are appropriate for normal       "\
2031           "    applications. On Solaris NORM_PRIORITY and above are mapped "\
2032           "    to normal native priority. Java priorities below "           \
2033           "    NORM_PRIORITY map to lower native priority values. On       "\
2034           "    Windows applications are allowed to use higher native       "\
2035           "    priorities. However, with ThreadPriorityPolicy=0, VM will   "\
2036           "    not use the highest possible native priority,               "\
2037           "    THREAD_PRIORITY_TIME_CRITICAL, as it may interfere with     "\
2038           "    system threads. On Linux thread priorities are ignored      "\
2039           "    because the OS does not support static priority in          "\
2040           "    SCHED_OTHER scheduling class which is the only choice for   "\
2041           "    non-root, non-realtime applications.                        "\
2042           "1 : Aggressive.                                                 "\
2043           "    Java thread priorities map over to the entire range of      "\
2044           "    native thread priorities. Higher Java thread priorities map "\
2045           "    to higher native thread priorities. This policy should be   "\
2046           "    used with care, as sometimes it can cause performance       "\
2047           "    degradation in the application and/or the entire system. On "\
2048           "    Linux this policy requires root privilege.")                 \
2049           range(0, 1)                                                       \
2050                                                                             \
2051   product(bool, ThreadPriorityVerbose, false,                               \
2052           "Print priority changes")                                         \
2053                                                                             \
2054   product(intx, CompilerThreadPriority, -1,                                 \
2055           "The native priority at which compiler threads should run "       \
2056           "(-1 means no change)")                                           \
2057           range(min_jint, max_jint)                                         \
2058           constraint(CompilerThreadPriorityConstraintFunc, AfterErgo)       \
2059                                                                             \
2060   product(intx, VMThreadPriority, -1,                                       \
2061           "The native priority at which the VM thread should run "          \
2062           "(-1 means no change)")                                           \
2063           range(-1, 127)                                                    \
2064                                                                             \
2065   product(intx, JavaPriority1_To_OSPriority, -1,                            \
2066           "Map Java priorities to OS priorities")                           \
2067           range(-1, 127)                                                    \
2068                                                                             \
2069   product(intx, JavaPriority2_To_OSPriority, -1,                            \
2070           "Map Java priorities to OS priorities")                           \
2071           range(-1, 127)                                                    \
2072                                                                             \
2073   product(intx, JavaPriority3_To_OSPriority, -1,                            \
2074           "Map Java priorities to OS priorities")                           \
2075           range(-1, 127)                                                    \
2076                                                                             \
2077   product(intx, JavaPriority4_To_OSPriority, -1,                            \
2078           "Map Java priorities to OS priorities")                           \
2079           range(-1, 127)                                                    \
2080                                                                             \
2081   product(intx, JavaPriority5_To_OSPriority, -1,                            \
2082           "Map Java priorities to OS priorities")                           \
2083           range(-1, 127)                                                    \
2084                                                                             \
2085   product(intx, JavaPriority6_To_OSPriority, -1,                            \
2086           "Map Java priorities to OS priorities")                           \
2087           range(-1, 127)                                                    \
2088                                                                             \
2089   product(intx, JavaPriority7_To_OSPriority, -1,                            \
2090           "Map Java priorities to OS priorities")                           \
2091           range(-1, 127)                                                    \
2092                                                                             \
2093   product(intx, JavaPriority8_To_OSPriority, -1,                            \
2094           "Map Java priorities to OS priorities")                           \
2095           range(-1, 127)                                                    \
2096                                                                             \
2097   product(intx, JavaPriority9_To_OSPriority, -1,                            \
2098           "Map Java priorities to OS priorities")                           \
2099           range(-1, 127)                                                    \
2100                                                                             \
2101   product(intx, JavaPriority10_To_OSPriority,-1,                            \
2102           "Map Java priorities to OS priorities")                           \
2103           range(-1, 127)                                                    \
2104                                                                             \
2105   experimental(bool, UseCriticalJavaThreadPriority, false,                  \
2106           "Java thread priority 10 maps to critical scheduling priority")   \
2107                                                                             \
2108   experimental(bool, UseCriticalCompilerThreadPriority, false,              \
2109           "Compiler thread(s) run at critical scheduling priority")         \
2110                                                                             \
2111   experimental(bool, UseCriticalCMSThreadPriority, false,                   \
2112           "ConcurrentMarkSweep thread runs at critical scheduling priority")\
2113                                                                             \
2114   /* compiler debugging */                                                  \
2115   notproduct(intx, CompileTheWorldStartAt,     1,                           \
2116           "First class to consider when using +CompileTheWorld")            \
2117                                                                             \
2118   notproduct(intx, CompileTheWorldStopAt, max_jint,                         \
2119           "Last class to consider when using +CompileTheWorld")             \
2120                                                                             \
2121   develop(intx, NewCodeParameter,      0,                                   \
2122           "Testing Only: Create a dedicated integer parameter before "      \
2123           "putback")                                                        \
2124                                                                             \
2125   /* new oopmap storage allocation */                                       \
2126   develop(intx, MinOopMapAllocation,     8,                                 \
2127           "Minimum number of OopMap entries in an OopMapSet")               \
2128                                                                             \
2129   /* Background Compilation */                                              \
2130   develop(intx, LongCompileThreshold,     50,                               \
2131           "Used with +TraceLongCompiles")                                   \
2132                                                                             \
2133   /* recompilation */                                                       \
2134   product_pd(intx, CompileThreshold,                                        \
2135           "number of interpreted method invocations before (re-)compiling") \
2136           constraint(CompileThresholdConstraintFunc, AfterErgo)             \
2137                                                                             \
2138   product(double, CompileThresholdScaling, 1.0,                             \
2139           "Factor to control when first compilation happens "               \
2140           "(both with and without tiered compilation): "                    \
2141           "values greater than 1.0 delay counter overflow, "                \
2142           "values between 0 and 1.0 rush counter overflow, "                \
2143           "value of 1.0 leaves compilation thresholds unchanged "           \
2144           "value of 0.0 is equivalent to -Xint. "                           \
2145           ""                                                                \
2146           "Flag can be set as per-method option. "                          \
2147           "If a value is specified for a method, compilation thresholds "   \
2148           "for that method are scaled by both the value of the global flag "\
2149           "and the value of the per-method flag.")                          \
2150           range(0.0, DBL_MAX)                                               \
2151                                                                             \
2152   product(intx, Tier0InvokeNotifyFreqLog, 7,                                \
2153           "Interpreter (tier 0) invocation notification frequency")         \
2154           range(0, 30)                                                      \
2155                                                                             \
2156   product(intx, Tier2InvokeNotifyFreqLog, 11,                               \
2157           "C1 without MDO (tier 2) invocation notification frequency")      \
2158           range(0, 30)                                                      \
2159                                                                             \
2160   product(intx, Tier3InvokeNotifyFreqLog, 10,                               \
2161           "C1 with MDO profiling (tier 3) invocation notification "         \
2162           "frequency")                                                      \
2163           range(0, 30)                                                      \
2164                                                                             \
2165   product(intx, Tier23InlineeNotifyFreqLog, 20,                             \
2166           "Inlinee invocation (tiers 2 and 3) notification frequency")      \
2167           range(0, 30)                                                      \
2168                                                                             \
2169   product(intx, Tier0BackedgeNotifyFreqLog, 10,                             \
2170           "Interpreter (tier 0) invocation notification frequency")         \
2171           range(0, 30)                                                      \
2172                                                                             \
2173   product(intx, Tier2BackedgeNotifyFreqLog, 14,                             \
2174           "C1 without MDO (tier 2) invocation notification frequency")      \
2175           range(0, 30)                                                      \
2176                                                                             \
2177   product(intx, Tier3BackedgeNotifyFreqLog, 13,                             \
2178           "C1 with MDO profiling (tier 3) invocation notification "         \
2179           "frequency")                                                      \
2180           range(0, 30)                                                      \
2181                                                                             \
2182   product(intx, Tier2CompileThreshold, 0,                                   \
2183           "threshold at which tier 2 compilation is invoked")               \
2184           range(0, max_jint)                                                \
2185                                                                             \
2186   product(intx, Tier2BackEdgeThreshold, 0,                                  \
2187           "Back edge threshold at which tier 2 compilation is invoked")     \
2188           range(0, max_jint)                                                \
2189                                                                             \
2190   product(intx, Tier3InvocationThreshold, 200,                              \
2191           "Compile if number of method invocations crosses this "           \
2192           "threshold")                                                      \
2193           range(0, max_jint)                                                \
2194                                                                             \
2195   product(intx, Tier3MinInvocationThreshold, 100,                           \
2196           "Minimum invocation to compile at tier 3")                        \
2197           range(0, max_jint)                                                \
2198                                                                             \
2199   product(intx, Tier3CompileThreshold, 2000,                                \
2200           "Threshold at which tier 3 compilation is invoked (invocation "   \
2201           "minimum must be satisfied)")                                     \
2202           range(0, max_jint)                                                \
2203                                                                             \
2204   product(intx, Tier3BackEdgeThreshold,  60000,                             \
2205           "Back edge threshold at which tier 3 OSR compilation is invoked") \
2206           range(0, max_jint)                                                \
2207                                                                             \
2208   product(intx, Tier3AOTInvocationThreshold, 10000,                         \
2209           "Compile if number of method invocations crosses this "           \
2210           "threshold if coming from AOT")                                   \
2211           range(0, max_jint)                                                \
2212                                                                             \
2213   product(intx, Tier3AOTMinInvocationThreshold, 1000,                       \
2214           "Minimum invocation to compile at tier 3 if coming from AOT")     \
2215           range(0, max_jint)                                                \
2216                                                                             \
2217   product(intx, Tier3AOTCompileThreshold, 15000,                            \
2218           "Threshold at which tier 3 compilation is invoked (invocation "   \
2219           "minimum must be satisfied) if coming from AOT")                  \
2220           range(0, max_jint)                                                \
2221                                                                             \
2222   product(intx, Tier3AOTBackEdgeThreshold,  120000,                         \
2223           "Back edge threshold at which tier 3 OSR compilation is invoked " \
2224           "if coming from AOT")                                             \
2225           range(0, max_jint)                                                \
2226                                                                             \
2227   product(intx, Tier4InvocationThreshold, 5000,                             \
2228           "Compile if number of method invocations crosses this "           \
2229           "threshold")                                                      \
2230           range(0, max_jint)                                                \
2231                                                                             \
2232   product(intx, Tier4MinInvocationThreshold, 600,                           \
2233           "Minimum invocation to compile at tier 4")                        \
2234           range(0, max_jint)                                                \
2235                                                                             \
2236   product(intx, Tier4CompileThreshold, 15000,                               \
2237           "Threshold at which tier 4 compilation is invoked (invocation "   \
2238           "minimum must be satisfied")                                      \
2239           range(0, max_jint)                                                \
2240                                                                             \
2241   product(intx, Tier4BackEdgeThreshold, 40000,                              \
2242           "Back edge threshold at which tier 4 OSR compilation is invoked") \
2243           range(0, max_jint)                                                \
2244                                                                             \
2245   product(intx, Tier3DelayOn, 5,                                            \
2246           "If C2 queue size grows over this amount per compiler thread "    \
2247           "stop compiling at tier 3 and start compiling at tier 2")         \
2248           range(0, max_jint)                                                \
2249                                                                             \
2250   product(intx, Tier3DelayOff, 2,                                           \
2251           "If C2 queue size is less than this amount per compiler thread "  \
2252           "allow methods compiled at tier 2 transition to tier 3")          \
2253           range(0, max_jint)                                                \
2254                                                                             \
2255   product(intx, Tier3LoadFeedback, 5,                                       \
2256           "Tier 3 thresholds will increase twofold when C1 queue size "     \
2257           "reaches this amount per compiler thread")                        \
2258           range(0, max_jint)                                                \
2259                                                                             \
2260   product(intx, Tier4LoadFeedback, 3,                                       \
2261           "Tier 4 thresholds will increase twofold when C2 queue size "     \
2262           "reaches this amount per compiler thread")                        \
2263           range(0, max_jint)                                                \
2264                                                                             \
2265   product(intx, TieredCompileTaskTimeout, 50,                               \
2266           "Kill compile task if method was not used within "                \
2267           "given timeout in milliseconds")                                  \
2268           range(0, max_intx)                                                \
2269                                                                             \
2270   product(intx, TieredStopAtLevel, 4,                                       \
2271           "Stop at given compilation level")                                \
2272           range(0, 4)                                                       \
2273                                                                             \
2274   product(intx, Tier0ProfilingStartPercentage, 200,                         \
2275           "Start profiling in interpreter if the counters exceed tier 3 "   \
2276           "thresholds by the specified percentage")                         \
2277           range(0, max_jint)                                                \
2278                                                                             \
2279   product(uintx, IncreaseFirstTierCompileThresholdAt, 50,                   \
2280           "Increase the compile threshold for C1 compilation if the code "  \
2281           "cache is filled by the specified percentage")                    \
2282           range(0, 99)                                                      \
2283                                                                             \
2284   product(intx, TieredRateUpdateMinTime, 1,                                 \
2285           "Minimum rate sampling interval (in milliseconds)")               \
2286           range(0, max_intx)                                                \
2287                                                                             \
2288   product(intx, TieredRateUpdateMaxTime, 25,                                \
2289           "Maximum rate sampling interval (in milliseconds)")               \
2290           range(0, max_intx)                                                \
2291                                                                             \
2292   product_pd(bool, TieredCompilation,                                       \
2293           "Enable tiered compilation")                                      \
2294                                                                             \
2295   product(bool, PrintTieredEvents, false,                                   \
2296           "Print tiered events notifications")                              \
2297                                                                             \
2298   product_pd(intx, OnStackReplacePercentage,                                \
2299           "NON_TIERED number of method invocations/branches (expressed as " \
2300           "% of CompileThreshold) before (re-)compiling OSR code")          \
2301           constraint(OnStackReplacePercentageConstraintFunc, AfterErgo)     \
2302                                                                             \
2303   product(intx, InterpreterProfilePercentage, 33,                           \
2304           "NON_TIERED number of method invocations/branches (expressed as " \
2305           "% of CompileThreshold) before profiling in the interpreter")     \
2306           range(0, 100)                                                     \
2307                                                                             \
2308   develop(intx, MaxRecompilationSearchLength,    10,                        \
2309           "The maximum number of frames to inspect when searching for "     \
2310           "recompilee")                                                     \
2311                                                                             \
2312   develop(intx, MaxInterpretedSearchLength,     3,                          \
2313           "The maximum number of interpreted frames to skip when searching "\
2314           "for recompilee")                                                 \
2315                                                                             \
2316   develop(intx, DesiredMethodLimit,  8000,                                  \
2317           "The desired maximum method size (in bytecodes) after inlining")  \
2318                                                                             \
2319   develop(intx, HugeMethodLimit,  8000,                                     \
2320           "Don't compile methods larger than this if "                      \
2321           "+DontCompileHugeMethods")                                        \
2322                                                                             \
2323   /* New JDK 1.4 reflection implementation */                               \
2324                                                                             \
2325   develop(intx, FastSuperclassLimit, 8,                                     \
2326           "Depth of hardwired instanceof accelerator array")                \
2327                                                                             \
2328   /* Properties for Java libraries  */                                      \
2329                                                                             \
2330   product(uint64_t, MaxDirectMemorySize, 0,                                 \
2331           "Maximum total size of NIO direct-buffer allocations")            \
2332           range(0, max_jlong)                                               \
2333                                                                             \
2334   /* Flags used for temporary code during development  */                   \
2335                                                                             \
2336   diagnostic(bool, UseNewCode, false,                                       \
2337           "Testing Only: Use the new version while testing")                \
2338                                                                             \
2339   diagnostic(bool, UseNewCode2, false,                                      \
2340           "Testing Only: Use the new version while testing")                \
2341                                                                             \
2342   diagnostic(bool, UseNewCode3, false,                                      \
2343           "Testing Only: Use the new version while testing")                \
2344                                                                             \
2345   /* flags for performance data collection */                               \
2346                                                                             \
2347   product(bool, UsePerfData, true,                                          \
2348           "Flag to disable jvmstat instrumentation for performance testing "\
2349           "and problem isolation purposes")                                 \
2350                                                                             \
2351   product(bool, PerfDataSaveToFile, false,                                  \
2352           "Save PerfData memory to hsperfdata_<pid> file on exit")          \
2353                                                                             \
2354   product(ccstr, PerfDataSaveFile, NULL,                                    \
2355           "Save PerfData memory to the specified absolute pathname. "       \
2356           "The string %p in the file name (if present) "                    \
2357           "will be replaced by pid")                                        \
2358                                                                             \
2359   product(intx, PerfDataSamplingInterval, 50,                               \
2360           "Data sampling interval (in milliseconds)")                       \
2361           range(PeriodicTask::min_interval, max_jint)                       \
2362           constraint(PerfDataSamplingIntervalFunc, AfterErgo)               \
2363                                                                             \
2364   product(bool, PerfDisableSharedMem, false,                                \
2365           "Store performance data in standard memory")                      \
2366                                                                             \
2367   product(intx, PerfDataMemorySize, 32*K,                                   \
2368           "Size of performance data memory region. Will be rounded "        \
2369           "up to a multiple of the native os page size.")                   \
2370           range(128, 32*64*K)                                               \
2371                                                                             \
2372   product(intx, PerfMaxStringConstLength, 1024,                             \
2373           "Maximum PerfStringConstant string length before truncation")     \
2374           range(32, 32*K)                                                   \
2375                                                                             \
2376   product(bool, PerfAllowAtExitRegistration, false,                         \
2377           "Allow registration of atexit() methods")                         \
2378                                                                             \
2379   product(bool, PerfBypassFileSystemCheck, false,                           \
2380           "Bypass Win32 file system criteria checks (Windows Only)")        \
2381                                                                             \
2382   product(intx, UnguardOnExecutionViolation, 0,                             \
2383           "Unguard page and retry on no-execute fault (Win32 only) "        \
2384           "0=off, 1=conservative, 2=aggressive")                            \
2385           range(0, 2)                                                       \
2386                                                                             \
2387   /* Serviceability Support */                                              \
2388                                                                             \
2389   product(bool, ManagementServer, false,                                    \
2390           "Create JMX Management Server")                                   \
2391                                                                             \
2392   product(bool, DisableAttachMechanism, false,                              \
2393           "Disable mechanism that allows tools to attach to this VM")       \
2394                                                                             \
2395   product(bool, StartAttachListener, false,                                 \
2396           "Always start Attach Listener at VM startup")                     \
2397                                                                             \
2398   product(bool, EnableDynamicAgentLoading, true,                            \
2399           "Allow tools to load agents with the attach mechanism")           \
2400                                                                             \
2401   manageable(bool, PrintConcurrentLocks, false,                             \
2402           "Print java.util.concurrent locks in thread dump")                \
2403                                                                             \
2404   /* Shared spaces */                                                       \
2405                                                                             \
2406   product(bool, UseSharedSpaces, true,                                      \
2407           "Use shared spaces for metadata")                                 \
2408                                                                             \
2409   product(bool, VerifySharedSpaces, false,                                  \
2410           "Verify shared spaces (false for default archive, true for "      \
2411           "archive specified by -XX:SharedArchiveFile)")                    \
2412                                                                             \
2413   product(bool, RequireSharedSpaces, false,                                 \
2414           "Require shared spaces for metadata")                             \
2415                                                                             \
2416   product(bool, DumpSharedSpaces, false,                                    \
2417           "Special mode: JVM reads a class list, loads classes, builds "    \
2418           "shared spaces, and dumps the shared spaces to a file to be "     \
2419           "used in future JVM runs")                                        \
2420                                                                             \
2421   product(bool, PrintSharedArchiveAndExit, false,                           \
2422           "Print shared archive file contents")                             \
2423                                                                             \
2424   product(bool, PrintSharedDictionary, false,                               \
2425           "If PrintSharedArchiveAndExit is true, also print the shared "    \
2426           "dictionary")                                                     \
2427                                                                             \
2428   product(size_t, SharedBaseAddress, LP64_ONLY(32*G)                        \
2429           NOT_LP64(LINUX_ONLY(2*G) NOT_LINUX(0)),                           \
2430           "Address to allocate shared memory region for class data")        \
2431           range(0, SIZE_MAX)                                                \
2432                                                                             \
2433   product(ccstr, SharedArchiveConfigFile, NULL,                             \
2434           "Data to add to the CDS archive file")                            \
2435                                                                             \
2436   product(uintx, SharedSymbolTableBucketSize, 4,                            \
2437           "Average number of symbols per bucket in shared table")           \
2438           range(2, 246)                                                     \
2439                                                                             \
2440   diagnostic(bool, AllowArchivingWithJavaAgent, false,                      \
2441           "Allow Java agent to be run with CDS dumping")                    \
2442                                                                             \
2443   diagnostic(bool, PrintMethodHandleStubs, false,                           \
2444           "Print generated stub code for method handles")                   \
2445                                                                             \
2446   develop(bool, TraceMethodHandles, false,                                  \
2447           "trace internal method handle operations")                        \
2448                                                                             \
2449   diagnostic(bool, VerifyMethodHandles, trueInDebug,                        \
2450           "perform extra checks when constructing method handles")          \
2451                                                                             \
2452   diagnostic(bool, ShowHiddenFrames, false,                                 \
2453           "show method handle implementation frames (usually hidden)")      \
2454                                                                             \
2455   experimental(bool, TrustFinalNonStaticFields, false,                      \
2456           "trust final non-static declarations for constant folding")       \
2457                                                                             \
2458   diagnostic(bool, FoldStableValues, true,                                  \
2459           "Optimize loads from stable fields (marked w/ @Stable)")          \
2460                                                                             \
2461   develop(bool, TraceInvokeDynamic, false,                                  \
2462           "trace internal invoke dynamic operations")                       \
2463                                                                             \
2464   diagnostic(int, UseBootstrapCallInfo, 1,                                  \
2465           "0: when resolving InDy or ConDy, force all BSM arguments to be " \
2466           "resolved before the bootstrap method is called; 1: when a BSM "  \
2467           "that may accept a BootstrapCallInfo is detected, use that API "  \
2468           "to pass BSM arguments, which allows the BSM to delay their "     \
2469           "resolution; 2+: stress test the BCI API by calling more BSMs "   \
2470           "via that API, instead of with the eagerly-resolved array.")      \
2471                                                                             \
2472   diagnostic(bool, PauseAtStartup,      false,                              \
2473           "Causes the VM to pause at startup time and wait for the pause "  \
2474           "file to be removed (default: ./vm.paused.<pid>)")                \
2475                                                                             \
2476   diagnostic(ccstr, PauseAtStartupFile, NULL,                               \
2477           "The file to create and for whose removal to await when pausing " \
2478           "at startup. (default: ./vm.paused.<pid>)")                       \
2479                                                                             \
2480   diagnostic(bool, PauseAtExit, false,                                      \
2481           "Pause and wait for keypress on exit if a debugger is attached")  \
2482                                                                             \
2483   product(bool, ExtendedDTraceProbes,    false,                             \
2484           "Enable performance-impacting dtrace probes")                     \
2485                                                                             \
2486   product(bool, DTraceMethodProbes, false,                                  \
2487           "Enable dtrace probes for method-entry and method-exit")          \
2488                                                                             \
2489   product(bool, DTraceAllocProbes, false,                                   \
2490           "Enable dtrace probes for object allocation")                     \
2491                                                                             \
2492   product(bool, DTraceMonitorProbes, false,                                 \
2493           "Enable dtrace probes for monitor events")                        \
2494                                                                             \
2495   product(bool, RelaxAccessControlCheck, false,                             \
2496           "Relax the access control checks in the verifier")                \
2497                                                                             \
2498   product(uintx, StringTableSize, defaultStringTableSize,                   \
2499           "Number of buckets in the interned String table "                 \
2500           "(will be rounded to nearest higher power of 2)")                 \
2501           range(minimumStringTableSize, 16777216ul)                         \
2502                                                                             \
2503   experimental(uintx, SymbolTableSize, defaultSymbolTableSize,              \
2504           "Number of buckets in the JVM internal Symbol table")             \
2505           range(minimumSymbolTableSize, 111*defaultSymbolTableSize)         \
2506                                                                             \
2507   product(bool, UseStringDeduplication, false,                              \
2508           "Use string deduplication")                                       \
2509                                                                             \
2510   product(uintx, StringDeduplicationAgeThreshold, 3,                        \
2511           "A string must reach this age (or be promoted to an old region) " \
2512           "to be considered for deduplication")                             \
2513           range(1, markOopDesc::max_age)                                    \
2514                                                                             \
2515   diagnostic(bool, StringDeduplicationResizeALot, false,                    \
2516           "Force table resize every time the table is scanned")             \
2517                                                                             \
2518   diagnostic(bool, StringDeduplicationRehashALot, false,                    \
2519           "Force table rehash every time the table is scanned")             \
2520                                                                             \
2521   diagnostic(bool, WhiteBoxAPI, false,                                      \
2522           "Enable internal testing APIs")                                   \
2523                                                                             \
2524   experimental(intx, SurvivorAlignmentInBytes, 0,                           \
2525            "Default survivor space alignment in bytes")                     \
2526            constraint(SurvivorAlignmentInBytesConstraintFunc,AfterErgo)     \
2527                                                                             \
2528   product(ccstr, DumpLoadedClassList, NULL,                                 \
2529           "Dump the names all loaded classes, that could be stored into "   \
2530           "the CDS archive, in the specified file")                         \
2531                                                                             \
2532   product(ccstr, SharedClassListFile, NULL,                                 \
2533           "Override the default CDS class list")                            \
2534                                                                             \
2535   product(ccstr, SharedArchiveFile, NULL,                                   \
2536           "Override the default location of the CDS archive file")          \
2537                                                                             \
2538   product(ccstr, ExtraSharedClassListFile, NULL,                            \
2539           "Extra classlist for building the CDS archive file")              \
2540                                                                             \
2541   experimental(size_t, ArrayAllocatorMallocLimit,                           \
2542           SOLARIS_ONLY(64*K) NOT_SOLARIS((size_t)-1),                       \
2543           "Allocation less than this value will be allocated "              \
2544           "using malloc. Larger allocations will use mmap.")                \
2545                                                                             \
2546   experimental(bool, AlwaysAtomicAccesses, false,                           \
2547           "Accesses to all variables should always be atomic")              \
2548                                                                             \
2549   diagnostic(bool, UseUnalignedAccesses, false,                             \
2550           "Use unaligned memory accesses in Unsafe")                        \
2551                                                                             \
2552   product_pd(bool, PreserveFramePointer,                                    \
2553              "Use the FP register for holding the frame pointer "           \
2554              "and not as a general purpose register.")                      \
2555                                                                             \
2556   diagnostic(bool, CheckIntrinsics, true,                                   \
2557              "When a class C is loaded, check that "                        \
2558              "(1) all intrinsics defined by the VM for class C are present "\
2559              "in the loaded class file and are marked with the "            \
2560              "@HotSpotIntrinsicCandidate annotation, that "                 \
2561              "(2) there is an intrinsic registered for all loaded methods " \
2562              "that are annotated with the @HotSpotIntrinsicCandidate "      \
2563              "annotation, and that "                                        \
2564              "(3) no orphan methods exist for class C (i.e., methods for "  \
2565              "which the VM declares an intrinsic but that are not declared "\
2566              "in the loaded class C. "                                      \
2567              "Check (3) is available only in debug builds.")                \
2568                                                                             \
2569   diagnostic_pd(intx, InitArrayShortSize,                                   \
2570           "Threshold small size (in bytes) for clearing arrays. "           \
2571           "Anything this size or smaller may get converted to discrete "    \
2572           "scalar stores.")                                                 \
2573           range(0, max_intx)                                                \
2574           constraint(InitArrayShortSizeConstraintFunc, AfterErgo)           \
2575                                                                             \
2576   diagnostic(bool, CompilerDirectivesIgnoreCompileCommands, false,          \
2577              "Disable backwards compatibility for compile commands.")       \
2578                                                                             \
2579   diagnostic(bool, CompilerDirectivesPrint, false,                          \
2580              "Print compiler directives on installation.")                  \
2581   diagnostic(int,  CompilerDirectivesLimit, 50,                             \
2582              "Limit on number of compiler directives.")                     \
2583                                                                             \
2584   product(ccstr, AllocateHeapAt, NULL,                                      \
2585           "Path to the directoy where a temporary file will be created "    \
2586           "to use as the backing store for Java Heap.")                     \
2587                                                                             \
2588   develop(bool, VerifyMetaspace, false,                                     \
2589           "Verify metaspace on chunk movements.")                           \
2590                                                                             \
2591   diagnostic(bool, ShowRegistersOnAssert, true,                             \
2592           "On internal errors, include registers in error report.")         \
2593                                                                             \
2594   experimental(bool, UseSwitchProfiling, true,                              \
2595           "leverage profiling for table/lookup switch")                     \
2596                                                                             \
2597   JFR_ONLY(product(bool, FlightRecorder, false,                             \
2598           "Enable Flight Recorder"))                                        \
2599                                                                             \
2600   JFR_ONLY(product(ccstr, FlightRecorderOptions, NULL,                      \
2601           "Flight Recorder options"))                                       \
2602                                                                             \
2603   JFR_ONLY(product(ccstr, StartFlightRecording, NULL,                       \
2604           "Start flight recording with options"))                           \
2605                                                                             \
2606   experimental(bool, UseFastUnorderedTimeStamps, false,                     \
2607           "Use platform unstable time where supported for timestamps only")
2608 
2609 #define VM_FLAGS(develop,                                                   \
2610                  develop_pd,                                                \
2611                  product,                                                   \
2612                  product_pd,                                                \
2613                  diagnostic,                                                \
2614                  diagnostic_pd,                                             \
2615                  experimental,                                              \
2616                  notproduct,                                                \
2617                  manageable,                                                \
2618                  product_rw,                                                \
2619                  lp64_product,                                              \
2620                  range,                                                     \
2621                  constraint,                                                \
2622                  writeable)                                                 \
2623                                                                             \
2624   RUNTIME_FLAGS(                                                            \
2625     develop,                                                                \
2626     develop_pd,                                                             \
2627     product,                                                                \
2628     product_pd,                                                             \
2629     diagnostic,                                                             \
2630     diagnostic_pd,                                                          \
2631     experimental,                                                           \
2632     notproduct,                                                             \
2633     manageable,                                                             \
2634     product_rw,                                                             \
2635     lp64_product,                                                           \
2636     range,                                                                  \
2637     constraint,                                                             \
2638     writeable)                                                              \
2639                                                                             \
2640   GC_FLAGS(                                                                 \
2641     develop,                                                                \
2642     develop_pd,                                                             \
2643     product,                                                                \
2644     product_pd,                                                             \
2645     diagnostic,                                                             \
2646     diagnostic_pd,                                                          \
2647     experimental,                                                           \
2648     notproduct,                                                             \
2649     manageable,                                                             \
2650     product_rw,                                                             \
2651     lp64_product,                                                           \
2652     range,                                                                  \
2653     constraint,                                                             \
2654     writeable)                                                              \
2655 
2656 /*
2657  *  Macros for factoring of globals
2658  */
2659 
2660 // Interface macros
2661 #define DECLARE_PRODUCT_FLAG(type, name, value, doc)      extern "C" type name;
2662 #define DECLARE_PD_PRODUCT_FLAG(type, name, doc)          extern "C" type name;
2663 #define DECLARE_DIAGNOSTIC_FLAG(type, name, value, doc)   extern "C" type name;
2664 #define DECLARE_PD_DIAGNOSTIC_FLAG(type, name, doc)       extern "C" type name;
2665 #define DECLARE_EXPERIMENTAL_FLAG(type, name, value, doc) extern "C" type name;
2666 #define DECLARE_MANAGEABLE_FLAG(type, name, value, doc)   extern "C" type name;
2667 #define DECLARE_PRODUCT_RW_FLAG(type, name, value, doc)   extern "C" type name;
2668 #ifdef PRODUCT
2669 #define DECLARE_DEVELOPER_FLAG(type, name, value, doc)    const type name = value;
2670 #define DECLARE_PD_DEVELOPER_FLAG(type, name, doc)        const type name = pd_##name;
2671 #define DECLARE_NOTPRODUCT_FLAG(type, name, value, doc)   const type name = value;
2672 #else
2673 #define DECLARE_DEVELOPER_FLAG(type, name, value, doc)    extern "C" type name;
2674 #define DECLARE_PD_DEVELOPER_FLAG(type, name, doc)        extern "C" type name;
2675 #define DECLARE_NOTPRODUCT_FLAG(type, name, value, doc)   extern "C" type name;
2676 #endif // PRODUCT
2677 // Special LP64 flags, product only needed for now.
2678 #ifdef _LP64
2679 #define DECLARE_LP64_PRODUCT_FLAG(type, name, value, doc) extern "C" type name;
2680 #else
2681 #define DECLARE_LP64_PRODUCT_FLAG(type, name, value, doc) const type name = value;
2682 #endif // _LP64
2683 
2684 // Implementation macros
2685 #define MATERIALIZE_PRODUCT_FLAG(type, name, value, doc)      type name = value;
2686 #define MATERIALIZE_PD_PRODUCT_FLAG(type, name, doc)          type name = pd_##name;
2687 #define MATERIALIZE_DIAGNOSTIC_FLAG(type, name, value, doc)   type name = value;
2688 #define MATERIALIZE_PD_DIAGNOSTIC_FLAG(type, name, doc)       type name = pd_##name;
2689 #define MATERIALIZE_EXPERIMENTAL_FLAG(type, name, value, doc) type name = value;
2690 #define MATERIALIZE_MANAGEABLE_FLAG(type, name, value, doc)   type name = value;
2691 #define MATERIALIZE_PRODUCT_RW_FLAG(type, name, value, doc)   type name = value;
2692 #ifdef PRODUCT
2693 #define MATERIALIZE_DEVELOPER_FLAG(type, name, value, doc)
2694 #define MATERIALIZE_PD_DEVELOPER_FLAG(type, name, doc)
2695 #define MATERIALIZE_NOTPRODUCT_FLAG(type, name, value, doc)
2696 #else
2697 #define MATERIALIZE_DEVELOPER_FLAG(type, name, value, doc)    type name = value;
2698 #define MATERIALIZE_PD_DEVELOPER_FLAG(type, name, doc)        type name = pd_##name;
2699 #define MATERIALIZE_NOTPRODUCT_FLAG(type, name, value, doc)   type name = value;
2700 #endif // PRODUCT
2701 #ifdef _LP64
2702 #define MATERIALIZE_LP64_PRODUCT_FLAG(type, name, value, doc) type name = value;
2703 #else
2704 #define MATERIALIZE_LP64_PRODUCT_FLAG(type, name, value, doc) /* flag is constant */
2705 #endif // _LP64
2706 
2707 // Only materialize src code for range checking when required, ignore otherwise
2708 #define IGNORE_RANGE(a, b)
2709 // Only materialize src code for contraint checking when required, ignore otherwise
2710 #define IGNORE_CONSTRAINT(func,type)
2711 
2712 #define IGNORE_WRITEABLE(type)
2713 
2714 VM_FLAGS(DECLARE_DEVELOPER_FLAG, \
2715          DECLARE_PD_DEVELOPER_FLAG, \
2716          DECLARE_PRODUCT_FLAG, \
2717          DECLARE_PD_PRODUCT_FLAG, \
2718          DECLARE_DIAGNOSTIC_FLAG, \
2719          DECLARE_PD_DIAGNOSTIC_FLAG, \
2720          DECLARE_EXPERIMENTAL_FLAG, \
2721          DECLARE_NOTPRODUCT_FLAG, \
2722          DECLARE_MANAGEABLE_FLAG, \
2723          DECLARE_PRODUCT_RW_FLAG, \
2724          DECLARE_LP64_PRODUCT_FLAG, \
2725          IGNORE_RANGE, \
2726          IGNORE_CONSTRAINT, \
2727          IGNORE_WRITEABLE)
2728 
2729 RUNTIME_OS_FLAGS(DECLARE_DEVELOPER_FLAG, \
2730                  DECLARE_PD_DEVELOPER_FLAG, \
2731                  DECLARE_PRODUCT_FLAG, \
2732                  DECLARE_PD_PRODUCT_FLAG, \
2733                  DECLARE_DIAGNOSTIC_FLAG, \
2734                  DECLARE_PD_DIAGNOSTIC_FLAG, \
2735                  DECLARE_NOTPRODUCT_FLAG, \
2736                  IGNORE_RANGE, \
2737                  IGNORE_CONSTRAINT, \
2738                  IGNORE_WRITEABLE)
2739 
2740 ARCH_FLAGS(DECLARE_DEVELOPER_FLAG, \
2741            DECLARE_PRODUCT_FLAG, \
2742            DECLARE_DIAGNOSTIC_FLAG, \
2743            DECLARE_EXPERIMENTAL_FLAG, \
2744            DECLARE_NOTPRODUCT_FLAG, \
2745            IGNORE_RANGE, \
2746            IGNORE_CONSTRAINT, \
2747            IGNORE_WRITEABLE)
2748 
2749 // Extensions
2750 
2751 #include "runtime/globals_ext.hpp"
2752 
2753 #endif // SHARE_VM_RUNTIME_GLOBALS_HPP