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