src/hotspot/share/gc/g1/g1_globals.hpp
author jwilhelm
Wed, 14 Feb 2018 13:29:45 +0100
changeset 48969 7eb296a8ce2c
parent 47786 97dde3171e7e
child 49607 acffe6ff3ae7
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     1
/*
47786
97dde3171e7e 8186502: Assert when range testing G1RefProcDrainInterval on 64-bit systems
lkorinth
parents: 47695
diff changeset
     2
 * Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     4
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     7
 * published by the Free Software Foundation.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     8
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    13
 * accompanied this code).
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    14
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5350
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5350
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5350
diff changeset
    21
 * questions.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    22
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    23
 */
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    24
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30257
diff changeset
    25
#ifndef SHARE_VM_GC_G1_G1_GLOBALS_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30257
diff changeset
    26
#define SHARE_VM_GC_G1_G1_GLOBALS_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6958
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6958
diff changeset
    28
#include "runtime/globals.hpp"
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
    29
#include <float.h> // for DBL_MAX
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    30
//
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    31
// Defines all globals flags used by the garbage-first compiler.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    32
//
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    33
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 38185
diff changeset
    34
#define G1_FLAGS(develop, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 38185
diff changeset
    35
                 develop_pd, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 38185
diff changeset
    36
                 product, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 38185
diff changeset
    37
                 product_pd, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 38185
diff changeset
    38
                 diagnostic, \
39117
59fa99a45873 8150900: Implement diagnostic_pd
csahu
parents: 38273
diff changeset
    39
                 diagnostic_pd, \
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 38185
diff changeset
    40
                 experimental, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 38185
diff changeset
    41
                 notproduct, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 38185
diff changeset
    42
                 manageable, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 38185
diff changeset
    43
                 product_rw, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 38185
diff changeset
    44
                 range, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 38185
diff changeset
    45
                 constraint, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 38185
diff changeset
    46
                 writeable) \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    47
                                                                            \
34626
b366ee049e8f 8136680: Enable adaptive IHOP by default
tschatzl
parents: 34299
diff changeset
    48
  product(bool, G1UseAdaptiveIHOP, true,                                    \
b366ee049e8f 8136680: Enable adaptive IHOP by default
tschatzl
parents: 34299
diff changeset
    49
          "Adaptively adjust the initiating heap occupancy from the "       \
b366ee049e8f 8136680: Enable adaptive IHOP by default
tschatzl
parents: 34299
diff changeset
    50
          "initial value of InitiatingHeapOccupancyPercent. The policy "    \
b366ee049e8f 8136680: Enable adaptive IHOP by default
tschatzl
parents: 34299
diff changeset
    51
          "attempts to start marking in time based on application "         \
b366ee049e8f 8136680: Enable adaptive IHOP by default
tschatzl
parents: 34299
diff changeset
    52
          "behavior.")                                                      \
34299
3fdfdda0ac1f 8136678: Implement adaptive sizing algorithm for IHOP
tschatzl
parents: 33797
diff changeset
    53
                                                                            \
3fdfdda0ac1f 8136678: Implement adaptive sizing algorithm for IHOP
tschatzl
parents: 33797
diff changeset
    54
  experimental(size_t, G1AdaptiveIHOPNumInitialSamples, 3,                  \
3fdfdda0ac1f 8136678: Implement adaptive sizing algorithm for IHOP
tschatzl
parents: 33797
diff changeset
    55
          "How many completed time periods from initial mark to first "     \
3fdfdda0ac1f 8136678: Implement adaptive sizing algorithm for IHOP
tschatzl
parents: 33797
diff changeset
    56
          "mixed gc are required to use the input values for prediction "   \
3fdfdda0ac1f 8136678: Implement adaptive sizing algorithm for IHOP
tschatzl
parents: 33797
diff changeset
    57
          "of the optimal occupancy to start marking.")                     \
3fdfdda0ac1f 8136678: Implement adaptive sizing algorithm for IHOP
tschatzl
parents: 33797
diff changeset
    58
          range(1, max_intx)                                                \
3fdfdda0ac1f 8136678: Implement adaptive sizing algorithm for IHOP
tschatzl
parents: 33797
diff changeset
    59
                                                                            \
