X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvppinfra%2Fcrc32.h;h=5f4d94f3847472667c7391b7ed230c12c9349639;hb=111add7e5d6581bb4eca05cc862a651ff6a09792;hp=242278ff24146c4611eaef6a41929361e64be21c;hpb=9e12d7763d542067a9725b86d40d07d6b7bd7433;p=vpp.git diff --git a/src/vppinfra/crc32.h b/src/vppinfra/crc32.h index 242278ff241..5f4d94f3847 100644 --- a/src/vppinfra/crc32.h +++ b/src/vppinfra/crc32.h @@ -22,6 +22,9 @@ #define clib_crc32c_uses_intrinsics #include +#define crc32_u64 _mm_crc32_u64 +#define crc32_u32 _mm_crc32_u32 + static_always_inline u32 clib_crc32c (u8 * s, int len) { @@ -33,7 +36,9 @@ clib_crc32c (u8 * s, int len) #else /* workaround weird GCC bug when using _mm_crc32_u32 which happens with -O2 optimization */ +#if !defined (__i686__) volatile ("":::"memory"); +#endif #endif for (; len >= 4; len -= 4, s += 4) @@ -52,6 +57,10 @@ clib_crc32c (u8 * s, int len) #define clib_crc32c_uses_intrinsics #include + +#define crc32_u64 __crc32cd +#define crc32_u32 __crc32cw + static_always_inline u32 clib_crc32c (u8 * s, int len) {