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