15806
f3fb856749cf 8008546: Wrong G1ConfidencePercent results in GUARANTEE(VARIANCE() > -1.0) FAILED
poonam
parents: 15605
diff changeset
    60
  product(uintx, G1ConfidencePercent, 50,                                   \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    61
          "Confidence level for MMU/pause predictions")                     \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
    62
          range(0, 100)                                                     \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    63
                                                                            \
3584
42c1f7bbffa4 6866591: G1: print update buffer processing stats more often
tonyp
parents: 3583
diff changeset
    64
  diagnostic(intx, G1SummarizeRSetStatsPeriod, 0,                           \
42c1f7bbffa4 6866591: G1: print update buffer processing stats more often
tonyp
parents: 3583
diff changeset
    65
          "The period (in number of GCs) at which we will generate "        \
42c1f7bbffa4 6866591: G1: print update buffer processing stats more often
tonyp
parents: 3583
diff changeset
    66
          "update buffer processing info "                                  \
42c1f7bbffa4 6866591: G1: print update buffer processing stats more often
tonyp
parents: 3583
diff changeset
    67
          "(0 means do not periodically generate this info); "              \
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34661
diff changeset
    68
          "it also requires that logging is enabled on the trace"           \
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34661
diff changeset
    69
          "level for gc+remset")                                            \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
    70
          range(0, max_intx)                                                \
3584
42c1f7bbffa4 6866591: G1: print update buffer processing stats more often
tonyp
parents: 3583
diff changeset
    71
                                                                            \
8073
a14dc27842dc 6608385: G1: need to support parallel reference processing
johnc
parents: 7923
diff changeset
    72
  product(double, G1ConcMarkStepDurationMillis, 10.0,                       \
a14dc27842dc 6608385: G1: need to support parallel reference processing
johnc
parents: 7923
diff changeset
    73
          "Target duration of individual concurrent marking steps "         \
a14dc27842dc 6608385: G1: need to support parallel reference processing
johnc
parents: 7923
diff changeset
    74
          "in milliseconds.")                                               \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
    75
          range(1.0, DBL_MAX)                                               \
8073
a14dc27842dc 6608385: G1: need to support parallel reference processing
johnc
parents: 7923
diff changeset
    76
                                                                            \
47786
97dde3171e7e 8186502: Assert when range testing G1RefProcDrainInterval on 64-bit systems
lkorinth
parents: 47695
diff changeset
    77
  product(int, G1RefProcDrainInterval, 10,                                  \
8073
a14dc27842dc 6608385: G1: need to support parallel reference processing
johnc
parents: 7923
diff changeset
    78
          "The number of discovered reference objects to process before "   \
a14dc27842dc 6608385: G1: need to support parallel reference processing
johnc
parents: 7923
diff changeset
    79
          "draining concurrent marking work queues.")                       \
47786
97dde3171e7e 8186502: Assert when range testing G1RefProcDrainInterval on 64-bit systems
lkorinth
parents: 47695
diff changeset
    80
          range(1, INT_MAX)                                                 \
8073
a14dc27842dc 6608385: G1: need to support parallel reference processing
johnc
parents: 7923
diff changeset
    81
                                                                            \
32602
27d046027824 8067341: Modify PLAB sizing algorithm to waste less
tschatzl
parents: 32601
diff changeset
    82
  experimental(double, G1LastPLABAverageOccupancy, 50.0,                    \
27d046027824 8067341: Modify PLAB sizing algorithm to waste less
tschatzl
parents: 32601
diff changeset
    83
               "The expected average occupancy of the last PLAB in "        \
27d046027824 8067341: Modify PLAB sizing algorithm to waste less
tschatzl
parents: 32601
diff changeset
    84
               "percent.")                                                  \
27d046027824 8067341: Modify PLAB sizing algorithm to waste less
tschatzl
parents: 32601
diff changeset
    85
               range(0.001, 100.0)                                          \
27d046027824 8067341: Modify PLAB sizing algorithm to waste less
tschatzl
parents: 32601
diff changeset
    86
                                                                            \
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 28379
diff changeset
    87
  product(size_t, G1SATBBufferSize, 1*K,                                    \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    88
          "Number of entries in an SATB log buffer.")                       \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
    89
          range(1, max_uintx)                                               \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    90
                                                                            \
