[dpdk-dev] [PATCH 09/11] lib: add armv8 rte_vect.h

2015-10-26 Thread Jan Viktorin
On Fri, 23 Oct 2015 15:17:11 +0100 David Hunt wrote: > + > +typedef float32x4_t __m128; > + > +typedef int32x4_t __m128i; > + > +typedef __m128i xmm_t; > + > +#define XMM_SIZE(sizeof(xmm_t)) > +#define XMM_MASK(XMM_SIZE - 1) > + > +typedef union rte_xmm { > + xmm_tx; > +

[dpdk-dev] [PATCH 09/11] lib: add armv8 rte_vect.h

2015-10-23 Thread David Hunt
From: Benjamin Boren Signed-off-by: Benjamin Boren Signed-off-by: David Hunt --- .../common/include/arch/arm64/rte_vect.h | 102 + 1 file changed, 102 insertions(+) create mode 100644 lib/librte_eal/common/include/arch/arm64/rte_vect.h diff --git a/lib/librte_ea