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