5033
55f476a32544 6928059: G1: command line parameter renaming
tonyp
parents: 4902
diff changeset
    91
  develop(intx, G1SATBProcessCompletedThreshold, 20,                        \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    92
          "Number of completed buffers that triggers log processing.")      \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
    93
          range(0, max_jint)                                                \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    94
                                                                            \
7920
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
    95
  product(uintx, G1SATBBufferEnqueueingThresholdPercent, 60,                \
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
    96
          "Before enqueueing them, each mutator thread tries to do some "   \
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
    97
          "filtering on the SATB buffers it generates. If post-filtering "  \
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
    98
          "the percentage of retained entries is over this threshold "      \
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
    99
          "the buffer will be enqueued for processing. A value of 0 "       \
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   100
          "specifies that mutator threads should not do such filtering.")   \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   101
          range(0, 100)                                                     \
7920
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   102
                                                                            \
5033
55f476a32544 6928059: G1: command line parameter renaming
tonyp
parents: 4902
diff changeset
   103
  experimental(intx, G1ExpandByPercentOfAvailable, 20,                      \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   104
          "When expanding, % of uncommitted space to claim.")               \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   105
          range(0, 100)                                                     \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   106
                                                                            \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   107
  develop(bool, G1RSBarrierRegionFilter, true,                              \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   108
          "If true, generate region filtering code in RS barrier")          \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   109
                                                                            \
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 28379
diff changeset
   110
  product(size_t, G1UpdateBufferSize, 256,                                  \
3583
805584e16d0f 6864886: G1: rename -XX parameters related to update buffers
tonyp
parents: 3262
diff changeset
   111
          "Size of an update buffer")                                       \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
   112
          range(1, NOT_LP64(32*M) LP64_ONLY(1*G))                           \
3583
805584e16d0f 6864886: G1: rename -XX parameters related to update buffers
tonyp
parents: 3262
diff changeset
   113
                                                                            \
36371
fd81a4f0ea00 8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents: 35061
diff changeset
   114
  product(size_t, G1ConcRefinementYellowZone, 0,                            \
3583
805584e16d0f 6864886: G1: rename -XX parameters related to update buffers
tonyp
parents: 3262
diff changeset
   115
          "Number of enqueued update buffers that will "                    \
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   116
          "trigger concurrent processing. Will be selected ergonomically "  \
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   117
          "by default.")                                                    \
36402
7c20aae43c41 8150984: Invalid VM argument causes crash -XX:G1ConcRefinementServiceIntervalMillis=2147483648
jprovino
parents: 36373
diff changeset
   118
          range(0, max_intx)                                                \
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   119
                                                                            \
36371
fd81a4f0ea00 8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents: 35061
diff changeset
   120
  product(size_t, G1ConcRefinementRedZone, 0,                               \
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   121
          "Maximum number of enqueued update buffers before mutator "       \
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   122
          "threads start processing new ones instead of enqueueing them. "  \
37510
cf066fe4531b 8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents: 37413
diff changeset
   123
          "Will be selected ergonomically by default.")                     \
36402
7c20aae43c41 8150984: Invalid VM argument causes crash -XX:G1ConcRefinementServiceIntervalMillis=2147483648
jprovino
parents: 36373
diff changeset
   124
          range(0, max_intx)                                                \
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   125
                                                                            \
36371
fd81a4f0ea00 8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents: 35061
diff changeset
   126
  product(size_t, G1ConcRefinementGreenZone, 0,                             \
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   127
          "The number of update buffers that are left in the queue by the " \
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   128
          "concurrent processing threads. Will be selected ergonomically "  \
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   129
          "by default.")                                                    \
36402
7c20aae43c41 8150984: Invalid VM argument causes crash -XX:G1ConcRefinementServiceIntervalMillis=2147483648
jprovino
parents: 36373
diff changeset
   130
          range(0, max_intx)                                                \
3583
805584e16d0f 6864886: G1: rename -XX parameters related to update buffers
tonyp
parents: 3262
diff changeset
   131
                                                                            \
36371
fd81a4f0ea00 8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents: 35061
diff changeset
   132
  product(uintx, G1ConcRefinementServiceIntervalMillis, 300,                \
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   133
          "The last concurrent refinement thread wakes up every "           \
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   134
          "specified number of milliseconds to do miscellaneous work.")     \
