author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 46560 | hotspot/src/share/vm/runtime/globals.cpp@388aa8d67c80 |
child 47687 | fb290fd1f9d4 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46434
55cc8fa66865
8067728: Flag::unlock_diagnostic() should be called Flag::clear_diagnostic()
rprotacio
parents:
46416
diff
changeset
|
2 |
* Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4579
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4579
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:
4579
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "memory/allocation.inline.hpp" |
|
27 |
#include "oops/oop.inline.hpp" |
|
46560
388aa8d67c80
8181449: Fix debug.hpp / globalDefinitions.hpp dependency inversion
kbarrett
parents:
46434
diff
changeset
|
28 |
#include "prims/jvm.h" |
7397 | 29 |
#include "runtime/arguments.hpp" |
30 |
#include "runtime/globals.hpp" |
|
31 |
#include "runtime/globals_extension.hpp" |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
32 |
#include "runtime/commandLineFlagConstraintList.hpp" |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
33 |
#include "runtime/commandLineFlagWriteableList.hpp" |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
34 |
#include "runtime/commandLineFlagRangeList.hpp" |
27471 | 35 |
#include "runtime/os.hpp" |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
36 |
#include "runtime/sharedRuntime.hpp" |
27684
e0391b2bf625
8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents:
27417
diff
changeset
|
37 |
#include "trace/tracing.hpp" |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
38 |
#include "utilities/defaultStream.hpp" |
30764 | 39 |
#include "utilities/macros.hpp" |
7397 | 40 |
#include "utilities/ostream.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13521
diff
changeset
|
41 |
#if INCLUDE_ALL_GCS |
30764 | 42 |
#include "gc/g1/g1_globals.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13521
diff
changeset
|
43 |
#endif // INCLUDE_ALL_GCS |
7397 | 44 |
#ifdef COMPILER1 |
45 |
#include "c1/c1_globals.hpp" |
|
46 |
#endif |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
47 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
48 |
#include "jvmci/jvmci_globals.hpp" |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
49 |
#endif |
7397 | 50 |
#ifdef COMPILER2 |
51 |
#include "opto/c2_globals.hpp" |
|
52 |
#endif |
|
53 |
#ifdef SHARK |
|
54 |
#include "shark/shark_globals.hpp" |
|
55 |
#endif |
|
1 | 56 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
57 |
RUNTIME_FLAGS(MATERIALIZE_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
58 |
MATERIALIZE_PD_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
59 |
MATERIALIZE_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
60 |
MATERIALIZE_PD_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
61 |
MATERIALIZE_DIAGNOSTIC_FLAG, \ |
39117 | 62 |
MATERIALIZE_PD_DIAGNOSTIC_FLAG, \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
63 |
MATERIALIZE_EXPERIMENTAL_FLAG, \ |
11167
3931428f62ae
7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents:
11166
diff
changeset
|
64 |
MATERIALIZE_NOTPRODUCT_FLAG, \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
65 |
MATERIALIZE_MANAGEABLE_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
66 |
MATERIALIZE_PRODUCT_RW_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
67 |
MATERIALIZE_LP64_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
68 |
IGNORE_RANGE, \ |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
69 |
IGNORE_CONSTRAINT, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
70 |
IGNORE_WRITEABLE) |
1 | 71 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
72 |
RUNTIME_OS_FLAGS(MATERIALIZE_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
73 |
MATERIALIZE_PD_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
74 |
MATERIALIZE_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
75 |
MATERIALIZE_PD_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
76 |
MATERIALIZE_DIAGNOSTIC_FLAG, \ |
39117 | 77 |
MATERIALIZE_PD_DIAGNOSTIC_FLAG, \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
78 |
MATERIALIZE_NOTPRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
79 |
IGNORE_RANGE, \ |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
80 |
IGNORE_CONSTRAINT, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
81 |
IGNORE_WRITEABLE) |
1 | 82 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
83 |
ARCH_FLAGS(MATERIALIZE_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
84 |
MATERIALIZE_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
85 |
MATERIALIZE_DIAGNOSTIC_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
86 |
MATERIALIZE_EXPERIMENTAL_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
87 |
MATERIALIZE_NOTPRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
88 |
IGNORE_RANGE, \ |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
89 |
IGNORE_CONSTRAINT, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
90 |
IGNORE_WRITEABLE) |
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
91 |
|
11183
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
92 |
MATERIALIZE_FLAGS_EXT |
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
93 |
|
37208
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
94 |
#define DEFAULT_RANGE_STR_CHUNK_SIZE 64 |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
95 |
static char* create_range_str(const char *fmt, ...) { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
96 |
static size_t string_length = DEFAULT_RANGE_STR_CHUNK_SIZE; |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
97 |
static char* range_string = NEW_C_HEAP_ARRAY(char, string_length, mtLogging); |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
98 |
|
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
99 |
int size_needed = 0; |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
100 |
do { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
101 |
va_list args; |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
102 |
va_start(args, fmt); |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
103 |
size_needed = jio_vsnprintf(range_string, string_length, fmt, args); |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
104 |
va_end(args); |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
105 |
|
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
106 |
if (size_needed < 0) { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
107 |
string_length += DEFAULT_RANGE_STR_CHUNK_SIZE; |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
108 |
range_string = REALLOC_C_HEAP_ARRAY(char, range_string, string_length, mtLogging); |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
109 |
guarantee(range_string != NULL, "create_range_str string should not be NULL"); |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
110 |
} |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
111 |
} while (size_needed < 0); |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
112 |
|
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
113 |
return range_string; |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
114 |
} |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
115 |
|
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
116 |
const char* Flag::get_int_default_range_str() { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
117 |
return create_range_str("[ " INT32_FORMAT_W(-25) " ... " INT32_FORMAT_W(25) " ]", INT_MIN, INT_MAX); |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
118 |
} |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
119 |
|
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
120 |
const char* Flag::get_uint_default_range_str() { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
121 |
return create_range_str("[ " UINT32_FORMAT_W(-25) " ... " UINT32_FORMAT_W(25) " ]", 0, UINT_MAX); |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
122 |
} |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
123 |
|
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
124 |
const char* Flag::get_intx_default_range_str() { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
125 |
return create_range_str("[ " INTX_FORMAT_W(-25) " ... " INTX_FORMAT_W(25) " ]", min_intx, max_intx); |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
126 |
} |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
127 |
|
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
128 |
const char* Flag::get_uintx_default_range_str() { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
129 |
return create_range_str("[ " UINTX_FORMAT_W(-25) " ... " UINTX_FORMAT_W(25) " ]", 0, max_uintx); |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
130 |
} |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
131 |
|
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
132 |
const char* Flag::get_uint64_t_default_range_str() { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
133 |
return create_range_str("[ " UINT64_FORMAT_W(-25) " ... " UINT64_FORMAT_W(25) " ]", 0, uint64_t(max_juint)); |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
134 |
} |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
135 |
|
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
136 |
const char* Flag::get_size_t_default_range_str() { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
137 |
return create_range_str("[ " SIZE_FORMAT_W(-25) " ... " SIZE_FORMAT_W(25) " ]", 0, SIZE_MAX); |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
138 |
} |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
139 |
|
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
140 |
const char* Flag::get_double_default_range_str() { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
141 |
return create_range_str("[ %-25.3f ... %25.3f ]", DBL_MIN, DBL_MAX); |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
142 |
} |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
143 |
|
22518
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
144 |
static bool is_product_build() { |
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
145 |
#ifdef PRODUCT |
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
146 |
return true; |
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
147 |
#else |
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
148 |
return false; |
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
149 |
#endif |
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
150 |
} |
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
151 |
|
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
152 |
Flag::Error Flag::check_writable(bool changed) { |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
153 |
if (is_constant_in_binary()) { |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32374
diff
changeset
|
154 |
fatal("flag is constant: %s", _name); |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
155 |
} |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
156 |
|
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
157 |
Flag::Error error = Flag::SUCCESS; |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
158 |
if (changed) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
159 |
CommandLineFlagWriteable* writeable = CommandLineFlagWriteableList::find(_name); |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
160 |
if (writeable) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
161 |
if (writeable->is_writeable() == false) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
162 |
switch (writeable->type()) |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
163 |
{ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
164 |
case CommandLineFlagWriteable::Once: |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
165 |
error = Flag::SET_ONLY_ONCE; |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
166 |
jio_fprintf(defaultStream::error_stream(), "Error: %s may not be set more than once\n", _name); |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
167 |
break; |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
168 |
case CommandLineFlagWriteable::CommandLineOnly: |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
169 |
error = Flag::COMMAND_LINE_ONLY; |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
170 |
jio_fprintf(defaultStream::error_stream(), "Error: %s may be modified only from commad line\n", _name); |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
171 |
break; |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
172 |
default: |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
173 |
ShouldNotReachHere(); |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
174 |
break; |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
175 |
} |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
176 |
} |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
177 |
writeable->mark_once(); |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
178 |
} |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
179 |
} |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
180 |
return error; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
181 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
182 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
183 |
bool Flag::is_bool() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
184 |
return strcmp(_type, "bool") == 0; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
185 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
186 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
187 |
bool Flag::get_bool() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
188 |
return *((bool*) _addr); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
189 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
190 |
|
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
191 |
Flag::Error Flag::set_bool(bool value) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
192 |
Flag::Error error = check_writable(value!=get_bool()); |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
193 |
if (error == Flag::SUCCESS) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
194 |
*((bool*) _addr) = value; |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
195 |
} |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
196 |
return error; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
197 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
198 |
|
31236 | 199 |
bool Flag::is_int() const { |
200 |
return strcmp(_type, "int") == 0; |
|
201 |
} |
|
202 |
||
203 |
int Flag::get_int() const { |
|
204 |
return *((int*) _addr); |
|
205 |
} |
|
206 |
||
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
207 |
Flag::Error Flag::set_int(int value) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
208 |
Flag::Error error = check_writable(value!=get_int()); |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
209 |
if (error == Flag::SUCCESS) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
210 |
*((int*) _addr) = value; |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
211 |
} |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
212 |
return error; |
31236 | 213 |
} |
214 |
||
215 |
bool Flag::is_uint() const { |
|
216 |
return strcmp(_type, "uint") == 0; |
|
217 |
} |
|
218 |
||
219 |
uint Flag::get_uint() const { |
|
220 |
return *((uint*) _addr); |
|
221 |
} |
|
222 |
||
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
223 |
Flag::Error Flag::set_uint(uint value) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
224 |
Flag::Error error = check_writable(value!=get_uint()); |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
225 |
if (error == Flag::SUCCESS) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
226 |
*((uint*) _addr) = value; |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
227 |
} |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
228 |
return error; |
31236 | 229 |
} |
230 |
||
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
231 |
bool Flag::is_intx() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
232 |
return strcmp(_type, "intx") == 0; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
233 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
234 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
235 |
intx Flag::get_intx() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
236 |
return *((intx*) _addr); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
237 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
238 |
|
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
239 |
Flag::Error Flag::set_intx(intx value) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
240 |
Flag::Error error = check_writable(value!=get_intx()); |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
241 |
if (error == Flag::SUCCESS) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
242 |
*((intx*) _addr) = value; |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
243 |
} |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
244 |
return error; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
245 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
246 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
247 |
bool Flag::is_uintx() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
248 |
return strcmp(_type, "uintx") == 0; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
249 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
250 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
251 |
uintx Flag::get_uintx() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
252 |
return *((uintx*) _addr); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
253 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
254 |
|
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
255 |
Flag::Error Flag::set_uintx(uintx value) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
256 |
Flag::Error error = check_writable(value!=get_uintx()); |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
257 |
if (error == Flag::SUCCESS) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
258 |
*((uintx*) _addr) = value; |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
259 |
} |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
260 |
return error; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
261 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
262 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
263 |
bool Flag::is_uint64_t() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
264 |
return strcmp(_type, "uint64_t") == 0; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
265 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
266 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
267 |
uint64_t Flag::get_uint64_t() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
268 |
return *((uint64_t*) _addr); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
269 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
270 |
|
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
271 |
Flag::Error Flag::set_uint64_t(uint64_t value) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
272 |
Flag::Error error = check_writable(value!=get_uint64_t()); |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
273 |
if (error == Flag::SUCCESS) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
274 |
*((uint64_t*) _addr) = value; |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
275 |
} |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
276 |
return error; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
277 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
278 |
|
25959 | 279 |
bool Flag::is_size_t() const { |
280 |
return strcmp(_type, "size_t") == 0; |
|
281 |
} |
|
282 |
||
283 |
size_t Flag::get_size_t() const { |
|
284 |
return *((size_t*) _addr); |
|
285 |
} |
|
286 |
||
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
287 |
Flag::Error Flag::set_size_t(size_t value) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
288 |
Flag::Error error = check_writable(value!=get_size_t()); |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
289 |
if (error == Flag::SUCCESS) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
290 |
*((size_t*) _addr) = value; |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
291 |
} |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
292 |
return error; |
25959 | 293 |
} |
294 |
||
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
295 |
bool Flag::is_double() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
296 |
return strcmp(_type, "double") == 0; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
297 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
298 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
299 |
double Flag::get_double() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
300 |
return *((double*) _addr); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
301 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
302 |
|
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
303 |
Flag::Error Flag::set_double(double value) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
304 |
Flag::Error error = check_writable(value!=get_double()); |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
305 |
if (error == Flag::SUCCESS) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
306 |
*((double*) _addr) = value; |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
307 |
} |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
308 |
return error; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
309 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
310 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
311 |
bool Flag::is_ccstr() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
312 |
return strcmp(_type, "ccstr") == 0 || strcmp(_type, "ccstrlist") == 0; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
313 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
314 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
315 |
bool Flag::ccstr_accumulates() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
316 |
return strcmp(_type, "ccstrlist") == 0; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
317 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
318 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
319 |
ccstr Flag::get_ccstr() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
320 |
return *((ccstr*) _addr); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
321 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
322 |
|
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
323 |
Flag::Error Flag::set_ccstr(ccstr value) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
324 |
Flag::Error error = check_writable(value!=get_ccstr()); |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
325 |
if (error == Flag::SUCCESS) { |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
326 |
*((ccstr*) _addr) = value; |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
327 |
} |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
328 |
return error; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
329 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
330 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
331 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
332 |
Flag::Flags Flag::get_origin() { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
333 |
return Flags(_flags & VALUE_ORIGIN_MASK); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
334 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
335 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
336 |
void Flag::set_origin(Flags origin) { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
337 |
assert((origin & VALUE_ORIGIN_MASK) == origin, "sanity"); |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
338 |
Flags new_origin = Flags((origin == COMMAND_LINE) ? Flags(origin | ORIG_COMMAND_LINE) : origin); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
339 |
_flags = Flags((_flags & ~VALUE_ORIGIN_MASK) | new_origin); |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
340 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
341 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
342 |
bool Flag::is_default() { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
343 |
return (get_origin() == DEFAULT); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
344 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
345 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
346 |
bool Flag::is_ergonomic() { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
347 |
return (get_origin() == ERGONOMIC); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
348 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
349 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
350 |
bool Flag::is_command_line() { |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
351 |
return (_flags & ORIG_COMMAND_LINE) != 0; |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
352 |
} |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
353 |
|
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
354 |
void Flag::set_command_line() { |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
355 |
_flags = Flags(_flags | ORIG_COMMAND_LINE); |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
356 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
357 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
358 |
bool Flag::is_product() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
359 |
return (_flags & KIND_PRODUCT) != 0; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
360 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
361 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
362 |
bool Flag::is_manageable() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
363 |
return (_flags & KIND_MANAGEABLE) != 0; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
364 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
365 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
366 |
bool Flag::is_diagnostic() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
367 |
return (_flags & KIND_DIAGNOSTIC) != 0; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
368 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
369 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
370 |
bool Flag::is_experimental() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
371 |
return (_flags & KIND_EXPERIMENTAL) != 0; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
372 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
373 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
374 |
bool Flag::is_notproduct() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
375 |
return (_flags & KIND_NOT_PRODUCT) != 0; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
376 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
377 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
378 |
bool Flag::is_develop() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
379 |
return (_flags & KIND_DEVELOP) != 0; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
380 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
381 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
382 |
bool Flag::is_read_write() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
383 |
return (_flags & KIND_READ_WRITE) != 0; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
384 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
385 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
386 |
bool Flag::is_commercial() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
387 |
return (_flags & KIND_COMMERCIAL) != 0; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
388 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
389 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
390 |
/** |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
391 |
* Returns if this flag is a constant in the binary. Right now this is |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
392 |
* true for notproduct and develop flags in product builds. |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
393 |
*/ |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
394 |
bool Flag::is_constant_in_binary() const { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
395 |
#ifdef PRODUCT |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
396 |
return is_notproduct() || is_develop(); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
397 |
#else |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
398 |
return false; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
399 |
#endif |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
400 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
401 |
|
1 | 402 |
bool Flag::is_unlocker() const { |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
403 |
return strcmp(_name, "UnlockDiagnosticVMOptions") == 0 || |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
404 |
strcmp(_name, "UnlockExperimentalVMOptions") == 0 || |
11183
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
405 |
is_unlocker_ext(); |
1 | 406 |
} |
407 |
||
408 |
bool Flag::is_unlocked() const { |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
409 |
if (is_diagnostic()) { |
1 | 410 |
return UnlockDiagnosticVMOptions; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
411 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
412 |
if (is_experimental()) { |
1382
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1374
diff
changeset
|
413 |
return UnlockExperimentalVMOptions; |
1 | 414 |
} |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
415 |
return is_unlocked_ext(); |
1 | 416 |
} |
417 |
||
46434
55cc8fa66865
8067728: Flag::unlock_diagnostic() should be called Flag::clear_diagnostic()
rprotacio
parents:
46416
diff
changeset
|
418 |
void Flag::clear_diagnostic() { |
27166
4ce0d93a8287
8047934: Adding new API for unlocking diagnostic argument.
jiangli
parents:
25959
diff
changeset
|
419 |
assert(is_diagnostic(), "sanity"); |
4ce0d93a8287
8047934: Adding new API for unlocking diagnostic argument.
jiangli
parents:
25959
diff
changeset
|
420 |
_flags = Flags(_flags & ~KIND_DIAGNOSTIC); |
46434
55cc8fa66865
8067728: Flag::unlock_diagnostic() should be called Flag::clear_diagnostic()
rprotacio
parents:
46416
diff
changeset
|
421 |
assert(!is_diagnostic(), "sanity"); |
27166
4ce0d93a8287
8047934: Adding new API for unlocking diagnostic argument.
jiangli
parents:
25959
diff
changeset
|
422 |
} |
4ce0d93a8287
8047934: Adding new API for unlocking diagnostic argument.
jiangli
parents:
25959
diff
changeset
|
423 |
|
33592
ceda4a796f5d
8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents:
33198
diff
changeset
|
424 |
// Get custom message for this locked flag, or NULL if |
ceda4a796f5d
8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents:
33198
diff
changeset
|
425 |
// none is available. Returns message type produced. |
ceda4a796f5d
8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents:
33198
diff
changeset
|
426 |
Flag::MsgType Flag::get_locked_message(char* buf, int buflen) const { |
22518
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
427 |
buf[0] = '\0'; |
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
428 |
if (is_diagnostic() && !is_unlocked()) { |
32374
4fd9c17bc240
8133537: clarify position of unlock options in error messages
dcubed
parents:
32351
diff
changeset
|
429 |
jio_snprintf(buf, buflen, |
4fd9c17bc240
8133537: clarify position of unlock options in error messages
dcubed
parents:
32351
diff
changeset
|
430 |
"Error: VM option '%s' is diagnostic and must be enabled via -XX:+UnlockDiagnosticVMOptions.\n" |
4fd9c17bc240
8133537: clarify position of unlock options in error messages
dcubed
parents:
32351
diff
changeset
|
431 |
"Error: The unlock option must precede '%s'.\n", |
4fd9c17bc240
8133537: clarify position of unlock options in error messages
dcubed
parents:
32351
diff
changeset
|
432 |
_name, _name); |
33592
ceda4a796f5d
8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents:
33198
diff
changeset
|
433 |
return Flag::DIAGNOSTIC_FLAG_BUT_LOCKED; |
22518
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
434 |
} |
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
435 |
if (is_experimental() && !is_unlocked()) { |
32374
4fd9c17bc240
8133537: clarify position of unlock options in error messages
dcubed
parents:
32351
diff
changeset
|
436 |
jio_snprintf(buf, buflen, |
4fd9c17bc240
8133537: clarify position of unlock options in error messages
dcubed
parents:
32351
diff
changeset
|
437 |
"Error: VM option '%s' is experimental and must be enabled via -XX:+UnlockExperimentalVMOptions.\n" |
4fd9c17bc240
8133537: clarify position of unlock options in error messages
dcubed
parents:
32351
diff
changeset
|
438 |
"Error: The unlock option must precede '%s'.\n", |
4fd9c17bc240
8133537: clarify position of unlock options in error messages
dcubed
parents:
32351
diff
changeset
|
439 |
_name, _name); |
33592
ceda4a796f5d
8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents:
33198
diff
changeset
|
440 |
return Flag::EXPERIMENTAL_FLAG_BUT_LOCKED; |
22518
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
441 |
} |
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
442 |
if (is_develop() && is_product_build()) { |
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
443 |
jio_snprintf(buf, buflen, "Error: VM option '%s' is develop and is available only in debug version of VM.\n", |
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
444 |
_name); |
33592
ceda4a796f5d
8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents:
33198
diff
changeset
|
445 |
return Flag::DEVELOPER_FLAG_BUT_PRODUCT_BUILD; |
22518
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
446 |
} |
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
447 |
if (is_notproduct() && is_product_build()) { |
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
448 |
jio_snprintf(buf, buflen, "Error: VM option '%s' is notproduct and is available only in debug version of VM.\n", |
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
449 |
_name); |
33592
ceda4a796f5d
8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents:
33198
diff
changeset
|
450 |
return Flag::NOTPRODUCT_FLAG_BUT_PRODUCT_BUILD; |
22518
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
451 |
} |
12157
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
452 |
get_locked_message_ext(buf, buflen); |
33592
ceda4a796f5d
8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents:
33198
diff
changeset
|
453 |
return Flag::NONE; |
12157
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
454 |
} |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
455 |
|
1 | 456 |
bool Flag::is_writeable() const { |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
457 |
return is_manageable() || (is_product() && is_read_write()) || is_writeable_ext(); |
1 | 458 |
} |
459 |
||
11254
e2dd3c32a7cb
7122880: Extend vendor-specific command interface to include manageable switches
phh
parents:
11183
diff
changeset
|
460 |
// All flags except "manageable" are assumed to be internal flags. |
1 | 461 |
// Long term, we need to define a mechanism to specify which flags |
462 |
// are external/stable and change this function accordingly. |
|
463 |
bool Flag::is_external() const { |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
464 |
return is_manageable() || is_external_ext(); |
1 | 465 |
} |
466 |
||
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
467 |
void Flag::print_on(outputStream* st, bool withComments, bool printRanges) { |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
468 |
// Don't print notproduct and develop flags in a product build. |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
469 |
if (is_constant_in_binary()) { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
470 |
return; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
471 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
472 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
473 |
if (!printRanges) { |
43404
c37afe5dc3a4
8170981: Possible access to char array with negative index
lucy
parents:
40664
diff
changeset
|
474 |
// Use some named constants to make code more readable. |
c37afe5dc3a4
8170981: Possible access to char array with negative index
lucy
parents:
40664
diff
changeset
|
475 |
const unsigned int nSpaces = 10; |
c37afe5dc3a4
8170981: Possible access to char array with negative index
lucy
parents:
40664
diff
changeset
|
476 |
const unsigned int maxFlagLen = 40 + nSpaces; |
c37afe5dc3a4
8170981: Possible access to char array with negative index
lucy
parents:
40664
diff
changeset
|
477 |
|
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
478 |
// The print below assumes that the flag name is 40 characters or less. |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
479 |
// This works for most flags, but there are exceptions. Our longest flag |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
480 |
// name right now is UseAdaptiveGenerationSizePolicyAtMajorCollection and |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
481 |
// its minor collection buddy. These are 48 characters. We use a buffer of |
43404
c37afe5dc3a4
8170981: Possible access to char array with negative index
lucy
parents:
40664
diff
changeset
|
482 |
// nSpaces spaces below to adjust the space between the flag value and the |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
483 |
// column of flag type and origin that is printed in the end of the line. |
43404
c37afe5dc3a4
8170981: Possible access to char array with negative index
lucy
parents:
40664
diff
changeset
|
484 |
char spaces[nSpaces + 1] = " "; |
c37afe5dc3a4
8170981: Possible access to char array with negative index
lucy
parents:
40664
diff
changeset
|
485 |
st->print("%9s %-*s = ", _type, maxFlagLen-nSpaces, _name); |
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
486 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
487 |
if (is_bool()) { |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
488 |
st->print("%-20s", get_bool() ? "true" : "false"); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
489 |
} else if (is_int()) { |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
490 |
st->print("%-20d", get_int()); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
491 |
} else if (is_uint()) { |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
492 |
st->print("%-20u", get_uint()); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
493 |
} else if (is_intx()) { |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
494 |
st->print(INTX_FORMAT_W(-20), get_intx()); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
495 |
} else if (is_uintx()) { |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
496 |
st->print(UINTX_FORMAT_W(-20), get_uintx()); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
497 |
} else if (is_uint64_t()) { |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
498 |
st->print(UINT64_FORMAT_W(-20), get_uint64_t()); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
499 |
} else if (is_size_t()) { |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
500 |
st->print(SIZE_FORMAT_W(-20), get_size_t()); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
501 |
} else if (is_double()) { |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
502 |
st->print("%-20f", get_double()); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
503 |
} else if (is_ccstr()) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
504 |
const char* cp = get_ccstr(); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
505 |
if (cp != NULL) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
506 |
const char* eol; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
507 |
while ((eol = strchr(cp, '\n')) != NULL) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
508 |
size_t llen = pointer_delta(eol, cp, sizeof(char)); |
33604
ad1cd9269bd4
8139116: Fixes for warning "format not a string literal"
goetz
parents:
33592
diff
changeset
|
509 |
st->print("%.*s", (int)llen, cp); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
510 |
st->cr(); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
511 |
cp = eol+1; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
512 |
st->print("%5s %-35s += ", "", _name); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
513 |
} |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
514 |
st->print("%-20s", cp); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
515 |
} |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
516 |
else st->print("%-20s", ""); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
517 |
} |
43404
c37afe5dc3a4
8170981: Possible access to char array with negative index
lucy
parents:
40664
diff
changeset
|
518 |
// Make sure we do not punch a '\0' at a negative char array index. |
c37afe5dc3a4
8170981: Possible access to char array with negative index
lucy
parents:
40664
diff
changeset
|
519 |
unsigned int nameLen = (unsigned int)strlen(_name); |
c37afe5dc3a4
8170981: Possible access to char array with negative index
lucy
parents:
40664
diff
changeset
|
520 |
if (nameLen <= maxFlagLen) { |
c37afe5dc3a4
8170981: Possible access to char array with negative index
lucy
parents:
40664
diff
changeset
|
521 |
spaces[maxFlagLen - MAX2(maxFlagLen-nSpaces, nameLen)] = '\0'; |
c37afe5dc3a4
8170981: Possible access to char array with negative index
lucy
parents:
40664
diff
changeset
|
522 |
st->print("%s", spaces); |
c37afe5dc3a4
8170981: Possible access to char array with negative index
lucy
parents:
40664
diff
changeset
|
523 |
} |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
524 |
print_kind_and_origin(st); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
525 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
526 |
#ifndef PRODUCT |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
527 |
if (withComments) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
528 |
st->print("%s", _doc); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
529 |
} |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
530 |
#endif |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
531 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
532 |
st->cr(); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
533 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
534 |
} else if (!is_bool() && !is_ccstr()) { |
36189
2fbe2434b914
8146187: Print develop and nonproduct flags by -XX:+PrintFlags* options in debug build
ddmitriev
parents:
34185
diff
changeset
|
535 |
st->print("%9s %-50s ", _type, _name); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
536 |
|
37208
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
537 |
RangeStrFunc func = NULL; |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
538 |
if (is_int()) { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
539 |
func = Flag::get_int_default_range_str; |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
540 |
} else if (is_uint()) { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
541 |
func = Flag::get_uint_default_range_str; |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
542 |
} else if (is_intx()) { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
543 |
func = Flag::get_intx_default_range_str; |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
544 |
} else if (is_uintx()) { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
545 |
func = Flag::get_uintx_default_range_str; |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
546 |
} else if (is_uint64_t()) { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
547 |
func = Flag::get_uint64_t_default_range_str; |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
548 |
} else if (is_size_t()) { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
549 |
func = Flag::get_size_t_default_range_str; |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
550 |
} else if (is_double()) { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
551 |
func = Flag::get_double_default_range_str; |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
552 |
} else { |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
553 |
ShouldNotReachHere(); |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
554 |
} |
aaf76eb8cfd4
8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents:
36189
diff
changeset
|
555 |
CommandLineFlagRangeList::print(st, _name, func); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
556 |
|
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
557 |
st->print(" %-16s", " "); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
558 |
print_kind_and_origin(st); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
559 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
560 |
#ifndef PRODUCT |
36189
2fbe2434b914
8146187: Print develop and nonproduct flags by -XX:+PrintFlags* options in debug build
ddmitriev
parents:
34185
diff
changeset
|
561 |
if (withComments) { |
2fbe2434b914
8146187: Print develop and nonproduct flags by -XX:+PrintFlags* options in debug build
ddmitriev
parents:
34185
diff
changeset
|
562 |
st->print("%s", _doc); |
2fbe2434b914
8146187: Print develop and nonproduct flags by -XX:+PrintFlags* options in debug build
ddmitriev
parents:
34185
diff
changeset
|
563 |
} |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
564 |
#endif |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
565 |
|
36189
2fbe2434b914
8146187: Print develop and nonproduct flags by -XX:+PrintFlags* options in debug build
ddmitriev
parents:
34185
diff
changeset
|
566 |
st->cr(); |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
567 |
} |
1 | 568 |
} |
569 |
||
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
570 |
void Flag::print_kind_and_origin(outputStream* st) { |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
571 |
struct Data { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
572 |
int flag; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
573 |
const char* name; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
574 |
}; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
575 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
576 |
Data data[] = { |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
577 |
{ KIND_JVMCI, "JVMCI" }, |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
578 |
{ KIND_C1, "C1" }, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
579 |
{ KIND_C2, "C2" }, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
580 |
{ KIND_ARCH, "ARCH" }, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
581 |
{ KIND_SHARK, "SHARK" }, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
582 |
{ KIND_PLATFORM_DEPENDENT, "pd" }, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
583 |
{ KIND_PRODUCT, "product" }, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
584 |
{ KIND_MANAGEABLE, "manageable" }, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
585 |
{ KIND_DIAGNOSTIC, "diagnostic" }, |
21736
ef8da7738ad4
8028341: PSR:FUNC: SCOPE PARAMETER MISSING FROM THE -XX:+PRINTFLAGSFINAL
sgabdura
parents:
20288
diff
changeset
|
586 |
{ KIND_EXPERIMENTAL, "experimental" }, |
ef8da7738ad4
8028341: PSR:FUNC: SCOPE PARAMETER MISSING FROM THE -XX:+PRINTFLAGSFINAL
sgabdura
parents:
20288
diff
changeset
|
587 |
{ KIND_COMMERCIAL, "commercial" }, |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
588 |
{ KIND_NOT_PRODUCT, "notproduct" }, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
589 |
{ KIND_DEVELOP, "develop" }, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
590 |
{ KIND_LP64_PRODUCT, "lp64_product" }, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
591 |
{ KIND_READ_WRITE, "rw" }, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
592 |
{ -1, "" } |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
593 |
}; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
594 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
595 |
if ((_flags & KIND_MASK) != 0) { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
596 |
bool is_first = true; |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
597 |
const size_t buffer_size = 64; |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
598 |
size_t buffer_used = 0; |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
599 |
char kind[buffer_size]; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
600 |
|
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
601 |
jio_snprintf(kind, buffer_size, "{"); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
602 |
buffer_used++; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
603 |
for (int i = 0; data[i].flag != -1; i++) { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
604 |
Data d = data[i]; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
605 |
if ((_flags & d.flag) != 0) { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
606 |
if (is_first) { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
607 |
is_first = false; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
608 |
} else { |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
609 |
assert(buffer_used + 1 < buffer_size, "Too small buffer"); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
610 |
jio_snprintf(kind + buffer_used, buffer_size - buffer_used, " "); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
611 |
buffer_used++; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
612 |
} |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
613 |
size_t length = strlen(d.name); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
614 |
assert(buffer_used + length < buffer_size, "Too small buffer"); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
615 |
jio_snprintf(kind + buffer_used, buffer_size - buffer_used, "%s", d.name); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
616 |
buffer_used += length; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
617 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
618 |
} |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
619 |
assert(buffer_used + 2 <= buffer_size, "Too small buffer"); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
620 |
jio_snprintf(kind + buffer_used, buffer_size - buffer_used, "}"); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
621 |
st->print("%20s", kind); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
622 |
} |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
623 |
|
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
624 |
int origin = _flags & VALUE_ORIGIN_MASK; |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
625 |
st->print(" {"); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
626 |
switch(origin) { |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
627 |
case DEFAULT: |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
628 |
st->print("default"); break; |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
629 |
case COMMAND_LINE: |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
630 |
st->print("command line"); break; |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
631 |
case ENVIRON_VAR: |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
632 |
st->print("environment"); break; |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
633 |
case CONFIG_FILE: |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
634 |
st->print("config file"); break; |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
635 |
case MANAGEMENT: |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
636 |
st->print("management"); break; |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
637 |
case ERGONOMIC: |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
638 |
if (_flags & ORIG_COMMAND_LINE) { |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
639 |
st->print("command line, "); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
640 |
} |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
641 |
st->print("ergonomic"); break; |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
642 |
case ATTACH_ON_DEMAND: |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
643 |
st->print("attach"); break; |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
644 |
case INTERNAL: |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
645 |
st->print("internal"); break; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
646 |
} |
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
647 |
st->print("}"); |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
648 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
649 |
|
1 | 650 |
void Flag::print_as_flag(outputStream* st) { |
651 |
if (is_bool()) { |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
652 |
st->print("-XX:%s%s", get_bool() ? "+" : "-", _name); |
31236 | 653 |
} else if (is_int()) { |
654 |
st->print("-XX:%s=%d", _name, get_int()); |
|
655 |
} else if (is_uint()) { |
|
656 |
st->print("-XX:%s=%u", _name, get_uint()); |
|
1 | 657 |
} else if (is_intx()) { |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
658 |
st->print("-XX:%s=" INTX_FORMAT, _name, get_intx()); |
1 | 659 |
} else if (is_uintx()) { |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
660 |
st->print("-XX:%s=" UINTX_FORMAT, _name, get_uintx()); |
4437
d1abc17afffb
6898160: Need serviceability support for new vm argument type 'uint64_t'
phh
parents:
4434
diff
changeset
|
661 |
} else if (is_uint64_t()) { |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
662 |
st->print("-XX:%s=" UINT64_FORMAT, _name, get_uint64_t()); |
25959 | 663 |
} else if (is_size_t()) { |
664 |
st->print("-XX:%s=" SIZE_FORMAT, _name, get_size_t()); |
|
12598
1256ef9b648a
7167069: 6 VM flags crash the VM when queried via jinfo
brutisso
parents:
12157
diff
changeset
|
665 |
} else if (is_double()) { |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
666 |
st->print("-XX:%s=%f", _name, get_double()); |
1 | 667 |
} else if (is_ccstr()) { |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
668 |
st->print("-XX:%s=", _name); |
350 | 669 |
const char* cp = get_ccstr(); |
670 |
if (cp != NULL) { |
|
671 |
// Need to turn embedded '\n's back into separate arguments |
|
672 |
// Not so efficient to print one character at a time, |
|
673 |
// but the choice is to do the transformation to a buffer |
|
674 |
// and print that. And this need not be efficient. |
|
675 |
for (; *cp != '\0'; cp += 1) { |
|
676 |
switch (*cp) { |
|
677 |
default: |
|
678 |
st->print("%c", *cp); |
|
679 |
break; |
|
680 |
case '\n': |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
681 |
st->print(" -XX:%s=", _name); |
350 | 682 |
break; |
683 |
} |
|
1 | 684 |
} |
685 |
} |
|
686 |
} else { |
|
687 |
ShouldNotReachHere(); |
|
688 |
} |
|
689 |
} |
|
690 |
||
32351 | 691 |
const char* Flag::flag_error_str(Flag::Error error) { |
692 |
switch (error) { |
|
693 |
case Flag::MISSING_NAME: return "MISSING_NAME"; |
|
694 |
case Flag::MISSING_VALUE: return "MISSING_VALUE"; |
|
695 |
case Flag::NON_WRITABLE: return "NON_WRITABLE"; |
|
696 |
case Flag::OUT_OF_BOUNDS: return "OUT_OF_BOUNDS"; |
|
697 |
case Flag::VIOLATES_CONSTRAINT: return "VIOLATES_CONSTRAINT"; |
|
698 |
case Flag::INVALID_FLAG: return "INVALID_FLAG"; |
|
699 |
case Flag::ERR_OTHER: return "ERR_OTHER"; |
|
700 |
case Flag::SUCCESS: return "SUCCESS"; |
|
701 |
default: ShouldNotReachHere(); return "NULL"; |
|
702 |
} |
|
703 |
} |
|
704 |
||
1 | 705 |
// 4991491 do not "optimize out" the was_set false values: omitting them |
706 |
// tickles a Microsoft compiler bug causing flagTable to be malformed |
|
707 |
||
34174
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
708 |
#define RUNTIME_PRODUCT_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_PRODUCT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
709 |
#define RUNTIME_PD_PRODUCT_FLAG_STRUCT( type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_PRODUCT | Flag::KIND_PLATFORM_DEPENDENT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
710 |
#define RUNTIME_DIAGNOSTIC_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_DIAGNOSTIC) }, |
39117 | 711 |
#define RUNTIME_PD_DIAGNOSTIC_FLAG_STRUCT(type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_DIAGNOSTIC | Flag::KIND_PLATFORM_DEPENDENT) }, |
34174
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
712 |
#define RUNTIME_EXPERIMENTAL_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_EXPERIMENTAL) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
713 |
#define RUNTIME_MANAGEABLE_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_MANAGEABLE) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
714 |
#define RUNTIME_PRODUCT_RW_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_PRODUCT | Flag::KIND_READ_WRITE) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
715 |
#define RUNTIME_DEVELOP_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_DEVELOP) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
716 |
#define RUNTIME_PD_DEVELOP_FLAG_STRUCT( type, name, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_DEVELOP | Flag::KIND_PLATFORM_DEPENDENT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
717 |
#define RUNTIME_NOTPRODUCT_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_NOT_PRODUCT) }, |
1 | 718 |
|
34174
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
719 |
#define JVMCI_PRODUCT_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_PRODUCT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
720 |
#define JVMCI_PD_PRODUCT_FLAG_STRUCT( type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_PRODUCT | Flag::KIND_PLATFORM_DEPENDENT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
721 |
#define JVMCI_DIAGNOSTIC_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_DIAGNOSTIC) }, |
39117 | 722 |
#define JVMCI_PD_DIAGNOSTIC_FLAG_STRUCT( type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_DIAGNOSTIC | Flag::KIND_PLATFORM_DEPENDENT) }, |
34174
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
723 |
#define JVMCI_EXPERIMENTAL_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_EXPERIMENTAL) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
724 |
#define JVMCI_DEVELOP_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_DEVELOP) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
725 |
#define JVMCI_PD_DEVELOP_FLAG_STRUCT( type, name, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_DEVELOP | Flag::KIND_PLATFORM_DEPENDENT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
726 |
#define JVMCI_NOTPRODUCT_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_NOT_PRODUCT) }, |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
727 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
350
diff
changeset
|
728 |
#ifdef _LP64 |
34174
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
729 |
#define RUNTIME_LP64_PRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_LP64_PRODUCT) }, |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
350
diff
changeset
|
730 |
#else |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
731 |
#define RUNTIME_LP64_PRODUCT_FLAG_STRUCT(type, name, value, doc) /* flag is constant */ |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
350
diff
changeset
|
732 |
#endif // _LP64 |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
350
diff
changeset
|
733 |
|
34174
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
734 |
#define C1_PRODUCT_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_PRODUCT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
735 |
#define C1_PD_PRODUCT_FLAG_STRUCT( type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_PRODUCT | Flag::KIND_PLATFORM_DEPENDENT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
736 |
#define C1_DIAGNOSTIC_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_DIAGNOSTIC) }, |
39117 | 737 |
#define C1_PD_DIAGNOSTIC_FLAG_STRUCT( type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_DIAGNOSTIC | Flag::KIND_PLATFORM_DEPENDENT) }, |
34174
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
738 |
#define C1_DEVELOP_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_DEVELOP) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
739 |
#define C1_PD_DEVELOP_FLAG_STRUCT( type, name, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_DEVELOP | Flag::KIND_PLATFORM_DEPENDENT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
740 |
#define C1_NOTPRODUCT_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_NOT_PRODUCT) }, |
1 | 741 |
|
34174
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
742 |
#define C2_PRODUCT_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_PRODUCT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
743 |
#define C2_PD_PRODUCT_FLAG_STRUCT( type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_PRODUCT | Flag::KIND_PLATFORM_DEPENDENT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
744 |
#define C2_DIAGNOSTIC_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_DIAGNOSTIC) }, |
39117 | 745 |
#define C2_PD_DIAGNOSTIC_FLAG_STRUCT( type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_DIAGNOSTIC | Flag::KIND_PLATFORM_DEPENDENT) }, |
34174
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
746 |
#define C2_EXPERIMENTAL_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_EXPERIMENTAL) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
747 |
#define C2_DEVELOP_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_DEVELOP) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
748 |
#define C2_PD_DEVELOP_FLAG_STRUCT( type, name, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_DEVELOP | Flag::KIND_PLATFORM_DEPENDENT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
749 |
#define C2_NOTPRODUCT_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_NOT_PRODUCT) }, |
1 | 750 |
|
34174
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
751 |
#define ARCH_PRODUCT_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_ARCH | Flag::KIND_PRODUCT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
752 |
#define ARCH_DIAGNOSTIC_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_ARCH | Flag::KIND_DIAGNOSTIC) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
753 |
#define ARCH_EXPERIMENTAL_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_ARCH | Flag::KIND_EXPERIMENTAL) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
754 |
#define ARCH_DEVELOP_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_ARCH | Flag::KIND_DEVELOP) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
755 |
#define ARCH_NOTPRODUCT_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_ARCH | Flag::KIND_NOT_PRODUCT) }, |
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
756 |
|
34174
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
757 |
#define SHARK_PRODUCT_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_SHARK | Flag::KIND_PRODUCT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
758 |
#define SHARK_PD_PRODUCT_FLAG_STRUCT( type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_SHARK | Flag::KIND_PRODUCT | Flag::KIND_PLATFORM_DEPENDENT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
759 |
#define SHARK_DIAGNOSTIC_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_SHARK | Flag::KIND_DIAGNOSTIC) }, |
39117 | 760 |
#define SHARK_PD_DIAGNOSTIC_FLAG_STRUCT( type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_SHARK | Flag::KIND_DIAGNOSTIC | Flag::KIND_PLATFORM_DEPENDENT) }, |
34174
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
761 |
#define SHARK_DEVELOP_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_SHARK | Flag::KIND_DEVELOP) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
762 |
#define SHARK_PD_DEVELOP_FLAG_STRUCT( type, name, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_SHARK | Flag::KIND_DEVELOP | Flag::KIND_PLATFORM_DEPENDENT) }, |
4db2fb26dc49
8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents:
33198
diff
changeset
|
763 |
#define SHARK_NOTPRODUCT_FLAG_STRUCT( type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_SHARK | Flag::KIND_NOT_PRODUCT) }, |
1 | 764 |
|
765 |
static Flag flagTable[] = { |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
766 |
RUNTIME_FLAGS(RUNTIME_DEVELOP_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
767 |
RUNTIME_PD_DEVELOP_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
768 |
RUNTIME_PRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
769 |
RUNTIME_PD_PRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
770 |
RUNTIME_DIAGNOSTIC_FLAG_STRUCT, \ |
39117 | 771 |
RUNTIME_PD_DIAGNOSTIC_FLAG_STRUCT, \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
772 |
RUNTIME_EXPERIMENTAL_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
773 |
RUNTIME_NOTPRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
774 |
RUNTIME_MANAGEABLE_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
775 |
RUNTIME_PRODUCT_RW_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
776 |
RUNTIME_LP64_PRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
777 |
IGNORE_RANGE, \ |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
778 |
IGNORE_CONSTRAINT, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
779 |
IGNORE_WRITEABLE) |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
780 |
RUNTIME_OS_FLAGS(RUNTIME_DEVELOP_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
781 |
RUNTIME_PD_DEVELOP_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
782 |
RUNTIME_PRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
783 |
RUNTIME_PD_PRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
784 |
RUNTIME_DIAGNOSTIC_FLAG_STRUCT, \ |
39117 | 785 |
RUNTIME_PD_DIAGNOSTIC_FLAG_STRUCT, \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
786 |
RUNTIME_NOTPRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
787 |
IGNORE_RANGE, \ |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
788 |
IGNORE_CONSTRAINT, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
789 |
IGNORE_WRITEABLE) |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13521
diff
changeset
|
790 |
#if INCLUDE_ALL_GCS |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
791 |
G1_FLAGS(RUNTIME_DEVELOP_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
792 |
RUNTIME_PD_DEVELOP_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
793 |
RUNTIME_PRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
794 |
RUNTIME_PD_PRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
795 |
RUNTIME_DIAGNOSTIC_FLAG_STRUCT, \ |
39117 | 796 |
RUNTIME_PD_DIAGNOSTIC_FLAG_STRUCT, \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
797 |
RUNTIME_EXPERIMENTAL_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
798 |
RUNTIME_NOTPRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
799 |
RUNTIME_MANAGEABLE_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
800 |
RUNTIME_PRODUCT_RW_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
801 |
IGNORE_RANGE, \ |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
802 |
IGNORE_CONSTRAINT, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
803 |
IGNORE_WRITEABLE) |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13521
diff
changeset
|
804 |
#endif // INCLUDE_ALL_GCS |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
805 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
806 |
JVMCI_FLAGS(JVMCI_DEVELOP_FLAG_STRUCT, \ |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
807 |
JVMCI_PD_DEVELOP_FLAG_STRUCT, \ |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
808 |
JVMCI_PRODUCT_FLAG_STRUCT, \ |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
809 |
JVMCI_PD_PRODUCT_FLAG_STRUCT, \ |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
810 |
JVMCI_DIAGNOSTIC_FLAG_STRUCT, \ |
39117 | 811 |
JVMCI_PD_DIAGNOSTIC_FLAG_STRUCT, \ |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
812 |
JVMCI_EXPERIMENTAL_FLAG_STRUCT, \ |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
813 |
JVMCI_NOTPRODUCT_FLAG_STRUCT, \ |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
814 |
IGNORE_RANGE, \ |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
815 |
IGNORE_CONSTRAINT, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
816 |
IGNORE_WRITEABLE) |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
817 |
#endif // INCLUDE_JVMCI |
1 | 818 |
#ifdef COMPILER1 |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
819 |
C1_FLAGS(C1_DEVELOP_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
820 |
C1_PD_DEVELOP_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
821 |
C1_PRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
822 |
C1_PD_PRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
823 |
C1_DIAGNOSTIC_FLAG_STRUCT, \ |
39117 | 824 |
C1_PD_DIAGNOSTIC_FLAG_STRUCT, \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
825 |
C1_NOTPRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
826 |
IGNORE_RANGE, \ |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
827 |
IGNORE_CONSTRAINT, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
828 |
IGNORE_WRITEABLE) |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
829 |
#endif // COMPILER1 |
1 | 830 |
#ifdef COMPILER2 |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
831 |
C2_FLAGS(C2_DEVELOP_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
832 |
C2_PD_DEVELOP_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
833 |
C2_PRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
834 |
C2_PD_PRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
835 |
C2_DIAGNOSTIC_FLAG_STRUCT, \ |
39117 | 836 |
C2_PD_DIAGNOSTIC_FLAG_STRUCT, \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
837 |
C2_EXPERIMENTAL_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
838 |
C2_NOTPRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
839 |
IGNORE_RANGE, \ |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
840 |
IGNORE_CONSTRAINT, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
841 |
IGNORE_WRITEABLE) |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
842 |
#endif // COMPILER2 |
6187 | 843 |
#ifdef SHARK |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
844 |
SHARK_FLAGS(SHARK_DEVELOP_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
845 |
SHARK_PD_DEVELOP_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
846 |
SHARK_PRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
847 |
SHARK_PD_PRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
848 |
SHARK_DIAGNOSTIC_FLAG_STRUCT, \ |
39117 | 849 |
SHARK_PD_DIAGNOSTIC_FLAG_STRUCT, \ |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
850 |
SHARK_NOTPRODUCT_FLAG_STRUCT, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
851 |
IGNORE_RANGE, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
852 |
IGNORE_CONSTRAINT, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
853 |
IGNORE_WRITEABLE) |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
854 |
#endif // SHARK |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
855 |
ARCH_FLAGS(ARCH_DEVELOP_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
856 |
ARCH_PRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
857 |
ARCH_DIAGNOSTIC_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
858 |
ARCH_EXPERIMENTAL_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
859 |
ARCH_NOTPRODUCT_FLAG_STRUCT, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
860 |
IGNORE_RANGE, \ |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
861 |
IGNORE_CONSTRAINT, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
862 |
IGNORE_WRITEABLE) |
11183
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
863 |
FLAGTABLE_EXT |
1 | 864 |
{0, NULL, NULL} |
865 |
}; |
|
866 |
||
867 |
Flag* Flag::flags = flagTable; |
|
868 |
size_t Flag::numFlags = (sizeof(flagTable) / sizeof(Flag)); |
|
869 |
||
46416 | 870 |
inline bool str_equal(const char* s, size_t s_len, const char* q, size_t q_len) { |
871 |
if (s_len != q_len) return false; |
|
872 |
return memcmp(s, q, q_len) == 0; |
|
1 | 873 |
} |
874 |
||
12157
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
875 |
// Search the flag table for a named flag |
22518
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22194
diff
changeset
|
876 |
Flag* Flag::find_flag(const char* name, size_t length, bool allow_locked, bool return_flag) { |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
877 |
for (Flag* current = &flagTable[0]; current->_name != NULL; current++) { |
46416 | 878 |
if (str_equal(current->_name, current->get_name_length(), name, length)) { |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
879 |
// Found a matching entry. |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
880 |
// Don't report notproduct and develop flags in product builds. |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
881 |
if (current->is_constant_in_binary()) { |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
882 |
return (return_flag ? current : NULL); |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
883 |
} |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
884 |
// Report locked flags only if allowed. |
1 | 885 |
if (!(current->is_unlocked() || current->is_unlocker())) { |
12157
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
886 |
if (!allow_locked) { |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
887 |
// disable use of locked flags, e.g. diagnostic, experimental, |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
888 |
// commercial... until they are explicitly unlocked |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
889 |
return NULL; |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
890 |
} |
1 | 891 |
} |
892 |
return current; |
|
893 |
} |
|
894 |
} |
|
12157
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
895 |
// Flag name is not in the flag table |
1 | 896 |
return NULL; |
897 |
} |
|
898 |
||
46416 | 899 |
// Get or compute the flag name length |
900 |
size_t Flag::get_name_length() { |
|
901 |
if (_name_len == 0) { |
|
902 |
_name_len = strlen(_name); |
|
903 |
} |
|
904 |
return _name_len; |
|
905 |
} |
|
906 |
||
18497 | 907 |
// Compute string similarity based on Dice's coefficient |
908 |
static float str_similar(const char* str1, const char* str2, size_t len2) { |
|
909 |
int len1 = (int) strlen(str1); |
|
910 |
int total = len1 + (int) len2; |
|
911 |
||
912 |
int hit = 0; |
|
913 |
||
914 |
for (int i = 0; i < len1 -1; ++i) { |
|
915 |
for (int j = 0; j < (int) len2 -1; ++j) { |
|
916 |
if ((str1[i] == str2[j]) && (str1[i+1] == str2[j+1])) { |
|
917 |
++hit; |
|
918 |
break; |
|
919 |
} |
|
920 |
} |
|
921 |
} |
|
922 |
||
923 |
return 2.0f * (float) hit / (float) total; |
|
924 |
} |
|
925 |
||
926 |
Flag* Flag::fuzzy_match(const char* name, size_t length, bool allow_locked) { |
|
927 |
float VMOptionsFuzzyMatchSimilarity = 0.7f; |
|
928 |
Flag* match = NULL; |
|
929 |
float score; |
|
930 |
float max_score = -1; |
|
931 |
||
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
932 |
for (Flag* current = &flagTable[0]; current->_name != NULL; current++) { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
933 |
score = str_similar(current->_name, name, length); |
18497 | 934 |
if (score > max_score) { |
935 |
max_score = score; |
|
936 |
match = current; |
|
937 |
} |
|
938 |
} |
|
939 |
||
940 |
if (!(match->is_unlocked() || match->is_unlocker())) { |
|
941 |
if (!allow_locked) { |
|
942 |
return NULL; |
|
943 |
} |
|
944 |
} |
|
945 |
||
946 |
if (max_score < VMOptionsFuzzyMatchSimilarity) { |
|
947 |
return NULL; |
|
948 |
} |
|
949 |
||
950 |
return match; |
|
951 |
} |
|
952 |
||
1 | 953 |
// Returns the address of the index'th element |
954 |
static Flag* address_of_flag(CommandLineFlagWithType flag) { |
|
955 |
assert((size_t)flag < Flag::numFlags, "bad command line flag index"); |
|
956 |
return &Flag::flags[flag]; |
|
957 |
} |
|
958 |
||
959 |
bool CommandLineFlagsEx::is_default(CommandLineFlag flag) { |
|
960 |
assert((size_t)flag < Flag::numFlags, "bad command line flag index"); |
|
961 |
Flag* f = &Flag::flags[flag]; |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
962 |
return f->is_default(); |
1 | 963 |
} |
964 |
||
186
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
965 |
bool CommandLineFlagsEx::is_ergo(CommandLineFlag flag) { |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
966 |
assert((size_t)flag < Flag::numFlags, "bad command line flag index"); |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
967 |
Flag* f = &Flag::flags[flag]; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
968 |
return f->is_ergonomic(); |
186
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
969 |
} |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
970 |
|
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
971 |
bool CommandLineFlagsEx::is_cmdline(CommandLineFlag flag) { |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
972 |
assert((size_t)flag < Flag::numFlags, "bad command line flag index"); |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
973 |
Flag* f = &Flag::flags[flag]; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
974 |
return f->is_command_line(); |
186
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
975 |
} |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
976 |
|
1 | 977 |
bool CommandLineFlags::wasSetOnCmdline(const char* name, bool* value) { |
978 |
Flag* result = Flag::find_flag((char*)name, strlen(name)); |
|
979 |
if (result == NULL) return false; |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
980 |
*value = result->is_command_line(); |
1 | 981 |
return true; |
982 |
} |
|
983 |
||
39960
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
984 |
void CommandLineFlagsEx::setOnCmdLine(CommandLineFlagWithType flag) { |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
985 |
Flag* faddr = address_of_flag(flag); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
986 |
assert(faddr != NULL, "Unknown flag"); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
987 |
faddr->set_command_line(); |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
988 |
} |
ec06b2cf8575
8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents:
39117
diff
changeset
|
989 |
|
22527 | 990 |
template<class E, class T> |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
991 |
static void trace_flag_changed(const char* name, const T old_value, const T new_value, const Flag::Flags origin) { |
22527 | 992 |
E e; |
993 |
e.set_name(name); |
|
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39960
diff
changeset
|
994 |
e.set_oldValue(old_value); |
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39960
diff
changeset
|
995 |
e.set_newValue(new_value); |
22527 | 996 |
e.set_origin(origin); |
997 |
e.commit(); |
|
998 |
} |
|
999 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1000 |
static Flag::Error apply_constraint_and_check_range_bool(const char* name, bool new_value, bool verbose) { |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1001 |
Flag::Error status = Flag::SUCCESS; |
31995
aa4049b4184a
8130459: Add additional validation after heap creation
sangheki
parents:
31592
diff
changeset
|
1002 |
CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1003 |
if (constraint != NULL) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1004 |
status = constraint->apply_bool(new_value, verbose); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1005 |
} |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1006 |
return status; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1007 |
} |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1008 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1009 |
Flag::Error CommandLineFlags::boolAt(const char* name, size_t len, bool* value, bool allow_locked, bool return_flag) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1010 |
Flag* result = Flag::find_flag(name, len, allow_locked, return_flag); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1011 |
if (result == NULL) return Flag::INVALID_FLAG; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1012 |
if (!result->is_bool()) return Flag::WRONG_FORMAT; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1013 |
*value = result->get_bool(); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1014 |
return Flag::SUCCESS; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1015 |
} |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1016 |
|
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1017 |
Flag::Error CommandLineFlags::boolAtPut(Flag* flag, bool* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1018 |
const char* name; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1019 |
if (flag == NULL) return Flag::INVALID_FLAG; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1020 |
if (!flag->is_bool()) return Flag::WRONG_FORMAT; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1021 |
name = flag->_name; |
32351 | 1022 |
Flag::Error check = apply_constraint_and_check_range_bool(name, *value, !CommandLineFlagConstraintList::validated_after_ergo()); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1023 |
if (check != Flag::SUCCESS) return check; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1024 |
bool old_value = flag->get_bool(); |
22527 | 1025 |
trace_flag_changed<EventBooleanFlagChanged, bool>(name, old_value, *value, origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1026 |
check = flag->set_bool(*value); |
1 | 1027 |
*value = old_value; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1028 |
flag->set_origin(origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1029 |
return check; |
1 | 1030 |
} |
1031 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1032 |
Flag::Error CommandLineFlags::boolAtPut(const char* name, size_t len, bool* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1033 |
Flag* result = Flag::find_flag(name, len); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1034 |
return boolAtPut(result, value, origin); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1035 |
} |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1036 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1037 |
Flag::Error CommandLineFlagsEx::boolAtPut(CommandLineFlagWithType flag, bool value, Flag::Flags origin) { |
1 | 1038 |
Flag* faddr = address_of_flag(flag); |
1039 |
guarantee(faddr != NULL && faddr->is_bool(), "wrong flag type"); |
|
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1040 |
return CommandLineFlags::boolAtPut(faddr, &value, origin); |
1 | 1041 |
} |
1042 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1043 |
static Flag::Error apply_constraint_and_check_range_int(const char* name, int new_value, bool verbose) { |
32351 | 1044 |
Flag::Error status = Flag::SUCCESS; |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1045 |
CommandLineFlagRange* range = CommandLineFlagRangeList::find(name); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1046 |
if (range != NULL) { |
32351 | 1047 |
status = range->check_int(new_value, verbose); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1048 |
} |
32351 | 1049 |
if (status == Flag::SUCCESS) { |
1050 |
CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name); |
|
1051 |
if (constraint != NULL) { |
|
1052 |
status = constraint->apply_int(new_value, verbose); |
|
1053 |
} |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1054 |
} |
32351 | 1055 |
return status; |
31236 | 1056 |
} |
1057 |
||
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1058 |
Flag::Error CommandLineFlags::intAt(const char* name, size_t len, int* value, bool allow_locked, bool return_flag) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1059 |
Flag* result = Flag::find_flag(name, len, allow_locked, return_flag); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1060 |
if (result == NULL) return Flag::INVALID_FLAG; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1061 |
if (!result->is_int()) return Flag::WRONG_FORMAT; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1062 |
*value = result->get_int(); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1063 |
return Flag::SUCCESS; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1064 |
} |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1065 |
|
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1066 |
Flag::Error CommandLineFlags::intAtPut(Flag* flag, int* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1067 |
const char* name; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1068 |
if (flag == NULL) return Flag::INVALID_FLAG; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1069 |
if (!flag->is_int()) return Flag::WRONG_FORMAT; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1070 |
name = flag->_name; |
32351 | 1071 |
Flag::Error check = apply_constraint_and_check_range_int(name, *value, !CommandLineFlagConstraintList::validated_after_ergo()); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1072 |
if (check != Flag::SUCCESS) return check; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1073 |
int old_value = flag->get_int(); |
31236 | 1074 |
trace_flag_changed<EventIntFlagChanged, s4>(name, old_value, *value, origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1075 |
check = flag->set_int(*value); |
31236 | 1076 |
*value = old_value; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1077 |
flag->set_origin(origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1078 |
return check; |
31236 | 1079 |
} |
1080 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1081 |
Flag::Error CommandLineFlags::intAtPut(const char* name, size_t len, int* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1082 |
Flag* result = Flag::find_flag(name, len); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1083 |
return intAtPut(result, value, origin); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1084 |
} |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1085 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1086 |
Flag::Error CommandLineFlagsEx::intAtPut(CommandLineFlagWithType flag, int value, Flag::Flags origin) { |
31236 | 1087 |
Flag* faddr = address_of_flag(flag); |
1088 |
guarantee(faddr != NULL && faddr->is_int(), "wrong flag type"); |
|
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1089 |
return CommandLineFlags::intAtPut(faddr, &value, origin); |
31236 | 1090 |
} |
1091 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1092 |
static Flag::Error apply_constraint_and_check_range_uint(const char* name, uint new_value, bool verbose) { |
32351 | 1093 |
Flag::Error status = Flag::SUCCESS; |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1094 |
CommandLineFlagRange* range = CommandLineFlagRangeList::find(name); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1095 |
if (range != NULL) { |
32351 | 1096 |
status = range->check_uint(new_value, verbose); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1097 |
} |
32351 | 1098 |
if (status == Flag::SUCCESS) { |
1099 |
CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name); |
|
1100 |
if (constraint != NULL) { |
|
1101 |
status = constraint->apply_uint(new_value, verbose); |
|
1102 |
} |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1103 |
} |
32351 | 1104 |
return status; |
31236 | 1105 |
} |
1106 |
||
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1107 |
Flag::Error CommandLineFlags::uintAt(const char* name, size_t len, uint* value, bool allow_locked, bool return_flag) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1108 |
Flag* result = Flag::find_flag(name, len, allow_locked, return_flag); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1109 |
if (result == NULL) return Flag::INVALID_FLAG; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1110 |
if (!result->is_uint()) return Flag::WRONG_FORMAT; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1111 |
*value = result->get_uint(); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1112 |
return Flag::SUCCESS; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1113 |
} |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1114 |
|
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1115 |
Flag::Error CommandLineFlags::uintAtPut(Flag* flag, uint* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1116 |
const char* name; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1117 |
if (flag == NULL) return Flag::INVALID_FLAG; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1118 |
if (!flag->is_uint()) return Flag::WRONG_FORMAT; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1119 |
name = flag->_name; |
32351 | 1120 |
Flag::Error check = apply_constraint_and_check_range_uint(name, *value, !CommandLineFlagConstraintList::validated_after_ergo()); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1121 |
if (check != Flag::SUCCESS) return check; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1122 |
uint old_value = flag->get_uint(); |
31236 | 1123 |
trace_flag_changed<EventUnsignedIntFlagChanged, u4>(name, old_value, *value, origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1124 |
check = flag->set_uint(*value); |
31236 | 1125 |
*value = old_value; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1126 |
flag->set_origin(origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1127 |
return check; |
31236 | 1128 |
} |
1129 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1130 |
Flag::Error CommandLineFlags::uintAtPut(const char* name, size_t len, uint* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1131 |
Flag* result = Flag::find_flag(name, len); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1132 |
return uintAtPut(result, value, origin); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1133 |
} |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1134 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1135 |
Flag::Error CommandLineFlagsEx::uintAtPut(CommandLineFlagWithType flag, uint value, Flag::Flags origin) { |
31236 | 1136 |
Flag* faddr = address_of_flag(flag); |
1137 |
guarantee(faddr != NULL && faddr->is_uint(), "wrong flag type"); |
|
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1138 |
return CommandLineFlags::uintAtPut(faddr, &value, origin); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1139 |
} |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1140 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1141 |
Flag::Error CommandLineFlags::intxAt(const char* name, size_t len, intx* value, bool allow_locked, bool return_flag) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1142 |
Flag* result = Flag::find_flag(name, len, allow_locked, return_flag); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1143 |
if (result == NULL) return Flag::INVALID_FLAG; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1144 |
if (!result->is_intx()) return Flag::WRONG_FORMAT; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1145 |
*value = result->get_intx(); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1146 |
return Flag::SUCCESS; |
31236 | 1147 |
} |
1148 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1149 |
static Flag::Error apply_constraint_and_check_range_intx(const char* name, intx new_value, bool verbose) { |
32351 | 1150 |
Flag::Error status = Flag::SUCCESS; |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1151 |
CommandLineFlagRange* range = CommandLineFlagRangeList::find(name); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1152 |
if (range != NULL) { |
32351 | 1153 |
status = range->check_intx(new_value, verbose); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1154 |
} |
32351 | 1155 |
if (status == Flag::SUCCESS) { |
1156 |
CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name); |
|
1157 |
if (constraint != NULL) { |
|
1158 |
status = constraint->apply_intx(new_value, verbose); |
|
1159 |
} |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1160 |
} |
32351 | 1161 |
return status; |
1 | 1162 |
} |
1163 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1164 |
Flag::Error CommandLineFlags::intxAtPut(Flag* flag, intx* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1165 |
const char* name; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1166 |
if (flag == NULL) return Flag::INVALID_FLAG; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1167 |
if (!flag->is_intx()) return Flag::WRONG_FORMAT; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1168 |
name = flag->_name; |
32351 | 1169 |
Flag::Error check = apply_constraint_and_check_range_intx(name, *value, !CommandLineFlagConstraintList::validated_after_ergo()); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1170 |
if (check != Flag::SUCCESS) return check; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1171 |
intx old_value = flag->get_intx(); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1172 |
trace_flag_changed<EventLongFlagChanged, intx>(name, old_value, *value, origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1173 |
check = flag->set_intx(*value); |
1 | 1174 |
*value = old_value; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1175 |
flag->set_origin(origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1176 |
return check; |
1 | 1177 |
} |
1178 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1179 |
Flag::Error CommandLineFlags::intxAtPut(const char* name, size_t len, intx* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1180 |
Flag* result = Flag::find_flag(name, len); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1181 |
return intxAtPut(result, value, origin); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1182 |
} |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1183 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1184 |
Flag::Error CommandLineFlagsEx::intxAtPut(CommandLineFlagWithType flag, intx value, Flag::Flags origin) { |
1 | 1185 |
Flag* faddr = address_of_flag(flag); |
1186 |
guarantee(faddr != NULL && faddr->is_intx(), "wrong flag type"); |
|
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1187 |
return CommandLineFlags::intxAtPut(faddr, &value, origin); |
1 | 1188 |
} |
1189 |
||
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1190 |
Flag::Error CommandLineFlags::uintxAt(const char* name, size_t len, uintx* value, bool allow_locked, bool return_flag) { |
27417
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27166
diff
changeset
|
1191 |
Flag* result = Flag::find_flag(name, len, allow_locked, return_flag); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1192 |
if (result == NULL) return Flag::INVALID_FLAG; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1193 |
if (!result->is_uintx()) return Flag::WRONG_FORMAT; |
1 | 1194 |
*value = result->get_uintx(); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1195 |
return Flag::SUCCESS; |
1 | 1196 |
} |
1197 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1198 |
static Flag::Error apply_constraint_and_check_range_uintx(const char* name, uintx new_value, bool verbose) { |
32351 | 1199 |
Flag::Error status = Flag::SUCCESS; |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1200 |
CommandLineFlagRange* range = CommandLineFlagRangeList::find(name); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1201 |
if (range != NULL) { |
32351 | 1202 |
status = range->check_uintx(new_value, verbose); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1203 |
} |
32351 | 1204 |
if (status == Flag::SUCCESS) { |
1205 |
CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name); |
|
1206 |
if (constraint != NULL) { |
|
1207 |
status = constraint->apply_uintx(new_value, verbose); |
|
1208 |
} |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1209 |
} |
32351 | 1210 |
return status; |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1211 |
} |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1212 |
|
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1213 |
Flag::Error CommandLineFlags::uintxAtPut(Flag* flag, uintx* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1214 |
const char* name; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1215 |
if (flag == NULL) return Flag::INVALID_FLAG; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1216 |
if (!flag->is_uintx()) return Flag::WRONG_FORMAT; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1217 |
name = flag->_name; |
32351 | 1218 |
Flag::Error check = apply_constraint_and_check_range_uintx(name, *value, !CommandLineFlagConstraintList::validated_after_ergo()); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1219 |
if (check != Flag::SUCCESS) return check; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1220 |
uintx old_value = flag->get_uintx(); |
22527 | 1221 |
trace_flag_changed<EventUnsignedLongFlagChanged, u8>(name, old_value, *value, origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1222 |
check = flag->set_uintx(*value); |
1 | 1223 |
*value = old_value; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1224 |
flag->set_origin(origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1225 |
return check; |
1 | 1226 |
} |
1227 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1228 |
Flag::Error CommandLineFlags::uintxAtPut(const char* name, size_t len, uintx* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1229 |
Flag* result = Flag::find_flag(name, len); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1230 |
return uintxAtPut(result, value, origin); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1231 |
} |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1232 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1233 |
Flag::Error CommandLineFlagsEx::uintxAtPut(CommandLineFlagWithType flag, uintx value, Flag::Flags origin) { |
1 | 1234 |
Flag* faddr = address_of_flag(flag); |
1235 |
guarantee(faddr != NULL && faddr->is_uintx(), "wrong flag type"); |
|
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1236 |
return CommandLineFlags::uintxAtPut(faddr, &value, origin); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1237 |
} |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1238 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1239 |
Flag::Error CommandLineFlags::uint64_tAt(const char* name, size_t len, uint64_t* value, bool allow_locked, bool return_flag) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1240 |
Flag* result = Flag::find_flag(name, len, allow_locked, return_flag); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1241 |
if (result == NULL) return Flag::INVALID_FLAG; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1242 |
if (!result->is_uint64_t()) return Flag::WRONG_FORMAT; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1243 |
*value = result->get_uint64_t(); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1244 |
return Flag::SUCCESS; |
1 | 1245 |
} |
1246 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1247 |
static Flag::Error apply_constraint_and_check_range_uint64_t(const char* name, uint64_t new_value, bool verbose) { |
32351 | 1248 |
Flag::Error status = Flag::SUCCESS; |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1249 |
CommandLineFlagRange* range = CommandLineFlagRangeList::find(name); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1250 |
if (range != NULL) { |
32351 | 1251 |
status = range->check_uint64_t(new_value, verbose); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1252 |
} |
32351 | 1253 |
if (status == Flag::SUCCESS) { |
1254 |
CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name); |
|
1255 |
if (constraint != NULL) { |
|
1256 |
status = constraint->apply_uint64_t(new_value, verbose); |
|
1257 |
} |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1258 |
} |
32351 | 1259 |
return status; |
4434 | 1260 |
} |
1261 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1262 |
Flag::Error CommandLineFlags::uint64_tAtPut(Flag* flag, uint64_t* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1263 |
const char* name; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1264 |
if (flag == NULL) return Flag::INVALID_FLAG; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1265 |
if (!flag->is_uint64_t()) return Flag::WRONG_FORMAT; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1266 |
name = flag->_name; |
32351 | 1267 |
Flag::Error check = apply_constraint_and_check_range_uint64_t(name, *value, !CommandLineFlagConstraintList::validated_after_ergo()); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1268 |
if (check != Flag::SUCCESS) return check; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1269 |
uint64_t old_value = flag->get_uint64_t(); |
22527 | 1270 |
trace_flag_changed<EventUnsignedLongFlagChanged, u8>(name, old_value, *value, origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1271 |
check = flag->set_uint64_t(*value); |
4434 | 1272 |
*value = old_value; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1273 |
flag->set_origin(origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1274 |
return check; |
4434 | 1275 |
} |
1276 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1277 |
Flag::Error CommandLineFlags::uint64_tAtPut(const char* name, size_t len, uint64_t* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1278 |
Flag* result = Flag::find_flag(name, len); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1279 |
return uint64_tAtPut(result, value, origin); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1280 |
} |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1281 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1282 |
Flag::Error CommandLineFlagsEx::uint64_tAtPut(CommandLineFlagWithType flag, uint64_t value, Flag::Flags origin) { |
4434 | 1283 |
Flag* faddr = address_of_flag(flag); |
1284 |
guarantee(faddr != NULL && faddr->is_uint64_t(), "wrong flag type"); |
|
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1285 |
return CommandLineFlags::uint64_tAtPut(faddr, &value, origin); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1286 |
} |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1287 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1288 |
Flag::Error CommandLineFlags::size_tAt(const char* name, size_t len, size_t* value, bool allow_locked, bool return_flag) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1289 |
Flag* result = Flag::find_flag(name, len, allow_locked, return_flag); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1290 |
if (result == NULL) return Flag::INVALID_FLAG; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1291 |
if (!result->is_size_t()) return Flag::WRONG_FORMAT; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1292 |
*value = result->get_size_t(); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1293 |
return Flag::SUCCESS; |
4434 | 1294 |
} |
1295 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1296 |
static Flag::Error apply_constraint_and_check_range_size_t(const char* name, size_t new_value, bool verbose) { |
32351 | 1297 |
Flag::Error status = Flag::SUCCESS; |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1298 |
CommandLineFlagRange* range = CommandLineFlagRangeList::find(name); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1299 |
if (range != NULL) { |
32351 | 1300 |
status = range->check_size_t(new_value, verbose); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1301 |
} |
32351 | 1302 |
if (status == Flag::SUCCESS) { |
1303 |
CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name); |
|
1304 |
if (constraint != NULL) { |
|
1305 |
status = constraint->apply_size_t(new_value, verbose); |
|
1306 |
} |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1307 |
} |
32351 | 1308 |
return status; |
25959 | 1309 |
} |
1310 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1311 |
|
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1312 |
Flag::Error CommandLineFlags::size_tAtPut(Flag* flag, size_t* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1313 |
const char* name; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1314 |
if (flag == NULL) return Flag::INVALID_FLAG; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1315 |
if (!flag->is_size_t()) return Flag::WRONG_FORMAT; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1316 |
name = flag->_name; |
32351 | 1317 |
Flag::Error check = apply_constraint_and_check_range_size_t(name, *value, !CommandLineFlagConstraintList::validated_after_ergo()); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1318 |
if (check != Flag::SUCCESS) return check; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1319 |
size_t old_value = flag->get_size_t(); |
25959 | 1320 |
trace_flag_changed<EventUnsignedLongFlagChanged, u8>(name, old_value, *value, origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1321 |
check = flag->set_size_t(*value); |
25959 | 1322 |
*value = old_value; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1323 |
flag->set_origin(origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1324 |
return check; |
25959 | 1325 |
} |
1326 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1327 |
Flag::Error CommandLineFlags::size_tAtPut(const char* name, size_t len, size_t* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1328 |
Flag* result = Flag::find_flag(name, len); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1329 |
return size_tAtPut(result, value, origin); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1330 |
} |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1331 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1332 |
Flag::Error CommandLineFlagsEx::size_tAtPut(CommandLineFlagWithType flag, size_t value, Flag::Flags origin) { |
25959 | 1333 |
Flag* faddr = address_of_flag(flag); |
1334 |
guarantee(faddr != NULL && faddr->is_size_t(), "wrong flag type"); |
|
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1335 |
return CommandLineFlags::size_tAtPut(faddr, &value, origin); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1336 |
} |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1337 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1338 |
Flag::Error CommandLineFlags::doubleAt(const char* name, size_t len, double* value, bool allow_locked, bool return_flag) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1339 |
Flag* result = Flag::find_flag(name, len, allow_locked, return_flag); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1340 |
if (result == NULL) return Flag::INVALID_FLAG; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1341 |
if (!result->is_double()) return Flag::WRONG_FORMAT; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1342 |
*value = result->get_double(); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1343 |
return Flag::SUCCESS; |
25959 | 1344 |
} |
1345 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1346 |
static Flag::Error apply_constraint_and_check_range_double(const char* name, double new_value, bool verbose) { |
32351 | 1347 |
Flag::Error status = Flag::SUCCESS; |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1348 |
CommandLineFlagRange* range = CommandLineFlagRangeList::find(name); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1349 |
if (range != NULL) { |
32351 | 1350 |
status = range->check_double(new_value, verbose); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1351 |
} |
32351 | 1352 |
if (status == Flag::SUCCESS) { |
1353 |
CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name); |
|
1354 |
if (constraint != NULL) { |
|
1355 |
status = constraint->apply_double(new_value, verbose); |
|
1356 |
} |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1357 |
} |
32351 | 1358 |
return status; |
1 | 1359 |
} |
1360 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1361 |
Flag::Error CommandLineFlags::doubleAtPut(Flag* flag, double* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1362 |
const char* name; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1363 |
if (flag == NULL) return Flag::INVALID_FLAG; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1364 |
if (!flag->is_double()) return Flag::WRONG_FORMAT; |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1365 |
name = flag->_name; |
32351 | 1366 |
Flag::Error check = apply_constraint_and_check_range_double(name, *value, !CommandLineFlagConstraintList::validated_after_ergo()); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1367 |
if (check != Flag::SUCCESS) return check; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1368 |
double old_value = flag->get_double(); |
22527 | 1369 |
trace_flag_changed<EventDoubleFlagChanged, double>(name, old_value, *value, origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1370 |
check = flag->set_double(*value); |
1 | 1371 |
*value = old_value; |
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1372 |
flag->set_origin(origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1373 |
return check; |
1 | 1374 |
} |
1375 |
||
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1376 |
Flag::Error CommandLineFlags::doubleAtPut(const char* name, size_t len, double* value, Flag::Flags origin) { |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1377 |
Flag* result = Flag::find_flag(name, len); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1378 |
return doubleAtPut(result, value, origin); |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1379 |
} |
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1380 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1381 |
Flag::Error CommandLineFlagsEx::doubleAtPut(CommandLineFlagWithType flag, double value, Flag::Flags origin) { |
1 | 1382 |
Flag* faddr = address_of_flag(flag); |
1383 |
guarantee(faddr != NULL && faddr->is_double(), "wrong flag type"); |
|
33775
3ae47fa978ea
8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents:
33604
diff
changeset
|
1384 |
return CommandLineFlags::doubleAtPut(faddr, &value, origin); |
1 | 1385 |
} |
1386 |
||
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1387 |
Flag::Error CommandLineFlags::ccstrAt(const char* name, size_t len, ccstr* value, bool allow_locked, bool return_flag) { |
27417
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27166
diff
changeset
|
1388 |
Flag* result = Flag::find_flag(name, len, allow_locked, return_flag); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1389 |
if (result == NULL) return Flag::INVALID_FLAG; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1390 |
if (!result->is_ccstr()) return Flag::WRONG_FORMAT; |
1 | 1391 |
*value = result->get_ccstr(); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1392 |
return Flag::SUCCESS; |
1 | 1393 |
} |
1394 |
||
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1395 |
Flag::Error CommandLineFlags::ccstrAtPut(const char* name, size_t len, ccstr* value, Flag::Flags origin) { |
1 | 1396 |
Flag* result = Flag::find_flag(name, len); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1397 |
if (result == NULL) return Flag::INVALID_FLAG; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1398 |
if (!result->is_ccstr()) return Flag::WRONG_FORMAT; |
1 | 1399 |
ccstr old_value = result->get_ccstr(); |
22527 | 1400 |
trace_flag_changed<EventStringFlagChanged, const char*>(name, old_value, *value, origin); |
1402
ccb40ce62b79
6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents:
670
diff
changeset
|
1401 |
char* new_value = NULL; |
ccb40ce62b79
6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents:
670
diff
changeset
|
1402 |
if (*value != NULL) { |
27471 | 1403 |
new_value = os::strdup_check_oom(*value); |
1402
ccb40ce62b79
6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents:
670
diff
changeset
|
1404 |
} |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1405 |
Flag::Error check = result->set_ccstr(new_value); |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1406 |
if (result->is_default() && old_value != NULL) { |
1 | 1407 |
// Prior value is NOT heap allocated, but was a literal constant. |
27471 | 1408 |
old_value = os::strdup_check_oom(old_value); |
1 | 1409 |
} |
1410 |
*value = old_value; |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1411 |
result->set_origin(origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1412 |
return check; |
1 | 1413 |
} |
1414 |
||
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1415 |
Flag::Error CommandLineFlagsEx::ccstrAtPut(CommandLineFlagWithType flag, ccstr value, Flag::Flags origin) { |
1 | 1416 |
Flag* faddr = address_of_flag(flag); |
1417 |
guarantee(faddr != NULL && faddr->is_ccstr(), "wrong flag type"); |
|
1418 |
ccstr old_value = faddr->get_ccstr(); |
|
22527 | 1419 |
trace_flag_changed<EventStringFlagChanged, const char*>(faddr->_name, old_value, value, origin); |
27471 | 1420 |
char* new_value = os::strdup_check_oom(value); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1421 |
Flag::Error check = faddr->set_ccstr(new_value); |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1422 |
if (!faddr->is_default() && old_value != NULL) { |
1 | 1423 |
// Prior value is heap allocated so free it. |
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
27471
diff
changeset
|
1424 |
FREE_C_HEAP_ARRAY(char, old_value); |
1 | 1425 |
} |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1426 |
faddr->set_origin(origin); |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
1427 |
return check; |
1 | 1428 |
} |
1429 |
||
1430 |
extern "C" { |
|
1431 |
static int compare_flags(const void* void_a, const void* void_b) { |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1432 |
return strcmp((*((Flag**) void_a))->_name, (*((Flag**) void_b))->_name); |
1 | 1433 |
} |
1434 |
} |
|
1435 |
||
11441 | 1436 |
void CommandLineFlags::printSetFlags(outputStream* out) { |
1 | 1437 |
// Print which flags were set on the command line |
1438 |
// note: this method is called before the thread structure is in place |
|
1439 |
// which means resource allocation cannot be used. |
|
1440 |
||
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1441 |
// The last entry is the null entry. |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1442 |
const size_t length = Flag::numFlags - 1; |
1 | 1443 |
|
1444 |
// Sort |
|
37491
edf4cc53f5a3
8153039: Command line processing should use mtCommand or mtArguments rather than mtInternal for NMT
gziemski
parents:
37466
diff
changeset
|
1445 |
Flag** array = NEW_C_HEAP_ARRAY(Flag*, length, mtArguments); |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1446 |
for (size_t i = 0; i < length; i++) { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1447 |
array[i] = &flagTable[i]; |
1 | 1448 |
} |
1449 |
qsort(array, length, sizeof(Flag*), compare_flags); |
|
1450 |
||
1451 |
||
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1452 |
for (size_t i = 0; i < length; i++) { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1453 |
if (array[i]->get_origin() /* naked field! */) { |
11441 | 1454 |
array[i]->print_as_flag(out); |
1455 |
out->print(" "); |
|
1 | 1456 |
} |
1457 |
} |
|
11441 | 1458 |
out->cr(); |
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
27471
diff
changeset
|
1459 |
FREE_C_HEAP_ARRAY(Flag*, array); |
1 | 1460 |
} |
1461 |
||
1462 |
#ifndef PRODUCT |
|
1463 |
||
1464 |
void CommandLineFlags::verify() { |
|
1465 |
assert(Arguments::check_vm_args_consistency(), "Some flag settings conflict"); |
|
1466 |
} |
|
1467 |
||
4579 | 1468 |
#endif // PRODUCT |
1469 |
||
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1470 |
void CommandLineFlags::printFlags(outputStream* out, bool withComments, bool printRanges) { |
1 | 1471 |
// Print the flags sorted by name |
1472 |
// note: this method is called before the thread structure is in place |
|
1473 |
// which means resource allocation cannot be used. |
|
1474 |
||
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1475 |
// The last entry is the null entry. |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1476 |
const size_t length = Flag::numFlags - 1; |
1 | 1477 |
|
1478 |
// Sort |
|
37491
edf4cc53f5a3
8153039: Command line processing should use mtCommand or mtArguments rather than mtInternal for NMT
gziemski
parents:
37466
diff
changeset
|
1479 |
Flag** array = NEW_C_HEAP_ARRAY(Flag*, length, mtArguments); |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1480 |
for (size_t i = 0; i < length; i++) { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1481 |
array[i] = &flagTable[i]; |
1 | 1482 |
} |
1483 |
qsort(array, length, sizeof(Flag*), compare_flags); |
|
1484 |
||
1485 |
||
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1486 |
if (!printRanges) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1487 |
out->print_cr("[Global flags]"); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1488 |
} else { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1489 |
out->print_cr("[Global flags ranges]"); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1490 |
} |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1491 |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
19710
diff
changeset
|
1492 |
for (size_t i = 0; i < length; i++) { |
1 | 1493 |
if (array[i]->is_unlocked()) { |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
1494 |
array[i]->print_on(out, withComments, printRanges); |
1 | 1495 |
} |
1496 |
} |
|
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
27471
diff
changeset
|
1497 |
FREE_C_HEAP_ARRAY(Flag*, array); |
1 | 1498 |
} |