33 #ifndef __SIM_BYTE_SWAP_HH__
34 #define __SIM_BYTE_SWAP_HH__
37 #if defined(__linux__)
44 #include <sys/isa_defs.h>
46 #include <machine/endian.h>
49 #if defined(__APPLE__)
50 #include <libkern/OSByteOrder.h>
53 #include <type_traits>
56 #include "enums/ByteOrder.hh"
70 #if defined(__linux__)
72 #elif defined(__APPLE__)
73 return OSSwapInt64(
x);
75 return (uint64_t)((((uint64_t)(
x) & 0xff) << 56) |
76 ((uint64_t)(
x) & 0xff00ULL) << 40 |
77 ((uint64_t)(
x) & 0xff0000ULL) << 24 |
78 ((uint64_t)(
x) & 0xff000000ULL) << 8 |
79 ((uint64_t)(
x) & 0xff00000000ULL) >> 8 |
80 ((uint64_t)(
x) & 0xff0000000000ULL) >> 24 |
81 ((uint64_t)(
x) & 0xff000000000000ULL) >> 40 |
82 ((uint64_t)(
x) & 0xff00000000000000ULL) >> 56) ;
89 #if defined(__linux__)
91 #elif defined(__APPLE__)
92 return OSSwapInt32(
x);
94 return (uint32_t)(((uint32_t)(
x) & 0xff) << 24 |
95 ((uint32_t)(
x) & 0xff00) << 8 | ((uint32_t)(
x) & 0xff0000) >> 8 |
96 ((uint32_t)(
x) & 0xff000000) >> 24);
103 #if defined(__linux__)
105 #elif defined(__APPLE__)
106 return OSSwapInt16(
x);
108 return (uint16_t)(((uint16_t)(
x) & 0xff) << 8 |
109 ((uint16_t)(
x) & 0xff00) >> 8);
113 template <
typename T>
114 inline std::enable_if_t<
115 sizeof(T) == 8 && std::is_convertible_v<T, uint64_t>, T>
121 template <
typename T>
122 inline std::enable_if_t<
123 sizeof(T) == 4 && std::is_convertible_v<T, uint32_t>, T>
129 template <
typename T>
130 inline std::enable_if_t<
131 sizeof(T) == 2 && std::is_convertible_v<T, uint16_t>, T>
137 template <
typename T>
138 inline std::enable_if_t<
139 sizeof(T) == 1 && std::is_convertible_v<T, uint8_t>, T>
147 template <
typename T>
148 std::enable_if_t<std::is_same_v<T, vring_used_elem>, T>
150 template <
typename T>
151 std::enable_if_t<std::is_same_v<T, vring_desc>, T>
154 template <
typename T,
size_t N>
155 inline std::array<T, N>
170 #if (defined(_BIG_ENDIAN) || !defined(_LITTLE_ENDIAN)) && BYTE_ORDER == BIG_ENDIAN
174 template <
typename T>
inline T
htobe(T value) {
return value;}
175 template <
typename T>
inline T
betoh(T value) {
return value;}
176 #elif defined(_LITTLE_ENDIAN) || BYTE_ORDER == LITTLE_ENDIAN
178 template <
typename T>
inline T
htole(T value) {
return value;}
179 template <
typename T>
inline T
letoh(T value) {
return value;}
180 template <
typename T>
inline T
htobe(T value) {
return swap_byte(value);}
181 template <
typename T>
inline T
betoh(T value) {
return swap_byte(value);}
183 #error Invalid Endianess
186 template <
typename T>
187 inline T
htog(T value, ByteOrder guest_byte_order)
189 return guest_byte_order == ByteOrder::big ?
193 template <
typename T>
194 inline T
gtoh(T value, ByteOrder guest_byte_order)
196 return guest_byte_order == ByteOrder::big ?
202 #endif // __SIM_BYTE_SWAP_HH__