globals.hpp revision 2568:1f4f4ae84625
1/*
2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25#ifndef SHARE_VM_RUNTIME_GLOBALS_HPP
26#define SHARE_VM_RUNTIME_GLOBALS_HPP
27
28#include "utilities/debug.hpp"
29#ifdef TARGET_ARCH_x86
30# include "globals_x86.hpp"
31#endif
32#ifdef TARGET_ARCH_sparc
33# include "globals_sparc.hpp"
34#endif
35#ifdef TARGET_ARCH_zero
36# include "globals_zero.hpp"
37#endif
38#ifdef TARGET_ARCH_arm
39# include "globals_arm.hpp"
40#endif
41#ifdef TARGET_ARCH_ppc
42# include "globals_ppc.hpp"
43#endif
44#ifdef TARGET_OS_FAMILY_linux
45# include "globals_linux.hpp"
46#endif
47#ifdef TARGET_OS_FAMILY_solaris
48# include "globals_solaris.hpp"
49#endif
50#ifdef TARGET_OS_FAMILY_windows
51# include "globals_windows.hpp"
52#endif
53#ifdef TARGET_OS_ARCH_linux_x86
54# include "globals_linux_x86.hpp"
55#endif
56#ifdef TARGET_OS_ARCH_linux_sparc
57# include "globals_linux_sparc.hpp"
58#endif
59#ifdef TARGET_OS_ARCH_linux_zero
60# include "globals_linux_zero.hpp"
61#endif
62#ifdef TARGET_OS_ARCH_solaris_x86
63# include "globals_solaris_x86.hpp"
64#endif
65#ifdef TARGET_OS_ARCH_solaris_sparc
66# include "globals_solaris_sparc.hpp"
67#endif
68#ifdef TARGET_OS_ARCH_windows_x86
69# include "globals_windows_x86.hpp"
70#endif
71#ifdef TARGET_OS_ARCH_linux_arm
72# include "globals_linux_arm.hpp"
73#endif
74#ifdef TARGET_OS_ARCH_linux_ppc
75# include "globals_linux_ppc.hpp"
76#endif
77#ifdef COMPILER1
78#ifdef TARGET_ARCH_x86
79# include "c1_globals_x86.hpp"
80#endif
81#ifdef TARGET_ARCH_sparc
82# include "c1_globals_sparc.hpp"
83#endif
84#ifdef TARGET_ARCH_arm
85# include "c1_globals_arm.hpp"
86#endif
87#ifdef TARGET_ARCH_ppc
88# include "c1_globals_ppc.hpp"
89#endif
90#ifdef TARGET_OS_FAMILY_linux
91# include "c1_globals_linux.hpp"
92#endif
93#ifdef TARGET_OS_FAMILY_solaris
94# include "c1_globals_solaris.hpp"
95#endif
96#ifdef TARGET_OS_FAMILY_windows
97# include "c1_globals_windows.hpp"
98#endif
99#endif
100#ifdef COMPILER2
101#ifdef TARGET_ARCH_x86
102# include "c2_globals_x86.hpp"
103#endif
104#ifdef TARGET_ARCH_sparc
105# include "c2_globals_sparc.hpp"
106#endif
107#ifdef TARGET_ARCH_arm
108# include "c2_globals_arm.hpp"
109#endif
110#ifdef TARGET_OS_FAMILY_linux
111# include "c2_globals_linux.hpp"
112#endif
113#ifdef TARGET_OS_FAMILY_solaris
114# include "c2_globals_solaris.hpp"
115#endif
116#ifdef TARGET_OS_FAMILY_windows
117# include "c2_globals_windows.hpp"
118#endif
119#endif
120#ifdef SHARK
121#ifdef TARGET_ARCH_zero
122# include "shark_globals_zero.hpp"
123#endif
124#endif
125
126#if !defined(COMPILER1) && !defined(COMPILER2) && !defined(SHARK)
127define_pd_global(bool, BackgroundCompilation,        false);
128define_pd_global(bool, UseTLAB,                      false);
129define_pd_global(bool, CICompileOSR,                 false);
130define_pd_global(bool, UseTypeProfile,               false);
131define_pd_global(bool, UseOnStackReplacement,        false);
132define_pd_global(bool, InlineIntrinsics,             false);
133define_pd_global(bool, PreferInterpreterNativeStubs, true);
134define_pd_global(bool, ProfileInterpreter,           false);
135define_pd_global(bool, ProfileTraps,                 false);
136define_pd_global(bool, TieredCompilation,            false);
137
138define_pd_global(intx, CompileThreshold,             0);
139define_pd_global(intx, BackEdgeThreshold,            0);
140
141define_pd_global(intx, OnStackReplacePercentage,     0);
142define_pd_global(bool, ResizeTLAB,                   false);
143define_pd_global(intx, FreqInlineSize,               0);
144define_pd_global(intx, InlineSmallCode,              0);
145define_pd_global(intx, NewSizeThreadIncrease,        4*K);
146define_pd_global(intx, InlineClassNatives,           true);
147define_pd_global(intx, InlineUnsafeOps,              true);
148define_pd_global(intx, InitialCodeCacheSize,         160*K);
149define_pd_global(intx, ReservedCodeCacheSize,        32*M);
150define_pd_global(intx, CodeCacheExpansionSize,       32*K);
151define_pd_global(intx, CodeCacheMinBlockLength,      1);
152define_pd_global(uintx,PermSize,    ScaleForWordSize(4*M));
153define_pd_global(uintx,MaxPermSize, ScaleForWordSize(64*M));
154define_pd_global(bool, NeverActAsServerClassMachine, true);
155define_pd_global(uint64_t,MaxRAM,                    1ULL*G);
156#define CI_COMPILER_COUNT 0
157#else
158
159#ifdef COMPILER2
160#define CI_COMPILER_COUNT 2
161#else
162#define CI_COMPILER_COUNT 1
163#endif // COMPILER2
164
165#endif // no compilers
166
167
168// string type aliases used only in this file
169typedef const char* ccstr;
170typedef const char* ccstrlist;   // represents string arguments which accumulate
171
172enum FlagValueOrigin {
173  DEFAULT          = 0,
174  COMMAND_LINE     = 1,
175  ENVIRON_VAR      = 2,
176  CONFIG_FILE      = 3,
177  MANAGEMENT       = 4,
178  ERGONOMIC        = 5,
179  ATTACH_ON_DEMAND = 6,
180  INTERNAL         = 99
181};
182
183struct Flag {
184  const char *type;
185  const char *name;
186  void*       addr;
187
188  NOT_PRODUCT(const char *doc;)
189
190  const char *kind;
191  FlagValueOrigin origin;
192
193  // points to all Flags static array
194  static Flag *flags;
195
196  // number of flags
197  static size_t numFlags;
198
199  static Flag* find_flag(char* name, size_t length);
200
201  bool is_bool() const        { return strcmp(type, "bool") == 0; }
202  bool get_bool() const       { return *((bool*) addr); }
203  void set_bool(bool value)   { *((bool*) addr) = value; }
204
205  bool is_intx()  const       { return strcmp(type, "intx")  == 0; }
206  intx get_intx() const       { return *((intx*) addr); }
207  void set_intx(intx value)   { *((intx*) addr) = value; }
208
209  bool is_uintx() const       { return strcmp(type, "uintx") == 0; }
210  uintx get_uintx() const     { return *((uintx*) addr); }
211  void set_uintx(uintx value) { *((uintx*) addr) = value; }
212
213  bool is_uint64_t() const          { return strcmp(type, "uint64_t") == 0; }
214  uint64_t get_uint64_t() const     { return *((uint64_t*) addr); }
215  void set_uint64_t(uint64_t value) { *((uint64_t*) addr) = value; }
216
217  bool is_double() const        { return strcmp(type, "double") == 0; }
218  double get_double() const     { return *((double*) addr); }
219  void set_double(double value) { *((double*) addr) = value; }
220
221  bool is_ccstr() const          { return strcmp(type, "ccstr") == 0 || strcmp(type, "ccstrlist") == 0; }
222  bool ccstr_accumulates() const { return strcmp(type, "ccstrlist") == 0; }
223  ccstr get_ccstr() const     { return *((ccstr*) addr); }
224  void set_ccstr(ccstr value) { *((ccstr*) addr) = value; }
225
226  bool is_unlocker() const;
227  bool is_unlocked() const;
228  bool is_writeable() const;
229  bool is_external() const;
230
231  void print_on(outputStream* st, bool withComments = false );
232  void print_as_flag(outputStream* st);
233};
234
235// debug flags control various aspects of the VM and are global accessible
236
237// use FlagSetting to temporarily change some debug flag
238// e.g. FlagSetting fs(DebugThisAndThat, true);
239// restored to previous value upon leaving scope
240class FlagSetting {
241  bool val;
242  bool* flag;
243 public:
244  FlagSetting(bool& fl, bool newValue) { flag = &fl; val = fl; fl = newValue; }
245  ~FlagSetting()                       { *flag = val; }
246};
247
248
249class CounterSetting {
250  intx* counter;
251 public:
252  CounterSetting(intx* cnt) { counter = cnt; (*counter)++; }
253  ~CounterSetting()         { (*counter)--; }
254};
255
256
257class IntFlagSetting {
258  intx val;
259  intx* flag;
260 public:
261  IntFlagSetting(intx& fl, intx newValue) { flag = &fl; val = fl; fl = newValue; }
262  ~IntFlagSetting()                       { *flag = val; }
263};
264
265
266class DoubleFlagSetting {
267  double val;
268  double* flag;
269 public:
270  DoubleFlagSetting(double& fl, double newValue) { flag = &fl; val = fl; fl = newValue; }
271  ~DoubleFlagSetting()                           { *flag = val; }
272};
273
274
275class CommandLineFlags {
276 public:
277  static bool boolAt(char* name, size_t len, bool* value);
278  static bool boolAt(char* name, bool* value)      { return boolAt(name, strlen(name), value); }
279  static bool boolAtPut(char* name, size_t len, bool* value, FlagValueOrigin origin);
280  static bool boolAtPut(char* name, bool* value, FlagValueOrigin origin)   { return boolAtPut(name, strlen(name), value, origin); }
281
282  static bool intxAt(char* name, size_t len, intx* value);
283  static bool intxAt(char* name, intx* value)      { return intxAt(name, strlen(name), value); }
284  static bool intxAtPut(char* name, size_t len, intx* value, FlagValueOrigin origin);
285  static bool intxAtPut(char* name, intx* value, FlagValueOrigin origin)   { return intxAtPut(name, strlen(name), value, origin); }
286
287  static bool uintxAt(char* name, size_t len, uintx* value);
288  static bool uintxAt(char* name, uintx* value)    { return uintxAt(name, strlen(name), value); }
289  static bool uintxAtPut(char* name, size_t len, uintx* value, FlagValueOrigin origin);
290  static bool uintxAtPut(char* name, uintx* value, FlagValueOrigin origin) { return uintxAtPut(name, strlen(name), value, origin); }
291
292  static bool uint64_tAt(char* name, size_t len, uint64_t* value);
293  static bool uint64_tAt(char* name, uint64_t* value) { return uint64_tAt(name, strlen(name), value); }
294  static bool uint64_tAtPut(char* name, size_t len, uint64_t* value, FlagValueOrigin origin);
295  static bool uint64_tAtPut(char* name, uint64_t* value, FlagValueOrigin origin) { return uint64_tAtPut(name, strlen(name), value, origin); }
296
297  static bool doubleAt(char* name, size_t len, double* value);
298  static bool doubleAt(char* name, double* value)    { return doubleAt(name, strlen(name), value); }
299  static bool doubleAtPut(char* name, size_t len, double* value, FlagValueOrigin origin);
300  static bool doubleAtPut(char* name, double* value, FlagValueOrigin origin) { return doubleAtPut(name, strlen(name), value, origin); }
301
302  static bool ccstrAt(char* name, size_t len, ccstr* value);
303  static bool ccstrAt(char* name, ccstr* value)    { return ccstrAt(name, strlen(name), value); }
304  static bool ccstrAtPut(char* name, size_t len, ccstr* value, FlagValueOrigin origin);
305  static bool ccstrAtPut(char* name, ccstr* value, FlagValueOrigin origin) { return ccstrAtPut(name, strlen(name), value, origin); }
306
307  // Returns false if name is not a command line flag.
308  static bool wasSetOnCmdline(const char* name, bool* value);
309  static void printSetFlags();
310
311  static void printFlags(bool withComments = false );
312
313  static void verify() PRODUCT_RETURN;
314};
315
316// use this for flags that are true by default in the debug version but
317// false in the optimized version, and vice versa
318#ifdef ASSERT
319#define trueInDebug  true
320#define falseInDebug false
321#else
322#define trueInDebug  false
323#define falseInDebug true
324#endif
325
326// use this for flags that are true per default in the product build
327// but false in development builds, and vice versa
328#ifdef PRODUCT
329#define trueInProduct  true
330#define falseInProduct false
331#else
332#define trueInProduct  false
333#define falseInProduct true
334#endif
335
336// use this for flags that are true per default in the tiered build
337// but false in non-tiered builds, and vice versa
338#ifdef TIERED
339#define  trueInTiered true
340#define falseInTiered false
341#else
342#define  trueInTiered false
343#define falseInTiered true
344#endif
345
346#ifdef JAVASE_EMBEDDED
347#define falseInEmbedded false
348#else
349#define falseInEmbedded true
350#endif
351
352// develop flags are settable / visible only during development and are constant in the PRODUCT version
353// product flags are always settable / visible
354// notproduct flags are settable / visible only during development and are not declared in the PRODUCT version
355
356// A flag must be declared with one of the following types:
357// bool, intx, uintx, ccstr.
358// The type "ccstr" is an alias for "const char*" and is used
359// only in this file, because the macrology requires single-token type names.
360
361// Note: Diagnostic options not meant for VM tuning or for product modes.
362// They are to be used for VM quality assurance or field diagnosis
363// of VM bugs.  They are hidden so that users will not be encouraged to
364// try them as if they were VM ordinary execution options.  However, they
365// are available in the product version of the VM.  Under instruction
366// from support engineers, VM customers can turn them on to collect
367// diagnostic information about VM problems.  To use a VM diagnostic
368// option, you must first specify +UnlockDiagnosticVMOptions.
369// (This master switch also affects the behavior of -Xprintflags.)
370//
371// experimental flags are in support of features that are not
372//    part of the officially supported product, but are available
373//    for experimenting with. They could, for example, be performance
374//    features that may not have undergone full or rigorous QA, but which may
375//    help performance in some cases and released for experimentation
376//    by the community of users and developers. This flag also allows one to
377//    be able to build a fully supported product that nonetheless also
378//    ships with some unsupported, lightly tested, experimental features.
379//    Like the UnlockDiagnosticVMOptions flag above, there is a corresponding
380//    UnlockExperimentalVMOptions flag, which allows the control and
381//    modification of the experimental flags.
382//
383// Nota bene: neither diagnostic nor experimental options should be used casually,
384//    and they are not supported on production loads, except under explicit
385//    direction from support engineers.
386//
387// manageable flags are writeable external product flags.
388//    They are dynamically writeable through the JDK management interface
389//    (com.sun.management.HotSpotDiagnosticMXBean API) and also through JConsole.
390//    These flags are external exported interface (see CCC).  The list of
391//    manageable flags can be queried programmatically through the management
392//    interface.
393//
394//    A flag can be made as "manageable" only if
395//    - the flag is defined in a CCC as an external exported interface.
396//    - the VM implementation supports dynamic setting of the flag.
397//      This implies that the VM must *always* query the flag variable
398//      and not reuse state related to the flag state at any given time.
399//    - you want the flag to be queried programmatically by the customers.
400//
401// product_rw flags are writeable internal product flags.
402//    They are like "manageable" flags but for internal/private use.
403//    The list of product_rw flags are internal/private flags which
404//    may be changed/removed in a future release.  It can be set
405//    through the management interface to get/set value
406//    when the name of flag is supplied.
407//
408//    A flag can be made as "product_rw" only if
409//    - the VM implementation supports dynamic setting of the flag.
410//      This implies that the VM must *always* query the flag variable
411//      and not reuse state related to the flag state at any given time.
412//
413// Note that when there is a need to support develop flags to be writeable,
414// it can be done in the same way as product_rw.
415
416#define RUNTIME_FLAGS(develop, develop_pd, product, product_pd, diagnostic, experimental, notproduct, manageable, product_rw, lp64_product) \
417                                                                            \
418  lp64_product(bool, UseCompressedOops, false,                              \
419            "Use 32-bit object references in 64-bit VM. "                   \
420            "lp64_product means flag is always constant in 32 bit VM")      \
421                                                                            \
422  notproduct(bool, CheckCompressedOops, true,                               \
423            "generate checks in encoding/decoding code in debug VM")        \
424                                                                            \
425  product_pd(uintx, HeapBaseMinAddress,                                     \
426            "OS specific low limit for heap base address")                  \
427                                                                            \
428  diagnostic(bool, PrintCompressedOopsMode, false,                          \
429            "Print compressed oops base address and encoding mode")         \
430                                                                            \
431  lp64_product(intx, ObjectAlignmentInBytes, 8,                             \
432          "Default object alignment in bytes, 8 is minimum")                \
433                                                                            \
434  /* UseMembar is theoretically a temp flag used for memory barrier         \
435   * removal testing.  It was supposed to be removed before FCS but has     \
436   * been re-added (see 6401008) */                                         \
437  product_pd(bool, UseMembar,                                               \
438          "(Unstable) Issues membars on thread state transitions")          \
439                                                                            \
440  /* Temp PPC Flag to allow disabling the use of lwsync on ppc platforms    \
441   * that don't support it.  This will be replaced by processor detection   \
442   * logic.                                                                 \
443   */                                                                       \
444  product(bool, UsePPCLWSYNC, true,                                         \
445          "Use lwsync instruction if true, else use slower sync")           \
446                                                                            \
447  develop(bool, CleanChunkPoolAsync, falseInEmbedded,                       \
448          "Whether to clean the chunk pool asynchronously")                 \
449                                                                            \
450  /* Temporary: See 6948537 */                                             \
451  experimental(bool, UseMemSetInBOT, true,                                  \
452          "(Unstable) uses memset in BOT updates in GC code")               \
453                                                                            \
454  diagnostic(bool, UnlockDiagnosticVMOptions, trueInDebug,                  \
455          "Enable normal processing of flags relating to field diagnostics")\
456                                                                            \
457  experimental(bool, UnlockExperimentalVMOptions, false,                    \
458          "Enable normal processing of flags relating to experimental features")\
459                                                                            \
460  product(bool, JavaMonitorsInStackTrace, true,                             \
461          "Print info. about Java monitor locks when the stacks are dumped")\
462                                                                            \
463  product_pd(bool, UseLargePages,                                           \
464          "Use large page memory")                                          \
465                                                                            \
466  product_pd(bool, UseLargePagesIndividualAllocation,                       \
467          "Allocate large pages individually for better affinity")          \
468                                                                            \
469  develop(bool, LargePagesIndividualAllocationInjectError, false,           \
470          "Fail large pages individual allocation")                         \
471                                                                            \
472  develop(bool, TracePageSizes, false,                                      \
473          "Trace page size selection and usage.")                           \
474                                                                            \
475  product(bool, UseNUMA, false,                                             \
476          "Use NUMA if available")                                          \
477                                                                            \
478  product(bool, ForceNUMA, false,                                           \
479          "Force NUMA optimizations on single-node/UMA systems")            \
480                                                                            \
481  product(intx, NUMAChunkResizeWeight, 20,                                  \
482          "Percentage (0-100) used to weight the current sample when "      \
483          "computing exponentially decaying average for "                   \
484          "AdaptiveNUMAChunkSizing")                                        \
485                                                                            \
486  product(intx, NUMASpaceResizeRate, 1*G,                                   \
487          "Do not reallocate more that this amount per collection")         \
488                                                                            \
489  product(bool, UseAdaptiveNUMAChunkSizing, true,                           \
490          "Enable adaptive chunk sizing for NUMA")                          \
491                                                                            \
492  product(bool, NUMAStats, false,                                           \
493          "Print NUMA stats in detailed heap information")                  \
494                                                                            \
495  product(intx, NUMAPageScanRate, 256,                                      \
496          "Maximum number of pages to include in the page scan procedure")  \
497                                                                            \
498  product_pd(bool, NeedsDeoptSuspend,                                       \
499          "True for register window machines (sparc/ia64)")                 \
500                                                                            \
501  product(intx, UseSSE, 99,                                                 \
502          "Highest supported SSE instructions set on x86/x64")              \
503                                                                            \
504  product(intx, UseVIS, 99,                                                 \
505          "Highest supported VIS instructions set on Sparc")                \
506                                                                            \
507  product(uintx, LargePageSizeInBytes, 0,                                   \
508          "Large page size (0 to let VM choose the page size")              \
509                                                                            \
510  product(uintx, LargePageHeapSizeThreshold, 128*M,                         \
511          "Use large pages if max heap is at least this big")               \
512                                                                            \
513  product(bool, ForceTimeHighResolution, false,                             \
514          "Using high time resolution(For Win32 only)")                     \
515                                                                            \
516  develop(bool, TraceItables, false,                                        \
517          "Trace initialization and use of itables")                        \
518                                                                            \
519  develop(bool, TracePcPatching, false,                                     \
520          "Trace usage of frame::patch_pc")                                 \
521                                                                            \
522  develop(bool, TraceJumps, false,                                          \
523          "Trace assembly jumps in thread ring buffer")                     \
524                                                                            \
525  develop(bool, TraceRelocator, false,                                      \
526          "Trace the bytecode relocator")                                   \
527                                                                            \
528  develop(bool, TraceLongCompiles, false,                                   \
529          "Print out every time compilation is longer than "                \
530          "a given threashold")                                             \
531                                                                            \
532  develop(bool, SafepointALot, false,                                       \
533          "Generates a lot of safepoints. Works with "                      \
534          "GuaranteedSafepointInterval")                                    \
535                                                                            \
536  product_pd(bool, BackgroundCompilation,                                   \
537          "A thread requesting compilation is not blocked during "          \
538          "compilation")                                                    \
539                                                                            \
540  product(bool, PrintVMQWaitTime, false,                                    \
541          "Prints out the waiting time in VM operation queue")              \
542                                                                            \
543  develop(bool, BailoutToInterpreterForThrows, false,                       \
544          "Compiled methods which throws/catches exceptions will be "       \
545          "deopt and intp.")                                                \
546                                                                            \
547  develop(bool, NoYieldsInMicrolock, false,                                 \
548          "Disable yields in microlock")                                    \
549                                                                            \
550  develop(bool, TraceOopMapGeneration, false,                               \
551          "Shows oopmap generation")                                        \
552                                                                            \
553  product(bool, MethodFlushing, true,                                       \
554          "Reclamation of zombie and not-entrant methods")                  \
555                                                                            \
556  develop(bool, VerifyStack, false,                                         \
557          "Verify stack of each thread when it is entering a runtime call") \
558                                                                            \
559  develop(bool, ForceUnreachable, false,                                    \
560          "(amd64) Make all non code cache addresses to be unreachable with rip-rel forcing use of 64bit literal fixups") \
561                                                                            \
562  notproduct(bool, StressDerivedPointers, false,                            \
563          "Force scavenge when a derived pointers is detected on stack "    \
564          "after rtm call")                                                 \
565                                                                            \
566  develop(bool, TraceDerivedPointers, false,                                \
567          "Trace traversal of derived pointers on stack")                   \
568                                                                            \
569  notproduct(bool, TraceCodeBlobStacks, false,                              \
570          "Trace stack-walk of codeblobs")                                  \
571                                                                            \
572  product(bool, PrintJNIResolving, false,                                   \
573          "Used to implement -v:jni")                                       \
574                                                                            \
575  notproduct(bool, PrintRewrites, false,                                    \
576          "Print methods that are being rewritten")                         \
577                                                                            \
578  product(bool, UseInlineCaches, true,                                      \
579          "Use Inline Caches for virtual calls ")                           \
580                                                                            \
581  develop(bool, InlineArrayCopy, true,                                      \
582          "inline arraycopy native that is known to be part of "            \
583          "base library DLL")                                               \
584                                                                            \
585  develop(bool, InlineObjectHash, true,                                     \
586          "inline Object::hashCode() native that is known to be part "      \
587          "of base library DLL")                                            \
588                                                                            \
589  develop(bool, InlineObjectCopy, true,                                     \
590          "inline Object.clone and Arrays.copyOf[Range] intrinsics")        \
591                                                                            \
592  develop(bool, InlineNatives, true,                                        \
593          "inline natives that are known to be part of base library DLL")   \
594                                                                            \
595  develop(bool, InlineMathNatives, true,                                    \
596          "inline SinD, CosD, etc.")                                        \
597                                                                            \
598  develop(bool, InlineClassNatives, true,                                   \
599          "inline Class.isInstance, etc")                                   \
600                                                                            \
601  develop(bool, InlineAtomicLong, true,                                     \
602          "inline sun.misc.AtomicLong")                                     \
603                                                                            \
604  develop(bool, InlineThreadNatives, true,                                  \
605          "inline Thread.currentThread, etc")                               \
606                                                                            \
607  develop(bool, InlineReflectionGetCallerClass, true,                       \
608          "inline sun.reflect.Reflection.getCallerClass(), known to be part "\
609          "of base library DLL")                                            \
610                                                                            \
611  develop(bool, InlineUnsafeOps, true,                                      \
612          "inline memory ops (native methods) from sun.misc.Unsafe")        \
613                                                                            \
614  develop(bool, ConvertCmpD2CmpF, true,                                     \
615          "Convert cmpD to cmpF when one input is constant in float range") \
616                                                                            \
617  develop(bool, ConvertFloat2IntClipping, true,                             \
618          "Convert float2int clipping idiom to integer clipping")           \
619                                                                            \
620  develop(bool, SpecialStringCompareTo, true,                               \
621          "special version of string compareTo")                            \
622                                                                            \
623  develop(bool, SpecialStringIndexOf, true,                                 \
624          "special version of string indexOf")                              \
625                                                                            \
626  develop(bool, SpecialStringEquals, true,                                  \
627          "special version of string equals")                               \
628                                                                            \
629  develop(bool, SpecialArraysEquals, true,                                  \
630          "special version of Arrays.equals(char[],char[])")                \
631                                                                            \
632  product(bool, UseSSE42Intrinsics, false,                                  \
633          "SSE4.2 versions of intrinsics")                                  \
634                                                                            \
635  product(bool, UseCondCardMark, false,                                     \
636          "Check for already marked card before updating card table")       \
637                                                                            \
638  develop(bool, TraceCallFixup, false,                                      \
639          "traces all call fixups")                                         \
640                                                                            \
641  develop(bool, DeoptimizeALot, false,                                      \
642          "deoptimize at every exit from the runtime system")               \
643                                                                            \
644  notproduct(ccstrlist, DeoptimizeOnlyAt, "",                               \
645          "a comma separated list of bcis to deoptimize at")                \
646                                                                            \
647  product(bool, DeoptimizeRandom, false,                                    \
648          "deoptimize random frames on random exit from the runtime system")\
649                                                                            \
650  notproduct(bool, ZombieALot, false,                                       \
651          "creates zombies (non-entrant) at exit from the runt. system")    \
652                                                                            \
653  product(bool, UnlinkSymbolsALot, false,                                   \
654          "unlink unreferenced symbols from the symbol table at safepoints")\
655                                                                            \
656  notproduct(bool, WalkStackALot, false,                                    \
657          "trace stack (no print) at every exit from the runtime system")   \
658                                                                            \
659  develop(bool, Debugging, false,                                           \
660          "set when executing debug methods in debug.ccp "                  \
661          "(to prevent triggering assertions)")                             \
662                                                                            \
663  notproduct(bool, StrictSafepointChecks, trueInDebug,                      \
664          "Enable strict checks that safepoints cannot happen for threads " \
665          "that used No_Safepoint_Verifier")                                \
666                                                                            \
667  notproduct(bool, VerifyLastFrame, false,                                  \
668          "Verify oops on last frame on entry to VM")                       \
669                                                                            \
670  develop(bool, TraceHandleAllocation, false,                               \
671          "Prints out warnings when suspicious many handles are allocated") \
672                                                                            \
673  product(bool, UseCompilerSafepoints, true,                                \
674          "Stop at safepoints in compiled code")                            \
675                                                                            \
676  product(bool, UseSplitVerifier, true,                                     \
677          "use split verifier with StackMapTable attributes")               \
678                                                                            \
679  product(bool, FailOverToOldVerifier, true,                                \
680          "fail over to old verifier when split verifier fails")            \
681                                                                            \
682  develop(bool, ShowSafepointMsgs, false,                                   \
683          "Show msg. about safepoint synch.")                               \
684                                                                            \
685  product(bool, SafepointTimeout, false,                                    \
686          "Time out and warn or fail after SafepointTimeoutDelay "          \
687          "milliseconds if failed to reach safepoint")                      \
688                                                                            \
689  develop(bool, DieOnSafepointTimeout, false,                               \
690          "Die upon failure to reach safepoint (see SafepointTimeout)")     \
691                                                                            \
692  /* 50 retries * (5 * current_retry_count) millis = ~6.375 seconds */      \
693  /* typically, at most a few retries are needed */                         \
694  product(intx, SuspendRetryCount, 50,                                      \
695          "Maximum retry count for an external suspend request")            \
696                                                                            \
697  product(intx, SuspendRetryDelay, 5,                                       \
698          "Milliseconds to delay per retry (* current_retry_count)")        \
699                                                                            \
700  product(bool, AssertOnSuspendWaitFailure, false,                          \
701          "Assert/Guarantee on external suspend wait failure")              \
702                                                                            \
703  product(bool, TraceSuspendWaitFailures, false,                            \
704          "Trace external suspend wait failures")                           \
705                                                                            \
706  product(bool, MaxFDLimit, true,                                           \
707          "Bump the number of file descriptors to max in solaris.")         \
708                                                                            \
709  notproduct(bool, LogEvents, trueInDebug,                                  \
710          "Enable Event log")                                               \
711                                                                            \
712  product(bool, BytecodeVerificationRemote, true,                           \
713          "Enables the Java bytecode verifier for remote classes")          \
714                                                                            \
715  product(bool, BytecodeVerificationLocal, false,                           \
716          "Enables the Java bytecode verifier for local classes")           \
717                                                                            \
718  develop(bool, ForceFloatExceptions, trueInDebug,                          \
719          "Force exceptions on FP stack under/overflow")                    \
720                                                                            \
721  develop(bool, SoftMatchFailure, trueInProduct,                            \
722          "If the DFA fails to match a node, print a message and bail out") \
723                                                                            \
724  develop(bool, VerifyStackAtCalls, false,                                  \
725          "Verify that the stack pointer is unchanged after calls")         \
726                                                                            \
727  develop(bool, TraceJavaAssertions, false,                                 \
728          "Trace java language assertions")                                 \
729                                                                            \
730  notproduct(bool, CheckAssertionStatusDirectives, false,                   \
731          "temporary - see javaClasses.cpp")                                \
732                                                                            \
733  notproduct(bool, PrintMallocFree, false,                                  \
734          "Trace calls to C heap malloc/free allocation")                   \
735                                                                            \
736  product(bool, PrintOopAddress, false,                                     \
737          "Always print the location of the oop")                           \
738                                                                            \
739  notproduct(bool, VerifyCodeCacheOften, false,                             \
740          "Verify compiled-code cache often")                               \
741                                                                            \
742  develop(bool, ZapDeadCompiledLocals, false,                               \
743          "Zap dead locals in compiler frames")                             \
744                                                                            \
745  notproduct(bool, ZapDeadLocalsOld, false,                                 \
746          "Zap dead locals (old version, zaps all frames when "             \
747          "entering the VM")                                                \
748                                                                            \
749  notproduct(bool, CheckOopishValues, false,                                \
750          "Warn if value contains oop ( requires ZapDeadLocals)")           \
751                                                                            \
752  develop(bool, UseMallocOnly, false,                                       \
753          "use only malloc/free for allocation (no resource area/arena)")   \
754                                                                            \
755  develop(bool, PrintMalloc, false,                                         \
756          "print all malloc/free calls")                                    \
757                                                                            \
758  develop(bool, PrintMallocStatistics, false,                               \
759          "print malloc/free statistics")                                   \
760                                                                            \
761  develop(bool, ZapResourceArea, trueInDebug,                               \
762          "Zap freed resource/arena space with 0xABABABAB")                 \
763                                                                            \
764  notproduct(bool, ZapVMHandleArea, trueInDebug,                            \
765          "Zap freed VM handle space with 0xBCBCBCBC")                      \
766                                                                            \
767  develop(bool, ZapJNIHandleArea, trueInDebug,                              \
768          "Zap freed JNI handle space with 0xFEFEFEFE")                     \
769                                                                            \
770  notproduct(bool, ZapStackSegments, trueInDebug,                           \
771             "Zap allocated/freed Stack segments with 0xFADFADED")          \
772                                                                            \
773  develop(bool, ZapUnusedHeapArea, trueInDebug,                             \
774          "Zap unused heap space with 0xBAADBABE")                          \
775                                                                            \
776  develop(bool, TraceZapUnusedHeapArea, false,                              \
777          "Trace zapping of unused heap space")                             \
778                                                                            \
779  develop(bool, CheckZapUnusedHeapArea, false,                              \
780          "Check zapping of unused heap space")                             \
781                                                                            \
782  develop(bool, ZapFillerObjects, trueInDebug,                              \
783          "Zap filler objects with 0xDEAFBABE")                             \
784                                                                            \
785  develop(bool, PrintVMMessages, true,                                      \
786          "Print vm messages on console")                                   \
787                                                                            \
788  product(bool, PrintGCApplicationConcurrentTime, false,                    \
789          "Print the time the application has been running")                \
790                                                                            \
791  product(bool, PrintGCApplicationStoppedTime, false,                       \
792          "Print the time the application has been stopped")                \
793                                                                            \
794  notproduct(uintx, ErrorHandlerTest, 0,                                    \
795          "If > 0, provokes an error after VM initialization; the value"    \
796          "determines which error to provoke.  See test_error_handler()"    \
797          "in debug.cpp.")                                                  \
798                                                                            \
799  develop(bool, Verbose, false,                                             \
800          "Prints additional debugging information from other modes")       \
801                                                                            \
802  develop(bool, PrintMiscellaneous, false,                                  \
803          "Prints uncategorized debugging information (requires +Verbose)") \
804                                                                            \
805  develop(bool, WizardMode, false,                                          \
806          "Prints much more debugging information")                         \
807                                                                            \
808  product(bool, ShowMessageBoxOnError, false,                               \
809          "Keep process alive on VM fatal error")                           \
810                                                                            \
811  product(bool, CreateMinidumpOnCrash, false,                               \
812          "Create minidump on VM fatal error")                              \
813                                                                            \
814  product_pd(bool, UseOSErrorReporting,                                     \
815          "Let VM fatal error propagate to the OS (ie. WER on Windows)")    \
816                                                                            \
817  product(bool, SuppressFatalErrorMessage, false,                           \
818          "Do NO Fatal Error report [Avoid deadlock]")                      \
819                                                                            \
820  product(ccstrlist, OnError, "",                                           \
821          "Run user-defined commands on fatal error; see VMError.cpp "      \
822          "for examples")                                                   \
823                                                                            \
824  product(ccstrlist, OnOutOfMemoryError, "",                                \
825          "Run user-defined commands on first java.lang.OutOfMemoryError")  \
826                                                                            \
827  manageable(bool, HeapDumpBeforeFullGC, false,                             \
828          "Dump heap to file before any major stop-world GC")               \
829                                                                            \
830  manageable(bool, HeapDumpAfterFullGC, false,                              \
831          "Dump heap to file after any major stop-world GC")                \
832                                                                            \
833  manageable(bool, HeapDumpOnOutOfMemoryError, false,                       \
834          "Dump heap to file when java.lang.OutOfMemoryError is thrown")    \
835                                                                            \
836  manageable(ccstr, HeapDumpPath, NULL,                                     \
837          "When HeapDumpOnOutOfMemoryError is on, the path (filename or"    \
838          "directory) of the dump file (defaults to java_pid<pid>.hprof"    \
839          "in the working directory)")                                      \
840                                                                            \
841  develop(uintx, SegmentedHeapDumpThreshold, 2*G,                           \
842          "Generate a segmented heap dump (JAVA PROFILE 1.0.2 format) "     \
843          "when the heap usage is larger than this")                        \
844                                                                            \
845  develop(uintx, HeapDumpSegmentSize, 1*G,                                  \
846          "Approximate segment size when generating a segmented heap dump") \
847                                                                            \
848  develop(bool, BreakAtWarning, false,                                      \
849          "Execute breakpoint upon encountering VM warning")                \
850                                                                            \
851  product_pd(bool, UseVectoredExceptions,                                   \
852          "Temp Flag - Use Vectored Exceptions rather than SEH (Windows Only)") \
853                                                                            \
854  develop(bool, TraceVMOperation, false,                                    \
855          "Trace vm operations")                                            \
856                                                                            \
857  develop(bool, UseFakeTimers, false,                                       \
858          "Tells whether the VM should use system time or a fake timer")    \
859                                                                            \
860  diagnostic(bool, LogCompilation, false,                                   \
861          "Log compilation activity in detail to hotspot.log or LogFile")   \
862                                                                            \
863  product(bool, PrintCompilation, false,                                    \
864          "Print compilations")                                             \
865                                                                            \
866  diagnostic(bool, TraceNMethodInstalls, false,                             \
867             "Trace nmethod intallation")                                   \
868                                                                            \
869  diagnostic(intx, ScavengeRootsInCode, 1,                                  \
870             "0: do not allow scavengable oops in the code cache; "         \
871             "1: allow scavenging from the code cache; "                    \
872             "2: emit as many constants as the compiler can see")           \
873                                                                            \
874  diagnostic(bool, TraceOSRBreakpoint, false,                               \
875             "Trace OSR Breakpoint ")                                       \
876                                                                            \
877  diagnostic(bool, TraceCompileTriggered, false,                            \
878             "Trace compile triggered")                                     \
879                                                                            \
880  diagnostic(bool, TraceTriggers, false,                                    \
881             "Trace triggers")                                              \
882                                                                            \
883  product(bool, AlwaysRestoreFPU, false,                                    \
884          "Restore the FPU control word after every JNI call (expensive)")  \
885                                                                            \
886  notproduct(bool, PrintCompilation2, false,                                \
887          "Print additional statistics per compilation")                    \
888                                                                            \
889  diagnostic(bool, PrintAdapterHandlers, false,                             \
890          "Print code generated for i2c/c2i adapters")                      \
891                                                                            \
892  develop(bool, VerifyAdapterSharing, false,                                \
893          "Verify that the code for shared adapters is the equivalent")     \
894                                                                            \
895  diagnostic(bool, PrintAssembly, false,                                    \
896          "Print assembly code (using external disassembler.so)")           \
897                                                                            \
898  diagnostic(ccstr, PrintAssemblyOptions, NULL,                             \
899          "Options string passed to disassembler.so")                       \
900                                                                            \
901  diagnostic(bool, PrintNMethods, false,                                    \
902          "Print assembly code for nmethods when generated")                \
903                                                                            \
904  diagnostic(bool, PrintNativeNMethods, false,                              \
905          "Print assembly code for native nmethods when generated")         \
906                                                                            \
907  develop(bool, PrintDebugInfo, false,                                      \
908          "Print debug information for all nmethods when generated")        \
909                                                                            \
910  develop(bool, PrintRelocations, false,                                    \
911          "Print relocation information for all nmethods when generated")   \
912                                                                            \
913  develop(bool, PrintDependencies, false,                                   \
914          "Print dependency information for all nmethods when generated")   \
915                                                                            \
916  develop(bool, PrintExceptionHandlers, false,                              \
917          "Print exception handler tables for all nmethods when generated") \
918                                                                            \
919  develop(bool, InterceptOSException, false,                                \
920          "Starts debugger when an implicit OS (e.g., NULL) "               \
921          "exception happens")                                              \
922                                                                            \
923  notproduct(bool, PrintCodeCache, false,                                   \
924          "Print the compiled_code cache when exiting")                     \
925                                                                            \
926  develop(bool, PrintCodeCache2, false,                                     \
927          "Print detailed info on the compiled_code cache when exiting")    \
928                                                                            \
929  diagnostic(bool, PrintStubCode, false,                                    \
930          "Print generated stub code")                                      \
931                                                                            \
932  product(bool, StackTraceInThrowable, true,                                \
933          "Collect backtrace in throwable when exception happens")          \
934                                                                            \
935  product(bool, OmitStackTraceInFastThrow, true,                            \
936          "Omit backtraces for some 'hot' exceptions in optimized code")    \
937                                                                            \
938  product(bool, ProfilerPrintByteCodeStatistics, false,                     \
939          "Prints byte code statictics when dumping profiler output")       \
940                                                                            \
941  product(bool, ProfilerRecordPC, false,                                    \
942          "Collects tick for each 16 byte interval of compiled code")       \
943                                                                            \
944  product(bool, ProfileVM, false,                                           \
945          "Profiles ticks that fall within VM (either in the VM Thread "    \
946          "or VM code called through stubs)")                               \
947                                                                            \
948  product(bool, ProfileIntervals, false,                                    \
949          "Prints profiles for each interval (see ProfileIntervalsTicks)")  \
950                                                                            \
951  notproduct(bool, ProfilerCheckIntervals, false,                           \
952          "Collect and print info on spacing of profiler ticks")            \
953                                                                            \
954  develop(bool, PrintJVMWarnings, false,                                    \
955          "Prints warnings for unimplemented JVM functions")                \
956                                                                            \
957  product(bool, PrintWarnings, true,                                        \
958          "Prints JVM warnings to output stream")                           \
959                                                                            \
960  notproduct(uintx, WarnOnStalledSpinLock, 0,                               \
961          "Prints warnings for stalled SpinLocks")                          \
962                                                                            \
963  develop(bool, InitializeJavaLangSystem, true,                             \
964          "Initialize java.lang.System - turn off for individual "          \
965          "method debugging")                                               \
966                                                                            \
967  develop(bool, InitializeJavaLangString, true,                             \
968          "Initialize java.lang.String - turn off for individual "          \
969          "method debugging")                                               \
970                                                                            \
971  develop(bool, InitializeJavaLangExceptionsErrors, true,                   \
972          "Initialize various error and exception classes - turn off for "  \
973          "individual method debugging")                                    \
974                                                                            \
975  product(bool, RegisterFinalizersAtInit, true,                             \
976          "Register finalizable objects at end of Object.<init> or "        \
977          "after allocation")                                               \
978                                                                            \
979  develop(bool, RegisterReferences, true,                                   \
980          "Tells whether the VM should register soft/weak/final/phantom "   \
981          "references")                                                     \
982                                                                            \
983  develop(bool, IgnoreRewrites, false,                                      \
984          "Supress rewrites of bytecodes in the oopmap generator. "         \
985          "This is unsafe!")                                                \
986                                                                            \
987  develop(bool, PrintCodeCacheExtension, false,                             \
988          "Print extension of code cache")                                  \
989                                                                            \
990  develop(bool, UsePrivilegedStack, true,                                   \
991          "Enable the security JVM functions")                              \
992                                                                            \
993  develop(bool, IEEEPrecision, true,                                        \
994          "Enables IEEE precision (for INTEL only)")                        \
995                                                                            \
996  develop(bool, ProtectionDomainVerification, true,                         \
997          "Verifies protection domain before resolution in system "         \
998          "dictionary")                                                     \
999                                                                            \
1000  product(bool, ClassUnloading, true,                                       \
1001          "Do unloading of classes")                                        \
1002                                                                            \
1003  diagnostic(bool, LinkWellKnownClasses, false,                             \
1004          "Resolve a well known class as soon as its name is seen")         \
1005                                                                            \
1006  develop(bool, DisableStartThread, false,                                  \
1007          "Disable starting of additional Java threads "                    \
1008          "(for debugging only)")                                           \
1009                                                                            \
1010  develop(bool, MemProfiling, false,                                        \
1011          "Write memory usage profiling to log file")                       \
1012                                                                            \
1013  notproduct(bool, PrintSystemDictionaryAtExit, false,                      \
1014          "Prints the system dictionary at exit")                           \
1015                                                                            \
1016  diagnostic(bool, UnsyncloadClass, false,                                  \
1017          "Unstable: VM calls loadClass unsynchronized. Custom "            \
1018          "class loader  must call VM synchronized for findClass "          \
1019          "and defineClass.")                                               \
1020                                                                            \
1021  product(bool, AlwaysLockClassLoader, false,                               \
1022          "Require the VM to acquire the class loader lock before calling " \
1023          "loadClass() even for class loaders registering "                 \
1024          "as parallel capable")                                            \
1025                                                                            \
1026  product(bool, AllowParallelDefineClass, false,                            \
1027          "Allow parallel defineClass requests for class loaders "          \
1028          "registering as parallel capable")                                \
1029                                                                            \
1030  product(bool, MustCallLoadClassInternal, false,                           \
1031          "Call loadClassInternal() rather than loadClass()")               \
1032                                                                            \
1033  product_pd(bool, DontYieldALot,                                           \
1034          "Throw away obvious excess yield calls (for SOLARIS only)")       \
1035                                                                            \
1036  product_pd(bool, ConvertSleepToYield,                                     \
1037          "Converts sleep(0) to thread yield "                              \
1038          "(may be off for SOLARIS to improve GUI)")                        \
1039                                                                            \
1040  product(bool, ConvertYieldToSleep, false,                                 \
1041          "Converts yield to a sleep of MinSleepInterval to simulate Win32 "\
1042          "behavior (SOLARIS only)")                                        \
1043                                                                            \
1044  product(bool, UseBoundThreads, true,                                      \
1045          "Bind user level threads to kernel threads (for SOLARIS only)")   \
1046                                                                            \
1047  develop(bool, UseDetachedThreads, true,                                   \
1048          "Use detached threads that are recycled upon termination "        \
1049          "(for SOLARIS only)")                                             \
1050                                                                            \
1051  product(bool, UseLWPSynchronization, true,                                \
1052          "Use LWP-based instead of libthread-based synchronization "       \
1053          "(SPARC only)")                                                   \
1054                                                                            \
1055  product(ccstr, SyncKnobs, NULL,                                           \
1056          "(Unstable) Various monitor synchronization tunables")            \
1057                                                                            \
1058  product(intx, EmitSync, 0,                                                \
1059          "(Unsafe,Unstable) "                                              \
1060          " Controls emission of inline sync fast-path code")               \
1061                                                                            \
1062  product(intx, AlwaysInflate, 0, "(Unstable) Force inflation")             \
1063                                                                            \
1064  product(intx, MonitorBound, 0, "Bound Monitor population")                \
1065                                                                            \
1066  product(bool, MonitorInUseLists, false, "Track Monitors for Deflation")   \
1067                                                                            \
1068  product(intx, Atomics, 0,                                                 \
1069          "(Unsafe,Unstable) Diagnostic - Controls emission of atomics")    \
1070                                                                            \
1071  product(intx, FenceInstruction, 0,                                        \
1072          "(Unsafe,Unstable) Experimental")                                 \
1073                                                                            \
1074  product(intx, SyncFlags, 0, "(Unsafe,Unstable) Experimental Sync flags" ) \
1075                                                                            \
1076  product(intx, SyncVerbose, 0, "(Unstable)" )                              \
1077                                                                            \
1078  product(intx, ClearFPUAtPark, 0, "(Unsafe,Unstable)" )                    \
1079                                                                            \
1080  product(intx, hashCode, 0,                                                \
1081         "(Unstable) select hashCode generation algorithm" )                \
1082                                                                            \
1083  product(intx, WorkAroundNPTLTimedWaitHang, 1,                             \
1084         "(Unstable, Linux-specific)"                                       \
1085         " avoid NPTL-FUTEX hang pthread_cond_timedwait" )                  \
1086                                                                            \
1087  product(bool, FilterSpuriousWakeups, true,                                \
1088          "Prevent spurious or premature wakeups from object.wait "         \
1089          "(Solaris only)")                                                 \
1090                                                                            \
1091  product(intx, NativeMonitorTimeout, -1, "(Unstable)" )                    \
1092  product(intx, NativeMonitorFlags, 0, "(Unstable)" )                       \
1093  product(intx, NativeMonitorSpinLimit, 20, "(Unstable)" )                  \
1094                                                                            \
1095  develop(bool, UsePthreads, false,                                         \
1096          "Use pthread-based instead of libthread-based synchronization "   \
1097          "(SPARC only)")                                                   \
1098                                                                            \
1099  product(bool, AdjustConcurrency, false,                                   \
1100          "call thr_setconcurrency at thread create time to avoid "         \
1101          "LWP starvation on MP systems (For Solaris Only)")                \
1102                                                                            \
1103  develop(bool, UpdateHotSpotCompilerFileOnError, true,                     \
1104          "Should the system attempt to update the compiler file when "     \
1105          "an error occurs?")                                               \
1106                                                                            \
1107  product(bool, ReduceSignalUsage, false,                                   \
1108          "Reduce the use of OS signals in Java and/or the VM")             \
1109                                                                            \
1110  notproduct(bool, ValidateMarkSweep, false,                                \
1111          "Do extra validation during MarkSweep collection")                \
1112                                                                            \
1113  notproduct(bool, RecordMarkSweepCompaction, false,                        \
1114          "Enable GC-to-GC recording and querying of compaction during "    \
1115          "MarkSweep")                                                      \
1116                                                                            \
1117  develop_pd(bool, ShareVtableStubs,                                        \
1118          "Share vtable stubs (smaller code but worse branch prediction")   \
1119                                                                            \
1120  develop(bool, LoadLineNumberTables, true,                                 \
1121          "Tells whether the class file parser loads line number tables")   \
1122                                                                            \
1123  develop(bool, LoadLocalVariableTables, true,                              \
1124          "Tells whether the class file parser loads local variable tables")\
1125                                                                            \
1126  develop(bool, LoadLocalVariableTypeTables, true,                          \
1127          "Tells whether the class file parser loads local variable type tables")\
1128                                                                            \
1129  product(bool, AllowUserSignalHandlers, false,                             \
1130          "Do not complain if the application installs signal handlers "    \
1131          "(Solaris & Linux only)")                                         \
1132                                                                            \
1133  product(bool, UseSignalChaining, true,                                    \
1134          "Use signal-chaining to invoke signal handlers installed "        \
1135          "by the application (Solaris & Linux only)")                      \
1136                                                                            \
1137  product(bool, UseAltSigs, false,                                          \
1138          "Use alternate signals instead of SIGUSR1 & SIGUSR2 for VM "      \
1139          "internal signals (Solaris only)")                                \
1140                                                                            \
1141  product(bool, UseSpinning, false,                                         \
1142          "Use spinning in monitor inflation and before entry")             \
1143                                                                            \
1144  product(bool, PreSpinYield, false,                                        \
1145          "Yield before inner spinning loop")                               \
1146                                                                            \
1147  product(bool, PostSpinYield, true,                                        \
1148          "Yield after inner spinning loop")                                \
1149                                                                            \
1150  product(bool, AllowJNIEnvProxy, false,                                    \
1151          "Allow JNIEnv proxies for jdbx")                                  \
1152                                                                            \
1153  product(bool, JNIDetachReleasesMonitors, true,                            \
1154          "JNI DetachCurrentThread releases monitors owned by thread")      \
1155                                                                            \
1156  product(bool, RestoreMXCSROnJNICalls, false,                              \
1157          "Restore MXCSR when returning from JNI calls")                    \
1158                                                                            \
1159  product(bool, CheckJNICalls, false,                                       \
1160          "Verify all arguments to JNI calls")                              \
1161                                                                            \
1162  product(bool, UseFastJNIAccessors, true,                                  \
1163          "Use optimized versions of Get<Primitive>Field")                  \
1164                                                                            \
1165  product(bool, EagerXrunInit, false,                                       \
1166          "Eagerly initialize -Xrun libraries; allows startup profiling, "  \
1167          " but not all -Xrun libraries may support the state of the VM at this time") \
1168                                                                            \
1169  product(bool, PreserveAllAnnotations, false,                              \
1170          "Preserve RuntimeInvisibleAnnotations as well as RuntimeVisibleAnnotations") \
1171                                                                            \
1172  develop(uintx, PreallocatedOutOfMemoryErrorCount, 4,                      \
1173          "Number of OutOfMemoryErrors preallocated with backtrace")        \
1174                                                                            \
1175  product(bool, LazyBootClassLoader, true,                                  \
1176          "Enable/disable lazy opening of boot class path entries")         \
1177                                                                            \
1178  diagnostic(bool, UseIncDec, true,                                         \
1179          "Use INC, DEC instructions on x86")                               \
1180                                                                            \
1181  product(bool, UseNewLongLShift, false,                                    \
1182          "Use optimized bitwise shift left")                               \
1183                                                                            \
1184  product(bool, UseStoreImmI16, true,                                       \
1185          "Use store immediate 16-bits value instruction on x86")           \
1186                                                                            \
1187  product(bool, UseAddressNop, false,                                       \
1188          "Use '0F 1F [addr]' NOP instructions on x86 cpus")                \
1189                                                                            \
1190  product(bool, UseXmmLoadAndClearUpper, true,                              \
1191          "Load low part of XMM register and clear upper part")             \
1192                                                                            \
1193  product(bool, UseXmmRegToRegMoveAll, false,                               \
1194          "Copy all XMM register bits when moving value between registers") \
1195                                                                            \
1196  product(bool, UseXmmI2D, false,                                           \
1197          "Use SSE2 CVTDQ2PD instruction to convert Integer to Double")     \
1198                                                                            \
1199  product(bool, UseXmmI2F, false,                                           \
1200          "Use SSE2 CVTDQ2PS instruction to convert Integer to Float")      \
1201                                                                            \
1202  product(bool, UseXMMForArrayCopy, false,                                  \
1203          "Use SSE2 MOVQ instruction for Arraycopy")                        \
1204                                                                            \
1205  product(bool, UseUnalignedLoadStores, false,                              \
1206          "Use SSE2 MOVDQU instruction for Arraycopy")                      \
1207                                                                            \
1208  product(intx, FieldsAllocationStyle, 1,                                   \
1209          "0 - type based with oops first, 1 - with oops last, "            \
1210          "2 - oops in super and sub classes are together")                 \
1211                                                                            \
1212  product(bool, CompactFields, true,                                        \
1213          "Allocate nonstatic fields in gaps between previous fields")      \
1214                                                                            \
1215  notproduct(bool, PrintCompactFieldsSavings, false,                        \
1216          "Print how many words were saved with CompactFields")             \
1217                                                                            \
1218  product(bool, UseBiasedLocking, true,                                     \
1219          "Enable biased locking in JVM")                                   \
1220                                                                            \
1221  product(intx, BiasedLockingStartupDelay, 4000,                            \
1222          "Number of milliseconds to wait before enabling biased locking")  \
1223                                                                            \
1224  diagnostic(bool, PrintBiasedLockingStatistics, false,                     \
1225          "Print statistics of biased locking in JVM")                      \
1226                                                                            \
1227  product(intx, BiasedLockingBulkRebiasThreshold, 20,                       \
1228          "Threshold of number of revocations per type to try to "          \
1229          "rebias all objects in the heap of that type")                    \
1230                                                                            \
1231  product(intx, BiasedLockingBulkRevokeThreshold, 40,                       \
1232          "Threshold of number of revocations per type to permanently "     \
1233          "revoke biases of all objects in the heap of that type")          \
1234                                                                            \
1235  product(intx, BiasedLockingDecayTime, 25000,                              \
1236          "Decay time (in milliseconds) to re-enable bulk rebiasing of a "  \
1237          "type after previous bulk rebias")                                \
1238                                                                            \
1239  develop(bool, JavaObjectsInPerm, false,                                   \
1240          "controls whether Classes and interned Strings are allocated"     \
1241          "in perm.  This purely intended to allow debugging issues"        \
1242          "in production.")                                                 \
1243                                                                            \
1244  /* tracing */                                                             \
1245                                                                            \
1246  notproduct(bool, TraceRuntimeCalls, false,                                \
1247          "Trace run-time calls")                                           \
1248                                                                            \
1249  develop(bool, TraceJNICalls, false,                                       \
1250          "Trace JNI calls")                                                \
1251                                                                            \
1252  notproduct(bool, TraceJVMCalls, false,                                    \
1253          "Trace JVM calls")                                                \
1254                                                                            \
1255  product(ccstr, TraceJVMTI, NULL,                                          \
1256          "Trace flags for JVMTI functions and events")                     \
1257                                                                            \
1258  /* This option can change an EMCP method into an obsolete method. */      \
1259  /* This can affect tests that except specific methods to be EMCP. */      \
1260  /* This option should be used with caution. */                            \
1261  product(bool, StressLdcRewrite, false,                                    \
1262          "Force ldc -> ldc_w rewrite during RedefineClasses")              \
1263                                                                            \
1264  product(intx, TraceRedefineClasses, 0,                                    \
1265          "Trace level for JVMTI RedefineClasses")                          \
1266                                                                            \
1267  develop(bool, StressMethodComparator, false,                              \
1268          "run the MethodComparator on all loaded methods")                 \
1269                                                                            \
1270  /* change to false by default sometime after Mustang */                   \
1271  product(bool, VerifyMergedCPBytecodes, true,                              \
1272          "Verify bytecodes after RedefineClasses constant pool merging")   \
1273                                                                            \
1274  develop(bool, TraceJNIHandleAllocation, false,                            \
1275          "Trace allocation/deallocation of JNI handle blocks")             \
1276                                                                            \
1277  develop(bool, TraceThreadEvents, false,                                   \
1278          "Trace all thread events")                                        \
1279                                                                            \
1280  develop(bool, TraceBytecodes, false,                                      \
1281          "Trace bytecode execution")                                       \
1282                                                                            \
1283  develop(bool, TraceClassInitialization, false,                            \
1284          "Trace class initialization")                                     \
1285                                                                            \
1286  develop(bool, TraceExceptions, false,                                     \
1287          "Trace exceptions")                                               \
1288                                                                            \
1289  develop(bool, TraceICs, false,                                            \
1290          "Trace inline cache changes")                                     \
1291                                                                            \
1292  notproduct(bool, TraceInvocationCounterOverflow, false,                   \
1293          "Trace method invocation counter overflow")                       \
1294                                                                            \
1295  develop(bool, TraceInlineCacheClearing, false,                            \
1296          "Trace clearing of inline caches in nmethods")                    \
1297                                                                            \
1298  develop(bool, TraceDependencies, false,                                   \
1299          "Trace dependencies")                                             \
1300                                                                            \
1301  develop(bool, VerifyDependencies, trueInDebug,                            \
1302         "Exercise and verify the compilation dependency mechanism")        \
1303                                                                            \
1304  develop(bool, TraceNewOopMapGeneration, false,                            \
1305          "Trace OopMapGeneration")                                         \
1306                                                                            \
1307  develop(bool, TraceNewOopMapGenerationDetailed, false,                    \
1308          "Trace OopMapGeneration: print detailed cell states")             \
1309                                                                            \
1310  develop(bool, TimeOopMap, false,                                          \
1311          "Time calls to GenerateOopMap::compute_map() in sum")             \
1312                                                                            \
1313  develop(bool, TimeOopMap2, false,                                         \
1314          "Time calls to GenerateOopMap::compute_map() individually")       \
1315                                                                            \
1316  develop(bool, TraceMonitorMismatch, false,                                \
1317          "Trace monitor matching failures during OopMapGeneration")        \
1318                                                                            \
1319  develop(bool, TraceOopMapRewrites, false,                                 \
1320          "Trace rewritting of method oops during oop map generation")      \
1321                                                                            \
1322  develop(bool, TraceSafepoint, false,                                      \
1323          "Trace safepoint operations")                                     \
1324                                                                            \
1325  develop(bool, TraceICBuffer, false,                                       \
1326          "Trace usage of IC buffer")                                       \
1327                                                                            \
1328  develop(bool, TraceCompiledIC, false,                                     \
1329          "Trace changes of compiled IC")                                   \
1330                                                                            \
1331  notproduct(bool, TraceZapDeadLocals, false,                               \
1332          "Trace zapping dead locals")                                      \
1333                                                                            \
1334  develop(bool, TraceStartupTime, false,                                    \
1335          "Trace setup time")                                               \
1336                                                                            \
1337  product(ccstr, HPILibPath, NULL,                                          \
1338          "Specify alternate path to HPI library")                          \
1339                                                                            \
1340  develop(bool, TraceProtectionDomainVerification, false,                   \
1341          "Trace protection domain verifcation")                            \
1342                                                                            \
1343  develop(bool, TraceClearedExceptions, false,                              \
1344          "Prints when an exception is forcibly cleared")                   \
1345                                                                            \
1346  product(bool, TraceClassResolution, false,                                \
1347          "Trace all constant pool resolutions (for debugging)")            \
1348                                                                            \
1349  product(bool, TraceBiasedLocking, false,                                  \
1350          "Trace biased locking in JVM")                                    \
1351                                                                            \
1352  product(bool, TraceMonitorInflation, false,                               \
1353          "Trace monitor inflation in JVM")                                 \
1354                                                                            \
1355  /* assembler */                                                           \
1356  product(bool, Use486InstrsOnly, false,                                    \
1357          "Use 80486 Compliant instruction subset")                         \
1358                                                                            \
1359  /* gc */                                                                  \
1360                                                                            \
1361  product(bool, UseSerialGC, false,                                         \
1362          "Use the serial garbage collector")                               \
1363                                                                            \
1364  product(bool, UseG1GC, false,                                             \
1365          "Use the Garbage-First garbage collector")                        \
1366                                                                            \
1367  product(bool, UseParallelGC, false,                                       \
1368          "Use the Parallel Scavenge garbage collector")                    \
1369                                                                            \
1370  product(bool, UseParallelOldGC, false,                                    \
1371          "Use the Parallel Old garbage collector")                         \
1372                                                                            \
1373  product(uintx, HeapMaximumCompactionInterval, 20,                         \
1374          "How often should we maximally compact the heap (not allowing "   \
1375          "any dead space)")                                                \
1376                                                                            \
1377  product(uintx, HeapFirstMaximumCompactionCount, 3,                        \
1378          "The collection count for the first maximum compaction")          \
1379                                                                            \
1380  product(bool, UseMaximumCompactionOnSystemGC, true,                       \
1381          "In the Parallel Old garbage collector maximum compaction for "   \
1382          "a system GC")                                                    \
1383                                                                            \
1384  product(uintx, ParallelOldDeadWoodLimiterMean, 50,                        \
1385          "The mean used by the par compact dead wood"                      \
1386          "limiter (a number between 0-100).")                              \
1387                                                                            \
1388  product(uintx, ParallelOldDeadWoodLimiterStdDev, 80,                      \
1389          "The standard deviation used by the par compact dead wood"        \
1390          "limiter (a number between 0-100).")                              \
1391                                                                            \
1392  product(uintx, ParallelGCThreads, 0,                                      \
1393          "Number of parallel threads parallel gc will use")                \
1394                                                                            \
1395  develop(bool, ParallelOldGCSplitALot, false,                              \
1396          "Provoke splitting (copying data from a young gen space to"       \
1397          "multiple destination spaces)")                                   \
1398                                                                            \
1399  develop(uintx, ParallelOldGCSplitInterval, 3,                             \
1400          "How often to provoke splitting a young gen space")               \
1401                                                                            \
1402  develop(bool, TraceRegionTasksQueuing, false,                             \
1403          "Trace the queuing of the region tasks")                          \
1404                                                                            \
1405  product(uintx, ConcGCThreads, 0,                                          \
1406          "Number of threads concurrent gc will use")                       \
1407                                                                            \
1408  product(uintx, YoungPLABSize, 4096,                                       \
1409          "Size of young gen promotion labs (in HeapWords)")                \
1410                                                                            \
1411  product(uintx, OldPLABSize, 1024,                                         \
1412          "Size of old gen promotion labs (in HeapWords)")                  \
1413                                                                            \
1414  product(uintx, GCTaskTimeStampEntries, 200,                               \
1415          "Number of time stamp entries per gc worker thread")              \
1416                                                                            \
1417  product(bool, AlwaysTenure, false,                                        \
1418          "Always tenure objects in eden. (ParallelGC only)")               \
1419                                                                            \
1420  product(bool, NeverTenure, false,                                         \
1421          "Never tenure objects in eden, May tenure on overflow "           \
1422          "(ParallelGC only)")                                              \
1423                                                                            \
1424  product(bool, ScavengeBeforeFullGC, true,                                 \
1425          "Scavenge youngest generation before each full GC, "              \
1426          "used with UseParallelGC")                                        \
1427                                                                            \
1428  develop(bool, ScavengeWithObjectsInToSpace, false,                        \
1429          "Allow scavenges to occur when to_space contains objects.")       \
1430                                                                            \
1431  product(bool, UseConcMarkSweepGC, false,                                  \
1432          "Use Concurrent Mark-Sweep GC in the old generation")             \
1433                                                                            \
1434  product(bool, ExplicitGCInvokesConcurrent, false,                         \
1435          "A System.gc() request invokes a concurrent collection;"          \
1436          " (effective only when UseConcMarkSweepGC)")                      \
1437                                                                            \
1438  product(bool, ExplicitGCInvokesConcurrentAndUnloadsClasses, false,        \
1439          "A System.gc() request invokes a concurrent collection and "      \
1440          "also unloads classes during such a concurrent gc cycle "         \
1441          "(effective only when UseConcMarkSweepGC)")                       \
1442                                                                            \
1443  product(bool, GCLockerInvokesConcurrent, false,                           \
1444          "The exit of a JNI CS necessitating a scavenge also"              \
1445          " kicks off a bkgrd concurrent collection")                       \
1446                                                                            \
1447  product(uintx, GCLockerEdenExpansionPercent, 5,                           \
1448          "How much the GC can expand the eden by while the GC locker  "    \
1449          "is active (as a percentage)")                                    \
1450                                                                            \
1451  develop(bool, UseCMSAdaptiveFreeLists, true,                              \
1452          "Use Adaptive Free Lists in the CMS generation")                  \
1453                                                                            \
1454  develop(bool, UseAsyncConcMarkSweepGC, true,                              \
1455          "Use Asynchronous Concurrent Mark-Sweep GC in the old generation")\
1456                                                                            \
1457  develop(bool, RotateCMSCollectionTypes, false,                            \
1458          "Rotate the CMS collections among concurrent and STW")            \
1459                                                                            \
1460  product(bool, UseCMSBestFit, true,                                        \
1461          "Use CMS best fit allocation strategy")                           \
1462                                                                            \
1463  product(bool, UseCMSCollectionPassing, true,                              \
1464          "Use passing of collection from background to foreground")        \
1465                                                                            \
1466  product(bool, UseParNewGC, false,                                         \
1467          "Use parallel threads in the new generation.")                    \
1468                                                                            \
1469  product(bool, ParallelGCVerbose, false,                                   \
1470          "Verbose output for parallel GC.")                                \
1471                                                                            \
1472  product(intx, ParallelGCBufferWastePct, 10,                               \
1473          "wasted fraction of parallel allocation buffer.")                 \
1474                                                                            \
1475  diagnostic(bool, ParallelGCRetainPLAB, false,                             \
1476             "Retain parallel allocation buffers across scavenges; "        \
1477             " -- disabled because this currently conflicts with "          \
1478             " parallel card scanning under certain conditions ")           \
1479                                                                            \
1480  product(intx, TargetPLABWastePct, 10,                                     \
1481          "target wasted space in last buffer as pct of overall allocation")\
1482                                                                            \
1483  product(uintx, PLABWeight, 75,                                            \
1484          "Percentage (0-100) used to weight the current sample when"       \
1485          "computing exponentially decaying average for ResizePLAB.")       \
1486                                                                            \
1487  product(bool, ResizePLAB, true,                                           \
1488          "Dynamically resize (survivor space) promotion labs")             \
1489                                                                            \
1490  product(bool, PrintPLAB, false,                                           \
1491          "Print (survivor space) promotion labs sizing decisions")         \
1492                                                                            \
1493  product(intx, ParGCArrayScanChunk, 50,                                    \
1494          "Scan a subset and push remainder, if array is bigger than this") \
1495                                                                            \
1496  product(bool, ParGCUseLocalOverflow, false,                               \
1497          "Instead of a global overflow list, use local overflow stacks")   \
1498                                                                            \
1499  product(bool, ParGCTrimOverflow, true,                                    \
1500          "Eagerly trim the local overflow lists (when ParGCUseLocalOverflow") \
1501                                                                            \
1502  notproduct(bool, ParGCWorkQueueOverflowALot, false,                       \
1503          "Whether we should simulate work queue overflow in ParNew")       \
1504                                                                            \
1505  notproduct(uintx, ParGCWorkQueueOverflowInterval, 1000,                   \
1506          "An `interval' counter that determines how frequently "           \
1507          "we simulate overflow; a smaller number increases frequency")     \
1508                                                                            \
1509  product(uintx, ParGCDesiredObjsFromOverflowList, 20,                      \
1510          "The desired number of objects to claim from the overflow list")  \
1511                                                                            \
1512  diagnostic(intx, ParGCStridesPerThread, 2,                                \
1513          "The number of strides per worker thread that we divide up the "  \
1514          "card table scanning work into")                                  \
1515                                                                            \
1516  diagnostic(intx, ParGCCardsPerStrideChunk, 256,                           \
1517          "The number of cards in each chunk of the parallel chunks used "  \
1518          "during card table scanning")                                     \
1519                                                                            \
1520  product(uintx, CMSParPromoteBlocksToClaim, 16,                            \
1521          "Number of blocks to attempt to claim when refilling CMS LAB for "\
1522          "parallel GC.")                                                   \
1523                                                                            \
1524  product(uintx, OldPLABWeight, 50,                                         \
1525          "Percentage (0-100) used to weight the current sample when"       \
1526          "computing exponentially decaying average for resizing CMSParPromoteBlocksToClaim.") \
1527                                                                            \
1528  product(bool, ResizeOldPLAB, true,                                        \
1529          "Dynamically resize (old gen) promotion labs")                    \
1530                                                                            \
1531  product(bool, PrintOldPLAB, false,                                        \
1532          "Print (old gen) promotion labs sizing decisions")                \
1533                                                                            \
1534  product(uintx, CMSOldPLABMin, 16,                                         \
1535          "Min size of CMS gen promotion lab caches per worker per blksize")\
1536                                                                            \
1537  product(uintx, CMSOldPLABMax, 1024,                                       \
1538          "Max size of CMS gen promotion lab caches per worker per blksize")\
1539                                                                            \
1540  product(uintx, CMSOldPLABNumRefills, 4,                                   \
1541          "Nominal number of refills of CMS gen promotion lab cache"        \
1542          " per worker per block size")                                     \
1543                                                                            \
1544  product(bool, CMSOldPLABResizeQuicker, false,                             \
1545          "Whether to react on-the-fly during a scavenge to a sudden"       \
1546          " change in block demand rate")                                   \
1547                                                                            \
1548  product(uintx, CMSOldPLABToleranceFactor, 4,                              \
1549          "The tolerance of the phase-change detector for on-the-fly"       \
1550          " PLAB resizing during a scavenge")                               \
1551                                                                            \
1552  product(uintx, CMSOldPLABReactivityFactor, 2,                             \
1553          "The gain in the feedback loop for on-the-fly PLAB resizing"      \
1554          " during a scavenge")                                             \
1555                                                                            \
1556  product(uintx, CMSOldPLABReactivityCeiling, 10,                           \
1557          "The clamping of the gain in the feedback loop for on-the-fly"    \
1558          " PLAB resizing during a scavenge")                               \
1559                                                                            \
1560  product(bool, AlwaysPreTouch, false,                                      \
1561          "It forces all freshly committed pages to be pre-touched.")       \
1562                                                                            \
1563  product_pd(intx, CMSYoungGenPerWorker,                                    \
1564          "The maximum size of young gen chosen by default per GC worker "  \
1565          "thread available")                                               \
1566                                                                            \
1567  product(bool, GCOverheadReporting, false,                                 \
1568         "Enables the GC overhead reporting facility")                      \
1569                                                                            \
1570  product(intx, GCOverheadReportingPeriodMS, 100,                           \
1571          "Reporting period for conc GC overhead reporting, in ms ")        \
1572                                                                            \
1573  product(bool, CMSIncrementalMode, false,                                  \
1574          "Whether CMS GC should operate in \"incremental\" mode")          \
1575                                                                            \
1576  product(uintx, CMSIncrementalDutyCycle, 10,                               \
1577          "CMS incremental mode duty cycle (a percentage, 0-100).  If"      \
1578          "CMSIncrementalPacing is enabled, then this is just the initial"  \
1579          "value")                                                          \
1580                                                                            \
1581  product(bool, CMSIncrementalPacing, true,                                 \
1582          "Whether the CMS incremental mode duty cycle should be "          \
1583          "automatically adjusted")                                         \
1584                                                                            \
1585  product(uintx, CMSIncrementalDutyCycleMin, 0,                             \
1586          "Lower bound on the duty cycle when CMSIncrementalPacing is "     \
1587          "enabled (a percentage, 0-100)")                                  \
1588                                                                            \
1589  product(uintx, CMSIncrementalSafetyFactor, 10,                            \
1590          "Percentage (0-100) used to add conservatism when computing the " \
1591          "duty cycle")                                                     \
1592                                                                            \
1593  product(uintx, CMSIncrementalOffset, 0,                                   \
1594          "Percentage (0-100) by which the CMS incremental mode duty cycle" \
1595          " is shifted to the right within the period between young GCs")   \
1596                                                                            \
1597  product(uintx, CMSExpAvgFactor, 50,                                       \
1598          "Percentage (0-100) used to weight the current sample when"       \
1599          "computing exponential averages for CMS statistics.")             \
1600                                                                            \
1601  product(uintx, CMS_FLSWeight, 75,                                         \
1602          "Percentage (0-100) used to weight the current sample when"       \
1603          "computing exponentially decating averages for CMS FLS statistics.") \
1604                                                                            \
1605  product(uintx, CMS_FLSPadding, 1,                                         \
1606          "The multiple of deviation from mean to use for buffering"        \
1607          "against volatility in free list demand.")                        \
1608                                                                            \
1609  product(uintx, FLSCoalescePolicy, 2,                                      \
1610          "CMS: Aggression level for coalescing, increasing from 0 to 4")   \
1611                                                                            \
1612  product(bool, FLSAlwaysCoalesceLarge, false,                              \
1613          "CMS: Larger free blocks are always available for coalescing")    \
1614                                                                            \
1615  product(double, FLSLargestBlockCoalesceProximity, 0.99,                   \
1616          "CMS: the smaller the percentage the greater the coalition force")\
1617                                                                            \
1618  product(double, CMSSmallCoalSurplusPercent, 1.05,                         \
1619          "CMS: the factor by which to inflate estimated demand of small"   \
1620          " block sizes to prevent coalescing with an adjoining block")     \
1621                                                                            \
1622  product(double, CMSLargeCoalSurplusPercent, 0.95,                         \
1623          "CMS: the factor by which to inflate estimated demand of large"   \
1624          " block sizes to prevent coalescing with an adjoining block")     \
1625                                                                            \
1626  product(double, CMSSmallSplitSurplusPercent, 1.10,                        \
1627          "CMS: the factor by which to inflate estimated demand of small"   \
1628          " block sizes to prevent splitting to supply demand for smaller"  \
1629          " blocks")                                                        \
1630                                                                            \
1631  product(double, CMSLargeSplitSurplusPercent, 1.00,                        \
1632          "CMS: the factor by which to inflate estimated demand of large"   \
1633          " block sizes to prevent splitting to supply demand for smaller"  \
1634          " blocks")                                                        \
1635                                                                            \
1636  product(bool, CMSExtrapolateSweep, false,                                 \
1637          "CMS: cushion for block demand during sweep")                     \
1638                                                                            \
1639  product(uintx, CMS_SweepWeight, 75,                                       \
1640          "Percentage (0-100) used to weight the current sample when "      \
1641          "computing exponentially decaying average for inter-sweep "       \
1642          "duration")                                                       \
1643                                                                            \
1644  product(uintx, CMS_SweepPadding, 1,                                       \
1645          "The multiple of deviation from mean to use for buffering "       \
1646          "against volatility in inter-sweep duration.")                    \
1647                                                                            \
1648  product(uintx, CMS_SweepTimerThresholdMillis, 10,                         \
1649          "Skip block flux-rate sampling for an epoch unless inter-sweep "  \
1650          "duration exceeds this threhold in milliseconds")                 \
1651                                                                            \
1652  develop(bool, CMSTraceIncrementalMode, false,                             \
1653          "Trace CMS incremental mode")                                     \
1654                                                                            \
1655  develop(bool, CMSTraceIncrementalPacing, false,                           \
1656          "Trace CMS incremental mode pacing computation")                  \
1657                                                                            \
1658  develop(bool, CMSTraceThreadState, false,                                 \
1659          "Trace the CMS thread state (enable the trace_state() method)")   \
1660                                                                            \
1661  product(bool, CMSClassUnloadingEnabled, false,                            \
1662          "Whether class unloading enabled when using CMS GC")              \
1663                                                                            \
1664  product(uintx, CMSClassUnloadingMaxInterval, 0,                           \
1665          "When CMS class unloading is enabled, the maximum CMS cycle count"\
1666          " for which classes may not be unloaded")                         \
1667                                                                            \
1668  product(bool, CMSCompactWhenClearAllSoftRefs, true,                       \
1669          "Compact when asked to collect CMS gen with clear_all_soft_refs") \
1670                                                                            \
1671  product(bool, UseCMSCompactAtFullCollection, true,                        \
1672          "Use mark sweep compact at full collections")                     \
1673                                                                            \
1674  product(uintx, CMSFullGCsBeforeCompaction, 0,                             \
1675          "Number of CMS full collection done before compaction if > 0")    \
1676                                                                            \
1677  develop(intx, CMSDictionaryChoice, 0,                                     \
1678          "Use BinaryTreeDictionary as default in the CMS generation")      \
1679                                                                            \
1680  product(uintx, CMSIndexedFreeListReplenish, 4,                            \
1681          "Replenish an indexed free list with this number of chunks")     \
1682                                                                            \
1683  product(bool, CMSReplenishIntermediate, true,                             \
1684          "Replenish all intermediate free-list caches")                    \
1685                                                                            \
1686  product(bool, CMSSplitIndexedFreeListBlocks, true,                        \
1687          "When satisfying batched demand, split blocks from the "          \
1688          "IndexedFreeList whose size is a multiple of requested size")     \
1689                                                                            \
1690  product(bool, CMSLoopWarn, false,                                         \
1691          "Warn in case of excessive CMS looping")                          \
1692                                                                            \
1693  develop(bool, CMSOverflowEarlyRestoration, false,                         \
1694          "Whether preserved marks should be restored early")               \
1695                                                                            \
1696  product(uintx, MarkStackSize, NOT_LP64(32*K) LP64_ONLY(4*M),              \
1697          "Size of marking stack")                                          \
1698                                                                            \
1699  product(uintx, MarkStackSizeMax, NOT_LP64(4*M) LP64_ONLY(512*M),          \
1700          "Max size of marking stack")                                      \
1701                                                                            \
1702  notproduct(bool, CMSMarkStackOverflowALot, false,                         \
1703          "Whether we should simulate frequent marking stack / work queue"  \
1704          " overflow")                                                      \
1705                                                                            \
1706  notproduct(uintx, CMSMarkStackOverflowInterval, 1000,                     \
1707          "An `interval' counter that determines how frequently"            \
1708          " we simulate overflow; a smaller number increases frequency")    \
1709                                                                            \
1710  product(uintx, CMSMaxAbortablePrecleanLoops, 0,                           \
1711          "(Temporary, subject to experimentation)"                         \
1712          "Maximum number of abortable preclean iterations, if > 0")        \
1713                                                                            \
1714  product(intx, CMSMaxAbortablePrecleanTime, 5000,                          \
1715          "(Temporary, subject to experimentation)"                         \
1716          "Maximum time in abortable preclean in ms")                       \
1717                                                                            \
1718  product(uintx, CMSAbortablePrecleanMinWorkPerIteration, 100,              \
1719          "(Temporary, subject to experimentation)"                         \
1720          "Nominal minimum work per abortable preclean iteration")          \
1721                                                                            \
1722  manageable(intx, CMSAbortablePrecleanWaitMillis, 100,                     \
1723          "(Temporary, subject to experimentation)"                         \
1724          " Time that we sleep between iterations when not given"           \
1725          " enough work per iteration")                                     \
1726                                                                            \
1727  product(uintx, CMSRescanMultiple, 32,                                     \
1728          "Size (in cards) of CMS parallel rescan task")                    \
1729                                                                            \
1730  product(uintx, CMSConcMarkMultiple, 32,                                   \
1731          "Size (in cards) of CMS concurrent MT marking task")              \
1732                                                                            \
1733  product(uintx, CMSRevisitStackSize, 1*M,                                  \
1734          "Size of CMS KlassKlass revisit stack")                           \
1735                                                                            \
1736  product(bool, CMSAbortSemantics, false,                                   \
1737          "Whether abort-on-overflow semantics is implemented")             \
1738                                                                            \
1739  product(bool, CMSParallelRemarkEnabled, true,                             \
1740          "Whether parallel remark enabled (only if ParNewGC)")             \
1741                                                                            \
1742  product(bool, CMSParallelSurvivorRemarkEnabled, true,                     \
1743          "Whether parallel remark of survivor space"                       \
1744          " enabled (effective only if CMSParallelRemarkEnabled)")          \
1745                                                                            \
1746  product(bool, CMSPLABRecordAlways, true,                                  \
1747          "Whether to always record survivor space PLAB bdries"             \
1748          " (effective only if CMSParallelSurvivorRemarkEnabled)")          \
1749                                                                            \
1750  product(bool, CMSConcurrentMTEnabled, true,                               \
1751          "Whether multi-threaded concurrent work enabled (if ParNewGC)")   \
1752                                                                            \
1753  product(bool, CMSPermGenPrecleaningEnabled, true,                         \
1754          "Whether concurrent precleaning enabled in perm gen"              \
1755          " (effective only when CMSPrecleaningEnabled is true)")           \
1756                                                                            \
1757  product(bool, CMSPrecleaningEnabled, true,                                \
1758          "Whether concurrent precleaning enabled")                         \
1759                                                                            \
1760  product(uintx, CMSPrecleanIter, 3,                                        \
1761          "Maximum number of precleaning iteration passes")                 \
1762                                                                            \
1763  product(uintx, CMSPrecleanNumerator, 2,                                   \
1764          "CMSPrecleanNumerator:CMSPrecleanDenominator yields convergence"  \
1765          " ratio")                                                         \
1766                                                                            \
1767  product(uintx, CMSPrecleanDenominator, 3,                                 \
1768          "CMSPrecleanNumerator:CMSPrecleanDenominator yields convergence"  \
1769          " ratio")                                                         \
1770                                                                            \
1771  product(bool, CMSPrecleanRefLists1, true,                                 \
1772          "Preclean ref lists during (initial) preclean phase")             \
1773                                                                            \
1774  product(bool, CMSPrecleanRefLists2, false,                                \
1775          "Preclean ref lists during abortable preclean phase")             \
1776                                                                            \
1777  product(bool, CMSPrecleanSurvivors1, false,                               \
1778          "Preclean survivors during (initial) preclean phase")             \
1779                                                                            \
1780  product(bool, CMSPrecleanSurvivors2, true,                                \
1781          "Preclean survivors during abortable preclean phase")             \
1782                                                                            \
1783  product(uintx, CMSPrecleanThreshold, 1000,                                \
1784          "Don't re-iterate if #dirty cards less than this")                \
1785                                                                            \
1786  product(bool, CMSCleanOnEnter, true,                                      \
1787          "Clean-on-enter optimization for reducing number of dirty cards") \
1788                                                                            \
1789  product(uintx, CMSRemarkVerifyVariant, 1,                                 \
1790          "Choose variant (1,2) of verification following remark")          \
1791                                                                            \
1792  product(uintx, CMSScheduleRemarkEdenSizeThreshold, 2*M,                   \
1793          "If Eden used is below this value, don't try to schedule remark") \
1794                                                                            \
1795  product(uintx, CMSScheduleRemarkEdenPenetration, 50,                      \
1796          "The Eden occupancy % at which to try and schedule remark pause") \
1797                                                                            \
1798  product(uintx, CMSScheduleRemarkSamplingRatio, 5,                         \
1799          "Start sampling Eden top at least before yg occupancy reaches"    \
1800          " 1/<ratio> of the size at which we plan to schedule remark")     \
1801                                                                            \
1802  product(uintx, CMSSamplingGrain, 16*K,                                    \
1803          "The minimum distance between eden samples for CMS (see above)")  \
1804                                                                            \
1805  product(bool, CMSScavengeBeforeRemark, false,                             \
1806          "Attempt scavenge before the CMS remark step")                    \
1807                                                                            \
1808  develop(bool, CMSTraceSweeper, false,                                     \
1809          "Trace some actions of the CMS sweeper")                          \
1810                                                                            \
1811  product(uintx, CMSWorkQueueDrainThreshold, 10,                            \
1812          "Don't drain below this size per parallel worker/thief")          \
1813                                                                            \
1814  manageable(intx, CMSWaitDuration, 2000,                                   \
1815          "Time in milliseconds that CMS thread waits for young GC")        \
1816                                                                            \
1817  product(bool, CMSYield, true,                                             \
1818          "Yield between steps of concurrent mark & sweep")                 \
1819                                                                            \
1820  product(uintx, CMSBitMapYieldQuantum, 10*M,                               \
1821          "Bitmap operations should process at most this many bits"         \
1822          "between yields")                                                 \
1823                                                                            \
1824  product(bool, CMSDumpAtPromotionFailure, false,                           \
1825          "Dump useful information about the state of the CMS old "         \
1826          " generation upon a promotion failure.")                          \
1827                                                                            \
1828  product(bool, CMSPrintChunksInDump, false,                                \
1829          "In a dump enabled by CMSDumpAtPromotionFailure, include "        \
1830          " more detailed information about the free chunks.")              \
1831                                                                            \
1832  product(bool, CMSPrintObjectsInDump, false,                               \
1833          "In a dump enabled by CMSDumpAtPromotionFailure, include "        \
1834          " more detailed information about the allocated objects.")        \
1835                                                                            \
1836  diagnostic(bool, FLSVerifyAllHeapReferences, false,                       \
1837          "Verify that all refs across the FLS boundary "                   \
1838          " are to valid objects")                                          \
1839                                                                            \
1840  diagnostic(bool, FLSVerifyLists, false,                                   \
1841          "Do lots of (expensive) FreeListSpace verification")              \
1842                                                                            \
1843  diagnostic(bool, FLSVerifyIndexTable, false,                              \
1844          "Do lots of (expensive) FLS index table verification")            \
1845                                                                            \
1846  develop(bool, FLSVerifyDictionary, false,                                 \
1847          "Do lots of (expensive) FLS dictionary verification")             \
1848                                                                            \
1849  develop(bool, VerifyBlockOffsetArray, false,                              \
1850          "Do (expensive!) block offset array verification")                \
1851                                                                            \
1852  diagnostic(bool, BlockOffsetArrayUseUnallocatedBlock, false,              \
1853          "Maintain _unallocated_block in BlockOffsetArray"                 \
1854          " (currently applicable only to CMS collector)")                  \
1855                                                                            \
1856  develop(bool, TraceCMSState, false,                                       \
1857          "Trace the state of the CMS collection")                          \
1858                                                                            \
1859  product(intx, RefDiscoveryPolicy, 0,                                      \
1860          "Whether reference-based(0) or referent-based(1)")                \
1861                                                                            \
1862  product(bool, ParallelRefProcEnabled, false,                              \
1863          "Enable parallel reference processing whenever possible")         \
1864                                                                            \
1865  product(bool, ParallelRefProcBalancingEnabled, true,                      \
1866          "Enable balancing of reference processing queues")                \
1867                                                                            \
1868  product(intx, CMSTriggerRatio, 80,                                        \
1869          "Percentage of MinHeapFreeRatio in CMS generation that is "       \
1870          "allocated before a CMS collection cycle commences")              \
1871                                                                            \
1872  product(intx, CMSTriggerPermRatio, 80,                                    \
1873          "Percentage of MinHeapFreeRatio in the CMS perm generation that " \
1874          "is allocated before a CMS collection cycle commences, that "     \
1875          "also collects the perm generation")                              \
1876                                                                            \
1877  product(uintx, CMSBootstrapOccupancy, 50,                                 \
1878          "Percentage CMS generation occupancy at which to "                \
1879          "initiate CMS collection for bootstrapping collection stats")     \
1880                                                                            \
1881  product(intx, CMSInitiatingOccupancyFraction, -1,                         \
1882          "Percentage CMS generation occupancy to start a CMS collection "  \
1883          "cycle. A negative value means that CMSTriggerRatio is used")     \
1884                                                                            \
1885  product(uintx, InitiatingHeapOccupancyPercent, 45,                        \
1886          "Percentage of the (entire) heap occupancy to start a "           \
1887          "concurrent GC cycle. It us used by GCs that trigger a "          \
1888          "concurrent GC cycle based on the occupancy of the entire heap, " \
1889          "not just one of the generations (e.g., G1). A value of 0 "       \
1890          "denotes 'do constant GC cycles'.")                               \
1891                                                                            \
1892  product(intx, CMSInitiatingPermOccupancyFraction, -1,                     \
1893          "Percentage CMS perm generation occupancy to start a "            \
1894          "CMScollection cycle. A negative value means that "               \
1895          "CMSTriggerPermRatio is used")                                    \
1896                                                                            \
1897  product(bool, UseCMSInitiatingOccupancyOnly, false,                       \
1898          "Only use occupancy as a crierion for starting a CMS collection") \
1899                                                                            \
1900  product(intx, CMSIsTooFullPercentage, 98,                                 \
1901          "An absolute ceiling above which CMS will always consider the "   \
1902          "perm gen ripe for collection")                                   \
1903                                                                            \
1904  develop(bool, CMSTestInFreeList, false,                                   \
1905          "Check if the coalesced range is already in the "                 \
1906          "free lists as claimed")                                          \
1907                                                                            \
1908  notproduct(bool, CMSVerifyReturnedBytes, false,                           \
1909          "Check that all the garbage collected was returned to the "       \
1910          "free lists.")                                                    \
1911                                                                            \
1912  notproduct(bool, ScavengeALot, false,                                     \
1913          "Force scavenge at every Nth exit from the runtime system "       \
1914          "(N=ScavengeALotInterval)")                                       \
1915                                                                            \
1916  develop(bool, FullGCALot, false,                                          \
1917          "Force full gc at every Nth exit from the runtime system "        \
1918          "(N=FullGCALotInterval)")                                         \
1919                                                                            \
1920  notproduct(bool, GCALotAtAllSafepoints, false,                            \
1921          "Enforce ScavengeALot/GCALot at all potential safepoints")        \
1922                                                                            \
1923  product(bool, PrintPromotionFailure, false,                               \
1924          "Print additional diagnostic information following "              \
1925          " promotion failure")                                             \
1926                                                                            \
1927  notproduct(bool, PromotionFailureALot, false,                             \
1928          "Use promotion failure handling on every youngest generation "    \
1929          "collection")                                                     \
1930                                                                            \
1931  develop(uintx, PromotionFailureALotCount, 1000,                           \
1932          "Number of promotion failures occurring at ParGCAllocBuffer"      \
1933          "refill attempts (ParNew) or promotion attempts "                 \
1934          "(other young collectors) ")                                      \
1935                                                                            \
1936  develop(uintx, PromotionFailureALotInterval, 5,                           \
1937          "Total collections between promotion failures alot")              \
1938                                                                            \
1939  experimental(intx, WorkStealingSleepMillis, 1,                            \
1940          "Sleep time when sleep is used for yields")                       \
1941                                                                            \
1942  experimental(uintx, WorkStealingYieldsBeforeSleep, 5000,                  \
1943          "Number of yields before a sleep is done during workstealing")    \
1944                                                                            \
1945  experimental(uintx, WorkStealingHardSpins, 4096,                          \
1946          "Number of iterations in a spin loop between checks on "          \
1947          "time out of hard spin")                                          \
1948                                                                            \
1949  experimental(uintx, WorkStealingSpinToYieldRatio, 10,                     \
1950          "Ratio of hard spins to calls to yield")                          \
1951                                                                            \
1952  product(uintx, PreserveMarkStackSize, 1024,                               \
1953          "Size for stack used in promotion failure handling")              \
1954                                                                            \
1955  develop(uintx, ObjArrayMarkingStride, 512,                                \
1956          "Number of ObjArray elements to push onto the marking stack"      \
1957          "before pushing a continuation entry")                            \
1958                                                                            \
1959  notproduct(bool, ExecuteInternalVMTests, false,                           \
1960          "Enable execution of internal VM tests.")                         \
1961                                                                            \
1962  product_pd(bool, UseTLAB, "Use thread-local object allocation")           \
1963                                                                            \
1964  product_pd(bool, ResizeTLAB,                                              \
1965          "Dynamically resize tlab size for threads")                       \
1966                                                                            \
1967  product(bool, ZeroTLAB, false,                                            \
1968          "Zero out the newly created TLAB")                                \
1969                                                                            \
1970  product(bool, FastTLABRefill, true,                                       \
1971          "Use fast TLAB refill code")                                      \
1972                                                                            \
1973  product(bool, PrintTLAB, false,                                           \
1974          "Print various TLAB related information")                         \
1975                                                                            \
1976  product(bool, TLABStats, true,                                            \
1977          "Print various TLAB related information")                         \
1978                                                                            \
1979  product(bool, PrintRevisitStats, false,                                   \
1980          "Print revisit (klass and MDO) stack related information")        \
1981                                                                            \
1982  EMBEDDED_ONLY(product(bool, LowMemoryProtection, true,                    \
1983          "Enable LowMemoryProtection"))                                    \
1984                                                                            \
1985  product_pd(bool, NeverActAsServerClassMachine,                            \
1986          "Never act like a server-class machine")                          \
1987                                                                            \
1988  product(bool, AlwaysActAsServerClassMachine, false,                       \
1989          "Always act like a server-class machine")                         \
1990                                                                            \
1991  product_pd(uint64_t, MaxRAM,                                              \
1992          "Real memory size (in bytes) used to set maximum heap size")      \
1993                                                                            \
1994  product(uintx, ErgoHeapSizeLimit, 0,                                      \
1995          "Maximum ergonomically set heap size (in bytes); zero means use " \
1996          "MaxRAM / MaxRAMFraction")                                        \
1997                                                                            \
1998  product(uintx, MaxRAMFraction, 4,                                         \
1999          "Maximum fraction (1/n) of real memory used for maximum heap "    \
2000          "size")                                                           \
2001                                                                            \
2002  product(uintx, DefaultMaxRAMFraction, 4,                                  \
2003          "Maximum fraction (1/n) of real memory used for maximum heap "    \
2004          "size; deprecated: to be renamed to MaxRAMFraction")              \
2005                                                                            \
2006  product(uintx, MinRAMFraction, 2,                                         \
2007          "Minimum fraction (1/n) of real memory used for maxmimum heap "   \
2008          "size on systems with small physical memory size")                \
2009                                                                            \
2010  product(uintx, InitialRAMFraction, 64,                                    \
2011          "Fraction (1/n) of real memory used for initial heap size")       \
2012                                                                            \
2013  product(bool, UseAutoGCSelectPolicy, false,                               \
2014          "Use automatic collection selection policy")                      \
2015                                                                            \
2016  product(uintx, AutoGCSelectPauseMillis, 5000,                             \
2017          "Automatic GC selection pause threshhold in ms")                  \
2018                                                                            \
2019  product(bool, UseAdaptiveSizePolicy, true,                                \
2020          "Use adaptive generation sizing policies")                        \
2021                                                                            \
2022  product(bool, UsePSAdaptiveSurvivorSizePolicy, true,                      \
2023          "Use adaptive survivor sizing policies")                          \
2024                                                                            \
2025  product(bool, UseAdaptiveGenerationSizePolicyAtMinorCollection, true,     \
2026          "Use adaptive young-old sizing policies at minor collections")    \
2027                                                                            \
2028  product(bool, UseAdaptiveGenerationSizePolicyAtMajorCollection, true,     \
2029          "Use adaptive young-old sizing policies at major collections")    \
2030                                                                            \
2031  product(bool, UseAdaptiveSizePolicyWithSystemGC, false,                   \
2032          "Use statistics from System.GC for adaptive size policy")         \
2033                                                                            \
2034  product(bool, UseAdaptiveGCBoundary, false,                               \
2035          "Allow young-old boundary to move")                               \
2036                                                                            \
2037  develop(bool, TraceAdaptiveGCBoundary, false,                             \
2038          "Trace young-old boundary moves")                                 \
2039                                                                            \
2040  develop(intx, PSAdaptiveSizePolicyResizeVirtualSpaceAlot, -1,             \
2041          "Resize the virtual spaces of the young or old generations")      \
2042                                                                            \
2043  product(uintx, AdaptiveSizeThroughPutPolicy, 0,                           \
2044          "Policy for changeing generation size for throughput goals")      \
2045                                                                            \
2046  product(uintx, AdaptiveSizePausePolicy, 0,                                \
2047          "Policy for changing generation size for pause goals")            \
2048                                                                            \
2049  develop(bool, PSAdjustTenuredGenForMinorPause, false,                     \
2050          "Adjust tenured generation to achive a minor pause goal")         \
2051                                                                            \
2052  develop(bool, PSAdjustYoungGenForMajorPause, false,                       \
2053          "Adjust young generation to achive a major pause goal")           \
2054                                                                            \
2055  product(uintx, AdaptiveSizePolicyInitializingSteps, 20,                   \
2056          "Number of steps where heuristics is used before data is used")   \
2057                                                                            \
2058  develop(uintx, AdaptiveSizePolicyReadyThreshold, 5,                       \
2059          "Number of collections before the adaptive sizing is started")    \
2060                                                                            \
2061  product(uintx, AdaptiveSizePolicyOutputInterval, 0,                       \
2062          "Collecton interval for printing information; zero => never")     \
2063                                                                            \
2064  product(bool, UseAdaptiveSizePolicyFootprintGoal, true,                   \
2065          "Use adaptive minimum footprint as a goal")                       \
2066                                                                            \
2067  product(uintx, AdaptiveSizePolicyWeight, 10,                              \
2068          "Weight given to exponential resizing, between 0 and 100")        \
2069                                                                            \
2070  product(uintx, AdaptiveTimeWeight,       25,                              \
2071          "Weight given to time in adaptive policy, between 0 and 100")     \
2072                                                                            \
2073  product(uintx, PausePadding, 1,                                           \
2074          "How much buffer to keep for pause time")                         \
2075                                                                            \
2076  product(uintx, PromotedPadding, 3,                                        \
2077          "How much buffer to keep for promotion failure")                  \
2078                                                                            \
2079  product(uintx, SurvivorPadding, 3,                                        \
2080          "How much buffer to keep for survivor overflow")                  \
2081                                                                            \
2082  product(uintx, AdaptivePermSizeWeight, 20,                                \
2083          "Weight for perm gen exponential resizing, between 0 and 100")    \
2084                                                                            \
2085  product(uintx, PermGenPadding, 3,                                         \
2086          "How much buffer to keep for perm gen sizing")                    \
2087                                                                            \
2088  product(uintx, ThresholdTolerance, 10,                                    \
2089          "Allowed collection cost difference between generations")         \
2090                                                                            \
2091  product(uintx, AdaptiveSizePolicyCollectionCostMargin, 50,                \
2092          "If collection costs are within margin, reduce both by full "     \
2093          "delta")                                                          \
2094                                                                            \
2095  product(uintx, YoungGenerationSizeIncrement, 20,                          \
2096          "Adaptive size percentage change in young generation")            \
2097                                                                            \
2098  product(uintx, YoungGenerationSizeSupplement, 80,                         \
2099          "Supplement to YoungedGenerationSizeIncrement used at startup")   \
2100                                                                            \
2101  product(uintx, YoungGenerationSizeSupplementDecay, 8,                     \
2102          "Decay factor to YoungedGenerationSizeSupplement")                \
2103                                                                            \
2104  product(uintx, TenuredGenerationSizeIncrement, 20,                        \
2105          "Adaptive size percentage change in tenured generation")          \
2106                                                                            \
2107  product(uintx, TenuredGenerationSizeSupplement, 80,                       \
2108          "Supplement to TenuredGenerationSizeIncrement used at startup")   \
2109                                                                            \
2110  product(uintx, TenuredGenerationSizeSupplementDecay, 2,                   \
2111          "Decay factor to TenuredGenerationSizeIncrement")                 \
2112                                                                            \
2113  product(uintx, MaxGCPauseMillis, max_uintx,                           \
2114          "Adaptive size policy maximum GC pause time goal in msec, "       \
2115          "or (G1 Only) the max. GC time per MMU time slice")               \
2116                                                                            \
2117  product(uintx, GCPauseIntervalMillis, 0,                                  \
2118          "Time slice for MMU specification")                               \
2119                                                                            \
2120  product(uintx, MaxGCMinorPauseMillis, max_uintx,                          \
2121          "Adaptive size policy maximum GC minor pause time goal in msec")  \
2122                                                                            \
2123  product(uintx, GCTimeRatio, 99,                                           \
2124          "Adaptive size policy application time to GC time ratio")         \
2125                                                                            \
2126  product(uintx, AdaptiveSizeDecrementScaleFactor, 4,                       \
2127          "Adaptive size scale down factor for shrinking")                  \
2128                                                                            \
2129  product(bool, UseAdaptiveSizeDecayMajorGCCost, true,                      \
2130          "Adaptive size decays the major cost for long major intervals")   \
2131                                                                            \
2132  product(uintx, AdaptiveSizeMajorGCDecayTimeScale, 10,                     \
2133          "Time scale over which major costs decay")                        \
2134                                                                            \
2135  product(uintx, MinSurvivorRatio, 3,                                       \
2136          "Minimum ratio of young generation/survivor space size")          \
2137                                                                            \
2138  product(uintx, InitialSurvivorRatio, 8,                                   \
2139          "Initial ratio of eden/survivor space size")                      \
2140                                                                            \
2141  product(uintx, BaseFootPrintEstimate, 256*M,                              \
2142          "Estimate of footprint other than Java Heap")                     \
2143                                                                            \
2144  product(bool, UseGCOverheadLimit, true,                                   \
2145          "Use policy to limit of proportion of time spent in GC "          \
2146          "before an OutOfMemory error is thrown")                          \
2147                                                                            \
2148  product(uintx, GCTimeLimit, 98,                                           \
2149          "Limit of proportion of time spent in GC before an OutOfMemory"   \
2150          "error is thrown (used with GCHeapFreeLimit)")                    \
2151                                                                            \
2152  product(uintx, GCHeapFreeLimit, 2,                                        \
2153          "Minimum percentage of free space after a full GC before an "     \
2154          "OutOfMemoryError is thrown (used with GCTimeLimit)")             \
2155                                                                            \
2156  develop(uintx, AdaptiveSizePolicyGCTimeLimitThreshold, 5,                 \
2157          "Number of consecutive collections before gc time limit fires")   \
2158                                                                            \
2159  product(bool, PrintAdaptiveSizePolicy, false,                             \
2160          "Print information about AdaptiveSizePolicy")                     \
2161                                                                            \
2162  product(intx, PrefetchCopyIntervalInBytes, -1,                            \
2163          "How far ahead to prefetch destination area (<= 0 means off)")    \
2164                                                                            \
2165  product(intx, PrefetchScanIntervalInBytes, -1,                            \
2166          "How far ahead to prefetch scan area (<= 0 means off)")           \
2167                                                                            \
2168  product(intx, PrefetchFieldsAhead, -1,                                    \
2169          "How many fields ahead to prefetch in oop scan (<= 0 means off)") \
2170                                                                            \
2171  develop(bool, UsePrefetchQueue, true,                                     \
2172          "Use the prefetch queue during PS promotion")                     \
2173                                                                            \
2174  diagnostic(bool, VerifyBeforeExit, trueInDebug,                           \
2175          "Verify system before exiting")                                   \
2176                                                                            \
2177  diagnostic(bool, VerifyBeforeGC, false,                                   \
2178          "Verify memory system before GC")                                 \
2179                                                                            \
2180  diagnostic(bool, VerifyAfterGC, false,                                    \
2181          "Verify memory system after GC")                                  \
2182                                                                            \
2183  diagnostic(bool, VerifyDuringGC, false,                                   \
2184          "Verify memory system during GC (between phases)")                \
2185                                                                            \
2186  diagnostic(bool, GCParallelVerificationEnabled, true,                     \
2187          "Enable parallel memory system verification")                     \
2188                                                                            \
2189  diagnostic(bool, DeferInitialCardMark, false,                             \
2190          "When +ReduceInitialCardMarks, explicitly defer any that "        \
2191           "may arise from new_pre_store_barrier")                          \
2192                                                                            \
2193  diagnostic(bool, VerifyRememberedSets, false,                             \
2194          "Verify GC remembered sets")                                      \
2195                                                                            \
2196  diagnostic(bool, VerifyObjectStartArray, true,                            \
2197          "Verify GC object start array if verify before/after")            \
2198                                                                            \
2199  product(bool, DisableExplicitGC, false,                                   \
2200          "Tells whether calling System.gc() does a full GC")               \
2201                                                                            \
2202  notproduct(bool, CheckMemoryInitialization, false,                        \
2203          "Checks memory initialization")                                   \
2204                                                                            \
2205  product(bool, CollectGen0First, false,                                    \
2206          "Collect youngest generation before each full GC")                \
2207                                                                            \
2208  diagnostic(bool, BindCMSThreadToCPU, false,                               \
2209          "Bind CMS Thread to CPU if possible")                             \
2210                                                                            \
2211  diagnostic(uintx, CPUForCMSThread, 0,                                     \
2212          "When BindCMSThreadToCPU is true, the CPU to bind CMS thread to") \
2213                                                                            \
2214  product(bool, BindGCTaskThreadsToCPUs, false,                             \
2215          "Bind GCTaskThreads to CPUs if possible")                         \
2216                                                                            \
2217  product(bool, UseGCTaskAffinity, false,                                   \
2218          "Use worker affinity when asking for GCTasks")                    \
2219                                                                            \
2220  product(uintx, ProcessDistributionStride, 4,                              \
2221          "Stride through processors when distributing processes")          \
2222                                                                            \
2223  product(uintx, CMSCoordinatorYieldSleepCount, 10,                         \
2224          "number of times the coordinator GC thread will sleep while "     \
2225          "yielding before giving up and resuming GC")                      \
2226                                                                            \
2227  product(uintx, CMSYieldSleepCount, 0,                                     \
2228          "number of times a GC thread (minus the coordinator) "            \
2229          "will sleep while yielding before giving up and resuming GC")     \
2230                                                                            \
2231  /* gc tracing */                                                          \
2232  manageable(bool, PrintGC, false,                                          \
2233          "Print message at garbage collect")                               \
2234                                                                            \
2235  manageable(bool, PrintGCDetails, false,                                   \
2236          "Print more details at garbage collect")                          \
2237                                                                            \
2238  manageable(bool, PrintGCDateStamps, false,                                \
2239          "Print date stamps at garbage collect")                           \
2240                                                                            \
2241  manageable(bool, PrintGCTimeStamps, false,                                \
2242          "Print timestamps at garbage collect")                            \
2243                                                                            \
2244  product(bool, PrintGCTaskTimeStamps, false,                               \
2245          "Print timestamps for individual gc worker thread tasks")         \
2246                                                                            \
2247  develop(intx, ConcGCYieldTimeout, 0,                                      \
2248          "If non-zero, assert that GC threads yield within this # of ms.") \
2249                                                                            \
2250  notproduct(bool, TraceMarkSweep, false,                                   \
2251          "Trace mark sweep")                                               \
2252                                                                            \
2253  product(bool, PrintReferenceGC, false,                                    \
2254          "Print times spent handling reference objects during GC "         \
2255          " (enabled only when PrintGCDetails)")                            \
2256                                                                            \
2257  develop(bool, TraceReferenceGC, false,                                    \
2258          "Trace handling of soft/weak/final/phantom references")           \
2259                                                                            \
2260  develop(bool, TraceFinalizerRegistration, false,                          \
2261         "Trace registration of final references")                          \
2262                                                                            \
2263  notproduct(bool, TraceScavenge, false,                                    \
2264          "Trace scavenge")                                                 \
2265                                                                            \
2266  product_rw(bool, TraceClassLoading, false,                                \
2267          "Trace all classes loaded")                                       \
2268                                                                            \
2269  product(bool, TraceClassLoadingPreorder, false,                           \
2270          "Trace all classes loaded in order referenced (not loaded)")      \
2271                                                                            \
2272  product_rw(bool, TraceClassUnloading, false,                              \
2273          "Trace unloading of classes")                                     \
2274                                                                            \
2275  product_rw(bool, TraceLoaderConstraints, false,                           \
2276          "Trace loader constraints")                                       \
2277                                                                            \
2278  product(bool, TraceGen0Time, false,                                       \
2279          "Trace accumulated time for Gen 0 collection")                    \
2280                                                                            \
2281  product(bool, TraceGen1Time, false,                                       \
2282          "Trace accumulated time for Gen 1 collection")                    \
2283                                                                            \
2284  product(bool, PrintTenuringDistribution, false,                           \
2285          "Print tenuring age information")                                 \
2286                                                                            \
2287  product_rw(bool, PrintHeapAtGC, false,                                    \
2288          "Print heap layout before and after each GC")                     \
2289                                                                            \
2290  product_rw(bool, PrintHeapAtGCExtended, false,                            \
2291          "Prints extended information about the layout of the heap "       \
2292          "when -XX:+PrintHeapAtGC is set")                                 \
2293                                                                            \
2294  product(bool, PrintHeapAtSIGBREAK, true,                                  \
2295          "Print heap layout in response to SIGBREAK")                      \
2296                                                                            \
2297  manageable(bool, PrintClassHistogramBeforeFullGC, false,                  \
2298          "Print a class histogram before any major stop-world GC")         \
2299                                                                            \
2300  manageable(bool, PrintClassHistogramAfterFullGC, false,                   \
2301          "Print a class histogram after any major stop-world GC")          \
2302                                                                            \
2303  manageable(bool, PrintClassHistogram, false,                              \
2304          "Print a histogram of class instances")                           \
2305                                                                            \
2306  develop(bool, TraceWorkGang, false,                                       \
2307          "Trace activities of work gangs")                                 \
2308                                                                            \
2309  product(bool, TraceParallelOldGCTasks, false,                             \
2310          "Trace multithreaded GC activity")                                \
2311                                                                            \
2312  develop(bool, TraceBlockOffsetTable, false,                               \
2313          "Print BlockOffsetTable maps")                                    \
2314                                                                            \
2315  develop(bool, TraceCardTableModRefBS, false,                              \
2316          "Print CardTableModRefBS maps")                                   \
2317                                                                            \
2318  develop(bool, TraceGCTaskManager, false,                                  \
2319          "Trace actions of the GC task manager")                           \
2320                                                                            \
2321  develop(bool, TraceGCTaskQueue, false,                                    \
2322          "Trace actions of the GC task queues")                            \
2323                                                                            \
2324  develop(bool, TraceGCTaskThread, false,                                   \
2325          "Trace actions of the GC task threads")                           \
2326                                                                            \
2327  product(bool, PrintParallelOldGCPhaseTimes, false,                        \
2328          "Print the time taken by each parallel old gc phase."             \
2329          "PrintGCDetails must also be enabled.")                           \
2330                                                                            \
2331  develop(bool, TraceParallelOldGCMarkingPhase, false,                      \
2332          "Trace parallel old gc marking phase")                            \
2333                                                                            \
2334  develop(bool, TraceParallelOldGCSummaryPhase, false,                      \
2335          "Trace parallel old gc summary phase")                            \
2336                                                                            \
2337  develop(bool, TraceParallelOldGCCompactionPhase, false,                   \
2338          "Trace parallel old gc compaction phase")                         \
2339                                                                            \
2340  develop(bool, TraceParallelOldGCDensePrefix, false,                       \
2341          "Trace parallel old gc dense prefix computation")                 \
2342                                                                            \
2343  develop(bool, IgnoreLibthreadGPFault, false,                              \
2344          "Suppress workaround for libthread GP fault")                     \
2345                                                                            \
2346  product(bool, PrintJNIGCStalls, false,                                    \
2347          "Print diagnostic message when GC is stalled"                     \
2348          "by JNI critical section")                                        \
2349                                                                            \
2350  /* GC log rotation setting */                                             \
2351                                                                            \
2352  product(bool, UseGCLogFileRotation, false,                                \
2353          "Prevent large gclog file for long running app. "                 \
2354          "Requires -Xloggc:<filename>")                                    \
2355                                                                            \
2356  product(uintx, NumberOfGCLogFiles, 0,                                     \
2357          "Number of gclog files in rotation, "                             \
2358          "Default: 0, no rotation")                                        \
2359                                                                            \
2360  product(uintx, GCLogFileSize, 0,                                          \
2361          "GC log file size, Default: 0 bytes, no rotation "                \
2362          "Only valid with UseGCLogFileRotation")                           \
2363                                                                            \
2364  /* JVMTI heap profiling */                                                \
2365                                                                            \
2366  diagnostic(bool, TraceJVMTIObjectTagging, false,                          \
2367          "Trace JVMTI object tagging calls")                               \
2368                                                                            \
2369  diagnostic(bool, VerifyBeforeIteration, false,                            \
2370          "Verify memory system before JVMTI iteration")                    \
2371                                                                            \
2372  /* compiler interface */                                                  \
2373                                                                            \
2374  develop(bool, CIPrintCompilerName, false,                                 \
2375          "when CIPrint is active, print the name of the active compiler")  \
2376                                                                            \
2377  develop(bool, CIPrintCompileQueue, false,                                 \
2378          "display the contents of the compile queue whenever a "           \
2379          "compilation is enqueued")                                        \
2380                                                                            \
2381  develop(bool, CIPrintRequests, false,                                     \
2382          "display every request for compilation")                          \
2383                                                                            \
2384  product(bool, CITime, false,                                              \
2385          "collect timing information for compilation")                     \
2386                                                                            \
2387  develop(bool, CITimeEach, false,                                          \
2388          "display timing information after each successful compilation")   \
2389                                                                            \
2390  develop(bool, CICountOSR, true,                                           \
2391          "use a separate counter when assigning ids to osr compilations")  \
2392                                                                            \
2393  develop(bool, CICompileNatives, true,                                     \
2394          "compile native methods if supported by the compiler")            \
2395                                                                            \
2396  develop_pd(bool, CICompileOSR,                                            \
2397          "compile on stack replacement methods if supported by the "       \
2398          "compiler")                                                       \
2399                                                                            \
2400  develop(bool, CIPrintMethodCodes, false,                                  \
2401          "print method bytecodes of the compiled code")                    \
2402                                                                            \
2403  develop(bool, CIPrintTypeFlow, false,                                     \
2404          "print the results of ciTypeFlow analysis")                       \
2405                                                                            \
2406  develop(bool, CITraceTypeFlow, false,                                     \
2407          "detailed per-bytecode tracing of ciTypeFlow analysis")           \
2408                                                                            \
2409  develop(intx, CICloneLoopTestLimit, 100,                                  \
2410          "size limit for blocks heuristically cloned in ciTypeFlow")       \
2411                                                                            \
2412  develop(intx, OSROnlyBCI, -1,                                             \
2413          "OSR only at this bci.  Negative values mean exclude that bci")   \
2414                                                                            \
2415  /* temp diagnostics */                                                    \
2416                                                                            \
2417  diagnostic(bool, TraceRedundantCompiles, false,                           \
2418          "Have compile broker print when a request already in the queue is"\
2419          " requested again")                                               \
2420                                                                            \
2421  diagnostic(bool, InitialCompileFast, false,                               \
2422          "Initial compile at CompLevel_fast_compile")                      \
2423                                                                            \
2424  diagnostic(bool, InitialCompileReallyFast, false,                         \
2425          "Initial compile at CompLevel_really_fast_compile (no profile)")  \
2426                                                                            \
2427  diagnostic(bool, FullProfileOnReInterpret, true,                          \
2428          "On re-interpret unc-trap compile next at CompLevel_fast_compile")\
2429                                                                            \
2430  /* compiler */                                                            \
2431                                                                            \
2432  product(intx, CICompilerCount, CI_COMPILER_COUNT,                         \
2433          "Number of compiler threads to run")                              \
2434                                                                            \
2435  product(intx, CompilationPolicyChoice, 0,                                 \
2436          "which compilation policy (0/1)")                                 \
2437                                                                            \
2438  develop(bool, UseStackBanging, true,                                      \
2439          "use stack banging for stack overflow checks (required for "      \
2440          "proper StackOverflow handling; disable only to measure cost "    \
2441          "of stackbanging)")                                               \
2442                                                                            \
2443  develop(bool, Use24BitFPMode, true,                                       \
2444          "Set 24-bit FPU mode on a per-compile basis ")                    \
2445                                                                            \
2446  develop(bool, Use24BitFP, true,                                           \
2447          "use FP instructions that produce 24-bit precise results")        \
2448                                                                            \
2449  develop(bool, UseStrictFP, true,                                          \
2450          "use strict fp if modifier strictfp is set")                      \
2451                                                                            \
2452  develop(bool, GenerateSynchronizationCode, true,                          \
2453          "generate locking/unlocking code for synchronized methods and "   \
2454          "monitors")                                                       \
2455                                                                            \
2456  develop(bool, GenerateCompilerNullChecks, true,                           \
2457          "Generate explicit null checks for loads/stores/calls")           \
2458                                                                            \
2459  develop(bool, GenerateRangeChecks, true,                                  \
2460          "Generate range checks for array accesses")                       \
2461                                                                            \
2462  develop_pd(bool, ImplicitNullChecks,                                      \
2463          "generate code for implicit null checks")                         \
2464                                                                            \
2465  product(bool, PrintSafepointStatistics, false,                            \
2466          "print statistics about safepoint synchronization")               \
2467                                                                            \
2468  product(intx, PrintSafepointStatisticsCount, 300,                         \
2469          "total number of safepoint statistics collected "                 \
2470          "before printing them out")                                       \
2471                                                                            \
2472  product(intx, PrintSafepointStatisticsTimeout,  -1,                       \
2473          "print safepoint statistics only when safepoint takes"            \
2474          " more than PrintSafepointSatisticsTimeout in millis")            \
2475                                                                            \
2476  product(bool, TraceSafepointCleanupTime, false,                           \
2477          "print the break down of clean up tasks performed during"         \
2478          " safepoint")                                                     \
2479                                                                            \
2480  develop(bool, InlineAccessors, true,                                      \
2481          "inline accessor methods (get/set)")                              \
2482                                                                            \
2483  product(bool, Inline, true,                                               \
2484          "enable inlining")                                                \
2485                                                                            \
2486  product(bool, ClipInlining, true,                                         \
2487          "clip inlining if aggregate method exceeds DesiredMethodLimit")   \
2488                                                                            \
2489  develop(bool, UseCHA, true,                                               \
2490          "enable CHA")                                                     \
2491                                                                            \
2492  product(bool, UseTypeProfile, true,                                       \
2493          "Check interpreter profile for historically monomorphic calls")   \
2494                                                                            \
2495  product(intx, TypeProfileMajorReceiverPercent, 90,                        \
2496          "% of major receiver type to all profiled receivers")             \
2497                                                                            \
2498  notproduct(bool, TimeCompiler, false,                                     \
2499          "time the compiler")                                              \
2500                                                                            \
2501  notproduct(bool, TimeCompiler2, false,                                    \
2502          "detailed time the compiler (requires +TimeCompiler)")            \
2503                                                                            \
2504  diagnostic(bool, PrintInlining, false,                                    \
2505          "prints inlining optimizations")                                  \
2506                                                                            \
2507  diagnostic(bool, PrintIntrinsics, false,                                  \
2508          "prints attempted and successful inlining of intrinsics")         \
2509                                                                            \
2510  product(bool, UseCountLeadingZerosInstruction, false,                     \
2511          "Use count leading zeros instruction")                            \
2512                                                                            \
2513  product(bool, UsePopCountInstruction, false,                              \
2514          "Use population count instruction")                               \
2515                                                                            \
2516  diagnostic(ccstrlist, DisableIntrinsic, "",                               \
2517          "do not expand intrinsics whose (internal) names appear here")    \
2518                                                                            \
2519  develop(bool, StressReflectiveCode, false,                                \
2520          "Use inexact types at allocations, etc., to test reflection")     \
2521                                                                            \
2522  develop(bool, EagerInitialization, false,                                 \
2523          "Eagerly initialize classes if possible")                         \
2524                                                                            \
2525  develop(bool, TraceMethodReplacement, false,                              \
2526          "Print when methods are replaced do to recompilation")            \
2527                                                                            \
2528  develop(bool, PrintMethodFlushing, false,                                 \
2529          "print the nmethods being flushed")                               \
2530                                                                            \
2531  notproduct(bool, LogMultipleMutexLocking, false,                          \
2532          "log locking and unlocking of mutexes (only if multiple locks "   \
2533          "are held)")                                                      \
2534                                                                            \
2535  develop(bool, UseRelocIndex, false,                                       \
2536         "use an index to speed random access to relocations")              \
2537                                                                            \
2538  develop(bool, StressCodeBuffers, false,                                   \
2539         "Exercise code buffer expansion and other rare state changes")     \
2540                                                                            \
2541  diagnostic(bool, DebugNonSafepoints, trueInDebug,                         \
2542         "Generate extra debugging info for non-safepoints in nmethods")    \
2543                                                                            \
2544  diagnostic(bool, DebugInlinedCalls, true,                                 \
2545         "If false, restricts profiled locations to the root method only")  \
2546                                                                            \
2547  product(bool, PrintVMOptions, trueInDebug,                                \
2548         "Print flags that appeared on the command line")                   \
2549                                                                            \
2550  product(bool, IgnoreUnrecognizedVMOptions, false,                         \
2551         "Ignore unrecognized VM options")                                  \
2552                                                                            \
2553  product(bool, PrintCommandLineFlags, false,                               \
2554         "Print flags specified on command line or set by ergonomics")      \
2555                                                                            \
2556  product(bool, PrintFlagsInitial, false,                                   \
2557         "Print all VM flags before argument processing and exit VM")       \
2558                                                                            \
2559  product(bool, PrintFlagsFinal, false,                                     \
2560         "Print all VM flags after argument and ergonomic processing")      \
2561                                                                            \
2562  notproduct(bool, PrintFlagsWithComments, false,                           \
2563         "Print all VM flags with default values and descriptions and exit")\
2564                                                                            \
2565  diagnostic(bool, SerializeVMOutput, true,                                 \
2566         "Use a mutex to serialize output to tty and hotspot.log")          \
2567                                                                            \
2568  diagnostic(bool, DisplayVMOutput, true,                                   \
2569         "Display all VM output on the tty, independently of LogVMOutput")  \
2570                                                                            \
2571  diagnostic(bool, LogVMOutput, trueInDebug,                                \
2572         "Save VM output to hotspot.log, or to LogFile")                    \
2573                                                                            \
2574  diagnostic(ccstr, LogFile, NULL,                                          \
2575         "If LogVMOutput is on, save VM output to this file [hotspot.log]") \
2576                                                                            \
2577  product(ccstr, ErrorFile, NULL,                                           \
2578         "If an error occurs, save the error data to this file "            \
2579         "[default: ./hs_err_pid%p.log] (%p replaced with pid)")            \
2580                                                                            \
2581  product(bool, DisplayVMOutputToStderr, false,                             \
2582         "If DisplayVMOutput is true, display all VM output to stderr")     \
2583                                                                            \
2584  product(bool, DisplayVMOutputToStdout, false,                             \
2585         "If DisplayVMOutput is true, display all VM output to stdout")     \
2586                                                                            \
2587  product(bool, UseHeavyMonitors, false,                                    \
2588          "use heavyweight instead of lightweight Java monitors")           \
2589                                                                            \
2590  notproduct(bool, PrintSymbolTableSizeHistogram, false,                    \
2591          "print histogram of the symbol table")                            \
2592                                                                            \
2593  notproduct(bool, ExitVMOnVerifyError, false,                              \
2594          "standard exit from VM if bytecode verify error "                 \
2595          "(only in debug mode)")                                           \
2596                                                                            \
2597  notproduct(ccstr, AbortVMOnException, NULL,                               \
2598          "Call fatal if this exception is thrown.  Example: "              \
2599          "java -XX:AbortVMOnException=java.lang.NullPointerException Foo") \
2600                                                                            \
2601  notproduct(ccstr, AbortVMOnExceptionMessage, NULL,                        \
2602          "Call fatal if the exception pointed by AbortVMOnException "      \
2603          "has this message.")                                              \
2604                                                                            \
2605  develop(bool, DebugVtables, false,                                        \
2606          "add debugging code to vtable dispatch")                          \
2607                                                                            \
2608  develop(bool, PrintVtables, false,                                        \
2609          "print vtables when printing klass")                              \
2610                                                                            \
2611  notproduct(bool, PrintVtableStats, false,                                 \
2612          "print vtables stats at end of run")                              \
2613                                                                            \
2614  develop(bool, TraceCreateZombies, false,                                  \
2615          "trace creation of zombie nmethods")                              \
2616                                                                            \
2617  notproduct(bool, IgnoreLockingAssertions, false,                          \
2618          "disable locking assertions (for speed)")                         \
2619                                                                            \
2620  notproduct(bool, VerifyLoopOptimizations, false,                          \
2621          "verify major loop optimizations")                                \
2622                                                                            \
2623  product(bool, RangeCheckElimination, true,                                \
2624          "Split loop iterations to eliminate range checks")                \
2625                                                                            \
2626  develop_pd(bool, UncommonNullCast,                                        \
2627          "track occurrences of null in casts; adjust compiler tactics")    \
2628                                                                            \
2629  develop(bool, TypeProfileCasts,  true,                                    \
2630          "treat casts like calls for purposes of type profiling")          \
2631                                                                            \
2632  develop(bool, MonomorphicArrayCheck, true,                                \
2633          "Uncommon-trap array store checks that require full type check")  \
2634                                                                            \
2635  diagnostic(bool, ProfileDynamicTypes, true,                               \
2636          "do extra type profiling and use it more aggressively")           \
2637                                                                            \
2638  develop(bool, DelayCompilationDuringStartup, true,                        \
2639          "Delay invoking the compiler until main application class is "    \
2640          "loaded")                                                         \
2641                                                                            \
2642  develop(bool, CompileTheWorld, false,                                     \
2643          "Compile all methods in all classes in bootstrap class path "     \
2644          "(stress test)")                                                  \
2645                                                                            \
2646  develop(bool, CompileTheWorldPreloadClasses, true,                        \
2647          "Preload all classes used by a class before start loading")       \
2648                                                                            \
2649  notproduct(intx, CompileTheWorldSafepointInterval, 100,                   \
2650          "Force a safepoint every n compiles so sweeper can keep up")      \
2651                                                                            \
2652  develop(bool, TraceIterativeGVN, false,                                   \
2653          "Print progress during Iterative Global Value Numbering")         \
2654                                                                            \
2655  develop(bool, FillDelaySlots, true,                                       \
2656          "Fill delay slots (on SPARC only)")                               \
2657                                                                            \
2658  develop(bool, VerifyIterativeGVN, false,                                  \
2659          "Verify Def-Use modifications during sparse Iterative Global "    \
2660          "Value Numbering")                                                \
2661                                                                            \
2662  notproduct(bool, TracePhaseCCP, false,                                    \
2663          "Print progress during Conditional Constant Propagation")         \
2664                                                                            \
2665  develop(bool, TimeLivenessAnalysis, false,                                \
2666          "Time computation of bytecode liveness analysis")                 \
2667                                                                            \
2668  develop(bool, TraceLivenessGen, false,                                    \
2669          "Trace the generation of liveness analysis information")          \
2670                                                                            \
2671  notproduct(bool, TraceLivenessQuery, false,                               \
2672          "Trace queries of liveness analysis information")                 \
2673                                                                            \
2674  notproduct(bool, CollectIndexSetStatistics, false,                        \
2675          "Collect information about IndexSets")                            \
2676                                                                            \
2677  develop(bool, PrintDominators, false,                                     \
2678          "Print out dominator trees for GVN")                              \
2679                                                                            \
2680  develop(bool, UseLoopSafepoints, true,                                    \
2681          "Generate Safepoint nodes in every loop")                         \
2682                                                                            \
2683  notproduct(bool, TraceCISCSpill, false,                                   \
2684          "Trace allocators use of cisc spillable instructions")            \
2685                                                                            \
2686  notproduct(bool, TraceSpilling, false,                                    \
2687          "Trace spilling")                                                 \
2688                                                                            \
2689  product(bool, SplitIfBlocks, true,                                        \
2690          "Clone compares and control flow through merge points to fold "   \
2691          "some branches")                                                  \
2692                                                                            \
2693  develop(intx, FastAllocateSizeLimit, 128*K,                               \
2694          /* Note:  This value is zero mod 1<<13 for a cheap sparc set. */  \
2695          "Inline allocations larger than this in doublewords must go slow")\
2696                                                                            \
2697  product(bool, AggressiveOpts, false,                                      \
2698          "Enable aggressive optimizations - see arguments.cpp")            \
2699                                                                            \
2700  product(bool, UseStringCache, false,                                      \
2701          "Enable String cache capabilities on String.java")                \
2702                                                                            \
2703  /* statistics */                                                          \
2704  develop(bool, CountCompiledCalls, false,                                  \
2705          "counts method invocations")                                      \
2706                                                                            \
2707  notproduct(bool, CountRuntimeCalls, false,                                \
2708          "counts VM runtime calls")                                        \
2709                                                                            \
2710  develop(bool, CountJNICalls, false,                                       \
2711          "counts jni method invocations")                                  \
2712                                                                            \
2713  notproduct(bool, CountJVMCalls, false,                                    \
2714          "counts jvm method invocations")                                  \
2715                                                                            \
2716  notproduct(bool, CountRemovableExceptions, false,                         \
2717          "count exceptions that could be replaced by branches due to "     \
2718          "inlining")                                                       \
2719                                                                            \
2720  notproduct(bool, ICMissHistogram, false,                                  \
2721          "produce histogram of IC misses")                                 \
2722                                                                            \
2723  notproduct(bool, PrintClassStatistics, false,                             \
2724          "prints class statistics at end of run")                          \
2725                                                                            \
2726  notproduct(bool, PrintMethodStatistics, false,                            \
2727          "prints method statistics at end of run")                         \
2728                                                                            \
2729  /* interpreter */                                                         \
2730  develop(bool, ClearInterpreterLocals, false,                              \
2731          "Always clear local variables of interpreter activations upon "   \
2732          "entry")                                                          \
2733                                                                            \
2734  product_pd(bool, RewriteBytecodes,                                        \
2735          "Allow rewriting of bytecodes (bytecodes are not immutable)")     \
2736                                                                            \
2737  product_pd(bool, RewriteFrequentPairs,                                    \
2738          "Rewrite frequently used bytecode pairs into a single bytecode")  \
2739                                                                            \
2740  diagnostic(bool, PrintInterpreter, false,                                 \
2741          "Prints the generated interpreter code")                          \
2742                                                                            \
2743  product(bool, UseInterpreter, true,                                       \
2744          "Use interpreter for non-compiled methods")                       \
2745                                                                            \
2746  develop(bool, UseFastSignatureHandlers, true,                             \
2747          "Use fast signature handlers for native calls")                   \
2748                                                                            \
2749  develop(bool, UseV8InstrsOnly, false,                                     \
2750          "Use SPARC-V8 Compliant instruction subset")                      \
2751                                                                            \
2752  product(bool, UseNiagaraInstrs, false,                                    \
2753          "Use Niagara-efficient instruction subset")                       \
2754                                                                            \
2755  develop(bool, UseCASForSwap, false,                                       \
2756          "Do not use swap instructions, but only CAS (in a loop) on SPARC")\
2757                                                                            \
2758  product(bool, UseLoopCounter, true,                                       \
2759          "Increment invocation counter on backward branch")                \
2760                                                                            \
2761  product(bool, UseFastEmptyMethods, true,                                  \
2762          "Use fast method entry code for empty methods")                   \
2763                                                                            \
2764  product(bool, UseFastAccessorMethods, true,                               \
2765          "Use fast method entry code for accessor methods")                \
2766                                                                            \
2767  product_pd(bool, UseOnStackReplacement,                                   \
2768           "Use on stack replacement, calls runtime if invoc. counter "     \
2769           "overflows in loop")                                             \
2770                                                                            \
2771  notproduct(bool, TraceOnStackReplacement, false,                          \
2772          "Trace on stack replacement")                                     \
2773                                                                            \
2774  develop(bool, PoisonOSREntry, true,                                       \
2775           "Detect abnormal calls to OSR code")                             \
2776                                                                            \
2777  product_pd(bool, PreferInterpreterNativeStubs,                            \
2778          "Use always interpreter stubs for native methods invoked via "    \
2779          "interpreter")                                                    \
2780                                                                            \
2781  develop(bool, CountBytecodes, false,                                      \
2782          "Count number of bytecodes executed")                             \
2783                                                                            \
2784  develop(bool, PrintBytecodeHistogram, false,                              \
2785          "Print histogram of the executed bytecodes")                      \
2786                                                                            \
2787  develop(bool, PrintBytecodePairHistogram, false,                          \
2788          "Print histogram of the executed bytecode pairs")                 \
2789                                                                            \
2790  diagnostic(bool, PrintSignatureHandlers, false,                           \
2791          "Print code generated for native method signature handlers")      \
2792                                                                            \
2793  develop(bool, VerifyOops, false,                                          \
2794          "Do plausibility checks for oops")                                \
2795                                                                            \
2796  develop(bool, CheckUnhandledOops, false,                                  \
2797          "Check for unhandled oops in VM code")                            \
2798                                                                            \
2799  develop(bool, VerifyJNIFields, trueInDebug,                               \
2800          "Verify jfieldIDs for instance fields")                           \
2801                                                                            \
2802  notproduct(bool, VerifyJNIEnvThread, false,                               \
2803          "Verify JNIEnv.thread == Thread::current() when entering VM "     \
2804          "from JNI")                                                       \
2805                                                                            \
2806  develop(bool, VerifyFPU, false,                                           \
2807          "Verify FPU state (check for NaN's, etc.)")                       \
2808                                                                            \
2809  develop(bool, VerifyThread, false,                                        \
2810          "Watch the thread register for corruption (SPARC only)")          \
2811                                                                            \
2812  develop(bool, VerifyActivationFrameSize, false,                           \
2813          "Verify that activation frame didn't become smaller than its "    \
2814          "minimal size")                                                   \
2815                                                                            \
2816  develop(bool, TraceFrequencyInlining, false,                              \
2817          "Trace frequency based inlining")                                 \
2818                                                                            \
2819  notproduct(bool, TraceTypeProfile, false,                                 \
2820          "Trace type profile")                                             \
2821                                                                            \
2822  develop_pd(bool, InlineIntrinsics,                                        \
2823           "Inline intrinsics that can be statically resolved")             \
2824                                                                            \
2825  product_pd(bool, ProfileInterpreter,                                      \
2826           "Profile at the bytecode level during interpretation")           \
2827                                                                            \
2828  develop_pd(bool, ProfileTraps,                                            \
2829          "Profile deoptimization traps at the bytecode level")             \
2830                                                                            \
2831  product(intx, ProfileMaturityPercentage, 20,                              \
2832          "number of method invocations/branches (expressed as % of "       \
2833          "CompileThreshold) before using the method's profile")            \
2834                                                                            \
2835  develop(bool, PrintMethodData, false,                                     \
2836           "Print the results of +ProfileInterpreter at end of run")        \
2837                                                                            \
2838  develop(bool, VerifyDataPointer, trueInDebug,                             \
2839          "Verify the method data pointer during interpreter profiling")    \
2840                                                                            \
2841  develop(bool, VerifyCompiledCode, false,                                  \
2842          "Include miscellaneous runtime verifications in nmethod code; "   \
2843          "default off because it disturbs nmethod size heuristics")        \
2844                                                                            \
2845  notproduct(bool, CrashGCForDumpingJavaThread, false,                      \
2846          "Manually make GC thread crash then dump java stack trace;  "     \
2847          "Test only")                                                      \
2848                                                                            \
2849  /* compilation */                                                         \
2850  product(bool, UseCompiler, true,                                          \
2851          "use compilation")                                                \
2852                                                                            \
2853  develop(bool, TraceCompilationPolicy, false,                              \
2854          "Trace compilation policy")                                       \
2855                                                                            \
2856  develop(bool, TimeCompilationPolicy, false,                               \
2857          "Time the compilation policy")                                    \
2858                                                                            \
2859  product(bool, UseCounterDecay, true,                                      \
2860           "adjust recompilation counters")                                 \
2861                                                                            \
2862  develop(intx, CounterHalfLifeTime,    30,                                 \
2863          "half-life time of invocation counters (in secs)")                \
2864                                                                            \
2865  develop(intx, CounterDecayMinIntervalLength,   500,                       \
2866          "Min. ms. between invocation of CounterDecay")                    \
2867                                                                            \
2868  product(bool, AlwaysCompileLoopMethods, false,                            \
2869          "when using recompilation, never interpret methods "              \
2870          "containing loops")                                               \
2871                                                                            \
2872  product(bool, DontCompileHugeMethods, true,                               \
2873          "don't compile methods > HugeMethodLimit")                        \
2874                                                                            \
2875  /* Bytecode escape analysis estimation. */                                \
2876  product(bool, EstimateArgEscape, true,                                    \
2877          "Analyze bytecodes to estimate escape state of arguments")        \
2878                                                                            \
2879  product(intx, BCEATraceLevel, 0,                                          \
2880          "How much tracing to do of bytecode escape analysis estimates")   \
2881                                                                            \
2882  product(intx, MaxBCEAEstimateLevel, 5,                                    \
2883          "Maximum number of nested calls that are analyzed by BC EA.")     \
2884                                                                            \
2885  product(intx, MaxBCEAEstimateSize, 150,                                   \
2886          "Maximum bytecode size of a method to be analyzed by BC EA.")     \
2887                                                                            \
2888  product(intx,  AllocatePrefetchStyle, 1,                                  \
2889          "0 = no prefetch, "                                               \
2890          "1 = prefetch instructions for each allocation, "                 \
2891          "2 = use TLAB watermark to gate allocation prefetch, "            \
2892          "3 = use BIS instruction on Sparc for allocation prefetch")       \
2893                                                                            \
2894  product(intx,  AllocatePrefetchDistance, -1,                              \
2895          "Distance to prefetch ahead of allocation pointer")               \
2896                                                                            \
2897  product(intx,  AllocatePrefetchLines, 1,                                  \
2898          "Number of lines to prefetch ahead of allocation pointer")        \
2899                                                                            \
2900  product(intx,  AllocatePrefetchStepSize, 16,                              \
2901          "Step size in bytes of sequential prefetch instructions")         \
2902                                                                            \
2903  product(intx,  AllocatePrefetchInstr, 0,                                  \
2904          "Prefetch instruction to prefetch ahead of allocation pointer")   \
2905                                                                            \
2906  product(intx,  ReadPrefetchInstr, 0,                                      \
2907          "Prefetch instruction to prefetch ahead")                         \
2908                                                                            \
2909  /* deoptimization */                                                      \
2910  develop(bool, TraceDeoptimization, false,                                 \
2911          "Trace deoptimization")                                           \
2912                                                                            \
2913  develop(bool, DebugDeoptimization, false,                                 \
2914          "Tracing various information while debugging deoptimization")     \
2915                                                                            \
2916  product(intx, SelfDestructTimer, 0,                                       \
2917          "Will cause VM to terminate after a given time (in minutes) "     \
2918          "(0 means off)")                                                  \
2919                                                                            \
2920  product(intx, MaxJavaStackTraceDepth, 1024,                               \
2921          "Max. no. of lines in the stack trace for Java exceptions "       \
2922          "(0 means all)")                                                  \
2923                                                                            \
2924  NOT_EMBEDDED(diagnostic(intx, GuaranteedSafepointInterval, 1000,          \
2925          "Guarantee a safepoint (at least) every so many milliseconds "    \
2926          "(0 means none)"))                                                \
2927                                                                            \
2928  EMBEDDED_ONLY(product(intx, GuaranteedSafepointInterval, 0,               \
2929          "Guarantee a safepoint (at least) every so many milliseconds "    \
2930          "(0 means none)"))                                                \
2931                                                                            \
2932  product(intx, SafepointTimeoutDelay, 10000,                               \
2933          "Delay in milliseconds for option SafepointTimeout")              \
2934                                                                            \
2935  product(intx, NmethodSweepFraction, 4,                                    \
2936          "Number of invocations of sweeper to cover all nmethods")         \
2937                                                                            \
2938  product(intx, NmethodSweepCheckInterval, 5,                               \
2939          "Compilers wake up every n seconds to possibly sweep nmethods")   \
2940                                                                            \
2941  notproduct(bool, LogSweeper, false,                                       \
2942            "Keep a ring buffer of sweeper activity")                       \
2943                                                                            \
2944  notproduct(intx, SweeperLogEntries, 1024,                                 \
2945            "Number of records in the ring buffer of sweeper activity")     \
2946                                                                            \
2947  notproduct(intx, MemProfilingInterval, 500,                               \
2948          "Time between each invocation of the MemProfiler")                \
2949                                                                            \
2950  develop(intx, MallocCatchPtr, -1,                                         \
2951          "Hit breakpoint when mallocing/freeing this pointer")             \
2952                                                                            \
2953  notproduct(intx, AssertRepeat, 1,                                         \
2954          "number of times to evaluate expression in assert "               \
2955          "(to estimate overhead); only works with -DUSE_REPEATED_ASSERTS") \
2956                                                                            \
2957  notproduct(ccstrlist, SuppressErrorAt, "",                                \
2958          "List of assertions (file:line) to muzzle")                       \
2959                                                                            \
2960  notproduct(uintx, HandleAllocationLimit, 1024,                            \
2961          "Threshold for HandleMark allocation when +TraceHandleAllocation "\
2962          "is used")                                                        \
2963                                                                            \
2964  develop(uintx, TotalHandleAllocationLimit, 1024,                          \
2965          "Threshold for total handle allocation when "                     \
2966          "+TraceHandleAllocation is used")                                 \
2967                                                                            \
2968  develop(intx, StackPrintLimit, 100,                                       \
2969          "number of stack frames to print in VM-level stack dump")         \
2970                                                                            \
2971  notproduct(intx, MaxElementPrintSize, 256,                                \
2972          "maximum number of elements to print")                            \
2973                                                                            \
2974  notproduct(intx, MaxSubklassPrintSize, 4,                                 \
2975          "maximum number of subklasses to print when printing klass")      \
2976                                                                            \
2977  product(intx, MaxInlineLevel, 9,                                          \
2978          "maximum number of nested calls that are inlined")                \
2979                                                                            \
2980  product(intx, MaxRecursiveInlineLevel, 1,                                 \
2981          "maximum number of nested recursive calls that are inlined")      \
2982                                                                            \
2983  product_pd(intx, InlineSmallCode,                                         \
2984          "Only inline already compiled methods if their code size is "     \
2985          "less than this")                                                 \
2986                                                                            \
2987  product(intx, MaxInlineSize, 35,                                          \
2988          "maximum bytecode size of a method to be inlined")                \
2989                                                                            \
2990  product_pd(intx, FreqInlineSize,                                          \
2991          "maximum bytecode size of a frequent method to be inlined")       \
2992                                                                            \
2993  product(intx, MaxTrivialSize, 6,                                          \
2994          "maximum bytecode size of a trivial method to be inlined")        \
2995                                                                            \
2996  product(intx, MinInliningThreshold, 250,                                  \
2997          "min. invocation count a method needs to have to be inlined")     \
2998                                                                            \
2999  develop(intx, AlignEntryCode, 4,                                          \
3000          "aligns entry code to specified value (in bytes)")                \
3001                                                                            \
3002  develop(intx, MethodHistogramCutoff, 100,                                 \
3003          "cutoff value for method invoc. histogram (+CountCalls)")         \
3004                                                                            \
3005  develop(intx, ProfilerNumberOfInterpretedMethods, 25,                     \
3006          "# of interpreted methods to show in profile")                    \
3007                                                                            \
3008  develop(intx, ProfilerNumberOfCompiledMethods, 25,                        \
3009          "# of compiled methods to show in profile")                       \
3010                                                                            \
3011  develop(intx, ProfilerNumberOfStubMethods, 25,                            \
3012          "# of stub methods to show in profile")                           \
3013                                                                            \
3014  develop(intx, ProfilerNumberOfRuntimeStubNodes, 25,                       \
3015          "# of runtime stub nodes to show in profile")                     \
3016                                                                            \
3017  product(intx, ProfileIntervalsTicks, 100,                                 \
3018          "# of ticks between printing of interval profile "                \
3019          "(+ProfileIntervals)")                                            \
3020                                                                            \
3021  notproduct(intx, ScavengeALotInterval,     1,                             \
3022          "Interval between which scavenge will occur with +ScavengeALot")  \
3023                                                                            \
3024  notproduct(intx, FullGCALotInterval,     1,                               \
3025          "Interval between which full gc will occur with +FullGCALot")     \
3026                                                                            \
3027  notproduct(intx, FullGCALotStart,     0,                                  \
3028          "For which invocation to start FullGCAlot")                       \
3029                                                                            \
3030  notproduct(intx, FullGCALotDummies,  32*K,                                \
3031          "Dummy object allocated with +FullGCALot, forcing all objects "   \
3032          "to move")                                                        \
3033                                                                            \
3034  develop(intx, DontYieldALotInterval,    10,                               \
3035          "Interval between which yields will be dropped (milliseconds)")   \
3036                                                                            \
3037  develop(intx, MinSleepInterval,     1,                                    \
3038          "Minimum sleep() interval (milliseconds) when "                   \
3039          "ConvertSleepToYield is off (used for SOLARIS)")                  \
3040                                                                            \
3041  product(intx, EventLogLength,  2000,                                      \
3042          "maximum nof events in event log")                                \
3043                                                                            \
3044  develop(intx, ProfilerPCTickThreshold,    15,                             \
3045          "Number of ticks in a PC buckets to be a hotspot")                \
3046                                                                            \
3047  notproduct(intx, DeoptimizeALotInterval,     5,                           \
3048          "Number of exits until DeoptimizeALot kicks in")                  \
3049                                                                            \
3050  notproduct(intx, ZombieALotInterval,     5,                               \
3051          "Number of exits until ZombieALot kicks in")                      \
3052                                                                            \
3053  develop(bool, StressNonEntrant, false,                                    \
3054          "Mark nmethods non-entrant at registration")                      \
3055                                                                            \
3056  diagnostic(intx, MallocVerifyInterval,     0,                             \
3057          "if non-zero, verify C heap after every N calls to "              \
3058          "malloc/realloc/free")                                            \
3059                                                                            \
3060  diagnostic(intx, MallocVerifyStart,     0,                                \
3061          "if non-zero, start verifying C heap after Nth call to "          \
3062          "malloc/realloc/free")                                            \
3063                                                                            \
3064  product(intx, TypeProfileWidth,     2,                                   \
3065          "number of receiver types to record in call/cast profile")        \
3066                                                                            \
3067  develop(intx, BciProfileWidth,      2,                                    \
3068          "number of return bci's to record in ret profile")                \
3069                                                                            \
3070  product(intx, PerMethodRecompilationCutoff, 400,                          \
3071          "After recompiling N times, stay in the interpreter (-1=>'Inf')") \
3072                                                                            \
3073  product(intx, PerBytecodeRecompilationCutoff, 200,                        \
3074          "Per-BCI limit on repeated recompilation (-1=>'Inf')")            \
3075                                                                            \
3076  product(intx, PerMethodTrapLimit,  100,                                   \
3077          "Limit on traps (of one kind) in a method (includes inlines)")    \
3078                                                                            \
3079  product(intx, PerBytecodeTrapLimit,  4,                                   \
3080          "Limit on traps (of one kind) at a particular BCI")               \
3081                                                                            \
3082  develop(intx, FreqCountInvocations,  1,                                   \
3083          "Scaling factor for branch frequencies (deprecated)")             \
3084                                                                            \
3085  develop(intx, InlineFrequencyRatio,    20,                                \
3086          "Ratio of call site execution to caller method invocation")       \
3087                                                                            \
3088  develop_pd(intx, InlineFrequencyCount,                                    \
3089          "Count of call site execution necessary to trigger frequent "     \
3090          "inlining")                                                       \
3091                                                                            \
3092  develop(intx, InlineThrowCount,    50,                                    \
3093          "Force inlining of interpreted methods that throw this often")    \
3094                                                                            \
3095  develop(intx, InlineThrowMaxSize,   200,                                  \
3096          "Force inlining of throwing methods smaller than this")           \
3097                                                                            \
3098  product(intx, AliasLevel,     3,                                          \
3099          "0 for no aliasing, 1 for oop/field/static/array split, "         \
3100          "2 for class split, 3 for unique instances")                      \
3101                                                                            \
3102  develop(bool, VerifyAliases, false,                                       \
3103          "perform extra checks on the results of alias analysis")          \
3104                                                                            \
3105  develop(intx, ProfilerNodeSize,  1024,                                    \
3106          "Size in K to allocate for the Profile Nodes of each thread")     \
3107                                                                            \
3108  develop(intx, V8AtomicOperationUnderLockSpinCount,    50,                 \
3109          "Number of times to spin wait on a v8 atomic operation lock")     \
3110                                                                            \
3111  product(intx, ReadSpinIterations,   100,                                  \
3112          "Number of read attempts before a yield (spin inner loop)")       \
3113                                                                            \
3114  product_pd(intx, PreInflateSpin,                                          \
3115          "Number of times to spin wait before inflation")                  \
3116                                                                            \
3117  product(intx, PreBlockSpin,    10,                                        \
3118          "Number of times to spin in an inflated lock before going to "    \
3119          "an OS lock")                                                     \
3120                                                                            \
3121  /* gc parameters */                                                       \
3122  product(uintx, InitialHeapSize, 0,                                        \
3123          "Initial heap size (in bytes); zero means OldSize + NewSize")     \
3124                                                                            \
3125  product(uintx, MaxHeapSize, ScaleForWordSize(96*M),                       \
3126          "Maximum heap size (in bytes)")                                   \
3127                                                                            \
3128  product(uintx, OldSize, ScaleForWordSize(4*M),                            \
3129          "Initial tenured generation size (in bytes)")                     \
3130                                                                            \
3131  product(uintx, NewSize, ScaleForWordSize(1*M),                            \
3132          "Initial new generation size (in bytes)")                         \
3133                                                                            \
3134  product(uintx, MaxNewSize, max_uintx,                                     \
3135          "Maximum new generation size (in bytes), max_uintx means set "    \
3136          "ergonomically")                                                  \
3137                                                                            \
3138  product(uintx, PretenureSizeThreshold, 0,                                 \
3139          "Maximum size in bytes of objects allocated in DefNew "           \
3140          "generation; zero means no maximum")                              \
3141                                                                            \
3142  product(uintx, TLABSize, 0,                                               \
3143          "Starting TLAB size (in bytes); zero means set ergonomically")    \
3144                                                                            \
3145  product(uintx, MinTLABSize, 2*K,                                          \
3146          "Minimum allowed TLAB size (in bytes)")                           \
3147                                                                            \
3148  product(uintx, TLABAllocationWeight, 35,                                  \
3149          "Allocation averaging weight")                                    \
3150                                                                            \
3151  product(uintx, TLABWasteTargetPercent, 1,                                 \
3152          "Percentage of Eden that can be wasted")                          \
3153                                                                            \
3154  product(uintx, TLABRefillWasteFraction,    64,                            \
3155          "Max TLAB waste at a refill (internal fragmentation)")            \
3156                                                                            \
3157  product(uintx, TLABWasteIncrement,    4,                                  \
3158          "Increment allowed waste at slow allocation")                     \
3159                                                                            \
3160  product(intx, SurvivorRatio, 8,                                           \
3161          "Ratio of eden/survivor space size")                              \
3162                                                                            \
3163  product(intx, NewRatio, 2,                                                \
3164          "Ratio of new/old generation sizes")                              \
3165                                                                            \
3166  product_pd(uintx, NewSizeThreadIncrease,                                  \
3167          "Additional size added to desired new generation size per "       \
3168          "non-daemon thread (in bytes)")                                   \
3169                                                                            \
3170  product_pd(uintx, PermSize,                                               \
3171          "Initial size of permanent generation (in bytes)")                \
3172                                                                            \
3173  product_pd(uintx, MaxPermSize,                                            \
3174          "Maximum size of permanent generation (in bytes)")                \
3175                                                                            \
3176  product(uintx, MinHeapFreeRatio,    40,                                   \
3177          "Min percentage of heap free after GC to avoid expansion")        \
3178                                                                            \
3179  product(uintx, MaxHeapFreeRatio,    70,                                   \
3180          "Max percentage of heap free after GC to avoid shrinking")        \
3181                                                                            \
3182  product(intx, SoftRefLRUPolicyMSPerMB, 1000,                              \
3183          "Number of milliseconds per MB of free space in the heap")        \
3184                                                                            \
3185  product(uintx, MinHeapDeltaBytes, ScaleForWordSize(128*K),                \
3186          "Min change in heap space due to GC (in bytes)")                  \
3187                                                                            \
3188  product(uintx, MinPermHeapExpansion, ScaleForWordSize(256*K),             \
3189          "Min expansion of permanent heap (in bytes)")                     \
3190                                                                            \
3191  product(uintx, MaxPermHeapExpansion, ScaleForWordSize(4*M),               \
3192          "Max expansion of permanent heap without full GC (in bytes)")     \
3193                                                                            \
3194  product(intx, QueuedAllocationWarningCount, 0,                            \
3195          "Number of times an allocation that queues behind a GC "          \
3196          "will retry before printing a warning")                           \
3197                                                                            \
3198  diagnostic(uintx, VerifyGCStartAt,   0,                                   \
3199          "GC invoke count where +VerifyBefore/AfterGC kicks in")           \
3200                                                                            \
3201  diagnostic(intx, VerifyGCLevel,     0,                                    \
3202          "Generation level at which to start +VerifyBefore/AfterGC")       \
3203                                                                            \
3204  develop(uintx, ExitAfterGCNum,   0,                                       \
3205          "If non-zero, exit after this GC.")                               \
3206                                                                            \
3207  product(intx, MaxTenuringThreshold,    15,                                \
3208          "Maximum value for tenuring threshold")                           \
3209                                                                            \
3210  product(intx, InitialTenuringThreshold,     7,                            \
3211          "Initial value for tenuring threshold")                           \
3212                                                                            \
3213  product(intx, TargetSurvivorRatio,    50,                                 \
3214          "Desired percentage of survivor space used after scavenge")       \
3215                                                                            \
3216  product(uintx, MarkSweepDeadRatio,     5,                                 \
3217          "Percentage (0-100) of the old gen allowed as dead wood."         \
3218          "Serial mark sweep treats this as both the min and max value."    \
3219          "CMS uses this value only if it falls back to mark sweep."        \
3220          "Par compact uses a variable scale based on the density of the"   \
3221          "generation and treats this as the max value when the heap is"    \
3222          "either completely full or completely empty.  Par compact also"   \
3223          "has a smaller default value; see arguments.cpp.")                \
3224                                                                            \
3225  product(uintx, PermMarkSweepDeadRatio,    20,                             \
3226          "Percentage (0-100) of the perm gen allowed as dead wood."        \
3227          "See MarkSweepDeadRatio for collector-specific comments.")        \
3228                                                                            \
3229  product(intx, MarkSweepAlwaysCompactCount,     4,                         \
3230          "How often should we fully compact the heap (ignoring the dead "  \
3231          "space parameters)")                                              \
3232                                                                            \
3233  product(intx, PrintCMSStatistics, 0,                                      \
3234          "Statistics for CMS")                                             \
3235                                                                            \
3236  product(bool, PrintCMSInitiationStatistics, false,                        \
3237          "Statistics for initiating a CMS collection")                     \
3238                                                                            \
3239  product(intx, PrintFLSStatistics, 0,                                      \
3240          "Statistics for CMS' FreeListSpace")                              \
3241                                                                            \
3242  product(intx, PrintFLSCensus, 0,                                          \
3243          "Census for CMS' FreeListSpace")                                  \
3244                                                                            \
3245  develop(uintx, GCExpandToAllocateDelayMillis, 0,                          \
3246          "Delay in ms between expansion and allocation")                   \
3247                                                                            \
3248  product(intx, DeferThrSuspendLoopCount,     4000,                         \
3249          "(Unstable) Number of times to iterate in safepoint loop "        \
3250          " before blocking VM threads ")                                   \
3251                                                                            \
3252  product(intx, DeferPollingPageLoopCount,     -1,                          \
3253          "(Unsafe,Unstable) Number of iterations in safepoint loop "       \
3254          "before changing safepoint polling page to RO ")                  \
3255                                                                            \
3256  product(intx, SafepointSpinBeforeYield, 2000,  "(Unstable)")              \
3257                                                                            \
3258  product(bool, PSChunkLargeArrays, true,                                   \
3259          "true: process large arrays in chunks")                           \
3260                                                                            \
3261  product(uintx, GCDrainStackTargetSize, 64,                                \
3262          "how many entries we'll try to leave on the stack during "        \
3263          "parallel GC")                                                    \
3264                                                                            \
3265  /* stack parameters */                                                    \
3266  product_pd(intx, StackYellowPages,                                        \
3267          "Number of yellow zone (recoverable overflows) pages")            \
3268                                                                            \
3269  product_pd(intx, StackRedPages,                                           \
3270          "Number of red zone (unrecoverable overflows) pages")             \
3271                                                                            \
3272  product_pd(intx, StackShadowPages,                                        \
3273          "Number of shadow zone (for overflow checking) pages"             \
3274          " this should exceed the depth of the VM and native call stack")  \
3275                                                                            \
3276  product_pd(intx, ThreadStackSize,                                         \
3277          "Thread Stack Size (in Kbytes)")                                  \
3278                                                                            \
3279  product_pd(intx, VMThreadStackSize,                                       \
3280          "Non-Java Thread Stack Size (in Kbytes)")                         \
3281                                                                            \
3282  product_pd(intx, CompilerThreadStackSize,                                 \
3283          "Compiler Thread Stack Size (in Kbytes)")                         \
3284                                                                            \
3285  develop_pd(uintx, JVMInvokeMethodSlack,                                   \
3286          "Stack space (bytes) required for JVM_InvokeMethod to complete")  \
3287                                                                            \
3288  product(uintx, ThreadSafetyMargin, 50*M,                                  \
3289          "Thread safety margin is used on fixed-stack LinuxThreads (on "   \
3290          "Linux/x86 only) to prevent heap-stack collision. Set to 0 to "   \
3291          "disable this feature")                                           \
3292                                                                            \
3293  /* code cache parameters */                                               \
3294  develop(uintx, CodeCacheSegmentSize, 64,                                  \
3295          "Code cache segment size (in bytes) - smallest unit of "          \
3296          "allocation")                                                     \
3297                                                                            \
3298  develop_pd(intx, CodeEntryAlignment,                                      \
3299          "Code entry alignment for generated code (in bytes)")             \
3300                                                                            \
3301  product_pd(intx, OptoLoopAlignment,                                       \
3302          "Align inner loops to zero relative to this modulus")             \
3303                                                                            \
3304  product_pd(uintx, InitialCodeCacheSize,                                   \
3305          "Initial code cache size (in bytes)")                             \
3306                                                                            \
3307  product_pd(uintx, ReservedCodeCacheSize,                                  \
3308          "Reserved code cache size (in bytes) - maximum code cache size")  \
3309                                                                            \
3310  product(uintx, CodeCacheMinimumFreeSpace, 500*K,                          \
3311          "When less than X space left, we stop compiling.")                \
3312                                                                            \
3313  product_pd(uintx, CodeCacheExpansionSize,                                 \
3314          "Code cache expansion size (in bytes)")                           \
3315                                                                            \
3316  develop_pd(uintx, CodeCacheMinBlockLength,                                \
3317          "Minimum number of segments in a code cache block.")              \
3318                                                                            \
3319  notproduct(bool, ExitOnFullCodeCache, false,                              \
3320          "Exit the VM if we fill the code cache.")                         \
3321                                                                            \
3322  product(bool, UseCodeCacheFlushing, false,                                \
3323          "Attempt to clean the code cache before shutting off compiler")   \
3324                                                                            \
3325  product(intx,  MinCodeCacheFlushingInterval, 30,                          \
3326          "Min number of seconds between code cache cleaning sessions")     \
3327                                                                            \
3328  product(uintx,  CodeCacheFlushingMinimumFreeSpace, 1500*K,                \
3329          "When less than X space left, start code cache cleaning")         \
3330                                                                            \
3331  /* interpreter debugging */                                               \
3332  develop(intx, BinarySwitchThreshold, 5,                                   \
3333          "Minimal number of lookupswitch entries for rewriting to binary " \
3334          "switch")                                                         \
3335                                                                            \
3336  develop(intx, StopInterpreterAt, 0,                                       \
3337          "Stops interpreter execution at specified bytecode number")       \
3338                                                                            \
3339  develop(intx, TraceBytecodesAt, 0,                                        \
3340          "Traces bytecodes starting with specified bytecode number")       \
3341                                                                            \
3342  /* compiler interface */                                                  \
3343  develop(intx, CIStart, 0,                                                 \
3344          "the id of the first compilation to permit")                      \
3345                                                                            \
3346  develop(intx, CIStop,    -1,                                              \
3347          "the id of the last compilation to permit")                       \
3348                                                                            \
3349  develop(intx, CIStartOSR,     0,                                          \
3350          "the id of the first osr compilation to permit "                  \
3351          "(CICountOSR must be on)")                                        \
3352                                                                            \
3353  develop(intx, CIStopOSR,    -1,                                           \
3354          "the id of the last osr compilation to permit "                   \
3355          "(CICountOSR must be on)")                                        \
3356                                                                            \
3357  develop(intx, CIBreakAtOSR,    -1,                                        \
3358          "id of osr compilation to break at")                              \
3359                                                                            \
3360  develop(intx, CIBreakAt,    -1,                                           \
3361          "id of compilation to break at")                                  \
3362                                                                            \
3363  product(ccstrlist, CompileOnly, "",                                       \
3364          "List of methods (pkg/class.name) to restrict compilation to")    \
3365                                                                            \
3366  product(ccstr, CompileCommandFile, NULL,                                  \
3367          "Read compiler commands from this file [.hotspot_compiler]")      \
3368                                                                            \
3369  product(ccstrlist, CompileCommand, "",                                    \
3370          "Prepend to .hotspot_compiler; e.g. log,java/lang/String.<init>") \
3371                                                                            \
3372  product(bool, CICompilerCountPerCPU, false,                               \
3373          "1 compiler thread for log(N CPUs)")                              \
3374                                                                            \
3375  develop(intx, CIFireOOMAt,    -1,                                         \
3376          "Fire OutOfMemoryErrors throughout CI for testing the compiler "  \
3377          "(non-negative value throws OOM after this many CI accesses "     \
3378          "in each compile)")                                               \
3379                                                                            \
3380  develop(intx, CIFireOOMAtDelay, -1,                                       \
3381          "Wait for this many CI accesses to occur in all compiles before " \
3382          "beginning to throw OutOfMemoryErrors in each compile")           \
3383                                                                            \
3384  notproduct(bool, CIObjectFactoryVerify, false,                            \
3385          "enable potentially expensive verification in ciObjectFactory")   \
3386                                                                            \
3387  /* Priorities */                                                          \
3388  product_pd(bool, UseThreadPriorities,  "Use native thread priorities")    \
3389                                                                            \
3390  product(intx, ThreadPriorityPolicy, 0,                                    \
3391          "0 : Normal.                                                     "\
3392          "    VM chooses priorities that are appropriate for normal       "\
3393          "    applications. On Solaris NORM_PRIORITY and above are mapped "\
3394          "    to normal native priority. Java priorities below NORM_PRIORITY"\
3395          "    map to lower native priority values. On Windows applications"\
3396          "    are allowed to use higher native priorities. However, with  "\
3397          "    ThreadPriorityPolicy=0, VM will not use the highest possible"\
3398          "    native priority, THREAD_PRIORITY_TIME_CRITICAL, as it may   "\
3399          "    interfere with system threads. On Linux thread priorities   "\
3400          "    are ignored because the OS does not support static priority "\
3401          "    in SCHED_OTHER scheduling class which is the only choice for"\
3402          "    non-root, non-realtime applications.                        "\
3403          "1 : Aggressive.                                                 "\
3404          "    Java thread priorities map over to the entire range of      "\
3405          "    native thread priorities. Higher Java thread priorities map "\
3406          "    to higher native thread priorities. This policy should be   "\
3407          "    used with care, as sometimes it can cause performance       "\
3408          "    degradation in the application and/or the entire system. On "\
3409          "    Linux this policy requires root privilege.")                 \
3410                                                                            \
3411  product(bool, ThreadPriorityVerbose, false,                               \
3412          "print priority changes")                                         \
3413                                                                            \
3414  product(intx, DefaultThreadPriority, -1,                                  \
3415          "what native priority threads run at if not specified elsewhere (-1 means no change)") \
3416                                                                            \
3417  product(intx, CompilerThreadPriority, -1,                                 \
3418          "what priority should compiler threads run at (-1 means no change)") \
3419                                                                            \
3420  product(intx, VMThreadPriority, -1,                                       \
3421          "what priority should VM threads run at (-1 means no change)")    \
3422                                                                            \
3423  product(bool, CompilerThreadHintNoPreempt, true,                          \
3424          "(Solaris only) Give compiler threads an extra quanta")           \
3425                                                                            \
3426  product(bool, VMThreadHintNoPreempt, false,                               \
3427          "(Solaris only) Give VM thread an extra quanta")                  \
3428                                                                            \
3429  product(intx, JavaPriority1_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3430  product(intx, JavaPriority2_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3431  product(intx, JavaPriority3_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3432  product(intx, JavaPriority4_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3433  product(intx, JavaPriority5_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3434  product(intx, JavaPriority6_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3435  product(intx, JavaPriority7_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3436  product(intx, JavaPriority8_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3437  product(intx, JavaPriority9_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3438  product(intx, JavaPriority10_To_OSPriority,-1, "Map Java priorities to OS priorities") \
3439                                                                            \
3440  /* compiler debugging */                                                  \
3441  notproduct(intx, CompileTheWorldStartAt,     1,                           \
3442          "First class to consider when using +CompileTheWorld")            \
3443                                                                            \
3444  notproduct(intx, CompileTheWorldStopAt, max_jint,                         \
3445          "Last class to consider when using +CompileTheWorld")             \
3446                                                                            \
3447  develop(intx, NewCodeParameter,      0,                                   \
3448          "Testing Only: Create a dedicated integer parameter before "      \
3449          "putback")                                                        \
3450                                                                            \
3451  /* new oopmap storage allocation */                                       \
3452  develop(intx, MinOopMapAllocation,     8,                                 \
3453          "Minimum number of OopMap entries in an OopMapSet")               \
3454                                                                            \
3455  /* Background Compilation */                                              \
3456  develop(intx, LongCompileThreshold,     50,                               \
3457          "Used with +TraceLongCompiles")                                   \
3458                                                                            \
3459  product(intx, StarvationMonitorInterval,    200,                          \
3460          "Pause between each check in ms")                                 \
3461                                                                            \
3462  /* recompilation */                                                       \
3463  product_pd(intx, CompileThreshold,                                        \
3464          "number of interpreted method invocations before (re-)compiling") \
3465                                                                            \
3466  product_pd(intx, BackEdgeThreshold,                                       \
3467          "Interpreter Back edge threshold at which an OSR compilation is invoked")\
3468                                                                            \
3469  product(intx, Tier0InvokeNotifyFreqLog, 7,                                \
3470          "Interpreter (tier 0) invocation notification frequency.")        \
3471                                                                            \
3472  product(intx, Tier2InvokeNotifyFreqLog, 11,                               \
3473          "C1 without MDO (tier 2) invocation notification frequency.")     \
3474                                                                            \
3475  product(intx, Tier3InvokeNotifyFreqLog, 10,                               \
3476          "C1 with MDO profiling (tier 3) invocation notification "         \
3477          "frequency.")                                                     \
3478                                                                            \
3479  product(intx, Tier0BackedgeNotifyFreqLog, 10,                             \
3480          "Interpreter (tier 0) invocation notification frequency.")        \
3481                                                                            \
3482  product(intx, Tier2BackedgeNotifyFreqLog, 14,                             \
3483          "C1 without MDO (tier 2) invocation notification frequency.")     \
3484                                                                            \
3485  product(intx, Tier3BackedgeNotifyFreqLog, 13,                             \
3486          "C1 with MDO profiling (tier 3) invocation notification "         \
3487          "frequency.")                                                     \
3488                                                                            \
3489  product(intx, Tier2CompileThreshold, 0,                                   \
3490          "threshold at which tier 2 compilation is invoked")               \
3491                                                                            \
3492  product(intx, Tier2BackEdgeThreshold, 0,                                  \
3493          "Back edge threshold at which tier 2 compilation is invoked")     \
3494                                                                            \
3495  product(intx, Tier3InvocationThreshold, 200,                              \
3496          "Compile if number of method invocations crosses this "           \
3497          "threshold")                                                      \
3498                                                                            \
3499  product(intx, Tier3MinInvocationThreshold, 100,                           \
3500          "Minimum invocation to compile at tier 3")                        \
3501                                                                            \
3502  product(intx, Tier3CompileThreshold, 2000,                                \
3503          "Threshold at which tier 3 compilation is invoked (invocation "   \
3504          "minimum must be satisfied.")                                     \
3505                                                                            \
3506  product(intx, Tier3BackEdgeThreshold,  7000,                              \
3507          "Back edge threshold at which tier 3 OSR compilation is invoked") \
3508                                                                            \
3509  product(intx, Tier4InvocationThreshold, 5000,                             \
3510          "Compile if number of method invocations crosses this "           \
3511          "threshold")                                                      \
3512                                                                            \
3513  product(intx, Tier4MinInvocationThreshold, 600,                           \
3514          "Minimum invocation to compile at tier 4")                        \
3515                                                                            \
3516  product(intx, Tier4CompileThreshold, 15000,                               \
3517          "Threshold at which tier 4 compilation is invoked (invocation "   \
3518          "minimum must be satisfied.")                                     \
3519                                                                            \
3520  product(intx, Tier4BackEdgeThreshold, 40000,                              \
3521          "Back edge threshold at which tier 4 OSR compilation is invoked") \
3522                                                                            \
3523  product(intx, Tier3DelayOn, 5,                                            \
3524          "If C2 queue size grows over this amount per compiler thread "    \
3525          "stop compiling at tier 3 and start compiling at tier 2")         \
3526                                                                            \
3527  product(intx, Tier3DelayOff, 2,                                           \
3528          "If C2 queue size is less than this amount per compiler thread "  \
3529          "allow methods compiled at tier 2 transition to tier 3")          \
3530                                                                            \
3531  product(intx, Tier3LoadFeedback, 5,                                       \
3532          "Tier 3 thresholds will increase twofold when C1 queue size "     \
3533          "reaches this amount per compiler thread")                        \
3534                                                                            \
3535  product(intx, Tier4LoadFeedback, 3,                                       \
3536          "Tier 4 thresholds will increase twofold when C2 queue size "     \
3537          "reaches this amount per compiler thread")                        \
3538                                                                            \
3539  product(intx, TieredCompileTaskTimeout, 50,                               \
3540          "Kill compile task if method was not used within "                \
3541          "given timeout in milliseconds")                                  \
3542                                                                            \
3543  product(intx, TieredStopAtLevel, 4,                                       \
3544          "Stop at given compilation level")                                \
3545                                                                            \
3546  product(intx, Tier0ProfilingStartPercentage, 200,                         \
3547          "Start profiling in interpreter if the counters exceed tier 3"    \
3548          "thresholds by the specified percentage")                         \
3549                                                                            \
3550  product(intx, TieredRateUpdateMinTime, 1,                                 \
3551          "Minimum rate sampling interval (in milliseconds)")               \
3552                                                                            \
3553  product(intx, TieredRateUpdateMaxTime, 25,                                \
3554          "Maximum rate sampling interval (in milliseconds)")               \
3555                                                                            \
3556  product_pd(bool, TieredCompilation,                                       \
3557          "Enable tiered compilation")                                      \
3558                                                                            \
3559  product(bool, PrintTieredEvents, false,                                   \
3560          "Print tiered events notifications")                              \
3561                                                                            \
3562  product(bool, StressTieredRuntime, false,                                 \
3563          "Alternate client and server compiler on compile requests")       \
3564                                                                            \
3565  product_pd(intx, OnStackReplacePercentage,                                \
3566          "NON_TIERED number of method invocations/branches (expressed as %"\
3567          "of CompileThreshold) before (re-)compiling OSR code")            \
3568                                                                            \
3569  product(intx, InterpreterProfilePercentage, 33,                           \
3570          "NON_TIERED number of method invocations/branches (expressed as %"\
3571          "of CompileThreshold) before profiling in the interpreter")       \
3572                                                                            \
3573  develop(intx, MaxRecompilationSearchLength,    10,                        \
3574          "max. # frames to inspect searching for recompilee")              \
3575                                                                            \
3576  develop(intx, MaxInterpretedSearchLength,     3,                          \
3577          "max. # interp. frames to skip when searching for recompilee")    \
3578                                                                            \
3579  develop(intx, DesiredMethodLimit,  8000,                                  \
3580          "desired max. method size (in bytecodes) after inlining")         \
3581                                                                            \
3582  develop(intx, HugeMethodLimit,  8000,                                     \
3583          "don't compile methods larger than this if "                      \
3584          "+DontCompileHugeMethods")                                        \
3585                                                                            \
3586  /* New JDK 1.4 reflection implementation */                               \
3587                                                                            \
3588  develop(bool, UseNewReflection, true,                                     \
3589          "Temporary flag for transition to reflection based on dynamic "   \
3590          "bytecode generation in 1.4; can no longer be turned off in 1.4 " \
3591          "JDK, and is unneeded in 1.3 JDK, but marks most places VM "      \
3592          "changes were needed")                                            \
3593                                                                            \
3594  develop(bool, VerifyReflectionBytecodes, false,                           \
3595          "Force verification of 1.4 reflection bytecodes. Does not work "  \
3596          "in situations like that described in 4486457 or for "            \
3597          "constructors generated for serialization, so can not be enabled "\
3598          "in product.")                                                    \
3599                                                                            \
3600  product(bool, ReflectionWrapResolutionErrors, true,                       \
3601          "Temporary flag for transition to AbstractMethodError wrapped "   \
3602          "in InvocationTargetException. See 6531596")                      \
3603                                                                            \
3604                                                                            \
3605  develop(intx, FastSuperclassLimit, 8,                                     \
3606          "Depth of hardwired instanceof accelerator array")                \
3607                                                                            \
3608  /* Properties for Java libraries  */                                      \
3609                                                                            \
3610  product(intx, MaxDirectMemorySize, -1,                                    \
3611          "Maximum total size of NIO direct-buffer allocations")            \
3612                                                                            \
3613  /* temporary developer defined flags  */                                  \
3614                                                                            \
3615  diagnostic(bool, UseNewCode, false,                                       \
3616          "Testing Only: Use the new version while testing")                \
3617                                                                            \
3618  diagnostic(bool, UseNewCode2, false,                                      \
3619          "Testing Only: Use the new version while testing")                \
3620                                                                            \
3621  diagnostic(bool, UseNewCode3, false,                                      \
3622          "Testing Only: Use the new version while testing")                \
3623                                                                            \
3624  /* flags for performance data collection */                               \
3625                                                                            \
3626  product(bool, UsePerfData, falseInEmbedded,                               \
3627          "Flag to disable jvmstat instrumentation for performance testing" \
3628          "and problem isolation purposes.")                                \
3629                                                                            \
3630  product(bool, PerfDataSaveToFile, false,                                  \
3631          "Save PerfData memory to hsperfdata_<pid> file on exit")          \
3632                                                                            \
3633  product(ccstr, PerfDataSaveFile, NULL,                                    \
3634          "Save PerfData memory to the specified absolute pathname,"        \
3635           "%p in the file name if present will be replaced by pid")        \
3636                                                                            \
3637  product(intx, PerfDataSamplingInterval, 50 /*ms*/,                        \
3638          "Data sampling interval in milliseconds")                         \
3639                                                                            \
3640  develop(bool, PerfTraceDataCreation, false,                               \
3641          "Trace creation of Performance Data Entries")                     \
3642                                                                            \
3643  develop(bool, PerfTraceMemOps, false,                                     \
3644          "Trace PerfMemory create/attach/detach calls")                    \
3645                                                                            \
3646  product(bool, PerfDisableSharedMem, false,                                \
3647          "Store performance data in standard memory")                      \
3648                                                                            \
3649  product(intx, PerfDataMemorySize, 32*K,                                   \
3650          "Size of performance data memory region. Will be rounded "        \
3651          "up to a multiple of the native os page size.")                   \
3652                                                                            \
3653  product(intx, PerfMaxStringConstLength, 1024,                             \
3654          "Maximum PerfStringConstant string length before truncation")     \
3655                                                                            \
3656  product(bool, PerfAllowAtExitRegistration, false,                         \
3657          "Allow registration of atexit() methods")                         \
3658                                                                            \
3659  product(bool, PerfBypassFileSystemCheck, false,                           \
3660          "Bypass Win32 file system criteria checks (Windows Only)")        \
3661                                                                            \
3662  product(intx, UnguardOnExecutionViolation, 0,                             \
3663          "Unguard page and retry on no-execute fault (Win32 only)"         \
3664          "0=off, 1=conservative, 2=aggressive")                            \
3665                                                                            \
3666  /* Serviceability Support */                                              \
3667                                                                            \
3668  product(bool, ManagementServer, false,                                    \
3669          "Create JMX Management Server")                                   \
3670                                                                            \
3671  product(bool, DisableAttachMechanism, false,                              \
3672         "Disable mechanism that allows tools to attach to this VM")        \
3673                                                                            \
3674  product(bool, StartAttachListener, false,                                 \
3675          "Always start Attach Listener at VM startup")                     \
3676                                                                            \
3677  manageable(bool, PrintConcurrentLocks, false,                             \
3678          "Print java.util.concurrent locks in thread dump")                \
3679                                                                            \
3680  product(bool, TransmitErrorReport, false,                                 \
3681          "Enable error report transmission on erroneous termination")      \
3682                                                                            \
3683  product(ccstr, ErrorReportServer, NULL,                                   \
3684          "Override built-in error report server address")                  \
3685                                                                            \
3686  /* Shared spaces */                                                       \
3687                                                                            \
3688  product(bool, UseSharedSpaces, true,                                      \
3689          "Use shared spaces in the permanent generation")                  \
3690                                                                            \
3691  product(bool, RequireSharedSpaces, false,                                 \
3692          "Require shared spaces in the permanent generation")              \
3693                                                                            \
3694  product(bool, DumpSharedSpaces, false,                                    \
3695           "Special mode: JVM reads a class list, loads classes, builds "   \
3696            "shared spaces, and dumps the shared spaces to a file to be "   \
3697            "used in future JVM runs.")                                     \
3698                                                                            \
3699  product(bool, PrintSharedSpaces, false,                                   \
3700          "Print usage of shared spaces")                                   \
3701                                                                            \
3702  product(uintx, SharedDummyBlockSize, 512*M,                               \
3703          "Size of dummy block used to shift heap addresses (in bytes)")    \
3704                                                                            \
3705  product(uintx, SharedReadWriteSize,  NOT_LP64(12*M) LP64_ONLY(13*M),      \
3706          "Size of read-write space in permanent generation (in bytes)")    \
3707                                                                            \
3708  product(uintx, SharedReadOnlySize,   10*M,                                \
3709          "Size of read-only space in permanent generation (in bytes)")     \
3710                                                                            \
3711  product(uintx, SharedMiscDataSize,    NOT_LP64(4*M) LP64_ONLY(5*M),       \
3712          "Size of the shared data area adjacent to the heap (in bytes)")   \
3713                                                                            \
3714  product(uintx, SharedMiscCodeSize,    4*M,                                \
3715          "Size of the shared code area adjacent to the heap (in bytes)")   \
3716                                                                            \
3717  diagnostic(bool, SharedOptimizeColdStart, true,                           \
3718          "At dump time, order shared objects to achieve better "           \
3719          "cold startup time.")                                             \
3720                                                                            \
3721  develop(intx, SharedOptimizeColdStartPolicy, 2,                           \
3722          "Reordering policy for SharedOptimizeColdStart "                  \
3723          "0=favor classload-time locality, 1=balanced, "                   \
3724          "2=favor runtime locality")                                       \
3725                                                                            \
3726  diagnostic(bool, SharedSkipVerify, false,                                 \
3727          "Skip assert() and verify() which page-in unwanted shared "       \
3728          "objects. ")                                                      \
3729                                                                            \
3730  diagnostic(bool, EnableInvokeDynamic, true,                               \
3731          "support JSR 292 (method handles, invokedynamic, "                \
3732          "anonymous classes")                                              \
3733                                                                            \
3734  product(bool, AnonymousClasses, false,                                    \
3735          "support sun.misc.Unsafe.defineAnonymousClass (deprecated)")      \
3736                                                                            \
3737  experimental(bool, EnableMethodHandles, false,                            \
3738          "support method handles (deprecated)")                            \
3739                                                                            \
3740  diagnostic(intx, MethodHandlePushLimit, 3,                                \
3741          "number of additional stack slots a method handle may push")      \
3742                                                                            \
3743  diagnostic(bool, PrintMethodHandleStubs, false,                           \
3744          "Print generated stub code for method handles")                   \
3745                                                                            \
3746  develop(bool, TraceMethodHandles, false,                                  \
3747          "trace internal method handle operations")                        \
3748                                                                            \
3749  diagnostic(bool, VerifyMethodHandles, trueInDebug,                        \
3750          "perform extra checks when constructing method handles")          \
3751                                                                            \
3752  diagnostic(bool, OptimizeMethodHandles, true,                             \
3753          "when constructing method handles, try to improve them")          \
3754                                                                            \
3755  develop(bool, StressMethodHandleWalk, false,                              \
3756          "Process all method handles with MethodHandleWalk")               \
3757                                                                            \
3758  diagnostic(bool, UseRicochetFrames, true,                                 \
3759          "use ricochet stack frames for method handle combination, "       \
3760          "if the platform supports them")                                  \
3761                                                                            \
3762  experimental(bool, TrustFinalNonStaticFields, false,                      \
3763          "trust final non-static declarations for constant folding")       \
3764                                                                            \
3765  experimental(bool, AllowInvokeGeneric, false,                             \
3766          "accept MethodHandle.invoke and MethodHandle.invokeGeneric "      \
3767          "as equivalent methods")                                          \
3768                                                                            \
3769  develop(bool, TraceInvokeDynamic, false,                                  \
3770          "trace internal invoke dynamic operations")                       \
3771                                                                            \
3772  diagnostic(bool, PauseAtStartup,      false,                              \
3773          "Causes the VM to pause at startup time and wait for the pause "  \
3774          "file to be removed (default: ./vm.paused.<pid>)")                \
3775                                                                            \
3776  diagnostic(ccstr, PauseAtStartupFile, NULL,                               \
3777          "The file to create and for whose removal to await when pausing " \
3778          "at startup. (default: ./vm.paused.<pid>)")                       \
3779                                                                            \
3780  diagnostic(bool, PauseAtExit, false,                                      \
3781          "Pause and wait for keypress on exit if a debugger is attached")  \
3782                                                                            \
3783  product(bool, ExtendedDTraceProbes,    false,                             \
3784          "Enable performance-impacting dtrace probes")                     \
3785                                                                            \
3786  product(bool, DTraceMethodProbes, false,                                  \
3787          "Enable dtrace probes for method-entry and method-exit")          \
3788                                                                            \
3789  product(bool, DTraceAllocProbes, false,                                   \
3790          "Enable dtrace probes for object allocation")                     \
3791                                                                            \
3792  product(bool, DTraceMonitorProbes, false,                                 \
3793          "Enable dtrace probes for monitor events")                        \
3794                                                                            \
3795  product(bool, RelaxAccessControlCheck, false,                             \
3796          "Relax the access control checks in the verifier")                \
3797                                                                            \
3798  diagnostic(bool, PrintDTraceDOF, false,                                   \
3799             "Print the DTrace DOF passed to the system for JSDT probes")   \
3800                                                                            \
3801  product(uintx, StringTableSize, 1009,                                     \
3802          "Number of buckets in the interned String table")                 \
3803                                                                            \
3804  product(bool, UseVMInterruptibleIO, false,                                \
3805          "(Unstable, Solaris-specific) Thread interrupt before or with "   \
3806          "EINTR for I/O operations results in OS_INTRPT. The default value"\
3807          " of this flag is true for JDK 6 and earliers")
3808
3809/*
3810 *  Macros for factoring of globals
3811 */
3812
3813// Interface macros
3814#define DECLARE_PRODUCT_FLAG(type, name, value, doc)    extern "C" type name;
3815#define DECLARE_PD_PRODUCT_FLAG(type, name, doc)        extern "C" type name;
3816#define DECLARE_DIAGNOSTIC_FLAG(type, name, value, doc) extern "C" type name;
3817#define DECLARE_EXPERIMENTAL_FLAG(type, name, value, doc) extern "C" type name;
3818#define DECLARE_MANAGEABLE_FLAG(type, name, value, doc) extern "C" type name;
3819#define DECLARE_PRODUCT_RW_FLAG(type, name, value, doc) extern "C" type name;
3820#ifdef PRODUCT
3821#define DECLARE_DEVELOPER_FLAG(type, name, value, doc)  const type name = value;
3822#define DECLARE_PD_DEVELOPER_FLAG(type, name, doc)      const type name = pd_##name;
3823#define DECLARE_NOTPRODUCT_FLAG(type, name, value, doc)
3824#else
3825#define DECLARE_DEVELOPER_FLAG(type, name, value, doc)  extern "C" type name;
3826#define DECLARE_PD_DEVELOPER_FLAG(type, name, doc)      extern "C" type name;
3827#define DECLARE_NOTPRODUCT_FLAG(type, name, value, doc)  extern "C" type name;
3828#endif
3829// Special LP64 flags, product only needed for now.
3830#ifdef _LP64
3831#define DECLARE_LP64_PRODUCT_FLAG(type, name, value, doc) extern "C" type name;
3832#else
3833#define DECLARE_LP64_PRODUCT_FLAG(type, name, value, doc) const type name = value;
3834#endif // _LP64
3835
3836// Implementation macros
3837#define MATERIALIZE_PRODUCT_FLAG(type, name, value, doc)   type name = value;
3838#define MATERIALIZE_PD_PRODUCT_FLAG(type, name, doc)       type name = pd_##name;
3839#define MATERIALIZE_DIAGNOSTIC_FLAG(type, name, value, doc) type name = value;
3840#define MATERIALIZE_EXPERIMENTAL_FLAG(type, name, value, doc) type name = value;
3841#define MATERIALIZE_MANAGEABLE_FLAG(type, name, value, doc) type name = value;
3842#define MATERIALIZE_PRODUCT_RW_FLAG(type, name, value, doc) type name = value;
3843#ifdef PRODUCT
3844#define MATERIALIZE_DEVELOPER_FLAG(type, name, value, doc) /* flag name is constant */
3845#define MATERIALIZE_PD_DEVELOPER_FLAG(type, name, doc)     /* flag name is constant */
3846#define MATERIALIZE_NOTPRODUCT_FLAG(type, name, value, doc)
3847#else
3848#define MATERIALIZE_DEVELOPER_FLAG(type, name, value, doc) type name = value;
3849#define MATERIALIZE_PD_DEVELOPER_FLAG(type, name, doc)     type name = pd_##name;
3850#define MATERIALIZE_NOTPRODUCT_FLAG(type, name, value, doc) type name = value;
3851#endif
3852#ifdef _LP64
3853#define MATERIALIZE_LP64_PRODUCT_FLAG(type, name, value, doc)   type name = value;
3854#else
3855#define MATERIALIZE_LP64_PRODUCT_FLAG(type, name, value, doc) /* flag is constant */
3856#endif // _LP64
3857
3858RUNTIME_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_DIAGNOSTIC_FLAG, DECLARE_EXPERIMENTAL_FLAG, DECLARE_NOTPRODUCT_FLAG, DECLARE_MANAGEABLE_FLAG, DECLARE_PRODUCT_RW_FLAG, DECLARE_LP64_PRODUCT_FLAG)
3859
3860RUNTIME_OS_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_DIAGNOSTIC_FLAG, DECLARE_NOTPRODUCT_FLAG)
3861
3862#endif // SHARE_VM_RUNTIME_GLOBALS_HPP
3863