GNU Radio Manual and C++ API Reference  3.7.4.1
The Free & Open Software Radio Ecosystem
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
volk_16ic_deinterleave_real_8i.h
Go to the documentation of this file.
1 #ifndef INCLUDED_volk_16ic_deinterleave_real_8i_a_H
2 #define INCLUDED_volk_16ic_deinterleave_real_8i_a_H
3 
4 #include <inttypes.h>
5 #include <stdio.h>
6 
7 #ifdef LV_HAVE_SSSE3
8 #include <tmmintrin.h>
9 /*!
10  \brief Deinterleaves the complex 16 bit vector into 8 bit I vector data
11  \param complexVector The complex input vector
12  \param iBuffer The I buffer output data
13  \param num_points The number of complex data values to be deinterleaved
14 */
15 static inline void volk_16ic_deinterleave_real_8i_a_ssse3(int8_t* iBuffer, const lv_16sc_t* complexVector, unsigned int num_points){
16  unsigned int number = 0;
17  const int8_t* complexVectorPtr = (int8_t*)complexVector;
18  int8_t* iBufferPtr = iBuffer;
19  __m128i iMoveMask1 = _mm_set_epi8(0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 13, 12, 9, 8, 5, 4, 1, 0);
20  __m128i iMoveMask2 = _mm_set_epi8(13, 12, 9, 8, 5, 4, 1, 0, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80);
21  __m128i complexVal1, complexVal2, complexVal3, complexVal4, iOutputVal;
22 
23  unsigned int sixteenthPoints = num_points / 16;
24 
25  for(number = 0; number < sixteenthPoints; number++){
26  complexVal1 = _mm_load_si128((__m128i*)complexVectorPtr); complexVectorPtr += 16;
27  complexVal2 = _mm_load_si128((__m128i*)complexVectorPtr); complexVectorPtr += 16;
28 
29  complexVal3 = _mm_load_si128((__m128i*)complexVectorPtr); complexVectorPtr += 16;
30  complexVal4 = _mm_load_si128((__m128i*)complexVectorPtr); complexVectorPtr += 16;
31 
32  complexVal1 = _mm_shuffle_epi8(complexVal1, iMoveMask1);
33  complexVal2 = _mm_shuffle_epi8(complexVal2, iMoveMask2);
34 
35  complexVal1 = _mm_or_si128(complexVal1, complexVal2);
36 
37  complexVal3 = _mm_shuffle_epi8(complexVal3, iMoveMask1);
38  complexVal4 = _mm_shuffle_epi8(complexVal4, iMoveMask2);
39 
40  complexVal3 = _mm_or_si128(complexVal3, complexVal4);
41 
42 
43  complexVal1 = _mm_srai_epi16(complexVal1, 8);
44  complexVal3 = _mm_srai_epi16(complexVal3, 8);
45 
46  iOutputVal = _mm_packs_epi16(complexVal1, complexVal3);
47 
48  _mm_store_si128((__m128i*)iBufferPtr, iOutputVal);
49 
50  iBufferPtr += 16;
51  }
52 
53  number = sixteenthPoints * 16;
54  int16_t* int16ComplexVectorPtr = (int16_t*)complexVectorPtr;
55  for(; number < num_points; number++){
56  *iBufferPtr++ = ((int8_t)(*int16ComplexVectorPtr++ >> 8));
57  int16ComplexVectorPtr++;
58  }
59 }
60 #endif /* LV_HAVE_SSSE3 */
61 
62 #ifdef LV_HAVE_GENERIC
63 /*!
64  \brief Deinterleaves the complex 16 bit vector into 8 bit I vector data
65  \param complexVector The complex input vector
66  \param iBuffer The I buffer output data
67  \param num_points The number of complex data values to be deinterleaved
68 */
69 static inline void volk_16ic_deinterleave_real_8i_generic(int8_t* iBuffer, const lv_16sc_t* complexVector, unsigned int num_points){
70  unsigned int number = 0;
71  int16_t* complexVectorPtr = (int16_t*)complexVector;
72  int8_t* iBufferPtr = iBuffer;
73  for(number = 0; number < num_points; number++){
74  *iBufferPtr++ = ((int8_t)(*complexVectorPtr++ >> 8));
75  complexVectorPtr++;
76  }
77 }
78 #endif /* LV_HAVE_GENERIC */
79 
80 #ifdef LV_HAVE_ORC
81 /*!
82  \brief Deinterleaves the complex 16 bit vector into 8 bit I vector data
83  \param complexVector The complex input vector
84  \param iBuffer The I buffer output data
85  \param num_points The number of complex data values to be deinterleaved
86 */
87 extern void volk_16ic_deinterleave_real_8i_a_orc_impl(int8_t* iBuffer, const lv_16sc_t* complexVector, unsigned int num_points);
88 static inline void volk_16ic_deinterleave_real_8i_u_orc(int8_t* iBuffer, const lv_16sc_t* complexVector, unsigned int num_points){
89  volk_16ic_deinterleave_real_8i_a_orc_impl(iBuffer, complexVector, num_points);
90 }
91 #endif /* LV_HAVE_ORC */
92 
93 
94 #endif /* INCLUDED_volk_16ic_deinterleave_real_8i_a_H */
short complex lv_16sc_t
Definition: volk_complex.h:53
signed short int16_t
Definition: stdint.h:76
signed char int8_t
Definition: stdint.h:75