author | dholmes |
Sat, 23 Jun 2018 01:32:41 -0400 | |
changeset 50735 | 2f2af62dfac7 |
parent 50289 | 0195ee80e530 |
child 54982 | b18c8301b8c2 |
child 56625 | 380796df44a9 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
49163
580bb0b85f63
8198554: Add fuzzy matching for log levels and tags when parsing -Xlog
mlarsson
parents:
47765
diff
changeset
|
2 |
* Copyright (c) 1997, 2018, 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" |
50113 | 26 |
#include "jfr/jfrEvents.hpp" |
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47687
diff
changeset
|
27 |
#include "jvm.h" |
7397 | 28 |
#include "memory/allocation.inline.hpp" |
29 |
#include "oops/oop.inline.hpp" |
|
30 |
#include "runtime/arguments.hpp" |
|
31 |
#include "runtime/globals.hpp" |
|
32 |
#include "runtime/globals_extension.hpp" |
|
49902
3661f31c6df4
8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents:
49860
diff
changeset
|
33 |
#include "runtime/flags/jvmFlagConstraintList.hpp" |
3661f31c6df4
8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents:
49860
diff
changeset
|
34 |
#include "runtime/flags/jvmFlagWriteableList.hpp" |
27471 | 35 |
#include "runtime/os.hpp" |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
36 |
#include "runtime/sharedRuntime.hpp" |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
37 |
#include "utilities/defaultStream.hpp" |
30764 | 38 |
#include "utilities/macros.hpp" |
7397 | 39 |
#include "utilities/ostream.hpp" |
49163
580bb0b85f63
8198554: Add fuzzy matching for log levels and tags when parsing -Xlog
mlarsson
parents:
47765
diff
changeset
|
40 |
#include "utilities/stringUtils.hpp" |
7397 | 41 |
#ifdef COMPILER1 |
42 |
#include "c1/c1_globals.hpp" |
|
43 |
#endif |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
44 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
45 |
#include "jvmci/jvmci_globals.hpp" |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32374
diff
changeset
|
46 |
#endif |
7397 | 47 |
#ifdef COMPILER2 |
48 |
#include "opto/c2_globals.hpp" |
|
49 |
#endif |
|
1 | 50 |
|
49715
947560700a09
8201136: Move GC flags from globals.hpp to GC specific files
stefank
parents:
49462
diff
changeset
|
51 |
VM_FLAGS(MATERIALIZE_DEVELOPER_FLAG, \ |
947560700a09
8201136: Move GC flags from globals.hpp to GC specific files
stefank
parents:
49462
diff
changeset
|
52 |
MATERIALIZE_PD_DEVELOPER_FLAG, \ |
947560700a09
8201136: Move GC flags from globals.hpp to GC specific files
stefank
parents:
49462
diff
changeset
|
53 |
MATERIALIZE_PRODUCT_FLAG, \ |
947560700a09
8201136: Move GC flags from globals.hpp to GC specific files
stefank
parents:
49462
diff
changeset
|
54 |
MATERIALIZE_PD_PRODUCT_FLAG, \ |
947560700a09
8201136: Move GC flags from globals.hpp to GC specific files
stefank
parents:
49462
diff
changeset
|
55 |
MATERIALIZE_DIAGNOSTIC_FLAG, \ |
947560700a09
8201136: Move GC flags from globals.hpp to GC specific files
stefank
parents:
49462
diff
changeset
|
56 |
MATERIALIZE_PD_DIAGNOSTIC_FLAG, \ |
947560700a09
8201136: Move GC flags from globals.hpp to GC specific files
stefank
parents:
49462
diff
changeset
|
57 |
MATERIALIZE_EXPERIMENTAL_FLAG, \ |
947560700a09
8201136: Move GC flags from globals.hpp to GC specific files
stefank
parents:
49462
diff
changeset
|
58 |
MATERIALIZE_NOTPRODUCT_FLAG, \ |
947560700a09
8201136: Move GC flags from globals.hpp to GC specific files
stefank
parents:
49462
diff
changeset
|
59 |
MATERIALIZE_MANAGEABLE_FLAG, \ |
947560700a09
8201136: Move GC flags from globals.hpp to GC specific files
stefank
parents:
49462
diff
changeset
|
60 |
MATERIALIZE_PRODUCT_RW_FLAG, \ |
947560700a09
8201136: Move GC flags from globals.hpp to GC specific files
stefank
parents:
49462
diff
changeset
|
61 |
MATERIALIZE_LP64_PRODUCT_FLAG, \ |
947560700a09
8201136: Move GC flags from globals.hpp to GC specific files
stefank
parents:
49462
diff
changeset
|
62 |
IGNORE_RANGE, \ |
947560700a09
8201136: Move GC flags from globals.hpp to GC specific files
stefank
parents:
49462
diff
changeset
|
63 |
IGNORE_CONSTRAINT, \ |
947560700a09
8201136: Move GC flags from globals.hpp to GC specific files
stefank
parents:
49462
diff
changeset
|
64 |
IGNORE_WRITEABLE) |
1 | 65 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
66 |
RUNTIME_OS_FLAGS(MATERIALIZE_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
67 |
MATERIALIZE_PD_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
68 |
MATERIALIZE_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
69 |
MATERIALIZE_PD_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
70 |
MATERIALIZE_DIAGNOSTIC_FLAG, \ |
39117 | 71 |
MATERIALIZE_PD_DIAGNOSTIC_FLAG, \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
72 |
MATERIALIZE_NOTPRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
73 |
IGNORE_RANGE, \ |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
74 |
IGNORE_CONSTRAINT, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
75 |
IGNORE_WRITEABLE) |
1 | 76 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
77 |
ARCH_FLAGS(MATERIALIZE_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
78 |
MATERIALIZE_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
79 |
MATERIALIZE_DIAGNOSTIC_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
80 |
MATERIALIZE_EXPERIMENTAL_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
81 |
MATERIALIZE_NOTPRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31236
diff
changeset
|
82 |
IGNORE_RANGE, \ |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
83 |
IGNORE_CONSTRAINT, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
37491
diff
changeset
|
84 |
IGNORE_WRITEABLE) |
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13195
diff
changeset
|
85 |
|
11183
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
86 |
MATERIALIZE_FLAGS_EXT |