33 #ifndef __SIM_BYTE_SWAP_HH__
34 #define __SIM_BYTE_SWAP_HH__
38 #include "enums/ByteOrder.hh"
41 #if defined(__linux__)
48 #include <sys/isa_defs.h>
50 #include <machine/endian.h>
53 #if defined(__APPLE__)
54 #include <libkern/OSByteOrder.h>
62 #if defined(__linux__)
64 #elif defined(__APPLE__)
65 return OSSwapInt64(
x);
67 return (uint64_t)((((uint64_t)(
x) & 0xff) << 56) |
68 ((uint64_t)(
x) & 0xff00
ULL) << 40 |
69 ((uint64_t)(
x) & 0xff0000ULL) << 24 |
70 ((uint64_t)(
x) & 0xff000000
ULL) << 8 |
71 ((uint64_t)(
x) & 0xff00000000ULL) >> 8 |
72 ((uint64_t)(
x) & 0xff0000000000
ULL) >> 24 |
73 ((uint64_t)(
x) & 0xff000000000000ULL) >> 40 |
74 ((uint64_t)(
x) & 0xff00000000000000
ULL) >> 56) ;
81 #if defined(__linux__)
83 #elif defined(__APPLE__)
84 return OSSwapInt32(
x);
86 return (uint32_t)(((uint32_t)(
x) & 0xff) << 24 |
87 ((uint32_t)(
x) & 0xff00) << 8 | ((uint32_t)(
x) & 0xff0000) >> 8 |
88 ((uint32_t)(
x) & 0xff000000) >> 24);
95 #if defined(__linux__)
97 #elif defined(__APPLE__)
98 return OSSwapInt16(
x);
100 return (uint16_t)(((uint16_t)(
x) & 0xff) << 8 |
101 ((uint16_t)(
x) & 0xff00) >> 8);
109 template <
typename T>
113 else if (
sizeof(T) == 4)
115 else if (
sizeof(T) == 2)
117 else if (
sizeof(T) == 1)
120 panic(
"Can't byte-swap values larger than 64 bits");
123 template <
typename T,
size_t N>
124 inline std::array<T, N>
139 #if (defined(_BIG_ENDIAN) || !defined(_LITTLE_ENDIAN)) && BYTE_ORDER == BIG_ENDIAN
143 template <
typename T>
inline T
htobe(T value) {
return value;}
144 template <
typename T>
inline T
betoh(T value) {
return value;}
145 #elif defined(_LITTLE_ENDIAN) || BYTE_ORDER == LITTLE_ENDIAN
147 template <
typename T>
inline T
htole(T value) {
return value;}
148 template <
typename T>
inline T
letoh(T value) {
return value;}
149 template <
typename T>
inline T
htobe(T value) {
return swap_byte(value);}
150 template <
typename T>
inline T
betoh(T value) {
return swap_byte(value);}
152 #error Invalid Endianess
155 template <
typename T>
156 inline T
htog(T value, ByteOrder guest_byte_order)
158 return guest_byte_order == ByteOrder::big ?
162 template <
typename T>
163 inline T
gtoh(T value, ByteOrder guest_byte_order)
165 return guest_byte_order == ByteOrder::big ?
169 #endif // __SIM_BYTE_SWAP_HH__