1 /*
2  * Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
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  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  *
23  */
24 
25 #ifndef SHARE_UTILITIES_MACROS_HPP
26 #define SHARE_UTILITIES_MACROS_HPP
27 
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 
37 // Allow commas in macro arguments.
38 #define COMMA ,
39 
40 // Apply pre-processor token pasting to the expansions of x and y.
41 // The token pasting operator (##) prevents its arguments from being
42 // expanded.  This macro allows expansion of its arguments before the
43 // concatenation is performed.  Note: One auxilliary level ought to be
44 // sufficient, but two are used because of bugs in some preprocesors.
45 #define PASTE_TOKENS(x, y) PASTE_TOKENS_AUX(x, y)
46 #define PASTE_TOKENS_AUX(x, y) PASTE_TOKENS_AUX2(x, y)
47 #define PASTE_TOKENS_AUX2(x, y) x ## y
48 
49 // -DINCLUDE_<something>=0 | 1 can be specified on the command line to include
50 // or exclude functionality.
51 
52 #ifndef INCLUDE_JVMTI
53 #define INCLUDE_JVMTI 1
54 #endif  // INCLUDE_JVMTI
55 
56 #if INCLUDE_JVMTI
57 #define JVMTI_ONLY(x) x
58 #define NOT_JVMTI(x)
59 #define NOT_JVMTI_RETURN
60 #define NOT_JVMTI_RETURN_(code) /* next token must be ; */
61 #else
62 #define JVMTI_ONLY(x)
63 #define NOT_JVMTI(x) x
64 #define NOT_JVMTI_RETURN { return; }
65 #define NOT_JVMTI_RETURN_(code) { return code; }
66 #endif // INCLUDE_JVMTI
67 
68 #ifndef INCLUDE_VM_STRUCTS
69 #define INCLUDE_VM_STRUCTS 1
70 #endif
71 
72 #if INCLUDE_VM_STRUCTS
73 #define NOT_VM_STRUCTS_RETURN        /* next token must be ; */
74 #define NOT_VM_STRUCTS_RETURN_(code) /* next token must be ; */
75 #else
76 #define NOT_VM_STRUCTS_RETURN           {}
77 #define NOT_VM_STRUCTS_RETURN_(code) { return code; }
78 #endif // INCLUDE_VM_STRUCTS
79 
80 #ifndef INCLUDE_JNI_CHECK
81 #define INCLUDE_JNI_CHECK 1
82 #endif
83 
84 #if INCLUDE_JNI_CHECK
85 #define NOT_JNI_CHECK_RETURN        /* next token must be ; */
86 #define NOT_JNI_CHECK_RETURN_(code) /* next token must be ; */
87 #else
88 #define NOT_JNI_CHECK_RETURN            {}
89 #define NOT_JNI_CHECK_RETURN_(code) { return code; }
90 #endif // INCLUDE_JNI_CHECK
91 
92 #ifndef INCLUDE_SERVICES
93 #define INCLUDE_SERVICES 1
94 #endif
95 
96 #if INCLUDE_SERVICES
97 #define NOT_SERVICES_RETURN        /* next token must be ; */
98 #define NOT_SERVICES_RETURN_(code) /* next token must be ; */
99 #else
100 #define NOT_SERVICES_RETURN             {}
101 #define NOT_SERVICES_RETURN_(code) { return code; }
102 #endif // INCLUDE_SERVICES
103 
104 #ifndef INCLUDE_CDS
105 #define INCLUDE_CDS 1
106 #endif
107 
108 #if INCLUDE_CDS
109 #define CDS_ONLY(x) x
110 #define NOT_CDS(x)
111 #define NOT_CDS_RETURN        /* next token must be ; */
112 #define NOT_CDS_RETURN0       /* next token must be ; */
113 #define NOT_CDS_RETURN_(code) /* next token must be ; */
114 #else
115 #define CDS_ONLY(x)
116 #define NOT_CDS(x) x
117 #define NOT_CDS_RETURN        {}
118 #define NOT_CDS_RETURN0       { return 0; }
119 #define NOT_CDS_RETURN_(code) { return code; }
120 #endif // INCLUDE_CDS
121 
122 #ifndef INCLUDE_MANAGEMENT
123 #define INCLUDE_MANAGEMENT 1
124 #endif // INCLUDE_MANAGEMENT
125 
126 #if INCLUDE_MANAGEMENT
127 #define NOT_MANAGEMENT_RETURN        /* next token must be ; */
128 #define NOT_MANAGEMENT_RETURN_(code) /* next token must be ; */
129 #else
130 #define NOT_MANAGEMENT_RETURN        {}
131 #define NOT_MANAGEMENT_RETURN_(code) { return code; }
132 #endif // INCLUDE_MANAGEMENT
133 
134 #ifndef INCLUDE_EPSILONGC
135 #define INCLUDE_EPSILONGC 1
136 #endif // INCLUDE_EPSILONGC
137 
138 #if INCLUDE_EPSILONGC
139 #define EPSILONGC_ONLY(x) x
140 #define EPSILONGC_ONLY_ARG(arg) arg,
141 #define NOT_EPSILONGC(x)
142 #define NOT_EPSILONGC_RETURN        /* next token must be ; */
143 #define NOT_EPSILONGC_RETURN_(code) /* next token must be ; */
144 #else
145 #define EPSILONGC_ONLY(x)
146 #define EPSILONGC_ONLY_ARG(arg)
147 #define NOT_EPSILONGC(x) x
148 #define NOT_EPSILONGC_RETURN        {}
149 #define NOT_EPSILONGC_RETURN_(code) { return code; }
150 #endif // INCLUDE_EPSILONGC
151 
152 #ifndef INCLUDE_G1GC
153 #define INCLUDE_G1GC 1
154 #endif // INCLUDE_G1GC
155 
156 #if INCLUDE_G1GC
157 #define G1GC_ONLY(x) x
158 #define G1GC_ONLY_ARG(arg) arg,
159 #define NOT_G1GC(x)
160 #define NOT_G1GC_RETURN        /* next token must be ; */
161 #define NOT_G1GC_RETURN_(code) /* next token must be ; */
162 #else
163 #define G1GC_ONLY(x)
164 #define G1GC_ONLY_ARG(arg)
165 #define NOT_G1GC(x) x
166 #define NOT_G1GC_RETURN        {}
167 #define NOT_G1GC_RETURN_(code) { return code; }
168 #endif // INCLUDE_G1GC
169 
170 #ifndef INCLUDE_PARALLELGC
171 #define INCLUDE_PARALLELGC 1
172 #endif // INCLUDE_PARALLELGC
173 
174 #if INCLUDE_PARALLELGC
175 #define PARALLELGC_ONLY(x) x
176 #define PARALLELGC_ONLY_ARG(arg) arg,
177 #define NOT_PARALLELGC(x)
178 #define NOT_PARALLELGC_RETURN        /* next token must be ; */
179 #define NOT_PARALLELGC_RETURN_(code) /* next token must be ; */
180 #else
181 #define PARALLELGC_ONLY(x)
182 #define PARALLELGC_ONLY_ARG(arg)
183 #define NOT_PARALLELGC(x) x
184 #define NOT_PARALLELGC_RETURN        {}
185 #define NOT_PARALLELGC_RETURN_(code) { return code; }
186 #endif // INCLUDE_PARALLELGC
187 
188 #ifndef INCLUDE_SERIALGC
189 #define INCLUDE_SERIALGC 1
190 #endif // INCLUDE_SERIALGC
191 
192 #if INCLUDE_SERIALGC
193 #define SERIALGC_ONLY(x) x
194 #define SERIALGC_ONLY_ARG(arg) arg,
195 #define NOT_SERIALGC(x)
196 #define NOT_SERIALGC_RETURN        /* next token must be ; */
197 #define NOT_SERIALGC_RETURN_(code) /* next token must be ; */
198 #else
199 #define SERIALGC_ONLY(x)
200 #define SERIALGC_ONLY_ARG(arg)
201 #define NOT_SERIALGC(x) x
202 #define NOT_SERIALGC_RETURN        {}
203 #define NOT_SERIALGC_RETURN_(code) { return code; }
204 #endif // INCLUDE_SERIALGC
205 
206 #ifndef INCLUDE_SHENANDOAHGC
207 #define INCLUDE_SHENANDOAHGC 1
208 #endif // INCLUDE_SHENANDOAHGC
209 
210 #if INCLUDE_SHENANDOAHGC
211 #define SHENANDOAHGC_ONLY(x) x
212 #define SHENANDOAHGC_ONLY_ARG(arg) arg,
213 #define NOT_SHENANDOAHGC(x)
214 #define NOT_SHENANDOAHGC_RETURN        /* next token must be ; */
215 #define NOT_SHENANDOAHGC_RETURN_(code) /* next token must be ; */
216 #else
217 #define SHENANDOAHGC_ONLY(x)
218 #define SHENANDOAHGC_ONLY_ARG(arg)
219 #define NOT_SHENANDOAHGC(x) x
220 #define NOT_SHENANDOAHGC_RETURN        {}
221 #define NOT_SHENANDOAHGC_RETURN_(code) { return code; }
222 #endif // INCLUDE_SHENANDOAHGC
223 
224 #ifndef INCLUDE_ZGC
225 #define INCLUDE_ZGC 1
226 #endif // INCLUDE_ZGC
227 
228 #if INCLUDE_ZGC
229 #define ZGC_ONLY(x) x
230 #define ZGC_ONLY_ARG(arg) arg,
231 #define NOT_ZGC(x)
232 #define NOT_ZGC_RETURN        /* next token must be ; */
233 #define NOT_ZGC_RETURN_(code) /* next token must be ; */
234 #else
235 #define ZGC_ONLY(x)
236 #define ZGC_ONLY_ARG(arg)
237 #define NOT_ZGC(x) x
238 #define NOT_ZGC_RETURN        {}
239 #define NOT_ZGC_RETURN_(code) { return code; }
240 #endif // INCLUDE_ZGC
241 
242 #ifndef INCLUDE_NMT
243 #define INCLUDE_NMT 1
244 #endif // INCLUDE_NMT
245 
246 #if INCLUDE_NMT
247 #define NOT_NMT_RETURN        /* next token must be ; */
248 #define NOT_NMT_RETURN_(code) /* next token must be ; */
249 #define NMT_ONLY(x) x
250 #define NOT_NMT(x)
251 #else
252 #define NOT_NMT_RETURN        {}
253 #define NOT_NMT_RETURN_(code) { return code; }
254 #define NMT_ONLY(x)
255 #define NOT_NMT(x) x
256 #endif // INCLUDE_NMT
257 
258 #ifndef INCLUDE_JFR
259 #define INCLUDE_JFR 1
260 #endif
261 
262 #if INCLUDE_JFR
263 #define JFR_ONLY(code) code
264 #define NOT_JFR_RETURN()      /* next token must be ; */
265 #define NOT_JFR_RETURN_(code) /* next token must be ; */
266 #else
267 #define JFR_ONLY(code)
268 #define NOT_JFR_RETURN()      {}
269 #define NOT_JFR_RETURN_(code) { return code; }
270 #endif
271 
272 #ifndef INCLUDE_JVMCI
273 #define INCLUDE_JVMCI 1
274 #endif
275 
276 #ifndef INCLUDE_AOT
277 #define INCLUDE_AOT 1
278 #endif
279 
280 #if INCLUDE_AOT && !INCLUDE_JVMCI
281 #  error "Must have JVMCI for AOT"
282 #endif
283 
284 #if INCLUDE_JVMCI
285 #define JVMCI_ONLY(code) code
286 #define NOT_JVMCI(code)
287 #define NOT_JVMCI_RETURN /* next token must be ; */
288 #else
289 #define JVMCI_ONLY(code)
290 #define NOT_JVMCI(code) code
291 #define NOT_JVMCI_RETURN {}
292 #endif // INCLUDE_JVMCI
293 
294 #if INCLUDE_AOT
295 #define AOT_ONLY(code) code
296 #define NOT_AOT(code)
297 #define NOT_AOT_RETURN /* next token must be ; */
298 #else
299 #define AOT_ONLY(code)
300 #define NOT_AOT(code) code
301 #define NOT_AOT_RETURN {}
302 #endif // INCLUDE_AOT
303 
304 // COMPILER1 variant
305 #ifdef COMPILER1
306 #ifdef COMPILER2
307   #define TIERED
308 #endif
309 #define COMPILER1_PRESENT(code) code
310 #define NOT_COMPILER1(code)
311 #else // COMPILER1
312 #define COMPILER1_PRESENT(code)
313 #define NOT_COMPILER1(code) code
314 #endif // COMPILER1
315 
316 // COMPILER2 variant
317 #ifdef COMPILER2
318 #define COMPILER2_PRESENT(code) code
319 #define NOT_COMPILER2(code)
320 #else // COMPILER2
321 #define COMPILER2_PRESENT(code)
322 #define NOT_COMPILER2(code) code
323 #endif // COMPILER2
324 
325 // COMPILER2 or JVMCI
326 #if defined(COMPILER2) || INCLUDE_JVMCI
327 #define COMPILER2_OR_JVMCI 1
328 #define COMPILER2_OR_JVMCI_PRESENT(code) code
329 #define NOT_COMPILER2_OR_JVMCI(code)
330 #define NOT_COMPILER2_OR_JVMCI_RETURN        /* next token must be ; */
331 #define NOT_COMPILER2_OR_JVMCI_RETURN_(code) /* next token must be ; */
332 #else
333 #define COMPILER2_OR_JVMCI 0
334 #define COMPILER2_OR_JVMCI_PRESENT(code)
335 #define NOT_COMPILER2_OR_JVMCI(code) code
336 #define NOT_COMPILER2_OR_JVMCI_RETURN {}
337 #define NOT_COMPILER2_OR_JVMCI_RETURN_(code) { return code; }
338 #endif
339 
340 #ifdef TIERED
341 #define TIERED_ONLY(code) code
342 #define NOT_TIERED(code)
343 #else // TIERED
344 #define TIERED_ONLY(code)
345 #define NOT_TIERED(code) code
346 #endif // TIERED
347 
348 
349 // PRODUCT variant
350 #ifdef PRODUCT
351 #define PRODUCT_ONLY(code) code
352 #define NOT_PRODUCT(code)
353 #define NOT_PRODUCT_ARG(arg)
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
360 #define NOT_PRODUCT_ARG(arg) arg,
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 ASSERT
375 #define DEBUG_ONLY(code) code
376 #define NOT_DEBUG(code)
377 #define NOT_DEBUG_RETURN  /*next token must be ;*/
378 // Historical.
379 #define debug_only(code) code
380 #else // ASSERT
381 #define DEBUG_ONLY(code)
382 #define NOT_DEBUG(code) code
383 #define NOT_DEBUG_RETURN {}
384 #define debug_only(code)
385 #endif // ASSERT
386 
387 #ifdef  _LP64
388 #define LP64_ONLY(code) code
389 #define NOT_LP64(code)
390 #else  // !_LP64
391 #define LP64_ONLY(code)
392 #define NOT_LP64(code) code
393 #endif // _LP64
394 
395 #ifdef LINUX
396 #define LINUX_ONLY(code) code
397 #define NOT_LINUX(code)
398 #else
399 #define LINUX_ONLY(code)
400 #define NOT_LINUX(code) code
401 #endif
402 
403 #ifdef __APPLE__
404 #define MACOS_ONLY(code) code
405 #define NOT_MACOS(code)
406 #else
407 #define MACOS_ONLY(code)
408 #define NOT_MACOS(code) code
409 #endif
410 
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 
419 #ifdef _WINDOWS
420 #define WINDOWS_ONLY(code) code
421 #define NOT_WINDOWS(code)
422 #else
423 #define WINDOWS_ONLY(code)
424 #define NOT_WINDOWS(code) code
425 #endif
426 
427 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__APPLE__) || defined(__DragonFly__)
428 #ifndef BSD
429 #define BSD
430 #endif // BSD defined in <sys/param.h>
431 #define BSD_ONLY(code) code
432 #define NOT_BSD(code)
433 #else
434 #define BSD_ONLY(code)
435 #define NOT_BSD(code) code
436 #endif
437 
438 #ifdef _WIN64
439 #define WIN64_ONLY(code) code
440 #define NOT_WIN64(code)
441 #else
442 #define WIN64_ONLY(code)
443 #define NOT_WIN64(code) code
444 #endif
445 
446 #if defined(ZERO)
447 #define ZERO_ONLY(code) code
448 #define NOT_ZERO(code)
449 #define NOT_ZERO_RETURN {}
450 #else
451 #define ZERO_ONLY(code)
452 #define NOT_ZERO(code) code
453 #define NOT_ZERO_RETURN
454 #endif
455 
456 #if defined(IA32) || defined(AMD64)
457 #define X86
458 #define X86_ONLY(code) code
459 #define NOT_X86(code)
460 #else
461 #undef X86
462 #define X86_ONLY(code)
463 #define NOT_X86(code) code
464 #endif
465 
466 #ifdef IA32
467 #define IA32_ONLY(code) code
468 #define NOT_IA32(code)
469 #else
470 #define IA32_ONLY(code)
471 #define NOT_IA32(code) code
472 #endif
473 
474 // This is a REALLY BIG HACK, but on AIX <sys/systemcfg.h> unconditionally defines IA64.
475 // At least on AIX 7.1 this is a real problem because 'systemcfg.h' is indirectly included
476 // by 'pthread.h' and other common system headers.
477 
478 #if defined(IA64) && !defined(AIX)
479 #define IA64_ONLY(code) code
480 #define NOT_IA64(code)
481 #else
482 #define IA64_ONLY(code)
483 #define NOT_IA64(code) code
484 #endif
485 
486 #ifdef AMD64
487 #define AMD64_ONLY(code) code
488 #define NOT_AMD64(code)
489 #else
490 #define AMD64_ONLY(code)
491 #define NOT_AMD64(code) code
492 #endif
493 
494 #ifdef S390
495 #define S390_ONLY(code) code
496 #define NOT_S390(code)
497 #else
498 #define S390_ONLY(code)
499 #define NOT_S390(code) code
500 #endif
501 
502 #if defined(PPC32) || defined(PPC64)
503 #ifndef PPC
504 #define PPC
505 #endif
506 #define PPC_ONLY(code) code
507 #define NOT_PPC(code)
508 #else
509 #undef PPC
510 #define PPC_ONLY(code)
511 #define NOT_PPC(code) code
512 #endif
513 
514 #ifdef PPC32
515 #define PPC32_ONLY(code) code
516 #define NOT_PPC32(code)
517 #else
518 #define PPC32_ONLY(code)
519 #define NOT_PPC32(code) code
520 #endif
521 
522 #ifdef PPC64
523 #define PPC64_ONLY(code) code
524 #define NOT_PPC64(code)
525 #else
526 #define PPC64_ONLY(code)
527 #define NOT_PPC64(code) code
528 #endif
529 
530 #ifdef E500V2
531 #define E500V2_ONLY(code) code
532 #define NOT_E500V2(code)
533 #else
534 #define E500V2_ONLY(code)
535 #define NOT_E500V2(code) code
536 #endif
537 
538 // Note: There are two ARM ports. They set the following in the makefiles:
539 // 1. 32-bit port:   -DARM -DARM32 -DTARGET_ARCH_arm
540 // 2. 64-bit port:   -DAARCH64 -D_LP64 -DTARGET_ARCH_aaarch64
541 #ifdef ARM
542 #define ARM_ONLY(code) code
543 #define NOT_ARM(code)
544 #else
545 #define ARM_ONLY(code)
546 #define NOT_ARM(code) code
547 #endif
548 
549 #ifdef ARM32
550 #define ARM32_ONLY(code) code
551 #define NOT_ARM32(code)
552 #else
553 #define ARM32_ONLY(code)
554 #define NOT_ARM32(code) code
555 #endif
556 
557 #ifdef AARCH64
558 #define AARCH64_ONLY(code) code
559 #define NOT_AARCH64(code)
560 #else
561 #define AARCH64_ONLY(code)
562 #define NOT_AARCH64(code) code
563 #endif
564 
565 #ifdef VM_LITTLE_ENDIAN
566 #define LITTLE_ENDIAN_ONLY(code) code
567 #define BIG_ENDIAN_ONLY(code)
568 #else
569 #define LITTLE_ENDIAN_ONLY(code)
570 #define BIG_ENDIAN_ONLY(code) code
571 #endif
572 
573 #define define_pd_global(type, name, value) const type pd_##name = value;
574 
575 // Helper macros for constructing file names for includes.
576 #define CPU_HEADER_STEM(basename) PASTE_TOKENS(basename, INCLUDE_SUFFIX_CPU)
577 #define OS_HEADER_STEM(basename) PASTE_TOKENS(basename, INCLUDE_SUFFIX_OS)
578 #define OS_CPU_HEADER_STEM(basename) PASTE_TOKENS(basename, PASTE_TOKENS(INCLUDE_SUFFIX_OS, INCLUDE_SUFFIX_CPU))
579 #define COMPILER_HEADER_STEM(basename) PASTE_TOKENS(basename, INCLUDE_SUFFIX_COMPILER)
580 
581 // Include platform dependent files.
582 //
583 // This macro constructs from basename and INCLUDE_SUFFIX_OS /
584 // INCLUDE_SUFFIX_CPU / INCLUDE_SUFFIX_COMPILER, which are set on
585 // the command line, the name of platform dependent files to be included.
586 // Example: INCLUDE_SUFFIX_OS=_linux / INCLUDE_SUFFIX_CPU=_x86
587 //   CPU_HEADER_INLINE(macroAssembler) --> macroAssembler_x86.inline.hpp
588 //   OS_CPU_HEADER(vmStructs)          --> vmStructs_linux_x86.hpp
589 //
590 // basename<cpu>.hpp / basename<cpu>.inline.hpp
591 #define CPU_HEADER_H(basename)         XSTR(CPU_HEADER_STEM(basename).h)
592 #define CPU_HEADER(basename)           XSTR(CPU_HEADER_STEM(basename).hpp)
593 #define CPU_HEADER_INLINE(basename)    XSTR(CPU_HEADER_STEM(basename).inline.hpp)
594 // basename<os>.hpp / basename<os>.inline.hpp
595 #define OS_HEADER_H(basename)          XSTR(OS_HEADER_STEM(basename).h)
596 #define OS_HEADER(basename)            XSTR(OS_HEADER_STEM(basename).hpp)
597 #define OS_HEADER_INLINE(basename)     XSTR(OS_HEADER_STEM(basename).inline.hpp)
598 // basename<os><cpu>.hpp / basename<os><cpu>.inline.hpp
599 #define OS_CPU_HEADER(basename)        XSTR(OS_CPU_HEADER_STEM(basename).hpp)
600 #define OS_CPU_HEADER_INLINE(basename) XSTR(OS_CPU_HEADER_STEM(basename).inline.hpp)
601 // basename<compiler>.hpp / basename<compiler>.inline.hpp
602 #define COMPILER_HEADER(basename)        XSTR(COMPILER_HEADER_STEM(basename).hpp)
603 #define COMPILER_HEADER_INLINE(basename) XSTR(COMPILER_HEADER_STEM(basename).inline.hpp)
604 
605 #if INCLUDE_CDS && INCLUDE_G1GC && defined(_LP64) && !defined(_WINDOWS)
606 #define INCLUDE_CDS_JAVA_HEAP 1
607 #define CDS_JAVA_HEAP_ONLY(x) x
608 #define NOT_CDS_JAVA_HEAP(x)
609 #define NOT_CDS_JAVA_HEAP_RETURN
610 #define NOT_CDS_JAVA_HEAP_RETURN_(code)
611 #else
612 #define INCLUDE_CDS_JAVA_HEAP 0
613 #define CDS_JAVA_HEAP_ONLY(x)
614 #define NOT_CDS_JAVA_HEAP(x) x
615 #define NOT_CDS_JAVA_HEAP_RETURN        {}
616 #define NOT_CDS_JAVA_HEAP_RETURN_(code) { return code; }
617 #endif
618 
619 #endif // SHARE_UTILITIES_MACROS_HPP
620