summaryrefslogtreecommitdiffstats
path: root/src/vppinfra/vector_iwmmxt.h
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2018-02-20 12:34:40 +0100
committerDave Barach <openvpp@barachs.net>2018-02-20 21:11:06 +0000
commit6525c7f9022fbed15c519872833097eb8607118b (patch)
treec9b1632a16ae1f724d48b1a5bdb2aefab8634e9d /src/vppinfra/vector_iwmmxt.h
parentad099335c1c2de17fb0b3b29b008ef8623ee93c0 (diff)
vppinfra: autogerate vector typedefs and basic inline functions
Change-Id: Ie9f611fa6a962b0937245f5cc949571ba11c5604 Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vppinfra/vector_iwmmxt.h')
-rw-r--r--src/vppinfra/vector_iwmmxt.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/vppinfra/vector_iwmmxt.h b/src/vppinfra/vector_iwmmxt.h
index 8e662045655..6fecb1ab71b 100644
--- a/src/vppinfra/vector_iwmmxt.h
+++ b/src/vppinfra/vector_iwmmxt.h
@@ -77,33 +77,6 @@ u32x2_interleave_lo (u32x2 a, u32x2 b)
return __builtin_arm_wunpckilw (a, b);
}
-always_inline u32x2
-u32x2_splat (u32 a)
-{
- u32x2 x = { a };
- x = u32x2_interleave_lo (x, x);
- return x;
-}
-
-always_inline u16x4
-u16x4_splat (u16 a)
-{
- u32 t = (u32) a | ((u32) a << 16);
- return u32x2_splat (t);
-}
-
-always_inline u8x8
-u8x8_splat (u8 a)
-{
- u32 t = (u32) a | ((u32) a << 8);
- t |= t << 16;
- return u32x2_splat (t);
-}
-
-#define i32x2_splat u32x2_splat
-#define i16x4_splat u16x4_splat
-#define i8x8_splat u8x8_splat
-
/* 64 bit shifts. */
/* As of July 2008 the __builtin_arm shifts cause gcc-4.3.1 to crash