Files
mxwcore-legion/dep/cds/cds/compiler/icl/defs.h
2023-11-05 15:26:19 -05:00

171 lines
5.6 KiB
C

/*
This file is a part of libcds - Concurrent Data Structures library
(C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2017
Source code repo: http://github.com/khizmax/libcds/
Download: http://sourceforge.net/projects/libcds/files/
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef CDSLIB_COMPILER_ICL_DEFS_H
#define CDSLIB_COMPILER_ICL_DEFS_H
//@cond
// Compiler version
#ifdef __ICL
# define CDS_COMPILER_VERSION __ICL
#else
# define CDS_COMPILER_VERSION __INTEL_COMPILER
#endif
// Compiler name
// Supported compilers: MS VC 2008, 2010, 2012
//
# define CDS_COMPILER__NAME "Intel C++"
# define CDS_COMPILER__NICK "icl"
// OS name
#if defined(_WIN64)
# define CDS_OS_INTERFACE CDS_OSI_WINDOWS
# define CDS_OS_TYPE CDS_OS_WIN64
# define CDS_OS__NAME "Win64"
# define CDS_OS__NICK "Win64"
#elif defined(_WIN32)
# define CDS_OS_INTERFACE CDS_OSI_WINDOWS
# define CDS_OS_TYPE CDS_OS_WIN32
# define CDS_OS__NAME "Win32"
# define CDS_OS__NICK "Win32"
#elif defined( __linux__ )
# define CDS_OS_INTERFACE CDS_OSI_UNIX
# define CDS_OS_TYPE CDS_OS_LINUX
# define CDS_OS__NAME "linux"
# define CDS_OS__NICK "linux"
#endif
// Processor architecture
#if defined(_M_X64) || defined(_M_AMD64) || defined(__amd64__) || defined(__amd64)
# define CDS_BUILD_BITS 64
# define CDS_PROCESSOR_ARCH CDS_PROCESSOR_AMD64
# define CDS_PROCESSOR__NAME "AMD64"
# define CDS_PROCESSOR__NICK "amd64"
#elif defined(_M_IX86) || defined(__i386__) || defined(__i386)
# define CDS_BUILD_BITS 32
# define CDS_PROCESSOR_ARCH CDS_PROCESSOR_X86
# define CDS_PROCESSOR__NAME "Intel x86"
# define CDS_PROCESSOR__NICK "x86"
#else
# define CDS_BUILD_BITS -1
# define CDS_PROCESSOR_ARCH CDS_PROCESSOR_UNKNOWN
# define CDS_PROCESSOR__NAME "<<Undefined>>"
# error Intel C++ compiler is supported for x86 only
#endif
#if CDS_OS_INTERFACE == CDS_OSI_WINDOWS
# define __attribute__( _x )
#endif
#if CDS_OS_INTERFACE == CDS_OSI_WINDOWS
# ifdef CDS_BUILD_LIB
# define CDS_EXPORT_API __declspec(dllexport)
# else
# define CDS_EXPORT_API __declspec(dllimport)
# endif
#endif
#if CDS_OS_INTERFACE == CDS_OSI_WINDOWS
# define alignof __alignof
#else
# define alignof __alignof__
#endif
#define CDS_CONSTEXPR constexpr
#define CDS_NOEXCEPT_SUPPORT noexcept
#define CDS_NOEXCEPT_SUPPORT_(expr) noexcept(expr)
// C++11 inline namespace
#define CDS_CXX11_INLINE_NAMESPACE_SUPPORT
// Inheriting constructors
#define CDS_CXX11_INHERITING_CTOR
// *************************************************
// Alignment macro
#if CDS_OS_INTERFACE == CDS_OSI_WINDOWS
# define CDS_TYPE_ALIGNMENT(n) __declspec( align(n))
# define CDS_DATA_ALIGNMENT(n) __declspec( align(n))
# define CDS_CLASS_ALIGNMENT(n) __declspec( align(n))
#else
# define CDS_TYPE_ALIGNMENT(n) __attribute__ ((aligned (n)))
# define CDS_CLASS_ALIGNMENT(n) __attribute__ ((aligned (n)))
# define CDS_DATA_ALIGNMENT(n) __attribute__ ((aligned (n)))
#endif
// Attributes
#if CDS_OS_INTERFACE == CDS_OSI_WINDOWS
# define CDS_DEPRECATED( reason ) __declspec(deprecated( reason ))
# define CDS_NORETURN __declspec(noreturn)
#else
# define CDS_DEPRECATED( reason ) __attribute__((deprecated( reason )))
# define CDS_NORETURN __attribute__((__noreturn__))
#endif
// Exceptions
#if CDS_OS_INTERFACE == CDS_OSI_WINDOWS
# if defined( _CPPUNWIND )
# define CDS_EXCEPTION_ENABLED
# endif
#else
# if defined( __EXCEPTIONS ) && __EXCEPTIONS == 1
# define CDS_EXCEPTION_ENABLED
# endif
#endif
// Byte order
#if !defined(CDS_ARCH_LITTLE_ENDIAN) && !defined(CDS_ARCH_BIG_ENDIAN)
# if CDS_OS_INTERFACE == CDS_OSI_WINDOWS
# define CDS_ARCH_LITTLE_ENDIAN
# else
# ifdef __BYTE_ORDER__
# if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
# define CDS_ARCH_LITTLE_ENDIAN
# elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
# define CDS_ARCH_BIG_ENDIAN
# endif
# else
# warning "Undefined byte order for current architecture (no __BYTE_ORDER__ preprocessor definition)"
# endif
# endif
#endif
// Sanitizer attributes (not supported)
#define CDS_SUPPRESS_SANITIZE( ... )
#include <cds/compiler/icl/compiler_barriers.h>
//@endcond
#endif // #ifndef CDSLIB_COMPILER_VC_DEFS_H