globals.hpp revision 2657:baf763f388e6
1107553Sdes/*
2107553Sdes * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
399059Sdes * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4157020Sdes *
5157020Sdes * This code is free software; you can redistribute it and/or modify it
6157020Sdes * under the terms of the GNU General Public License version 2 only, as
7124244Sdes * published by the Free Software Foundation.
8157020Sdes *
9157020Sdes * This code is distributed in the hope that it will be useful, but WITHOUT
1099059Sdes * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11157020Sdes * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12157020Sdes * version 2 for more details (a copy is included in the LICENSE file that
1399059Sdes * accompanied this code).
14157020Sdes *
15157020Sdes * You should have received a copy of the GNU General Public License version
1699059Sdes * 2 along with this work; if not, write to the Free Software Foundation,
17157020Sdes * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18157020Sdes *
19124244Sdes * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20157020Sdes * or visit www.oracle.com if you need additional information or have any
21157020Sdes * questions.
22124244Sdes *
2399059Sdes */
2499059Sdes
2599059Sdes#ifndef SHARE_VM_RUNTIME_GLOBALS_HPP
26157020Sdes#define SHARE_VM_RUNTIME_GLOBALS_HPP
27157020Sdes
2899059Sdes#include "utilities/debug.hpp"
29157020Sdes#ifdef TARGET_ARCH_x86
30157020Sdes# include "globals_x86.hpp"
3199059Sdes#endif
32157020Sdes#ifdef TARGET_ARCH_sparc
33157020Sdes# include "globals_sparc.hpp"
34157020Sdes#endif
3599059Sdes#ifdef TARGET_ARCH_zero
3699059Sdes# include "globals_zero.hpp"
3799059Sdes#endif
3899059Sdes#ifdef TARGET_ARCH_arm
39157020Sdes# include "globals_arm.hpp"
40157020Sdes#endif
4199059Sdes#ifdef TARGET_ARCH_ppc
42157020Sdes# include "globals_ppc.hpp"
43157020Sdes#endif
4499059Sdes#ifdef TARGET_OS_FAMILY_linux
45157020Sdes# include "globals_linux.hpp"
46157020Sdes#endif
4799059Sdes#ifdef TARGET_OS_FAMILY_solaris
48157020Sdes# include "globals_solaris.hpp"
49157020Sdes#endif
50124244Sdes#ifdef TARGET_OS_FAMILY_windows
51157020Sdes# include "globals_windows.hpp"
52157020Sdes#endif
53128462Sdes#ifdef TARGET_OS_ARCH_linux_x86
54157020Sdes# include "globals_linux_x86.hpp"
55157020Sdes#endif
5699059Sdes#ifdef TARGET_OS_ARCH_linux_sparc
57157020Sdes# include "globals_linux_sparc.hpp"
58157020Sdes#endif
5999059Sdes#ifdef TARGET_OS_ARCH_linux_zero
60157020Sdes# include "globals_linux_zero.hpp"
61157020Sdes#endif
6299059Sdes#ifdef TARGET_OS_ARCH_solaris_x86
63157020Sdes# include "globals_solaris_x86.hpp"
64157020Sdes#endif
6599059Sdes#ifdef TARGET_OS_ARCH_solaris_sparc
66157020Sdes# include "globals_solaris_sparc.hpp"
67157020Sdes#endif
6899059Sdes#ifdef TARGET_OS_ARCH_windows_x86
69157020Sdes# include "globals_windows_x86.hpp"
70157020Sdes#endif
7199059Sdes#ifdef TARGET_OS_ARCH_linux_arm
72157020Sdes# include "globals_linux_arm.hpp"
73157020Sdes#endif
7499059Sdes#ifdef TARGET_OS_ARCH_linux_ppc
75157020Sdes# include "globals_linux_ppc.hpp"
76157020Sdes#endif
7799059Sdes#ifdef COMPILER1
78157020Sdes#ifdef TARGET_ARCH_x86
79157020Sdes# include "c1_globals_x86.hpp"
8099059Sdes#endif
81157020Sdes#ifdef TARGET_ARCH_sparc
82157020Sdes# include "c1_globals_sparc.hpp"
8399059Sdes#endif
84157020Sdes#ifdef TARGET_ARCH_arm
85157020Sdes# include "c1_globals_arm.hpp"
8699059Sdes#endif
8799059Sdes#ifdef TARGET_ARCH_ppc
8899059Sdes# include "c1_globals_ppc.hpp"
8999059Sdes#endif
9099059Sdes#ifdef TARGET_OS_FAMILY_linux
9199059Sdes# include "c1_globals_linux.hpp"
9299059Sdes#endif
9399059Sdes#ifdef TARGET_OS_FAMILY_solaris
9499059Sdes# include "c1_globals_solaris.hpp"
9599059Sdes#endif
96157020Sdes#ifdef TARGET_OS_FAMILY_windows
97157020Sdes# include "c1_globals_windows.hpp"
9899059Sdes#endif
9999059Sdes#endif
10099059Sdes#ifdef COMPILER2
10199059Sdes#ifdef TARGET_ARCH_x86
10299059Sdes# include "c2_globals_x86.hpp"
10399059Sdes#endif
10499059Sdes#ifdef TARGET_ARCH_sparc
10599059Sdes# include "c2_globals_sparc.hpp"
10699059Sdes#endif
10799059Sdes#ifdef TARGET_ARCH_arm
10899059Sdes# include "c2_globals_arm.hpp"
10999059Sdes#endif
11099059Sdes#ifdef TARGET_OS_FAMILY_linux
11199059Sdes# include "c2_globals_linux.hpp"
11299059Sdes#endif
11399059Sdes#ifdef TARGET_OS_FAMILY_solaris
114157020Sdes# include "c2_globals_solaris.hpp"
115157020Sdes#endif
11699059Sdes#ifdef TARGET_OS_FAMILY_windows
117157020Sdes# include "c2_globals_windows.hpp"
118157020Sdes#endif
11999059Sdes#endif
120157020Sdes#ifdef SHARK
121157020Sdes#ifdef TARGET_ARCH_zero
12299059Sdes# include "shark_globals_zero.hpp"
12399059Sdes#endif
124159458Sdes#endif
12599059Sdes
12699059Sdes#if !defined(COMPILER1) && !defined(COMPILER2) && !defined(SHARK)
127159458Sdesdefine_pd_global(bool, BackgroundCompilation,        false);
12899059Sdesdefine_pd_global(bool, UseTLAB,                      false);
129157020Sdesdefine_pd_global(bool, CICompileOSR,                 false);
130157020Sdesdefine_pd_global(bool, UseTypeProfile,               false);
13199059Sdesdefine_pd_global(bool, UseOnStackReplacement,        false);
132157020Sdesdefine_pd_global(bool, InlineIntrinsics,             false);
133157020Sdesdefine_pd_global(bool, PreferInterpreterNativeStubs, true);
134124244Sdesdefine_pd_global(bool, ProfileInterpreter,           false);
135157020Sdesdefine_pd_global(bool, ProfileTraps,                 false);
136157020Sdesdefine_pd_global(bool, TieredCompilation,            false);
13799059Sdes
138157020Sdesdefine_pd_global(intx, CompileThreshold,             0);
139157020Sdesdefine_pd_global(intx, BackEdgeThreshold,            0);
14099059Sdes
141157020Sdesdefine_pd_global(intx, OnStackReplacePercentage,     0);
142157020Sdesdefine_pd_global(bool, ResizeTLAB,                   false);
14399059Sdesdefine_pd_global(intx, FreqInlineSize,               0);
144157020Sdesdefine_pd_global(intx, InlineSmallCode,              0);
145157020Sdesdefine_pd_global(intx, NewSizeThreadIncrease,        4*K);
14699059Sdesdefine_pd_global(intx, InlineClassNatives,           true);
147157020Sdesdefine_pd_global(intx, InlineUnsafeOps,              true);
148157020Sdesdefine_pd_global(intx, InitialCodeCacheSize,         160*K);
14999059Sdesdefine_pd_global(intx, ReservedCodeCacheSize,        32*M);
150157020Sdesdefine_pd_global(intx, CodeCacheExpansionSize,       32*K);
151157020Sdesdefine_pd_global(intx, CodeCacheMinBlockLength,      1);
15299059Sdesdefine_pd_global(uintx,PermSize,    ScaleForWordSize(4*M));
153157020Sdesdefine_pd_global(uintx,MaxPermSize, ScaleForWordSize(64*M));
154157020Sdesdefine_pd_global(bool, NeverActAsServerClassMachine, true);
15599059Sdesdefine_pd_global(uint64_t,MaxRAM,                    1ULL*G);
156157020Sdes#define CI_COMPILER_COUNT 0
157157020Sdes#else
15899059Sdes
159149754Sdes#ifdef COMPILER2
160149754Sdes#define CI_COMPILER_COUNT 2
161149754Sdes#else
162107553Sdes#define CI_COMPILER_COUNT 1
16399059Sdes#endif // COMPILER2
16499059Sdes
165113912Sdes#endif // no compilers
166113912Sdes
167113912Sdes
168157020Sdes// string type aliases used only in this file
169157020Sdestypedef const char* ccstr;
170157020Sdestypedef const char* ccstrlist;   // represents string arguments which accumulate
171107553Sdes
17299059Sdesenum FlagValueOrigin {
17399059Sdes  DEFAULT          = 0,
174107553Sdes  COMMAND_LINE     = 1,
17599059Sdes  ENVIRON_VAR      = 2,
17699059Sdes  CONFIG_FILE      = 3,
177147006Sdes  MANAGEMENT       = 4,
178147006Sdes  ERGONOMIC        = 5,
179147006Sdes  ATTACH_ON_DEMAND = 6,
180107553Sdes  INTERNAL         = 99
18199059Sdes};
18299059Sdes
183107553Sdesstruct Flag {
18499059Sdes  const char *type;
18599059Sdes  const char *name;
186157020Sdes  void*       addr;
187157020Sdes
188157020Sdes  NOT_PRODUCT(const char *doc;)
189137019Sdes
190137019Sdes  const char *kind;
191137019Sdes  FlagValueOrigin origin;
192124244Sdes
193147006Sdes  // points to all Flags static array
194124244Sdes  static Flag *flags;
195157020Sdes
196157020Sdes  // number of flags
197157020Sdes  static size_t numFlags;
198162860Sdes
199162860Sdes  static Flag* find_flag(char* name, size_t length);
200162860Sdes
201107553Sdes  bool is_bool() const        { return strcmp(type, "bool") == 0; }
20299059Sdes  bool get_bool() const       { return *((bool*) addr); }
20399059Sdes  void set_bool(bool value)   { *((bool*) addr) = value; }
204157020Sdes
205157020Sdes  bool is_intx()  const       { return strcmp(type, "intx")  == 0; }
206157020Sdes  intx get_intx() const       { return *((intx*) addr); }
207157020Sdes  void set_intx(intx value)   { *((intx*) addr) = value; }
208157020Sdes
209157020Sdes  bool is_uintx() const       { return strcmp(type, "uintx") == 0; }
210147006Sdes  uintx get_uintx() const     { return *((uintx*) addr); }
211147006Sdes  void set_uintx(uintx value) { *((uintx*) addr) = value; }
212147006Sdes
213147006Sdes  bool is_uint64_t() const          { return strcmp(type, "uint64_t") == 0; }
214162860Sdes  uint64_t get_uint64_t() const     { return *((uint64_t*) addr); }
215162860Sdes  void set_uint64_t(uint64_t value) { *((uint64_t*) addr) = value; }
216162860Sdes
217162860Sdes  bool is_double() const        { return strcmp(type, "double") == 0; }
218137019Sdes  double get_double() const     { return *((double*) addr); }
219137019Sdes  void set_double(double value) { *((double*) addr) = value; }
220137019Sdes
221137019Sdes  bool is_ccstr() const          { return strcmp(type, "ccstr") == 0 || strcmp(type, "ccstrlist") == 0; }
222147006Sdes  bool ccstr_accumulates() const { return strcmp(type, "ccstrlist") == 0; }
223147006Sdes  ccstr get_ccstr() const     { return *((ccstr*) addr); }
224147006Sdes  void set_ccstr(ccstr value) { *((ccstr*) addr) = value; }
225147006Sdes
226147006Sdes  bool is_unlocker() const;
227147006Sdes  bool is_unlocked() const;
228147006Sdes  bool is_writeable() const;
229147006Sdes  bool is_external() const;
230147006Sdes
231147006Sdes  void print_on(outputStream* st, bool withComments = false );
232147006Sdes  void print_as_flag(outputStream* st);
233147006Sdes};
234162860Sdes
235162860Sdes// debug flags control various aspects of the VM and are global accessible
236162860Sdes
237162860Sdes// use FlagSetting to temporarily change some debug flag
238147006Sdes// e.g. FlagSetting fs(DebugThisAndThat, true);
239147006Sdes// restored to previous value upon leaving scope
240147006Sdesclass FlagSetting {
241147006Sdes  bool val;
242147006Sdes  bool* flag;
243147006Sdes public:
244147006Sdes  FlagSetting(bool& fl, bool newValue) { flag = &fl; val = fl; fl = newValue; }
245147006Sdes  ~FlagSetting()                       { *flag = val; }
246162860Sdes};
247162860Sdes
248162860Sdes
249162860Sdesclass CounterSetting {
250162860Sdes  intx* counter;
251162860Sdes public:
252162860Sdes  CounterSetting(intx* cnt) { counter = cnt; (*counter)++; }
253162860Sdes  ~CounterSetting()         { (*counter)--; }
254149754Sdes};
255149754Sdes
256149754Sdes
257149754Sdesclass IntFlagSetting {
258149754Sdes  intx val;
259149754Sdes  intx* flag;
260149754Sdes public:
261149754Sdes  IntFlagSetting(intx& fl, intx newValue) { flag = &fl; val = fl; fl = newValue; }
262157020Sdes  ~IntFlagSetting()                       { *flag = val; }
263162860Sdes};
264157020Sdes
265157020Sdes
266157020Sdesclass DoubleFlagSetting {
267157020Sdes  double val;
268137019Sdes  double* flag;
269137019Sdes public:
270137019Sdes  DoubleFlagSetting(double& fl, double newValue) { flag = &fl; val = fl; fl = newValue; }
271137019Sdes  ~DoubleFlagSetting()                           { *flag = val; }
272137019Sdes};
273137019Sdes
274107553Sdes
27599059Sdesclass CommandLineFlags {
27699059Sdes public:
277107553Sdes  static bool boolAt(char* name, size_t len, bool* value);
27899059Sdes  static bool boolAt(char* name, bool* value)      { return boolAt(name, strlen(name), value); }
27999059Sdes  static bool boolAtPut(char* name, size_t len, bool* value, FlagValueOrigin origin);
280107553Sdes  static bool boolAtPut(char* name, bool* value, FlagValueOrigin origin)   { return boolAtPut(name, strlen(name), value, origin); }
28199319Sdes
28299059Sdes  static bool intxAt(char* name, size_t len, intx* value);
283107553Sdes  static bool intxAt(char* name, intx* value)      { return intxAt(name, strlen(name), value); }
28499059Sdes  static bool intxAtPut(char* name, size_t len, intx* value, FlagValueOrigin origin);
28599059Sdes  static bool intxAtPut(char* name, intx* value, FlagValueOrigin origin)   { return intxAtPut(name, strlen(name), value, origin); }
286157020Sdes
287157020Sdes  static bool uintxAt(char* name, size_t len, uintx* value);
288157020Sdes  static bool uintxAt(char* name, uintx* value)    { return uintxAt(name, strlen(name), value); }
289162860Sdes  static bool uintxAtPut(char* name, size_t len, uintx* value, FlagValueOrigin origin);
290162860Sdes  static bool uintxAtPut(char* name, uintx* value, FlagValueOrigin origin) { return uintxAtPut(name, strlen(name), value, origin); }
291162860Sdes
292157020Sdes  static bool uint64_tAt(char* name, size_t len, uint64_t* value);
293157020Sdes  static bool uint64_tAt(char* name, uint64_t* value) { return uint64_tAt(name, strlen(name), value); }
294157020Sdes  static bool uint64_tAtPut(char* name, size_t len, uint64_t* value, FlagValueOrigin origin);
295107553Sdes  static bool uint64_tAtPut(char* name, uint64_t* value, FlagValueOrigin origin) { return uint64_tAtPut(name, strlen(name), value, origin); }
29699059Sdes
29799059Sdes  static bool doubleAt(char* name, size_t len, double* value);
298107553Sdes  static bool doubleAt(char* name, double* value)    { return doubleAt(name, strlen(name), value); }
29999059Sdes  static bool doubleAtPut(char* name, size_t len, double* value, FlagValueOrigin origin);
30099059Sdes  static bool doubleAtPut(char* name, double* value, FlagValueOrigin origin) { return doubleAtPut(name, strlen(name), value, origin); }
301162860Sdes
302162860Sdes  static bool ccstrAt(char* name, size_t len, ccstr* value);
303162860Sdes  static bool ccstrAt(char* name, ccstr* value)    { return ccstrAt(name, strlen(name), value); }
304162860Sdes  static bool ccstrAtPut(char* name, size_t len, ccstr* value, FlagValueOrigin origin);
305162860Sdes  static bool ccstrAtPut(char* name, ccstr* value, FlagValueOrigin origin) { return ccstrAtPut(name, strlen(name), value, origin); }
306162860Sdes
307124244Sdes  // Returns false if name is not a command line flag.
308124244Sdes  static bool wasSetOnCmdline(const char* name, bool* value);
309124244Sdes  static void printSetFlags();
310107553Sdes
31199059Sdes  static void printFlags(bool withComments = false );
31299059Sdes
313107553Sdes  static void verify() PRODUCT_RETURN;
31499059Sdes};
31599059Sdes
316107553Sdes// use this for flags that are true by default in the debug version but
31799059Sdes// false in the optimized version, and vice versa
31899059Sdes#ifdef ASSERT
319107553Sdes#define trueInDebug  true
32099059Sdes#define falseInDebug false
32199059Sdes#else
322107553Sdes#define trueInDebug  false
32399059Sdes#define falseInDebug true
32499059Sdes#endif
325147006Sdes
326147006Sdes// use this for flags that are true per default in the product build
327147006Sdes// but false in development builds, and vice versa
328147006Sdes#ifdef PRODUCT
329147006Sdes#define trueInProduct  true
330147006Sdes#define falseInProduct false
331107553Sdes#else
33299059Sdes#define trueInProduct  false
33399059Sdes#define falseInProduct true
334107553Sdes#endif
33599059Sdes
33699059Sdes// use this for flags that are true per default in the tiered build
337107553Sdes// but false in non-tiered builds, and vice versa
33899059Sdes#ifdef TIERED
33999059Sdes#define  trueInTiered true
340107553Sdes#define falseInTiered false
34199059Sdes#else
34299059Sdes#define  trueInTiered false
343107553Sdes#define falseInTiered true
34499059Sdes#endif
34599059Sdes
346107553Sdes#ifdef JAVASE_EMBEDDED
347107553Sdes#define falseInEmbedded false
34899059Sdes#else
349157020Sdes#define falseInEmbedded true
350157020Sdes#endif
351157020Sdes
352157020Sdes// develop flags are settable / visible only during development and are constant in the PRODUCT version
353157020Sdes// product flags are always settable / visible
354157020Sdes// notproduct flags are settable / visible only during development and are not declared in the PRODUCT version
355107553Sdes
356107553Sdes// A flag must be declared with one of the following types:
357107553Sdes// bool, intx, uintx, ccstr.
358107553Sdes// The type "ccstr" is an alias for "const char*" and is used
35999059Sdes// only in this file, because the macrology requires single-token type names.
36099059Sdes
361107553Sdes// Note: Diagnostic options not meant for VM tuning or for product modes.
36299059Sdes// They are to be used for VM quality assurance or field diagnosis
36399059Sdes// of VM bugs.  They are hidden so that users will not be encouraged to
364157020Sdes// try them as if they were VM ordinary execution options.  However, they
365157020Sdes// are available in the product version of the VM.  Under instruction
366157020Sdes// from support engineers, VM customers can turn them on to collect
367107553Sdes// diagnostic information about VM problems.  To use a VM diagnostic
368124244Sdes// option, you must first specify +UnlockDiagnosticVMOptions.
36999059Sdes// (This master switch also affects the behavior of -Xprintflags.)
370162860Sdes//
371162860Sdes// experimental flags are in support of features that are not
372162860Sdes//    part of the officially supported product, but are available
373107553Sdes//    for experimenting with. They could, for example, be performance
37499059Sdes//    features that may not have undergone full or rigorous QA, but which may
37599059Sdes//    help performance in some cases and released for experimentation
376107553Sdes//    by the community of users and developers. This flag also allows one to
37799059Sdes//    be able to build a fully supported product that nonetheless also
37899059Sdes//    ships with some unsupported, lightly tested, experimental features.
379107553Sdes//    Like the UnlockDiagnosticVMOptions flag above, there is a corresponding
38099059Sdes//    UnlockExperimentalVMOptions flag, which allows the control and
38199059Sdes//    modification of the experimental flags.
382107553Sdes//
38399059Sdes// Nota bene: neither diagnostic nor experimental options should be used casually,
38499059Sdes//    and they are not supported on production loads, except under explicit
385107553Sdes//    direction from support engineers.
38699319Sdes//
38799059Sdes// manageable flags are writeable external product flags.
388107553Sdes//    They are dynamically writeable through the JDK management interface
38999059Sdes//    (com.sun.management.HotSpotDiagnosticMXBean API) and also through JConsole.
39099059Sdes//    These flags are external exported interface (see CCC).  The list of
391107553Sdes//    manageable flags can be queried programmatically through the management
39299059Sdes//    interface.
39399059Sdes//
394107553Sdes//    A flag can be made as "manageable" only if
39599059Sdes//    - the flag is defined in a CCC as an external exported interface.
39699059Sdes//    - the VM implementation supports dynamic setting of the flag.
397162860Sdes//      This implies that the VM must *always* query the flag variable
398162860Sdes//      and not reuse state related to the flag state at any given time.
399162860Sdes//    - you want the flag to be queried programmatically by the customers.
400107553Sdes//
40199059Sdes// product_rw flags are writeable internal product flags.
40299059Sdes//    They are like "manageable" flags but for internal/private use.
403107553Sdes//    The list of product_rw flags are internal/private flags which
40499059Sdes//    may be changed/removed in a future release.  It can be set
40599059Sdes//    through the management interface to get/set value
406126279Sdes//    when the name of flag is supplied.
407126279Sdes//
408126279Sdes//    A flag can be made as "product_rw" only if
409126279Sdes//    - the VM implementation supports dynamic setting of the flag.
410126279Sdes//      This implies that the VM must *always* query the flag variable
411126279Sdes//      and not reuse state related to the flag state at any given time.
412126279Sdes//
413126279Sdes// Note that when there is a need to support develop flags to be writeable,
414126279Sdes// it can be done in the same way as product_rw.
415126279Sdes
416126279Sdes#define RUNTIME_FLAGS(develop, develop_pd, product, product_pd, diagnostic, experimental, notproduct, manageable, product_rw, lp64_product) \
417126279Sdes                                                                            \
418124244Sdes  lp64_product(bool, UseCompressedOops, false,                              \
419147006Sdes            "Use 32-bit object references in 64-bit VM. "                   \
420124244Sdes            "lp64_product means flag is always constant in 32 bit VM")      \
421126279Sdes                                                                            \
422126279Sdes  notproduct(bool, CheckCompressedOops, true,                               \
423126279Sdes            "generate checks in encoding/decoding code in debug VM")        \
424157020Sdes                                                                            \
425157020Sdes  product_pd(uintx, HeapBaseMinAddress,                                     \
426157020Sdes            "OS specific low limit for heap base address")                  \
427157020Sdes                                                                            \
428157055Sdes  diagnostic(bool, PrintCompressedOopsMode, false,                          \
429157020Sdes            "Print compressed oops base address and encoding mode")         \
430157020Sdes                                                                            \
431157020Sdes  lp64_product(intx, ObjectAlignmentInBytes, 8,                             \
432157020Sdes          "Default object alignment in bytes, 8 is minimum")                \
433149754Sdes                                                                            \
434149754Sdes  /* UseMembar is theoretically a temp flag used for memory barrier         \
435149754Sdes   * removal testing.  It was supposed to be removed before FCS but has     \
436107553Sdes   * been re-added (see 6401008) */                                         \
437107553Sdes  product_pd(bool, UseMembar,                                               \
438107553Sdes          "(Unstable) Issues membars on thread state transitions")          \
439157020Sdes                                                                            \
440157020Sdes  /* Temp PPC Flag to allow disabling the use of lwsync on ppc platforms    \
441157020Sdes   * that don't support it.  This will be replaced by processor detection   \
442157020Sdes   * logic.                                                                 \
443157020Sdes   */                                                                       \
444157020Sdes  product(bool, UsePPCLWSYNC, true,                                         \
445107553Sdes          "Use lwsync instruction if true, else use slower sync")           \
44699059Sdes                                                                            \
44799059Sdes  develop(bool, CleanChunkPoolAsync, falseInEmbedded,                       \
448107553Sdes          "Whether to clean the chunk pool asynchronously")                 \
44999059Sdes                                                                            \
45099059Sdes  /* Temporary: See 6948537 */                                             \
451107553Sdes  experimental(bool, UseMemSetInBOT, true,                                  \
45299059Sdes          "(Unstable) uses memset in BOT updates in GC code")               \
45399059Sdes                                                                            \
454107553Sdes  diagnostic(bool, UnlockDiagnosticVMOptions, trueInDebug,                  \
45599059Sdes          "Enable normal processing of flags relating to field diagnostics")\
45699059Sdes                                                                            \
457157020Sdes  experimental(bool, UnlockExperimentalVMOptions, false,                    \
458157020Sdes          "Enable normal processing of flags relating to experimental features")\
459157020Sdes                                                                            \
460107553Sdes  product(bool, JavaMonitorsInStackTrace, true,                             \
461162953Sdes          "Print info. about Java monitor locks when the stacks are dumped")\
46299059Sdes                                                                            \
463157020Sdes  product_pd(bool, UseLargePages,                                           \
464157020Sdes          "Use large page memory")                                          \
465157020Sdes                                                                            \
466147006Sdes  product_pd(bool, UseLargePagesIndividualAllocation,                       \
467147006Sdes          "Allocate large pages individually for better affinity")          \
468147006Sdes                                                                            \
469107553Sdes  develop(bool, LargePagesIndividualAllocationInjectError, false,           \
47099059Sdes          "Fail large pages individual allocation")                         \
47199059Sdes                                                                            \
472147006Sdes  develop(bool, TracePageSizes, false,                                      \
473147006Sdes          "Trace page size selection and usage.")                           \
474147006Sdes                                                                            \
475107553Sdes  product(bool, UseNUMA, false,                                             \
476107553Sdes          "Use NUMA if available")                                          \
477107553Sdes                                                                            \
478107553Sdes  product(bool, ForceNUMA, false,                                           \
47999059Sdes          "Force NUMA optimizations on single-node/UMA systems")            \
48099059Sdes                                                                            \
481107553Sdes  product(intx, NUMAChunkResizeWeight, 20,                                  \
48299059Sdes          "Percentage (0-100) used to weight the current sample when "      \
48399059Sdes          "computing exponentially decaying average for "                   \
484149754Sdes          "AdaptiveNUMAChunkSizing")                                        \
485149754Sdes                                                                            \
486149754Sdes  product(intx, NUMASpaceResizeRate, 1*G,                                   \
487107553Sdes          "Do not reallocate more that this amount per collection")         \
48899059Sdes                                                                            \
48999059Sdes  product(bool, UseAdaptiveNUMAChunkSizing, true,                           \
490107553Sdes          "Enable adaptive chunk sizing for NUMA")                          \
49199059Sdes                                                                            \
49299059Sdes  product(bool, NUMAStats, false,                                           \
493107553Sdes          "Print NUMA stats in detailed heap information")                  \
49499059Sdes                                                                            \
49599059Sdes  product(intx, NUMAPageScanRate, 256,                                      \
496107553Sdes          "Maximum number of pages to include in the page scan procedure")  \
49799059Sdes                                                                            \
49899059Sdes  product_pd(bool, NeedsDeoptSuspend,                                       \
499107553Sdes          "True for register window machines (sparc/ia64)")                 \
50099059Sdes                                                                            \
50199059Sdes  product(intx, UseSSE, 99,                                                 \
502107553Sdes          "Highest supported SSE instructions set on x86/x64")              \
503107553Sdes                                                                            \
504107553Sdes  product(intx, UseVIS, 99,                                                 \
505107553Sdes          "Highest supported VIS instructions set on Sparc")                \
50699059Sdes                                                                            \
50799059Sdes  product(uintx, LargePageSizeInBytes, 0,                                   \
508107553Sdes          "Large page size (0 to let VM choose the page size")              \
50999059Sdes                                                                            \
51099059Sdes  product(uintx, LargePageHeapSizeThreshold, 128*M,                         \
511157020Sdes          "Use large pages if max heap is at least this big")               \
512157020Sdes                                                                            \
513157020Sdes  product(bool, ForceTimeHighResolution, false,                             \
514157020Sdes          "Using high time resolution(For Win32 only)")                     \
515157020Sdes                                                                            \
516157020Sdes  develop(bool, TraceItables, false,                                        \
517107553Sdes          "Trace initialization and use of itables")                        \
51899059Sdes                                                                            \
51999059Sdes  develop(bool, TracePcPatching, false,                                     \
520107553Sdes          "Trace usage of frame::patch_pc")                                 \
52199059Sdes                                                                            \
52299059Sdes  develop(bool, TraceJumps, false,                                          \
523107553Sdes          "Trace assembly jumps in thread ring buffer")                     \
52499059Sdes                                                                            \
52599059Sdes  develop(bool, TraceRelocator, false,                                      \
526107553Sdes          "Trace the bytecode relocator")                                   \
52799059Sdes                                                                            \
52899059Sdes  develop(bool, TraceLongCompiles, false,                                   \
529107553Sdes          "Print out every time compilation is longer than "                \
53099059Sdes          "a given threashold")                                             \
53199059Sdes                                                                            \
532157020Sdes  develop(bool, SafepointALot, false,                                       \
533157020Sdes          "Generates a lot of safepoints. Works with "                      \
534157020Sdes          "GuaranteedSafepointInterval")                                    \
535157020Sdes                                                                            \
536157020Sdes  product_pd(bool, BackgroundCompilation,                                   \
537157020Sdes          "A thread requesting compilation is not blocked during "          \
538107553Sdes          "compilation")                                                    \
53999059Sdes                                                                            \
54099059Sdes  product(bool, PrintVMQWaitTime, false,                                    \
541107553Sdes          "Prints out the waiting time in VM operation queue")              \
54299059Sdes                                                                            \
54399059Sdes  develop(bool, BailoutToInterpreterForThrows, false,                       \
544157020Sdes          "Compiled methods which throws/catches exceptions will be "       \
545157020Sdes          "deopt and intp.")                                                \
546157020Sdes                                                                            \
547107553Sdes  develop(bool, NoYieldsInMicrolock, false,                                 \
54899059Sdes          "Disable yields in microlock")                                    \
54999059Sdes                                                                            \
550107553Sdes  develop(bool, TraceOopMapGeneration, false,                               \
551162953Sdes          "Shows oopmap generation")                                        \
55299059Sdes                                                                            \
553107553Sdes  product(bool, MethodFlushing, true,                                       \
55499059Sdes          "Reclamation of zombie and not-entrant methods")                  \
55599059Sdes                                                                            \
556107553Sdes  develop(bool, VerifyStack, false,                                         \
55799059Sdes          "Verify stack of each thread when it is entering a runtime call") \
55899059Sdes                                                                            \
559157020Sdes  develop(bool, ForceUnreachable, false,                                    \
560157020Sdes          "(amd64) Make all non code cache addresses to be unreachable with rip-rel forcing use of 64bit literal fixups") \
561157020Sdes                                                                            \
562157020Sdes  notproduct(bool, StressDerivedPointers, false,                            \
563157020Sdes          "Force scavenge when a derived pointers is detected on stack "    \
564157020Sdes          "after rtm call")                                                 \
565137019Sdes                                                                            \
566137019Sdes  develop(bool, TraceDerivedPointers, false,                                \
567137019Sdes          "Trace traversal of derived pointers on stack")                   \
568107553Sdes                                                                            \
56999059Sdes  notproduct(bool, TraceCodeBlobStacks, false,                              \
57099059Sdes          "Trace stack-walk of codeblobs")                                  \
571107553Sdes                                                                            \
57299059Sdes  product(bool, PrintJNIResolving, false,                                   \
57399059Sdes          "Used to implement -v:jni")                                       \
574162860Sdes                                                                            \
575162860Sdes  notproduct(bool, PrintRewrites, false,                                    \
57699059Sdes          "Print methods that are being rewritten")                         \
577157020Sdes                                                                            \
578157020Sdes  product(bool, UseInlineCaches, true,                                      \
579157020Sdes          "Use Inline Caches for virtual calls ")                           \
580107553Sdes                                                                            \
58199059Sdes  develop(bool, InlineArrayCopy, true,                                      \
58299059Sdes          "inline arraycopy native that is known to be part of "            \
583113912Sdes          "base library DLL")                                               \
584113912Sdes                                                                            \
585113912Sdes  develop(bool, InlineObjectHash, true,                                     \
586107553Sdes          "inline Object::hashCode() native that is known to be part "      \
58799059Sdes          "of base library DLL")                                            \
58899059Sdes                                                                            \
589157020Sdes  develop(bool, InlineObjectCopy, true,                                     \
590157020Sdes          "inline Object.clone and Arrays.copyOf[Range] intrinsics")        \
591157020Sdes                                                                            \
592157020Sdes  develop(bool, InlineNatives, true,                                        \
593124244Sdes          "inline natives that are known to be part of base library DLL")   \
594124244Sdes                                                                            \
595124244Sdes  develop(bool, InlineMathNatives, true,                                    \
596107553Sdes          "inline SinD, CosD, etc.")                                        \
59799059Sdes                                                                            \
59899059Sdes  develop(bool, InlineClassNatives, true,                                   \
599157020Sdes          "inline Class.isInstance, etc")                                   \
600157020Sdes                                                                            \
601157020Sdes  develop(bool, InlineAtomicLong, true,                                     \
602157020Sdes          "inline sun.misc.AtomicLong")                                     \
603157020Sdes                                                                            \
604157020Sdes  develop(bool, InlineThreadNatives, true,                                  \
605107553Sdes          "inline Thread.currentThread, etc")                               \
60699059Sdes                                                                            \
60799059Sdes  develop(bool, InlineReflectionGetCallerClass, true,                       \
608126279Sdes          "inline sun.reflect.Reflection.getCallerClass(), known to be part "\
609126279Sdes          "of base library DLL")                                            \
610126279Sdes                                                                            \
611124244Sdes  develop(bool, InlineUnsafeOps, true,                                      \
612124244Sdes          "inline memory ops (native methods) from sun.misc.Unsafe")        \
613124244Sdes                                                                            \
614107553Sdes  develop(bool, ConvertCmpD2CmpF, true,                                     \
61599059Sdes          "Convert cmpD to cmpF when one input is constant in float range") \
61699059Sdes                                                                            \
617157020Sdes  develop(bool, ConvertFloat2IntClipping, true,                             \
618157020Sdes          "Convert float2int clipping idiom to integer clipping")           \
619157020Sdes                                                                            \
620157020Sdes  develop(bool, SpecialStringCompareTo, true,                               \
621157020Sdes          "special version of string compareTo")                            \
622157020Sdes                                                                            \
623128462Sdes  develop(bool, SpecialStringIndexOf, true,                                 \
624128462Sdes          "special version of string indexOf")                              \
625128462Sdes                                                                            \
626157020Sdes  develop(bool, SpecialStringEquals, true,                                  \
627157020Sdes          "special version of string equals")                               \
628157020Sdes                                                                            \
629113912Sdes  develop(bool, SpecialArraysEquals, true,                                  \
630113912Sdes          "special version of Arrays.equals(char[],char[])")                \
631113912Sdes                                                                            \
632107553Sdes  product(bool, UseSSE42Intrinsics, false,                                  \
63399059Sdes          "SSE4.2 versions of intrinsics")                                  \
63499059Sdes                                                                            \
635107553Sdes  product(bool, UseCondCardMark, false,                                     \
63699319Sdes          "Check for already marked card before updating card table")       \
63799059Sdes                                                                            \
638107553Sdes  develop(bool, TraceCallFixup, false,                                      \
63999059Sdes          "traces all call fixups")                                         \
64099059Sdes                                                                            \
641157020Sdes  develop(bool, DeoptimizeALot, false,                                      \
642157020Sdes          "deoptimize at every exit from the runtime system")               \
643157020Sdes                                                                            \
644157020Sdes  notproduct(ccstrlist, DeoptimizeOnlyAt, "",                               \
645157020Sdes          "a comma separated list of bcis to deoptimize at")                \
646157020Sdes                                                                            \
647157020Sdes  product(bool, DeoptimizeRandom, false,                                    \
648157020Sdes          "deoptimize random frames on random exit from the runtime system")\
649157020Sdes                                                                            \
650107553Sdes  notproduct(bool, ZombieALot, false,                                       \
65199059Sdes          "creates zombies (non-entrant) at exit from the runt. system")    \
65299059Sdes                                                                            \
653107553Sdes  product(bool, UnlinkSymbolsALot, false,                                   \
65499059Sdes          "unlink unreferenced symbols from the symbol table at safepoints")\
65599059Sdes                                                                            \
656107553Sdes  notproduct(bool, WalkStackALot, false,                                    \
65799059Sdes          "trace stack (no print) at every exit from the runtime system")   \
65899059Sdes                                                                            \
659107553Sdes  develop(bool, Debugging, false,                                           \
66099059Sdes          "set when executing debug methods in debug.ccp "                  \
66199059Sdes          "(to prevent triggering assertions)")                             \
662107553Sdes                                                                            \
66399059Sdes  notproduct(bool, StrictSafepointChecks, trueInDebug,                      \
66499059Sdes          "Enable strict checks that safepoints cannot happen for threads " \
665107553Sdes          "that used No_Safepoint_Verifier")                                \
66699059Sdes                                                                            \
66799059Sdes  notproduct(bool, VerifyLastFrame, false,                                  \
668157020Sdes          "Verify oops on last frame on entry to VM")                       \
669157020Sdes                                                                            \
670157020Sdes  develop(bool, TraceHandleAllocation, false,                               \
671107553Sdes          "Prints out warnings when suspicious many handles are allocated") \
67299059Sdes                                                                            \
67399059Sdes  product(bool, UseCompilerSafepoints, true,                                \
674157020Sdes          "Stop at safepoints in compiled code")                            \
675157020Sdes                                                                            \
676157020Sdes  product(bool, UseSplitVerifier, true,                                     \
677107553Sdes          "use split verifier with StackMapTable attributes")               \
67899059Sdes                                                                            \
67999059Sdes  product(bool, FailOverToOldVerifier, true,                                \
680107553Sdes          "fail over to old verifier when split verifier fails")            \
68199059Sdes                                                                            \
68299059Sdes  develop(bool, ShowSafepointMsgs, false,                                   \
683124244Sdes          "Show msg. about safepoint synch.")                               \
684124244Sdes                                                                            \
685124244Sdes  product(bool, SafepointTimeout, false,                                    \
686107553Sdes          "Time out and warn or fail after SafepointTimeoutDelay "          \
68799059Sdes          "milliseconds if failed to reach safepoint")                      \
68899059Sdes                                                                            \
689107553Sdes  develop(bool, DieOnSafepointTimeout, false,                               \
69099059Sdes          "Die upon failure to reach safepoint (see SafepointTimeout)")     \
69199059Sdes                                                                            \
692107553Sdes  /* 50 retries * (5 * current_retry_count) millis = ~6.375 seconds */      \
69399059Sdes  /* typically, at most a few retries are needed */                         \
69499059Sdes  product(intx, SuspendRetryCount, 50,                                      \
695107553Sdes          "Maximum retry count for an external suspend request")            \
69699059Sdes                                                                            \
69799059Sdes  product(intx, SuspendRetryDelay, 5,                                       \
698107553Sdes          "Milliseconds to delay per retry (* current_retry_count)")        \
69999059Sdes                                                                            \
70099059Sdes  product(bool, AssertOnSuspendWaitFailure, false,                          \
701107553Sdes          "Assert/Guarantee on external suspend wait failure")              \
70299059Sdes                                                                            \
70399059Sdes  product(bool, TraceSuspendWaitFailures, false,                            \
704107553Sdes          "Trace external suspend wait failures")                           \
70599059Sdes                                                                            \
70699059Sdes  product(bool, MaxFDLimit, true,                                           \
707107553Sdes          "Bump the number of file descriptors to max in solaris.")         \
70899059Sdes                                                                            \
70999059Sdes  notproduct(bool, LogEvents, trueInDebug,                                  \
710107553Sdes          "Enable Event log")                                               \
71199059Sdes                                                                            \
71299059Sdes  product(bool, BytecodeVerificationRemote, true,                           \
713124244Sdes          "Enables the Java bytecode verifier for remote classes")          \
714124244Sdes                                                                            \
715124244Sdes  product(bool, BytecodeVerificationLocal, false,                           \
716107553Sdes          "Enables the Java bytecode verifier for local classes")           \
71799059Sdes                                                                            \
71899059Sdes  develop(bool, ForceFloatExceptions, trueInDebug,                          \
719124244Sdes          "Force exceptions on FP stack under/overflow")                    \
720124244Sdes                                                                            \
721124244Sdes  develop(bool, SoftMatchFailure, trueInProduct,                            \
722107553Sdes          "If the DFA fails to match a node, print a message and bail out") \
72399059Sdes                                                                            \
72499059Sdes  develop(bool, VerifyStackAtCalls, false,                                  \
725107553Sdes          "Verify that the stack pointer is unchanged after calls")         \
72699059Sdes                                                                            \
72799059Sdes  develop(bool, TraceJavaAssertions, false,                                 \
728107553Sdes          "Trace java language assertions")                                 \
72999059Sdes                                                                            \
73099059Sdes  notproduct(bool, CheckAssertionStatusDirectives, false,                   \
731107553Sdes          "temporary - see javaClasses.cpp")                                \
73299319Sdes                                                                            \
73399059Sdes  notproduct(bool, PrintMallocFree, false,                                  \
734107553Sdes          "Trace calls to C heap malloc/free allocation")                   \
73599059Sdes                                                                            \
73699059Sdes  product(bool, PrintOopAddress, false,                                     \
737107553Sdes          "Always print the location of the oop")                           \
73899059Sdes                                                                            \
73999059Sdes  notproduct(bool, VerifyCodeCacheOften, false,                             \
740162860Sdes          "Verify compiled-code cache often")                               \
741162860Sdes                                                                            \
742162860Sdes  develop(bool, ZapDeadCompiledLocals, false,                               \
743162860Sdes          "Zap dead locals in compiler frames")                             \
744162860Sdes                                                                            \
745162860Sdes  notproduct(bool, ZapDeadLocalsOld, false,                                 \
746107553Sdes          "Zap dead locals (old version, zaps all frames when "             \
74799059Sdes          "entering the VM")                                                \
74899059Sdes                                                                            \
749107553Sdes  notproduct(bool, CheckOopishValues, false,                                \
75099059Sdes          "Warn if value contains oop ( requires ZapDeadLocals)")           \
75199059Sdes                                                                            \
752107553Sdes  develop(bool, UseMallocOnly, false,                                       \
75399059Sdes          "use only malloc/free for allocation (no resource area/arena)")   \
75499059Sdes                                                                            \
755107553Sdes  develop(bool, PrintMalloc, false,                                         \
75699059Sdes          "print all malloc/free calls")                                    \
75799059Sdes                                                                            \
758157020Sdes  develop(bool, PrintMallocStatistics, false,                               \
759157020Sdes          "print malloc/free statistics")                                   \
760157020Sdes                                                                            \
761107553Sdes  develop(bool, ZapResourceArea, trueInDebug,                               \
76299059Sdes          "Zap freed resource/arena space with 0xABABABAB")                 \
76399059Sdes                                                                            \
764107553Sdes  notproduct(bool, ZapVMHandleArea, trueInDebug,                            \
76599059Sdes          "Zap freed VM handle space with 0xBCBCBCBC")                      \
76699059Sdes                                                                            \
767147006Sdes  develop(bool, ZapJNIHandleArea, trueInDebug,                              \
768147006Sdes          "Zap freed JNI handle space with 0xFEFEFEFE")                     \
769147006Sdes                                                                            \
770157020Sdes  notproduct(bool, ZapStackSegments, trueInDebug,                           \
771157020Sdes             "Zap allocated/freed Stack segments with 0xFADFADED")          \
772157020Sdes                                                                            \
773157020Sdes  develop(bool, ZapUnusedHeapArea, trueInDebug,                             \
774157020Sdes          "Zap unused heap space with 0xBAADBABE")                          \
775157020Sdes                                                                            \
776107553Sdes  develop(bool, TraceZapUnusedHeapArea, false,                              \
77799059Sdes          "Trace zapping of unused heap space")                             \
77899059Sdes                                                                            \
779107553Sdes  develop(bool, CheckZapUnusedHeapArea, false,                              \
78099059Sdes          "Check zapping of unused heap space")                             \
78199059Sdes                                                                            \
782107553Sdes  develop(bool, ZapFillerObjects, trueInDebug,                              \
783162953Sdes          "Zap filler objects with 0xDEAFBABE")                             \
78499059Sdes                                                                            \
785149754Sdes  develop(bool, PrintVMMessages, true,                                      \
786149754Sdes          "Print vm messages on console")                                   \
787149754Sdes                                                                            \
788107553Sdes  product(bool, PrintGCApplicationConcurrentTime, false,                    \
78999059Sdes          "Print the time the application has been running")                \
79099059Sdes                                                                            \
791107553Sdes  product(bool, PrintGCApplicationStoppedTime, false,                       \
79299059Sdes          "Print the time the application has been stopped")                \
79399059Sdes                                                                            \
794157020Sdes  notproduct(uintx, ErrorHandlerTest, 0,                                    \
795157020Sdes          "If > 0, provokes an error after VM initialization; the value"    \
796157020Sdes          "determines which error to provoke.  See test_error_handler()"    \
797107553Sdes          "in debug.cpp.")                                                  \
79899059Sdes                                                                            \
79999059Sdes  develop(bool, Verbose, false,                                             \
800107553Sdes          "Prints additional debugging information from other modes")       \
80199059Sdes                                                                            \
80299059Sdes  develop(bool, PrintMiscellaneous, false,                                  \
803107553Sdes          "Prints uncategorized debugging information (requires +Verbose)") \
80499059Sdes                                                                            \
80599059Sdes  develop(bool, WizardMode, false,                                          \
806107553Sdes          "Prints much more debugging information")                         \
80799059Sdes                                                                            \
80899059Sdes  product(bool, ShowMessageBoxOnError, false,                               \
809107553Sdes          "Keep process alive on VM fatal error")                           \
81099059Sdes                                                                            \
81199059Sdes  product(bool, CreateMinidumpOnCrash, false,                               \
812113912Sdes          "Create minidump on VM fatal error")                              \
813113912Sdes                                                                            \
814113912Sdes  product_pd(bool, UseOSErrorReporting,                                     \
815107553Sdes          "Let VM fatal error propagate to the OS (ie. WER on Windows)")    \
81699059Sdes                                                                            \
81799059Sdes  product(bool, SuppressFatalErrorMessage, false,                           \
818149754Sdes          "Do NO Fatal Error report [Avoid deadlock]")                      \
819149754Sdes                                                                            \
820149754Sdes  product(ccstrlist, OnError, "",                                           \
821149754Sdes          "Run user-defined commands on fatal error; see VMError.cpp "      \
822157020Sdes          "for examples")                                                   \
823149754Sdes                                                                            \
824126279Sdes  product(ccstrlist, OnOutOfMemoryError, "",                                \
825126279Sdes          "Run user-defined commands on first java.lang.OutOfMemoryError")  \
826126279Sdes                                                                            \
827157020Sdes  manageable(bool, HeapDumpBeforeFullGC, false,                             \
828157020Sdes          "Dump heap to file before any major stop-world GC")               \
829157020Sdes                                                                            \
830157020Sdes  manageable(bool, HeapDumpAfterFullGC, false,                              \
831157020Sdes          "Dump heap to file after any major stop-world GC")                \
832157020Sdes                                                                            \
833157020Sdes  manageable(bool, HeapDumpOnOutOfMemoryError, false,                       \
834157020Sdes          "Dump heap to file when java.lang.OutOfMemoryError is thrown")    \
835157020Sdes                                                                            \
836157020Sdes  manageable(ccstr, HeapDumpPath, NULL,                                     \
837157020Sdes          "When HeapDumpOnOutOfMemoryError is on, the path (filename or"    \
838157020Sdes          "directory) of the dump file (defaults to java_pid<pid>.hprof"    \
839107553Sdes          "in the working directory)")                                      \
84099059Sdes                                                                            \
84199059Sdes  develop(uintx, SegmentedHeapDumpThreshold, 2*G,                           \
842113912Sdes          "Generate a segmented heap dump (JAVA PROFILE 1.0.2 format) "     \
843113912Sdes          "when the heap usage is larger than this")                        \
844113912Sdes                                                                            \
845157020Sdes  develop(uintx, HeapDumpSegmentSize, 1*G,                                  \
846157020Sdes          "Approximate segment size when generating a segmented heap dump") \
847157020Sdes                                                                            \
848107553Sdes  develop(bool, BreakAtWarning, false,                                      \
84999059Sdes          "Execute breakpoint upon encountering VM warning")                \
85099059Sdes                                                                            \
851157020Sdes  product_pd(bool, UseVectoredExceptions,                                   \
852157020Sdes          "Temp Flag - Use Vectored Exceptions rather than SEH (Windows Only)") \
853157020Sdes                                                                            \
854124244Sdes  develop(bool, TraceVMOperation, false,                                    \
855124244Sdes          "Trace vm operations")                                            \
856124244Sdes                                                                            \
857107553Sdes  develop(bool, UseFakeTimers, false,                                       \
85899059Sdes          "Tells whether the VM should use system time or a fake timer")    \
85999059Sdes                                                                            \
860107553Sdes  diagnostic(bool, LogCompilation, false,                                   \
86199059Sdes          "Log compilation activity in detail to hotspot.log or LogFile")   \
86299059Sdes                                                                            \
863107553Sdes  product(bool, PrintCompilation, false,                                    \
86499059Sdes          "Print compilations")                                             \
86599059Sdes                                                                            \
866137019Sdes  diagnostic(bool, TraceNMethodInstalls, false,                             \
867137019Sdes             "Trace nmethod intallation")                                   \
868137019Sdes                                                                            \
869157020Sdes  diagnostic(intx, ScavengeRootsInCode, 1,                                  \
870157020Sdes             "0: do not allow scavengable oops in the code cache; "         \
871157020Sdes             "1: allow scavenging from the code cache; "                    \
872107553Sdes             "2: emit as many constants as the compiler can see")           \
87399059Sdes                                                                            \
87499059Sdes  diagnostic(bool, TraceOSRBreakpoint, false,                               \
875137019Sdes             "Trace OSR Breakpoint ")                                       \
876137019Sdes                                                                            \
877137019Sdes  diagnostic(bool, TraceCompileTriggered, false,                            \
878157020Sdes             "Trace compile triggered")                                     \
879157020Sdes                                                                            \
880157020Sdes  diagnostic(bool, TraceTriggers, false,                                    \
881128462Sdes             "Trace triggers")                                              \
882128462Sdes                                                                            \
883128462Sdes  product(bool, AlwaysRestoreFPU, false,                                    \
884113912Sdes          "Restore the FPU control word after every JNI call (expensive)")  \
885113912Sdes                                                                            \
886113912Sdes  notproduct(bool, PrintCompilation2, false,                                \
887126279Sdes          "Print additional statistics per compilation")                    \
888126279Sdes                                                                            \
889126279Sdes  diagnostic(bool, PrintAdapterHandlers, false,                             \
890107553Sdes          "Print code generated for i2c/c2i adapters")                      \
89199059Sdes                                                                            \
89299059Sdes  develop(bool, VerifyAdapterSharing, false,                                \
893107553Sdes          "Verify that the code for shared adapters is the equivalent")     \
89499059Sdes                                                                            \
89599059Sdes  diagnostic(bool, PrintAssembly, false,                                    \
896126279Sdes          "Print assembly code (using external disassembler.so)")           \
897126279Sdes                                                                            \
898126279Sdes  diagnostic(ccstr, PrintAssemblyOptions, NULL,                             \
899107553Sdes          "Options string passed to disassembler.so")                       \
90099059Sdes                                                                            \
90199059Sdes  diagnostic(bool, PrintNMethods, false,                                    \
902124244Sdes          "Print assembly code for nmethods when generated")                \
903124244Sdes                                                                            \
904124244Sdes  diagnostic(bool, PrintNativeNMethods, false,                              \
905149754Sdes          "Print assembly code for native nmethods when generated")         \
906149754Sdes                                                                            \
907149754Sdes  develop(bool, PrintDebugInfo, false,                                      \
908107553Sdes          "Print debug information for all nmethods when generated")        \
90999059Sdes                                                                            \
91099059Sdes  develop(bool, PrintRelocations, false,                                    \
911113912Sdes          "Print relocation information for all nmethods when generated")   \
912113912Sdes                                                                            \
913113912Sdes  develop(bool, PrintDependencies, false,                                   \
914107553Sdes          "Print dependency information for all nmethods when generated")   \
91599059Sdes                                                                            \
91699059Sdes  develop(bool, PrintExceptionHandlers, false,                              \
917107553Sdes          "Print exception handler tables for all nmethods when generated") \
918162953Sdes                                                                            \
91999059Sdes  develop(bool, InterceptOSException, false,                                \
920107553Sdes          "Starts debugger when an implicit OS (e.g., NULL) "               \
92199059Sdes          "exception happens")                                              \
92299059Sdes                                                                            \
923107553Sdes  notproduct(bool, PrintCodeCache, false,                                   \
92499059Sdes          "Print the compiled_code cache when exiting")                     \
92599059Sdes                                                                            \
926124244Sdes  develop(bool, PrintCodeCache2, false,                                     \
927124244Sdes          "Print detailed info on the compiled_code cache when exiting")    \
928124244Sdes                                                                            \
929107553Sdes  diagnostic(bool, PrintStubCode, false,                                    \
93099059Sdes          "Print generated stub code")                                      \
93199059Sdes                                                                            \
932107553Sdes  product(bool, StackTraceInThrowable, true,                                \
93399059Sdes          "Collect backtrace in throwable when exception happens")          \
93499059Sdes                                                                            \
935157020Sdes  product(bool, OmitStackTraceInFastThrow, true,                            \
936157055Sdes          "Omit backtraces for some 'hot' exceptions in optimized code")    \
937157020Sdes                                                                            \
938157020Sdes  product(bool, ProfilerPrintByteCodeStatistics, false,                     \
939157020Sdes          "Prints byte code statictics when dumping profiler output")       \
940157020Sdes                                                                            \
941107553Sdes  product(bool, ProfilerRecordPC, false,                                    \
942107553Sdes          "Collects tick for each 16 byte interval of compiled code")       \
943107553Sdes                                                                            \
944107553Sdes  product(bool, ProfileVM, false,                                           \
94599059Sdes          "Profiles ticks that fall within VM (either in the VM Thread "    \
94699059Sdes          "or VM code called through stubs)")                               \
947107553Sdes                                                                            \
94899059Sdes  product(bool, ProfileIntervals, false,                                    \
94999059Sdes          "Prints profiles for each interval (see ProfileIntervalsTicks)")  \
950157020Sdes                                                                            \
951157020Sdes  notproduct(bool, ProfilerCheckIntervals, false,                           \
952157020Sdes          "Collect and print info on spacing of profiler ticks")            \
953157020Sdes                                                                            \
954157020Sdes  develop(bool, PrintJVMWarnings, false,                                    \
955157020Sdes          "Prints warnings for unimplemented JVM functions")                \
956157020Sdes                                                                            \
957157020Sdes  product(bool, PrintWarnings, true,                                        \
958157020Sdes          "Prints JVM warnings to output stream")                           \
959157020Sdes                                                                            \
960157020Sdes  notproduct(uintx, WarnOnStalledSpinLock, 0,                               \
961157020Sdes          "Prints warnings for stalled SpinLocks")                          \
962157020Sdes                                                                            \
963157020Sdes  develop(bool, InitializeJavaLangSystem, true,                             \
964157020Sdes          "Initialize java.lang.System - turn off for individual "          \
965107553Sdes          "method debugging")                                               \
96699059Sdes                                                                            \
96799059Sdes  develop(bool, InitializeJavaLangString, true,                             \
968128462Sdes          "Initialize java.lang.String - turn off for individual "          \
969128462Sdes          "method debugging")                                               \
970128462Sdes                                                                            \
971157020Sdes  develop(bool, InitializeJavaLangExceptionsErrors, true,                   \
972157020Sdes          "Initialize various error and exception classes - turn off for "  \
973157020Sdes          "individual method debugging")                                    \
974107553Sdes                                                                            \
97599059Sdes  product(bool, RegisterFinalizersAtInit, true,                             \
97699059Sdes          "Register finalizable objects at end of Object.<init> or "        \
977126279Sdes          "after allocation")                                               \
978126279Sdes                                                                            \
979126279Sdes  develop(bool, RegisterReferences, true,                                   \
980107553Sdes          "Tells whether the VM should register soft/weak/final/phantom "   \
98199059Sdes          "references")                                                     \
98299059Sdes                                                                            \
983107553Sdes  develop(bool, IgnoreRewrites, false,                                      \
98499059Sdes          "Supress rewrites of bytecodes in the oopmap generator. "         \
98599059Sdes          "This is unsafe!")                                                \
986107553Sdes                                                                            \
98799059Sdes  develop(bool, PrintCodeCacheExtension, false,                             \
98899059Sdes          "Print extension of code cache")                                  \
989107553Sdes                                                                            \
99099059Sdes  develop(bool, UsePrivilegedStack, true,                                   \
99199059Sdes          "Enable the security JVM functions")                              \
992107553Sdes                                                                            \
99399059Sdes  develop(bool, IEEEPrecision, true,                                        \
99499059Sdes          "Enables IEEE precision (for INTEL only)")                        \
995107553Sdes                                                                            \
99699059Sdes  develop(bool, ProtectionDomainVerification, true,                         \
99799059Sdes          "Verifies protection domain before resolution in system "         \
998107553Sdes          "dictionary")                                                     \
99999059Sdes                                                                            \
100099059Sdes  product(bool, ClassUnloading, true,                                       \
1001107553Sdes          "Do unloading of classes")                                        \
100299059Sdes                                                                            \
100399059Sdes  diagnostic(bool, LinkWellKnownClasses, false,                             \
1004157020Sdes          "Resolve a well known class as soon as its name is seen")         \
1005157020Sdes                                                                            \
1006157020Sdes  develop(bool, DisableStartThread, false,                                  \
1007157020Sdes          "Disable starting of additional Java threads "                    \
1008157020Sdes          "(for debugging only)")                                           \
1009157020Sdes                                                                            \
1010157020Sdes  develop(bool, MemProfiling, false,                                        \
1011157020Sdes          "Write memory usage profiling to log file")                       \
1012157020Sdes                                                                            \
1013157020Sdes  notproduct(bool, PrintSystemDictionaryAtExit, false,                      \
1014157020Sdes          "Prints the system dictionary at exit")                           \
1015157020Sdes                                                                            \
1016157020Sdes  diagnostic(bool, UnsyncloadClass, false,                                  \
1017157020Sdes          "Unstable: VM calls loadClass unsynchronized. Custom "            \
1018157020Sdes          "class loader  must call VM synchronized for findClass "          \
1019157020Sdes          "and defineClass.")                                               \
1020157020Sdes                                                                            \
1021157020Sdes  product(bool, AlwaysLockClassLoader, false,                               \
1022107553Sdes          "Require the VM to acquire the class loader lock before calling " \
102399059Sdes          "loadClass() even for class loaders registering "                 \
102499059Sdes          "as parallel capable")                                            \
1025124244Sdes                                                                            \
1026124244Sdes  product(bool, AllowParallelDefineClass, false,                            \
1027124244Sdes          "Allow parallel defineClass requests for class loaders "          \
1028107553Sdes          "registering as parallel capable")                                \
102999059Sdes                                                                            \
103099059Sdes  product(bool, MustCallLoadClassInternal, false,                           \
1031107553Sdes          "Call loadClassInternal() rather than loadClass()")               \
103299059Sdes                                                                            \
103399059Sdes  product_pd(bool, DontYieldALot,                                           \
1034124244Sdes          "Throw away obvious excess yield calls (for SOLARIS only)")       \
1035126279Sdes                                                                            \
1036124244Sdes  product_pd(bool, ConvertSleepToYield,                                     \
1037107553Sdes          "Converts sleep(0) to thread yield "                              \
103899059Sdes          "(may be off for SOLARIS to improve GUI)")                        \
103999059Sdes                                                                            \
1040124244Sdes  product(bool, ConvertYieldToSleep, false,                                 \
1041126279Sdes          "Converts yield to a sleep of MinSleepInterval to simulate Win32 "\
1042124244Sdes          "behavior (SOLARIS only)")                                        \
1043107553Sdes                                                                            \
104499059Sdes  product(bool, UseBoundThreads, true,                                      \
104599059Sdes          "Bind user level threads to kernel threads (for SOLARIS only)")   \
1046113912Sdes                                                                            \
1047113912Sdes  develop(bool, UseDetachedThreads, true,                                   \
1048113912Sdes          "Use detached threads that are recycled upon termination "        \
1049157020Sdes          "(for SOLARIS only)")                                             \
1050157020Sdes                                                                            \
1051157020Sdes  product(bool, UseLWPSynchronization, true,                                \
1052157020Sdes          "Use LWP-based instead of libthread-based synchronization "       \
1053157020Sdes          "(SPARC only)")                                                   \
1054157020Sdes                                                                            \
1055157020Sdes  product(ccstr, SyncKnobs, NULL,                                           \
1056157020Sdes          "(Unstable) Various monitor synchronization tunables")            \
1057157020Sdes                                                                            \
1058157020Sdes  product(intx, EmitSync, 0,                                                \
1059157020Sdes          "(Unsafe,Unstable) "                                              \
1060157020Sdes          " Controls emission of inline sync fast-path code")               \
1061157020Sdes                                                                            \
1062157020Sdes  product(intx, AlwaysInflate, 0, "(Unstable) Force inflation")             \
1063157020Sdes                                                                            \
1064157020Sdes  product(intx, MonitorBound, 0, "Bound Monitor population")                \
1065157020Sdes                                                                            \
1066157020Sdes  product(bool, MonitorInUseLists, false, "Track Monitors for Deflation")   \
1067157020Sdes                                                                            \
1068157020Sdes  product(intx, Atomics, 0,                                                 \
1069157020Sdes          "(Unsafe,Unstable) Diagnostic - Controls emission of atomics")    \
1070157020Sdes                                                                            \
1071157020Sdes  product(intx, FenceInstruction, 0,                                        \
1072157020Sdes          "(Unsafe,Unstable) Experimental")                                 \
1073157020Sdes                                                                            \
1074157020Sdes  product(intx, SyncFlags, 0, "(Unsafe,Unstable) Experimental Sync flags" ) \
1075157020Sdes                                                                            \
1076157020Sdes  product(intx, SyncVerbose, 0, "(Unstable)" )                              \
1077157020Sdes                                                                            \
1078157020Sdes  product(intx, ClearFPUAtPark, 0, "(Unsafe,Unstable)" )                    \
1079157020Sdes                                                                            \
1080157020Sdes  product(intx, hashCode, 0,                                                \
1081157020Sdes         "(Unstable) select hashCode generation algorithm" )                \
1082157020Sdes                                                                            \
1083157020Sdes  product(intx, WorkAroundNPTLTimedWaitHang, 1,                             \
1084157020Sdes         "(Unstable, Linux-specific)"                                       \
1085157020Sdes         " avoid NPTL-FUTEX hang pthread_cond_timedwait" )                  \
1086149754Sdes                                                                            \
1087149754Sdes  product(bool, FilterSpuriousWakeups, true,                                \
1088149754Sdes          "Prevent spurious or premature wakeups from object.wait "         \
1089149754Sdes          "(Solaris only)")                                                 \
1090149754Sdes                                                                            \
1091149754Sdes  product(intx, NativeMonitorTimeout, -1, "(Unstable)" )                    \
1092157020Sdes  product(intx, NativeMonitorFlags, 0, "(Unstable)" )                       \
1093157020Sdes  product(intx, NativeMonitorSpinLimit, 20, "(Unstable)" )                  \
1094157020Sdes                                                                            \
1095157020Sdes  develop(bool, UsePthreads, false,                                         \
1096157020Sdes          "Use pthread-based instead of libthread-based synchronization "   \
1097157020Sdes          "(SPARC only)")                                                   \
1098157020Sdes                                                                            \
1099157020Sdes  product(bool, AdjustConcurrency, false,                                   \
1100157020Sdes          "call thr_setconcurrency at thread create time to avoid "         \
1101157020Sdes          "LWP starvation on MP systems (For Solaris Only)")                \
1102157020Sdes                                                                            \
1103157020Sdes  develop(bool, UpdateHotSpotCompilerFileOnError, true,                     \
1104157020Sdes          "Should the system attempt to update the compiler file when "     \
1105157020Sdes          "an error occurs?")                                               \
1106157020Sdes                                                                            \
1107157020Sdes  product(bool, ReduceSignalUsage, false,                                   \
1108157020Sdes          "Reduce the use of OS signals in Java and/or the VM")             \
1109157020Sdes                                                                            \
1110157020Sdes  notproduct(bool, ValidateMarkSweep, false,                                \
1111157020Sdes          "Do extra validation during MarkSweep collection")                \
1112157020Sdes                                                                            \
1113157020Sdes  notproduct(bool, RecordMarkSweepCompaction, false,                        \
1114157020Sdes          "Enable GC-to-GC recording and querying of compaction during "    \
1115157020Sdes          "MarkSweep")                                                      \
1116157020Sdes                                                                            \
1117157020Sdes  develop_pd(bool, ShareVtableStubs,                                        \
1118157020Sdes          "Share vtable stubs (smaller code but worse branch prediction")   \
1119157020Sdes                                                                            \
1120157020Sdes  develop(bool, LoadLineNumberTables, true,                                 \
1121157020Sdes          "Tells whether the class file parser loads line number tables")   \
1122157020Sdes                                                                            \
1123157020Sdes  develop(bool, LoadLocalVariableTables, true,                              \
1124157020Sdes          "Tells whether the class file parser loads local variable tables")\
1125157020Sdes                                                                            \
1126149754Sdes  develop(bool, LoadLocalVariableTypeTables, true,                          \
1127162860Sdes          "Tells whether the class file parser loads local variable type tables")\
1128149754Sdes                                                                            \
1129157020Sdes  product(bool, AllowUserSignalHandlers, false,                             \
1130157020Sdes          "Do not complain if the application installs signal handlers "    \
1131157020Sdes          "(Solaris & Linux only)")                                         \
1132157020Sdes                                                                            \
1133157020Sdes  product(bool, UseSignalChaining, true,                                    \
1134157020Sdes          "Use signal-chaining to invoke signal handlers installed "        \
1135157020Sdes          "by the application (Solaris & Linux only)")                      \
1136157020Sdes                                                                            \
1137157020Sdes  product(bool, UseAltSigs, false,                                          \
1138157020Sdes          "Use alternate signals instead of SIGUSR1 & SIGUSR2 for VM "      \
1139162860Sdes          "internal signals (Solaris only)")                                \
1140157020Sdes                                                                            \
1141157020Sdes  product(bool, UseSpinning, false,                                         \
1142157020Sdes          "Use spinning in monitor inflation and before entry")             \
1143157020Sdes                                                                            \
1144157020Sdes  product(bool, PreSpinYield, false,                                        \
1145157020Sdes          "Yield before inner spinning loop")                               \
1146157020Sdes                                                                            \
1147107553Sdes  product(bool, PostSpinYield, true,                                        \
1148157020Sdes          "Yield after inner spinning loop")                                \
1149107553Sdes                                                                            \
1150107553Sdes  product(bool, AllowJNIEnvProxy, false,                                    \
1151147006Sdes          "Allow JNIEnv proxies for jdbx")                                  \
1152107553Sdes                                                                            \
1153107553Sdes  product(bool, JNIDetachReleasesMonitors, true,                            \
1154147006Sdes          "JNI DetachCurrentThread releases monitors owned by thread")      \
1155107553Sdes                                                                            \
1156107553Sdes  product(bool, RestoreMXCSROnJNICalls, false,                              \
1157147006Sdes          "Restore MXCSR when returning from JNI calls")                    \
1158107553Sdes                                                                            \
1159107553Sdes  product(bool, CheckJNICalls, false,                                       \
1160147006Sdes          "Verify all arguments to JNI calls")                              \
1161107553Sdes                                                                            \
1162157020Sdes  product(bool, UseFastJNIAccessors, true,                                  \
1163157020Sdes          "Use optimized versions of Get<Primitive>Field")                  \
1164157020Sdes                                                                            \
1165157020Sdes  product(bool, EagerXrunInit, false,                                       \
1166157020Sdes          "Eagerly initialize -Xrun libraries; allows startup profiling, "  \
1167157020Sdes          " but not all -Xrun libraries may support the state of the VM at this time") \
1168157020Sdes                                                                            \
1169147006Sdes  product(bool, PreserveAllAnnotations, false,                              \
1170147006Sdes          "Preserve RuntimeInvisibleAnnotations as well as RuntimeVisibleAnnotations") \
1171147006Sdes                                                                            \
1172157020Sdes  develop(uintx, PreallocatedOutOfMemoryErrorCount, 4,                      \
1173157020Sdes          "Number of OutOfMemoryErrors preallocated with backtrace")        \
1174157020Sdes                                                                            \
1175157020Sdes  product(bool, LazyBootClassLoader, true,                                  \
1176157020Sdes          "Enable/disable lazy opening of boot class path entries")         \
1177157020Sdes                                                                            \
1178162860Sdes  diagnostic(bool, UseIncDec, true,                                         \
1179162860Sdes          "Use INC, DEC instructions on x86")                               \
1180162860Sdes                                                                            \
1181157020Sdes  product(bool, UseNewLongLShift, false,                                    \
1182157020Sdes          "Use optimized bitwise shift left")                               \
1183157020Sdes                                                                            \
118499059Sdes  product(bool, UseStoreImmI16, true,                                       \
118599059Sdes          "Use store immediate 16-bits value instruction on x86")           \
118699059Sdes                                                                            \
118799059Sdes  product(bool, UseAddressNop, false,                                       \
118899059Sdes          "Use '0F 1F [addr]' NOP instructions on x86 cpus")                \
118999059Sdes                                                                            \
119099059Sdes  product(bool, UseXmmLoadAndClearUpper, true,                              \
119199059Sdes          "Load low part of XMM register and clear upper part")             \
119299059Sdes                                                                            \
119399059Sdes  product(bool, UseXmmRegToRegMoveAll, false,                               \
119499059Sdes          "Copy all XMM register bits when moving value between registers") \
119599059Sdes                                                                            \
119699059Sdes  product(bool, UseXmmI2D, false,                                           \
119799059Sdes          "Use SSE2 CVTDQ2PD instruction to convert Integer to Double")     \
119899059Sdes                                                                            \
1199157020Sdes  product(bool, UseXmmI2F, false,                                           \
1200157020Sdes          "Use SSE2 CVTDQ2PS instruction to convert Integer to Float")      \
1201157020Sdes                                                                            \
1202157020Sdes  product(bool, UseXMMForArrayCopy, false,                                  \
1203157020Sdes          "Use SSE2 MOVQ instruction for Arraycopy")                        \
1204157020Sdes                                                                            \
1205157020Sdes  product(bool, UseUnalignedLoadStores, false,                              \
1206157020Sdes          "Use SSE2 MOVDQU instruction for Arraycopy")                      \
1207157020Sdes                                                                            \
1208157020Sdes  product(bool, UseCBCond, false,                                           \
1209157020Sdes          "Use compare and branch instruction on SPARC")                    \
1210157020Sdes                                                                            \
1211157020Sdes  product(intx, FieldsAllocationStyle, 1,                                   \
1212157020Sdes          "0 - type based with oops first, 1 - with oops last, "            \
1213157020Sdes          "2 - oops in super and sub classes are together")                 \
1214157020Sdes                                                                            \
1215157020Sdes  product(bool, CompactFields, true,                                        \
1216157020Sdes          "Allocate nonstatic fields in gaps between previous fields")      \
1217157020Sdes                                                                            \
1218157020Sdes  notproduct(bool, PrintCompactFieldsSavings, false,                        \
1219157020Sdes          "Print how many words were saved with CompactFields")             \
1220157020Sdes                                                                            \
1221147006Sdes  product(bool, UseBiasedLocking, true,                                     \
1222147006Sdes          "Enable biased locking in JVM")                                   \
1223147006Sdes                                                                            \
1224157020Sdes  product(intx, BiasedLockingStartupDelay, 4000,                            \
1225157020Sdes          "Number of milliseconds to wait before enabling biased locking")  \
1226157020Sdes                                                                            \
1227157020Sdes  diagnostic(bool, PrintBiasedLockingStatistics, false,                     \
1228157020Sdes          "Print statistics of biased locking in JVM")                      \
1229157020Sdes                                                                            \
1230157020Sdes  product(intx, BiasedLockingBulkRebiasThreshold, 20,                       \
1231157020Sdes          "Threshold of number of revocations per type to try to "          \
1232157020Sdes          "rebias all objects in the heap of that type")                    \
1233157020Sdes                                                                            \
1234157020Sdes  product(intx, BiasedLockingBulkRevokeThreshold, 40,                       \
1235157020Sdes          "Threshold of number of revocations per type to permanently "     \
1236157020Sdes          "revoke biases of all objects in the heap of that type")          \
1237157020Sdes                                                                            \
1238157020Sdes  product(intx, BiasedLockingDecayTime, 25000,                              \
1239157020Sdes          "Decay time (in milliseconds) to re-enable bulk rebiasing of a "  \
1240157020Sdes          "type after previous bulk rebias")                                \
1241157020Sdes                                                                            \
1242157020Sdes  develop(bool, JavaObjectsInPerm, false,                                   \
1243157020Sdes          "controls whether Classes and interned Strings are allocated"     \
1244157020Sdes          "in perm.  This purely intended to allow debugging issues"        \
1245107553Sdes          "in production.")                                                 \
1246162953Sdes                                                                            \
124799059Sdes  /* tracing */                                                             \
1248157020Sdes                                                                            \
1249157020Sdes  notproduct(bool, TraceRuntimeCalls, false,                                \
1250157020Sdes          "Trace run-time calls")                                           \
1251162860Sdes                                                                            \
1252162860Sdes  develop(bool, TraceJNICalls, false,                                       \
1253162860Sdes          "Trace JNI calls")                                                \
1254149754Sdes                                                                            \
1255149754Sdes  notproduct(bool, TraceJVMCalls, false,                                    \
1256149754Sdes          "Trace JVM calls")                                                \
1257157020Sdes                                                                            \
1258157020Sdes  product(ccstr, TraceJVMTI, NULL,                                          \
1259157020Sdes          "Trace flags for JVMTI functions and events")                     \
1260157020Sdes                                                                            \
1261157020Sdes  /* This option can change an EMCP method into an obsolete method. */      \
1262157020Sdes  /* This can affect tests that except specific methods to be EMCP. */      \
1263147006Sdes  /* This option should be used with caution. */                            \
1264147006Sdes  product(bool, StressLdcRewrite, false,                                    \
1265147006Sdes          "Force ldc -> ldc_w rewrite during RedefineClasses")              \
1266147006Sdes                                                                            \
1267147006Sdes  product(intx, TraceRedefineClasses, 0,                                    \
1268147006Sdes          "Trace level for JVMTI RedefineClasses")                          \
1269147006Sdes                                                                            \
1270157020Sdes  develop(bool, StressMethodComparator, false,                              \
1271147006Sdes          "run the MethodComparator on all loaded methods")                 \
1272157020Sdes                                                                            \
1273157020Sdes  /* change to false by default sometime after Mustang */                   \
1274157020Sdes  product(bool, VerifyMergedCPBytecodes, true,                              \
1275162860Sdes          "Verify bytecodes after RedefineClasses constant pool merging")   \
1276162860Sdes                                                                            \
1277162860Sdes  develop(bool, TraceJNIHandleAllocation, false,                            \
1278157020Sdes          "Trace allocation/deallocation of JNI handle blocks")             \
1279157020Sdes                                                                            \
1280157020Sdes  develop(bool, TraceThreadEvents, false,                                   \
1281157020Sdes          "Trace all thread events")                                        \
1282157020Sdes                                                                            \
1283157020Sdes  develop(bool, TraceBytecodes, false,                                      \
1284157020Sdes          "Trace bytecode execution")                                       \
1285157020Sdes                                                                            \
1286157020Sdes  develop(bool, TraceClassInitialization, false,                            \
1287162860Sdes          "Trace class initialization")                                     \
1288162860Sdes                                                                            \
1289162860Sdes  develop(bool, TraceExceptions, false,                                     \
1290157020Sdes          "Trace exceptions")                                               \
1291157020Sdes                                                                            \
1292157020Sdes  develop(bool, TraceICs, false,                                            \
1293157020Sdes          "Trace inline cache changes")                                     \
1294157020Sdes                                                                            \
1295157020Sdes  notproduct(bool, TraceInvocationCounterOverflow, false,                   \
1296157020Sdes          "Trace method invocation counter overflow")                       \
1297157020Sdes                                                                            \
1298157020Sdes  develop(bool, TraceInlineCacheClearing, false,                            \
1299157020Sdes          "Trace clearing of inline caches in nmethods")                    \
1300157020Sdes                                                                            \
1301157020Sdes  develop(bool, TraceDependencies, false,                                   \
1302157020Sdes          "Trace dependencies")                                             \
1303157020Sdes                                                                            \
1304157020Sdes  develop(bool, VerifyDependencies, trueInDebug,                            \
1305157020Sdes         "Exercise and verify the compilation dependency mechanism")        \
1306157020Sdes                                                                            \
1307157020Sdes  develop(bool, TraceNewOopMapGeneration, false,                            \
1308157020Sdes          "Trace OopMapGeneration")                                         \
1309162860Sdes                                                                            \
1310162860Sdes  develop(bool, TraceNewOopMapGenerationDetailed, false,                    \
1311162860Sdes          "Trace OopMapGeneration: print detailed cell states")             \
1312107553Sdes                                                                            \
1313107553Sdes  develop(bool, TimeOopMap, false,                                          \
131499059Sdes          "Time calls to GenerateOopMap::compute_map() in sum")             \
131599059Sdes                                                                            \
1316157020Sdes  develop(bool, TimeOopMap2, false,                                         \
1317163054Sdes          "Time calls to GenerateOopMap::compute_map() individually")       \
1318157020Sdes                                                                            \
131999059Sdes  develop(bool, TraceMonitorMismatch, false,                                \
132099059Sdes          "Trace monitor matching failures during OopMapGeneration")        \
132199059Sdes                                                                            \
132299059Sdes  develop(bool, TraceOopMapRewrites, false,                                 \
132399059Sdes          "Trace rewritting of method oops during oop map generation")      \
132499059Sdes                                                                            \
1325147006Sdes  develop(bool, TraceSafepoint, false,                                      \
1326147006Sdes          "Trace safepoint operations")                                     \
1327147006Sdes                                                                            \
1328157020Sdes  develop(bool, TraceICBuffer, false,                                       \
1329157020Sdes          "Trace usage of IC buffer")                                       \
1330157020Sdes                                                                            \
1331157020Sdes  develop(bool, TraceCompiledIC, false,                                     \
1332157020Sdes          "Trace changes of compiled IC")                                   \
1333157020Sdes                                                                            \
1334157020Sdes  notproduct(bool, TraceZapDeadLocals, false,                               \
1335157020Sdes          "Trace zapping dead locals")                                      \
1336157020Sdes                                                                            \
1337147006Sdes  develop(bool, TraceStartupTime, false,                                    \
1338147006Sdes          "Trace setup time")                                               \
1339147006Sdes                                                                            \
134099059Sdes  product(ccstr, HPILibPath, NULL,                                          \
1341147006Sdes          "Specify alternate path to HPI library")                          \
134299059Sdes                                                                            \
134399059Sdes  develop(bool, TraceProtectionDomainVerification, false,                   \
134499059Sdes          "Trace protection domain verifcation")                            \
1345                                                                            \
1346  develop(bool, TraceClearedExceptions, false,                              \
1347          "Prints when an exception is forcibly cleared")                   \
1348                                                                            \
1349  product(bool, TraceClassResolution, false,                                \
1350          "Trace all constant pool resolutions (for debugging)")            \
1351                                                                            \
1352  product(bool, TraceBiasedLocking, false,                                  \
1353          "Trace biased locking in JVM")                                    \
1354                                                                            \
1355  product(bool, TraceMonitorInflation, false,                               \
1356          "Trace monitor inflation in JVM")                                 \
1357                                                                            \
1358  /* assembler */                                                           \
1359  product(bool, Use486InstrsOnly, false,                                    \
1360          "Use 80486 Compliant instruction subset")                         \
1361                                                                            \
1362  /* gc */                                                                  \
1363                                                                            \
1364  product(bool, UseSerialGC, false,                                         \
1365          "Use the serial garbage collector")                               \
1366                                                                            \
1367  product(bool, UseG1GC, false,                                             \
1368          "Use the Garbage-First garbage collector")                        \
1369                                                                            \
1370  product(bool, UseParallelGC, false,                                       \
1371          "Use the Parallel Scavenge garbage collector")                    \
1372                                                                            \
1373  product(bool, UseParallelOldGC, false,                                    \
1374          "Use the Parallel Old garbage collector")                         \
1375                                                                            \
1376  product(uintx, HeapMaximumCompactionInterval, 20,                         \
1377          "How often should we maximally compact the heap (not allowing "   \
1378          "any dead space)")                                                \
1379                                                                            \
1380  product(uintx, HeapFirstMaximumCompactionCount, 3,                        \
1381          "The collection count for the first maximum compaction")          \
1382                                                                            \
1383  product(bool, UseMaximumCompactionOnSystemGC, true,                       \
1384          "In the Parallel Old garbage collector maximum compaction for "   \
1385          "a system GC")                                                    \
1386                                                                            \
1387  product(uintx, ParallelOldDeadWoodLimiterMean, 50,                        \
1388          "The mean used by the par compact dead wood"                      \
1389          "limiter (a number between 0-100).")                              \
1390                                                                            \
1391  product(uintx, ParallelOldDeadWoodLimiterStdDev, 80,                      \
1392          "The standard deviation used by the par compact dead wood"        \
1393          "limiter (a number between 0-100).")                              \
1394                                                                            \
1395  product(uintx, ParallelGCThreads, 0,                                      \
1396          "Number of parallel threads parallel gc will use")                \
1397                                                                            \
1398  develop(bool, ParallelOldGCSplitALot, false,                              \
1399          "Provoke splitting (copying data from a young gen space to"       \
1400          "multiple destination spaces)")                                   \
1401                                                                            \
1402  develop(uintx, ParallelOldGCSplitInterval, 3,                             \
1403          "How often to provoke splitting a young gen space")               \
1404                                                                            \
1405  develop(bool, TraceRegionTasksQueuing, false,                             \
1406          "Trace the queuing of the region tasks")                          \
1407                                                                            \
1408  product(uintx, ConcGCThreads, 0,                                          \
1409          "Number of threads concurrent gc will use")                       \
1410                                                                            \
1411  product(uintx, YoungPLABSize, 4096,                                       \
1412          "Size of young gen promotion labs (in HeapWords)")                \
1413                                                                            \
1414  product(uintx, OldPLABSize, 1024,                                         \
1415          "Size of old gen promotion labs (in HeapWords)")                  \
1416                                                                            \
1417  product(uintx, GCTaskTimeStampEntries, 200,                               \
1418          "Number of time stamp entries per gc worker thread")              \
1419                                                                            \
1420  product(bool, AlwaysTenure, false,                                        \
1421          "Always tenure objects in eden. (ParallelGC only)")               \
1422                                                                            \
1423  product(bool, NeverTenure, false,                                         \
1424          "Never tenure objects in eden, May tenure on overflow "           \
1425          "(ParallelGC only)")                                              \
1426                                                                            \
1427  product(bool, ScavengeBeforeFullGC, true,                                 \
1428          "Scavenge youngest generation before each full GC, "              \
1429          "used with UseParallelGC")                                        \
1430                                                                            \
1431  develop(bool, ScavengeWithObjectsInToSpace, false,                        \
1432          "Allow scavenges to occur when to_space contains objects.")       \
1433                                                                            \
1434  product(bool, UseConcMarkSweepGC, false,                                  \
1435          "Use Concurrent Mark-Sweep GC in the old generation")             \
1436                                                                            \
1437  product(bool, ExplicitGCInvokesConcurrent, false,                         \
1438          "A System.gc() request invokes a concurrent collection;"          \
1439          " (effective only when UseConcMarkSweepGC)")                      \
1440                                                                            \
1441  product(bool, ExplicitGCInvokesConcurrentAndUnloadsClasses, false,        \
1442          "A System.gc() request invokes a concurrent collection and "      \
1443          "also unloads classes during such a concurrent gc cycle "         \
1444          "(effective only when UseConcMarkSweepGC)")                       \
1445                                                                            \
1446  product(bool, GCLockerInvokesConcurrent, false,                           \
1447          "The exit of a JNI CS necessitating a scavenge also"              \
1448          " kicks off a bkgrd concurrent collection")                       \
1449                                                                            \
1450  product(uintx, GCLockerEdenExpansionPercent, 5,                           \
1451          "How much the GC can expand the eden by while the GC locker  "    \
1452          "is active (as a percentage)")                                    \
1453                                                                            \
1454  develop(bool, UseCMSAdaptiveFreeLists, true,                              \
1455          "Use Adaptive Free Lists in the CMS generation")                  \
1456                                                                            \
1457  develop(bool, UseAsyncConcMarkSweepGC, true,                              \
1458          "Use Asynchronous Concurrent Mark-Sweep GC in the old generation")\
1459                                                                            \
1460  develop(bool, RotateCMSCollectionTypes, false,                            \
1461          "Rotate the CMS collections among concurrent and STW")            \
1462                                                                            \
1463  product(bool, UseCMSBestFit, true,                                        \
1464          "Use CMS best fit allocation strategy")                           \
1465                                                                            \
1466  product(bool, UseCMSCollectionPassing, true,                              \
1467          "Use passing of collection from background to foreground")        \
1468                                                                            \
1469  product(bool, UseParNewGC, false,                                         \
1470          "Use parallel threads in the new generation.")                    \
1471                                                                            \
1472  product(bool, ParallelGCVerbose, false,                                   \
1473          "Verbose output for parallel GC.")                                \
1474                                                                            \
1475  product(intx, ParallelGCBufferWastePct, 10,                               \
1476          "wasted fraction of parallel allocation buffer.")                 \
1477                                                                            \
1478  diagnostic(bool, ParallelGCRetainPLAB, false,                             \
1479             "Retain parallel allocation buffers across scavenges; "        \
1480             " -- disabled because this currently conflicts with "          \
1481             " parallel card scanning under certain conditions ")           \
1482                                                                            \
1483  product(intx, TargetPLABWastePct, 10,                                     \
1484          "target wasted space in last buffer as pct of overall allocation")\
1485                                                                            \
1486  product(uintx, PLABWeight, 75,                                            \
1487          "Percentage (0-100) used to weight the current sample when"       \
1488          "computing exponentially decaying average for ResizePLAB.")       \
1489                                                                            \
1490  product(bool, ResizePLAB, true,                                           \
1491          "Dynamically resize (survivor space) promotion labs")             \
1492                                                                            \
1493  product(bool, PrintPLAB, false,                                           \
1494          "Print (survivor space) promotion labs sizing decisions")         \
1495                                                                            \
1496  product(intx, ParGCArrayScanChunk, 50,                                    \
1497          "Scan a subset and push remainder, if array is bigger than this") \
1498                                                                            \
1499  product(bool, ParGCUseLocalOverflow, false,                               \
1500          "Instead of a global overflow list, use local overflow stacks")   \
1501                                                                            \
1502  product(bool, ParGCTrimOverflow, true,                                    \
1503          "Eagerly trim the local overflow lists (when ParGCUseLocalOverflow") \
1504                                                                            \
1505  notproduct(bool, ParGCWorkQueueOverflowALot, false,                       \
1506          "Whether we should simulate work queue overflow in ParNew")       \
1507                                                                            \
1508  notproduct(uintx, ParGCWorkQueueOverflowInterval, 1000,                   \
1509          "An `interval' counter that determines how frequently "           \
1510          "we simulate overflow; a smaller number increases frequency")     \
1511                                                                            \
1512  product(uintx, ParGCDesiredObjsFromOverflowList, 20,                      \
1513          "The desired number of objects to claim from the overflow list")  \
1514                                                                            \
1515  diagnostic(intx, ParGCStridesPerThread, 2,                                \
1516          "The number of strides per worker thread that we divide up the "  \
1517          "card table scanning work into")                                  \
1518                                                                            \
1519  diagnostic(intx, ParGCCardsPerStrideChunk, 256,                           \
1520          "The number of cards in each chunk of the parallel chunks used "  \
1521          "during card table scanning")                                     \
1522                                                                            \
1523  product(uintx, CMSParPromoteBlocksToClaim, 16,                            \
1524          "Number of blocks to attempt to claim when refilling CMS LAB for "\
1525          "parallel GC.")                                                   \
1526                                                                            \
1527  product(uintx, OldPLABWeight, 50,                                         \
1528          "Percentage (0-100) used to weight the current sample when"       \
1529          "computing exponentially decaying average for resizing CMSParPromoteBlocksToClaim.") \
1530                                                                            \
1531  product(bool, ResizeOldPLAB, true,                                        \
1532          "Dynamically resize (old gen) promotion labs")                    \
1533                                                                            \
1534  product(bool, PrintOldPLAB, false,                                        \
1535          "Print (old gen) promotion labs sizing decisions")                \
1536                                                                            \
1537  product(uintx, CMSOldPLABMin, 16,                                         \
1538          "Min size of CMS gen promotion lab caches per worker per blksize")\
1539                                                                            \
1540  product(uintx, CMSOldPLABMax, 1024,                                       \
1541          "Max size of CMS gen promotion lab caches per worker per blksize")\
1542                                                                            \
1543  product(uintx, CMSOldPLABNumRefills, 4,                                   \
1544          "Nominal number of refills of CMS gen promotion lab cache"        \
1545          " per worker per block size")                                     \
1546                                                                            \
1547  product(bool, CMSOldPLABResizeQuicker, false,                             \
1548          "Whether to react on-the-fly during a scavenge to a sudden"       \
1549          " change in block demand rate")                                   \
1550                                                                            \
1551  product(uintx, CMSOldPLABToleranceFactor, 4,                              \
1552          "The tolerance of the phase-change detector for on-the-fly"       \
1553          " PLAB resizing during a scavenge")                               \
1554                                                                            \
1555  product(uintx, CMSOldPLABReactivityFactor, 2,                             \
1556          "The gain in the feedback loop for on-the-fly PLAB resizing"      \
1557          " during a scavenge")                                             \
1558                                                                            \
1559  product(uintx, CMSOldPLABReactivityCeiling, 10,                           \
1560          "The clamping of the gain in the feedback loop for on-the-fly"    \
1561          " PLAB resizing during a scavenge")                               \
1562                                                                            \
1563  product(bool, AlwaysPreTouch, false,                                      \
1564          "It forces all freshly committed pages to be pre-touched.")       \
1565                                                                            \
1566  product_pd(intx, CMSYoungGenPerWorker,                                    \
1567          "The maximum size of young gen chosen by default per GC worker "  \
1568          "thread available")                                               \
1569                                                                            \
1570  product(bool, GCOverheadReporting, false,                                 \
1571         "Enables the GC overhead reporting facility")                      \
1572                                                                            \
1573  product(intx, GCOverheadReportingPeriodMS, 100,                           \
1574          "Reporting period for conc GC overhead reporting, in ms ")        \
1575                                                                            \
1576  product(bool, CMSIncrementalMode, false,                                  \
1577          "Whether CMS GC should operate in \"incremental\" mode")          \
1578                                                                            \
1579  product(uintx, CMSIncrementalDutyCycle, 10,                               \
1580          "CMS incremental mode duty cycle (a percentage, 0-100).  If"      \
1581          "CMSIncrementalPacing is enabled, then this is just the initial"  \
1582          "value")                                                          \
1583                                                                            \
1584  product(bool, CMSIncrementalPacing, true,                                 \
1585          "Whether the CMS incremental mode duty cycle should be "          \
1586          "automatically adjusted")                                         \
1587                                                                            \
1588  product(uintx, CMSIncrementalDutyCycleMin, 0,                             \
1589          "Lower bound on the duty cycle when CMSIncrementalPacing is "     \
1590          "enabled (a percentage, 0-100)")                                  \
1591                                                                            \
1592  product(uintx, CMSIncrementalSafetyFactor, 10,                            \
1593          "Percentage (0-100) used to add conservatism when computing the " \
1594          "duty cycle")                                                     \
1595                                                                            \
1596  product(uintx, CMSIncrementalOffset, 0,                                   \
1597          "Percentage (0-100) by which the CMS incremental mode duty cycle" \
1598          " is shifted to the right within the period between young GCs")   \
1599                                                                            \
1600  product(uintx, CMSExpAvgFactor, 50,                                       \
1601          "Percentage (0-100) used to weight the current sample when"       \
1602          "computing exponential averages for CMS statistics.")             \
1603                                                                            \
1604  product(uintx, CMS_FLSWeight, 75,                                         \
1605          "Percentage (0-100) used to weight the current sample when"       \
1606          "computing exponentially decating averages for CMS FLS statistics.") \
1607                                                                            \
1608  product(uintx, CMS_FLSPadding, 1,                                         \
1609          "The multiple of deviation from mean to use for buffering"        \
1610          "against volatility in free list demand.")                        \
1611                                                                            \
1612  product(uintx, FLSCoalescePolicy, 2,                                      \
1613          "CMS: Aggression level for coalescing, increasing from 0 to 4")   \
1614                                                                            \
1615  product(bool, FLSAlwaysCoalesceLarge, false,                              \
1616          "CMS: Larger free blocks are always available for coalescing")    \
1617                                                                            \
1618  product(double, FLSLargestBlockCoalesceProximity, 0.99,                   \
1619          "CMS: the smaller the percentage the greater the coalition force")\
1620                                                                            \
1621  product(double, CMSSmallCoalSurplusPercent, 1.05,                         \
1622          "CMS: the factor by which to inflate estimated demand of small"   \
1623          " block sizes to prevent coalescing with an adjoining block")     \
1624                                                                            \
1625  product(double, CMSLargeCoalSurplusPercent, 0.95,                         \
1626          "CMS: the factor by which to inflate estimated demand of large"   \
1627          " block sizes to prevent coalescing with an adjoining block")     \
1628                                                                            \
1629  product(double, CMSSmallSplitSurplusPercent, 1.10,                        \
1630          "CMS: the factor by which to inflate estimated demand of small"   \
1631          " block sizes to prevent splitting to supply demand for smaller"  \
1632          " blocks")                                                        \
1633                                                                            \
1634  product(double, CMSLargeSplitSurplusPercent, 1.00,                        \
1635          "CMS: the factor by which to inflate estimated demand of large"   \
1636          " block sizes to prevent splitting to supply demand for smaller"  \
1637          " blocks")                                                        \
1638                                                                            \
1639  product(bool, CMSExtrapolateSweep, false,                                 \
1640          "CMS: cushion for block demand during sweep")                     \
1641                                                                            \
1642  product(uintx, CMS_SweepWeight, 75,                                       \
1643          "Percentage (0-100) used to weight the current sample when "      \
1644          "computing exponentially decaying average for inter-sweep "       \
1645          "duration")                                                       \
1646                                                                            \
1647  product(uintx, CMS_SweepPadding, 1,                                       \
1648          "The multiple of deviation from mean to use for buffering "       \
1649          "against volatility in inter-sweep duration.")                    \
1650                                                                            \
1651  product(uintx, CMS_SweepTimerThresholdMillis, 10,                         \
1652          "Skip block flux-rate sampling for an epoch unless inter-sweep "  \
1653          "duration exceeds this threhold in milliseconds")                 \
1654                                                                            \
1655  develop(bool, CMSTraceIncrementalMode, false,                             \
1656          "Trace CMS incremental mode")                                     \
1657                                                                            \
1658  develop(bool, CMSTraceIncrementalPacing, false,                           \
1659          "Trace CMS incremental mode pacing computation")                  \
1660                                                                            \
1661  develop(bool, CMSTraceThreadState, false,                                 \
1662          "Trace the CMS thread state (enable the trace_state() method)")   \
1663                                                                            \
1664  product(bool, CMSClassUnloadingEnabled, false,                            \
1665          "Whether class unloading enabled when using CMS GC")              \
1666                                                                            \
1667  product(uintx, CMSClassUnloadingMaxInterval, 0,                           \
1668          "When CMS class unloading is enabled, the maximum CMS cycle count"\
1669          " for which classes may not be unloaded")                         \
1670                                                                            \
1671  product(bool, CMSCompactWhenClearAllSoftRefs, true,                       \
1672          "Compact when asked to collect CMS gen with clear_all_soft_refs") \
1673                                                                            \
1674  product(bool, UseCMSCompactAtFullCollection, true,                        \
1675          "Use mark sweep compact at full collections")                     \
1676                                                                            \
1677  product(uintx, CMSFullGCsBeforeCompaction, 0,                             \
1678          "Number of CMS full collection done before compaction if > 0")    \
1679                                                                            \
1680  develop(intx, CMSDictionaryChoice, 0,                                     \
1681          "Use BinaryTreeDictionary as default in the CMS generation")      \
1682                                                                            \
1683  product(uintx, CMSIndexedFreeListReplenish, 4,                            \
1684          "Replenish an indexed free list with this number of chunks")     \
1685                                                                            \
1686  product(bool, CMSReplenishIntermediate, true,                             \
1687          "Replenish all intermediate free-list caches")                    \
1688                                                                            \
1689  product(bool, CMSSplitIndexedFreeListBlocks, true,                        \
1690          "When satisfying batched demand, split blocks from the "          \
1691          "IndexedFreeList whose size is a multiple of requested size")     \
1692                                                                            \
1693  product(bool, CMSLoopWarn, false,                                         \
1694          "Warn in case of excessive CMS looping")                          \
1695                                                                            \
1696  develop(bool, CMSOverflowEarlyRestoration, false,                         \
1697          "Whether preserved marks should be restored early")               \
1698                                                                            \
1699  product(uintx, MarkStackSize, NOT_LP64(32*K) LP64_ONLY(4*M),              \
1700          "Size of marking stack")                                          \
1701                                                                            \
1702  product(uintx, MarkStackSizeMax, NOT_LP64(4*M) LP64_ONLY(512*M),          \
1703          "Max size of marking stack")                                      \
1704                                                                            \
1705  notproduct(bool, CMSMarkStackOverflowALot, false,                         \
1706          "Whether we should simulate frequent marking stack / work queue"  \
1707          " overflow")                                                      \
1708                                                                            \
1709  notproduct(uintx, CMSMarkStackOverflowInterval, 1000,                     \
1710          "An `interval' counter that determines how frequently"            \
1711          " we simulate overflow; a smaller number increases frequency")    \
1712                                                                            \
1713  product(uintx, CMSMaxAbortablePrecleanLoops, 0,                           \
1714          "(Temporary, subject to experimentation)"                         \
1715          "Maximum number of abortable preclean iterations, if > 0")        \
1716                                                                            \
1717  product(intx, CMSMaxAbortablePrecleanTime, 5000,                          \
1718          "(Temporary, subject to experimentation)"                         \
1719          "Maximum time in abortable preclean in ms")                       \
1720                                                                            \
1721  product(uintx, CMSAbortablePrecleanMinWorkPerIteration, 100,              \
1722          "(Temporary, subject to experimentation)"                         \
1723          "Nominal minimum work per abortable preclean iteration")          \
1724                                                                            \
1725  manageable(intx, CMSAbortablePrecleanWaitMillis, 100,                     \
1726          "(Temporary, subject to experimentation)"                         \
1727          " Time that we sleep between iterations when not given"           \
1728          " enough work per iteration")                                     \
1729                                                                            \
1730  product(uintx, CMSRescanMultiple, 32,                                     \
1731          "Size (in cards) of CMS parallel rescan task")                    \
1732                                                                            \
1733  product(uintx, CMSConcMarkMultiple, 32,                                   \
1734          "Size (in cards) of CMS concurrent MT marking task")              \
1735                                                                            \
1736  product(uintx, CMSRevisitStackSize, 1*M,                                  \
1737          "Size of CMS KlassKlass revisit stack")                           \
1738                                                                            \
1739  product(bool, CMSAbortSemantics, false,                                   \
1740          "Whether abort-on-overflow semantics is implemented")             \
1741                                                                            \
1742  product(bool, CMSParallelRemarkEnabled, true,                             \
1743          "Whether parallel remark enabled (only if ParNewGC)")             \
1744                                                                            \
1745  product(bool, CMSParallelSurvivorRemarkEnabled, true,                     \
1746          "Whether parallel remark of survivor space"                       \
1747          " enabled (effective only if CMSParallelRemarkEnabled)")          \
1748                                                                            \
1749  product(bool, CMSPLABRecordAlways, true,                                  \
1750          "Whether to always record survivor space PLAB bdries"             \
1751          " (effective only if CMSParallelSurvivorRemarkEnabled)")          \
1752                                                                            \
1753  product(bool, CMSConcurrentMTEnabled, true,                               \
1754          "Whether multi-threaded concurrent work enabled (if ParNewGC)")   \
1755                                                                            \
1756  product(bool, CMSPermGenPrecleaningEnabled, true,                         \
1757          "Whether concurrent precleaning enabled in perm gen"              \
1758          " (effective only when CMSPrecleaningEnabled is true)")           \
1759                                                                            \
1760  product(bool, CMSPrecleaningEnabled, true,                                \
1761          "Whether concurrent precleaning enabled")                         \
1762                                                                            \
1763  product(uintx, CMSPrecleanIter, 3,                                        \
1764          "Maximum number of precleaning iteration passes")                 \
1765                                                                            \
1766  product(uintx, CMSPrecleanNumerator, 2,                                   \
1767          "CMSPrecleanNumerator:CMSPrecleanDenominator yields convergence"  \
1768          " ratio")                                                         \
1769                                                                            \
1770  product(uintx, CMSPrecleanDenominator, 3,                                 \
1771          "CMSPrecleanNumerator:CMSPrecleanDenominator yields convergence"  \
1772          " ratio")                                                         \
1773                                                                            \
1774  product(bool, CMSPrecleanRefLists1, true,                                 \
1775          "Preclean ref lists during (initial) preclean phase")             \
1776                                                                            \
1777  product(bool, CMSPrecleanRefLists2, false,                                \
1778          "Preclean ref lists during abortable preclean phase")             \
1779                                                                            \
1780  product(bool, CMSPrecleanSurvivors1, false,                               \
1781          "Preclean survivors during (initial) preclean phase")             \
1782                                                                            \
1783  product(bool, CMSPrecleanSurvivors2, true,                                \
1784          "Preclean survivors during abortable preclean phase")             \
1785                                                                            \
1786  product(uintx, CMSPrecleanThreshold, 1000,                                \
1787          "Don't re-iterate if #dirty cards less than this")                \
1788                                                                            \
1789  product(bool, CMSCleanOnEnter, true,                                      \
1790          "Clean-on-enter optimization for reducing number of dirty cards") \
1791                                                                            \
1792  product(uintx, CMSRemarkVerifyVariant, 1,                                 \
1793          "Choose variant (1,2) of verification following remark")          \
1794                                                                            \
1795  product(uintx, CMSScheduleRemarkEdenSizeThreshold, 2*M,                   \
1796          "If Eden used is below this value, don't try to schedule remark") \
1797                                                                            \
1798  product(uintx, CMSScheduleRemarkEdenPenetration, 50,                      \
1799          "The Eden occupancy % at which to try and schedule remark pause") \
1800                                                                            \
1801  product(uintx, CMSScheduleRemarkSamplingRatio, 5,                         \
1802          "Start sampling Eden top at least before yg occupancy reaches"    \
1803          " 1/<ratio> of the size at which we plan to schedule remark")     \
1804                                                                            \
1805  product(uintx, CMSSamplingGrain, 16*K,                                    \
1806          "The minimum distance between eden samples for CMS (see above)")  \
1807                                                                            \
1808  product(bool, CMSScavengeBeforeRemark, false,                             \
1809          "Attempt scavenge before the CMS remark step")                    \
1810                                                                            \
1811  develop(bool, CMSTraceSweeper, false,                                     \
1812          "Trace some actions of the CMS sweeper")                          \
1813                                                                            \
1814  product(uintx, CMSWorkQueueDrainThreshold, 10,                            \
1815          "Don't drain below this size per parallel worker/thief")          \
1816                                                                            \
1817  manageable(intx, CMSWaitDuration, 2000,                                   \
1818          "Time in milliseconds that CMS thread waits for young GC")        \
1819                                                                            \
1820  product(bool, CMSYield, true,                                             \
1821          "Yield between steps of concurrent mark & sweep")                 \
1822                                                                            \
1823  product(uintx, CMSBitMapYieldQuantum, 10*M,                               \
1824          "Bitmap operations should process at most this many bits"         \
1825          "between yields")                                                 \
1826                                                                            \
1827  product(bool, CMSDumpAtPromotionFailure, false,                           \
1828          "Dump useful information about the state of the CMS old "         \
1829          " generation upon a promotion failure.")                          \
1830                                                                            \
1831  product(bool, CMSPrintChunksInDump, false,                                \
1832          "In a dump enabled by CMSDumpAtPromotionFailure, include "        \
1833          " more detailed information about the free chunks.")              \
1834                                                                            \
1835  product(bool, CMSPrintObjectsInDump, false,                               \
1836          "In a dump enabled by CMSDumpAtPromotionFailure, include "        \
1837          " more detailed information about the allocated objects.")        \
1838                                                                            \
1839  diagnostic(bool, FLSVerifyAllHeapReferences, false,                       \
1840          "Verify that all refs across the FLS boundary "                   \
1841          " are to valid objects")                                          \
1842                                                                            \
1843  diagnostic(bool, FLSVerifyLists, false,                                   \
1844          "Do lots of (expensive) FreeListSpace verification")              \
1845                                                                            \
1846  diagnostic(bool, FLSVerifyIndexTable, false,                              \
1847          "Do lots of (expensive) FLS index table verification")            \
1848                                                                            \
1849  develop(bool, FLSVerifyDictionary, false,                                 \
1850          "Do lots of (expensive) FLS dictionary verification")             \
1851                                                                            \
1852  develop(bool, VerifyBlockOffsetArray, false,                              \
1853          "Do (expensive!) block offset array verification")                \
1854                                                                            \
1855  diagnostic(bool, BlockOffsetArrayUseUnallocatedBlock, false,              \
1856          "Maintain _unallocated_block in BlockOffsetArray"                 \
1857          " (currently applicable only to CMS collector)")                  \
1858                                                                            \
1859  develop(bool, TraceCMSState, false,                                       \
1860          "Trace the state of the CMS collection")                          \
1861                                                                            \
1862  product(intx, RefDiscoveryPolicy, 0,                                      \
1863          "Whether reference-based(0) or referent-based(1)")                \
1864                                                                            \
1865  product(bool, ParallelRefProcEnabled, false,                              \
1866          "Enable parallel reference processing whenever possible")         \
1867                                                                            \
1868  product(bool, ParallelRefProcBalancingEnabled, true,                      \
1869          "Enable balancing of reference processing queues")                \
1870                                                                            \
1871  product(intx, CMSTriggerRatio, 80,                                        \
1872          "Percentage of MinHeapFreeRatio in CMS generation that is "       \
1873          "allocated before a CMS collection cycle commences")              \
1874                                                                            \
1875  product(intx, CMSTriggerPermRatio, 80,                                    \
1876          "Percentage of MinHeapFreeRatio in the CMS perm generation that " \
1877          "is allocated before a CMS collection cycle commences, that "     \
1878          "also collects the perm generation")                              \
1879                                                                            \
1880  product(uintx, CMSBootstrapOccupancy, 50,                                 \
1881          "Percentage CMS generation occupancy at which to "                \
1882          "initiate CMS collection for bootstrapping collection stats")     \
1883                                                                            \
1884  product(intx, CMSInitiatingOccupancyFraction, -1,                         \
1885          "Percentage CMS generation occupancy to start a CMS collection "  \
1886          "cycle. A negative value means that CMSTriggerRatio is used")     \
1887                                                                            \
1888  product(uintx, InitiatingHeapOccupancyPercent, 45,                        \
1889          "Percentage of the (entire) heap occupancy to start a "           \
1890          "concurrent GC cycle. It us used by GCs that trigger a "          \
1891          "concurrent GC cycle based on the occupancy of the entire heap, " \
1892          "not just one of the generations (e.g., G1). A value of 0 "       \
1893          "denotes 'do constant GC cycles'.")                               \
1894                                                                            \
1895  product(intx, CMSInitiatingPermOccupancyFraction, -1,                     \
1896          "Percentage CMS perm generation occupancy to start a "            \
1897          "CMScollection cycle. A negative value means that "               \
1898          "CMSTriggerPermRatio is used")                                    \
1899                                                                            \
1900  product(bool, UseCMSInitiatingOccupancyOnly, false,                       \
1901          "Only use occupancy as a crierion for starting a CMS collection") \
1902                                                                            \
1903  product(intx, CMSIsTooFullPercentage, 98,                                 \
1904          "An absolute ceiling above which CMS will always consider the "   \
1905          "perm gen ripe for collection")                                   \
1906                                                                            \
1907  develop(bool, CMSTestInFreeList, false,                                   \
1908          "Check if the coalesced range is already in the "                 \
1909          "free lists as claimed")                                          \
1910                                                                            \
1911  notproduct(bool, CMSVerifyReturnedBytes, false,                           \
1912          "Check that all the garbage collected was returned to the "       \
1913          "free lists.")                                                    \
1914                                                                            \
1915  notproduct(bool, ScavengeALot, false,                                     \
1916          "Force scavenge at every Nth exit from the runtime system "       \
1917          "(N=ScavengeALotInterval)")                                       \
1918                                                                            \
1919  develop(bool, FullGCALot, false,                                          \
1920          "Force full gc at every Nth exit from the runtime system "        \
1921          "(N=FullGCALotInterval)")                                         \
1922                                                                            \
1923  notproduct(bool, GCALotAtAllSafepoints, false,                            \
1924          "Enforce ScavengeALot/GCALot at all potential safepoints")        \
1925                                                                            \
1926  product(bool, PrintPromotionFailure, false,                               \
1927          "Print additional diagnostic information following "              \
1928          " promotion failure")                                             \
1929                                                                            \
1930  notproduct(bool, PromotionFailureALot, false,                             \
1931          "Use promotion failure handling on every youngest generation "    \
1932          "collection")                                                     \
1933                                                                            \
1934  develop(uintx, PromotionFailureALotCount, 1000,                           \
1935          "Number of promotion failures occurring at ParGCAllocBuffer"      \
1936          "refill attempts (ParNew) or promotion attempts "                 \
1937          "(other young collectors) ")                                      \
1938                                                                            \
1939  develop(uintx, PromotionFailureALotInterval, 5,                           \
1940          "Total collections between promotion failures alot")              \
1941                                                                            \
1942  experimental(intx, WorkStealingSleepMillis, 1,                            \
1943          "Sleep time when sleep is used for yields")                       \
1944                                                                            \
1945  experimental(uintx, WorkStealingYieldsBeforeSleep, 5000,                  \
1946          "Number of yields before a sleep is done during workstealing")    \
1947                                                                            \
1948  experimental(uintx, WorkStealingHardSpins, 4096,                          \
1949          "Number of iterations in a spin loop between checks on "          \
1950          "time out of hard spin")                                          \
1951                                                                            \
1952  experimental(uintx, WorkStealingSpinToYieldRatio, 10,                     \
1953          "Ratio of hard spins to calls to yield")                          \
1954                                                                            \
1955  product(uintx, PreserveMarkStackSize, 1024,                               \
1956          "Size for stack used in promotion failure handling")              \
1957                                                                            \
1958  develop(uintx, ObjArrayMarkingStride, 512,                                \
1959          "Number of ObjArray elements to push onto the marking stack"      \
1960          "before pushing a continuation entry")                            \
1961                                                                            \
1962  notproduct(bool, ExecuteInternalVMTests, false,                           \
1963          "Enable execution of internal VM tests.")                         \
1964                                                                            \
1965  product_pd(bool, UseTLAB, "Use thread-local object allocation")           \
1966                                                                            \
1967  product_pd(bool, ResizeTLAB,                                              \
1968          "Dynamically resize tlab size for threads")                       \
1969                                                                            \
1970  product(bool, ZeroTLAB, false,                                            \
1971          "Zero out the newly created TLAB")                                \
1972                                                                            \
1973  product(bool, FastTLABRefill, true,                                       \
1974          "Use fast TLAB refill code")                                      \
1975                                                                            \
1976  product(bool, PrintTLAB, false,                                           \
1977          "Print various TLAB related information")                         \
1978                                                                            \
1979  product(bool, TLABStats, true,                                            \
1980          "Print various TLAB related information")                         \
1981                                                                            \
1982  product(bool, UseBlockZeroing, false,                                     \
1983          "Use special cpu instructions for block zeroing")                 \
1984                                                                            \
1985  product(intx, BlockZeroingLowLimit, 2048,                                 \
1986          "Minimum size in bytes when block zeroing will be used")          \
1987                                                                            \
1988  product(bool, PrintRevisitStats, false,                                   \
1989          "Print revisit (klass and MDO) stack related information")        \
1990                                                                            \
1991  EMBEDDED_ONLY(product(bool, LowMemoryProtection, true,                    \
1992          "Enable LowMemoryProtection"))                                    \
1993                                                                            \
1994  product_pd(bool, NeverActAsServerClassMachine,                            \
1995          "Never act like a server-class machine")                          \
1996                                                                            \
1997  product(bool, AlwaysActAsServerClassMachine, false,                       \
1998          "Always act like a server-class machine")                         \
1999                                                                            \
2000  product_pd(uint64_t, MaxRAM,                                              \
2001          "Real memory size (in bytes) used to set maximum heap size")      \
2002                                                                            \
2003  product(uintx, ErgoHeapSizeLimit, 0,                                      \
2004          "Maximum ergonomically set heap size (in bytes); zero means use " \
2005          "MaxRAM / MaxRAMFraction")                                        \
2006                                                                            \
2007  product(uintx, MaxRAMFraction, 4,                                         \
2008          "Maximum fraction (1/n) of real memory used for maximum heap "    \
2009          "size")                                                           \
2010                                                                            \
2011  product(uintx, DefaultMaxRAMFraction, 4,                                  \
2012          "Maximum fraction (1/n) of real memory used for maximum heap "    \
2013          "size; deprecated: to be renamed to MaxRAMFraction")              \
2014                                                                            \
2015  product(uintx, MinRAMFraction, 2,                                         \
2016          "Minimum fraction (1/n) of real memory used for maxmimum heap "   \
2017          "size on systems with small physical memory size")                \
2018                                                                            \
2019  product(uintx, InitialRAMFraction, 64,                                    \
2020          "Fraction (1/n) of real memory used for initial heap size")       \
2021                                                                            \
2022  product(bool, UseAutoGCSelectPolicy, false,                               \
2023          "Use automatic collection selection policy")                      \
2024                                                                            \
2025  product(uintx, AutoGCSelectPauseMillis, 5000,                             \
2026          "Automatic GC selection pause threshhold in ms")                  \
2027                                                                            \
2028  product(bool, UseAdaptiveSizePolicy, true,                                \
2029          "Use adaptive generation sizing policies")                        \
2030                                                                            \
2031  product(bool, UsePSAdaptiveSurvivorSizePolicy, true,                      \
2032          "Use adaptive survivor sizing policies")                          \
2033                                                                            \
2034  product(bool, UseAdaptiveGenerationSizePolicyAtMinorCollection, true,     \
2035          "Use adaptive young-old sizing policies at minor collections")    \
2036                                                                            \
2037  product(bool, UseAdaptiveGenerationSizePolicyAtMajorCollection, true,     \
2038          "Use adaptive young-old sizing policies at major collections")    \
2039                                                                            \
2040  product(bool, UseAdaptiveSizePolicyWithSystemGC, false,                   \
2041          "Use statistics from System.GC for adaptive size policy")         \
2042                                                                            \
2043  product(bool, UseAdaptiveGCBoundary, false,                               \
2044          "Allow young-old boundary to move")                               \
2045                                                                            \
2046  develop(bool, TraceAdaptiveGCBoundary, false,                             \
2047          "Trace young-old boundary moves")                                 \
2048                                                                            \
2049  develop(intx, PSAdaptiveSizePolicyResizeVirtualSpaceAlot, -1,             \
2050          "Resize the virtual spaces of the young or old generations")      \
2051                                                                            \
2052  product(uintx, AdaptiveSizeThroughPutPolicy, 0,                           \
2053          "Policy for changeing generation size for throughput goals")      \
2054                                                                            \
2055  product(uintx, AdaptiveSizePausePolicy, 0,                                \
2056          "Policy for changing generation size for pause goals")            \
2057                                                                            \
2058  develop(bool, PSAdjustTenuredGenForMinorPause, false,                     \
2059          "Adjust tenured generation to achive a minor pause goal")         \
2060                                                                            \
2061  develop(bool, PSAdjustYoungGenForMajorPause, false,                       \
2062          "Adjust young generation to achive a major pause goal")           \
2063                                                                            \
2064  product(uintx, AdaptiveSizePolicyInitializingSteps, 20,                   \
2065          "Number of steps where heuristics is used before data is used")   \
2066                                                                            \
2067  develop(uintx, AdaptiveSizePolicyReadyThreshold, 5,                       \
2068          "Number of collections before the adaptive sizing is started")    \
2069                                                                            \
2070  product(uintx, AdaptiveSizePolicyOutputInterval, 0,                       \
2071          "Collecton interval for printing information; zero => never")     \
2072                                                                            \
2073  product(bool, UseAdaptiveSizePolicyFootprintGoal, true,                   \
2074          "Use adaptive minimum footprint as a goal")                       \
2075                                                                            \
2076  product(uintx, AdaptiveSizePolicyWeight, 10,                              \
2077          "Weight given to exponential resizing, between 0 and 100")        \
2078                                                                            \
2079  product(uintx, AdaptiveTimeWeight,       25,                              \
2080          "Weight given to time in adaptive policy, between 0 and 100")     \
2081                                                                            \
2082  product(uintx, PausePadding, 1,                                           \
2083          "How much buffer to keep for pause time")                         \
2084                                                                            \
2085  product(uintx, PromotedPadding, 3,                                        \
2086          "How much buffer to keep for promotion failure")                  \
2087                                                                            \
2088  product(uintx, SurvivorPadding, 3,                                        \
2089          "How much buffer to keep for survivor overflow")                  \
2090                                                                            \
2091  product(uintx, AdaptivePermSizeWeight, 20,                                \
2092          "Weight for perm gen exponential resizing, between 0 and 100")    \
2093                                                                            \
2094  product(uintx, PermGenPadding, 3,                                         \
2095          "How much buffer to keep for perm gen sizing")                    \
2096                                                                            \
2097  product(uintx, ThresholdTolerance, 10,                                    \
2098          "Allowed collection cost difference between generations")         \
2099                                                                            \
2100  product(uintx, AdaptiveSizePolicyCollectionCostMargin, 50,                \
2101          "If collection costs are within margin, reduce both by full "     \
2102          "delta")                                                          \
2103                                                                            \
2104  product(uintx, YoungGenerationSizeIncrement, 20,                          \
2105          "Adaptive size percentage change in young generation")            \
2106                                                                            \
2107  product(uintx, YoungGenerationSizeSupplement, 80,                         \
2108          "Supplement to YoungedGenerationSizeIncrement used at startup")   \
2109                                                                            \
2110  product(uintx, YoungGenerationSizeSupplementDecay, 8,                     \
2111          "Decay factor to YoungedGenerationSizeSupplement")                \
2112                                                                            \
2113  product(uintx, TenuredGenerationSizeIncrement, 20,                        \
2114          "Adaptive size percentage change in tenured generation")          \
2115                                                                            \
2116  product(uintx, TenuredGenerationSizeSupplement, 80,                       \
2117          "Supplement to TenuredGenerationSizeIncrement used at startup")   \
2118                                                                            \
2119  product(uintx, TenuredGenerationSizeSupplementDecay, 2,                   \
2120          "Decay factor to TenuredGenerationSizeIncrement")                 \
2121                                                                            \
2122  product(uintx, MaxGCPauseMillis, max_uintx,                           \
2123          "Adaptive size policy maximum GC pause time goal in msec, "       \
2124          "or (G1 Only) the max. GC time per MMU time slice")               \
2125                                                                            \
2126  product(uintx, GCPauseIntervalMillis, 0,                                  \
2127          "Time slice for MMU specification")                               \
2128                                                                            \
2129  product(uintx, MaxGCMinorPauseMillis, max_uintx,                          \
2130          "Adaptive size policy maximum GC minor pause time goal in msec")  \
2131                                                                            \
2132  product(uintx, GCTimeRatio, 99,                                           \
2133          "Adaptive size policy application time to GC time ratio")         \
2134                                                                            \
2135  product(uintx, AdaptiveSizeDecrementScaleFactor, 4,                       \
2136          "Adaptive size scale down factor for shrinking")                  \
2137                                                                            \
2138  product(bool, UseAdaptiveSizeDecayMajorGCCost, true,                      \
2139          "Adaptive size decays the major cost for long major intervals")   \
2140                                                                            \
2141  product(uintx, AdaptiveSizeMajorGCDecayTimeScale, 10,                     \
2142          "Time scale over which major costs decay")                        \
2143                                                                            \
2144  product(uintx, MinSurvivorRatio, 3,                                       \
2145          "Minimum ratio of young generation/survivor space size")          \
2146                                                                            \
2147  product(uintx, InitialSurvivorRatio, 8,                                   \
2148          "Initial ratio of eden/survivor space size")                      \
2149                                                                            \
2150  product(uintx, BaseFootPrintEstimate, 256*M,                              \
2151          "Estimate of footprint other than Java Heap")                     \
2152                                                                            \
2153  product(bool, UseGCOverheadLimit, true,                                   \
2154          "Use policy to limit of proportion of time spent in GC "          \
2155          "before an OutOfMemory error is thrown")                          \
2156                                                                            \
2157  product(uintx, GCTimeLimit, 98,                                           \
2158          "Limit of proportion of time spent in GC before an OutOfMemory"   \
2159          "error is thrown (used with GCHeapFreeLimit)")                    \
2160                                                                            \
2161  product(uintx, GCHeapFreeLimit, 2,                                        \
2162          "Minimum percentage of free space after a full GC before an "     \
2163          "OutOfMemoryError is thrown (used with GCTimeLimit)")             \
2164                                                                            \
2165  develop(uintx, AdaptiveSizePolicyGCTimeLimitThreshold, 5,                 \
2166          "Number of consecutive collections before gc time limit fires")   \
2167                                                                            \
2168  product(bool, PrintAdaptiveSizePolicy, false,                             \
2169          "Print information about AdaptiveSizePolicy")                     \
2170                                                                            \
2171  product(intx, PrefetchCopyIntervalInBytes, -1,                            \
2172          "How far ahead to prefetch destination area (<= 0 means off)")    \
2173                                                                            \
2174  product(intx, PrefetchScanIntervalInBytes, -1,                            \
2175          "How far ahead to prefetch scan area (<= 0 means off)")           \
2176                                                                            \
2177  product(intx, PrefetchFieldsAhead, -1,                                    \
2178          "How many fields ahead to prefetch in oop scan (<= 0 means off)") \
2179                                                                            \
2180  develop(bool, UsePrefetchQueue, true,                                     \
2181          "Use the prefetch queue during PS promotion")                     \
2182                                                                            \
2183  diagnostic(bool, VerifyBeforeExit, trueInDebug,                           \
2184          "Verify system before exiting")                                   \
2185                                                                            \
2186  diagnostic(bool, VerifyBeforeGC, false,                                   \
2187          "Verify memory system before GC")                                 \
2188                                                                            \
2189  diagnostic(bool, VerifyAfterGC, false,                                    \
2190          "Verify memory system after GC")                                  \
2191                                                                            \
2192  diagnostic(bool, VerifyDuringGC, false,                                   \
2193          "Verify memory system during GC (between phases)")                \
2194                                                                            \
2195  diagnostic(bool, GCParallelVerificationEnabled, true,                     \
2196          "Enable parallel memory system verification")                     \
2197                                                                            \
2198  diagnostic(bool, DeferInitialCardMark, false,                             \
2199          "When +ReduceInitialCardMarks, explicitly defer any that "        \
2200           "may arise from new_pre_store_barrier")                          \
2201                                                                            \
2202  diagnostic(bool, VerifyRememberedSets, false,                             \
2203          "Verify GC remembered sets")                                      \
2204                                                                            \
2205  diagnostic(bool, VerifyObjectStartArray, true,                            \
2206          "Verify GC object start array if verify before/after")            \
2207                                                                            \
2208  product(bool, DisableExplicitGC, false,                                   \
2209          "Tells whether calling System.gc() does a full GC")               \
2210                                                                            \
2211  notproduct(bool, CheckMemoryInitialization, false,                        \
2212          "Checks memory initialization")                                   \
2213                                                                            \
2214  product(bool, CollectGen0First, false,                                    \
2215          "Collect youngest generation before each full GC")                \
2216                                                                            \
2217  diagnostic(bool, BindCMSThreadToCPU, false,                               \
2218          "Bind CMS Thread to CPU if possible")                             \
2219                                                                            \
2220  diagnostic(uintx, CPUForCMSThread, 0,                                     \
2221          "When BindCMSThreadToCPU is true, the CPU to bind CMS thread to") \
2222                                                                            \
2223  product(bool, BindGCTaskThreadsToCPUs, false,                             \
2224          "Bind GCTaskThreads to CPUs if possible")                         \
2225                                                                            \
2226  product(bool, UseGCTaskAffinity, false,                                   \
2227          "Use worker affinity when asking for GCTasks")                    \
2228                                                                            \
2229  product(uintx, ProcessDistributionStride, 4,                              \
2230          "Stride through processors when distributing processes")          \
2231                                                                            \
2232  product(uintx, CMSCoordinatorYieldSleepCount, 10,                         \
2233          "number of times the coordinator GC thread will sleep while "     \
2234          "yielding before giving up and resuming GC")                      \
2235                                                                            \
2236  product(uintx, CMSYieldSleepCount, 0,                                     \
2237          "number of times a GC thread (minus the coordinator) "            \
2238          "will sleep while yielding before giving up and resuming GC")     \
2239                                                                            \
2240  /* gc tracing */                                                          \
2241  manageable(bool, PrintGC, false,                                          \
2242          "Print message at garbage collect")                               \
2243                                                                            \
2244  manageable(bool, PrintGCDetails, false,                                   \
2245          "Print more details at garbage collect")                          \
2246                                                                            \
2247  manageable(bool, PrintGCDateStamps, false,                                \
2248          "Print date stamps at garbage collect")                           \
2249                                                                            \
2250  manageable(bool, PrintGCTimeStamps, false,                                \
2251          "Print timestamps at garbage collect")                            \
2252                                                                            \
2253  product(bool, PrintGCTaskTimeStamps, false,                               \
2254          "Print timestamps for individual gc worker thread tasks")         \
2255                                                                            \
2256  develop(intx, ConcGCYieldTimeout, 0,                                      \
2257          "If non-zero, assert that GC threads yield within this # of ms.") \
2258                                                                            \
2259  notproduct(bool, TraceMarkSweep, false,                                   \
2260          "Trace mark sweep")                                               \
2261                                                                            \
2262  product(bool, PrintReferenceGC, false,                                    \
2263          "Print times spent handling reference objects during GC "         \
2264          " (enabled only when PrintGCDetails)")                            \
2265                                                                            \
2266  develop(bool, TraceReferenceGC, false,                                    \
2267          "Trace handling of soft/weak/final/phantom references")           \
2268                                                                            \
2269  develop(bool, TraceFinalizerRegistration, false,                          \
2270         "Trace registration of final references")                          \
2271                                                                            \
2272  notproduct(bool, TraceScavenge, false,                                    \
2273          "Trace scavenge")                                                 \
2274                                                                            \
2275  product_rw(bool, TraceClassLoading, false,                                \
2276          "Trace all classes loaded")                                       \
2277                                                                            \
2278  product(bool, TraceClassLoadingPreorder, false,                           \
2279          "Trace all classes loaded in order referenced (not loaded)")      \
2280                                                                            \
2281  product_rw(bool, TraceClassUnloading, false,                              \
2282          "Trace unloading of classes")                                     \
2283                                                                            \
2284  product_rw(bool, TraceLoaderConstraints, false,                           \
2285          "Trace loader constraints")                                       \
2286                                                                            \
2287  product(bool, TraceGen0Time, false,                                       \
2288          "Trace accumulated time for Gen 0 collection")                    \
2289                                                                            \
2290  product(bool, TraceGen1Time, false,                                       \
2291          "Trace accumulated time for Gen 1 collection")                    \
2292                                                                            \
2293  product(bool, PrintTenuringDistribution, false,                           \
2294          "Print tenuring age information")                                 \
2295                                                                            \
2296  product_rw(bool, PrintHeapAtGC, false,                                    \
2297          "Print heap layout before and after each GC")                     \
2298                                                                            \
2299  product_rw(bool, PrintHeapAtGCExtended, false,                            \
2300          "Prints extended information about the layout of the heap "       \
2301          "when -XX:+PrintHeapAtGC is set")                                 \
2302                                                                            \
2303  product(bool, PrintHeapAtSIGBREAK, true,                                  \
2304          "Print heap layout in response to SIGBREAK")                      \
2305                                                                            \
2306  manageable(bool, PrintClassHistogramBeforeFullGC, false,                  \
2307          "Print a class histogram before any major stop-world GC")         \
2308                                                                            \
2309  manageable(bool, PrintClassHistogramAfterFullGC, false,                   \
2310          "Print a class histogram after any major stop-world GC")          \
2311                                                                            \
2312  manageable(bool, PrintClassHistogram, false,                              \
2313          "Print a histogram of class instances")                           \
2314                                                                            \
2315  develop(bool, TraceWorkGang, false,                                       \
2316          "Trace activities of work gangs")                                 \
2317                                                                            \
2318  product(bool, TraceParallelOldGCTasks, false,                             \
2319          "Trace multithreaded GC activity")                                \
2320                                                                            \
2321  develop(bool, TraceBlockOffsetTable, false,                               \
2322          "Print BlockOffsetTable maps")                                    \
2323                                                                            \
2324  develop(bool, TraceCardTableModRefBS, false,                              \
2325          "Print CardTableModRefBS maps")                                   \
2326                                                                            \
2327  develop(bool, TraceGCTaskManager, false,                                  \
2328          "Trace actions of the GC task manager")                           \
2329                                                                            \
2330  develop(bool, TraceGCTaskQueue, false,                                    \
2331          "Trace actions of the GC task queues")                            \
2332                                                                            \
2333  develop(bool, TraceGCTaskThread, false,                                   \
2334          "Trace actions of the GC task threads")                           \
2335                                                                            \
2336  product(bool, PrintParallelOldGCPhaseTimes, false,                        \
2337          "Print the time taken by each parallel old gc phase."             \
2338          "PrintGCDetails must also be enabled.")                           \
2339                                                                            \
2340  develop(bool, TraceParallelOldGCMarkingPhase, false,                      \
2341          "Trace parallel old gc marking phase")                            \
2342                                                                            \
2343  develop(bool, TraceParallelOldGCSummaryPhase, false,                      \
2344          "Trace parallel old gc summary phase")                            \
2345                                                                            \
2346  develop(bool, TraceParallelOldGCCompactionPhase, false,                   \
2347          "Trace parallel old gc compaction phase")                         \
2348                                                                            \
2349  develop(bool, TraceParallelOldGCDensePrefix, false,                       \
2350          "Trace parallel old gc dense prefix computation")                 \
2351                                                                            \
2352  develop(bool, IgnoreLibthreadGPFault, false,                              \
2353          "Suppress workaround for libthread GP fault")                     \
2354                                                                            \
2355  product(bool, PrintJNIGCStalls, false,                                    \
2356          "Print diagnostic message when GC is stalled"                     \
2357          "by JNI critical section")                                        \
2358                                                                            \
2359  /* GC log rotation setting */                                             \
2360                                                                            \
2361  product(bool, UseGCLogFileRotation, false,                                \
2362          "Prevent large gclog file for long running app. "                 \
2363          "Requires -Xloggc:<filename>")                                    \
2364                                                                            \
2365  product(uintx, NumberOfGCLogFiles, 0,                                     \
2366          "Number of gclog files in rotation, "                             \
2367          "Default: 0, no rotation")                                        \
2368                                                                            \
2369  product(uintx, GCLogFileSize, 0,                                          \
2370          "GC log file size, Default: 0 bytes, no rotation "                \
2371          "Only valid with UseGCLogFileRotation")                           \
2372                                                                            \
2373  /* JVMTI heap profiling */                                                \
2374                                                                            \
2375  diagnostic(bool, TraceJVMTIObjectTagging, false,                          \
2376          "Trace JVMTI object tagging calls")                               \
2377                                                                            \
2378  diagnostic(bool, VerifyBeforeIteration, false,                            \
2379          "Verify memory system before JVMTI iteration")                    \
2380                                                                            \
2381  /* compiler interface */                                                  \
2382                                                                            \
2383  develop(bool, CIPrintCompilerName, false,                                 \
2384          "when CIPrint is active, print the name of the active compiler")  \
2385                                                                            \
2386  develop(bool, CIPrintCompileQueue, false,                                 \
2387          "display the contents of the compile queue whenever a "           \
2388          "compilation is enqueued")                                        \
2389                                                                            \
2390  develop(bool, CIPrintRequests, false,                                     \
2391          "display every request for compilation")                          \
2392                                                                            \
2393  product(bool, CITime, false,                                              \
2394          "collect timing information for compilation")                     \
2395                                                                            \
2396  develop(bool, CITimeEach, false,                                          \
2397          "display timing information after each successful compilation")   \
2398                                                                            \
2399  develop(bool, CICountOSR, true,                                           \
2400          "use a separate counter when assigning ids to osr compilations")  \
2401                                                                            \
2402  develop(bool, CICompileNatives, true,                                     \
2403          "compile native methods if supported by the compiler")            \
2404                                                                            \
2405  develop_pd(bool, CICompileOSR,                                            \
2406          "compile on stack replacement methods if supported by the "       \
2407          "compiler")                                                       \
2408                                                                            \
2409  develop(bool, CIPrintMethodCodes, false,                                  \
2410          "print method bytecodes of the compiled code")                    \
2411                                                                            \
2412  develop(bool, CIPrintTypeFlow, false,                                     \
2413          "print the results of ciTypeFlow analysis")                       \
2414                                                                            \
2415  develop(bool, CITraceTypeFlow, false,                                     \
2416          "detailed per-bytecode tracing of ciTypeFlow analysis")           \
2417                                                                            \
2418  develop(intx, CICloneLoopTestLimit, 100,                                  \
2419          "size limit for blocks heuristically cloned in ciTypeFlow")       \
2420                                                                            \
2421  develop(intx, OSROnlyBCI, -1,                                             \
2422          "OSR only at this bci.  Negative values mean exclude that bci")   \
2423                                                                            \
2424  /* temp diagnostics */                                                    \
2425                                                                            \
2426  diagnostic(bool, TraceRedundantCompiles, false,                           \
2427          "Have compile broker print when a request already in the queue is"\
2428          " requested again")                                               \
2429                                                                            \
2430  diagnostic(bool, InitialCompileFast, false,                               \
2431          "Initial compile at CompLevel_fast_compile")                      \
2432                                                                            \
2433  diagnostic(bool, InitialCompileReallyFast, false,                         \
2434          "Initial compile at CompLevel_really_fast_compile (no profile)")  \
2435                                                                            \
2436  diagnostic(bool, FullProfileOnReInterpret, true,                          \
2437          "On re-interpret unc-trap compile next at CompLevel_fast_compile")\
2438                                                                            \
2439  /* compiler */                                                            \
2440                                                                            \
2441  product(intx, CICompilerCount, CI_COMPILER_COUNT,                         \
2442          "Number of compiler threads to run")                              \
2443                                                                            \
2444  product(intx, CompilationPolicyChoice, 0,                                 \
2445          "which compilation policy (0/1)")                                 \
2446                                                                            \
2447  develop(bool, UseStackBanging, true,                                      \
2448          "use stack banging for stack overflow checks (required for "      \
2449          "proper StackOverflow handling; disable only to measure cost "    \
2450          "of stackbanging)")                                               \
2451                                                                            \
2452  develop(bool, Use24BitFPMode, true,                                       \
2453          "Set 24-bit FPU mode on a per-compile basis ")                    \
2454                                                                            \
2455  develop(bool, Use24BitFP, true,                                           \
2456          "use FP instructions that produce 24-bit precise results")        \
2457                                                                            \
2458  develop(bool, UseStrictFP, true,                                          \
2459          "use strict fp if modifier strictfp is set")                      \
2460                                                                            \
2461  develop(bool, GenerateSynchronizationCode, true,                          \
2462          "generate locking/unlocking code for synchronized methods and "   \
2463          "monitors")                                                       \
2464                                                                            \
2465  develop(bool, GenerateCompilerNullChecks, true,                           \
2466          "Generate explicit null checks for loads/stores/calls")           \
2467                                                                            \
2468  develop(bool, GenerateRangeChecks, true,                                  \
2469          "Generate range checks for array accesses")                       \
2470                                                                            \
2471  develop_pd(bool, ImplicitNullChecks,                                      \
2472          "generate code for implicit null checks")                         \
2473                                                                            \
2474  product(bool, PrintSafepointStatistics, false,                            \
2475          "print statistics about safepoint synchronization")               \
2476                                                                            \
2477  product(intx, PrintSafepointStatisticsCount, 300,                         \
2478          "total number of safepoint statistics collected "                 \
2479          "before printing them out")                                       \
2480                                                                            \
2481  product(intx, PrintSafepointStatisticsTimeout,  -1,                       \
2482          "print safepoint statistics only when safepoint takes"            \
2483          " more than PrintSafepointSatisticsTimeout in millis")            \
2484                                                                            \
2485  product(bool, TraceSafepointCleanupTime, false,                           \
2486          "print the break down of clean up tasks performed during"         \
2487          " safepoint")                                                     \
2488                                                                            \
2489  develop(bool, InlineAccessors, true,                                      \
2490          "inline accessor methods (get/set)")                              \
2491                                                                            \
2492  product(bool, Inline, true,                                               \
2493          "enable inlining")                                                \
2494                                                                            \
2495  product(bool, ClipInlining, true,                                         \
2496          "clip inlining if aggregate method exceeds DesiredMethodLimit")   \
2497                                                                            \
2498  develop(bool, UseCHA, true,                                               \
2499          "enable CHA")                                                     \
2500                                                                            \
2501  product(bool, UseTypeProfile, true,                                       \
2502          "Check interpreter profile for historically monomorphic calls")   \
2503                                                                            \
2504  product(intx, TypeProfileMajorReceiverPercent, 90,                        \
2505          "% of major receiver type to all profiled receivers")             \
2506                                                                            \
2507  notproduct(bool, TimeCompiler, false,                                     \
2508          "time the compiler")                                              \
2509                                                                            \
2510  notproduct(bool, TimeCompiler2, false,                                    \
2511          "detailed time the compiler (requires +TimeCompiler)")            \
2512                                                                            \
2513  diagnostic(bool, PrintInlining, false,                                    \
2514          "prints inlining optimizations")                                  \
2515                                                                            \
2516  diagnostic(bool, PrintIntrinsics, false,                                  \
2517          "prints attempted and successful inlining of intrinsics")         \
2518                                                                            \
2519  product(bool, UseCountLeadingZerosInstruction, false,                     \
2520          "Use count leading zeros instruction")                            \
2521                                                                            \
2522  product(bool, UsePopCountInstruction, false,                              \
2523          "Use population count instruction")                               \
2524                                                                            \
2525  diagnostic(ccstrlist, DisableIntrinsic, "",                               \
2526          "do not expand intrinsics whose (internal) names appear here")    \
2527                                                                            \
2528  develop(bool, StressReflectiveCode, false,                                \
2529          "Use inexact types at allocations, etc., to test reflection")     \
2530                                                                            \
2531  develop(bool, EagerInitialization, false,                                 \
2532          "Eagerly initialize classes if possible")                         \
2533                                                                            \
2534  develop(bool, TraceMethodReplacement, false,                              \
2535          "Print when methods are replaced do to recompilation")            \
2536                                                                            \
2537  develop(bool, PrintMethodFlushing, false,                                 \
2538          "print the nmethods being flushed")                               \
2539                                                                            \
2540  notproduct(bool, LogMultipleMutexLocking, false,                          \
2541          "log locking and unlocking of mutexes (only if multiple locks "   \
2542          "are held)")                                                      \
2543                                                                            \
2544  develop(bool, UseRelocIndex, false,                                       \
2545         "use an index to speed random access to relocations")              \
2546                                                                            \
2547  develop(bool, StressCodeBuffers, false,                                   \
2548         "Exercise code buffer expansion and other rare state changes")     \
2549                                                                            \
2550  diagnostic(bool, DebugNonSafepoints, trueInDebug,                         \
2551         "Generate extra debugging info for non-safepoints in nmethods")    \
2552                                                                            \
2553  diagnostic(bool, DebugInlinedCalls, true,                                 \
2554         "If false, restricts profiled locations to the root method only")  \
2555                                                                            \
2556  product(bool, PrintVMOptions, trueInDebug,                                \
2557         "Print flags that appeared on the command line")                   \
2558                                                                            \
2559  product(bool, IgnoreUnrecognizedVMOptions, false,                         \
2560         "Ignore unrecognized VM options")                                  \
2561                                                                            \
2562  product(bool, PrintCommandLineFlags, false,                               \
2563         "Print flags specified on command line or set by ergonomics")      \
2564                                                                            \
2565  product(bool, PrintFlagsInitial, false,                                   \
2566         "Print all VM flags before argument processing and exit VM")       \
2567                                                                            \
2568  product(bool, PrintFlagsFinal, false,                                     \
2569         "Print all VM flags after argument and ergonomic processing")      \
2570                                                                            \
2571  notproduct(bool, PrintFlagsWithComments, false,                           \
2572         "Print all VM flags with default values and descriptions and exit")\
2573                                                                            \
2574  diagnostic(bool, SerializeVMOutput, true,                                 \
2575         "Use a mutex to serialize output to tty and hotspot.log")          \
2576                                                                            \
2577  diagnostic(bool, DisplayVMOutput, true,                                   \
2578         "Display all VM output on the tty, independently of LogVMOutput")  \
2579                                                                            \
2580  diagnostic(bool, LogVMOutput, trueInDebug,                                \
2581         "Save VM output to hotspot.log, or to LogFile")                    \
2582                                                                            \
2583  diagnostic(ccstr, LogFile, NULL,                                          \
2584         "If LogVMOutput is on, save VM output to this file [hotspot.log]") \
2585                                                                            \
2586  product(ccstr, ErrorFile, NULL,                                           \
2587         "If an error occurs, save the error data to this file "            \
2588         "[default: ./hs_err_pid%p.log] (%p replaced with pid)")            \
2589                                                                            \
2590  product(bool, DisplayVMOutputToStderr, false,                             \
2591         "If DisplayVMOutput is true, display all VM output to stderr")     \
2592                                                                            \
2593  product(bool, DisplayVMOutputToStdout, false,                             \
2594         "If DisplayVMOutput is true, display all VM output to stdout")     \
2595                                                                            \
2596  product(bool, UseHeavyMonitors, false,                                    \
2597          "use heavyweight instead of lightweight Java monitors")           \
2598                                                                            \
2599  notproduct(bool, PrintSymbolTableSizeHistogram, false,                    \
2600          "print histogram of the symbol table")                            \
2601                                                                            \
2602  notproduct(bool, ExitVMOnVerifyError, false,                              \
2603          "standard exit from VM if bytecode verify error "                 \
2604          "(only in debug mode)")                                           \
2605                                                                            \
2606  notproduct(ccstr, AbortVMOnException, NULL,                               \
2607          "Call fatal if this exception is thrown.  Example: "              \
2608          "java -XX:AbortVMOnException=java.lang.NullPointerException Foo") \
2609                                                                            \
2610  notproduct(ccstr, AbortVMOnExceptionMessage, NULL,                        \
2611          "Call fatal if the exception pointed by AbortVMOnException "      \
2612          "has this message.")                                              \
2613                                                                            \
2614  develop(bool, DebugVtables, false,                                        \
2615          "add debugging code to vtable dispatch")                          \
2616                                                                            \
2617  develop(bool, PrintVtables, false,                                        \
2618          "print vtables when printing klass")                              \
2619                                                                            \
2620  notproduct(bool, PrintVtableStats, false,                                 \
2621          "print vtables stats at end of run")                              \
2622                                                                            \
2623  develop(bool, TraceCreateZombies, false,                                  \
2624          "trace creation of zombie nmethods")                              \
2625                                                                            \
2626  notproduct(bool, IgnoreLockingAssertions, false,                          \
2627          "disable locking assertions (for speed)")                         \
2628                                                                            \
2629  notproduct(bool, VerifyLoopOptimizations, false,                          \
2630          "verify major loop optimizations")                                \
2631                                                                            \
2632  product(bool, RangeCheckElimination, true,                                \
2633          "Split loop iterations to eliminate range checks")                \
2634                                                                            \
2635  develop_pd(bool, UncommonNullCast,                                        \
2636          "track occurrences of null in casts; adjust compiler tactics")    \
2637                                                                            \
2638  develop(bool, TypeProfileCasts,  true,                                    \
2639          "treat casts like calls for purposes of type profiling")          \
2640                                                                            \
2641  develop(bool, MonomorphicArrayCheck, true,                                \
2642          "Uncommon-trap array store checks that require full type check")  \
2643                                                                            \
2644  diagnostic(bool, ProfileDynamicTypes, true,                               \
2645          "do extra type profiling and use it more aggressively")           \
2646                                                                            \
2647  develop(bool, DelayCompilationDuringStartup, true,                        \
2648          "Delay invoking the compiler until main application class is "    \
2649          "loaded")                                                         \
2650                                                                            \
2651  develop(bool, CompileTheWorld, false,                                     \
2652          "Compile all methods in all classes in bootstrap class path "     \
2653          "(stress test)")                                                  \
2654                                                                            \
2655  develop(bool, CompileTheWorldPreloadClasses, true,                        \
2656          "Preload all classes used by a class before start loading")       \
2657                                                                            \
2658  notproduct(intx, CompileTheWorldSafepointInterval, 100,                   \
2659          "Force a safepoint every n compiles so sweeper can keep up")      \
2660                                                                            \
2661  develop(bool, TraceIterativeGVN, false,                                   \
2662          "Print progress during Iterative Global Value Numbering")         \
2663                                                                            \
2664  develop(bool, FillDelaySlots, true,                                       \
2665          "Fill delay slots (on SPARC only)")                               \
2666                                                                            \
2667  develop(bool, VerifyIterativeGVN, false,                                  \
2668          "Verify Def-Use modifications during sparse Iterative Global "    \
2669          "Value Numbering")                                                \
2670                                                                            \
2671  notproduct(bool, TracePhaseCCP, false,                                    \
2672          "Print progress during Conditional Constant Propagation")         \
2673                                                                            \
2674  develop(bool, TimeLivenessAnalysis, false,                                \
2675          "Time computation of bytecode liveness analysis")                 \
2676                                                                            \
2677  develop(bool, TraceLivenessGen, false,                                    \
2678          "Trace the generation of liveness analysis information")          \
2679                                                                            \
2680  notproduct(bool, TraceLivenessQuery, false,                               \
2681          "Trace queries of liveness analysis information")                 \
2682                                                                            \
2683  notproduct(bool, CollectIndexSetStatistics, false,                        \
2684          "Collect information about IndexSets")                            \
2685                                                                            \
2686  develop(bool, PrintDominators, false,                                     \
2687          "Print out dominator trees for GVN")                              \
2688                                                                            \
2689  develop(bool, UseLoopSafepoints, true,                                    \
2690          "Generate Safepoint nodes in every loop")                         \
2691                                                                            \
2692  notproduct(bool, TraceCISCSpill, false,                                   \
2693          "Trace allocators use of cisc spillable instructions")            \
2694                                                                            \
2695  notproduct(bool, TraceSpilling, false,                                    \
2696          "Trace spilling")                                                 \
2697                                                                            \
2698  product(bool, SplitIfBlocks, true,                                        \
2699          "Clone compares and control flow through merge points to fold "   \
2700          "some branches")                                                  \
2701                                                                            \
2702  develop(intx, FastAllocateSizeLimit, 128*K,                               \
2703          /* Note:  This value is zero mod 1<<13 for a cheap sparc set. */  \
2704          "Inline allocations larger than this in doublewords must go slow")\
2705                                                                            \
2706  product(bool, AggressiveOpts, false,                                      \
2707          "Enable aggressive optimizations - see arguments.cpp")            \
2708                                                                            \
2709  product(bool, UseStringCache, false,                                      \
2710          "Enable String cache capabilities on String.java")                \
2711                                                                            \
2712  /* statistics */                                                          \
2713  develop(bool, CountCompiledCalls, false,                                  \
2714          "counts method invocations")                                      \
2715                                                                            \
2716  notproduct(bool, CountRuntimeCalls, false,                                \
2717          "counts VM runtime calls")                                        \
2718                                                                            \
2719  develop(bool, CountJNICalls, false,                                       \
2720          "counts jni method invocations")                                  \
2721                                                                            \
2722  notproduct(bool, CountJVMCalls, false,                                    \
2723          "counts jvm method invocations")                                  \
2724                                                                            \
2725  notproduct(bool, CountRemovableExceptions, false,                         \
2726          "count exceptions that could be replaced by branches due to "     \
2727          "inlining")                                                       \
2728                                                                            \
2729  notproduct(bool, ICMissHistogram, false,                                  \
2730          "produce histogram of IC misses")                                 \
2731                                                                            \
2732  notproduct(bool, PrintClassStatistics, false,                             \
2733          "prints class statistics at end of run")                          \
2734                                                                            \
2735  notproduct(bool, PrintMethodStatistics, false,                            \
2736          "prints method statistics at end of run")                         \
2737                                                                            \
2738  /* interpreter */                                                         \
2739  develop(bool, ClearInterpreterLocals, false,                              \
2740          "Always clear local variables of interpreter activations upon "   \
2741          "entry")                                                          \
2742                                                                            \
2743  product_pd(bool, RewriteBytecodes,                                        \
2744          "Allow rewriting of bytecodes (bytecodes are not immutable)")     \
2745                                                                            \
2746  product_pd(bool, RewriteFrequentPairs,                                    \
2747          "Rewrite frequently used bytecode pairs into a single bytecode")  \
2748                                                                            \
2749  diagnostic(bool, PrintInterpreter, false,                                 \
2750          "Prints the generated interpreter code")                          \
2751                                                                            \
2752  product(bool, UseInterpreter, true,                                       \
2753          "Use interpreter for non-compiled methods")                       \
2754                                                                            \
2755  develop(bool, UseFastSignatureHandlers, true,                             \
2756          "Use fast signature handlers for native calls")                   \
2757                                                                            \
2758  develop(bool, UseV8InstrsOnly, false,                                     \
2759          "Use SPARC-V8 Compliant instruction subset")                      \
2760                                                                            \
2761  product(bool, UseNiagaraInstrs, false,                                    \
2762          "Use Niagara-efficient instruction subset")                       \
2763                                                                            \
2764  develop(bool, UseCASForSwap, false,                                       \
2765          "Do not use swap instructions, but only CAS (in a loop) on SPARC")\
2766                                                                            \
2767  product(bool, UseLoopCounter, true,                                       \
2768          "Increment invocation counter on backward branch")                \
2769                                                                            \
2770  product(bool, UseFastEmptyMethods, true,                                  \
2771          "Use fast method entry code for empty methods")                   \
2772                                                                            \
2773  product(bool, UseFastAccessorMethods, true,                               \
2774          "Use fast method entry code for accessor methods")                \
2775                                                                            \
2776  product_pd(bool, UseOnStackReplacement,                                   \
2777           "Use on stack replacement, calls runtime if invoc. counter "     \
2778           "overflows in loop")                                             \
2779                                                                            \
2780  notproduct(bool, TraceOnStackReplacement, false,                          \
2781          "Trace on stack replacement")                                     \
2782                                                                            \
2783  develop(bool, PoisonOSREntry, true,                                       \
2784           "Detect abnormal calls to OSR code")                             \
2785                                                                            \
2786  product_pd(bool, PreferInterpreterNativeStubs,                            \
2787          "Use always interpreter stubs for native methods invoked via "    \
2788          "interpreter")                                                    \
2789                                                                            \
2790  develop(bool, CountBytecodes, false,                                      \
2791          "Count number of bytecodes executed")                             \
2792                                                                            \
2793  develop(bool, PrintBytecodeHistogram, false,                              \
2794          "Print histogram of the executed bytecodes")                      \
2795                                                                            \
2796  develop(bool, PrintBytecodePairHistogram, false,                          \
2797          "Print histogram of the executed bytecode pairs")                 \
2798                                                                            \
2799  diagnostic(bool, PrintSignatureHandlers, false,                           \
2800          "Print code generated for native method signature handlers")      \
2801                                                                            \
2802  develop(bool, VerifyOops, false,                                          \
2803          "Do plausibility checks for oops")                                \
2804                                                                            \
2805  develop(bool, CheckUnhandledOops, false,                                  \
2806          "Check for unhandled oops in VM code")                            \
2807                                                                            \
2808  develop(bool, VerifyJNIFields, trueInDebug,                               \
2809          "Verify jfieldIDs for instance fields")                           \
2810                                                                            \
2811  notproduct(bool, VerifyJNIEnvThread, false,                               \
2812          "Verify JNIEnv.thread == Thread::current() when entering VM "     \
2813          "from JNI")                                                       \
2814                                                                            \
2815  develop(bool, VerifyFPU, false,                                           \
2816          "Verify FPU state (check for NaN's, etc.)")                       \
2817                                                                            \
2818  develop(bool, VerifyThread, false,                                        \
2819          "Watch the thread register for corruption (SPARC only)")          \
2820                                                                            \
2821  develop(bool, VerifyActivationFrameSize, false,                           \
2822          "Verify that activation frame didn't become smaller than its "    \
2823          "minimal size")                                                   \
2824                                                                            \
2825  develop(bool, TraceFrequencyInlining, false,                              \
2826          "Trace frequency based inlining")                                 \
2827                                                                            \
2828  notproduct(bool, TraceTypeProfile, false,                                 \
2829          "Trace type profile")                                             \
2830                                                                            \
2831  develop_pd(bool, InlineIntrinsics,                                        \
2832           "Inline intrinsics that can be statically resolved")             \
2833                                                                            \
2834  product_pd(bool, ProfileInterpreter,                                      \
2835           "Profile at the bytecode level during interpretation")           \
2836                                                                            \
2837  develop_pd(bool, ProfileTraps,                                            \
2838          "Profile deoptimization traps at the bytecode level")             \
2839                                                                            \
2840  product(intx, ProfileMaturityPercentage, 20,                              \
2841          "number of method invocations/branches (expressed as % of "       \
2842          "CompileThreshold) before using the method's profile")            \
2843                                                                            \
2844  develop(bool, PrintMethodData, false,                                     \
2845           "Print the results of +ProfileInterpreter at end of run")        \
2846                                                                            \
2847  develop(bool, VerifyDataPointer, trueInDebug,                             \
2848          "Verify the method data pointer during interpreter profiling")    \
2849                                                                            \
2850  develop(bool, VerifyCompiledCode, false,                                  \
2851          "Include miscellaneous runtime verifications in nmethod code; "   \
2852          "default off because it disturbs nmethod size heuristics")        \
2853                                                                            \
2854  notproduct(bool, CrashGCForDumpingJavaThread, false,                      \
2855          "Manually make GC thread crash then dump java stack trace;  "     \
2856          "Test only")                                                      \
2857                                                                            \
2858  /* compilation */                                                         \
2859  product(bool, UseCompiler, true,                                          \
2860          "use compilation")                                                \
2861                                                                            \
2862  develop(bool, TraceCompilationPolicy, false,                              \
2863          "Trace compilation policy")                                       \
2864                                                                            \
2865  develop(bool, TimeCompilationPolicy, false,                               \
2866          "Time the compilation policy")                                    \
2867                                                                            \
2868  product(bool, UseCounterDecay, true,                                      \
2869           "adjust recompilation counters")                                 \
2870                                                                            \
2871  develop(intx, CounterHalfLifeTime,    30,                                 \
2872          "half-life time of invocation counters (in secs)")                \
2873                                                                            \
2874  develop(intx, CounterDecayMinIntervalLength,   500,                       \
2875          "Min. ms. between invocation of CounterDecay")                    \
2876                                                                            \
2877  product(bool, AlwaysCompileLoopMethods, false,                            \
2878          "when using recompilation, never interpret methods "              \
2879          "containing loops")                                               \
2880                                                                            \
2881  product(bool, DontCompileHugeMethods, true,                               \
2882          "don't compile methods > HugeMethodLimit")                        \
2883                                                                            \
2884  /* Bytecode escape analysis estimation. */                                \
2885  product(bool, EstimateArgEscape, true,                                    \
2886          "Analyze bytecodes to estimate escape state of arguments")        \
2887                                                                            \
2888  product(intx, BCEATraceLevel, 0,                                          \
2889          "How much tracing to do of bytecode escape analysis estimates")   \
2890                                                                            \
2891  product(intx, MaxBCEAEstimateLevel, 5,                                    \
2892          "Maximum number of nested calls that are analyzed by BC EA.")     \
2893                                                                            \
2894  product(intx, MaxBCEAEstimateSize, 150,                                   \
2895          "Maximum bytecode size of a method to be analyzed by BC EA.")     \
2896                                                                            \
2897  product(intx,  AllocatePrefetchStyle, 1,                                  \
2898          "0 = no prefetch, "                                               \
2899          "1 = prefetch instructions for each allocation, "                 \
2900          "2 = use TLAB watermark to gate allocation prefetch, "            \
2901          "3 = use BIS instruction on Sparc for allocation prefetch")       \
2902                                                                            \
2903  product(intx,  AllocatePrefetchDistance, -1,                              \
2904          "Distance to prefetch ahead of allocation pointer")               \
2905                                                                            \
2906  product(intx,  AllocatePrefetchLines, 3,                                  \
2907          "Number of lines to prefetch ahead of array allocation pointer")  \
2908                                                                            \
2909  product(intx,  AllocateInstancePrefetchLines, 1,                          \
2910          "Number of lines to prefetch ahead of instance allocation pointer") \
2911                                                                            \
2912  product(intx,  AllocatePrefetchStepSize, 16,                              \
2913          "Step size in bytes of sequential prefetch instructions")         \
2914                                                                            \
2915  product(intx,  AllocatePrefetchInstr, 0,                                  \
2916          "Prefetch instruction to prefetch ahead of allocation pointer")   \
2917                                                                            \
2918  product(intx,  ReadPrefetchInstr, 0,                                      \
2919          "Prefetch instruction to prefetch ahead")                         \
2920                                                                            \
2921  /* deoptimization */                                                      \
2922  develop(bool, TraceDeoptimization, false,                                 \
2923          "Trace deoptimization")                                           \
2924                                                                            \
2925  develop(bool, DebugDeoptimization, false,                                 \
2926          "Tracing various information while debugging deoptimization")     \
2927                                                                            \
2928  product(intx, SelfDestructTimer, 0,                                       \
2929          "Will cause VM to terminate after a given time (in minutes) "     \
2930          "(0 means off)")                                                  \
2931                                                                            \
2932  product(intx, MaxJavaStackTraceDepth, 1024,                               \
2933          "Max. no. of lines in the stack trace for Java exceptions "       \
2934          "(0 means all)")                                                  \
2935                                                                            \
2936  NOT_EMBEDDED(diagnostic(intx, GuaranteedSafepointInterval, 1000,          \
2937          "Guarantee a safepoint (at least) every so many milliseconds "    \
2938          "(0 means none)"))                                                \
2939                                                                            \
2940  EMBEDDED_ONLY(product(intx, GuaranteedSafepointInterval, 0,               \
2941          "Guarantee a safepoint (at least) every so many milliseconds "    \
2942          "(0 means none)"))                                                \
2943                                                                            \
2944  product(intx, SafepointTimeoutDelay, 10000,                               \
2945          "Delay in milliseconds for option SafepointTimeout")              \
2946                                                                            \
2947  product(intx, NmethodSweepFraction, 4,                                    \
2948          "Number of invocations of sweeper to cover all nmethods")         \
2949                                                                            \
2950  product(intx, NmethodSweepCheckInterval, 5,                               \
2951          "Compilers wake up every n seconds to possibly sweep nmethods")   \
2952                                                                            \
2953  notproduct(bool, LogSweeper, false,                                       \
2954            "Keep a ring buffer of sweeper activity")                       \
2955                                                                            \
2956  notproduct(intx, SweeperLogEntries, 1024,                                 \
2957            "Number of records in the ring buffer of sweeper activity")     \
2958                                                                            \
2959  notproduct(intx, MemProfilingInterval, 500,                               \
2960          "Time between each invocation of the MemProfiler")                \
2961                                                                            \
2962  develop(intx, MallocCatchPtr, -1,                                         \
2963          "Hit breakpoint when mallocing/freeing this pointer")             \
2964                                                                            \
2965  notproduct(intx, AssertRepeat, 1,                                         \
2966          "number of times to evaluate expression in assert "               \
2967          "(to estimate overhead); only works with -DUSE_REPEATED_ASSERTS") \
2968                                                                            \
2969  notproduct(ccstrlist, SuppressErrorAt, "",                                \
2970          "List of assertions (file:line) to muzzle")                       \
2971                                                                            \
2972  notproduct(uintx, HandleAllocationLimit, 1024,                            \
2973          "Threshold for HandleMark allocation when +TraceHandleAllocation "\
2974          "is used")                                                        \
2975                                                                            \
2976  develop(uintx, TotalHandleAllocationLimit, 1024,                          \
2977          "Threshold for total handle allocation when "                     \
2978          "+TraceHandleAllocation is used")                                 \
2979                                                                            \
2980  develop(intx, StackPrintLimit, 100,                                       \
2981          "number of stack frames to print in VM-level stack dump")         \
2982                                                                            \
2983  notproduct(intx, MaxElementPrintSize, 256,                                \
2984          "maximum number of elements to print")                            \
2985                                                                            \
2986  notproduct(intx, MaxSubklassPrintSize, 4,                                 \
2987          "maximum number of subklasses to print when printing klass")      \
2988                                                                            \
2989  product(intx, MaxInlineLevel, 9,                                          \
2990          "maximum number of nested calls that are inlined")                \
2991                                                                            \
2992  product(intx, MaxRecursiveInlineLevel, 1,                                 \
2993          "maximum number of nested recursive calls that are inlined")      \
2994                                                                            \
2995  product_pd(intx, InlineSmallCode,                                         \
2996          "Only inline already compiled methods if their code size is "     \
2997          "less than this")                                                 \
2998                                                                            \
2999  product(intx, MaxInlineSize, 35,                                          \
3000          "maximum bytecode size of a method to be inlined")                \
3001                                                                            \
3002  product_pd(intx, FreqInlineSize,                                          \
3003          "maximum bytecode size of a frequent method to be inlined")       \
3004                                                                            \
3005  product(intx, MaxTrivialSize, 6,                                          \
3006          "maximum bytecode size of a trivial method to be inlined")        \
3007                                                                            \
3008  product(intx, MinInliningThreshold, 250,                                  \
3009          "min. invocation count a method needs to have to be inlined")     \
3010                                                                            \
3011  develop(intx, AlignEntryCode, 4,                                          \
3012          "aligns entry code to specified value (in bytes)")                \
3013                                                                            \
3014  develop(intx, MethodHistogramCutoff, 100,                                 \
3015          "cutoff value for method invoc. histogram (+CountCalls)")         \
3016                                                                            \
3017  develop(intx, ProfilerNumberOfInterpretedMethods, 25,                     \
3018          "# of interpreted methods to show in profile")                    \
3019                                                                            \
3020  develop(intx, ProfilerNumberOfCompiledMethods, 25,                        \
3021          "# of compiled methods to show in profile")                       \
3022                                                                            \
3023  develop(intx, ProfilerNumberOfStubMethods, 25,                            \
3024          "# of stub methods to show in profile")                           \
3025                                                                            \
3026  develop(intx, ProfilerNumberOfRuntimeStubNodes, 25,                       \
3027          "# of runtime stub nodes to show in profile")                     \
3028                                                                            \
3029  product(intx, ProfileIntervalsTicks, 100,                                 \
3030          "# of ticks between printing of interval profile "                \
3031          "(+ProfileIntervals)")                                            \
3032                                                                            \
3033  notproduct(intx, ScavengeALotInterval,     1,                             \
3034          "Interval between which scavenge will occur with +ScavengeALot")  \
3035                                                                            \
3036  notproduct(intx, FullGCALotInterval,     1,                               \
3037          "Interval between which full gc will occur with +FullGCALot")     \
3038                                                                            \
3039  notproduct(intx, FullGCALotStart,     0,                                  \
3040          "For which invocation to start FullGCAlot")                       \
3041                                                                            \
3042  notproduct(intx, FullGCALotDummies,  32*K,                                \
3043          "Dummy object allocated with +FullGCALot, forcing all objects "   \
3044          "to move")                                                        \
3045                                                                            \
3046  develop(intx, DontYieldALotInterval,    10,                               \
3047          "Interval between which yields will be dropped (milliseconds)")   \
3048                                                                            \
3049  develop(intx, MinSleepInterval,     1,                                    \
3050          "Minimum sleep() interval (milliseconds) when "                   \
3051          "ConvertSleepToYield is off (used for SOLARIS)")                  \
3052                                                                            \
3053  product(intx, EventLogLength,  2000,                                      \
3054          "maximum nof events in event log")                                \
3055                                                                            \
3056  develop(intx, ProfilerPCTickThreshold,    15,                             \
3057          "Number of ticks in a PC buckets to be a hotspot")                \
3058                                                                            \
3059  notproduct(intx, DeoptimizeALotInterval,     5,                           \
3060          "Number of exits until DeoptimizeALot kicks in")                  \
3061                                                                            \
3062  notproduct(intx, ZombieALotInterval,     5,                               \
3063          "Number of exits until ZombieALot kicks in")                      \
3064                                                                            \
3065  develop(bool, StressNonEntrant, false,                                    \
3066          "Mark nmethods non-entrant at registration")                      \
3067                                                                            \
3068  diagnostic(intx, MallocVerifyInterval,     0,                             \
3069          "if non-zero, verify C heap after every N calls to "              \
3070          "malloc/realloc/free")                                            \
3071                                                                            \
3072  diagnostic(intx, MallocVerifyStart,     0,                                \
3073          "if non-zero, start verifying C heap after Nth call to "          \
3074          "malloc/realloc/free")                                            \
3075                                                                            \
3076  product(intx, TypeProfileWidth,     2,                                   \
3077          "number of receiver types to record in call/cast profile")        \
3078                                                                            \
3079  develop(intx, BciProfileWidth,      2,                                    \
3080          "number of return bci's to record in ret profile")                \
3081                                                                            \
3082  product(intx, PerMethodRecompilationCutoff, 400,                          \
3083          "After recompiling N times, stay in the interpreter (-1=>'Inf')") \
3084                                                                            \
3085  product(intx, PerBytecodeRecompilationCutoff, 200,                        \
3086          "Per-BCI limit on repeated recompilation (-1=>'Inf')")            \
3087                                                                            \
3088  product(intx, PerMethodTrapLimit,  100,                                   \
3089          "Limit on traps (of one kind) in a method (includes inlines)")    \
3090                                                                            \
3091  product(intx, PerBytecodeTrapLimit,  4,                                   \
3092          "Limit on traps (of one kind) at a particular BCI")               \
3093                                                                            \
3094  develop(intx, FreqCountInvocations,  1,                                   \
3095          "Scaling factor for branch frequencies (deprecated)")             \
3096                                                                            \
3097  develop(intx, InlineFrequencyRatio,    20,                                \
3098          "Ratio of call site execution to caller method invocation")       \
3099                                                                            \
3100  develop_pd(intx, InlineFrequencyCount,                                    \
3101          "Count of call site execution necessary to trigger frequent "     \
3102          "inlining")                                                       \
3103                                                                            \
3104  develop(intx, InlineThrowCount,    50,                                    \
3105          "Force inlining of interpreted methods that throw this often")    \
3106                                                                            \
3107  develop(intx, InlineThrowMaxSize,   200,                                  \
3108          "Force inlining of throwing methods smaller than this")           \
3109                                                                            \
3110  product(intx, AliasLevel,     3,                                          \
3111          "0 for no aliasing, 1 for oop/field/static/array split, "         \
3112          "2 for class split, 3 for unique instances")                      \
3113                                                                            \
3114  develop(bool, VerifyAliases, false,                                       \
3115          "perform extra checks on the results of alias analysis")          \
3116                                                                            \
3117  develop(intx, ProfilerNodeSize,  1024,                                    \
3118          "Size in K to allocate for the Profile Nodes of each thread")     \
3119                                                                            \
3120  develop(intx, V8AtomicOperationUnderLockSpinCount,    50,                 \
3121          "Number of times to spin wait on a v8 atomic operation lock")     \
3122                                                                            \
3123  product(intx, ReadSpinIterations,   100,                                  \
3124          "Number of read attempts before a yield (spin inner loop)")       \
3125                                                                            \
3126  product_pd(intx, PreInflateSpin,                                          \
3127          "Number of times to spin wait before inflation")                  \
3128                                                                            \
3129  product(intx, PreBlockSpin,    10,                                        \
3130          "Number of times to spin in an inflated lock before going to "    \
3131          "an OS lock")                                                     \
3132                                                                            \
3133  /* gc parameters */                                                       \
3134  product(uintx, InitialHeapSize, 0,                                        \
3135          "Initial heap size (in bytes); zero means OldSize + NewSize")     \
3136                                                                            \
3137  product(uintx, MaxHeapSize, ScaleForWordSize(96*M),                       \
3138          "Maximum heap size (in bytes)")                                   \
3139                                                                            \
3140  product(uintx, OldSize, ScaleForWordSize(4*M),                            \
3141          "Initial tenured generation size (in bytes)")                     \
3142                                                                            \
3143  product(uintx, NewSize, ScaleForWordSize(1*M),                            \
3144          "Initial new generation size (in bytes)")                         \
3145                                                                            \
3146  product(uintx, MaxNewSize, max_uintx,                                     \
3147          "Maximum new generation size (in bytes), max_uintx means set "    \
3148          "ergonomically")                                                  \
3149                                                                            \
3150  product(uintx, PretenureSizeThreshold, 0,                                 \
3151          "Maximum size in bytes of objects allocated in DefNew "           \
3152          "generation; zero means no maximum")                              \
3153                                                                            \
3154  product(uintx, TLABSize, 0,                                               \
3155          "Starting TLAB size (in bytes); zero means set ergonomically")    \
3156                                                                            \
3157  product(uintx, MinTLABSize, 2*K,                                          \
3158          "Minimum allowed TLAB size (in bytes)")                           \
3159                                                                            \
3160  product(uintx, TLABAllocationWeight, 35,                                  \
3161          "Allocation averaging weight")                                    \
3162                                                                            \
3163  product(uintx, TLABWasteTargetPercent, 1,                                 \
3164          "Percentage of Eden that can be wasted")                          \
3165                                                                            \
3166  product(uintx, TLABRefillWasteFraction,    64,                            \
3167          "Max TLAB waste at a refill (internal fragmentation)")            \
3168                                                                            \
3169  product(uintx, TLABWasteIncrement,    4,                                  \
3170          "Increment allowed waste at slow allocation")                     \
3171                                                                            \
3172  product(intx, SurvivorRatio, 8,                                           \
3173          "Ratio of eden/survivor space size")                              \
3174                                                                            \
3175  product(intx, NewRatio, 2,                                                \
3176          "Ratio of new/old generation sizes")                              \
3177                                                                            \
3178  product_pd(uintx, NewSizeThreadIncrease,                                  \
3179          "Additional size added to desired new generation size per "       \
3180          "non-daemon thread (in bytes)")                                   \
3181                                                                            \
3182  product_pd(uintx, PermSize,                                               \
3183          "Initial size of permanent generation (in bytes)")                \
3184                                                                            \
3185  product_pd(uintx, MaxPermSize,                                            \
3186          "Maximum size of permanent generation (in bytes)")                \
3187                                                                            \
3188  product(uintx, MinHeapFreeRatio,    40,                                   \
3189          "Min percentage of heap free after GC to avoid expansion")        \
3190                                                                            \
3191  product(uintx, MaxHeapFreeRatio,    70,                                   \
3192          "Max percentage of heap free after GC to avoid shrinking")        \
3193                                                                            \
3194  product(intx, SoftRefLRUPolicyMSPerMB, 1000,                              \
3195          "Number of milliseconds per MB of free space in the heap")        \
3196                                                                            \
3197  product(uintx, MinHeapDeltaBytes, ScaleForWordSize(128*K),                \
3198          "Min change in heap space due to GC (in bytes)")                  \
3199                                                                            \
3200  product(uintx, MinPermHeapExpansion, ScaleForWordSize(256*K),             \
3201          "Min expansion of permanent heap (in bytes)")                     \
3202                                                                            \
3203  product(uintx, MaxPermHeapExpansion, ScaleForWordSize(4*M),               \
3204          "Max expansion of permanent heap without full GC (in bytes)")     \
3205                                                                            \
3206  product(intx, QueuedAllocationWarningCount, 0,                            \
3207          "Number of times an allocation that queues behind a GC "          \
3208          "will retry before printing a warning")                           \
3209                                                                            \
3210  diagnostic(uintx, VerifyGCStartAt,   0,                                   \
3211          "GC invoke count where +VerifyBefore/AfterGC kicks in")           \
3212                                                                            \
3213  diagnostic(intx, VerifyGCLevel,     0,                                    \
3214          "Generation level at which to start +VerifyBefore/AfterGC")       \
3215                                                                            \
3216  develop(uintx, ExitAfterGCNum,   0,                                       \
3217          "If non-zero, exit after this GC.")                               \
3218                                                                            \
3219  product(intx, MaxTenuringThreshold,    15,                                \
3220          "Maximum value for tenuring threshold")                           \
3221                                                                            \
3222  product(intx, InitialTenuringThreshold,     7,                            \
3223          "Initial value for tenuring threshold")                           \
3224                                                                            \
3225  product(intx, TargetSurvivorRatio,    50,                                 \
3226          "Desired percentage of survivor space used after scavenge")       \
3227                                                                            \
3228  product(uintx, MarkSweepDeadRatio,     5,                                 \
3229          "Percentage (0-100) of the old gen allowed as dead wood."         \
3230          "Serial mark sweep treats this as both the min and max value."    \
3231          "CMS uses this value only if it falls back to mark sweep."        \
3232          "Par compact uses a variable scale based on the density of the"   \
3233          "generation and treats this as the max value when the heap is"    \
3234          "either completely full or completely empty.  Par compact also"   \
3235          "has a smaller default value; see arguments.cpp.")                \
3236                                                                            \
3237  product(uintx, PermMarkSweepDeadRatio,    20,                             \
3238          "Percentage (0-100) of the perm gen allowed as dead wood."        \
3239          "See MarkSweepDeadRatio for collector-specific comments.")        \
3240                                                                            \
3241  product(intx, MarkSweepAlwaysCompactCount,     4,                         \
3242          "How often should we fully compact the heap (ignoring the dead "  \
3243          "space parameters)")                                              \
3244                                                                            \
3245  product(intx, PrintCMSStatistics, 0,                                      \
3246          "Statistics for CMS")                                             \
3247                                                                            \
3248  product(bool, PrintCMSInitiationStatistics, false,                        \
3249          "Statistics for initiating a CMS collection")                     \
3250                                                                            \
3251  product(intx, PrintFLSStatistics, 0,                                      \
3252          "Statistics for CMS' FreeListSpace")                              \
3253                                                                            \
3254  product(intx, PrintFLSCensus, 0,                                          \
3255          "Census for CMS' FreeListSpace")                                  \
3256                                                                            \
3257  develop(uintx, GCExpandToAllocateDelayMillis, 0,                          \
3258          "Delay in ms between expansion and allocation")                   \
3259                                                                            \
3260  product(intx, DeferThrSuspendLoopCount,     4000,                         \
3261          "(Unstable) Number of times to iterate in safepoint loop "        \
3262          " before blocking VM threads ")                                   \
3263                                                                            \
3264  product(intx, DeferPollingPageLoopCount,     -1,                          \
3265          "(Unsafe,Unstable) Number of iterations in safepoint loop "       \
3266          "before changing safepoint polling page to RO ")                  \
3267                                                                            \
3268  product(intx, SafepointSpinBeforeYield, 2000,  "(Unstable)")              \
3269                                                                            \
3270  product(bool, PSChunkLargeArrays, true,                                   \
3271          "true: process large arrays in chunks")                           \
3272                                                                            \
3273  product(uintx, GCDrainStackTargetSize, 64,                                \
3274          "how many entries we'll try to leave on the stack during "        \
3275          "parallel GC")                                                    \
3276                                                                            \
3277  /* stack parameters */                                                    \
3278  product_pd(intx, StackYellowPages,                                        \
3279          "Number of yellow zone (recoverable overflows) pages")            \
3280                                                                            \
3281  product_pd(intx, StackRedPages,                                           \
3282          "Number of red zone (unrecoverable overflows) pages")             \
3283                                                                            \
3284  product_pd(intx, StackShadowPages,                                        \
3285          "Number of shadow zone (for overflow checking) pages"             \
3286          " this should exceed the depth of the VM and native call stack")  \
3287                                                                            \
3288  product_pd(intx, ThreadStackSize,                                         \
3289          "Thread Stack Size (in Kbytes)")                                  \
3290                                                                            \
3291  product_pd(intx, VMThreadStackSize,                                       \
3292          "Non-Java Thread Stack Size (in Kbytes)")                         \
3293                                                                            \
3294  product_pd(intx, CompilerThreadStackSize,                                 \
3295          "Compiler Thread Stack Size (in Kbytes)")                         \
3296                                                                            \
3297  develop_pd(uintx, JVMInvokeMethodSlack,                                   \
3298          "Stack space (bytes) required for JVM_InvokeMethod to complete")  \
3299                                                                            \
3300  product(uintx, ThreadSafetyMargin, 50*M,                                  \
3301          "Thread safety margin is used on fixed-stack LinuxThreads (on "   \
3302          "Linux/x86 only) to prevent heap-stack collision. Set to 0 to "   \
3303          "disable this feature")                                           \
3304                                                                            \
3305  /* code cache parameters */                                               \
3306  develop(uintx, CodeCacheSegmentSize, 64,                                  \
3307          "Code cache segment size (in bytes) - smallest unit of "          \
3308          "allocation")                                                     \
3309                                                                            \
3310  develop_pd(intx, CodeEntryAlignment,                                      \
3311          "Code entry alignment for generated code (in bytes)")             \
3312                                                                            \
3313  product_pd(intx, OptoLoopAlignment,                                       \
3314          "Align inner loops to zero relative to this modulus")             \
3315                                                                            \
3316  product_pd(uintx, InitialCodeCacheSize,                                   \
3317          "Initial code cache size (in bytes)")                             \
3318                                                                            \
3319  product_pd(uintx, ReservedCodeCacheSize,                                  \
3320          "Reserved code cache size (in bytes) - maximum code cache size")  \
3321                                                                            \
3322  product(uintx, CodeCacheMinimumFreeSpace, 500*K,                          \
3323          "When less than X space left, we stop compiling.")                \
3324                                                                            \
3325  product_pd(uintx, CodeCacheExpansionSize,                                 \
3326          "Code cache expansion size (in bytes)")                           \
3327                                                                            \
3328  develop_pd(uintx, CodeCacheMinBlockLength,                                \
3329          "Minimum number of segments in a code cache block.")              \
3330                                                                            \
3331  notproduct(bool, ExitOnFullCodeCache, false,                              \
3332          "Exit the VM if we fill the code cache.")                         \
3333                                                                            \
3334  product(bool, UseCodeCacheFlushing, false,                                \
3335          "Attempt to clean the code cache before shutting off compiler")   \
3336                                                                            \
3337  product(intx,  MinCodeCacheFlushingInterval, 30,                          \
3338          "Min number of seconds between code cache cleaning sessions")     \
3339                                                                            \
3340  product(uintx,  CodeCacheFlushingMinimumFreeSpace, 1500*K,                \
3341          "When less than X space left, start code cache cleaning")         \
3342                                                                            \
3343  /* interpreter debugging */                                               \
3344  develop(intx, BinarySwitchThreshold, 5,                                   \
3345          "Minimal number of lookupswitch entries for rewriting to binary " \
3346          "switch")                                                         \
3347                                                                            \
3348  develop(intx, StopInterpreterAt, 0,                                       \
3349          "Stops interpreter execution at specified bytecode number")       \
3350                                                                            \
3351  develop(intx, TraceBytecodesAt, 0,                                        \
3352          "Traces bytecodes starting with specified bytecode number")       \
3353                                                                            \
3354  /* compiler interface */                                                  \
3355  develop(intx, CIStart, 0,                                                 \
3356          "the id of the first compilation to permit")                      \
3357                                                                            \
3358  develop(intx, CIStop,    -1,                                              \
3359          "the id of the last compilation to permit")                       \
3360                                                                            \
3361  develop(intx, CIStartOSR,     0,                                          \
3362          "the id of the first osr compilation to permit "                  \
3363          "(CICountOSR must be on)")                                        \
3364                                                                            \
3365  develop(intx, CIStopOSR,    -1,                                           \
3366          "the id of the last osr compilation to permit "                   \
3367          "(CICountOSR must be on)")                                        \
3368                                                                            \
3369  develop(intx, CIBreakAtOSR,    -1,                                        \
3370          "id of osr compilation to break at")                              \
3371                                                                            \
3372  develop(intx, CIBreakAt,    -1,                                           \
3373          "id of compilation to break at")                                  \
3374                                                                            \
3375  product(ccstrlist, CompileOnly, "",                                       \
3376          "List of methods (pkg/class.name) to restrict compilation to")    \
3377                                                                            \
3378  product(ccstr, CompileCommandFile, NULL,                                  \
3379          "Read compiler commands from this file [.hotspot_compiler]")      \
3380                                                                            \
3381  product(ccstrlist, CompileCommand, "",                                    \
3382          "Prepend to .hotspot_compiler; e.g. log,java/lang/String.<init>") \
3383                                                                            \
3384  product(bool, CICompilerCountPerCPU, false,                               \
3385          "1 compiler thread for log(N CPUs)")                              \
3386                                                                            \
3387  develop(intx, CIFireOOMAt,    -1,                                         \
3388          "Fire OutOfMemoryErrors throughout CI for testing the compiler "  \
3389          "(non-negative value throws OOM after this many CI accesses "     \
3390          "in each compile)")                                               \
3391                                                                            \
3392  develop(intx, CIFireOOMAtDelay, -1,                                       \
3393          "Wait for this many CI accesses to occur in all compiles before " \
3394          "beginning to throw OutOfMemoryErrors in each compile")           \
3395                                                                            \
3396  notproduct(bool, CIObjectFactoryVerify, false,                            \
3397          "enable potentially expensive verification in ciObjectFactory")   \
3398                                                                            \
3399  /* Priorities */                                                          \
3400  product_pd(bool, UseThreadPriorities,  "Use native thread priorities")    \
3401                                                                            \
3402  product(intx, ThreadPriorityPolicy, 0,                                    \
3403          "0 : Normal.                                                     "\
3404          "    VM chooses priorities that are appropriate for normal       "\
3405          "    applications. On Solaris NORM_PRIORITY and above are mapped "\
3406          "    to normal native priority. Java priorities below NORM_PRIORITY"\
3407          "    map to lower native priority values. On Windows applications"\
3408          "    are allowed to use higher native priorities. However, with  "\
3409          "    ThreadPriorityPolicy=0, VM will not use the highest possible"\
3410          "    native priority, THREAD_PRIORITY_TIME_CRITICAL, as it may   "\
3411          "    interfere with system threads. On Linux thread priorities   "\
3412          "    are ignored because the OS does not support static priority "\
3413          "    in SCHED_OTHER scheduling class which is the only choice for"\
3414          "    non-root, non-realtime applications.                        "\
3415          "1 : Aggressive.                                                 "\
3416          "    Java thread priorities map over to the entire range of      "\
3417          "    native thread priorities. Higher Java thread priorities map "\
3418          "    to higher native thread priorities. This policy should be   "\
3419          "    used with care, as sometimes it can cause performance       "\
3420          "    degradation in the application and/or the entire system. On "\
3421          "    Linux this policy requires root privilege.")                 \
3422                                                                            \
3423  product(bool, ThreadPriorityVerbose, false,                               \
3424          "print priority changes")                                         \
3425                                                                            \
3426  product(intx, DefaultThreadPriority, -1,                                  \
3427          "what native priority threads run at if not specified elsewhere (-1 means no change)") \
3428                                                                            \
3429  product(intx, CompilerThreadPriority, -1,                                 \
3430          "what priority should compiler threads run at (-1 means no change)") \
3431                                                                            \
3432  product(intx, VMThreadPriority, -1,                                       \
3433          "what priority should VM threads run at (-1 means no change)")    \
3434                                                                            \
3435  product(bool, CompilerThreadHintNoPreempt, true,                          \
3436          "(Solaris only) Give compiler threads an extra quanta")           \
3437                                                                            \
3438  product(bool, VMThreadHintNoPreempt, false,                               \
3439          "(Solaris only) Give VM thread an extra quanta")                  \
3440                                                                            \
3441  product(intx, JavaPriority1_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3442  product(intx, JavaPriority2_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3443  product(intx, JavaPriority3_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3444  product(intx, JavaPriority4_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3445  product(intx, JavaPriority5_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3446  product(intx, JavaPriority6_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3447  product(intx, JavaPriority7_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3448  product(intx, JavaPriority8_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3449  product(intx, JavaPriority9_To_OSPriority, -1, "Map Java priorities to OS priorities") \
3450  product(intx, JavaPriority10_To_OSPriority,-1, "Map Java priorities to OS priorities") \
3451                                                                            \
3452  /* compiler debugging */                                                  \
3453  notproduct(intx, CompileTheWorldStartAt,     1,                           \
3454          "First class to consider when using +CompileTheWorld")            \
3455                                                                            \
3456  notproduct(intx, CompileTheWorldStopAt, max_jint,                         \
3457          "Last class to consider when using +CompileTheWorld")             \
3458                                                                            \
3459  develop(intx, NewCodeParameter,      0,                                   \
3460          "Testing Only: Create a dedicated integer parameter before "      \
3461          "putback")                                                        \
3462                                                                            \
3463  /* new oopmap storage allocation */                                       \
3464  develop(intx, MinOopMapAllocation,     8,                                 \
3465          "Minimum number of OopMap entries in an OopMapSet")               \
3466                                                                            \
3467  /* Background Compilation */                                              \
3468  develop(intx, LongCompileThreshold,     50,                               \
3469          "Used with +TraceLongCompiles")                                   \
3470                                                                            \
3471  product(intx, StarvationMonitorInterval,    200,                          \
3472          "Pause between each check in ms")                                 \
3473                                                                            \
3474  /* recompilation */                                                       \
3475  product_pd(intx, CompileThreshold,                                        \
3476          "number of interpreted method invocations before (re-)compiling") \
3477                                                                            \
3478  product_pd(intx, BackEdgeThreshold,                                       \
3479          "Interpreter Back edge threshold at which an OSR compilation is invoked")\
3480                                                                            \
3481  product(intx, Tier0InvokeNotifyFreqLog, 7,                                \
3482          "Interpreter (tier 0) invocation notification frequency.")        \
3483                                                                            \
3484  product(intx, Tier2InvokeNotifyFreqLog, 11,                               \
3485          "C1 without MDO (tier 2) invocation notification frequency.")     \
3486                                                                            \
3487  product(intx, Tier3InvokeNotifyFreqLog, 10,                               \
3488          "C1 with MDO profiling (tier 3) invocation notification "         \
3489          "frequency.")                                                     \
3490                                                                            \
3491  product(intx, Tier0BackedgeNotifyFreqLog, 10,                             \
3492          "Interpreter (tier 0) invocation notification frequency.")        \
3493                                                                            \
3494  product(intx, Tier2BackedgeNotifyFreqLog, 14,                             \
3495          "C1 without MDO (tier 2) invocation notification frequency.")     \
3496                                                                            \
3497  product(intx, Tier3BackedgeNotifyFreqLog, 13,                             \
3498          "C1 with MDO profiling (tier 3) invocation notification "         \
3499          "frequency.")                                                     \
3500                                                                            \
3501  product(intx, Tier2CompileThreshold, 0,                                   \
3502          "threshold at which tier 2 compilation is invoked")               \
3503                                                                            \
3504  product(intx, Tier2BackEdgeThreshold, 0,                                  \
3505          "Back edge threshold at which tier 2 compilation is invoked")     \
3506                                                                            \
3507  product(intx, Tier3InvocationThreshold, 200,                              \
3508          "Compile if number of method invocations crosses this "           \
3509          "threshold")                                                      \
3510                                                                            \
3511  product(intx, Tier3MinInvocationThreshold, 100,                           \
3512          "Minimum invocation to compile at tier 3")                        \
3513                                                                            \
3514  product(intx, Tier3CompileThreshold, 2000,                                \
3515          "Threshold at which tier 3 compilation is invoked (invocation "   \
3516          "minimum must be satisfied.")                                     \
3517                                                                            \
3518  product(intx, Tier3BackEdgeThreshold,  7000,                              \
3519          "Back edge threshold at which tier 3 OSR compilation is invoked") \
3520                                                                            \
3521  product(intx, Tier4InvocationThreshold, 5000,                             \
3522          "Compile if number of method invocations crosses this "           \
3523          "threshold")                                                      \
3524                                                                            \
3525  product(intx, Tier4MinInvocationThreshold, 600,                           \
3526          "Minimum invocation to compile at tier 4")                        \
3527                                                                            \
3528  product(intx, Tier4CompileThreshold, 15000,                               \
3529          "Threshold at which tier 4 compilation is invoked (invocation "   \
3530          "minimum must be satisfied.")                                     \
3531                                                                            \
3532  product(intx, Tier4BackEdgeThreshold, 40000,                              \
3533          "Back edge threshold at which tier 4 OSR compilation is invoked") \
3534                                                                            \
3535  product(intx, Tier3DelayOn, 5,                                            \
3536          "If C2 queue size grows over this amount per compiler thread "    \
3537          "stop compiling at tier 3 and start compiling at tier 2")         \
3538                                                                            \
3539  product(intx, Tier3DelayOff, 2,                                           \
3540          "If C2 queue size is less than this amount per compiler thread "  \
3541          "allow methods compiled at tier 2 transition to tier 3")          \
3542                                                                            \
3543  product(intx, Tier3LoadFeedback, 5,                                       \
3544          "Tier 3 thresholds will increase twofold when C1 queue size "     \
3545          "reaches this amount per compiler thread")                        \
3546                                                                            \
3547  product(intx, Tier4LoadFeedback, 3,                                       \
3548          "Tier 4 thresholds will increase twofold when C2 queue size "     \
3549          "reaches this amount per compiler thread")                        \
3550                                                                            \
3551  product(intx, TieredCompileTaskTimeout, 50,                               \
3552          "Kill compile task if method was not used within "                \
3553          "given timeout in milliseconds")                                  \
3554                                                                            \
3555  product(intx, TieredStopAtLevel, 4,                                       \
3556          "Stop at given compilation level")                                \
3557                                                                            \
3558  product(intx, Tier0ProfilingStartPercentage, 200,                         \
3559          "Start profiling in interpreter if the counters exceed tier 3"    \
3560          "thresholds by the specified percentage")                         \
3561                                                                            \
3562  product(intx, TieredRateUpdateMinTime, 1,                                 \
3563          "Minimum rate sampling interval (in milliseconds)")               \
3564                                                                            \
3565  product(intx, TieredRateUpdateMaxTime, 25,                                \
3566          "Maximum rate sampling interval (in milliseconds)")               \
3567                                                                            \
3568  product_pd(bool, TieredCompilation,                                       \
3569          "Enable tiered compilation")                                      \
3570                                                                            \
3571  product(bool, PrintTieredEvents, false,                                   \
3572          "Print tiered events notifications")                              \
3573                                                                            \
3574  product(bool, StressTieredRuntime, false,                                 \
3575          "Alternate client and server compiler on compile requests")       \
3576                                                                            \
3577  product_pd(intx, OnStackReplacePercentage,                                \
3578          "NON_TIERED number of method invocations/branches (expressed as %"\
3579          "of CompileThreshold) before (re-)compiling OSR code")            \
3580                                                                            \
3581  product(intx, InterpreterProfilePercentage, 33,                           \
3582          "NON_TIERED number of method invocations/branches (expressed as %"\
3583          "of CompileThreshold) before profiling in the interpreter")       \
3584                                                                            \
3585  develop(intx, MaxRecompilationSearchLength,    10,                        \
3586          "max. # frames to inspect searching for recompilee")              \
3587                                                                            \
3588  develop(intx, MaxInterpretedSearchLength,     3,                          \
3589          "max. # interp. frames to skip when searching for recompilee")    \
3590                                                                            \
3591  develop(intx, DesiredMethodLimit,  8000,                                  \
3592          "desired max. method size (in bytecodes) after inlining")         \
3593                                                                            \
3594  develop(intx, HugeMethodLimit,  8000,                                     \
3595          "don't compile methods larger than this if "                      \
3596          "+DontCompileHugeMethods")                                        \
3597                                                                            \
3598  /* New JDK 1.4 reflection implementation */                               \
3599                                                                            \
3600  develop(bool, UseNewReflection, true,                                     \
3601          "Temporary flag for transition to reflection based on dynamic "   \
3602          "bytecode generation in 1.4; can no longer be turned off in 1.4 " \
3603          "JDK, and is unneeded in 1.3 JDK, but marks most places VM "      \
3604          "changes were needed")                                            \
3605                                                                            \
3606  develop(bool, VerifyReflectionBytecodes, false,                           \
3607          "Force verification of 1.4 reflection bytecodes. Does not work "  \
3608          "in situations like that described in 4486457 or for "            \
3609          "constructors generated for serialization, so can not be enabled "\
3610          "in product.")                                                    \
3611                                                                            \
3612  product(bool, ReflectionWrapResolutionErrors, true,                       \
3613          "Temporary flag for transition to AbstractMethodError wrapped "   \
3614          "in InvocationTargetException. See 6531596")                      \
3615                                                                            \
3616                                                                            \
3617  develop(intx, FastSuperclassLimit, 8,                                     \
3618          "Depth of hardwired instanceof accelerator array")                \
3619                                                                            \
3620  /* Properties for Java libraries  */                                      \
3621                                                                            \
3622  product(intx, MaxDirectMemorySize, -1,                                    \
3623          "Maximum total size of NIO direct-buffer allocations")            \
3624                                                                            \
3625  /* temporary developer defined flags  */                                  \
3626                                                                            \
3627  diagnostic(bool, UseNewCode, false,                                       \
3628          "Testing Only: Use the new version while testing")                \
3629                                                                            \
3630  diagnostic(bool, UseNewCode2, false,                                      \
3631          "Testing Only: Use the new version while testing")                \
3632                                                                            \
3633  diagnostic(bool, UseNewCode3, false,                                      \
3634          "Testing Only: Use the new version while testing")                \
3635                                                                            \
3636  /* flags for performance data collection */                               \
3637                                                                            \
3638  product(bool, UsePerfData, falseInEmbedded,                               \
3639          "Flag to disable jvmstat instrumentation for performance testing" \
3640          "and problem isolation purposes.")                                \
3641                                                                            \
3642  product(bool, PerfDataSaveToFile, false,                                  \
3643          "Save PerfData memory to hsperfdata_<pid> file on exit")          \
3644                                                                            \
3645  product(ccstr, PerfDataSaveFile, NULL,                                    \
3646          "Save PerfData memory to the specified absolute pathname,"        \
3647           "%p in the file name if present will be replaced by pid")        \
3648                                                                            \
3649  product(intx, PerfDataSamplingInterval, 50 /*ms*/,                        \
3650          "Data sampling interval in milliseconds")                         \
3651                                                                            \
3652  develop(bool, PerfTraceDataCreation, false,                               \
3653          "Trace creation of Performance Data Entries")                     \
3654                                                                            \
3655  develop(bool, PerfTraceMemOps, false,                                     \
3656          "Trace PerfMemory create/attach/detach calls")                    \
3657                                                                            \
3658  product(bool, PerfDisableSharedMem, false,                                \
3659          "Store performance data in standard memory")                      \
3660                                                                            \
3661  product(intx, PerfDataMemorySize, 32*K,                                   \
3662          "Size of performance data memory region. Will be rounded "        \
3663          "up to a multiple of the native os page size.")                   \
3664                                                                            \
3665  product(intx, PerfMaxStringConstLength, 1024,                             \
3666          "Maximum PerfStringConstant string length before truncation")     \
3667                                                                            \
3668  product(bool, PerfAllowAtExitRegistration, false,                         \
3669          "Allow registration of atexit() methods")                         \
3670                                                                            \
3671  product(bool, PerfBypassFileSystemCheck, false,                           \
3672          "Bypass Win32 file system criteria checks (Windows Only)")        \
3673                                                                            \
3674  product(intx, UnguardOnExecutionViolation, 0,                             \
3675          "Unguard page and retry on no-execute fault (Win32 only)"         \
3676          "0=off, 1=conservative, 2=aggressive")                            \
3677                                                                            \
3678  /* Serviceability Support */                                              \
3679                                                                            \
3680  product(bool, ManagementServer, false,                                    \
3681          "Create JMX Management Server")                                   \
3682                                                                            \
3683  product(bool, DisableAttachMechanism, false,                              \
3684         "Disable mechanism that allows tools to attach to this VM")        \
3685                                                                            \
3686  product(bool, StartAttachListener, false,                                 \
3687          "Always start Attach Listener at VM startup")                     \
3688                                                                            \
3689  manageable(bool, PrintConcurrentLocks, false,                             \
3690          "Print java.util.concurrent locks in thread dump")                \
3691                                                                            \
3692  product(bool, TransmitErrorReport, false,                                 \
3693          "Enable error report transmission on erroneous termination")      \
3694                                                                            \
3695  product(ccstr, ErrorReportServer, NULL,                                   \
3696          "Override built-in error report server address")                  \
3697                                                                            \
3698  /* Shared spaces */                                                       \
3699                                                                            \
3700  product(bool, UseSharedSpaces, true,                                      \
3701          "Use shared spaces in the permanent generation")                  \
3702                                                                            \
3703  product(bool, RequireSharedSpaces, false,                                 \
3704          "Require shared spaces in the permanent generation")              \
3705                                                                            \
3706  product(bool, DumpSharedSpaces, false,                                    \
3707           "Special mode: JVM reads a class list, loads classes, builds "   \
3708            "shared spaces, and dumps the shared spaces to a file to be "   \
3709            "used in future JVM runs.")                                     \
3710                                                                            \
3711  product(bool, PrintSharedSpaces, false,                                   \
3712          "Print usage of shared spaces")                                   \
3713                                                                            \
3714  product(uintx, SharedDummyBlockSize, 512*M,                               \
3715          "Size of dummy block used to shift heap addresses (in bytes)")    \
3716                                                                            \
3717  product(uintx, SharedReadWriteSize,  NOT_LP64(12*M) LP64_ONLY(13*M),      \
3718          "Size of read-write space in permanent generation (in bytes)")    \
3719                                                                            \
3720  product(uintx, SharedReadOnlySize,   10*M,                                \
3721          "Size of read-only space in permanent generation (in bytes)")     \
3722                                                                            \
3723  product(uintx, SharedMiscDataSize,    NOT_LP64(4*M) LP64_ONLY(5*M),       \
3724          "Size of the shared data area adjacent to the heap (in bytes)")   \
3725                                                                            \
3726  product(uintx, SharedMiscCodeSize,    4*M,                                \
3727          "Size of the shared code area adjacent to the heap (in bytes)")   \
3728                                                                            \
3729  diagnostic(bool, SharedOptimizeColdStart, true,                           \
3730          "At dump time, order shared objects to achieve better "           \
3731          "cold startup time.")                                             \
3732                                                                            \
3733  develop(intx, SharedOptimizeColdStartPolicy, 2,                           \
3734          "Reordering policy for SharedOptimizeColdStart "                  \
3735          "0=favor classload-time locality, 1=balanced, "                   \
3736          "2=favor runtime locality")                                       \
3737                                                                            \
3738  diagnostic(bool, SharedSkipVerify, false,                                 \
3739          "Skip assert() and verify() which page-in unwanted shared "       \
3740          "objects. ")                                                      \
3741                                                                            \
3742  diagnostic(bool, EnableInvokeDynamic, true,                               \
3743          "support JSR 292 (method handles, invokedynamic, "                \
3744          "anonymous classes")                                              \
3745                                                                            \
3746  product(bool, AnonymousClasses, false,                                    \
3747          "support sun.misc.Unsafe.defineAnonymousClass (deprecated)")      \
3748                                                                            \
3749  experimental(bool, EnableMethodHandles, false,                            \
3750          "support method handles (deprecated)")                            \
3751                                                                            \
3752  diagnostic(intx, MethodHandlePushLimit, 3,                                \
3753          "number of additional stack slots a method handle may push")      \
3754                                                                            \
3755  diagnostic(bool, PrintMethodHandleStubs, false,                           \
3756          "Print generated stub code for method handles")                   \
3757                                                                            \
3758  develop(bool, TraceMethodHandles, false,                                  \
3759          "trace internal method handle operations")                        \
3760                                                                            \
3761  diagnostic(bool, VerifyMethodHandles, trueInDebug,                        \
3762          "perform extra checks when constructing method handles")          \
3763                                                                            \
3764  diagnostic(bool, OptimizeMethodHandles, true,                             \
3765          "when constructing method handles, try to improve them")          \
3766                                                                            \
3767  develop(bool, StressMethodHandleWalk, false,                              \
3768          "Process all method handles with MethodHandleWalk")               \
3769                                                                            \
3770  diagnostic(bool, UseRicochetFrames, true,                                 \
3771          "use ricochet stack frames for method handle combination, "       \
3772          "if the platform supports them")                                  \
3773                                                                            \
3774  experimental(bool, TrustFinalNonStaticFields, false,                      \
3775          "trust final non-static declarations for constant folding")       \
3776                                                                            \
3777  experimental(bool, AllowInvokeGeneric, false,                             \
3778          "accept MethodHandle.invoke and MethodHandle.invokeGeneric "      \
3779          "as equivalent methods")                                          \
3780                                                                            \
3781  develop(bool, TraceInvokeDynamic, false,                                  \
3782          "trace internal invoke dynamic operations")                       \
3783                                                                            \
3784  diagnostic(bool, PauseAtStartup,      false,                              \
3785          "Causes the VM to pause at startup time and wait for the pause "  \
3786          "file to be removed (default: ./vm.paused.<pid>)")                \
3787                                                                            \
3788  diagnostic(ccstr, PauseAtStartupFile, NULL,                               \
3789          "The file to create and for whose removal to await when pausing " \
3790          "at startup. (default: ./vm.paused.<pid>)")                       \
3791                                                                            \
3792  diagnostic(bool, PauseAtExit, false,                                      \
3793          "Pause and wait for keypress on exit if a debugger is attached")  \
3794                                                                            \
3795  product(bool, ExtendedDTraceProbes,    false,                             \
3796          "Enable performance-impacting dtrace probes")                     \
3797                                                                            \
3798  product(bool, DTraceMethodProbes, false,                                  \
3799          "Enable dtrace probes for method-entry and method-exit")          \
3800                                                                            \
3801  product(bool, DTraceAllocProbes, false,                                   \
3802          "Enable dtrace probes for object allocation")                     \
3803                                                                            \
3804  product(bool, DTraceMonitorProbes, false,                                 \
3805          "Enable dtrace probes for monitor events")                        \
3806                                                                            \
3807  product(bool, RelaxAccessControlCheck, false,                             \
3808          "Relax the access control checks in the verifier")                \
3809                                                                            \
3810  diagnostic(bool, PrintDTraceDOF, false,                                   \
3811             "Print the DTrace DOF passed to the system for JSDT probes")   \
3812                                                                            \
3813  product(uintx, StringTableSize, 1009,                                     \
3814          "Number of buckets in the interned String table")                 \
3815                                                                            \
3816  product(bool, UseVMInterruptibleIO, false,                                \
3817          "(Unstable, Solaris-specific) Thread interrupt before or with "   \
3818          "EINTR for I/O operations results in OS_INTRPT. The default value"\
3819          " of this flag is true for JDK 6 and earliers")
3820
3821/*
3822 *  Macros for factoring of globals
3823 */
3824
3825// Interface macros
3826#define DECLARE_PRODUCT_FLAG(type, name, value, doc)    extern "C" type name;
3827#define DECLARE_PD_PRODUCT_FLAG(type, name, doc)        extern "C" type name;
3828#define DECLARE_DIAGNOSTIC_FLAG(type, name, value, doc) extern "C" type name;
3829#define DECLARE_EXPERIMENTAL_FLAG(type, name, value, doc) extern "C" type name;
3830#define DECLARE_MANAGEABLE_FLAG(type, name, value, doc) extern "C" type name;
3831#define DECLARE_PRODUCT_RW_FLAG(type, name, value, doc) extern "C" type name;
3832#ifdef PRODUCT
3833#define DECLARE_DEVELOPER_FLAG(type, name, value, doc)  const type name = value;
3834#define DECLARE_PD_DEVELOPER_FLAG(type, name, doc)      const type name = pd_##name;
3835#define DECLARE_NOTPRODUCT_FLAG(type, name, value, doc)
3836#else
3837#define DECLARE_DEVELOPER_FLAG(type, name, value, doc)  extern "C" type name;
3838#define DECLARE_PD_DEVELOPER_FLAG(type, name, doc)      extern "C" type name;
3839#define DECLARE_NOTPRODUCT_FLAG(type, name, value, doc)  extern "C" type name;
3840#endif
3841// Special LP64 flags, product only needed for now.
3842#ifdef _LP64
3843#define DECLARE_LP64_PRODUCT_FLAG(type, name, value, doc) extern "C" type name;
3844#else
3845#define DECLARE_LP64_PRODUCT_FLAG(type, name, value, doc) const type name = value;
3846#endif // _LP64
3847
3848// Implementation macros
3849#define MATERIALIZE_PRODUCT_FLAG(type, name, value, doc)   type name = value;
3850#define MATERIALIZE_PD_PRODUCT_FLAG(type, name, doc)       type name = pd_##name;
3851#define MATERIALIZE_DIAGNOSTIC_FLAG(type, name, value, doc) type name = value;
3852#define MATERIALIZE_EXPERIMENTAL_FLAG(type, name, value, doc) type name = value;
3853#define MATERIALIZE_MANAGEABLE_FLAG(type, name, value, doc) type name = value;
3854#define MATERIALIZE_PRODUCT_RW_FLAG(type, name, value, doc) type name = value;
3855#ifdef PRODUCT
3856#define MATERIALIZE_DEVELOPER_FLAG(type, name, value, doc) /* flag name is constant */
3857#define MATERIALIZE_PD_DEVELOPER_FLAG(type, name, doc)     /* flag name is constant */
3858#define MATERIALIZE_NOTPRODUCT_FLAG(type, name, value, doc)
3859#else
3860#define MATERIALIZE_DEVELOPER_FLAG(type, name, value, doc) type name = value;
3861#define MATERIALIZE_PD_DEVELOPER_FLAG(type, name, doc)     type name = pd_##name;
3862#define MATERIALIZE_NOTPRODUCT_FLAG(type, name, value, doc) type name = value;
3863#endif
3864#ifdef _LP64
3865#define MATERIALIZE_LP64_PRODUCT_FLAG(type, name, value, doc)   type name = value;
3866#else
3867#define MATERIALIZE_LP64_PRODUCT_FLAG(type, name, value, doc) /* flag is constant */
3868#endif // _LP64
3869
3870RUNTIME_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)
3871
3872RUNTIME_OS_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_DIAGNOSTIC_FLAG, DECLARE_NOTPRODUCT_FLAG)
3873
3874#endif // SHARE_VM_RUNTIME_GLOBALS_HPP
3875