36402
7c20aae43c41 8150984: Invalid VM argument causes crash -XX:G1ConcRefinementServiceIntervalMillis=2147483648
jprovino
parents: 36373
diff changeset
   135
          range(0, max_jint)                                                \
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   136
                                                                            \
37510
cf066fe4531b 8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents: 37413
diff changeset
   137
  product(size_t, G1ConcRefinementThresholdStep, 2,                         \
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   138
          "Each time the rset update queue increases by this amount "       \
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   139
          "activate the next refinement thread if available. "              \
37510
cf066fe4531b 8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents: 37413
diff changeset
   140
          "The actual step size will be selected ergonomically by "         \
cf066fe4531b 8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents: 37413
diff changeset
   141
          "default, with this value used to determine a lower bound.")      \
cf066fe4531b 8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents: 37413
diff changeset
   142
          range(1, SIZE_MAX)                                                \
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   143
                                                                            \
5033
55f476a32544 6928059: G1: command line parameter renaming
tonyp
parents: 4902
diff changeset
   144
  product(intx, G1RSetUpdatingPauseTimePercent, 10,                         \
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   145
          "A target percentage of time that is allowed to be spend on "     \
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   146
          "process RS update buffers during the collection pause.")         \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
   147
          range(0, 100)                                                     \
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   148
                                                                            \
5033
55f476a32544 6928059: G1: command line parameter renaming
tonyp
parents: 4902
diff changeset
   149
  product(bool, G1UseAdaptiveConcRefinement, true,                          \
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   150
          "Select green, yellow and red zones adaptively to meet the "      \
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 4458
diff changeset
   151
          "the pause requirements.")                                        \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   152
                                                                            \
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 28379
diff changeset
   153
  product(size_t, G1ConcRSLogCacheSize, 10,                                 \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   154
          "Log base 2 of the length of conc RS hot-card cache.")            \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   155
          range(0, 27)                                                      \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   156
                                                                            \
17327
4bd0581aa231 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents: 15806
diff changeset
   157
  product(uintx, G1ConcRSHotCardLimit, 4,                                   \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   158
          "The threshold that defines (>=) a hot card.")                    \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   159
          range(0, max_jubyte)                                              \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   160
                                                                            \
4902
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   161
  develop(intx, G1RSetRegionEntriesBase, 256,                               \
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   162
          "Max number of regions in a fine-grain table per MB.")            \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
   163
          range(1, max_jint/wordSize)                                       \
4902
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   164
                                                                            \
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   165
  product(intx, G1RSetRegionEntries, 0,                                     \
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   166
          "Max number of regions for which we keep bitmaps."                \
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   167
          "Will be set ergonomically by default")                           \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
   168
          range(0, max_jint/wordSize)                                       \
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
   169
          constraint(G1RSetRegionEntriesConstraintFunc,AfterErgo)           \
4902
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   170
                                                                            \
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   171
  develop(intx, G1RSetSparseRegionEntriesBase, 4,                           \
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   172
          "Max number of entries per region in a sparse table "             \
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   173
          "per MB.")                                                        \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
   174
          range(1, max_jint/wordSize)                                       \
4902
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   175
                                                                            \
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   176
  product(intx, G1RSetSparseRegionEntries, 0,                               \
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   177
          "Max number of entries per region in a sparse table."             \
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   178
          "Will be set ergonomically by default.")                          \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
   179
          range(0, max_jint/wordSize)                                       \
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
   180
          constraint(G1RSetSparseRegionEntriesConstraintFunc,AfterErgo)     \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   181
                                                                            \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   182
  develop(intx, G1MaxVerifyFailures, -1,                                    \
22775
52bc5222f5f1 8026849: Fix typos in the GC code, part 2
jwilhelm
parents: 22545
diff changeset
   183
          "The maximum number of verification failures to print.  "         \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   184
          "-1 means print all.")                                            \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
   185
          range(-1, max_jint)                                               \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   186
                                                                            \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   187
  develop(bool, G1ScrubRemSets, true,                                       \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   188
          "When true, do RS scrubbing after cleanup.")                      \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   189
                                                                            \
