build: add scalar (no-simd) march variant

for testing purposes, disabled by default

Type: improvement
Signed-off-by: Damjan Marion <damarion@cisco.com>
Change-Id: Id616e2b3b21ae0f0b44e2b55ecefd501afacc7f2
This commit is contained in:
Damjan Marion
2023-04-17 09:38:11 +00:00
committed by Andrew Yourtchenko
parent b42d27ad48
commit 98f7f0a873
4 changed files with 18 additions and 3 deletions

View File

@@ -131,6 +131,11 @@ elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "amd64.*|x86_64.*|AMD64.*")
OFF
)
add_vpp_march_variant(scalar
FLAGS -march=core2 -mno-mmx -mno-sse
OFF
)
if (GNU_ASSEMBLER_AVX512_BUG)
message(WARNING "AVX-512 multiarch variant(s) disabled due to GNU Assembler bug")
else()

View File

@@ -21,6 +21,7 @@
#if defined(__x86_64__)
#define foreach_march_variant \
_ (scalar, "Generic (SIMD disabled)") \
_ (hsw, "Intel Haswell") \
_ (trm, "Intel Tremont") \
_ (skx, "Intel Skylake (server) / Cascade Lake") \
@@ -241,6 +242,12 @@ clib_cpu_supports_aes ()
#endif
}
static inline int
clib_cpu_march_priority_scalar ()
{
return 1;
}
static inline int
clib_cpu_march_priority_spr ()
{

View File

@@ -38,13 +38,16 @@ clib_memcpy8 (void *d, void *s)
*(u64u *) d = *(u64u *) s;
}
#ifdef CLIB_HAVE_VEC128
static_always_inline void
clib_memcpy16 (void *d, void *s)
{
#ifdef CLIB_HAVE_VEC128
*(u8x16u *) d = *(u8x16u *) s;
}
#else
clib_memcpy8 (d, s);
clib_memcpy8 (d + 8, s + 8);
#endif
}
#ifdef CLIB_HAVE_VEC256
static_always_inline void

View File

@@ -6,7 +6,7 @@
#include <vppinfra/format.h>
#include <vppinfra/test/test.h>
#include <vppinfra/vector/mask_compare.h>
#include <vppinfra/memcpy_x86_64.h>
__test_funct_fn void
wrapper (u8 *dst, u8 *src, uword n)