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