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