10528
06fab03478df 7084509: G1: fix inconsistencies and mistakes in the young list target length calculations
tonyp
parents: 10497
diff changeset
   190
  product(uintx, G1ReservePercent, 10,                                      \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   191
          "It determines the minimum reserve we should have in the heap "   \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   192
          "to minimize the probability of promotion failure.")              \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
   193
          range(0, 50)                                                      \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   194
                                                                            \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   195
  develop(bool, G1HRRSUseSparseTable, true,                                 \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   196
          "When true, use sparse table to save space.")                     \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   197
                                                                            \
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 28379
diff changeset
   198
  product(size_t, G1HeapRegionSize, 0,                                      \
3697
ea9211aa02f5 6819085: G1: use larger and/or user settable region size
tonyp
parents: 3695
diff changeset
   199
          "Size of the G1 regions.")                                        \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
   200
          range(0, 32*M)                                                    \
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
   201
          constraint(G1HeapRegionSizeConstraintFunc,AfterMemoryInit)        \
3697
ea9211aa02f5 6819085: G1: use larger and/or user settable region size
tonyp
parents: 3695
diff changeset
   202
                                                                            \
37510
cf066fe4531b 8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents: 37413
diff changeset
   203
  product(uint, G1ConcRefinementThreads, 0,                                 \
cf066fe4531b 8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents: 37413
diff changeset
   204
          "The number of parallel rem set update threads. "                 \
cf066fe4531b 8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents: 37413
diff changeset
   205
          "Will be set ergonomically by default.")                          \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
   206
          range(0, (max_jint-1)/wordSize)                                   \
3590
a268fa66d7fb 6819077: G1: first GC thread coming late into the GC.
johnc
parents: 3584
diff changeset
   207
                                                                            \
3695
421cfcc8843c 6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents: 3691
diff changeset
   208
  develop(bool, G1VerifyCTCleanup, false,                                   \
4742
9b18850a3185 6920090: G1: Disable ReduceInitialCardMarks at least until 6920109 is fixed
ysr
parents: 4481
diff changeset
   209
          "Verify card table cleanup.")                                     \
9b18850a3185 6920090: G1: Disable ReduceInitialCardMarks at least until 6920109 is fixed
ysr
parents: 4481
diff changeset
   210
                                                                            \
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 28379
diff changeset
   211
  product(size_t, G1RSetScanBlockSize, 64,                                  \
4902
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   212
          "Size of a work unit of cards claimed by a worker thread"         \
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   213
          "during RSet scanning.")                                          \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
   214
          range(1, max_uintx)                                               \
4902
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 4742
diff changeset
   215
                                                                            \
7923
fc200fcd4e05 6977804: G1: remove the zero-filling thread
tonyp
parents: 7920
diff changeset
   216
  develop(uintx, G1SecondaryFreeListAppendLength, 5,                        \
fc200fcd4e05 6977804: G1: remove the zero-filling thread
tonyp
parents: 7920
diff changeset
   217
          "The number of regions we will add to the secondary free list "   \
fc200fcd4e05 6977804: G1: remove the zero-filling thread
tonyp
parents: 7920
diff changeset
   218
          "at every append operation")                                      \
fc200fcd4e05 6977804: G1: remove the zero-filling thread
tonyp
parents: 7920
diff changeset
   219
                                                                            \
fc200fcd4e05 6977804: G1: remove the zero-filling thread
tonyp
parents: 7920
diff changeset
   220
  develop(bool, G1StressConcRegionFreeing, false,                           \
fc200fcd4e05 6977804: G1: remove the zero-filling thread
tonyp
parents: 7920
diff changeset
   221
          "It stresses the concurrent region freeing operation")            \
fc200fcd4e05 6977804: G1: remove the zero-filling thread
tonyp
parents: 7920
diff changeset
   222
                                                                            \
fc200fcd4e05 6977804: G1: remove the zero-filling thread
tonyp
parents: 7920
diff changeset
   223
  develop(uintx, G1StressConcRegionFreeingDelayMillis, 0,                   \
fc200fcd4e05 6977804: G1: remove the zero-filling thread
tonyp
parents: 7920
diff changeset
   224
          "Artificial delay during concurrent region freeing")              \
fc200fcd4e05 6977804: G1: remove the zero-filling thread
tonyp
parents: 7920
diff changeset
   225
                                                                            \
