diff options
Diffstat (limited to 'com32/include/netinet/in.h')
-rw-r--r-- | com32/include/netinet/in.h | 48 |
1 files changed, 29 insertions, 19 deletions
diff --git a/com32/include/netinet/in.h b/com32/include/netinet/in.h index 051cc08f..ccf04750 100644 --- a/com32/include/netinet/in.h +++ b/com32/include/netinet/in.h @@ -4,37 +4,47 @@ /* COM32 will be running on an i386 platform */ #include <stdint.h> +#include <klibc/compiler.h> -static inline uint16_t __htons(uint16_t v) +#define __htons_macro(v) ((uint16_t) \ + (((uint16_t)(v) << 8) | \ + ((uint16_t)(v) >> 8))) + +static inline __constfunc uint16_t __htons(uint16_t v) { - return ((v) << 8) | ((v) >> 8); + return __htons_macro(v); } -#define htons(x) __htons(x) -#define ntohs(x) __htons(x) +#define htons(x) (__builtin_constant_p(x) ? __htons_macro(x) : __htons(x)) +#define ntohs(x) htons(x) + +#define __htonl_macro(v) ((uint32_t) \ + ((((uint32_t)(v) & 0x000000ff) << 24) | \ + (((uint32_t)(v) & 0x0000ff00) << 8) | \ + (((uint32_t)(v) & 0x00ff0000) >> 8) | \ + (((uint32_t)(v) & 0xff000000) >> 24))) -static inline uint32_t __htonl(uint32_t v) +static inline __constfunc uint32_t __htonl(uint32_t v) { - if (__builtin_constant_p(v)) { - return (((v) & 0x000000ff) << 24) | - (((v) & 0x0000ff00) << 8) | - (((v) & 0x00ff0000) >> 8) | (((v) & 0xff000000) >> 24); - } else { -asm("xchgb %h0,%b0 ; roll $16,%0 ; xchgb %h0,%b0":"+abcd"(v)); - return v; - } + asm("xchgb %h0,%b0 ; roll $16,%0 ; xchgb %h0,%b0" + : "+q" (v)); + return v; } -#define htonl(x) __htonl(x) -#define ntohl(x) __htonl(x) +#define htonl(x) (__builtin_constant_p(x) ? __htonl_macro(x) : __htonl(x)) +#define ntohl(x) htonl(x) + +#define __htonq_macro(v) ((uint64_t) \ + (((uint64_t)__htonl_macro((uint32_t)(v)) << 32) | \ + (__htonl_macro((uint32_t)((uint64_t)(v) >> 32))))) -static inline uint64_t __htonq(uint64_t v) +static inline __constfunc uint64_t __htonq(uint64_t v) { - return ((uint64_t) __htonl(v) << 32) | __htonl(v >> 32); + return ((uint64_t)__htonl(v) << 32) | __htonl(v >> 32); } -#define htonq(x) __htonq(x) -#define ntohq(x) __htonq(x) +#define htonq(x) (__builtin_constant_p(x) ? __htonq_macro(x) : __htonq(x)) +#define ntohq(x) htonq(x) typedef uint32_t in_addr_t; typedef uint16_t in_port_t; |