author | dcubed |
Thu, 18 Jul 2013 12:35:55 -0700 | |
changeset 18945 | 1225c36dacd3 |
parent 18497 | 9ff60555fcd3 |
child 19710 | 2f8ca425504e |
permissions | -rw-r--r-- |
1 | 1 |
/* |
15615
188bbf11988e
8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents:
15482
diff
changeset
|
2 |
* Copyright (c) 1997, 2013, 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" |
|
28 |
#include "runtime/arguments.hpp" |
|
29 |
#include "runtime/globals.hpp" |
|
30 |
#include "runtime/globals_extension.hpp" |
|
31 |
#include "utilities/ostream.hpp" |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13521
diff
changeset
|
32 |
#include "utilities/macros.hpp" |
7397 | 33 |
#include "utilities/top.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13521
diff
changeset
|
34 |
#if INCLUDE_ALL_GCS |
7397 | 35 |
#include "gc_implementation/g1/g1_globals.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13521
diff
changeset
|
36 |
#endif // INCLUDE_ALL_GCS |
7397 | 37 |
#ifdef COMPILER1 |
38 |
#include "c1/c1_globals.hpp" |
|
39 |
#endif |
|
40 |
#ifdef COMPILER2 |
|
41 |
#include "opto/c2_globals.hpp" |
|
42 |
#endif |
|
43 |
#ifdef SHARK |
|
44 |
#include "shark/shark_globals.hpp" |
|
45 |
#endif |
|
1 | 46 |
|
47 |
RUNTIME_FLAGS(MATERIALIZE_DEVELOPER_FLAG, MATERIALIZE_PD_DEVELOPER_FLAG, \ |
|
48 |
MATERIALIZE_PRODUCT_FLAG, MATERIALIZE_PD_PRODUCT_FLAG, \ |
|
11167
3931428f62ae
7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents:
11166
diff
changeset
|
49 |
MATERIALIZE_DIAGNOSTIC_FLAG, MATERIALIZE_EXPERIMENTAL_FLAG, \ |
3931428f62ae
7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents:
11166
diff
changeset
|
50 |
MATERIALIZE_NOTPRODUCT_FLAG, \ |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
350
diff
changeset
|
51 |
MATERIALIZE_MANAGEABLE_FLAG, MATERIALIZE_PRODUCT_RW_FLAG, \ |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
350
diff
changeset
|
52 |
MATERIALIZE_LP64_PRODUCT_FLAG) |
1 | 53 |
|
54 |
RUNTIME_OS_FLAGS(MATERIALIZE_DEVELOPER_FLAG, MATERIALIZE_PD_DEVELOPER_FLAG, \ |
|
55 |
MATERIALIZE_PRODUCT_FLAG, MATERIALIZE_PD_PRODUCT_FLAG, \ |
|
56 |
MATERIALIZE_DIAGNOSTIC_FLAG, MATERIALIZE_NOTPRODUCT_FLAG) |
|
57 |
||
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
58 |
ARCH_FLAGS(MATERIALIZE_DEVELOPER_FLAG, MATERIALIZE_PRODUCT_FLAG, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
59 |
MATERIALIZE_DIAGNOSTIC_FLAG, MATERIALIZE_EXPERIMENTAL_FLAG, \ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
60 |
MATERIALIZE_NOTPRODUCT_FLAG) |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
61 |
|
11183
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
62 |
MATERIALIZE_FLAGS_EXT |
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
63 |
|
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
64 |
|
1 | 65 |
bool Flag::is_unlocker() const { |
11167
3931428f62ae
7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents:
11166
diff
changeset
|
66 |
return strcmp(name, "UnlockDiagnosticVMOptions") == 0 || |
11183
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
67 |
strcmp(name, "UnlockExperimentalVMOptions") == 0 || |
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
68 |
is_unlocker_ext(); |
1 | 69 |
} |
70 |
||
71 |
bool Flag::is_unlocked() const { |
|
15615
188bbf11988e
8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents:
15482
diff
changeset
|
72 |
if (strcmp(kind, "{diagnostic}") == 0 || |
188bbf11988e
8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents:
15482
diff
changeset
|
73 |
strcmp(kind, "{C2 diagnostic}") == 0 || |
188bbf11988e
8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents:
15482
diff
changeset
|
74 |
strcmp(kind, "{ARCH diagnostic}") == 0 || |
188bbf11988e
8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents:
15482
diff
changeset
|
75 |
strcmp(kind, "{Shark diagnostic}") == 0) { |
1 | 76 |
return UnlockDiagnosticVMOptions; |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4437
diff
changeset
|
77 |
} else if (strcmp(kind, "{experimental}") == 0 || |
15615
188bbf11988e
8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents:
15482
diff
changeset
|
78 |
strcmp(kind, "{C2 experimental}") == 0 || |
188bbf11988e
8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents:
15482
diff
changeset
|
79 |
strcmp(kind, "{ARCH experimental}") == 0 || |
188bbf11988e
8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents:
15482
diff
changeset
|
80 |
strcmp(kind, "{Shark experimental}") == 0) { |
1382
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1374
diff
changeset
|
81 |
return UnlockExperimentalVMOptions; |
1 | 82 |
} else { |
11183
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
83 |
return is_unlocked_ext(); |
1 | 84 |
} |
85 |
} |
|
86 |
||
12157
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
87 |
// Get custom message for this locked flag, or return NULL if |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
88 |
// none is available. |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
89 |
void Flag::get_locked_message(char* buf, int buflen) const { |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
90 |
get_locked_message_ext(buf, buflen); |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
91 |
} |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
92 |
|
1 | 93 |
bool Flag::is_writeable() const { |
11254
e2dd3c32a7cb
7122880: Extend vendor-specific command interface to include manageable switches
phh
parents:
11183
diff
changeset
|
94 |
return strcmp(kind, "{manageable}") == 0 || |
e2dd3c32a7cb
7122880: Extend vendor-specific command interface to include manageable switches
phh
parents:
11183
diff
changeset
|
95 |
strcmp(kind, "{product rw}") == 0 || |
e2dd3c32a7cb
7122880: Extend vendor-specific command interface to include manageable switches
phh
parents:
11183
diff
changeset
|
96 |
is_writeable_ext(); |
1 | 97 |
} |
98 |
||
11254
e2dd3c32a7cb
7122880: Extend vendor-specific command interface to include manageable switches
phh
parents:
11183
diff
changeset
|
99 |
// All flags except "manageable" are assumed to be internal flags. |
1 | 100 |
// Long term, we need to define a mechanism to specify which flags |
101 |
// are external/stable and change this function accordingly. |
|
102 |
bool Flag::is_external() const { |
|
11254
e2dd3c32a7cb
7122880: Extend vendor-specific command interface to include manageable switches
phh
parents:
11183
diff
changeset
|
103 |
return strcmp(kind, "{manageable}") == 0 || is_external_ext(); |
1 | 104 |
} |
105 |
||
11254
e2dd3c32a7cb
7122880: Extend vendor-specific command interface to include manageable switches
phh
parents:
11183
diff
changeset
|
106 |
|
1 | 107 |
// Length of format string (e.g. "%.1234s") for printing ccstr below |
108 |
#define FORMAT_BUFFER_LEN 16 |
|
109 |
||
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
110 |
void Flag::print_on(outputStream* st, bool withComments) { |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
111 |
st->print("%9s %-40s %c= ", type, name, (origin != DEFAULT ? ':' : ' ')); |
4437
d1abc17afffb
6898160: Need serviceability support for new vm argument type 'uint64_t'
phh
parents:
4434
diff
changeset
|
112 |
if (is_bool()) st->print("%-16s", get_bool() ? "true" : "false"); |
d1abc17afffb
6898160: Need serviceability support for new vm argument type 'uint64_t'
phh
parents:
4434
diff
changeset
|
113 |
if (is_intx()) st->print("%-16ld", get_intx()); |
d1abc17afffb
6898160: Need serviceability support for new vm argument type 'uint64_t'
phh
parents:
4434
diff
changeset
|
114 |
if (is_uintx()) st->print("%-16lu", get_uintx()); |
d1abc17afffb
6898160: Need serviceability support for new vm argument type 'uint64_t'
phh
parents:
4434
diff
changeset
|
115 |
if (is_uint64_t()) st->print("%-16lu", get_uint64_t()); |
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
116 |
if (is_double()) st->print("%-16f", get_double()); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
117 |
|
1 | 118 |
if (is_ccstr()) { |
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
119 |
const char* cp = get_ccstr(); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
120 |
if (cp != NULL) { |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
121 |
const char* eol; |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
122 |
while ((eol = strchr(cp, '\n')) != NULL) { |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
123 |
char format_buffer[FORMAT_BUFFER_LEN]; |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
124 |
size_t llen = pointer_delta(eol, cp, sizeof(char)); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
125 |
jio_snprintf(format_buffer, FORMAT_BUFFER_LEN, |
350 | 126 |
"%%." SIZE_FORMAT "s", llen); |
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
127 |
st->print(format_buffer, cp); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
128 |
st->cr(); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
129 |
cp = eol+1; |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
130 |
st->print("%5s %-35s += ", "", name); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
131 |
} |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
132 |
st->print("%-16s", cp); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
133 |
} |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
134 |
else st->print("%-16s", ""); |
1 | 135 |
} |
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
136 |
st->print("%-20s", kind); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
137 |
if (withComments) { |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
138 |
#ifndef PRODUCT |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
139 |
st->print("%s", doc ); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
140 |
#endif |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
141 |
} |
1 | 142 |
st->cr(); |
143 |
} |
|
144 |
||
145 |
void Flag::print_as_flag(outputStream* st) { |
|
146 |
if (is_bool()) { |
|
147 |
st->print("-XX:%s%s", get_bool() ? "+" : "-", name); |
|
148 |
} else if (is_intx()) { |
|
149 |
st->print("-XX:%s=" INTX_FORMAT, name, get_intx()); |
|
150 |
} else if (is_uintx()) { |
|
151 |
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
|
152 |
} else if (is_uint64_t()) { |
d1abc17afffb
6898160: Need serviceability support for new vm argument type 'uint64_t'
phh
parents:
4434
diff
changeset
|
153 |
st->print("-XX:%s=" UINT64_FORMAT, name, get_uint64_t()); |
12598
1256ef9b648a
7167069: 6 VM flags crash the VM when queried via jinfo
brutisso
parents:
12157
diff
changeset
|
154 |
} else if (is_double()) { |
1256ef9b648a
7167069: 6 VM flags crash the VM when queried via jinfo
brutisso
parents:
12157
diff
changeset
|
155 |
st->print("-XX:%s=%f", name, get_double()); |
1 | 156 |
} else if (is_ccstr()) { |
157 |
st->print("-XX:%s=", name); |
|
350 | 158 |
const char* cp = get_ccstr(); |
159 |
if (cp != NULL) { |
|
160 |
// Need to turn embedded '\n's back into separate arguments |
|
161 |
// Not so efficient to print one character at a time, |
|
162 |
// but the choice is to do the transformation to a buffer |
|
163 |
// and print that. And this need not be efficient. |
|
164 |
for (; *cp != '\0'; cp += 1) { |
|
165 |
switch (*cp) { |
|
166 |
default: |
|
167 |
st->print("%c", *cp); |
|
168 |
break; |
|
169 |
case '\n': |
|
170 |
st->print(" -XX:%s=", name); |
|
171 |
break; |
|
172 |
} |
|
1 | 173 |
} |
174 |
} |
|
175 |
} else { |
|
176 |
ShouldNotReachHere(); |
|
177 |
} |
|
178 |
} |
|
179 |
||
180 |
// 4991491 do not "optimize out" the was_set false values: omitting them |
|
181 |
// tickles a Microsoft compiler bug causing flagTable to be malformed |
|
182 |
||
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
183 |
#define RUNTIME_PRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{product}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
184 |
#define RUNTIME_PD_PRODUCT_FLAG_STRUCT(type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{pd product}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
185 |
#define RUNTIME_DIAGNOSTIC_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{diagnostic}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
186 |
#define RUNTIME_EXPERIMENTAL_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{experimental}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
187 |
#define RUNTIME_MANAGEABLE_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{manageable}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
188 |
#define RUNTIME_PRODUCT_RW_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{product rw}", DEFAULT }, |
1 | 189 |
|
190 |
#ifdef PRODUCT |
|
191 |
#define RUNTIME_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */ |
|
192 |
#define RUNTIME_PD_DEVELOP_FLAG_STRUCT(type, name, doc) /* flag is constant */ |
|
193 |
#define RUNTIME_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) |
|
194 |
#else |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
195 |
#define RUNTIME_DEVELOP_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
196 |
#define RUNTIME_PD_DEVELOP_FLAG_STRUCT(type, name, doc) { #type, XSTR(name), &name, doc, "{pd}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
197 |
#define RUNTIME_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{notproduct}", DEFAULT }, |
1 | 198 |
#endif |
199 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
350
diff
changeset
|
200 |
#ifdef _LP64 |
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
201 |
#define RUNTIME_LP64_PRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{lp64_product}", DEFAULT }, |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
350
diff
changeset
|
202 |
#else |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
350
diff
changeset
|
203 |
#define RUNTIME_LP64_PRODUCT_FLAG_STRUCT(type, name, value, doc) /* flag is constant */ |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
350
diff
changeset
|
204 |
#endif // _LP64 |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
350
diff
changeset
|
205 |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
206 |
#define C1_PRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C1 product}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
207 |
#define C1_PD_PRODUCT_FLAG_STRUCT(type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C1 pd product}", DEFAULT }, |
1 | 208 |
#ifdef PRODUCT |
209 |
#define C1_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */ |
|
210 |
#define C1_PD_DEVELOP_FLAG_STRUCT(type, name, doc) /* flag is constant */ |
|
211 |
#define C1_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) |
|
212 |
#else |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
213 |
#define C1_DEVELOP_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{C1}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
214 |
#define C1_PD_DEVELOP_FLAG_STRUCT(type, name, doc) { #type, XSTR(name), &name, doc, "{C1 pd}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
215 |
#define C1_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{C1 notproduct}", DEFAULT }, |
1 | 216 |
#endif |
217 |
||
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
218 |
#define C2_PRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C2 product}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
219 |
#define C2_PD_PRODUCT_FLAG_STRUCT(type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C2 pd product}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
220 |
#define C2_DIAGNOSTIC_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C2 diagnostic}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
221 |
#define C2_EXPERIMENTAL_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C2 experimental}", DEFAULT }, |
1 | 222 |
#ifdef PRODUCT |
223 |
#define C2_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */ |
|
224 |
#define C2_PD_DEVELOP_FLAG_STRUCT(type, name, doc) /* flag is constant */ |
|
225 |
#define C2_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) |
|
226 |
#else |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
227 |
#define C2_DEVELOP_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{C2}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
228 |
#define C2_PD_DEVELOP_FLAG_STRUCT(type, name, doc) { #type, XSTR(name), &name, doc, "{C2 pd}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
229 |
#define C2_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{C2 notproduct}", DEFAULT }, |
1 | 230 |
#endif |
231 |
||
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
232 |
#define ARCH_PRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{ARCH product}", DEFAULT }, |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
233 |
#define ARCH_DIAGNOSTIC_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{ARCH diagnostic}", DEFAULT }, |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
234 |
#define ARCH_EXPERIMENTAL_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{ARCH experimental}", DEFAULT }, |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
235 |
#ifdef PRODUCT |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
236 |
#define ARCH_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */ |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
237 |
#define ARCH_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
238 |
#else |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
239 |
#define ARCH_DEVELOP_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{ARCH}", DEFAULT }, |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
240 |
#define ARCH_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{ARCH notproduct}", DEFAULT }, |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
241 |
#endif |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
242 |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
243 |
#define SHARK_PRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{Shark product}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
244 |
#define SHARK_PD_PRODUCT_FLAG_STRUCT(type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{Shark pd product}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
245 |
#define SHARK_DIAGNOSTIC_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{Shark diagnostic}", DEFAULT }, |
6187 | 246 |
#ifdef PRODUCT |
247 |
#define SHARK_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */ |
|
248 |
#define SHARK_PD_DEVELOP_FLAG_STRUCT(type, name, doc) /* flag is constant */ |
|
249 |
#define SHARK_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) |
|
250 |
#else |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
251 |
#define SHARK_DEVELOP_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{Shark}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
252 |
#define SHARK_PD_DEVELOP_FLAG_STRUCT(type, name, doc) { #type, XSTR(name), &name, doc, "{Shark pd}", DEFAULT }, |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
253 |
#define SHARK_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{Shark notproduct}", DEFAULT }, |
6187 | 254 |
#endif |
1 | 255 |
|
256 |
static Flag flagTable[] = { |
|
11167
3931428f62ae
7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents:
11166
diff
changeset
|
257 |
RUNTIME_FLAGS(RUNTIME_DEVELOP_FLAG_STRUCT, RUNTIME_PD_DEVELOP_FLAG_STRUCT, RUNTIME_PRODUCT_FLAG_STRUCT, RUNTIME_PD_PRODUCT_FLAG_STRUCT, RUNTIME_DIAGNOSTIC_FLAG_STRUCT, RUNTIME_EXPERIMENTAL_FLAG_STRUCT, RUNTIME_NOTPRODUCT_FLAG_STRUCT, RUNTIME_MANAGEABLE_FLAG_STRUCT, RUNTIME_PRODUCT_RW_FLAG_STRUCT, RUNTIME_LP64_PRODUCT_FLAG_STRUCT) |
1 | 258 |
RUNTIME_OS_FLAGS(RUNTIME_DEVELOP_FLAG_STRUCT, RUNTIME_PD_DEVELOP_FLAG_STRUCT, RUNTIME_PRODUCT_FLAG_STRUCT, RUNTIME_PD_PRODUCT_FLAG_STRUCT, RUNTIME_DIAGNOSTIC_FLAG_STRUCT, RUNTIME_NOTPRODUCT_FLAG_STRUCT) |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13521
diff
changeset
|
259 |
#if INCLUDE_ALL_GCS |
1382
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1374
diff
changeset
|
260 |
G1_FLAGS(RUNTIME_DEVELOP_FLAG_STRUCT, RUNTIME_PD_DEVELOP_FLAG_STRUCT, RUNTIME_PRODUCT_FLAG_STRUCT, RUNTIME_PD_PRODUCT_FLAG_STRUCT, RUNTIME_DIAGNOSTIC_FLAG_STRUCT, RUNTIME_EXPERIMENTAL_FLAG_STRUCT, RUNTIME_NOTPRODUCT_FLAG_STRUCT, RUNTIME_MANAGEABLE_FLAG_STRUCT, RUNTIME_PRODUCT_RW_FLAG_STRUCT) |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13521
diff
changeset
|
261 |
#endif // INCLUDE_ALL_GCS |
1 | 262 |
#ifdef COMPILER1 |
263 |
C1_FLAGS(C1_DEVELOP_FLAG_STRUCT, C1_PD_DEVELOP_FLAG_STRUCT, C1_PRODUCT_FLAG_STRUCT, C1_PD_PRODUCT_FLAG_STRUCT, C1_NOTPRODUCT_FLAG_STRUCT) |
|
264 |
#endif |
|
265 |
#ifdef COMPILER2 |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4437
diff
changeset
|
266 |
C2_FLAGS(C2_DEVELOP_FLAG_STRUCT, C2_PD_DEVELOP_FLAG_STRUCT, C2_PRODUCT_FLAG_STRUCT, C2_PD_PRODUCT_FLAG_STRUCT, C2_DIAGNOSTIC_FLAG_STRUCT, C2_EXPERIMENTAL_FLAG_STRUCT, C2_NOTPRODUCT_FLAG_STRUCT) |
1 | 267 |
#endif |
6187 | 268 |
#ifdef SHARK |
269 |
SHARK_FLAGS(SHARK_DEVELOP_FLAG_STRUCT, SHARK_PD_DEVELOP_FLAG_STRUCT, SHARK_PRODUCT_FLAG_STRUCT, SHARK_PD_PRODUCT_FLAG_STRUCT, SHARK_DIAGNOSTIC_FLAG_STRUCT, SHARK_NOTPRODUCT_FLAG_STRUCT) |
|
270 |
#endif |
|
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
271 |
ARCH_FLAGS(ARCH_DEVELOP_FLAG_STRUCT, ARCH_PRODUCT_FLAG_STRUCT, ARCH_DIAGNOSTIC_FLAG_STRUCT, ARCH_EXPERIMENTAL_FLAG_STRUCT, ARCH_NOTPRODUCT_FLAG_STRUCT) |
11183
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
272 |
FLAGTABLE_EXT |
1 | 273 |
{0, NULL, NULL} |
274 |
}; |
|
275 |
||
276 |
Flag* Flag::flags = flagTable; |
|
277 |
size_t Flag::numFlags = (sizeof(flagTable) / sizeof(Flag)); |
|
278 |
||
18497 | 279 |
inline bool str_equal(const char* s, const char* q, size_t len) { |
1 | 280 |
// s is null terminated, q is not! |
281 |
if (strlen(s) != (unsigned int) len) return false; |
|
282 |
return strncmp(s, q, len) == 0; |
|
283 |
} |
|
284 |
||
12157
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
285 |
// Search the flag table for a named flag |
18497 | 286 |
Flag* Flag::find_flag(const char* name, size_t length, bool allow_locked) { |
12157
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
287 |
for (Flag* current = &flagTable[0]; current->name != NULL; current++) { |
1 | 288 |
if (str_equal(current->name, name, length)) { |
12157
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
289 |
// Found a matching entry. Report locked flags only if allowed. |
1 | 290 |
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
|
291 |
if (!allow_locked) { |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
292 |
// 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
|
293 |
// commercial... until they are explicitly unlocked |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
294 |
return NULL; |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
295 |
} |
1 | 296 |
} |
297 |
return current; |
|
298 |
} |
|
299 |
} |
|
12157
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
300 |
// Flag name is not in the flag table |
1 | 301 |
return NULL; |
302 |
} |
|
303 |
||
18497 | 304 |
// Compute string similarity based on Dice's coefficient |
305 |
static float str_similar(const char* str1, const char* str2, size_t len2) { |
|
306 |
int len1 = (int) strlen(str1); |
|
307 |
int total = len1 + (int) len2; |
|
308 |
||
309 |
int hit = 0; |
|
310 |
||
311 |
for (int i = 0; i < len1 -1; ++i) { |
|
312 |
for (int j = 0; j < (int) len2 -1; ++j) { |
|
313 |
if ((str1[i] == str2[j]) && (str1[i+1] == str2[j+1])) { |
|
314 |
++hit; |
|
315 |
break; |
|
316 |
} |
|
317 |
} |
|
318 |
} |
|
319 |
||
320 |
return 2.0f * (float) hit / (float) total; |
|
321 |
} |
|
322 |
||
323 |
Flag* Flag::fuzzy_match(const char* name, size_t length, bool allow_locked) { |
|
324 |
float VMOptionsFuzzyMatchSimilarity = 0.7f; |
|
325 |
Flag* match = NULL; |
|
326 |
float score; |
|
327 |
float max_score = -1; |
|
328 |
||
329 |
for (Flag* current = &flagTable[0]; current->name != NULL; current++) { |
|
330 |
score = str_similar(current->name, name, length); |
|
331 |
if (score > max_score) { |
|
332 |
max_score = score; |
|
333 |
match = current; |
|
334 |
} |
|
335 |
} |
|
336 |
||
337 |
if (!(match->is_unlocked() || match->is_unlocker())) { |
|
338 |
if (!allow_locked) { |
|
339 |
return NULL; |
|
340 |
} |
|
341 |
} |
|
342 |
||
343 |
if (max_score < VMOptionsFuzzyMatchSimilarity) { |
|
344 |
return NULL; |
|
345 |
} |
|
346 |
||
347 |
return match; |
|
348 |
} |
|
349 |
||
1 | 350 |
// Returns the address of the index'th element |
351 |
static Flag* address_of_flag(CommandLineFlagWithType flag) { |
|
352 |
assert((size_t)flag < Flag::numFlags, "bad command line flag index"); |
|
353 |
return &Flag::flags[flag]; |
|
354 |
} |
|
355 |
||
356 |
bool CommandLineFlagsEx::is_default(CommandLineFlag flag) { |
|
357 |
assert((size_t)flag < Flag::numFlags, "bad command line flag index"); |
|
358 |
Flag* f = &Flag::flags[flag]; |
|
359 |
return (f->origin == DEFAULT); |
|
360 |
} |
|
361 |
||
186
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
362 |
bool CommandLineFlagsEx::is_ergo(CommandLineFlag flag) { |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
363 |
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
|
364 |
Flag* f = &Flag::flags[flag]; |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
365 |
return (f->origin == ERGONOMIC); |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
366 |
} |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
367 |
|
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
368 |
bool CommandLineFlagsEx::is_cmdline(CommandLineFlag flag) { |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
369 |
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
|
370 |
Flag* f = &Flag::flags[flag]; |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
371 |
return (f->origin == COMMAND_LINE); |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
372 |
} |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
373 |
|
1 | 374 |
bool CommandLineFlags::wasSetOnCmdline(const char* name, bool* value) { |
375 |
Flag* result = Flag::find_flag((char*)name, strlen(name)); |
|
376 |
if (result == NULL) return false; |
|
377 |
*value = (result->origin == COMMAND_LINE); |
|
378 |
return true; |
|
379 |
} |
|
380 |
||
381 |
bool CommandLineFlags::boolAt(char* name, size_t len, bool* value) { |
|
382 |
Flag* result = Flag::find_flag(name, len); |
|
383 |
if (result == NULL) return false; |
|
384 |
if (!result->is_bool()) return false; |
|
385 |
*value = result->get_bool(); |
|
386 |
return true; |
|
387 |
} |
|
388 |
||
389 |
bool CommandLineFlags::boolAtPut(char* name, size_t len, bool* value, FlagValueOrigin origin) { |
|
390 |
Flag* result = Flag::find_flag(name, len); |
|
391 |
if (result == NULL) return false; |
|
392 |
if (!result->is_bool()) return false; |
|
393 |
bool old_value = result->get_bool(); |
|
394 |
result->set_bool(*value); |
|
395 |
*value = old_value; |
|
396 |
result->origin = origin; |
|
397 |
return true; |
|
398 |
} |
|
399 |
||
400 |
void CommandLineFlagsEx::boolAtPut(CommandLineFlagWithType flag, bool value, FlagValueOrigin origin) { |
|
401 |
Flag* faddr = address_of_flag(flag); |
|
402 |
guarantee(faddr != NULL && faddr->is_bool(), "wrong flag type"); |
|
403 |
faddr->set_bool(value); |
|
404 |
faddr->origin = origin; |
|
405 |
} |
|
406 |
||
407 |
bool CommandLineFlags::intxAt(char* name, size_t len, intx* value) { |
|
408 |
Flag* result = Flag::find_flag(name, len); |
|
409 |
if (result == NULL) return false; |
|
410 |
if (!result->is_intx()) return false; |
|
411 |
*value = result->get_intx(); |
|
412 |
return true; |
|
413 |
} |
|
414 |
||
415 |
bool CommandLineFlags::intxAtPut(char* name, size_t len, intx* value, FlagValueOrigin origin) { |
|
416 |
Flag* result = Flag::find_flag(name, len); |
|
417 |
if (result == NULL) return false; |
|
418 |
if (!result->is_intx()) return false; |
|
419 |
intx old_value = result->get_intx(); |
|
420 |
result->set_intx(*value); |
|
421 |
*value = old_value; |
|
422 |
result->origin = origin; |
|
423 |
return true; |
|
424 |
} |
|
425 |
||
426 |
void CommandLineFlagsEx::intxAtPut(CommandLineFlagWithType flag, intx value, FlagValueOrigin origin) { |
|
427 |
Flag* faddr = address_of_flag(flag); |
|
428 |
guarantee(faddr != NULL && faddr->is_intx(), "wrong flag type"); |
|
429 |
faddr->set_intx(value); |
|
430 |
faddr->origin = origin; |
|
431 |
} |
|
432 |
||
433 |
bool CommandLineFlags::uintxAt(char* name, size_t len, uintx* value) { |
|
434 |
Flag* result = Flag::find_flag(name, len); |
|
435 |
if (result == NULL) return false; |
|
436 |
if (!result->is_uintx()) return false; |
|
437 |
*value = result->get_uintx(); |
|
438 |
return true; |
|
439 |
} |
|
440 |
||
441 |
bool CommandLineFlags::uintxAtPut(char* name, size_t len, uintx* value, FlagValueOrigin origin) { |
|
442 |
Flag* result = Flag::find_flag(name, len); |
|
443 |
if (result == NULL) return false; |
|
444 |
if (!result->is_uintx()) return false; |
|
445 |
uintx old_value = result->get_uintx(); |
|
446 |
result->set_uintx(*value); |
|
447 |
*value = old_value; |
|
448 |
result->origin = origin; |
|
449 |
return true; |
|
450 |
} |
|
451 |
||
452 |
void CommandLineFlagsEx::uintxAtPut(CommandLineFlagWithType flag, uintx value, FlagValueOrigin origin) { |
|
453 |
Flag* faddr = address_of_flag(flag); |
|
454 |
guarantee(faddr != NULL && faddr->is_uintx(), "wrong flag type"); |
|
455 |
faddr->set_uintx(value); |
|
456 |
faddr->origin = origin; |
|
457 |
} |
|
458 |
||
4434 | 459 |
bool CommandLineFlags::uint64_tAt(char* name, size_t len, uint64_t* value) { |
460 |
Flag* result = Flag::find_flag(name, len); |
|
461 |
if (result == NULL) return false; |
|
462 |
if (!result->is_uint64_t()) return false; |
|
463 |
*value = result->get_uint64_t(); |
|
464 |
return true; |
|
465 |
} |
|
466 |
||
467 |
bool CommandLineFlags::uint64_tAtPut(char* name, size_t len, uint64_t* value, FlagValueOrigin origin) { |
|
468 |
Flag* result = Flag::find_flag(name, len); |
|
469 |
if (result == NULL) return false; |
|
470 |
if (!result->is_uint64_t()) return false; |
|
471 |
uint64_t old_value = result->get_uint64_t(); |
|
472 |
result->set_uint64_t(*value); |
|
473 |
*value = old_value; |
|
474 |
result->origin = origin; |
|
475 |
return true; |
|
476 |
} |
|
477 |
||
478 |
void CommandLineFlagsEx::uint64_tAtPut(CommandLineFlagWithType flag, uint64_t value, FlagValueOrigin origin) { |
|
479 |
Flag* faddr = address_of_flag(flag); |
|
480 |
guarantee(faddr != NULL && faddr->is_uint64_t(), "wrong flag type"); |
|
481 |
faddr->set_uint64_t(value); |
|
482 |
faddr->origin = origin; |
|
483 |
} |
|
484 |
||
1 | 485 |
bool CommandLineFlags::doubleAt(char* name, size_t len, double* value) { |
486 |
Flag* result = Flag::find_flag(name, len); |
|
487 |
if (result == NULL) return false; |
|
488 |
if (!result->is_double()) return false; |
|
489 |
*value = result->get_double(); |
|
490 |
return true; |
|
491 |
} |
|
492 |
||
493 |
bool CommandLineFlags::doubleAtPut(char* name, size_t len, double* value, FlagValueOrigin origin) { |
|
494 |
Flag* result = Flag::find_flag(name, len); |
|
495 |
if (result == NULL) return false; |
|
496 |
if (!result->is_double()) return false; |
|
497 |
double old_value = result->get_double(); |
|
498 |
result->set_double(*value); |
|
499 |
*value = old_value; |
|
500 |
result->origin = origin; |
|
501 |
return true; |
|
502 |
} |
|
503 |
||
504 |
void CommandLineFlagsEx::doubleAtPut(CommandLineFlagWithType flag, double value, FlagValueOrigin origin) { |
|
505 |
Flag* faddr = address_of_flag(flag); |
|
506 |
guarantee(faddr != NULL && faddr->is_double(), "wrong flag type"); |
|
507 |
faddr->set_double(value); |
|
508 |
faddr->origin = origin; |
|
509 |
} |
|
510 |
||
511 |
bool CommandLineFlags::ccstrAt(char* name, size_t len, ccstr* value) { |
|
512 |
Flag* result = Flag::find_flag(name, len); |
|
513 |
if (result == NULL) return false; |
|
514 |
if (!result->is_ccstr()) return false; |
|
515 |
*value = result->get_ccstr(); |
|
516 |
return true; |
|
517 |
} |
|
518 |
||
519 |
// Contract: Flag will make private copy of the incoming value. |
|
520 |
// Outgoing value is always malloc-ed, and caller MUST call free. |
|
521 |
bool CommandLineFlags::ccstrAtPut(char* name, size_t len, ccstr* value, FlagValueOrigin origin) { |
|
522 |
Flag* result = Flag::find_flag(name, len); |
|
523 |
if (result == NULL) return false; |
|
524 |
if (!result->is_ccstr()) return false; |
|
525 |
ccstr old_value = result->get_ccstr(); |
|
1402
ccb40ce62b79
6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents:
670
diff
changeset
|
526 |
char* new_value = NULL; |
ccb40ce62b79
6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents:
670
diff
changeset
|
527 |
if (*value != NULL) { |
13195 | 528 |
new_value = NEW_C_HEAP_ARRAY(char, strlen(*value)+1, mtInternal); |
1402
ccb40ce62b79
6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents:
670
diff
changeset
|
529 |
strcpy(new_value, *value); |
ccb40ce62b79
6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents:
670
diff
changeset
|
530 |
} |
1 | 531 |
result->set_ccstr(new_value); |
532 |
if (result->origin == DEFAULT && old_value != NULL) { |
|
533 |
// Prior value is NOT heap allocated, but was a literal constant. |
|
13195 | 534 |
char* old_value_to_free = NEW_C_HEAP_ARRAY(char, strlen(old_value)+1, mtInternal); |
1 | 535 |
strcpy(old_value_to_free, old_value); |
536 |
old_value = old_value_to_free; |
|
537 |
} |
|
538 |
*value = old_value; |
|
539 |
result->origin = origin; |
|
540 |
return true; |
|
541 |
} |
|
542 |
||
543 |
// Contract: Flag will make private copy of the incoming value. |
|
544 |
void CommandLineFlagsEx::ccstrAtPut(CommandLineFlagWithType flag, ccstr value, FlagValueOrigin origin) { |
|
545 |
Flag* faddr = address_of_flag(flag); |
|
546 |
guarantee(faddr != NULL && faddr->is_ccstr(), "wrong flag type"); |
|
547 |
ccstr old_value = faddr->get_ccstr(); |
|
13195 | 548 |
char* new_value = NEW_C_HEAP_ARRAY(char, strlen(value)+1, mtInternal); |
1 | 549 |
strcpy(new_value, value); |
550 |
faddr->set_ccstr(new_value); |
|
551 |
if (faddr->origin != DEFAULT && old_value != NULL) { |
|
552 |
// Prior value is heap allocated so free it. |
|
13195 | 553 |
FREE_C_HEAP_ARRAY(char, old_value, mtInternal); |
1 | 554 |
} |
555 |
faddr->origin = origin; |
|
556 |
} |
|
557 |
||
558 |
extern "C" { |
|
559 |
static int compare_flags(const void* void_a, const void* void_b) { |
|
560 |
return strcmp((*((Flag**) void_a))->name, (*((Flag**) void_b))->name); |
|
561 |
} |
|
562 |
} |
|
563 |
||
11441 | 564 |
void CommandLineFlags::printSetFlags(outputStream* out) { |
1 | 565 |
// Print which flags were set on the command line |
566 |
// note: this method is called before the thread structure is in place |
|
567 |
// which means resource allocation cannot be used. |
|
568 |
||
569 |
// Compute size |
|
570 |
int length= 0; |
|
571 |
while (flagTable[length].name != NULL) length++; |
|
572 |
||
573 |
// Sort |
|
13195 | 574 |
Flag** array = NEW_C_HEAP_ARRAY(Flag*, length, mtInternal); |
1 | 575 |
for (int index = 0; index < length; index++) { |
576 |
array[index] = &flagTable[index]; |
|
577 |
} |
|
578 |
qsort(array, length, sizeof(Flag*), compare_flags); |
|
579 |
||
580 |
||
581 |
for (int i = 0; i < length; i++) { |
|
582 |
if (array[i]->origin /* naked field! */) { |
|
11441 | 583 |
array[i]->print_as_flag(out); |
584 |
out->print(" "); |
|
1 | 585 |
} |
586 |
} |
|
11441 | 587 |
out->cr(); |
13195 | 588 |
FREE_C_HEAP_ARRAY(Flag*, array, mtInternal); |
1 | 589 |
} |
590 |
||
591 |
#ifndef PRODUCT |
|
592 |
||
593 |
||
594 |
void CommandLineFlags::verify() { |
|
595 |
assert(Arguments::check_vm_args_consistency(), "Some flag settings conflict"); |
|
596 |
} |
|
597 |
||
4579 | 598 |
#endif // PRODUCT |
599 |
||
11441 | 600 |
void CommandLineFlags::printFlags(outputStream* out, bool withComments) { |
1 | 601 |
// Print the flags sorted by name |
602 |
// note: this method is called before the thread structure is in place |
|
603 |
// which means resource allocation cannot be used. |
|
604 |
||
605 |
// Compute size |
|
606 |
int length= 0; |
|
607 |
while (flagTable[length].name != NULL) length++; |
|
608 |
||
609 |
// Sort |
|
13195 | 610 |
Flag** array = NEW_C_HEAP_ARRAY(Flag*, length, mtInternal); |
1 | 611 |
for (int index = 0; index < length; index++) { |
612 |
array[index] = &flagTable[index]; |
|
613 |
} |
|
614 |
qsort(array, length, sizeof(Flag*), compare_flags); |
|
615 |
||
616 |
||
11441 | 617 |
out->print_cr("[Global flags]"); |
1 | 618 |
for (int i = 0; i < length; i++) { |
619 |
if (array[i]->is_unlocked()) { |
|
11441 | 620 |
array[i]->print_on(out, withComments); |
1 | 621 |
} |
622 |
} |
|
13195 | 623 |
FREE_C_HEAP_ARRAY(Flag*, array, mtInternal); |
1 | 624 |
} |