2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2013-12-24 11:48:39 -08:00
|
|
|
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
2010-05-27 19:08:38 -07:00
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-11-23 13:22:55 -08:00
|
|
|
#ifndef SHARE_VM_UTILITIES_MACROS_HPP
|
|
|
|
#define SHARE_VM_UTILITIES_MACROS_HPP
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// Use this to mark code that needs to be cleaned up (for development only)
|
|
|
|
#define NEEDS_CLEANUP
|
|
|
|
|
|
|
|
// Makes a string of the argument (which is not macro-expanded)
|
|
|
|
#define STR(a) #a
|
|
|
|
|
|
|
|
// Makes a string of the macro expansion of a
|
|
|
|
#define XSTR(a) STR(a)
|
|
|
|
|
2012-10-10 14:35:58 -04:00
|
|
|
// -DINCLUDE_<something>=0 | 1 can be specified on the command line to include
|
|
|
|
// or exclude functionality.
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-10-10 14:35:58 -04:00
|
|
|
#ifndef INCLUDE_JVMTI
|
|
|
|
#define INCLUDE_JVMTI 1
|
|
|
|
#endif // INCLUDE_JVMTI
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-10-10 14:35:58 -04:00
|
|
|
#if INCLUDE_JVMTI
|
|
|
|
#define JVMTI_ONLY(x) x
|
|
|
|
#define NOT_JVMTI(x)
|
|
|
|
#define NOT_JVMTI_RETURN
|
|
|
|
#define NOT_JVMTI_RETURN_(code) /* next token must be ; */
|
|
|
|
#else
|
|
|
|
#define JVMTI_ONLY(x)
|
|
|
|
#define NOT_JVMTI(x) x
|
|
|
|
#define NOT_JVMTI_RETURN { return; }
|
|
|
|
#define NOT_JVMTI_RETURN_(code) { return code; }
|
|
|
|
#endif // INCLUDE_JVMTI
|
|
|
|
|
|
|
|
#ifndef INCLUDE_FPROF
|
|
|
|
#define INCLUDE_FPROF 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if INCLUDE_FPROF
|
|
|
|
#define NOT_FPROF_RETURN /* next token must be ; */
|
|
|
|
#define NOT_FPROF_RETURN_(code) /* next token must be ; */
|
|
|
|
#else
|
|
|
|
#define NOT_FPROF_RETURN {}
|
|
|
|
#define NOT_FPROF_RETURN_(code) { return code; }
|
|
|
|
#endif // INCLUDE_FPROF
|
|
|
|
|
|
|
|
#ifndef INCLUDE_VM_STRUCTS
|
|
|
|
#define INCLUDE_VM_STRUCTS 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if INCLUDE_VM_STRUCTS
|
|
|
|
#define NOT_VM_STRUCTS_RETURN /* next token must be ; */
|
|
|
|
#define NOT_VM_STRUCTS_RETURN_(code) /* next token must be ; */
|
|
|
|
#else
|
|
|
|
#define NOT_VM_STRUCTS_RETURN {}
|
|
|
|
#define NOT_VM_STRUCTS_RETURN_(code) { return code; }
|
|
|
|
#endif // INCLUDE_VM_STRUCTS
|
|
|
|
|
|
|
|
#ifndef INCLUDE_JNI_CHECK
|
|
|
|
#define INCLUDE_JNI_CHECK 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if INCLUDE_JNI_CHECK
|
|
|
|
#define NOT_JNI_CHECK_RETURN /* next token must be ; */
|
|
|
|
#define NOT_JNI_CHECK_RETURN_(code) /* next token must be ; */
|
|
|
|
#else
|
|
|
|
#define NOT_JNI_CHECK_RETURN {}
|
|
|
|
#define NOT_JNI_CHECK_RETURN_(code) { return code; }
|
|
|
|
#endif // INCLUDE_JNI_CHECK
|
|
|
|
|
|
|
|
#ifndef INCLUDE_SERVICES
|
|
|
|
#define INCLUDE_SERVICES 1
|
|
|
|
#endif
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-10-10 14:35:58 -04:00
|
|
|
#if INCLUDE_SERVICES
|
|
|
|
#define NOT_SERVICES_RETURN /* next token must be ; */
|
|
|
|
#define NOT_SERVICES_RETURN_(code) /* next token must be ; */
|
|
|
|
#else
|
|
|
|
#define NOT_SERVICES_RETURN {}
|
|
|
|
#define NOT_SERVICES_RETURN_(code) { return code; }
|
|
|
|
#endif // INCLUDE_SERVICES
|
|
|
|
|
|
|
|
#ifndef INCLUDE_CDS
|
|
|
|
#define INCLUDE_CDS 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if INCLUDE_CDS
|
|
|
|
#define CDS_ONLY(x) x
|
|
|
|
#define NOT_CDS(x)
|
|
|
|
#define NOT_CDS_RETURN /* next token must be ; */
|
|
|
|
#define NOT_CDS_RETURN_(code) /* next token must be ; */
|
|
|
|
#else
|
|
|
|
#define CDS_ONLY(x)
|
|
|
|
#define NOT_CDS(x) x
|
|
|
|
#define NOT_CDS_RETURN {}
|
|
|
|
#define NOT_CDS_RETURN_(code) { return code; }
|
|
|
|
#endif // INCLUDE_CDS
|
|
|
|
|
|
|
|
#ifndef INCLUDE_MANAGEMENT
|
|
|
|
#define INCLUDE_MANAGEMENT 1
|
|
|
|
#endif // INCLUDE_MANAGEMENT
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-10-10 14:35:58 -04:00
|
|
|
#if INCLUDE_MANAGEMENT
|
|
|
|
#define NOT_MANAGEMENT_RETURN /* next token must be ; */
|
|
|
|
#define NOT_MANAGEMENT_RETURN_(code) /* next token must be ; */
|
|
|
|
#else
|
|
|
|
#define NOT_MANAGEMENT_RETURN {}
|
|
|
|
#define NOT_MANAGEMENT_RETURN_(code) { return code; }
|
|
|
|
#endif // INCLUDE_MANAGEMENT
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-10-10 14:35:58 -04:00
|
|
|
/*
|
2013-01-23 13:02:39 -05:00
|
|
|
* When INCLUDE_ALL_GCS is false the only garbage collectors
|
2012-10-10 14:35:58 -04:00
|
|
|
* included in the JVM are defaultNewGeneration and markCompact.
|
|
|
|
*
|
2013-01-23 13:02:39 -05:00
|
|
|
* When INCLUDE_ALL_GCS is true all garbage collectors are
|
2012-10-10 14:35:58 -04:00
|
|
|
* included in the JVM.
|
|
|
|
*/
|
2013-01-23 13:02:39 -05:00
|
|
|
#ifndef INCLUDE_ALL_GCS
|
|
|
|
#define INCLUDE_ALL_GCS 1
|
|
|
|
#endif // INCLUDE_ALL_GCS
|
2012-10-10 14:35:58 -04:00
|
|
|
|
2013-01-23 13:02:39 -05:00
|
|
|
#if INCLUDE_ALL_GCS
|
|
|
|
#define NOT_ALL_GCS_RETURN /* next token must be ; */
|
|
|
|
#define NOT_ALL_GCS_RETURN_(code) /* next token must be ; */
|
2012-10-10 14:35:58 -04:00
|
|
|
#else
|
2013-01-23 13:02:39 -05:00
|
|
|
#define NOT_ALL_GCS_RETURN {}
|
|
|
|
#define NOT_ALL_GCS_RETURN_(code) { return code; }
|
|
|
|
#endif // INCLUDE_ALL_GCS
|
2012-10-10 14:35:58 -04:00
|
|
|
|
|
|
|
#ifndef INCLUDE_NMT
|
|
|
|
#define INCLUDE_NMT 1
|
|
|
|
#endif // INCLUDE_NMT
|
|
|
|
|
|
|
|
#if INCLUDE_NMT
|
|
|
|
#define NOT_NMT_RETURN /* next token must be ; */
|
|
|
|
#define NOT_NMT_RETURN_(code) /* next token must be ; */
|
|
|
|
#else
|
|
|
|
#define NOT_NMT_RETURN {}
|
|
|
|
#define NOT_NMT_RETURN_(code) { return code; }
|
|
|
|
#endif // INCLUDE_NMT
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2013-06-10 11:30:51 +02:00
|
|
|
#ifndef INCLUDE_TRACE
|
|
|
|
#define INCLUDE_TRACE 1
|
|
|
|
#endif // INCLUDE_TRACE
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// COMPILER1 variant
|
|
|
|
#ifdef COMPILER1
|
|
|
|
#ifdef COMPILER2
|
|
|
|
#define TIERED
|
|
|
|
#endif
|
|
|
|
#define COMPILER1_PRESENT(code) code
|
|
|
|
#else // COMPILER1
|
|
|
|
#define COMPILER1_PRESENT(code)
|
|
|
|
#endif // COMPILER1
|
|
|
|
|
|
|
|
// COMPILER2 variant
|
|
|
|
#ifdef COMPILER2
|
|
|
|
#define COMPILER2_PRESENT(code) code
|
2008-11-20 16:56:09 -08:00
|
|
|
#define NOT_COMPILER2(code)
|
2007-12-01 00:00:00 +00:00
|
|
|
#else // COMPILER2
|
|
|
|
#define COMPILER2_PRESENT(code)
|
2008-11-20 16:56:09 -08:00
|
|
|
#define NOT_COMPILER2(code) code
|
2007-12-01 00:00:00 +00:00
|
|
|
#endif // COMPILER2
|
|
|
|
|
2010-09-03 17:51:07 -07:00
|
|
|
#ifdef TIERED
|
|
|
|
#define TIERED_ONLY(code) code
|
|
|
|
#define NOT_TIERED(code)
|
|
|
|
#else
|
|
|
|
#define TIERED_ONLY(code)
|
|
|
|
#define NOT_TIERED(code) code
|
|
|
|
#endif // TIERED
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// PRODUCT variant
|
|
|
|
#ifdef PRODUCT
|
|
|
|
#define PRODUCT_ONLY(code) code
|
|
|
|
#define NOT_PRODUCT(code)
|
2010-08-31 03:14:00 -07:00
|
|
|
#define NOT_PRODUCT_ARG(arg)
|
2007-12-01 00:00:00 +00:00
|
|
|
#define PRODUCT_RETURN {}
|
|
|
|
#define PRODUCT_RETURN0 { return 0; }
|
|
|
|
#define PRODUCT_RETURN_(code) { code }
|
|
|
|
#else // PRODUCT
|
|
|
|
#define PRODUCT_ONLY(code)
|
|
|
|
#define NOT_PRODUCT(code) code
|
2010-08-31 03:14:00 -07:00
|
|
|
#define NOT_PRODUCT_ARG(arg) arg,
|
2007-12-01 00:00:00 +00:00
|
|
|
#define PRODUCT_RETURN /*next token must be ;*/
|
|
|
|
#define PRODUCT_RETURN0 /*next token must be ;*/
|
|
|
|
#define PRODUCT_RETURN_(code) /*next token must be ;*/
|
|
|
|
#endif // PRODUCT
|
|
|
|
|
|
|
|
#ifdef CHECK_UNHANDLED_OOPS
|
|
|
|
#define CHECK_UNHANDLED_OOPS_ONLY(code) code
|
|
|
|
#define NOT_CHECK_UNHANDLED_OOPS(code)
|
|
|
|
#else
|
|
|
|
#define CHECK_UNHANDLED_OOPS_ONLY(code)
|
|
|
|
#define NOT_CHECK_UNHANDLED_OOPS(code) code
|
|
|
|
#endif // CHECK_UNHANDLED_OOPS
|
|
|
|
|
|
|
|
#ifdef CC_INTERP
|
|
|
|
#define CC_INTERP_ONLY(code) code
|
|
|
|
#define NOT_CC_INTERP(code)
|
|
|
|
#else
|
|
|
|
#define CC_INTERP_ONLY(code)
|
|
|
|
#define NOT_CC_INTERP(code) code
|
|
|
|
#endif // CC_INTERP
|
|
|
|
|
|
|
|
#ifdef ASSERT
|
|
|
|
#define DEBUG_ONLY(code) code
|
|
|
|
#define NOT_DEBUG(code)
|
2009-06-11 13:31:01 -07:00
|
|
|
#define NOT_DEBUG_RETURN /*next token must be ;*/
|
2007-12-01 00:00:00 +00:00
|
|
|
// Historical.
|
|
|
|
#define debug_only(code) code
|
|
|
|
#else // ASSERT
|
|
|
|
#define DEBUG_ONLY(code)
|
|
|
|
#define NOT_DEBUG(code) code
|
2009-06-11 13:31:01 -07:00
|
|
|
#define NOT_DEBUG_RETURN {}
|
2007-12-01 00:00:00 +00:00
|
|
|
#define debug_only(code)
|
|
|
|
#endif // ASSERT
|
|
|
|
|
|
|
|
#ifdef _LP64
|
|
|
|
#define LP64_ONLY(code) code
|
|
|
|
#define NOT_LP64(code)
|
|
|
|
#else // !_LP64
|
|
|
|
#define LP64_ONLY(code)
|
|
|
|
#define NOT_LP64(code) code
|
|
|
|
#endif // _LP64
|
|
|
|
|
|
|
|
#ifdef LINUX
|
|
|
|
#define LINUX_ONLY(code) code
|
|
|
|
#define NOT_LINUX(code)
|
|
|
|
#else
|
|
|
|
#define LINUX_ONLY(code)
|
|
|
|
#define NOT_LINUX(code) code
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SOLARIS
|
|
|
|
#define SOLARIS_ONLY(code) code
|
|
|
|
#define NOT_SOLARIS(code)
|
|
|
|
#else
|
|
|
|
#define SOLARIS_ONLY(code)
|
|
|
|
#define NOT_SOLARIS(code) code
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _WINDOWS
|
|
|
|
#define WINDOWS_ONLY(code) code
|
|
|
|
#define NOT_WINDOWS(code)
|
|
|
|
#else
|
|
|
|
#define WINDOWS_ONLY(code)
|
|
|
|
#define NOT_WINDOWS(code) code
|
|
|
|
#endif
|
|
|
|
|
2011-09-25 16:03:29 -07:00
|
|
|
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__APPLE__)
|
|
|
|
#define BSD_ONLY(code) code
|
|
|
|
#define NOT_BSD(code)
|
|
|
|
#else
|
|
|
|
#define BSD_ONLY(code)
|
|
|
|
#define NOT_BSD(code) code
|
|
|
|
#endif
|
|
|
|
|
2011-02-28 06:07:12 -08:00
|
|
|
#ifdef _WIN64
|
|
|
|
#define WIN64_ONLY(code) code
|
|
|
|
#define NOT_WIN64(code)
|
|
|
|
#else
|
|
|
|
#define WIN64_ONLY(code)
|
|
|
|
#define NOT_WIN64(code) code
|
|
|
|
#endif
|
|
|
|
|
2012-10-29 11:08:48 -07:00
|
|
|
#if defined(ZERO)
|
|
|
|
#define ZERO_ONLY(code) code
|
|
|
|
#define NOT_ZERO(code)
|
|
|
|
#else
|
|
|
|
#define ZERO_ONLY(code)
|
|
|
|
#define NOT_ZERO(code) code
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(SHARK)
|
|
|
|
#define SHARK_ONLY(code) code
|
|
|
|
#define NOT_SHARK(code)
|
|
|
|
#else
|
|
|
|
#define SHARK_ONLY(code)
|
|
|
|
#define NOT_SHARK(code) code
|
|
|
|
#endif
|
|
|
|
|
2008-08-27 00:21:55 -07:00
|
|
|
#if defined(IA32) || defined(AMD64)
|
|
|
|
#define X86
|
|
|
|
#define X86_ONLY(code) code
|
2010-08-11 05:51:21 -07:00
|
|
|
#define NOT_X86(code)
|
2008-08-27 00:21:55 -07:00
|
|
|
#else
|
|
|
|
#undef X86
|
|
|
|
#define X86_ONLY(code)
|
2010-08-11 05:51:21 -07:00
|
|
|
#define NOT_X86(code) code
|
2008-08-27 00:21:55 -07:00
|
|
|
#endif
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
#ifdef IA32
|
|
|
|
#define IA32_ONLY(code) code
|
|
|
|
#define NOT_IA32(code)
|
|
|
|
#else
|
|
|
|
#define IA32_ONLY(code)
|
|
|
|
#define NOT_IA32(code) code
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef IA64
|
|
|
|
#define IA64_ONLY(code) code
|
|
|
|
#define NOT_IA64(code)
|
|
|
|
#else
|
|
|
|
#define IA64_ONLY(code)
|
|
|
|
#define NOT_IA64(code) code
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef AMD64
|
|
|
|
#define AMD64_ONLY(code) code
|
|
|
|
#define NOT_AMD64(code)
|
|
|
|
#else
|
|
|
|
#define AMD64_ONLY(code)
|
|
|
|
#define NOT_AMD64(code) code
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SPARC
|
|
|
|
#define SPARC_ONLY(code) code
|
|
|
|
#define NOT_SPARC(code)
|
|
|
|
#else
|
|
|
|
#define SPARC_ONLY(code)
|
|
|
|
#define NOT_SPARC(code) code
|
|
|
|
#endif
|
|
|
|
|
2010-08-03 08:13:38 -04:00
|
|
|
#ifdef PPC
|
|
|
|
#define PPC_ONLY(code) code
|
|
|
|
#define NOT_PPC(code)
|
|
|
|
#else
|
|
|
|
#define PPC_ONLY(code)
|
|
|
|
#define NOT_PPC(code) code
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef E500V2
|
|
|
|
#define E500V2_ONLY(code) code
|
|
|
|
#define NOT_E500V2(code)
|
|
|
|
#else
|
|
|
|
#define E500V2_ONLY(code)
|
|
|
|
#define NOT_E500V2(code) code
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef ARM
|
|
|
|
#define ARM_ONLY(code) code
|
|
|
|
#define NOT_ARM(code)
|
|
|
|
#else
|
|
|
|
#define ARM_ONLY(code)
|
|
|
|
#define NOT_ARM(code) code
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef JAVASE_EMBEDDED
|
|
|
|
#define EMBEDDED_ONLY(code) code
|
|
|
|
#define NOT_EMBEDDED(code)
|
|
|
|
#else
|
|
|
|
#define EMBEDDED_ONLY(code)
|
|
|
|
#define NOT_EMBEDDED(code) code
|
|
|
|
#endif
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
#define define_pd_global(type, name, value) const type pd_##name = value;
|
2010-11-23 13:22:55 -08:00
|
|
|
|
|
|
|
#endif // SHARE_VM_UTILITIES_MACROS_HPP
|