9334
640f1a6f0b85 7011855: G1: non-product flag to artificially grow the heap
tonyp
parents: 9176
diff changeset
   226
  develop(uintx, G1DummyRegionsPerGC, 0,                                    \
640f1a6f0b85 7011855: G1: non-product flag to artificially grow the heap
tonyp
parents: 9176
diff changeset
   227
          "The number of dummy regions G1 will allocate at the end of "     \
640f1a6f0b85 7011855: G1: non-product flag to artificially grow the heap
tonyp
parents: 9176
diff changeset
   228
          "each evacuation pause in order to artificially fill up the "     \
640f1a6f0b85 7011855: G1: non-product flag to artificially grow the heap
tonyp
parents: 9176
diff changeset
   229
          "heap and stress the marking implementation.")                    \
640f1a6f0b85 7011855: G1: non-product flag to artificially grow the heap
tonyp
parents: 9176
diff changeset
   230
                                                                            \
8103
65eafe3fb3c7 6923430: G1: assert(res != 0,"This should have worked.")
johnc
parents: 8073
diff changeset
   231
  develop(bool, G1ExitOnExpansionFailure, false,                            \
65eafe3fb3c7 6923430: G1: assert(res != 0,"This should have worked.")
johnc
parents: 8073
diff changeset
   232
          "Raise a fatal VM exit out of memory failure in the event "       \
9417
6719a2e727c0 7034139: G1: assert(Thread::current()->is_ConcurrentGC_thread()) failed: only a conc GC thread can call this.
tonyp
parents: 9334
diff changeset
   233
          " that heap expansion fails due to running out of swap.")         \
6719a2e727c0 7034139: G1: assert(Thread::current()->is_ConcurrentGC_thread()) failed: only a conc GC thread can call this.
tonyp
parents: 9334
diff changeset
   234
                                                                            \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   235
  experimental(uintx, G1MaxNewSizePercent, 60,                              \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   236
          "Percentage (0-100) of the heap size to use as default "          \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   237
          " maximum young gen size.")                                       \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   238
          range(0, 100)                                                     \
31995
aa4049b4184a 8130459: Add additional validation after heap creation
sangheki
parents: 31371
diff changeset
   239
          constraint(G1MaxNewSizePercentConstraintFunc,AfterErgo)           \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   240
                                                                            \
15218
758d7536f16c 8001425: G1: Change the default values for certain G1 specific flags
johnc
parents: 15089
diff changeset
   241
  experimental(uintx, G1NewSizePercent, 5,                                  \
15089
6becb5b6047a 8001424: G1: Rename certain G1-specific flags
johnc
parents: 13517
diff changeset
   242
          "Percentage (0-100) of the heap size to use as default "          \
6becb5b6047a 8001424: G1: Rename certain G1-specific flags
johnc
parents: 13517
diff changeset
   243
          "minimum young gen size.")                                        \
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 32613
diff changeset
   244
          range(0, 100)                                                     \
31995
aa4049b4184a 8130459: Add additional validation after heap creation
sangheki
parents: 31371
diff changeset
   245
          constraint(G1NewSizePercentConstraintFunc,AfterErgo)              \
11756
28b6fe22e43d 7132029: G1: mixed GC phase lasts for longer than it should
tonyp
parents: 11454
diff changeset
   246
                                                                            \
26936
504bad404be6 8059452: G1: Change the default values for G1HeapWastePercent and G1MixedGCLiveThresholdPercent
brutisso
parents: 26701
diff changeset
   247
  experimental(uintx, G1MixedGCLiveThresholdPercent, 85,                    \
15089
6becb5b6047a 8001424: G1: Rename certain G1-specific flags
johnc
parents: 13517
diff changeset
   248
          "Threshold for regions to be considered for inclusion in the "    \
6becb5b6047a 8001424: G1: Rename certain G1-specific flags
johnc
parents: 13517
diff changeset
   249
          "collection set of mixed GCs. "                                   \
6becb5b6047a 8001424: G1: Rename certain G1-specific flags
johnc
parents: 13517
diff changeset
   250
          "Regions with live bytes exceeding this will not be collected.")  \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   251
          range(0, 100)                                                     \
11756
28b6fe22e43d 7132029: G1: mixed GC phase lasts for longer than it should
tonyp
parents: 11454
diff changeset
   252
                                                                            \
