X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvppinfra%2Fbyte_order.h;h=4cdc06fb3296d4cef452fb275a9f18a773479e95;hb=8aa9aaff8e1fcf9e116e33e818b45998da71c363;hp=b263538c6fe4791d39c2b8c6076b338c27410f12;hpb=7cd468a3d7dee7d6c92f69a0bb7061ae208ec727;p=vpp.git diff --git a/src/vppinfra/byte_order.h b/src/vppinfra/byte_order.h index b263538c6fe..4cdc06fb329 100644 --- a/src/vppinfra/byte_order.h +++ b/src/vppinfra/byte_order.h @@ -56,6 +56,13 @@ always_inline u16 clib_byte_swap_u16 (u16 x) { +#if defined (__aarch64__) + if (!__builtin_constant_p (x)) + { + __asm__ ("rev16 %w0, %w0":"+r" (x)); + return x; + } +#endif return (x >> 8) | (x << 8); } @@ -74,6 +81,12 @@ clib_byte_swap_u32 (u32 x) asm volatile ("bswap %0":"=r" (x):"0" (x)); return x; } +#elif defined (__aarch64__) + if (!__builtin_constant_p (x)) + { + __asm__ ("rev %w0, %w0":"+r" (x)); + return x; + } #endif return ((x << 24) | ((x & 0xff00) << 8) | ((x >> 8) & 0xff00) | (x >> 24)); } @@ -93,6 +106,12 @@ clib_byte_swap_u64 (u64 x) asm volatile ("bswapq %0":"=r" (x):"0" (x)); return x; } +#elif defined (__aarch64__) + if (!__builtin_constant_p (x)) + { + __asm__ ("rev %0, %0":"+r" (x)); + return x; + } #endif #define _(x,n,i) \ ((((x) >> (8*(i))) & 0xff) << (8*((n)-(i)-1)))