From 63f7e9feb03a290654a23cdd6bd0557852a0b36e Mon Sep 17 00:00:00 2001 From: ehofman Date: Fri, 23 Sep 2005 12:30:25 +0000 Subject: [PATCH] AMD64 and sgi fixes. --- simgear/misc/stdint.hxx | 28 +++++++++++----------------- 1 file changed, 11 insertions(+), 17 deletions(-) diff --git a/simgear/misc/stdint.hxx b/simgear/misc/stdint.hxx index aba705d1..75742d0c 100644 --- a/simgear/misc/stdint.hxx +++ b/simgear/misc/stdint.hxx @@ -56,27 +56,25 @@ typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; typedef unsigned __int64 uint64_t; +#elif defined(sgi) +# include #else # include #endif -#include - -inline uint16_t sg_bswap_16(uint16_t b) { - unsigned short x = b; - ulEndianSwap(&x); +inline uint16_t sg_bswap_16(uint16_t x) { + x = (x >> 8) | (x << 8); return x; } -inline uint32_t sg_bswap_32(uint32_t b) { - unsigned x = b; - ulEndianSwap(&x); +inline uint32_t sg_bswap_32(uint32_t x) { + x = ((x >> 8) & 0x00FF00FFL) | ((x << 8) & 0xFF00FF00L); + x = (x >> 16) | (x << 16); return x; } -inline uint64_t sg_bswap_64(uint64_t b) { - uint64_t x = b; +inline uint64_t sg_bswap_64(uint64_t x) { x = ((x >> 8) & 0x00FF00FF00FF00FFLL) | ((x << 8) & 0xFF00FF00FF00FF00LL); x = ((x >> 16) & 0x0000FFFF0000FFFFLL) | ((x << 16) & 0xFFFF0000FFFF0000LL); x = (x >> 32) | (x << 32); @@ -94,13 +92,9 @@ inline bool sgIsBigEndian() { return (*((char *) &sgEndianTest ) == 0); } -inline void sgEndianSwap(unsigned short *x) { ulEndianSwap(x); } -inline void sgEndianSwap(unsigned int *x) { ulEndianSwap(x); } -#if (SIZEOF_LONG_INT == 8) -inline void sgEndianSwap(unsigned long int *x) { *x = sg_bswap_64(*x); } -#else -inline void sgEndianSwap(unsigned long long *x) { *x = sg_bswap_64(*x); } -#endif +inline void sgEndianSwap(uint16_t *x) { *x = sg_bswap_16(*x); } +inline void sgEndianSwap(uint32_t *x) { *x = sg_bswap_32(*x); } +inline void sgEndianSwap(uint64_t *x) { *x = sg_bswap_64(*x); } -- 2.39.2