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