annotate src/share/vm/runtime/globals_extension.hpp @ 13212:eb03a7335eb0

Use fixed instead of virtual register for target in far foreign call, since the register allocator does not support virtual registers to be used at call sites.
author Christian Wimmer <christian.wimmer@oracle.com>
date Mon, 02 Dec 2013 14:20:32 -0800
parents cefad50507d8
children d8041d695d19
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6633
a5dd6e3ef9f3 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 4107
diff changeset
2 * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1080
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1080
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1080
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_RUNTIME_GLOBALS_EXTENSION_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_RUNTIME_GLOBALS_EXTENSION_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "runtime/globals.hpp"
8001
db9981fd3124 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 6854
diff changeset
29 #include "utilities/macros.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "utilities/top.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31
0
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // Construct enum of Flag_<cmdline-arg> constants.
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // Parens left off in the following for the enum decl below.
a61af66fc99e Initial load
duke
parents:
diff changeset
35 #define FLAG_MEMBER(flag) Flag_##flag
a61af66fc99e Initial load
duke
parents:
diff changeset
36
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
37 #define RUNTIME_PRODUCT_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
38 #define RUNTIME_PD_PRODUCT_FLAG_MEMBER(type, name, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
39 #define RUNTIME_DIAGNOSTIC_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
350
d28aa69f0959 6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents: 342
diff changeset
40 #define RUNTIME_EXPERIMENTAL_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
41 #define RUNTIME_MANAGEABLE_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
42 #define RUNTIME_PRODUCT_RW_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
43 #define RUNTIME_DEVELOP_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
44 #define RUNTIME_PD_DEVELOP_FLAG_MEMBER(type, name, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
45 #define RUNTIME_NOTPRODUCT_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
46
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
47 #ifdef _LP64
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
48 #define RUNTIME_LP64_PRODUCT_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
49 #else
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
50 #define RUNTIME_LP64_PRODUCT_FLAG_MEMBER(type, name, value, doc) /* flag is constant */
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 13
diff changeset
51 #endif // _LP64
0
a61af66fc99e Initial load
duke
parents:
diff changeset
52
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
53 #define C1_PRODUCT_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
54 #define C1_PD_PRODUCT_FLAG_MEMBER(type, name, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
55 #define C1_DIAGNOSTIC_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
56 #define C1_DEVELOP_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
57 #define C1_PD_DEVELOP_FLAG_MEMBER(type, name, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
58 #define C1_NOTPRODUCT_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
59
12355
cefad50507d8 Merge with hs25-b53
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8124 12322
diff changeset
60 #define GRAAL_PRODUCT_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
cefad50507d8 Merge with hs25-b53
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8124 12322
diff changeset
61 #define GRAAL_PD_PRODUCT_FLAG_MEMBER(type, name, doc) FLAG_MEMBER(name),
cefad50507d8 Merge with hs25-b53
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8124 12322
diff changeset
62 #define GRAAL_DEVELOP_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
cefad50507d8 Merge with hs25-b53
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8124 12322
diff changeset
63 #define GRAAL_PD_DEVELOP_FLAG_MEMBER(type, name, doc) FLAG_MEMBER(name),
cefad50507d8 Merge with hs25-b53
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8124 12322
diff changeset
64 #define GRAAL_NOTPRODUCT_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
7125
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents: 6854
diff changeset
65
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
66 #define C2_PRODUCT_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
67 #define C2_PD_PRODUCT_FLAG_MEMBER(type, name, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
68 #define C2_DIAGNOSTIC_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
69 #define C2_EXPERIMENTAL_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
70 #define C2_DEVELOP_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
71 #define C2_PD_DEVELOP_FLAG_MEMBER(type, name, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
72 #define C2_NOTPRODUCT_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
73
6633
a5dd6e3ef9f3 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 4107
diff changeset
74 #define ARCH_PRODUCT_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
a5dd6e3ef9f3 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 4107
diff changeset
75 #define ARCH_DIAGNOSTIC_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
a5dd6e3ef9f3 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 4107
diff changeset
76 #define ARCH_EXPERIMENTAL_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
77 #define ARCH_DEVELOP_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
78 #define ARCH_NOTPRODUCT_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
6633
a5dd6e3ef9f3 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 4107
diff changeset
79
0
a61af66fc99e Initial load
duke
parents:
diff changeset
80 typedef enum {
4088
358eca91be48 7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents: 4087
diff changeset
81 RUNTIME_FLAGS(RUNTIME_DEVELOP_FLAG_MEMBER, RUNTIME_PD_DEVELOP_FLAG_MEMBER, RUNTIME_PRODUCT_FLAG_MEMBER, RUNTIME_PD_PRODUCT_FLAG_MEMBER, RUNTIME_DIAGNOSTIC_FLAG_MEMBER, RUNTIME_EXPERIMENTAL_FLAG_MEMBER, RUNTIME_NOTPRODUCT_FLAG_MEMBER, RUNTIME_MANAGEABLE_FLAG_MEMBER, RUNTIME_PRODUCT_RW_FLAG_MEMBER, RUNTIME_LP64_PRODUCT_FLAG_MEMBER)
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
82 RUNTIME_OS_FLAGS(RUNTIME_DEVELOP_FLAG_MEMBER, RUNTIME_PD_DEVELOP_FLAG_MEMBER, RUNTIME_PRODUCT_FLAG_MEMBER, RUNTIME_PD_PRODUCT_FLAG_MEMBER, RUNTIME_DIAGNOSTIC_FLAG_MEMBER, RUNTIME_NOTPRODUCT_FLAG_MEMBER)
8001
db9981fd3124 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 6854
diff changeset
83 #if INCLUDE_ALL_GCS
350
d28aa69f0959 6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents: 342
diff changeset
84 G1_FLAGS(RUNTIME_DEVELOP_FLAG_MEMBER, RUNTIME_PD_DEVELOP_FLAG_MEMBER, RUNTIME_PRODUCT_FLAG_MEMBER, RUNTIME_PD_PRODUCT_FLAG_MEMBER, RUNTIME_DIAGNOSTIC_FLAG_MEMBER, RUNTIME_EXPERIMENTAL_FLAG_MEMBER, RUNTIME_NOTPRODUCT_FLAG_MEMBER, RUNTIME_MANAGEABLE_FLAG_MEMBER, RUNTIME_PRODUCT_RW_FLAG_MEMBER)
8001
db9981fd3124 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 6854
diff changeset
85 #endif // INCLUDE_ALL_GCS
0
a61af66fc99e Initial load
duke
parents:
diff changeset
86 #ifdef COMPILER1
12160
f98f5d48f511 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 8001
diff changeset
87 C1_FLAGS(C1_DEVELOP_FLAG_MEMBER, C1_PD_DEVELOP_FLAG_MEMBER, C1_PRODUCT_FLAG_MEMBER, C1_PD_PRODUCT_FLAG_MEMBER, C1_DIAGNOSTIC_FLAG_MEMBER, C1_NOTPRODUCT_FLAG_MEMBER)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
88 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
89 #ifdef COMPILER2
1080
7c57aead6d3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1064
diff changeset
90 C2_FLAGS(C2_DEVELOP_FLAG_MEMBER, C2_PD_DEVELOP_FLAG_MEMBER, C2_PRODUCT_FLAG_MEMBER, C2_PD_PRODUCT_FLAG_MEMBER, C2_DIAGNOSTIC_FLAG_MEMBER, C2_EXPERIMENTAL_FLAG_MEMBER, C2_NOTPRODUCT_FLAG_MEMBER)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
91 #endif
6633
a5dd6e3ef9f3 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 4107
diff changeset
92 ARCH_FLAGS(ARCH_DEVELOP_FLAG_MEMBER, ARCH_PRODUCT_FLAG_MEMBER, ARCH_DIAGNOSTIC_FLAG_MEMBER, ARCH_EXPERIMENTAL_FLAG_MEMBER, ARCH_NOTPRODUCT_FLAG_MEMBER)
4107
cd00eaeebef6 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 4088
diff changeset
93 COMMANDLINEFLAG_EXT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
94 NUM_CommandLineFlag
a61af66fc99e Initial load
duke
parents:
diff changeset
95 } CommandLineFlag;
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // Construct enum of Flag_<cmdline-arg>_<type> constants.
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 #define FLAG_MEMBER_WITH_TYPE(flag,type) Flag_##flag##_##type
a61af66fc99e Initial load
duke
parents:
diff changeset
100
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
101 #define RUNTIME_PRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
102 #define RUNTIME_PD_PRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
103 #define RUNTIME_DIAGNOSTIC_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
350
d28aa69f0959 6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents: 342
diff changeset
104 #define RUNTIME_EXPERIMENTAL_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
105 #define RUNTIME_MANAGEABLE_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
106 #define RUNTIME_PRODUCT_RW_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
107 #define RUNTIME_DEVELOP_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
108 #define RUNTIME_PD_DEVELOP_FLAG_MEMBER_WITH_TYPE(type, name, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
109 #define RUNTIME_NOTPRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
110
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
111 #define C1_PRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
112 #define C1_PD_PRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
113 #define C1_DIAGNOSTIC_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
114 #define C1_DEVELOP_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
115 #define C1_PD_DEVELOP_FLAG_MEMBER_WITH_TYPE(type, name, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
116 #define C1_NOTPRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
117
12355
cefad50507d8 Merge with hs25-b53
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8124 12322
diff changeset
118 #define GRAAL_PRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
cefad50507d8 Merge with hs25-b53
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8124 12322
diff changeset
119 #define GRAAL_PD_PRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, doc) FLAG_MEMBER_WITH_TYPE(name,type),
cefad50507d8 Merge with hs25-b53
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8124 12322
diff changeset
120 #define GRAAL_DEVELOP_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
cefad50507d8 Merge with hs25-b53
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8124 12322
diff changeset
121 #define GRAAL_PD_DEVELOP_FLAG_MEMBER_WITH_TYPE(type, name, doc) FLAG_MEMBER_WITH_TYPE(name,type),
cefad50507d8 Merge with hs25-b53
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8124 12322
diff changeset
122 #define GRAAL_NOTPRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
cefad50507d8 Merge with hs25-b53
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8124 12322
diff changeset
123
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
124 #ifdef _LP64
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
125 #define RUNTIME_LP64_PRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
126 #else
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
127 #define RUNTIME_LP64_PRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) /* flag is constant */
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 13
diff changeset
128 #endif // _LP64
0
a61af66fc99e Initial load
duke
parents:
diff changeset
129
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
130 #define C2_PRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
131 #define C2_PD_PRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
132 #define C2_DIAGNOSTIC_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
1080
7c57aead6d3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1064
diff changeset
133 #define C2_EXPERIMENTAL_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
134 #define C2_DEVELOP_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
135 #define C2_PD_DEVELOP_FLAG_MEMBER_WITH_TYPE(type, name, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
136 #define C2_NOTPRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
137
6633
a5dd6e3ef9f3 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 4107
diff changeset
138 #define ARCH_PRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
a5dd6e3ef9f3 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 4107
diff changeset
139 #define ARCH_DIAGNOSTIC_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
140 #define ARCH_EXPERIMENTAL_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
141 #define ARCH_DEVELOP_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
142 #define ARCH_NOTPRODUCT_FLAG_MEMBER_WITH_TYPE(type, name, value, doc) FLAG_MEMBER_WITH_TYPE(name,type),
6633
a5dd6e3ef9f3 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 4107
diff changeset
143
0
a61af66fc99e Initial load
duke
parents:
diff changeset
144 typedef enum {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
145 RUNTIME_FLAGS(RUNTIME_DEVELOP_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
146 RUNTIME_PD_DEVELOP_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
147 RUNTIME_PRODUCT_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
148 RUNTIME_PD_PRODUCT_FLAG_MEMBER_WITH_TYPE,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
149 RUNTIME_DIAGNOSTIC_FLAG_MEMBER_WITH_TYPE,
350
d28aa69f0959 6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents: 342
diff changeset
150 RUNTIME_EXPERIMENTAL_FLAG_MEMBER_WITH_TYPE,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
151 RUNTIME_NOTPRODUCT_FLAG_MEMBER_WITH_TYPE,
a61af66fc99e Initial load
duke
parents:
diff changeset
152 RUNTIME_MANAGEABLE_FLAG_MEMBER_WITH_TYPE,
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 13
diff changeset
153 RUNTIME_PRODUCT_RW_FLAG_MEMBER_WITH_TYPE,
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 13
diff changeset
154 RUNTIME_LP64_PRODUCT_FLAG_MEMBER_WITH_TYPE)
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
155 RUNTIME_OS_FLAGS(RUNTIME_DEVELOP_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
156 RUNTIME_PD_DEVELOP_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
157 RUNTIME_PRODUCT_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
158 RUNTIME_PD_PRODUCT_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
159 RUNTIME_DIAGNOSTIC_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
160 RUNTIME_NOTPRODUCT_FLAG_MEMBER_WITH_TYPE)
8001
db9981fd3124 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 6854
diff changeset
161 #if INCLUDE_ALL_GCS
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
162 G1_FLAGS(RUNTIME_DEVELOP_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
163 RUNTIME_PD_DEVELOP_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
164 RUNTIME_PRODUCT_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
165 RUNTIME_PD_PRODUCT_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
166 RUNTIME_DIAGNOSTIC_FLAG_MEMBER_WITH_TYPE,
350
d28aa69f0959 6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents: 342
diff changeset
167 RUNTIME_EXPERIMENTAL_FLAG_MEMBER_WITH_TYPE,
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
168 RUNTIME_NOTPRODUCT_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
169 RUNTIME_MANAGEABLE_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
170 RUNTIME_PRODUCT_RW_FLAG_MEMBER_WITH_TYPE)
8001
db9981fd3124 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 6854
diff changeset
171 #endif // INCLUDE_ALL_GCS
0
a61af66fc99e Initial load
duke
parents:
diff changeset
172 #ifdef COMPILER1
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
173 C1_FLAGS(C1_DEVELOP_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
174 C1_PD_DEVELOP_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
175 C1_PRODUCT_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
176 C1_PD_PRODUCT_FLAG_MEMBER_WITH_TYPE,
12160
f98f5d48f511 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 8001
diff changeset
177 C1_DIAGNOSTIC_FLAG_MEMBER_WITH_TYPE,
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
178 C1_NOTPRODUCT_FLAG_MEMBER_WITH_TYPE)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
179 #endif
7125
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents: 6854
diff changeset
180 #ifdef GRAAL
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents: 6854
diff changeset
181 GRAAL_FLAGS(GRAAL_DEVELOP_FLAG_MEMBER_WITH_TYPE,
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents: 6854
diff changeset
182 GRAAL_PD_DEVELOP_FLAG_MEMBER_WITH_TYPE,
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents: 6854
diff changeset
183 GRAAL_PRODUCT_FLAG_MEMBER_WITH_TYPE,
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents: 6854
diff changeset
184 GRAAL_PD_PRODUCT_FLAG_MEMBER_WITH_TYPE,
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents: 6854
diff changeset
185 GRAAL_NOTPRODUCT_FLAG_MEMBER_WITH_TYPE)
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents: 6854
diff changeset
186 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
187 #ifdef COMPILER2
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
188 C2_FLAGS(C2_DEVELOP_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
189 C2_PD_DEVELOP_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
190 C2_PRODUCT_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
191 C2_PD_PRODUCT_FLAG_MEMBER_WITH_TYPE,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
192 C2_DIAGNOSTIC_FLAG_MEMBER_WITH_TYPE,
1080
7c57aead6d3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1064
diff changeset
193 C2_EXPERIMENTAL_FLAG_MEMBER_WITH_TYPE,
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
194 C2_NOTPRODUCT_FLAG_MEMBER_WITH_TYPE)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
195 #endif
6633
a5dd6e3ef9f3 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 4107
diff changeset
196 ARCH_FLAGS(ARCH_DEVELOP_FLAG_MEMBER_WITH_TYPE,
a5dd6e3ef9f3 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 4107
diff changeset
197 ARCH_PRODUCT_FLAG_MEMBER_WITH_TYPE,
a5dd6e3ef9f3 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 4107
diff changeset
198 ARCH_DIAGNOSTIC_FLAG_MEMBER_WITH_TYPE,
a5dd6e3ef9f3 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 4107
diff changeset
199 ARCH_EXPERIMENTAL_FLAG_MEMBER_WITH_TYPE,
a5dd6e3ef9f3 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 4107
diff changeset
200 ARCH_NOTPRODUCT_FLAG_MEMBER_WITH_TYPE)
4107
cd00eaeebef6 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 4088
diff changeset
201 COMMANDLINEFLAGWITHTYPE_EXT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
202 NUM_CommandLineFlagWithType
a61af66fc99e Initial load
duke
parents:
diff changeset
203 } CommandLineFlagWithType;
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 #define FLAG_IS_DEFAULT(name) (CommandLineFlagsEx::is_default(FLAG_MEMBER(name)))
13
183f41cf8bfe 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 0
diff changeset
206 #define FLAG_IS_ERGO(name) (CommandLineFlagsEx::is_ergo(FLAG_MEMBER(name)))
183f41cf8bfe 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 0
diff changeset
207 #define FLAG_IS_CMDLINE(name) (CommandLineFlagsEx::is_cmdline(FLAG_MEMBER(name)))
0
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 #define FLAG_SET_DEFAULT(name, value) ((name) = (value))
a61af66fc99e Initial load
duke
parents:
diff changeset
210
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
211 #define FLAG_SET_CMDLINE(type, name, value) (CommandLineFlagsEx::type##AtPut(FLAG_MEMBER_WITH_TYPE(name,type), (type)(value), Flag::COMMAND_LINE))
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
212 #define FLAG_SET_ERGO(type, name, value) (CommandLineFlagsEx::type##AtPut(FLAG_MEMBER_WITH_TYPE(name,type), (type)(value), Flag::ERGONOMIC))
0
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // Can't put the following in CommandLineFlags because
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // of a circular dependency on the enum definition.
a61af66fc99e Initial load
duke
parents:
diff changeset
216 class CommandLineFlagsEx : CommandLineFlags {
a61af66fc99e Initial load
duke
parents:
diff changeset
217 public:
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
218 static void boolAtPut(CommandLineFlagWithType flag, bool value, Flag::Flags origin);
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
219 static void intxAtPut(CommandLineFlagWithType flag, intx value, Flag::Flags origin);
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
220 static void uintxAtPut(CommandLineFlagWithType flag, uintx value, Flag::Flags origin);
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
221 static void uint64_tAtPut(CommandLineFlagWithType flag, uint64_t value, Flag::Flags origin);
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
222 static void doubleAtPut(CommandLineFlagWithType flag, double value, Flag::Flags origin);
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12160
diff changeset
223 static void ccstrAtPut(CommandLineFlagWithType flag, ccstr value, Flag::Flags origin);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 static bool is_default(CommandLineFlag flag);
13
183f41cf8bfe 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 0
diff changeset
226 static bool is_ergo(CommandLineFlag flag);
183f41cf8bfe 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 0
diff changeset
227 static bool is_cmdline(CommandLineFlag flag);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
228 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
229
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
230 #endif // SHARE_VM_RUNTIME_GLOBALS_EXTENSION_HPP