author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 38185 | hotspot/src/share/vm/runtime/commandLineFlagConstraintsGC.hpp@c432f8466c73 |
permissions | -rw-r--r-- |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
1 |
/* |
37054
31d83caf01e8
8145312: CMS: There is insufficient memory with CMSSamplingGrain=1
sangheki
parents:
35203
diff
changeset
|
2 |
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
4 |
* |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
8 |
* |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
13 |
* accompanied this code). |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
14 |
* |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
18 |
* |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
21 |
* questions. |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
22 |
* |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
23 |
*/ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
24 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
25 |
#ifndef SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSGC_HPP |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
26 |
#define SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSGC_HPP |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
27 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
28 |
#include "runtime/globals.hpp" |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
29 |
#include "utilities/globalDefinitions.hpp" |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
30 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
31 |
/* |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
32 |
* Here we have GC arguments constraints functions, which are called automatically |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
33 |
* whenever flag's value changes. If the constraint fails the function should return |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
34 |
* an appropriate error value. |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
35 |
*/ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
36 |
|
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
37 |
Flag::Error ParallelGCThreadsConstraintFunc(uint value, bool verbose); |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
38 |
Flag::Error ConcGCThreadsConstraintFunc(uint value, bool verbose); |
32351 | 39 |
Flag::Error YoungPLABSizeConstraintFunc(size_t value, bool verbose); |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
40 |
Flag::Error OldPLABSizeConstraintFunc(size_t value, bool verbose); |
32351 | 41 |
Flag::Error MinHeapFreeRatioConstraintFunc(uintx value, bool verbose); |
42 |
Flag::Error MaxHeapFreeRatioConstraintFunc(uintx value, bool verbose); |
|
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
43 |
Flag::Error SoftRefLRUPolicyMSPerMBConstraintFunc(intx value, bool verbose); |
32351 | 44 |
Flag::Error MinMetaspaceFreeRatioConstraintFunc(uintx value, bool verbose); |
45 |
Flag::Error MaxMetaspaceFreeRatioConstraintFunc(uintx value, bool verbose); |
|
46 |
Flag::Error InitialTenuringThresholdConstraintFunc(uintx value, bool verbose); |
|
47 |
Flag::Error MaxTenuringThresholdConstraintFunc(uintx value, bool verbose); |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
48 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
49 |
#if INCLUDE_ALL_GCS |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
50 |
Flag::Error G1RSetRegionEntriesConstraintFunc(intx value, bool verbose); |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
51 |
Flag::Error G1RSetSparseRegionEntriesConstraintFunc(intx value, bool verbose); |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
52 |
Flag::Error G1HeapRegionSizeConstraintFunc(size_t value, bool verbose); |
32351 | 53 |
Flag::Error G1NewSizePercentConstraintFunc(uintx value, bool verbose); |
54 |
Flag::Error G1MaxNewSizePercentConstraintFunc(uintx value, bool verbose); |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
55 |
#endif // INCLUDE_ALL_GCS |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
56 |
|
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
57 |
Flag::Error ParGCStridesPerThreadConstraintFunc(uintx value, bool verbose); |
37233
e8e674469545
8152176: Big ParGCCardsPerStrideChunk values can cause overflow for CMS GC
sangheki
parents:
37054
diff
changeset
|
58 |
Flag::Error ParGCCardsPerStrideChunkConstraintFunc(intx value, bool verbose); |
32351 | 59 |
Flag::Error CMSOldPLABMinConstraintFunc(size_t value, bool verbose); |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
60 |
Flag::Error CMSOldPLABMaxConstraintFunc(size_t value, bool verbose); |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
61 |
Flag::Error MarkStackSizeConstraintFunc(size_t value, bool verbose); |
37433
f8fd0bcc60af
8152182: Possible overflow in initialzation of _rescan_task_size and _marking_task_size
sangheki
parents:
37264
diff
changeset
|
62 |
Flag::Error CMSRescanMultipleConstraintFunc(size_t value, bool verbose); |
f8fd0bcc60af
8152182: Possible overflow in initialzation of _rescan_task_size and _marking_task_size
sangheki
parents:
37264
diff
changeset
|
63 |
Flag::Error CMSConcMarkMultipleConstraintFunc(size_t value, bool verbose); |
32351 | 64 |
Flag::Error CMSPrecleanDenominatorConstraintFunc(uintx value, bool verbose); |
65 |
Flag::Error CMSPrecleanNumeratorConstraintFunc(uintx value, bool verbose); |
|
37054
31d83caf01e8
8145312: CMS: There is insufficient memory with CMSSamplingGrain=1
sangheki
parents:
35203
diff
changeset
|
66 |
Flag::Error CMSSamplingGrainConstraintFunc(uintx value, bool verbose); |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
67 |
Flag::Error CMSWorkQueueDrainThresholdConstraintFunc(uintx value, bool verbose); |
37264
d9b0f2b53b73
8152188: Allow CMSBitMapYieldQuantum for BitMap::clear_range and clear_large_range
sangheki
parents:
37233
diff
changeset
|
68 |
Flag::Error CMSBitMapYieldQuantumConstraintFunc(size_t value, bool verbose); |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
69 |
Flag::Error MaxGCPauseMillisConstraintFunc(uintx value, bool verbose); |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
70 |
Flag::Error GCPauseIntervalMillisConstraintFunc(uintx value, bool verbose); |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
71 |
Flag::Error InitialBootClassLoaderMetaspaceSizeConstraintFunc(size_t value, bool verbose); |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
72 |
Flag::Error InitialHeapSizeConstraintFunc(size_t value, bool verbose); |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
73 |
Flag::Error MaxHeapSizeConstraintFunc(size_t value, bool verbose); |
34661
9a1d11d88ea0
8142341: GC: current flags need ranges to be implemented
sangheki
parents:
33144
diff
changeset
|
74 |
Flag::Error HeapBaseMinAddressConstraintFunc(size_t value, bool verbose); |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
75 |
Flag::Error NewSizeConstraintFunc(size_t value, bool verbose); |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
76 |
Flag::Error MinTLABSizeConstraintFunc(size_t value, bool verbose); |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
77 |
Flag::Error TLABSizeConstraintFunc(size_t value, bool verbose); |
34661
9a1d11d88ea0
8142341: GC: current flags need ranges to be implemented
sangheki
parents:
33144
diff
changeset
|
78 |
Flag::Error TLABWasteIncrementConstraintFunc(uintx value, bool verbose); |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
79 |
Flag::Error SurvivorRatioConstraintFunc(uintx value, bool verbose); |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
80 |
Flag::Error MetaspaceSizeConstraintFunc(size_t value, bool verbose); |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
81 |
Flag::Error MaxMetaspaceSizeConstraintFunc(size_t value, bool verbose); |
32351 | 82 |
Flag::Error SurvivorAlignmentInBytesConstraintFunc(intx value, bool verbose); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
83 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
diff
changeset
|
84 |
#endif /* SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSGC_HPP */ |