author | bpittore |
Wed, 11 Sep 2013 20:03:34 -0400 | |
changeset 19973 | d98623e1f50b |
parent 19710 | 2f8ca425504e |
child 20288 | e2d549f40de9 |
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 }, |
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
18497
diff
changeset
|
208 |
#define C1_DIAGNOSTIC_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C1 diagnostic}", DEFAULT }, |
1 | 209 |
#ifdef PRODUCT |
210 |
#define C1_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */ |
|
211 |
#define C1_PD_DEVELOP_FLAG_STRUCT(type, name, doc) /* flag is constant */ |
|
212 |
#define C1_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) |
|
213 |
#else |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
214 |
#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
|
215 |
#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
|
216 |
#define C1_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{C1 notproduct}", DEFAULT }, |
1 | 217 |
#endif |
218 |
||
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
219 |
#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
|
220 |
#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
|
221 |
#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
|
222 |
#define C2_EXPERIMENTAL_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C2 experimental}", DEFAULT }, |
1 | 223 |
#ifdef PRODUCT |
224 |
#define C2_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */ |
|
225 |
#define C2_PD_DEVELOP_FLAG_STRUCT(type, name, doc) /* flag is constant */ |
|
226 |
#define C2_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) |
|
227 |
#else |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
228 |
#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
|
229 |
#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
|
230 |
#define C2_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{C2 notproduct}", DEFAULT }, |
1 | 231 |
#endif |
232 |
||
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
233 |
#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
|
234 |
#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
|
235 |
#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
|
236 |
#ifdef PRODUCT |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
237 |
#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
|
238 |
#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
|
239 |
#else |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
240 |
#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
|
241 |
#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
|
242 |
#endif |
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
243 |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
244 |
#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
|
245 |
#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
|
246 |
#define SHARK_DIAGNOSTIC_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{Shark diagnostic}", DEFAULT }, |
6187 | 247 |
#ifdef PRODUCT |
248 |
#define SHARK_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */ |
|
249 |
#define SHARK_PD_DEVELOP_FLAG_STRUCT(type, name, doc) /* flag is constant */ |
|
250 |
#define SHARK_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) |
|
251 |
#else |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
252 |
#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
|
253 |
#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
|
254 |
#define SHARK_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{Shark notproduct}", DEFAULT }, |
6187 | 255 |
#endif |
1 | 256 |
|
257 |
static Flag flagTable[] = { |
|
11167
3931428f62ae
7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents:
11166
diff
changeset
|
258 |
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 | 259 |
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
|
260 |
#if INCLUDE_ALL_GCS |
1382
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1374
diff
changeset
|
261 |
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
|
262 |
#endif // INCLUDE_ALL_GCS |
1 | 263 |
#ifdef COMPILER1 |
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
18497
diff
changeset
|
264 |
C1_FLAGS(C1_DEVELOP_FLAG_STRUCT, C1_PD_DEVELOP_FLAG_STRUCT, C1_PRODUCT_FLAG_STRUCT, C1_PD_PRODUCT_FLAG_STRUCT, C1_DIAGNOSTIC_FLAG_STRUCT, C1_NOTPRODUCT_FLAG_STRUCT) |
1 | 265 |
#endif |
266 |
#ifdef COMPILER2 |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4437
diff
changeset
|
267 |
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 | 268 |
#endif |
6187 | 269 |
#ifdef SHARK |
270 |
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) |
|
271 |
#endif |
|
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
272 |
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
|
273 |
FLAGTABLE_EXT |
1 | 274 |
{0, NULL, NULL} |
275 |
}; |
|
276 |
||
277 |
Flag* Flag::flags = flagTable; |
|
278 |
size_t Flag::numFlags = (sizeof(flagTable) / sizeof(Flag)); |
|
279 |
||
18497 | 280 |
inline bool str_equal(const char* s, const char* q, size_t len) { |
1 | 281 |
// s is null terminated, q is not! |
282 |
if (strlen(s) != (unsigned int) len) return false; |
|
283 |
return strncmp(s, q, len) == 0; |
|
284 |
} |
|
285 |
||
12157
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
286 |
// Search the flag table for a named flag |
18497 | 287 |
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
|
288 |
for (Flag* current = &flagTable[0]; current->name != NULL; current++) { |
1 | 289 |
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
|
290 |
// Found a matching entry. Report locked flags only if allowed. |
1 | 291 |
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
|
292 |
if (!allow_locked) { |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
293 |
// 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
|
294 |
// commercial... until they are explicitly unlocked |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
295 |
return NULL; |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
296 |
} |
1 | 297 |
} |
298 |
return current; |
|
299 |
} |
|
300 |
} |
|
12157
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
11441
diff
changeset
|
301 |
// Flag name is not in the flag table |
1 | 302 |
return NULL; |
303 |
} |
|
304 |
||
18497 | 305 |
// Compute string similarity based on Dice's coefficient |
306 |
static float str_similar(const char* str1, const char* str2, size_t len2) { |
|
307 |
int len1 = (int) strlen(str1); |
|
308 |
int total = len1 + (int) len2; |
|
309 |
||
310 |
int hit = 0; |
|
311 |
||
312 |
for (int i = 0; i < len1 -1; ++i) { |
|
313 |
for (int j = 0; j < (int) len2 -1; ++j) { |
|
314 |
if ((str1[i] == str2[j]) && (str1[i+1] == str2[j+1])) { |
|
315 |
++hit; |
|
316 |
break; |
|
317 |
} |
|
318 |
} |
|
319 |
} |
|
320 |
||
321 |
return 2.0f * (float) hit / (float) total; |
|
322 |
} |
|
323 |
||
324 |
Flag* Flag::fuzzy_match(const char* name, size_t length, bool allow_locked) { |
|
325 |
float VMOptionsFuzzyMatchSimilarity = 0.7f; |
|
326 |
Flag* match = NULL; |
|
327 |
float score; |
|
328 |
float max_score = -1; |
|
329 |
||
330 |
for (Flag* current = &flagTable[0]; current->name != NULL; current++) { |
|
331 |
score = str_similar(current->name, name, length); |
|
332 |
if (score > max_score) { |
|
333 |
max_score = score; |
|
334 |
match = current; |
|
335 |
} |
|
336 |
} |
|
337 |
||
338 |
if (!(match->is_unlocked() || match->is_unlocker())) { |
|
339 |
if (!allow_locked) { |
|
340 |
return NULL; |
|
341 |
} |
|
342 |
} |
|
343 |
||
344 |
if (max_score < VMOptionsFuzzyMatchSimilarity) { |
|
345 |
return NULL; |
|
346 |
} |
|
347 |
||
348 |
return match; |
|
349 |
} |
|
350 |
||
1 | 351 |
// Returns the address of the index'th element |
352 |
static Flag* address_of_flag(CommandLineFlagWithType flag) { |
|
353 |
assert((size_t)flag < Flag::numFlags, "bad command line flag index"); |
|
354 |
return &Flag::flags[flag]; |
|
355 |
} |
|
356 |
||
357 |
bool CommandLineFlagsEx::is_default(CommandLineFlag flag) { |
|
358 |
assert((size_t)flag < Flag::numFlags, "bad command line flag index"); |
|
359 |
Flag* f = &Flag::flags[flag]; |
|
360 |
return (f->origin == DEFAULT); |
|
361 |
} |
|
362 |
||
186
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
363 |
bool CommandLineFlagsEx::is_ergo(CommandLineFlag flag) { |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
364 |
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
|
365 |
Flag* f = &Flag::flags[flag]; |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
366 |
return (f->origin == ERGONOMIC); |
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 |
|
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
369 |
bool CommandLineFlagsEx::is_cmdline(CommandLineFlag flag) { |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
370 |
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
|
371 |
Flag* f = &Flag::flags[flag]; |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
372 |
return (f->origin == COMMAND_LINE); |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
373 |
} |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
374 |
|
1 | 375 |
bool CommandLineFlags::wasSetOnCmdline(const char* name, bool* value) { |
376 |
Flag* result = Flag::find_flag((char*)name, strlen(name)); |
|
377 |
if (result == NULL) return false; |
|
378 |
*value = (result->origin == COMMAND_LINE); |
|
379 |
return true; |
|
380 |
} |
|
381 |
||
382 |
bool CommandLineFlags::boolAt(char* name, size_t len, bool* value) { |
|
383 |
Flag* result = Flag::find_flag(name, len); |
|
384 |
if (result == NULL) return false; |
|
385 |
if (!result->is_bool()) return false; |
|
386 |
*value = result->get_bool(); |
|
387 |
return true; |
|
388 |
} |
|
389 |
||
390 |
bool CommandLineFlags::boolAtPut(char* name, size_t len, bool* value, FlagValueOrigin origin) { |
|
391 |
Flag* result = Flag::find_flag(name, len); |
|
392 |
if (result == NULL) return false; |
|
393 |
if (!result->is_bool()) return false; |
|
394 |
bool old_value = result->get_bool(); |
|
395 |
result->set_bool(*value); |
|
396 |
*value = old_value; |
|
397 |
result->origin = origin; |
|
398 |
return true; |
|
399 |
} |
|
400 |
||
401 |
void CommandLineFlagsEx::boolAtPut(CommandLineFlagWithType flag, bool value, FlagValueOrigin origin) { |
|
402 |
Flag* faddr = address_of_flag(flag); |
|
403 |
guarantee(faddr != NULL && faddr->is_bool(), "wrong flag type"); |
|
404 |
faddr->set_bool(value); |
|
405 |
faddr->origin = origin; |
|
406 |
} |
|
407 |
||
408 |
bool CommandLineFlags::intxAt(char* name, size_t len, intx* value) { |
|
409 |
Flag* result = Flag::find_flag(name, len); |
|
410 |
if (result == NULL) return false; |
|
411 |
if (!result->is_intx()) return false; |
|
412 |
*value = result->get_intx(); |
|
413 |
return true; |
|
414 |
} |
|
415 |
||
416 |
bool CommandLineFlags::intxAtPut(char* name, size_t len, intx* value, FlagValueOrigin origin) { |
|
417 |
Flag* result = Flag::find_flag(name, len); |
|
418 |
if (result == NULL) return false; |
|
419 |
if (!result->is_intx()) return false; |
|
420 |
intx old_value = result->get_intx(); |
|
421 |
result->set_intx(*value); |
|
422 |
*value = old_value; |
|
423 |
result->origin = origin; |
|
424 |
return true; |
|
425 |
} |
|
426 |
||
427 |
void CommandLineFlagsEx::intxAtPut(CommandLineFlagWithType flag, intx value, FlagValueOrigin origin) { |
|
428 |
Flag* faddr = address_of_flag(flag); |
|
429 |
guarantee(faddr != NULL && faddr->is_intx(), "wrong flag type"); |
|
430 |
faddr->set_intx(value); |
|
431 |
faddr->origin = origin; |
|
432 |
} |
|
433 |
||
434 |
bool CommandLineFlags::uintxAt(char* name, size_t len, uintx* value) { |
|
435 |
Flag* result = Flag::find_flag(name, len); |
|
436 |
if (result == NULL) return false; |
|
437 |
if (!result->is_uintx()) return false; |
|
438 |
*value = result->get_uintx(); |
|
439 |
return true; |
|
440 |
} |
|
441 |
||
442 |
bool CommandLineFlags::uintxAtPut(char* name, size_t len, uintx* value, FlagValueOrigin origin) { |
|
443 |
Flag* result = Flag::find_flag(name, len); |
|
444 |
if (result == NULL) return false; |
|
445 |
if (!result->is_uintx()) return false; |
|
446 |
uintx old_value = result->get_uintx(); |
|
447 |
result->set_uintx(*value); |
|
448 |
*value = old_value; |
|
449 |
result->origin = origin; |
|
450 |
return true; |
|
451 |
} |
|
452 |
||
453 |
void CommandLineFlagsEx::uintxAtPut(CommandLineFlagWithType flag, uintx value, FlagValueOrigin origin) { |
|
454 |
Flag* faddr = address_of_flag(flag); |
|
455 |
guarantee(faddr != NULL && faddr->is_uintx(), "wrong flag type"); |
|
456 |
faddr->set_uintx(value); |
|
457 |
faddr->origin = origin; |
|
458 |
} |
|
459 |
||
4434 | 460 |
bool CommandLineFlags::uint64_tAt(char* name, size_t len, uint64_t* value) { |
461 |
Flag* result = Flag::find_flag(name, len); |
|
462 |
if (result == NULL) return false; |
|
463 |
if (!result->is_uint64_t()) return false; |
|
464 |
*value = result->get_uint64_t(); |
|
465 |
return true; |
|
466 |
} |
|
467 |
||
468 |
bool CommandLineFlags::uint64_tAtPut(char* name, size_t len, uint64_t* value, FlagValueOrigin origin) { |
|
469 |
Flag* result = Flag::find_flag(name, len); |
|
470 |
if (result == NULL) return false; |
|
471 |
if (!result->is_uint64_t()) return false; |
|
472 |
uint64_t old_value = result->get_uint64_t(); |
|
473 |
result->set_uint64_t(*value); |
|
474 |
*value = old_value; |
|
475 |
result->origin = origin; |
|
476 |
return true; |
|
477 |
} |
|
478 |
||
479 |
void CommandLineFlagsEx::uint64_tAtPut(CommandLineFlagWithType flag, uint64_t value, FlagValueOrigin origin) { |
|
480 |
Flag* faddr = address_of_flag(flag); |
|
481 |
guarantee(faddr != NULL && faddr->is_uint64_t(), "wrong flag type"); |
|
482 |
faddr->set_uint64_t(value); |
|
483 |
faddr->origin = origin; |
|
484 |
} |
|
485 |
||
1 | 486 |
bool CommandLineFlags::doubleAt(char* name, size_t len, double* value) { |
487 |
Flag* result = Flag::find_flag(name, len); |
|
488 |
if (result == NULL) return false; |
|
489 |
if (!result->is_double()) return false; |
|
490 |
*value = result->get_double(); |
|
491 |
return true; |
|
492 |
} |
|
493 |
||
494 |
bool CommandLineFlags::doubleAtPut(char* name, size_t len, double* value, FlagValueOrigin origin) { |
|
495 |
Flag* result = Flag::find_flag(name, len); |
|
496 |
if (result == NULL) return false; |
|
497 |
if (!result->is_double()) return false; |
|
498 |
double old_value = result->get_double(); |
|
499 |
result->set_double(*value); |
|
500 |
*value = old_value; |
|
501 |
result->origin = origin; |
|
502 |
return true; |
|
503 |
} |
|
504 |
||
505 |
void CommandLineFlagsEx::doubleAtPut(CommandLineFlagWithType flag, double value, FlagValueOrigin origin) { |
|
506 |
Flag* faddr = address_of_flag(flag); |
|
507 |
guarantee(faddr != NULL && faddr->is_double(), "wrong flag type"); |
|
508 |
faddr->set_double(value); |
|
509 |
faddr->origin = origin; |
|
510 |
} |
|
511 |
||
512 |
bool CommandLineFlags::ccstrAt(char* name, size_t len, ccstr* value) { |
|
513 |
Flag* result = Flag::find_flag(name, len); |
|
514 |
if (result == NULL) return false; |
|
515 |
if (!result->is_ccstr()) return false; |
|
516 |
*value = result->get_ccstr(); |
|
517 |
return true; |
|
518 |
} |
|
519 |
||
520 |
// Contract: Flag will make private copy of the incoming value. |
|
521 |
// Outgoing value is always malloc-ed, and caller MUST call free. |
|
522 |
bool CommandLineFlags::ccstrAtPut(char* name, size_t len, ccstr* value, FlagValueOrigin origin) { |
|
523 |
Flag* result = Flag::find_flag(name, len); |
|
524 |
if (result == NULL) return false; |
|
525 |
if (!result->is_ccstr()) return false; |
|
526 |
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
|
527 |
char* new_value = NULL; |
ccb40ce62b79
6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents:
670
diff
changeset
|
528 |
if (*value != NULL) { |
13195 | 529 |
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
|
530 |
strcpy(new_value, *value); |
ccb40ce62b79
6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents:
670
diff
changeset
|
531 |
} |
1 | 532 |
result->set_ccstr(new_value); |
533 |
if (result->origin == DEFAULT && old_value != NULL) { |
|
534 |
// Prior value is NOT heap allocated, but was a literal constant. |
|
13195 | 535 |
char* old_value_to_free = NEW_C_HEAP_ARRAY(char, strlen(old_value)+1, mtInternal); |
1 | 536 |
strcpy(old_value_to_free, old_value); |
537 |
old_value = old_value_to_free; |
|
538 |
} |
|
539 |
*value = old_value; |
|
540 |
result->origin = origin; |
|
541 |
return true; |
|
542 |
} |
|
543 |
||
544 |
// Contract: Flag will make private copy of the incoming value. |
|
545 |
void CommandLineFlagsEx::ccstrAtPut(CommandLineFlagWithType flag, ccstr value, FlagValueOrigin origin) { |
|
546 |
Flag* faddr = address_of_flag(flag); |
|
547 |
guarantee(faddr != NULL && faddr->is_ccstr(), "wrong flag type"); |
|
548 |
ccstr old_value = faddr->get_ccstr(); |
|
13195 | 549 |
char* new_value = NEW_C_HEAP_ARRAY(char, strlen(value)+1, mtInternal); |
1 | 550 |
strcpy(new_value, value); |
551 |
faddr->set_ccstr(new_value); |
|
552 |
if (faddr->origin != DEFAULT && old_value != NULL) { |
|
553 |
// Prior value is heap allocated so free it. |
|
13195 | 554 |
FREE_C_HEAP_ARRAY(char, old_value, mtInternal); |
1 | 555 |
} |
556 |
faddr->origin = origin; |
|
557 |
} |
|
558 |
||
559 |
extern "C" { |
|
560 |
static int compare_flags(const void* void_a, const void* void_b) { |
|
561 |
return strcmp((*((Flag**) void_a))->name, (*((Flag**) void_b))->name); |
|
562 |
} |
|
563 |
} |
|
564 |
||
11441 | 565 |
void CommandLineFlags::printSetFlags(outputStream* out) { |
1 | 566 |
// Print which flags were set on the command line |
567 |
// note: this method is called before the thread structure is in place |
|
568 |
// which means resource allocation cannot be used. |
|
569 |
||
570 |
// Compute size |
|
571 |
int length= 0; |
|
572 |
while (flagTable[length].name != NULL) length++; |
|
573 |
||
574 |
// Sort |
|
13195 | 575 |
Flag** array = NEW_C_HEAP_ARRAY(Flag*, length, mtInternal); |
1 | 576 |
for (int index = 0; index < length; index++) { |
577 |
array[index] = &flagTable[index]; |
|
578 |
} |
|
579 |
qsort(array, length, sizeof(Flag*), compare_flags); |
|
580 |
||
581 |
||
582 |
for (int i = 0; i < length; i++) { |
|
583 |
if (array[i]->origin /* naked field! */) { |
|
11441 | 584 |
array[i]->print_as_flag(out); |
585 |
out->print(" "); |
|
1 | 586 |
} |
587 |
} |
|
11441 | 588 |
out->cr(); |
13195 | 589 |
FREE_C_HEAP_ARRAY(Flag*, array, mtInternal); |
1 | 590 |
} |
591 |
||
592 |
#ifndef PRODUCT |
|
593 |
||
594 |
||
595 |
void CommandLineFlags::verify() { |
|
596 |
assert(Arguments::check_vm_args_consistency(), "Some flag settings conflict"); |
|
597 |
} |
|
598 |
||
4579 | 599 |
#endif // PRODUCT |
600 |
||
11441 | 601 |
void CommandLineFlags::printFlags(outputStream* out, bool withComments) { |
1 | 602 |
// Print the flags sorted by name |
603 |
// note: this method is called before the thread structure is in place |
|
604 |
// which means resource allocation cannot be used. |
|
605 |
||
606 |
// Compute size |
|
607 |
int length= 0; |
|
608 |
while (flagTable[length].name != NULL) length++; |
|
609 |
||
610 |
// Sort |
|
13195 | 611 |
Flag** array = NEW_C_HEAP_ARRAY(Flag*, length, mtInternal); |
1 | 612 |
for (int index = 0; index < length; index++) { |
613 |
array[index] = &flagTable[index]; |
|
614 |
} |
|
615 |
qsort(array, length, sizeof(Flag*), compare_flags); |
|
616 |
||
617 |
||
11441 | 618 |
out->print_cr("[Global flags]"); |
1 | 619 |
for (int i = 0; i < length; i++) { |
620 |
if (array[i]->is_unlocked()) { |
|
11441 | 621 |
array[i]->print_on(out, withComments); |
1 | 622 |
} |
623 |
} |
|
13195 | 624 |
FREE_C_HEAP_ARRAY(Flag*, array, mtInternal); |
1 | 625 |
} |