Cthulhu  0.2.10
Cthulhu compiler collection
endian.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #include "endian/endian.h"
4 
5 #include "base/panic.h"
6 
7 // _byteswap_ushort, _byteswap_ulong, _byteswap_uint64
8 #if defined(_MSC_VER)
9 # include <stdlib.h> // IWYU pragma: keep
10 #endif
11 
13 uint16_t endian_swap16(uint16_t value)
14 {
15  return CT_BSWAP_U16(value);
16 }
17 
19 uint32_t endian_swap32(uint32_t value)
20 {
21  return CT_BSWAP_U32(value);
22 }
23 
25 uint64_t endian_swap64(uint64_t value)
26 {
27  return CT_BSWAP_U64(value);
28 }
29 
31 uint16_t native_order16(uint16_t value, endian_t order)
32 {
33  CTASSERTF(order < eEndianCount, "invalid endian order: %d", order);
34  return (order == eEndianNative) ? value : endian_swap16(value);
35 }
36 
38 uint32_t native_order32(uint32_t value, endian_t order)
39 {
40  CTASSERTF(order < eEndianCount, "invalid endian order: %d", order);
41  return (order == eEndianNative) ? value : endian_swap32(value);
42 }
43 
45 uint64_t native_order64(uint64_t value, endian_t order)
46 {
47  CTASSERTF(order < eEndianCount, "invalid endian order: %d", order);
48  return (order == eEndianNative) ? value : endian_swap64(value);
49 }
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
#define CT_BSWAP_U16(x)
Definition: compiler.h:150
#define CT_BSWAP_U64(x)
Definition: compiler.h:152
#define CT_BSWAP_U32(x)
Definition: compiler.h:151
endian_t
endianess enum
Definition: endian.h:43
STA_DECL uint16_t endian_swap16(uint16_t value)
swap the endianess of a 16-bit value
Definition: endian.c:13
STA_DECL uint64_t endian_swap64(uint64_t value)
swap the endianess of a 64-bit value
Definition: endian.c:25
STA_DECL uint64_t native_order64(uint64_t value, endian_t order)
convert a 64-bit value of a given endianess to the native endianess
Definition: endian.c:45
STA_DECL uint32_t endian_swap32(uint32_t value)
swap the endianess of a 32-bit value
Definition: endian.c:19
STA_DECL uint16_t native_order16(uint16_t value, endian_t order)
convert a 16-bit value of a given endianess to the native endianess
Definition: endian.c:31
STA_DECL uint32_t native_order32(uint32_t value, endian_t order)
convert a 32-bit value of a given endianess to the native endianess
Definition: endian.c:38
@ eEndianCount
Definition: endian.h:47
#define CTASSERTF(expr,...)
assert a condition with a message and optional format arguments
Definition: panic.h:116