author | mgerdin |
Thu, 23 Feb 2012 14:58:35 +0100 | |
changeset 12095 | cc3d6f08a4c4 |
parent 11441 | a89f443814cd |
child 12157 | 439a7166bf0f |
permissions | -rw-r--r-- |
1 | 1 |
/* |
11183
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
2 |
* Copyright (c) 1997, 2011, 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" |
|
32 |
#include "utilities/top.hpp" |
|
33 |
#ifndef SERIALGC |
|
34 |
#include "gc_implementation/g1/g1_globals.hpp" |
|
35 |
#endif |
|
36 |
#ifdef COMPILER1 |
|
37 |
#include "c1/c1_globals.hpp" |
|
38 |
#endif |
|
39 |
#ifdef COMPILER2 |
|
40 |
#include "opto/c2_globals.hpp" |
|
41 |
#endif |
|
42 |
#ifdef SHARK |
|
43 |
#include "shark/shark_globals.hpp" |
|
44 |
#endif |
|
1 | 45 |
|
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 |
||
11183
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
58 |
MATERIALIZE_FLAGS_EXT |
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
59 |
|
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
60 |
|
1 | 61 |
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
|
62 |
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
|
63 |
strcmp(name, "UnlockExperimentalVMOptions") == 0 || |
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
64 |
is_unlocker_ext(); |
1 | 65 |
} |
66 |
||
67 |
bool Flag::is_unlocked() const { |
|
11167
3931428f62ae
7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents:
11166
diff
changeset
|
68 |
if (strcmp(kind, "{diagnostic}") == 0) { |
9116 | 69 |
if (strcmp(name, "EnableInvokeDynamic") == 0 && UnlockExperimentalVMOptions && !UnlockDiagnosticVMOptions) { |
70 |
// transitional logic to allow tests to run until they are changed |
|
71 |
static int warned; |
|
72 |
if (++warned == 1) warning("Use -XX:+UnlockDiagnosticVMOptions before EnableInvokeDynamic flag"); |
|
73 |
return true; |
|
74 |
} |
|
1 | 75 |
return UnlockDiagnosticVMOptions; |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4437
diff
changeset
|
76 |
} else if (strcmp(kind, "{experimental}") == 0 || |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4437
diff
changeset
|
77 |
strcmp(kind, "{C2 experimental}") == 0) { |
1382
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1374
diff
changeset
|
78 |
return UnlockExperimentalVMOptions; |
1 | 79 |
} else { |
11183
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
80 |
return is_unlocked_ext(); |
1 | 81 |
} |
82 |
} |
|
83 |
||
84 |
bool Flag::is_writeable() const { |
|
11254
e2dd3c32a7cb
7122880: Extend vendor-specific command interface to include manageable switches
phh
parents:
11183
diff
changeset
|
85 |
return strcmp(kind, "{manageable}") == 0 || |
e2dd3c32a7cb
7122880: Extend vendor-specific command interface to include manageable switches
phh
parents:
11183
diff
changeset
|
86 |
strcmp(kind, "{product rw}") == 0 || |
e2dd3c32a7cb
7122880: Extend vendor-specific command interface to include manageable switches
phh
parents:
11183
diff
changeset
|
87 |
is_writeable_ext(); |
1 | 88 |
} |
89 |
||
11254
e2dd3c32a7cb
7122880: Extend vendor-specific command interface to include manageable switches
phh
parents:
11183
diff
changeset
|
90 |
// All flags except "manageable" are assumed to be internal flags. |
1 | 91 |
// Long term, we need to define a mechanism to specify which flags |
92 |
// are external/stable and change this function accordingly. |
|
93 |
bool Flag::is_external() const { |
|
11254
e2dd3c32a7cb
7122880: Extend vendor-specific command interface to include manageable switches
phh
parents:
11183
diff
changeset
|
94 |
return strcmp(kind, "{manageable}") == 0 || is_external_ext(); |
1 | 95 |
} |
96 |
||
11254
e2dd3c32a7cb
7122880: Extend vendor-specific command interface to include manageable switches
phh
parents:
11183
diff
changeset
|
97 |
|
1 | 98 |
// Length of format string (e.g. "%.1234s") for printing ccstr below |
99 |
#define FORMAT_BUFFER_LEN 16 |
|
100 |
||
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
101 |
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
|
102 |
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
|
103 |
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
|
104 |
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
|
105 |
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
|
106 |
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
|
107 |
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
|
108 |
|
1 | 109 |
if (is_ccstr()) { |
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
110 |
const char* cp = get_ccstr(); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
111 |
if (cp != NULL) { |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
112 |
const char* eol; |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
113 |
while ((eol = strchr(cp, '\n')) != NULL) { |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
114 |
char format_buffer[FORMAT_BUFFER_LEN]; |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
115 |
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
|
116 |
jio_snprintf(format_buffer, FORMAT_BUFFER_LEN, |
350 | 117 |
"%%." SIZE_FORMAT "s", llen); |
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
118 |
st->print(format_buffer, cp); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
119 |
st->cr(); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
120 |
cp = eol+1; |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
121 |
st->print("%5s %-35s += ", "", name); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
122 |
} |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
123 |
st->print("%-16s", cp); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
124 |
} |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
125 |
else st->print("%-16s", ""); |
1 | 126 |
} |
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
127 |
st->print("%-20s", kind); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
128 |
if (withComments) { |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
129 |
#ifndef PRODUCT |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
130 |
st->print("%s", doc ); |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
131 |
#endif |
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
132 |
} |
1 | 133 |
st->cr(); |
134 |
} |
|
135 |
||
136 |
void Flag::print_as_flag(outputStream* st) { |
|
137 |
if (is_bool()) { |
|
138 |
st->print("-XX:%s%s", get_bool() ? "+" : "-", name); |
|
139 |
} else if (is_intx()) { |
|
140 |
st->print("-XX:%s=" INTX_FORMAT, name, get_intx()); |
|
141 |
} else if (is_uintx()) { |
|
142 |
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
|
143 |
} else if (is_uint64_t()) { |
d1abc17afffb
6898160: Need serviceability support for new vm argument type 'uint64_t'
phh
parents:
4434
diff
changeset
|
144 |
st->print("-XX:%s=" UINT64_FORMAT, name, get_uint64_t()); |
1 | 145 |
} else if (is_ccstr()) { |
146 |
st->print("-XX:%s=", name); |
|
350 | 147 |
const char* cp = get_ccstr(); |
148 |
if (cp != NULL) { |
|
149 |
// Need to turn embedded '\n's back into separate arguments |
|
150 |
// Not so efficient to print one character at a time, |
|
151 |
// but the choice is to do the transformation to a buffer |
|
152 |
// and print that. And this need not be efficient. |
|
153 |
for (; *cp != '\0'; cp += 1) { |
|
154 |
switch (*cp) { |
|
155 |
default: |
|
156 |
st->print("%c", *cp); |
|
157 |
break; |
|
158 |
case '\n': |
|
159 |
st->print(" -XX:%s=", name); |
|
160 |
break; |
|
161 |
} |
|
1 | 162 |
} |
163 |
} |
|
164 |
} else { |
|
165 |
ShouldNotReachHere(); |
|
166 |
} |
|
167 |
} |
|
168 |
||
169 |
// 4991491 do not "optimize out" the was_set false values: omitting them |
|
170 |
// tickles a Microsoft compiler bug causing flagTable to be malformed |
|
171 |
||
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
172 |
#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
|
173 |
#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
|
174 |
#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
|
175 |
#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
|
176 |
#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
|
177 |
#define RUNTIME_PRODUCT_RW_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{product rw}", DEFAULT }, |
1 | 178 |
|
179 |
#ifdef PRODUCT |
|
180 |
#define RUNTIME_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */ |
|
181 |
#define RUNTIME_PD_DEVELOP_FLAG_STRUCT(type, name, doc) /* flag is constant */ |
|
182 |
#define RUNTIME_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) |
|
183 |
#else |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
184 |
#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
|
185 |
#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
|
186 |
#define RUNTIME_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{notproduct}", DEFAULT }, |
1 | 187 |
#endif |
188 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
350
diff
changeset
|
189 |
#ifdef _LP64 |
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
190 |
#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
|
191 |
#else |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
350
diff
changeset
|
192 |
#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
|
193 |
#endif // _LP64 |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
350
diff
changeset
|
194 |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
195 |
#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
|
196 |
#define C1_PD_PRODUCT_FLAG_STRUCT(type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C1 pd product}", DEFAULT }, |
1 | 197 |
#ifdef PRODUCT |
198 |
#define C1_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */ |
|
199 |
#define C1_PD_DEVELOP_FLAG_STRUCT(type, name, doc) /* flag is constant */ |
|
200 |
#define C1_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) |
|
201 |
#else |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
202 |
#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
|
203 |
#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
|
204 |
#define C1_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{C1 notproduct}", DEFAULT }, |
1 | 205 |
#endif |
206 |
||
207 |
||
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
208 |
#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
|
209 |
#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
|
210 |
#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
|
211 |
#define C2_EXPERIMENTAL_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C2 experimental}", DEFAULT }, |
1 | 212 |
#ifdef PRODUCT |
213 |
#define C2_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */ |
|
214 |
#define C2_PD_DEVELOP_FLAG_STRUCT(type, name, doc) /* flag is constant */ |
|
215 |
#define C2_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) |
|
216 |
#else |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
217 |
#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
|
218 |
#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
|
219 |
#define C2_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{C2 notproduct}", DEFAULT }, |
1 | 220 |
#endif |
221 |
||
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
222 |
#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
|
223 |
#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
|
224 |
#define SHARK_DIAGNOSTIC_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{Shark diagnostic}", DEFAULT }, |
6187 | 225 |
#ifdef PRODUCT |
226 |
#define SHARK_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */ |
|
227 |
#define SHARK_PD_DEVELOP_FLAG_STRUCT(type, name, doc) /* flag is constant */ |
|
228 |
#define SHARK_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) |
|
229 |
#else |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
230 |
#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
|
231 |
#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
|
232 |
#define SHARK_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{Shark notproduct}", DEFAULT }, |
6187 | 233 |
#endif |
1 | 234 |
|
235 |
static Flag flagTable[] = { |
|
11167
3931428f62ae
7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents:
11166
diff
changeset
|
236 |
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 | 237 |
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) |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
238 |
#ifndef SERIALGC |
1382
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1374
diff
changeset
|
239 |
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) |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
240 |
#endif // SERIALGC |
1 | 241 |
#ifdef COMPILER1 |
242 |
C1_FLAGS(C1_DEVELOP_FLAG_STRUCT, C1_PD_DEVELOP_FLAG_STRUCT, C1_PRODUCT_FLAG_STRUCT, C1_PD_PRODUCT_FLAG_STRUCT, C1_NOTPRODUCT_FLAG_STRUCT) |
|
243 |
#endif |
|
244 |
#ifdef COMPILER2 |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4437
diff
changeset
|
245 |
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 | 246 |
#endif |
6187 | 247 |
#ifdef SHARK |
248 |
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) |
|
249 |
#endif |
|
11183
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
250 |
FLAGTABLE_EXT |
1 | 251 |
{0, NULL, NULL} |
252 |
}; |
|
253 |
||
254 |
Flag* Flag::flags = flagTable; |
|
255 |
size_t Flag::numFlags = (sizeof(flagTable) / sizeof(Flag)); |
|
256 |
||
257 |
inline bool str_equal(const char* s, char* q, size_t len) { |
|
258 |
// s is null terminated, q is not! |
|
259 |
if (strlen(s) != (unsigned int) len) return false; |
|
260 |
return strncmp(s, q, len) == 0; |
|
261 |
} |
|
262 |
||
263 |
Flag* Flag::find_flag(char* name, size_t length) { |
|
264 |
for (Flag* current = &flagTable[0]; current->name; current++) { |
|
265 |
if (str_equal(current->name, name, length)) { |
|
266 |
if (!(current->is_unlocked() || current->is_unlocker())) { |
|
11167
3931428f62ae
7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents:
11166
diff
changeset
|
267 |
// disable use of diagnostic or experimental flags until they |
3931428f62ae
7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents:
11166
diff
changeset
|
268 |
// are explicitly unlocked |
1 | 269 |
return NULL; |
270 |
} |
|
271 |
return current; |
|
272 |
} |
|
273 |
} |
|
274 |
return NULL; |
|
275 |
} |
|
276 |
||
277 |
// Returns the address of the index'th element |
|
278 |
static Flag* address_of_flag(CommandLineFlagWithType flag) { |
|
279 |
assert((size_t)flag < Flag::numFlags, "bad command line flag index"); |
|
280 |
return &Flag::flags[flag]; |
|
281 |
} |
|
282 |
||
283 |
bool CommandLineFlagsEx::is_default(CommandLineFlag flag) { |
|
284 |
assert((size_t)flag < Flag::numFlags, "bad command line flag index"); |
|
285 |
Flag* f = &Flag::flags[flag]; |
|
286 |
return (f->origin == DEFAULT); |
|
287 |
} |
|
288 |
||
186
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
289 |
bool CommandLineFlagsEx::is_ergo(CommandLineFlag flag) { |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
290 |
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
|
291 |
Flag* f = &Flag::flags[flag]; |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
292 |
return (f->origin == ERGONOMIC); |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
293 |
} |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
294 |
|
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
295 |
bool CommandLineFlagsEx::is_cmdline(CommandLineFlag flag) { |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
296 |
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
|
297 |
Flag* f = &Flag::flags[flag]; |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
298 |
return (f->origin == COMMAND_LINE); |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
299 |
} |
32e6c95f8d9b
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents:
1
diff
changeset
|
300 |
|
1 | 301 |
bool CommandLineFlags::wasSetOnCmdline(const char* name, bool* value) { |
302 |
Flag* result = Flag::find_flag((char*)name, strlen(name)); |
|
303 |
if (result == NULL) return false; |
|
304 |
*value = (result->origin == COMMAND_LINE); |
|
305 |
return true; |
|
306 |
} |
|
307 |
||
308 |
bool CommandLineFlags::boolAt(char* name, size_t len, bool* value) { |
|
309 |
Flag* result = Flag::find_flag(name, len); |
|
310 |
if (result == NULL) return false; |
|
311 |
if (!result->is_bool()) return false; |
|
312 |
*value = result->get_bool(); |
|
313 |
return true; |
|
314 |
} |
|
315 |
||
316 |
bool CommandLineFlags::boolAtPut(char* name, size_t len, bool* value, FlagValueOrigin origin) { |
|
317 |
Flag* result = Flag::find_flag(name, len); |
|
318 |
if (result == NULL) return false; |
|
319 |
if (!result->is_bool()) return false; |
|
320 |
bool old_value = result->get_bool(); |
|
321 |
result->set_bool(*value); |
|
322 |
*value = old_value; |
|
323 |
result->origin = origin; |
|
324 |
return true; |
|
325 |
} |
|
326 |
||
327 |
void CommandLineFlagsEx::boolAtPut(CommandLineFlagWithType flag, bool value, FlagValueOrigin origin) { |
|
328 |
Flag* faddr = address_of_flag(flag); |
|
329 |
guarantee(faddr != NULL && faddr->is_bool(), "wrong flag type"); |
|
330 |
faddr->set_bool(value); |
|
331 |
faddr->origin = origin; |
|
332 |
} |
|
333 |
||
334 |
bool CommandLineFlags::intxAt(char* name, size_t len, intx* value) { |
|
335 |
Flag* result = Flag::find_flag(name, len); |
|
336 |
if (result == NULL) return false; |
|
337 |
if (!result->is_intx()) return false; |
|
338 |
*value = result->get_intx(); |
|
339 |
return true; |
|
340 |
} |
|
341 |
||
342 |
bool CommandLineFlags::intxAtPut(char* name, size_t len, intx* value, FlagValueOrigin origin) { |
|
343 |
Flag* result = Flag::find_flag(name, len); |
|
344 |
if (result == NULL) return false; |
|
345 |
if (!result->is_intx()) return false; |
|
346 |
intx old_value = result->get_intx(); |
|
347 |
result->set_intx(*value); |
|
348 |
*value = old_value; |
|
349 |
result->origin = origin; |
|
350 |
return true; |
|
351 |
} |
|
352 |
||
353 |
void CommandLineFlagsEx::intxAtPut(CommandLineFlagWithType flag, intx value, FlagValueOrigin origin) { |
|
354 |
Flag* faddr = address_of_flag(flag); |
|
355 |
guarantee(faddr != NULL && faddr->is_intx(), "wrong flag type"); |
|
356 |
faddr->set_intx(value); |
|
357 |
faddr->origin = origin; |
|
358 |
} |
|
359 |
||
360 |
bool CommandLineFlags::uintxAt(char* name, size_t len, uintx* value) { |
|
361 |
Flag* result = Flag::find_flag(name, len); |
|
362 |
if (result == NULL) return false; |
|
363 |
if (!result->is_uintx()) return false; |
|
364 |
*value = result->get_uintx(); |
|
365 |
return true; |
|
366 |
} |
|
367 |
||
368 |
bool CommandLineFlags::uintxAtPut(char* name, size_t len, uintx* value, FlagValueOrigin origin) { |
|
369 |
Flag* result = Flag::find_flag(name, len); |
|
370 |
if (result == NULL) return false; |
|
371 |
if (!result->is_uintx()) return false; |
|
372 |
uintx old_value = result->get_uintx(); |
|
373 |
result->set_uintx(*value); |
|
374 |
*value = old_value; |
|
375 |
result->origin = origin; |
|
376 |
return true; |
|
377 |
} |
|
378 |
||
379 |
void CommandLineFlagsEx::uintxAtPut(CommandLineFlagWithType flag, uintx value, FlagValueOrigin origin) { |
|
380 |
Flag* faddr = address_of_flag(flag); |
|
381 |
guarantee(faddr != NULL && faddr->is_uintx(), "wrong flag type"); |
|
382 |
faddr->set_uintx(value); |
|
383 |
faddr->origin = origin; |
|
384 |
} |
|
385 |
||
4434 | 386 |
bool CommandLineFlags::uint64_tAt(char* name, size_t len, uint64_t* value) { |
387 |
Flag* result = Flag::find_flag(name, len); |
|
388 |
if (result == NULL) return false; |
|
389 |
if (!result->is_uint64_t()) return false; |
|
390 |
*value = result->get_uint64_t(); |
|
391 |
return true; |
|
392 |
} |
|
393 |
||
394 |
bool CommandLineFlags::uint64_tAtPut(char* name, size_t len, uint64_t* value, FlagValueOrigin origin) { |
|
395 |
Flag* result = Flag::find_flag(name, len); |
|
396 |
if (result == NULL) return false; |
|
397 |
if (!result->is_uint64_t()) return false; |
|
398 |
uint64_t old_value = result->get_uint64_t(); |
|
399 |
result->set_uint64_t(*value); |
|
400 |
*value = old_value; |
|
401 |
result->origin = origin; |
|
402 |
return true; |
|
403 |
} |
|
404 |
||
405 |
void CommandLineFlagsEx::uint64_tAtPut(CommandLineFlagWithType flag, uint64_t value, FlagValueOrigin origin) { |
|
406 |
Flag* faddr = address_of_flag(flag); |
|
407 |
guarantee(faddr != NULL && faddr->is_uint64_t(), "wrong flag type"); |
|
408 |
faddr->set_uint64_t(value); |
|
409 |
faddr->origin = origin; |
|
410 |
} |
|
411 |
||
1 | 412 |
bool CommandLineFlags::doubleAt(char* name, size_t len, double* value) { |
413 |
Flag* result = Flag::find_flag(name, len); |
|
414 |
if (result == NULL) return false; |
|
415 |
if (!result->is_double()) return false; |
|
416 |
*value = result->get_double(); |
|
417 |
return true; |
|
418 |
} |
|
419 |
||
420 |
bool CommandLineFlags::doubleAtPut(char* name, size_t len, double* value, FlagValueOrigin origin) { |
|
421 |
Flag* result = Flag::find_flag(name, len); |
|
422 |
if (result == NULL) return false; |
|
423 |
if (!result->is_double()) return false; |
|
424 |
double old_value = result->get_double(); |
|
425 |
result->set_double(*value); |
|
426 |
*value = old_value; |
|
427 |
result->origin = origin; |
|
428 |
return true; |
|
429 |
} |
|
430 |
||
431 |
void CommandLineFlagsEx::doubleAtPut(CommandLineFlagWithType flag, double value, FlagValueOrigin origin) { |
|
432 |
Flag* faddr = address_of_flag(flag); |
|
433 |
guarantee(faddr != NULL && faddr->is_double(), "wrong flag type"); |
|
434 |
faddr->set_double(value); |
|
435 |
faddr->origin = origin; |
|
436 |
} |
|
437 |
||
438 |
bool CommandLineFlags::ccstrAt(char* name, size_t len, ccstr* value) { |
|
439 |
Flag* result = Flag::find_flag(name, len); |
|
440 |
if (result == NULL) return false; |
|
441 |
if (!result->is_ccstr()) return false; |
|
442 |
*value = result->get_ccstr(); |
|
443 |
return true; |
|
444 |
} |
|
445 |
||
446 |
// Contract: Flag will make private copy of the incoming value. |
|
447 |
// Outgoing value is always malloc-ed, and caller MUST call free. |
|
448 |
bool CommandLineFlags::ccstrAtPut(char* name, size_t len, ccstr* value, FlagValueOrigin origin) { |
|
449 |
Flag* result = Flag::find_flag(name, len); |
|
450 |
if (result == NULL) return false; |
|
451 |
if (!result->is_ccstr()) return false; |
|
452 |
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
|
453 |
char* new_value = NULL; |
ccb40ce62b79
6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents:
670
diff
changeset
|
454 |
if (*value != NULL) { |
ccb40ce62b79
6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents:
670
diff
changeset
|
455 |
new_value = NEW_C_HEAP_ARRAY(char, strlen(*value)+1); |
ccb40ce62b79
6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents:
670
diff
changeset
|
456 |
strcpy(new_value, *value); |
ccb40ce62b79
6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents:
670
diff
changeset
|
457 |
} |
1 | 458 |
result->set_ccstr(new_value); |
459 |
if (result->origin == DEFAULT && old_value != NULL) { |
|
460 |
// Prior value is NOT heap allocated, but was a literal constant. |
|
461 |
char* old_value_to_free = NEW_C_HEAP_ARRAY(char, strlen(old_value)+1); |
|
462 |
strcpy(old_value_to_free, old_value); |
|
463 |
old_value = old_value_to_free; |
|
464 |
} |
|
465 |
*value = old_value; |
|
466 |
result->origin = origin; |
|
467 |
return true; |
|
468 |
} |
|
469 |
||
470 |
// Contract: Flag will make private copy of the incoming value. |
|
471 |
void CommandLineFlagsEx::ccstrAtPut(CommandLineFlagWithType flag, ccstr value, FlagValueOrigin origin) { |
|
472 |
Flag* faddr = address_of_flag(flag); |
|
473 |
guarantee(faddr != NULL && faddr->is_ccstr(), "wrong flag type"); |
|
474 |
ccstr old_value = faddr->get_ccstr(); |
|
475 |
char* new_value = NEW_C_HEAP_ARRAY(char, strlen(value)+1); |
|
476 |
strcpy(new_value, value); |
|
477 |
faddr->set_ccstr(new_value); |
|
478 |
if (faddr->origin != DEFAULT && old_value != NULL) { |
|
479 |
// Prior value is heap allocated so free it. |
|
480 |
FREE_C_HEAP_ARRAY(char, old_value); |
|
481 |
} |
|
482 |
faddr->origin = origin; |
|
483 |
} |
|
484 |
||
485 |
extern "C" { |
|
486 |
static int compare_flags(const void* void_a, const void* void_b) { |
|
487 |
return strcmp((*((Flag**) void_a))->name, (*((Flag**) void_b))->name); |
|
488 |
} |
|
489 |
} |
|
490 |
||
11441 | 491 |
void CommandLineFlags::printSetFlags(outputStream* out) { |
1 | 492 |
// Print which flags were set on the command line |
493 |
// note: this method is called before the thread structure is in place |
|
494 |
// which means resource allocation cannot be used. |
|
495 |
||
496 |
// Compute size |
|
497 |
int length= 0; |
|
498 |
while (flagTable[length].name != NULL) length++; |
|
499 |
||
500 |
// Sort |
|
501 |
Flag** array = NEW_C_HEAP_ARRAY(Flag*, length); |
|
502 |
for (int index = 0; index < length; index++) { |
|
503 |
array[index] = &flagTable[index]; |
|
504 |
} |
|
505 |
qsort(array, length, sizeof(Flag*), compare_flags); |
|
506 |
||
507 |
||
508 |
for (int i = 0; i < length; i++) { |
|
509 |
if (array[i]->origin /* naked field! */) { |
|
11441 | 510 |
array[i]->print_as_flag(out); |
511 |
out->print(" "); |
|
1 | 512 |
} |
513 |
} |
|
11441 | 514 |
out->cr(); |
1 | 515 |
FREE_C_HEAP_ARRAY(Flag*, array); |
516 |
} |
|
517 |
||
518 |
#ifndef PRODUCT |
|
519 |
||
520 |
||
521 |
void CommandLineFlags::verify() { |
|
522 |
assert(Arguments::check_vm_args_consistency(), "Some flag settings conflict"); |
|
523 |
} |
|
524 |
||
4579 | 525 |
#endif // PRODUCT |
526 |
||
11441 | 527 |
void CommandLineFlags::printFlags(outputStream* out, bool withComments) { |
1 | 528 |
// Print the flags sorted by name |
529 |
// note: this method is called before the thread structure is in place |
|
530 |
// which means resource allocation cannot be used. |
|
531 |
||
532 |
// Compute size |
|
533 |
int length= 0; |
|
534 |
while (flagTable[length].name != NULL) length++; |
|
535 |
||
536 |
// Sort |
|
537 |
Flag** array = NEW_C_HEAP_ARRAY(Flag*, length); |
|
538 |
for (int index = 0; index < length; index++) { |
|
539 |
array[index] = &flagTable[index]; |
|
540 |
} |
|
541 |
qsort(array, length, sizeof(Flag*), compare_flags); |
|
542 |
||
543 |
||
11441 | 544 |
out->print_cr("[Global flags]"); |
1 | 545 |
for (int i = 0; i < length; i++) { |
546 |
if (array[i]->is_unlocked()) { |
|
11441 | 547 |
array[i]->print_on(out, withComments); |
1 | 548 |
} |
549 |
} |
|
550 |
FREE_C_HEAP_ARRAY(Flag*, array); |
|
551 |
} |