/* * Copyright (c) 2015 Cisco and/or its affiliates. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* Copyright (c) 2005 Eliot Dresselhaus Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef included_vector_sse2_h #define included_vector_sse2_h #include /* for ASSERT */ #include /* 128 bit interleaves. */ always_inline u8x16 u8x16_interleave_hi (u8x16 a, u8x16 b) { return (u8x16) _mm_unpackhi_epi8 ((__m128i) a, (__m128i) b); } always_inline u8x16 u8x16_interleave_lo (u8x16 a, u8x16 b) { return (u8x16) _mm_unpacklo_epi8 ((__m128i) a, (__m128i) b); } always_inline u16x8 u16x8_interleave_hi (u16x8 a, u16x8 b) { return (u16x8) _mm_unpackhi_epi16 ((__m128i) a, (__m128i) b); } always_inline u16x8 u16x8_interleave_lo (u16x8 a, u16x8 b) { return (u16x8) _mm_unpacklo_epi16 ((__m128i) a, (__m128i) b); } always_inline u32x4 u32x4_interleave_hi (u32x4 a, u32x4 b) { return (u32x4) _mm_unpackhi_epi32 ((__m128i) a, (__m128i) b); } always_inline u32x4 u32x4_interleave_lo (u32x4 a, u32x4 b) { return (u32x4) _mm_unpacklo_epi32 ((__m128i) a, (__m128i) b); } always_inline u64x2 u64x2_interleave_hi (u64x2 a, u64x2 b) { return (u64x2) _mm_unpackhi_epi64 ((__m128i) a, (__m128i) b); } always_inline u64x2 u64x2_interleave_lo (u64x2 a, u64x2 b) { return (u64x2) _mm_unpacklo_epi64 ((__m128i) a, (__m128i) b); } /* 64 bit interleaves. */ always_inline u8x8 u8x8_interleave_hi (u8x8 a, u8x8 b) { return (u8x8) _m_punpckhbw ((__m64) a, (__m64) b); } always_inline u8x8 u8x8_interleave_lo (u8x8 a, u8x8 b) { return (u8x8) _m_punpcklbw ((__m64) a, (__m64) b); } always_inline u16x4 u16x4_interleave_hi (u16x4 a, u16x4 b) { return (u16x4) _m_punpckhwd ((__m64) a, (__m64) b); } always_inline u16x4 u16x4_interleave_lo (u16x4 a, u16x4 b) { return (u16x4) _m_punpcklwd ((__m64) a, (__m64) b); } always_inline u32x2 u32x2_interleave_hi (u32x2 a, u32x2 b) { return (u32x2) _m_punpckhdq ((__m64) a, (__m64) b); } always_inline u32x2 u32x2_interleave_lo (u32x2 a, u32x2 b) { return (u32x2) _m_punpckldq ((__m64) a, (__m64) b); } /* 128 bit packs. */ always_inline u8x16 u16x8_pack (u16x8 lo, u16x8 hi) { return (u8x16) _mm_packus_epi16 ((__m128i) lo, (__m128i) hi); } always_inline i8x16 i16x8_pack (i16x8 lo, i16x8 hi) { return (i8x16) _mm_packs_epi16 ((__m128i) lo, (__m128i) hi); } always_inline u16x8 u32x4_pack (u32x4 lo, u32x4 hi) { return (u16x8) _mm_packs_epi32 ((__m128i) lo, (__m128i) hi); } /* 64 bit packs. */ always_inline u8x8 u16x4_pack (u16x4 lo, u16x4 hi) { return (u8x8) _m_packuswb ((__m64) lo, (__m64) hi); } always_inline i8x8 i16x4_pack (i16x4 lo, i16x4 hi) { return (i8x8) _m_packsswb ((__m64) lo, (__m64) hi); } always_inline u16x4 u32x2_pack (u32x2 lo, u32x2 hi) { return (u16x4) _m_packssdw ((__m64) lo, (__m64) hi); } always_inline i16x4 i32x2_pack (i32x2 lo, i32x2 hi) { return (i16x4) _m_packssdw ((__m64) lo, (__m64) hi); } #ifndef __ICC always_inline u64x2 u64x2_read_lo (u64x2 x, u64 * a) { return (u64x2) _mm_loadl_pi ((__m128) x, (__m64 *) a); } always_inline u64x2 u64x2_read_hi (u64x2 x, u64 * a) { return (u64x2) _mm_loadh_pi ((__m128) x, (__m64 *) a); } always_inline void u64x2_write_lo (u64x2 x, u64 * a) { _mm_storel_pi ((__m64 *) a, (__m128) x); } always_inline void u64x2_write_hi (u64x2 x, u64 * a) { _mm_storeh_pi ((__m64 *) a, (__m128) x); } #endif /* Unaligned loads/stores. */ #define _(t) \ always_inline void t##_store_unaligned (t x, t * a) \ { _mm_storeu_si128 ((__m128i *) a, (__m128i) x); } \ always_inline t t##_load_unaligned (t * a) \ { return (t) _mm_loadu_si128 ((__m128i *) a); } _(u8x1
Test Framework Documentation    {#test_framework_doc}
============================

PyDoc generated documentation for the "make test" framework is available for
the following releases:

- [Test framework documentation for VPP 20.01](https://docs.fd.io/vpp/20.01/vpp_make_test/html)
- [Test framework documentation for VPP 19.08](https://docs.fd.io/vpp/19.08/vpp_make_test/html)
- [Test framework documentation for VPP 19.04](https://docs.fd.io/vpp/19.04/vpp_make_test/html)
- [Test framework documentation for VPP 19.01](https://docs.fd.io/vpp/19.01/vpp_make_test/html)
- [Test framework documentation for VPP 18.10](https://docs.fd.io/vpp/18.10/vpp_make_test/html)
- [Test framework documentation for VPP 18.07](https://docs.fd.io/vpp/18.07/vpp_make_test/html)
- [Test framework documentation for VPP 18.04](https://docs.fd.io/vpp/18.04/vpp_make_t