Fixed memory leaks in test suite
[libgit2.git] / src / bswap.h
blobb3e8a0abbf795114ca87ef5e714d0d2f36b84f04
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 #include "common.h"
11 * Default version that the compiler ought to optimize properly with
12 * constant values.
14 GIT_INLINE(uint32_t) default_swab32(uint32_t val)
16 return (((val & 0xff000000) >> 24) |
17 ((val & 0x00ff0000) >> 8) |
18 ((val & 0x0000ff00) << 8) |
19 ((val & 0x000000ff) << 24));
22 #undef bswap32
24 #if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
26 #define bswap32(x) ({ \
27 uint32_t __res; \
28 if (__builtin_constant_p(x)) { \
29 __res = default_swab32(x); \
30 } else { \
31 __asm__("bswap %0" : "=r" (__res) : "0" ((uint32_t)(x))); \
32 } \
33 __res; })
35 #elif defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64))
37 #include <stdlib.h>
39 #define bswap32(x) _byteswap_ulong(x)
41 #endif
43 #ifdef bswap32
45 #undef ntohl
46 #undef htonl
47 #define ntohl(x) bswap32(x)
48 #define htonl(x) bswap32(x)
50 #endif