vmkdrivers/BLD/build/HEADERS/vmkapi-current-all-public-bincomp/vmkernel64/release/lib/vmkapi_compiler.h

256 lines
7.7 KiB
C
Raw Normal View History

2015-10-23 19:21:55 +00:00
/* **********************************************************
* Copyright 2007 - 2009 VMware, Inc. All rights reserved.
* **********************************************************/
/*
* @VMKAPIMOD_LICENSE@
*/
/*
***********************************************************************
* Compiler Utilities */ /**
2015-10-23 19:48:45 +00:00
* \addtogroup Lib
* @{
2015-10-23 19:21:55 +00:00
* \defgroup Compiler Compiler Utilities
*
* These interfaces allow easy access to special compiler-specific
* information and tags.
*
* @{
***********************************************************************
*/
#ifndef _VMKAPI_COMPILER_H_
#define _VMKAPI_COMPILER_H_
/** \cond never */
#ifndef VMK_HEADER_INCLUDED_FROM_VMKAPI_H
#error This vmkapi file should never be included directly but only via vmkapi.h
#endif
/** \endcond never */
/*
***********************************************************************
* VMK_ATTRIBUTE_NORETURN -- */ /**
*
* \brief Indicate to the compiler that the function never returns
*
***********************************************************************
*/
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 9)
#define VMK_ATTRIBUTE_NORETURN \
__attribute__((__noreturn__))
#else
#define VMK_ATTRIBUTE_NORETURN
#endif
/*
***********************************************************************
* VMK_ATTRIBUTE_ALWAYS_INLINE -- */ /**
*
* \brief Indicate to the compiler that an inlined function should
* always be inlined.
*
***********************************************************************
*/
#if (__GNUC__ >= 3)
#define VMK_ATTRIBUTE_ALWAYS_INLINE \
__attribute__((always_inline))
#else
#define VMK_ATTRIBUTE_ALWAYS_INLINE
#endif
/*
***********************************************************************
* VMK_ATTRIBUTE_PRINTF -- */ /**
*
* \brief Compiler format checking for printf-like functions
*
* \param[in] fmt Argument number of the format string
* \param[in] vararg Argument number of the first vararg
*
***********************************************************************
*/
#if (__GNUC__ >= 3)
#define VMK_ATTRIBUTE_PRINTF(fmt, vararg) \
__attribute__((format(__printf__, fmt, vararg)))
#else
#define VMK_ATTRIBUTE_PRINTF(fmt, vararg)
#endif
/*
***********************************************************************
* VMK_ATTRIBUTE_SCANF -- */ /**
*
* \brief Compiler format checking for scanf-like functions
*
* \param[in] fmt Argument number of the format string
* \param[in] vararg Argument number of the first vararg
*
***********************************************************************
*/
#if (__GNUC__ >= 3)
#define VMK_ATTRIBUTE_SCANF(fmt, vararg) \
__attribute__((format(__scanf__, fmt, vararg)))
#else
#define VMK_ATTRIBUTE_SCANF(fmt, vararg)
#endif
2015-10-23 19:48:45 +00:00
/*
***********************************************************************
* VMK_INLINE -- */ /**
*
* \brief Indicate to the compiler that a function should be inlined.
*
***********************************************************************
*/
#define VMK_INLINE inline
2015-10-23 19:21:55 +00:00
/*
***********************************************************************
* VMK_ALWAYS_INLINE -- */ /**
*
* \brief Indicate to the compiler that a function should be inlined
* and that it should always be inlined.
*
***********************************************************************
*/
#define VMK_ALWAYS_INLINE \
inline VMK_ATTRIBUTE_ALWAYS_INLINE
/*
***********************************************************************
* VMK_ATTRIBUTE_ALIGN -- */ /**
*
* \brief Align the data structure on "n" bytes.
*
* \param[in] n Number of bytes to align the data structure on.
*
***********************************************************************
*/
#if (__GNUC__ >= 3)
#define VMK_ATTRIBUTE_ALIGN(n) \
/** \cond never */ __attribute__((__aligned__(n))) /** \endcond */
#else
#define VMK_ATTRIBUTE_ALIGN(n)
#endif
/*
***********************************************************************
* VMK_ATTRIBUTE_PACKED -- */ /**
*
* \brief Pack a data structure into the minumum number of bytes.
*
***********************************************************************
*/
#if (__GNUC__ >= 3)
#define VMK_ATTRIBUTE_PACKED \
/** \cond never */ __attribute__((__packed__)) /** \endcond */
#else
#define VMK_ATTRIBUTE_PACKED
#endif
/*
***********************************************************************
* VMK_LIKELY -- */ /**
*
* \brief Branch prediction hint to the compiler that the supplied
* expression will likely evaluate to true.
*
* \note Be aware that using this in an if-statement may mean
* the compiler will fail to issue some warnings on the
* given expression.
*
* \param[in] _exp Expression that will likely evaluate to true.
*
***********************************************************************
*/
#if (__GNUC__ >= 3)
#define VMK_LIKELY(_exp) __builtin_expect(!!(_exp), 1)
#else
#define VMK_LIKELY(_exp) (_exp)
#endif
/*
***********************************************************************
* VMK_UNLIKELY -- */ /**
*
* \brief Branch prediction hint to the compiler that the supplied
* expression will likely evaluate to false.
*
* \note Be aware that using this in an if-statement may mean
* the compiler will fail to issue some warnings on the
* given expression.
*
* \param[in] _exp Expression that will likely evaluate to false.
*
***********************************************************************
*/
#if (__GNUC__ >= 3)
#define VMK_UNLIKELY(_exp) __builtin_expect((_exp), 0)
#else
#define VMK_UNLIKELY(_exp) (_exp)
#endif
/*
***********************************************************************
* VMK_PADDED_STRUCT -- */ /**
*
* \brief Macro used for padding a struct
*
* \param _align_sz_ Align the struct to this size
* \param _fields_ fields of the struct
*
***********************************************************************
*/
#define VMK_PADDED_STRUCT(_align_sz_, _fields_) \
union { \
struct _fields_; \
char pad[((((sizeof(struct _fields_)) + (_align_sz_) - 1) / \
(_align_sz_)) * (_align_sz_))]; \
};
/*
***********************************************************************
* vmk_offsetof -- */ /**
*
* \brief Get the offset of a member of in a type
*
* \param[in] TYPE Type the member is a part of.
* \param[in] MEMBER Member to get the offset of.
*
* \returns The offset in bytes of MEMBER in TYPE.
*
***********************************************************************
*/
2015-10-23 19:48:45 +00:00
#define vmk_offsetof(TYPE, MEMBER) ((vmk_ByteCount) &((TYPE *)0)->MEMBER)
/*
******************************************************************************
* VMK_DEBUG_ONLY -- */ /**
*
* \brief Compile code only for debug builds.
*
* \par Example usage:
*
* \code
* VMK_DEBUG_ONLY(
* myFunc();
* x = 1;
* y = 3;
* )
* \endcode
*
******************************************************************************
*/
#if defined(VMX86_DEBUG)
#define VMK_DEBUG_ONLY(x) x
#else
#define VMK_DEBUG_ONLY(x)
#endif
2015-10-23 19:21:55 +00:00
#endif /* _VMKAPI_COMPILER_H_ */
/** @} */
2015-10-23 19:48:45 +00:00
/** @} */