You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
217 lines
5.8 KiB
217 lines
5.8 KiB
// Copyright 2017 Google LLC
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef CPU_FEATURES_INCLUDE_CPU_FEATURES_MACROS_H_
|
|
#define CPU_FEATURES_INCLUDE_CPU_FEATURES_MACROS_H_
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Architectures
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#if defined(__pnacl__) || defined(__CLR_VER)
|
|
#define CPU_FEATURES_ARCH_VM
|
|
#endif
|
|
|
|
#if (defined(_M_IX86) || defined(__i386__)) && !defined(CPU_FEATURES_ARCH_VM)
|
|
#define CPU_FEATURES_ARCH_X86_32
|
|
#endif
|
|
|
|
#if (defined(_M_X64) || defined(__x86_64__)) && !defined(CPU_FEATURES_ARCH_VM)
|
|
#define CPU_FEATURES_ARCH_X86_64
|
|
#endif
|
|
|
|
#if defined(CPU_FEATURES_ARCH_X86_32) || defined(CPU_FEATURES_ARCH_X86_64)
|
|
#define CPU_FEATURES_ARCH_X86
|
|
#endif
|
|
|
|
#if (defined(__arm__) || defined(_M_ARM))
|
|
#define CPU_FEATURES_ARCH_ARM
|
|
#endif
|
|
|
|
#if defined(__aarch64__)
|
|
#define CPU_FEATURES_ARCH_AARCH64
|
|
#endif
|
|
|
|
#if (defined(CPU_FEATURES_ARCH_AARCH64) || defined(CPU_FEATURES_ARCH_ARM))
|
|
#define CPU_FEATURES_ARCH_ANY_ARM
|
|
#endif
|
|
|
|
#if defined(__mips64)
|
|
#define CPU_FEATURES_ARCH_MIPS64
|
|
#endif
|
|
|
|
#if defined(__mips__) && !defined(__mips64) // mips64 also declares __mips__
|
|
#define CPU_FEATURES_ARCH_MIPS32
|
|
#endif
|
|
|
|
#if defined(CPU_FEATURES_ARCH_MIPS32) || defined(CPU_FEATURES_ARCH_MIPS64)
|
|
#define CPU_FEATURES_ARCH_MIPS
|
|
#endif
|
|
|
|
#if defined(__powerpc__)
|
|
#define CPU_FEATURES_ARCH_PPC
|
|
#endif
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Os
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#if defined(__linux__)
|
|
#define CPU_FEATURES_OS_LINUX_OR_ANDROID
|
|
#endif
|
|
|
|
#if defined(__ANDROID__)
|
|
#define CPU_FEATURES_OS_ANDROID
|
|
#endif
|
|
|
|
#if (defined(_WIN64) || defined(_WIN32))
|
|
#define CPU_FEATURES_OS_WINDOWS
|
|
#endif
|
|
|
|
#if (defined(__apple__) || defined(__APPLE__) || defined(__MACH__))
|
|
#define CPU_FEATURES_OS_DARWIN
|
|
#endif
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Compilers
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#if defined(__clang__)
|
|
#define CPU_FEATURES_COMPILER_CLANG
|
|
#endif
|
|
|
|
#if defined(__GNUC__) && !defined(__clang__)
|
|
#define CPU_FEATURES_COMPILER_GCC
|
|
#endif
|
|
|
|
#if defined(_MSC_VER)
|
|
#define CPU_FEATURES_COMPILER_MSC
|
|
#endif
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Cpp
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#if defined(__cplusplus)
|
|
#define CPU_FEATURES_START_CPP_NAMESPACE \
|
|
namespace cpu_features { \
|
|
extern "C" {
|
|
#define CPU_FEATURES_END_CPP_NAMESPACE \
|
|
} \
|
|
}
|
|
#else
|
|
#define CPU_FEATURES_START_CPP_NAMESPACE
|
|
#define CPU_FEATURES_END_CPP_NAMESPACE
|
|
#endif
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Compiler flags
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Use the following to check if a feature is known to be available at
|
|
// compile time. See README.md for an example.
|
|
#if defined(CPU_FEATURES_ARCH_X86)
|
|
|
|
#if defined(__AES__)
|
|
#define CPU_FEATURES_COMPILED_X86_AES 1
|
|
#else
|
|
#define CPU_FEATURES_COMPILED_X86_AES 0
|
|
#endif // defined(__AES__)
|
|
|
|
#if defined(__F16C__)
|
|
#define CPU_FEATURES_COMPILED_X86_F16C 1
|
|
#else
|
|
#define CPU_FEATURES_COMPILED_X86_F16C 0
|
|
#endif // defined(__F16C__)
|
|
|
|
#if defined(__BMI__)
|
|
#define CPU_FEATURES_COMPILED_X86_BMI 1
|
|
#else
|
|
#define CPU_FEATURES_COMPILED_X86_BMI 0
|
|
#endif // defined(__BMI__)
|
|
|
|
#if defined(__BMI2__)
|
|
#define CPU_FEATURES_COMPILED_X86_BMI2 1
|
|
#else
|
|
#define CPU_FEATURES_COMPILED_X86_BMI2 0
|
|
#endif // defined(__BMI2__)
|
|
|
|
#if (defined(__SSE__) || (_M_IX86_FP >= 1))
|
|
#define CPU_FEATURES_COMPILED_X86_SSE 1
|
|
#else
|
|
#define CPU_FEATURES_COMPILED_X86_SSE 0
|
|
#endif
|
|
|
|
#if (defined(__SSE2__) || (_M_IX86_FP >= 2))
|
|
#define CPU_FEATURES_COMPILED_X86_SSE2 1
|
|
#else
|
|
#define CPU_FEATURES_COMPILED_X86_SSE2 0
|
|
#endif
|
|
|
|
#if defined(__SSE3__)
|
|
#define CPU_FEATURES_COMPILED_X86_SSE3 1
|
|
#else
|
|
#define CPU_FEATURES_COMPILED_X86_SSE3 0
|
|
#endif // defined(__SSE3__)
|
|
|
|
#if defined(__SSSE3__)
|
|
#define CPU_FEATURES_COMPILED_X86_SSSE3 1
|
|
#else
|
|
#define CPU_FEATURES_COMPILED_X86_SSSE3 0
|
|
#endif // defined(__SSSE3__)
|
|
|
|
#if defined(__SSE4_1__)
|
|
#define CPU_FEATURES_COMPILED_X86_SSE4_1 1
|
|
#else
|
|
#define CPU_FEATURES_COMPILED_X86_SSE4_1 0
|
|
#endif // defined(__SSE4_1__)
|
|
|
|
#if defined(__SSE4_2__)
|
|
#define CPU_FEATURES_COMPILED_X86_SSE4_2 1
|
|
#else
|
|
#define CPU_FEATURES_COMPILED_X86_SSE4_2 0
|
|
#endif // defined(__SSE4_2__)
|
|
|
|
#if defined(__AVX__)
|
|
#define CPU_FEATURES_COMPILED_X86_AVX 1
|
|
#else
|
|
#define CPU_FEATURES_COMPILED_X86_AVX 0
|
|
#endif // defined(__AVX__)
|
|
|
|
#if defined(__AVX2__)
|
|
#define CPU_FEATURES_COMPILED_X86_AVX2 1
|
|
#else
|
|
#define CPU_FEATURES_COMPILED_X86_AVX2 0
|
|
#endif // defined(__AVX2__)
|
|
|
|
#endif // defined(CPU_FEATURES_ARCH_X86)
|
|
|
|
#if defined(CPU_FEATURES_ARCH_ANY_ARM)
|
|
#if defined(__ARM_NEON__)
|
|
#define CPU_FEATURES_COMPILED_ANY_ARM_NEON 1
|
|
#else
|
|
#define CPU_FEATURES_COMPILED_ANY_ARM_NEON 0
|
|
#endif // defined(__ARM_NEON__)
|
|
#endif // defined(CPU_FEATURES_ARCH_ANY_ARM)
|
|
|
|
#if defined(CPU_FEATURES_ARCH_MIPS)
|
|
#if defined(__mips_msa)
|
|
#define CPU_FEATURES_COMPILED_MIPS_MSA 1
|
|
#else
|
|
#define CPU_FEATURES_COMPILED_MIPS_MSA 0
|
|
#endif // defined(__mips_msa)
|
|
#endif // defined(CPU_FEATURES_ARCH_MIPS)
|
|
|
|
#endif // CPU_FEATURES_INCLUDE_CPU_FEATURES_MACROS_H_
|