author | pliden |
Tue, 12 Jun 2018 17:40:28 +0200 | |
changeset 50525 | 767cdb97f103 |
parent 50523 | 7b7c75d87f9b |
child 50752 | 9d62da00bf15 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
50113 | 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:
5403
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5403
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:
5403
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_UTILITIES_MACROS_HPP |
26 |
#define SHARE_VM_UTILITIES_MACROS_HPP |
|
27 |
||
1 | 28 |
// Use this to mark code that needs to be cleaned up (for development only) |
29 |
#define NEEDS_CLEANUP |
|
30 |
||
31 |
// Makes a string of the argument (which is not macro-expanded) |
|
32 |
#define STR(a) #a |
|
33 |
||
34 |
// Makes a string of the macro expansion of a |
|
35 |
#define XSTR(a) STR(a) |
|
36 |
||
38704
eb96c446c3a5
8156548: gc/gctests/StringInternSyncWithGC2 fails with Test level exit status: 151
kbarrett
parents:
37272
diff
changeset
|
37 |
// Allow commas in macro arguments. |
eb96c446c3a5
8156548: gc/gctests/StringInternSyncWithGC2 fails with Test level exit status: 151
kbarrett
parents:
37272
diff
changeset
|
38 |
#define COMMA , |
eb96c446c3a5
8156548: gc/gctests/StringInternSyncWithGC2 fails with Test level exit status: 151
kbarrett
parents:
37272
diff
changeset
|
39 |
|
31340
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
29474
diff
changeset
|
40 |
// Apply pre-processor token pasting to the expansions of x and y. |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
29474
diff
changeset
|
41 |
// The token pasting operator (##) prevents its arguments from being |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
29474
diff
changeset
|
42 |
// expanded. This macro allows expansion of its arguments before the |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
29474
diff
changeset
|
43 |
// concatenation is performed. Note: One auxilliary level ought to be |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
29474
diff
changeset
|
44 |
// sufficient, but two are used because of bugs in some preprocesors. |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
29474
diff
changeset
|
45 |
#define PASTE_TOKENS(x, y) PASTE_TOKENS_AUX(x, y) |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
29474
diff
changeset
|
46 |
#define PASTE_TOKENS_AUX(x, y) PASTE_TOKENS_AUX2(x, y) |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
29474
diff
changeset
|
47 |
#define PASTE_TOKENS_AUX2(x, y) x ## y |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
29474
diff
changeset
|
48 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
49 |
// -DINCLUDE_<something>=0 | 1 can be specified on the command line to include |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
50 |
// or exclude functionality. |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
51 |
|
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
52 |
#ifndef INCLUDE_JVMTI |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
53 |
#define INCLUDE_JVMTI 1 |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
54 |
#endif // INCLUDE_JVMTI |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
55 |
|
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
56 |
#if INCLUDE_JVMTI |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
57 |
#define JVMTI_ONLY(x) x |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
58 |
#define NOT_JVMTI(x) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
59 |
#define NOT_JVMTI_RETURN |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
60 |
#define NOT_JVMTI_RETURN_(code) /* next token must be ; */ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
61 |
#else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
62 |
#define JVMTI_ONLY(x) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
63 |
#define NOT_JVMTI(x) x |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
64 |
#define NOT_JVMTI_RETURN { return; } |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
65 |
#define NOT_JVMTI_RETURN_(code) { return code; } |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
66 |
#endif // INCLUDE_JVMTI |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
67 |
|
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
68 |
#ifndef INCLUDE_VM_STRUCTS |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
69 |
#define INCLUDE_VM_STRUCTS 1 |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
70 |
#endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
71 |
|
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
72 |
#if INCLUDE_VM_STRUCTS |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
73 |
#define NOT_VM_STRUCTS_RETURN /* next token must be ; */ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
74 |
#define NOT_VM_STRUCTS_RETURN_(code) /* next token must be ; */ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
75 |
#else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
76 |
#define NOT_VM_STRUCTS_RETURN {} |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
77 |
#define NOT_VM_STRUCTS_RETURN_(code) { return code; } |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
78 |
#endif // INCLUDE_VM_STRUCTS |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
79 |
|
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
80 |
#ifndef INCLUDE_JNI_CHECK |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
81 |
#define INCLUDE_JNI_CHECK 1 |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
82 |
#endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
83 |
|
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
84 |
#if INCLUDE_JNI_CHECK |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
85 |
#define NOT_JNI_CHECK_RETURN /* next token must be ; */ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
86 |
#define NOT_JNI_CHECK_RETURN_(code) /* next token must be ; */ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
87 |
#else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
88 |
#define NOT_JNI_CHECK_RETURN {} |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
89 |
#define NOT_JNI_CHECK_RETURN_(code) { return code; } |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
90 |
#endif // INCLUDE_JNI_CHECK |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
91 |
|
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
92 |
#ifndef INCLUDE_SERVICES |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
93 |
#define INCLUDE_SERVICES 1 |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
94 |
#endif |
1 | 95 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
96 |
#if INCLUDE_SERVICES |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
97 |
#define NOT_SERVICES_RETURN /* next token must be ; */ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
98 |
#define NOT_SERVICES_RETURN_(code) /* next token must be ; */ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
99 |
#else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
100 |
#define NOT_SERVICES_RETURN {} |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
101 |
#define NOT_SERVICES_RETURN_(code) { return code; } |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
102 |
#endif // INCLUDE_SERVICES |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
103 |
|
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
104 |
#ifndef INCLUDE_CDS |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
105 |
#define INCLUDE_CDS 1 |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
106 |
#endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
107 |
|
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
108 |
#if INCLUDE_CDS |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
109 |
#define CDS_ONLY(x) x |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
110 |
#define NOT_CDS(x) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
111 |
#define NOT_CDS_RETURN /* next token must be ; */ |
49746 | 112 |
#define NOT_CDS_RETURN0 /* next token must be ; */ |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
113 |
#define NOT_CDS_RETURN_(code) /* next token must be ; */ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
114 |
#else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
115 |
#define CDS_ONLY(x) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
116 |
#define NOT_CDS(x) x |
49746 | 117 |
#define NOT_CDS_RETURN {} |
118 |
#define NOT_CDS_RETURN0 { return 0; } |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
119 |
#define NOT_CDS_RETURN_(code) { return code; } |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
120 |
#endif // INCLUDE_CDS |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
121 |
|
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
122 |
#ifndef INCLUDE_MANAGEMENT |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
123 |
#define INCLUDE_MANAGEMENT 1 |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
124 |
#endif // INCLUDE_MANAGEMENT |
1 | 125 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
126 |
#if INCLUDE_MANAGEMENT |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
127 |
#define NOT_MANAGEMENT_RETURN /* next token must be ; */ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
128 |
#define NOT_MANAGEMENT_RETURN_(code) /* next token must be ; */ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
129 |
#else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
130 |
#define NOT_MANAGEMENT_RETURN {} |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
131 |
#define NOT_MANAGEMENT_RETURN_(code) { return code; } |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
132 |
#endif // INCLUDE_MANAGEMENT |
1 | 133 |
|
49982 | 134 |
#ifndef INCLUDE_CMSGC |
135 |
#define INCLUDE_CMSGC 1 |
|
136 |
#endif // INCLUDE_CMSGC |
|
137 |
||
138 |
#if INCLUDE_CMSGC |
|
139 |
#define CMSGC_ONLY(x) x |
|
140 |
#define CMSGC_ONLY_ARG(arg) arg, |
|
141 |
#define NOT_CMSGC(x) |
|
142 |
#define NOT_CMSGC_RETURN /* next token must be ; */ |
|
143 |
#define NOT_CMSGC_RETURN_(code) /* next token must be ; */ |
|
144 |
#else |
|
145 |
#define CMSGC_ONLY(x) |
|
146 |
#define CMSGC_ONLY_ARG(x) |
|
147 |
#define NOT_CMSGC(x) x |
|
148 |
#define NOT_CMSGC_RETURN {} |
|
149 |
#define NOT_CMSGC_RETURN_(code) { return code; } |
|
150 |
#endif // INCLUDE_CMSGC |
|
151 |
||
50523
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
152 |
#ifndef INCLUDE_EPSILONGC |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
153 |
#define INCLUDE_EPSILONGC 1 |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
154 |
#endif // INCLUDE_EPSILONGC |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
155 |
|
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
156 |
#if INCLUDE_EPSILONGC |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
157 |
#define EPSILONGC_ONLY(x) x |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
158 |
#define EPSILONGC_ONLY_ARG(arg) arg, |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
159 |
#define NOT_EPSILONGC(x) |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
160 |
#define NOT_EPSILONGC_RETURN /* next token must be ; */ |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
161 |
#define NOT_EPSILONGC_RETURN_(code) /* next token must be ; */ |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
162 |
#else |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
163 |
#define EPSILONGC_ONLY(x) |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
164 |
#define EPSILONGC_ONLY_ARG(arg) |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
165 |
#define NOT_EPSILONGC(x) x |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
166 |
#define NOT_EPSILONGC_RETURN {} |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
167 |
#define NOT_EPSILONGC_RETURN_(code) { return code; } |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
168 |
#endif // INCLUDE_EPSILONGC |
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50113
diff
changeset
|
169 |
|
49982 | 170 |
#ifndef INCLUDE_G1GC |
171 |
#define INCLUDE_G1GC 1 |
|
172 |
#endif // INCLUDE_G1GC |
|
173 |
||
174 |
#if INCLUDE_G1GC |
|
175 |
#define G1GC_ONLY(x) x |
|
176 |
#define G1GC_ONLY_ARG(arg) arg, |
|
177 |
#define NOT_G1GC(x) |
|
178 |
#define NOT_G1GC_RETURN /* next token must be ; */ |
|
179 |
#define NOT_G1GC_RETURN_(code) /* next token must be ; */ |
|
180 |
#else |
|
181 |
#define G1GC_ONLY(x) |
|
182 |
#define G1GC_ONLY_ARG(arg) |
|
183 |
#define NOT_G1GC(x) x |
|
184 |
#define NOT_G1GC_RETURN {} |
|
185 |
#define NOT_G1GC_RETURN_(code) { return code; } |
|
186 |
#endif // INCLUDE_G1GC |
|
187 |
||
188 |
#ifndef INCLUDE_PARALLELGC |
|
189 |
#define INCLUDE_PARALLELGC 1 |
|
190 |
#endif // INCLUDE_PARALLELGC |
|
1 | 191 |
|
49982 | 192 |
#if INCLUDE_PARALLELGC |
193 |
#define PARALLELGC_ONLY(x) x |
|
194 |
#define PARALLELGC_ONLY_ARG(arg) arg, |
|
195 |
#define NOT_PARALLELGC(x) |
|
196 |
#define NOT_PARALLELGC_RETURN /* next token must be ; */ |
|
197 |
#define NOT_PARALLELGC_RETURN_(code) /* next token must be ; */ |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
198 |
#else |
49982 | 199 |
#define PARALLELGC_ONLY(x) |
200 |
#define PARALLELGC_ONLY_ARG(arg) |
|
201 |
#define NOT_PARALLELGC(x) x |
|
202 |
#define NOT_PARALLELGC_RETURN {} |
|
203 |
#define NOT_PARALLELGC_RETURN_(code) { return code; } |
|
204 |
#endif // INCLUDE_PARALLELGC |
|
205 |
||
206 |
#ifndef INCLUDE_SERIALGC |
|
207 |
#define INCLUDE_SERIALGC 1 |
|
208 |
#endif // INCLUDE_SERIALGC |
|
209 |
||
210 |
#if INCLUDE_SERIALGC |
|
211 |
#define SERIALGC_ONLY(x) x |
|
212 |
#define SERIALGC_ONLY_ARG(arg) arg, |
|
213 |
#define NOT_SERIALGC(x) |
|
214 |
#define NOT_SERIALGC_RETURN /* next token must be ; */ |
|
215 |
#define NOT_SERIALGC_RETURN_(code) /* next token must be ; */ |
|
216 |
#else |
|
217 |
#define SERIALGC_ONLY(x) |
|
218 |
#define SERIALGC_ONLY_ARG(arg) |
|
219 |
#define NOT_SERIALGC(x) x |
|
220 |
#define NOT_SERIALGC_RETURN {} |
|
221 |
#define NOT_SERIALGC_RETURN_(code) { return code; } |
|
222 |
#endif // INCLUDE_SERIALGC |
|
223 |
||
50525
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
224 |
#ifndef INCLUDE_ZGC |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
225 |
#define INCLUDE_ZGC 1 |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
226 |
#endif // INCLUDE_ZGC |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
227 |
|
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
228 |
#if INCLUDE_ZGC |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
229 |
#define ZGC_ONLY(x) x |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
230 |
#define ZGC_ONLY_ARG(arg) arg, |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
231 |
#define NOT_ZGC(x) |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
232 |
#define NOT_ZGC_RETURN /* next token must be ; */ |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
233 |
#define NOT_ZGC_RETURN_(code) /* next token must be ; */ |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
234 |
#else |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
235 |
#define ZGC_ONLY(x) |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
236 |
#define ZGC_ONLY_ARG(arg) |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
237 |
#define NOT_ZGC(x) x |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
238 |
#define NOT_ZGC_RETURN {} |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
239 |
#define NOT_ZGC_RETURN_(code) { return code; } |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
240 |
#endif // INCLUDE_ZGC |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
241 |
|
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
242 |
#if INCLUDE_CMSGC || INCLUDE_EPSILONGC || INCLUDE_G1GC || INCLUDE_PARALLELGC || INCLUDE_ZGC |
49982 | 243 |
#define INCLUDE_NOT_ONLY_SERIALGC 1 |
244 |
#else |
|
245 |
#define INCLUDE_NOT_ONLY_SERIALGC 0 |
|
246 |
#endif |
|
247 |
||
248 |
#define INCLUDE_OOP_OOP_ITERATE_BACKWARDS INCLUDE_NOT_ONLY_SERIALGC |
|
1 | 249 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
250 |
#ifndef INCLUDE_NMT |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
251 |
#define INCLUDE_NMT 1 |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
252 |
#endif // INCLUDE_NMT |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
253 |
|
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
254 |
#if INCLUDE_NMT |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
255 |
#define NOT_NMT_RETURN /* next token must be ; */ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
256 |
#define NOT_NMT_RETURN_(code) /* next token must be ; */ |
50021
b8308d6356e7
8202684: Minimal VM build is broken after JDK-8199067, JDK-8202638
shade
parents:
49982
diff
changeset
|
257 |
#define NMT_ONLY(x) x |
b8308d6356e7
8202684: Minimal VM build is broken after JDK-8199067, JDK-8202638
shade
parents:
49982
diff
changeset
|
258 |
#define NOT_NMT(x) |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
259 |
#else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
260 |
#define NOT_NMT_RETURN {} |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
261 |
#define NOT_NMT_RETURN_(code) { return code; } |
50021
b8308d6356e7
8202684: Minimal VM build is broken after JDK-8199067, JDK-8202638
shade
parents:
49982
diff
changeset
|
262 |
#define NMT_ONLY(x) |
b8308d6356e7
8202684: Minimal VM build is broken after JDK-8199067, JDK-8202638
shade
parents:
49982
diff
changeset
|
263 |
#define NOT_NMT(x) x |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
10565
diff
changeset
|
264 |
#endif // INCLUDE_NMT |
1 | 265 |
|
50113 | 266 |
#ifndef INCLUDE_JFR |
267 |
#define INCLUDE_JFR 1 |
|
268 |
#endif |
|
269 |
||
270 |
#if INCLUDE_JFR |
|
271 |
#define JFR_ONLY(code) code |
|
272 |
#else |
|
273 |
#define JFR_ONLY(code) |
|
274 |
#endif |
|
18025 | 275 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31340
diff
changeset
|
276 |
#ifndef INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31340
diff
changeset
|
277 |
#define INCLUDE_JVMCI 1 |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31340
diff
changeset
|
278 |
#endif |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31340
diff
changeset
|
279 |
|
49972
37b2446d7f86
8202552: [AOT][JVMCI] Incorrect usage of INCLUDE_JVMCI and INCLUDE_AOT
kvn
parents:
49906
diff
changeset
|
280 |
#ifndef INCLUDE_AOT |
37b2446d7f86
8202552: [AOT][JVMCI] Incorrect usage of INCLUDE_JVMCI and INCLUDE_AOT
kvn
parents:
49906
diff
changeset
|
281 |
#define INCLUDE_AOT 1 |
37b2446d7f86
8202552: [AOT][JVMCI] Incorrect usage of INCLUDE_JVMCI and INCLUDE_AOT
kvn
parents:
49906
diff
changeset
|
282 |
#endif |
37b2446d7f86
8202552: [AOT][JVMCI] Incorrect usage of INCLUDE_JVMCI and INCLUDE_AOT
kvn
parents:
49906
diff
changeset
|
283 |
|
37b2446d7f86
8202552: [AOT][JVMCI] Incorrect usage of INCLUDE_JVMCI and INCLUDE_AOT
kvn
parents:
49906
diff
changeset
|
284 |
#if INCLUDE_AOT && !INCLUDE_JVMCI |
37b2446d7f86
8202552: [AOT][JVMCI] Incorrect usage of INCLUDE_JVMCI and INCLUDE_AOT
kvn
parents:
49906
diff
changeset
|
285 |
# error "Must have JVMCI for AOT" |
42650 | 286 |
#endif |
287 |
||
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31340
diff
changeset
|
288 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31340
diff
changeset
|
289 |
#define JVMCI_ONLY(code) code |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31340
diff
changeset
|
290 |
#define NOT_JVMCI(code) |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31340
diff
changeset
|
291 |
#define NOT_JVMCI_RETURN /* next token must be ; */ |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31340
diff
changeset
|
292 |
#else |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31340
diff
changeset
|
293 |
#define JVMCI_ONLY(code) |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31340
diff
changeset
|
294 |
#define NOT_JVMCI(code) code |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31340
diff
changeset
|
295 |
#define NOT_JVMCI_RETURN {} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31340
diff
changeset
|
296 |
#endif // INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31340
diff
changeset
|
297 |
|
42650 | 298 |
#if INCLUDE_AOT |
299 |
#define AOT_ONLY(code) code |
|
300 |
#define NOT_AOT(code) |
|
301 |
#define NOT_AOT_RETURN /* next token must be ; */ |
|
302 |
#else |
|
303 |
#define AOT_ONLY(code) |
|
304 |
#define NOT_AOT(code) code |
|
305 |
#define NOT_AOT_RETURN {} |
|
306 |
#endif // INCLUDE_AOT |
|
307 |
||
1 | 308 |
// COMPILER1 variant |
309 |
#ifdef COMPILER1 |
|
310 |
#ifdef COMPILER2 |
|
311 |
#define TIERED |
|
312 |
#endif |
|
313 |
#define COMPILER1_PRESENT(code) code |
|
49906 | 314 |
#define NOT_COMPILER1(code) |
1 | 315 |
#else // COMPILER1 |
316 |
#define COMPILER1_PRESENT(code) |
|
49906 | 317 |
#define NOT_COMPILER1(code) code |
1 | 318 |
#endif // COMPILER1 |
319 |
||
320 |
// COMPILER2 variant |
|
321 |
#ifdef COMPILER2 |
|
322 |
#define COMPILER2_PRESENT(code) code |
|
1606
dcf9714addbe
6684579: SoftReference processing can be made more efficient
ysr
parents:
1217
diff
changeset
|
323 |
#define NOT_COMPILER2(code) |
1 | 324 |
#else // COMPILER2 |
325 |
#define COMPILER2_PRESENT(code) |
|
1606
dcf9714addbe
6684579: SoftReference processing can be made more efficient
ysr
parents:
1217
diff
changeset
|
326 |
#define NOT_COMPILER2(code) code |
1 | 327 |
#endif // COMPILER2 |
328 |
||
37272
c427db4ea8c4
8148639: Some MethodCounter fields can be excluded when not including C2
cjplummer
parents:
36350
diff
changeset
|
329 |
// COMPILER2 or JVMCI |
c427db4ea8c4
8148639: Some MethodCounter fields can be excluded when not including C2
cjplummer
parents:
36350
diff
changeset
|
330 |
#if defined(COMPILER2) || INCLUDE_JVMCI |
c427db4ea8c4
8148639: Some MethodCounter fields can be excluded when not including C2
cjplummer
parents:
36350
diff
changeset
|
331 |
#define COMPILER2_OR_JVMCI 1 |
c427db4ea8c4
8148639: Some MethodCounter fields can be excluded when not including C2
cjplummer
parents:
36350
diff
changeset
|
332 |
#define COMPILER2_OR_JVMCI_PRESENT(code) code |
c427db4ea8c4
8148639: Some MethodCounter fields can be excluded when not including C2
cjplummer
parents:
36350
diff
changeset
|
333 |
#define NOT_COMPILER2_OR_JVMCI(code) |
c427db4ea8c4
8148639: Some MethodCounter fields can be excluded when not including C2
cjplummer
parents:
36350
diff
changeset
|
334 |
#else |
c427db4ea8c4
8148639: Some MethodCounter fields can be excluded when not including C2
cjplummer
parents:
36350
diff
changeset
|
335 |
#define COMPILER2_OR_JVMCI 0 |
c427db4ea8c4
8148639: Some MethodCounter fields can be excluded when not including C2
cjplummer
parents:
36350
diff
changeset
|
336 |
#define COMPILER2_OR_JVMCI_PRESENT(code) |
c427db4ea8c4
8148639: Some MethodCounter fields can be excluded when not including C2
cjplummer
parents:
36350
diff
changeset
|
337 |
#define NOT_COMPILER2_OR_JVMCI(code) code |
c427db4ea8c4
8148639: Some MethodCounter fields can be excluded when not including C2
cjplummer
parents:
36350
diff
changeset
|
338 |
#endif |
c427db4ea8c4
8148639: Some MethodCounter fields can be excluded when not including C2
cjplummer
parents:
36350
diff
changeset
|
339 |
|
6453 | 340 |
#ifdef TIERED |
341 |
#define TIERED_ONLY(code) code |
|
342 |
#define NOT_TIERED(code) |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31340
diff
changeset
|
343 |
#else // TIERED |
6453 | 344 |
#define TIERED_ONLY(code) |
345 |
#define NOT_TIERED(code) code |
|
346 |
#endif // TIERED |
|
347 |
||
1 | 348 |
|
349 |
// PRODUCT variant |
|
350 |
#ifdef PRODUCT |
|
351 |
#define PRODUCT_ONLY(code) code |
|
352 |
#define NOT_PRODUCT(code) |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
353 |
#define NOT_PRODUCT_ARG(arg) |
1 | 354 |
#define PRODUCT_RETURN {} |
355 |
#define PRODUCT_RETURN0 { return 0; } |
|
356 |
#define PRODUCT_RETURN_(code) { code } |
|
357 |
#else // PRODUCT |
|
358 |
#define PRODUCT_ONLY(code) |
|
359 |
#define NOT_PRODUCT(code) code |
|
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6187
diff
changeset
|
360 |
#define NOT_PRODUCT_ARG(arg) arg, |
1 | 361 |
#define PRODUCT_RETURN /*next token must be ;*/ |
362 |
#define PRODUCT_RETURN0 /*next token must be ;*/ |
|
363 |
#define PRODUCT_RETURN_(code) /*next token must be ;*/ |
|
364 |
#endif // PRODUCT |
|
365 |
||
366 |
#ifdef CHECK_UNHANDLED_OOPS |
|
367 |
#define CHECK_UNHANDLED_OOPS_ONLY(code) code |
|
368 |
#define NOT_CHECK_UNHANDLED_OOPS(code) |
|
369 |
#else |
|
370 |
#define CHECK_UNHANDLED_OOPS_ONLY(code) |
|
371 |
#define NOT_CHECK_UNHANDLED_OOPS(code) code |
|
372 |
#endif // CHECK_UNHANDLED_OOPS |
|
373 |
||
374 |
#ifdef CC_INTERP |
|
375 |
#define CC_INTERP_ONLY(code) code |
|
376 |
#define NOT_CC_INTERP(code) |
|
377 |
#else |
|
378 |
#define CC_INTERP_ONLY(code) |
|
379 |
#define NOT_CC_INTERP(code) code |
|
380 |
#endif // CC_INTERP |
|
381 |
||
382 |
#ifdef ASSERT |
|
383 |
#define DEBUG_ONLY(code) code |
|
384 |
#define NOT_DEBUG(code) |
|
2998
b501bd305780
6849716: BitMap - performance regression introduced with G1
jcoomes
parents:
1606
diff
changeset
|
385 |
#define NOT_DEBUG_RETURN /*next token must be ;*/ |
1 | 386 |
// Historical. |
387 |
#define debug_only(code) code |
|
388 |
#else // ASSERT |
|
389 |
#define DEBUG_ONLY(code) |
|
390 |
#define NOT_DEBUG(code) code |
|
2998
b501bd305780
6849716: BitMap - performance regression introduced with G1
jcoomes
parents:
1606
diff
changeset
|
391 |
#define NOT_DEBUG_RETURN {} |
1 | 392 |
#define debug_only(code) |
393 |
#endif // ASSERT |
|
394 |
||
395 |
#ifdef _LP64 |
|
396 |
#define LP64_ONLY(code) code |
|
397 |
#define NOT_LP64(code) |
|
398 |
#else // !_LP64 |
|
399 |
#define LP64_ONLY(code) |
|
400 |
#define NOT_LP64(code) code |
|
401 |
#endif // _LP64 |
|
402 |
||
403 |
#ifdef LINUX |
|
404 |
#define LINUX_ONLY(code) code |
|
405 |
#define NOT_LINUX(code) |
|
406 |
#else |
|
407 |
#define LINUX_ONLY(code) |
|
408 |
#define NOT_LINUX(code) code |
|
409 |
#endif |
|
410 |
||
22827 | 411 |
#ifdef AIX |
412 |
#define AIX_ONLY(code) code |
|
413 |
#define NOT_AIX(code) |
|
414 |
#else |
|
415 |
#define AIX_ONLY(code) |
|
416 |
#define NOT_AIX(code) code |
|
417 |
#endif |
|
418 |
||
1 | 419 |
#ifdef SOLARIS |
420 |
#define SOLARIS_ONLY(code) code |
|
421 |
#define NOT_SOLARIS(code) |
|
422 |
#else |
|
423 |
#define SOLARIS_ONLY(code) |
|
424 |
#define NOT_SOLARIS(code) code |
|
425 |
#endif |
|
426 |
||
427 |
#ifdef _WINDOWS |
|
428 |
#define WINDOWS_ONLY(code) code |
|
429 |
#define NOT_WINDOWS(code) |
|
430 |
#else |
|
431 |
#define WINDOWS_ONLY(code) |
|
432 |
#define NOT_WINDOWS(code) code |
|
433 |
#endif |
|
434 |
||
10565 | 435 |
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__APPLE__) |
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47687
diff
changeset
|
436 |
#ifndef BSD |
40010 | 437 |
#define BSD |
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47687
diff
changeset
|
438 |
#endif // BSD defined in <sys/param.h> |
10565 | 439 |
#define BSD_ONLY(code) code |
440 |
#define NOT_BSD(code) |
|
441 |
#else |
|
442 |
#define BSD_ONLY(code) |
|
443 |
#define NOT_BSD(code) code |
|
444 |
#endif |
|
445 |
||
8495
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8110
diff
changeset
|
446 |
#ifdef _WIN64 |
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8110
diff
changeset
|
447 |
#define WIN64_ONLY(code) code |
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8110
diff
changeset
|
448 |
#define NOT_WIN64(code) |
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8110
diff
changeset
|
449 |
#else |
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8110
diff
changeset
|
450 |
#define WIN64_ONLY(code) |
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8110
diff
changeset
|
451 |
#define NOT_WIN64(code) code |
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8110
diff
changeset
|
452 |
#endif |
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8110
diff
changeset
|
453 |
|
14294 | 454 |
#if defined(ZERO) |
455 |
#define ZERO_ONLY(code) code |
|
456 |
#define NOT_ZERO(code) |
|
457 |
#else |
|
458 |
#define ZERO_ONLY(code) |
|
459 |
#define NOT_ZERO(code) code |
|
460 |
#endif |
|
461 |
||
1066 | 462 |
#if defined(IA32) || defined(AMD64) |
463 |
#define X86 |
|
464 |
#define X86_ONLY(code) code |
|
6187 | 465 |
#define NOT_X86(code) |
1066 | 466 |
#else |
467 |
#undef X86 |
|
468 |
#define X86_ONLY(code) |
|
6187 | 469 |
#define NOT_X86(code) code |
1066 | 470 |
#endif |
471 |
||
1 | 472 |
#ifdef IA32 |
473 |
#define IA32_ONLY(code) code |
|
474 |
#define NOT_IA32(code) |
|
475 |
#else |
|
476 |
#define IA32_ONLY(code) |
|
477 |
#define NOT_IA32(code) code |
|
478 |
#endif |
|
479 |
||
22819
f88b9c394e42
8019973: PPC64 (part 11): Fix IA64 preprocessor conditionals on AIX.
goetz
parents:
22808
diff
changeset
|
480 |
// This is a REALLY BIG HACK, but on AIX <sys/systemcfg.h> unconditionally defines IA64. |
f88b9c394e42
8019973: PPC64 (part 11): Fix IA64 preprocessor conditionals on AIX.
goetz
parents:
22808
diff
changeset
|
481 |
// At least on AIX 7.1 this is a real problem because 'systemcfg.h' is indirectly included |
f88b9c394e42
8019973: PPC64 (part 11): Fix IA64 preprocessor conditionals on AIX.
goetz
parents:
22808
diff
changeset
|
482 |
// by 'pthread.h' and other common system headers. |
f88b9c394e42
8019973: PPC64 (part 11): Fix IA64 preprocessor conditionals on AIX.
goetz
parents:
22808
diff
changeset
|
483 |
|
f88b9c394e42
8019973: PPC64 (part 11): Fix IA64 preprocessor conditionals on AIX.
goetz
parents:
22808
diff
changeset
|
484 |
#if defined(IA64) && !defined(AIX) |
1 | 485 |
#define IA64_ONLY(code) code |
486 |
#define NOT_IA64(code) |
|
487 |
#else |
|
488 |
#define IA64_ONLY(code) |
|
489 |
#define NOT_IA64(code) code |
|
490 |
#endif |
|
491 |
||
492 |
#ifdef AMD64 |
|
493 |
#define AMD64_ONLY(code) code |
|
494 |
#define NOT_AMD64(code) |
|
495 |
#else |
|
496 |
#define AMD64_ONLY(code) |
|
497 |
#define NOT_AMD64(code) code |
|
498 |
#endif |
|
499 |
||
42062 | 500 |
#ifdef S390 |
501 |
#define S390_ONLY(code) code |
|
502 |
#define NOT_S390(code) |
|
503 |
#else |
|
504 |
#define S390_ONLY(code) |
|
505 |
#define NOT_S390(code) code |
|
506 |
#endif |
|
507 |
||
1 | 508 |
#ifdef SPARC |
509 |
#define SPARC_ONLY(code) code |
|
510 |
#define NOT_SPARC(code) |
|
511 |
#else |
|
512 |
#define SPARC_ONLY(code) |
|
513 |
#define NOT_SPARC(code) code |
|
514 |
#endif |
|
515 |
||
22806 | 516 |
#if defined(PPC32) || defined(PPC64) |
517 |
#ifndef PPC |
|
518 |
#define PPC |
|
519 |
#endif |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
520 |
#define PPC_ONLY(code) code |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
521 |
#define NOT_PPC(code) |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
522 |
#else |
22806 | 523 |
#undef PPC |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
524 |
#define PPC_ONLY(code) |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
525 |
#define NOT_PPC(code) code |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
526 |
#endif |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
527 |
|
22806 | 528 |
#ifdef PPC32 |
529 |
#define PPC32_ONLY(code) code |
|
530 |
#define NOT_PPC32(code) |
|
531 |
#else |
|
532 |
#define PPC32_ONLY(code) |
|
533 |
#define NOT_PPC32(code) code |
|
534 |
#endif |
|
535 |
||
536 |
#ifdef PPC64 |
|
537 |
#define PPC64_ONLY(code) code |
|
538 |
#define NOT_PPC64(code) |
|
539 |
#else |
|
540 |
#define PPC64_ONLY(code) |
|
541 |
#define NOT_PPC64(code) code |
|
542 |
#endif |
|
543 |
||
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
544 |
#ifdef E500V2 |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
545 |
#define E500V2_ONLY(code) code |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
546 |
#define NOT_E500V2(code) |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
547 |
#else |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
548 |
#define E500V2_ONLY(code) |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
549 |
#define NOT_E500V2(code) code |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
550 |
#endif |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
551 |
|
40010 | 552 |
// Note: There are three ARM ports. They set the following in the makefiles: |
553 |
// 1. Closed 32-bit port: -DARM -DARM32 -DTARGET_ARCH_arm |
|
554 |
// 2. Closed 64-bit port: -DARM -DAARCH64 -D_LP64 -DTARGET_ARCH_arm |
|
555 |
// 3. Open 64-bit port: -DAARCH64 -D_LP64 -DTARGET_ARCH_aaarch64 |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
556 |
#ifdef ARM |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
557 |
#define ARM_ONLY(code) code |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
558 |
#define NOT_ARM(code) |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
559 |
#else |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
560 |
#define ARM_ONLY(code) |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
561 |
#define NOT_ARM(code) code |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
562 |
#endif |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
563 |
|
29474
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
29180
diff
changeset
|
564 |
#ifdef ARM32 |
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
29180
diff
changeset
|
565 |
#define ARM32_ONLY(code) code |
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
29180
diff
changeset
|
566 |
#define NOT_ARM32(code) |
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
29180
diff
changeset
|
567 |
#else |
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
29180
diff
changeset
|
568 |
#define ARM32_ONLY(code) |
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
29180
diff
changeset
|
569 |
#define NOT_ARM32(code) code |
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
29180
diff
changeset
|
570 |
#endif |
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
29180
diff
changeset
|
571 |
|
29180 | 572 |
#ifdef AARCH64 |
573 |
#define AARCH64_ONLY(code) code |
|
574 |
#define NOT_AARCH64(code) |
|
575 |
#else |
|
576 |
#define AARCH64_ONLY(code) |
|
577 |
#define NOT_AARCH64(code) code |
|
578 |
#endif |
|
579 |
||
1 | 580 |
#define define_pd_global(type, name, value) const type pd_##name = value; |
7397 | 581 |
|
40010 | 582 |
// Helper macros for constructing file names for includes. |
583 |
#define CPU_HEADER_STEM(basename) PASTE_TOKENS(basename, INCLUDE_SUFFIX_CPU) |
|
584 |
#define OS_HEADER_STEM(basename) PASTE_TOKENS(basename, INCLUDE_SUFFIX_OS) |
|
585 |
#define OS_CPU_HEADER_STEM(basename) PASTE_TOKENS(basename, PASTE_TOKENS(INCLUDE_SUFFIX_OS, INCLUDE_SUFFIX_CPU)) |
|
46560
388aa8d67c80
8181449: Fix debug.hpp / globalDefinitions.hpp dependency inversion
kbarrett
parents:
42650
diff
changeset
|
586 |
#define COMPILER_HEADER_STEM(basename) PASTE_TOKENS(basename, INCLUDE_SUFFIX_COMPILER) |
40010 | 587 |
|
588 |
// Include platform dependent files. |
|
589 |
// |
|
590 |
// This macro constructs from basename and INCLUDE_SUFFIX_OS / |
|
46560
388aa8d67c80
8181449: Fix debug.hpp / globalDefinitions.hpp dependency inversion
kbarrett
parents:
42650
diff
changeset
|
591 |
// INCLUDE_SUFFIX_CPU / INCLUDE_SUFFIX_COMPILER, which are set on |
388aa8d67c80
8181449: Fix debug.hpp / globalDefinitions.hpp dependency inversion
kbarrett
parents:
42650
diff
changeset
|
592 |
// the command line, the name of platform dependent files to be included. |
40010 | 593 |
// Example: INCLUDE_SUFFIX_OS=_linux / INCLUDE_SUFFIX_CPU=_sparc |
594 |
// CPU_HEADER_INLINE(macroAssembler) --> macroAssembler_sparc.inline.hpp |
|
595 |
// OS_CPU_HEADER(vmStructs) --> vmStructs_linux_sparc.hpp |
|
596 |
// |
|
597 |
// basename<cpu>.hpp / basename<cpu>.inline.hpp |
|
598 |
#define CPU_HEADER_H(basename) XSTR(CPU_HEADER_STEM(basename).h) |
|
599 |
#define CPU_HEADER(basename) XSTR(CPU_HEADER_STEM(basename).hpp) |
|
600 |
#define CPU_HEADER_INLINE(basename) XSTR(CPU_HEADER_STEM(basename).inline.hpp) |
|
601 |
// basename<os>.hpp / basename<os>.inline.hpp |
|
602 |
#define OS_HEADER_H(basename) XSTR(OS_HEADER_STEM(basename).h) |
|
603 |
#define OS_HEADER(basename) XSTR(OS_HEADER_STEM(basename).hpp) |
|
604 |
#define OS_HEADER_INLINE(basename) XSTR(OS_HEADER_STEM(basename).inline.hpp) |
|
605 |
// basename<os><cpu>.hpp / basename<os><cpu>.inline.hpp |
|
606 |
#define OS_CPU_HEADER(basename) XSTR(OS_CPU_HEADER_STEM(basename).hpp) |
|
607 |
#define OS_CPU_HEADER_INLINE(basename) XSTR(OS_CPU_HEADER_STEM(basename).inline.hpp) |
|
46560
388aa8d67c80
8181449: Fix debug.hpp / globalDefinitions.hpp dependency inversion
kbarrett
parents:
42650
diff
changeset
|
608 |
// basename<compiler>.hpp / basename<compiler>.inline.hpp |
388aa8d67c80
8181449: Fix debug.hpp / globalDefinitions.hpp dependency inversion
kbarrett
parents:
42650
diff
changeset
|
609 |
#define COMPILER_HEADER(basename) XSTR(COMPILER_HEADER_STEM(basename).hpp) |
388aa8d67c80
8181449: Fix debug.hpp / globalDefinitions.hpp dependency inversion
kbarrett
parents:
42650
diff
changeset
|
610 |
#define COMPILER_HEADER_INLINE(basename) XSTR(COMPILER_HEADER_STEM(basename).inline.hpp) |
40010 | 611 |
|
40655
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
612 |
// To use Atomic::inc(jshort* dest) and Atomic::dec(jshort* dest), the address must be specially |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
613 |
// aligned, such that (*dest) occupies the upper 16 bits of an aligned 32-bit word. The best way to |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
614 |
// achieve is to place your short value next to another short value, which doesn't need atomic ops. |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
615 |
// |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
616 |
// Example |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
617 |
// ATOMIC_SHORT_PAIR( |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
618 |
// volatile short _refcount, // needs atomic operation |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
619 |
// unsigned short _length // number of UTF8 characters in the symbol (does not need atomic op) |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
620 |
// ); |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
621 |
|
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
622 |
#ifdef VM_LITTLE_ENDIAN |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
623 |
#define ATOMIC_SHORT_PAIR(atomic_decl, non_atomic_decl) \ |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
624 |
non_atomic_decl; \ |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
625 |
atomic_decl |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
626 |
#else |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
627 |
#define ATOMIC_SHORT_PAIR(atomic_decl, non_atomic_decl) \ |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
628 |
atomic_decl; \ |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
629 |
non_atomic_decl |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
630 |
#endif |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40015
diff
changeset
|
631 |
|
49982 | 632 |
#if INCLUDE_CDS && INCLUDE_G1GC && defined(_LP64) && !defined(_WINDOWS) |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46560
diff
changeset
|
633 |
#define INCLUDE_CDS_JAVA_HEAP 1 |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46560
diff
changeset
|
634 |
#define CDS_JAVA_HEAP_ONLY(x) x |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46560
diff
changeset
|
635 |
#define NOT_CDS_JAVA_HEAP(x) |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46560
diff
changeset
|
636 |
#define NOT_CDS_JAVA_HEAP_RETURN |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46560
diff
changeset
|
637 |
#define NOT_CDS_JAVA_HEAP_RETURN_(code) |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46560
diff
changeset
|
638 |
#else |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46560
diff
changeset
|
639 |
#define INCLUDE_CDS_JAVA_HEAP 0 |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46560
diff
changeset
|
640 |
#define CDS_JAVA_HEAP_ONLY(x) |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46560
diff
changeset
|
641 |
#define NOT_CDS_JAVA_HEAP(x) x |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46560
diff
changeset
|
642 |
#define NOT_CDS_JAVA_HEAP_RETURN {} |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46560
diff
changeset
|
643 |
#define NOT_CDS_JAVA_HEAP_RETURN_(code) { return code; } |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46560
diff
changeset
|
644 |
#endif |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46560
diff
changeset
|
645 |
|
7397 | 646 |
#endif // SHARE_VM_UTILITIES_MACROS_HPP |