26936
504bad404be6 8059452: G1: Change the default values for G1HeapWastePercent and G1MixedGCLiveThresholdPercent
brutisso
parents: 26701
diff changeset
   253
  product(uintx, G1HeapWastePercent, 5,                                     \
12228
15ffdb8224fe 7146246: G1: expose some of the -XX flags that drive which old regions to collect during mixed GCs
tonyp
parents: 11756
diff changeset
   254
          "Amount of space, expressed as a percentage of the heap size, "   \
15ffdb8224fe 7146246: G1: expose some of the -XX flags that drive which old regions to collect during mixed GCs
tonyp
parents: 11756
diff changeset
   255
          "that G1 is willing not to collect to avoid expensive GCs.")      \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   256
          range(0, 100)                                                     \
11756
28b6fe22e43d 7132029: G1: mixed GC phase lasts for longer than it should
tonyp
parents: 11454
diff changeset
   257
                                                                            \
15218
758d7536f16c 8001425: G1: Change the default values for certain G1 specific flags
johnc
parents: 15089
diff changeset
   258
  product(uintx, G1MixedGCCountTarget, 8,                                   \
12228
15ffdb8224fe 7146246: G1: expose some of the -XX flags that drive which old regions to collect during mixed GCs
tonyp
parents: 11756
diff changeset
   259
          "The target number of mixed GCs after a marking cycle.")          \
34661
9a1d11d88ea0 8142341: GC: current flags need ranges to be implemented
sangheki
parents: 34626
diff changeset
   260
          range(0, max_uintx)                                               \
11756
28b6fe22e43d 7132029: G1: mixed GC phase lasts for longer than it should
tonyp
parents: 11454
diff changeset
   261
                                                                            \
37413
2f71679d06dd 8077144: Concurrent mark initialization takes too long
tschatzl
parents: 37075
diff changeset
   262
  experimental(bool, G1PretouchAuxiliaryMemory, false,                      \
2f71679d06dd 8077144: Concurrent mark initialization takes too long
tschatzl
parents: 37075
diff changeset
   263
          "Pre-touch large auxiliary data structures used by the GC.")      \
2f71679d06dd 8077144: Concurrent mark initialization takes too long
tschatzl
parents: 37075
diff changeset
   264
                                                                            \
28379
e6784fc8fff2 8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents: 27635
diff changeset
   265
  experimental(bool, G1EagerReclaimHumongousObjects, true,                  \
25889
221296ac4359 8027959: Early reclamation of large objects in G1
tschatzl
parents: 24244
diff changeset
   266
          "Try to reclaim dead large objects at every young GC.")           \
221296ac4359 8027959: Early reclamation of large objects in G1
tschatzl
parents: 24244
diff changeset
   267
                                                                            \
28379
e6784fc8fff2 8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents: 27635
diff changeset
   268
  experimental(bool, G1EagerReclaimHumongousObjectsWithStaleRefs, true,     \
e6784fc8fff2 8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents: 27635
diff changeset
   269
          "Try to reclaim dead large objects that have a few stale "        \
e6784fc8fff2 8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents: 27635
diff changeset
   270
          "references at every young GC.")                                  \
e6784fc8fff2 8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents: 27635
diff changeset
   271
                                                                            \
13483
cf5aaa798f38 7193157: G1: Make some develpflags available in product builds
brutisso
parents: 13113
diff changeset
   272
  experimental(uintx, G1OldCSetRegionThresholdPercent, 10,                  \
11756
28b6fe22e43d 7132029: G1: mixed GC phase lasts for longer than it should
tonyp
parents: 11454
diff changeset
   273
          "An upper bound for the number of old CSet regions expressed "    \
12378
ed44b9ecfa2f 7160728: Introduce an extra logging level for G1 logging
brutisso
parents: 12272
diff changeset
   274
          "as a percentage of the heap size.")                              \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   275
          range(0, 100)                                                     \
12378
ed44b9ecfa2f 7160728: Introduce an extra logging level for G1 logging
brutisso
parents: 12272
diff changeset
   276
                                                                            \
