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