aboutsummaryrefslogtreecommitdiff
path: root/include/platform.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/platform.h')
-rw-r--r--include/platform.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/platform.h b/include/platform.h
index dcc61a77b..a134a9e42 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -208,6 +208,7 @@ typedef uint32_t bb__aliased_uint32_t FIX_ALIASING;
208# define move_from_unaligned_int(v, intp) ((v) = *(bb__aliased_int*)(intp)) 208# define move_from_unaligned_int(v, intp) ((v) = *(bb__aliased_int*)(intp))
209# define move_from_unaligned16(v, u16p) ((v) = *(bb__aliased_uint16_t*)(u16p)) 209# define move_from_unaligned16(v, u16p) ((v) = *(bb__aliased_uint16_t*)(u16p))
210# define move_from_unaligned32(v, u32p) ((v) = *(bb__aliased_uint32_t*)(u32p)) 210# define move_from_unaligned32(v, u32p) ((v) = *(bb__aliased_uint32_t*)(u32p))
211# define move_to_unaligned16(u16p, v) (*(bb__aliased_uint16_t*)(u16p) = (v))
211# define move_to_unaligned32(u32p, v) (*(bb__aliased_uint32_t*)(u32p) = (v)) 212# define move_to_unaligned32(u32p, v) (*(bb__aliased_uint32_t*)(u32p) = (v))
212/* #elif ... - add your favorite arch today! */ 213/* #elif ... - add your favorite arch today! */
213#else 214#else
@@ -215,6 +216,10 @@ typedef uint32_t bb__aliased_uint32_t FIX_ALIASING;
215# define move_from_unaligned_int(v, intp) (memcpy(&(v), (intp), sizeof(int))) 216# define move_from_unaligned_int(v, intp) (memcpy(&(v), (intp), sizeof(int)))
216# define move_from_unaligned16(v, u16p) (memcpy(&(v), (u16p), 2)) 217# define move_from_unaligned16(v, u16p) (memcpy(&(v), (u16p), 2))
217# define move_from_unaligned32(v, u32p) (memcpy(&(v), (u32p), 4)) 218# define move_from_unaligned32(v, u32p) (memcpy(&(v), (u32p), 4))
219# define move_to_unaligned16(u16p, v) do { \
220 uint16_t __t = (v); \
221 memcpy((u16p), &__t, 4); \
222} while (0)
218# define move_to_unaligned32(u32p, v) do { \ 223# define move_to_unaligned32(u32p, v) do { \
219 uint32_t __t = (v); \ 224 uint32_t __t = (v); \
220 memcpy((u32p), &__t, 4); \ 225 memcpy((u32p), &__t, 4); \