Use faster byte swapping when compiling with MSVC
[git/dscho.git] / compat / bswap.h
blob279e0b48b15e091fc0ca975c3efbd461ab02c149
1 /*
2 * Let's make sure we always have a sane definition for ntohl()/htonl().
3 * Some libraries define those as a function call, just to perform byte
4 * shifting, bringing significant overhead to what should be a simple
5 * operation.
6 */
8 /*
9 * Default version that the compiler ought to optimize properly with
10 * constant values.
12 static inline uint32_t default_swab32(uint32_t val)
14 return (((val & 0xff000000) >> 24) |
15 ((val & 0x00ff0000) >> 8) |
16 ((val & 0x0000ff00) << 8) |
17 ((val & 0x000000ff) << 24));
20 #if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
22 #define bswap32(x) ({ \
23 uint32_t __res; \
24 if (__builtin_constant_p(x)) { \
25 __res = default_swab32(x); \
26 } else { \
27 __asm__("bswap %0" : "=r" (__res) : "0" (x)); \
28 } \
29 __res; })
31 #elif defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64))
33 #include <stdlib.h>
35 #define bswap32(x) _byteswap_ulong(x)
37 #endif
39 #ifdef bswap32
41 #undef ntohl
42 #undef htonl
43 #define ntohl(x) bswap32(x)
44 #define htonl(x) bswap32(x)
46 #endif