mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-08-04 02:06:31 -04:00

* Bring in common headers and program code from xpack project * Move program code to programs/ * Move library code to lib/ * GNU89 and MSVC2010 compatibility * Other changes
87 lines
2.5 KiB
C
87 lines
2.5 KiB
C
/*
|
|
* compiler_gcc.h - definitions for the GNU C Compiler. Currently this also
|
|
* handles clang and the Intel C Compiler.
|
|
*/
|
|
|
|
#define GCC_PREREQ(major, minor) \
|
|
(!defined(__clang__) && !defined(__INTEL_COMPILER) && \
|
|
(__GNUC__ > (major) || \
|
|
(__GNUC__ == (major) && __GNUC_MINOR__ >= (minor))))
|
|
|
|
#ifndef __has_attribute
|
|
# define __has_attribute(attribute) 0
|
|
#endif
|
|
#ifndef __has_feature
|
|
# define __has_feature(feature) 0
|
|
#endif
|
|
#ifndef __has_builtin
|
|
# define __has_builtin(builtin) 0
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
# define LIBEXPORT __declspec(dllexport)
|
|
#else
|
|
# define LIBEXPORT __attribute__((visibility("default")))
|
|
#endif
|
|
|
|
#define inline inline
|
|
#define forceinline inline __attribute__((always_inline))
|
|
#define restrict __restrict__
|
|
#define likely(expr) __builtin_expect(!!(expr), 1)
|
|
#define unlikely(expr) __builtin_expect(!!(expr), 0)
|
|
#define prefetchr(addr) __builtin_prefetch((addr), 0)
|
|
#define prefetchw(addr) __builtin_prefetch((addr), 1)
|
|
#define _aligned_attribute(n) __attribute__((aligned(n)))
|
|
|
|
#define COMPILER_SUPPORTS_TARGET_FUNCTION_ATTRIBUTE \
|
|
(GCC_PREREQ(4, 4) || __has_attribute(target))
|
|
|
|
#define COMPILER_SUPPORTS_BMI2_TARGET \
|
|
(COMPILER_SUPPORTS_TARGET_FUNCTION_ATTRIBUTE && \
|
|
(GCC_PREREQ(4, 7) || __has_builtin(__builtin_ia32_pdep_di)))
|
|
|
|
/* Newer gcc supports __BYTE_ORDER__. Older gcc doesn't. */
|
|
#ifdef __BYTE_ORDER__
|
|
# define CPU_IS_LITTLE_ENDIAN() (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
|
|
#endif
|
|
|
|
#if GCC_PREREQ(4, 8) || __has_builtin(__builtin_bswap16)
|
|
# define bswap16 __builtin_bswap16
|
|
#endif
|
|
|
|
#if GCC_PREREQ(4, 3) || __has_builtin(__builtin_bswap32)
|
|
# define bswap32 __builtin_bswap32
|
|
#endif
|
|
|
|
#if GCC_PREREQ(4, 3) || __has_builtin(__builtin_bswap64)
|
|
# define bswap64 __builtin_bswap64
|
|
#endif
|
|
|
|
#if defined(__x86_64__) || defined(__i386__) || defined(__ARM_FEATURE_UNALIGNED)
|
|
# define UNALIGNED_ACCESS_IS_FAST 1
|
|
#endif
|
|
|
|
/* With gcc, we can access unaligned memory through 'packed' structures. */
|
|
#define DEFINE_UNALIGNED_TYPE(type) \
|
|
\
|
|
struct type##unaligned { \
|
|
type v; \
|
|
} __attribute__((packed)); \
|
|
\
|
|
static forceinline type \
|
|
load_##type##_unaligned(const void *p) \
|
|
{ \
|
|
return ((const struct type##unaligned *)p)->v; \
|
|
} \
|
|
\
|
|
static forceinline void \
|
|
store_##type##_unaligned(type v, void *p) \
|
|
{ \
|
|
((struct type##unaligned *)p)->v = v; \
|
|
}
|
|
|
|
#define bsr32(n) (31 - __builtin_clz(n))
|
|
#define bsr64(n) (63 - __builtin_clzll(n))
|
|
#define bsf32(n) __builtin_ctz(n)
|
|
#define bsf64(n) __builtin_ctzll(n)
|