13517
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   277
  notproduct(bool, G1EvacuationFailureALot, false,                          \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   278
          "Force use of evacuation failure handling during certain "        \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   279
          "evacuation pauses")                                              \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   280
                                                                            \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   281
  develop(uintx, G1EvacuationFailureALotCount, 1000,                        \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   282
          "Number of successful evacuations between evacuation failures "   \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   283
          "occurring at object copying")                                    \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   284
                                                                            \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   285
  develop(uintx, G1EvacuationFailureALotInterval, 5,                        \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   286
          "Total collections between forced triggering of evacuation "      \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   287
          "failures")                                                       \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   288
                                                                            \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   289
  develop(bool, G1EvacuationFailureALotDuringConcMark, true,                \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   290
          "Force use of evacuation failure handling during evacuation "     \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   291
          "pauses when marking is in progress")                             \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   292
                                                                            \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   293
  develop(bool, G1EvacuationFailureALotDuringInitialMark, true,             \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   294
          "Force use of evacuation failure handling during initial mark "   \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   295
          "evacuation pauses")                                              \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   296
                                                                            \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   297
  develop(bool, G1EvacuationFailureALotDuringYoungGC, true,                 \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   298
          "Force use of evacuation failure handling during young "          \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   299
          "evacuation pauses")                                              \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   300
                                                                            \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   301
  develop(bool, G1EvacuationFailureALotDuringMixedGC, true,                 \
f158a0c702d4 7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents: 13483
diff changeset
   302
          "Force use of evacuation failure handling during mixed "          \
17855
9d0719d7bb85 8015244: G1: Verification after a full GC is incorrectly placed.
johnc
parents: 17327
diff changeset
   303
          "evacuation pauses")                                              \
9d0719d7bb85 8015244: G1: Verification after a full GC is incorrectly placed.
johnc
parents: 17327
diff changeset
   304
                                                                            \
9d0719d7bb85 8015244: G1: Verification after a full GC is incorrectly placed.
johnc
parents: 17327
diff changeset
   305
  diagnostic(bool, G1VerifyRSetsDuringFullGC, false,                        \
24244
2c7a1e5649bd 7132678: G1: verify that the marking bitmaps have no marks for objects over TAMS
brutisso
parents: 23451
diff changeset
   306
          "If true, perform verification of each heap region's "            \
2c7a1e5649bd 7132678: G1: verify that the marking bitmaps have no marks for objects over TAMS
brutisso
parents: 23451
diff changeset
   307
          "remembered set when verifying the heap during a full GC.")       \
19339
d247781beec7 7145569: G1: optimize nmethods scanning
johnc
parents: 19000
diff changeset
   308
                                                                            \
d247781beec7 7145569: G1: optimize nmethods scanning
johnc
parents: 19000
diff changeset
   309
  diagnostic(bool, G1VerifyHeapRegionCodeRoots, false,                      \
24244
2c7a1e5649bd 7132678: G1: verify that the marking bitmaps have no marks for objects over TAMS
brutisso
parents: 23451
diff changeset
   310
          "Verify the code root lists attached to each heap region.")       \
2c7a1e5649bd 7132678: G1: verify that the marking bitmaps have no marks for objects over TAMS
brutisso
parents: 23451
diff changeset
   311
                                                                            \
2c7a1e5649bd 7132678: G1: verify that the marking bitmaps have no marks for objects over TAMS
brutisso
parents: 23451
diff changeset
   312
  develop(bool, G1VerifyBitmaps, false,                                     \
2c7a1e5649bd 7132678: G1: verify that the marking bitmaps have no marks for objects over TAMS
brutisso
parents: 23451
diff changeset
   313
          "Verifies the consistency of the marking bitmaps")
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   314
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   315
G1_FLAGS(DECLARE_DEVELOPER_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   316
         DECLARE_PD_DEVELOPER_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   317
         DECLARE_PRODUCT_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   318
         DECLARE_PD_PRODUCT_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   319
         DECLARE_DIAGNOSTIC_FLAG, \
39117
59fa99a45873 8150900: Implement diagnostic_pd
csahu
parents: 38273
diff changeset
   320
         DECLARE_PD_DIAGNOSTIC_FLAG, \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   321
         DECLARE_EXPERIMENTAL_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   322
         DECLARE_NOTPRODUCT_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   323
         DECLARE_MANAGEABLE_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   324
         DECLARE_PRODUCT_RW_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   325
         IGNORE_RANGE, \
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 38185
diff changeset
   326
         IGNORE_CONSTRAINT, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 38185
diff changeset
   327
         IGNORE_WRITEABLE)
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6958
diff changeset
   328
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30257
diff changeset
   329
#endif // SHARE_VM_GC_G1_G1_GLOBALS_HPP