]> git.sesse.net Git - x264/blob - common/x86/util.h
Add CP128/M128 macros using SSE
[x264] / common / x86 / util.h
1 /*****************************************************************************
2  * mc.h: h264 encoder library
3  *****************************************************************************
4  * Copyright (C) 2008 x264 Project
5  *
6  * Authors: Fiona Glaser <fiona@x264.com>
7  *          Loren Merritt <lorenm@u.washington.edu>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef X264_X86_UTIL_H
25 #define X264_X86_UTIL_H
26
27 #ifdef __GNUC__
28
29 #include <xmmintrin.h>
30
31 #define x264_median_mv x264_median_mv_mmxext
32 static ALWAYS_INLINE void x264_median_mv_mmxext( int16_t *dst, int16_t *a, int16_t *b, int16_t *c )
33 {
34     asm(
35         "movd   %1,    %%mm0 \n"
36         "movd   %2,    %%mm1 \n"
37         "movq   %%mm0, %%mm3 \n"
38         "movd   %3,    %%mm2 \n"
39         "pmaxsw %%mm1, %%mm0 \n"
40         "pminsw %%mm3, %%mm1 \n"
41         "pminsw %%mm2, %%mm0 \n"
42         "pmaxsw %%mm1, %%mm0 \n"
43         "movd   %%mm0, %0    \n"
44         :"=m"(*(x264_union32_t*)dst)
45         :"m"(M32( a )), "m"(M32( b )), "m"(M32( c ))
46     );
47 }
48 #define x264_predictor_difference x264_predictor_difference_mmxext
49 static ALWAYS_INLINE int x264_predictor_difference_mmxext( int16_t (*mvc)[2], intptr_t i_mvc )
50 {
51     int sum;
52     static const uint64_t pw_1 = 0x0001000100010001ULL;
53
54     asm(
55         "pxor    %%mm4, %%mm4 \n"
56         "test    $1, %1       \n"
57         "jnz 3f               \n"
58         "movd    -8(%2,%1,4), %%mm0 \n"
59         "movd    -4(%2,%1,4), %%mm3 \n"
60         "psubw   %%mm3, %%mm0 \n"
61         "jmp 2f               \n"
62         "3:                   \n"
63         "dec     %1           \n"
64         "1:                   \n"
65         "movq    -8(%2,%1,4), %%mm0 \n"
66         "psubw   -4(%2,%1,4), %%mm0 \n"
67         "2:                   \n"
68         "sub     $2,    %1    \n"
69         "pxor    %%mm2, %%mm2 \n"
70         "psubw   %%mm0, %%mm2 \n"
71         "pmaxsw  %%mm2, %%mm0 \n"
72         "paddusw %%mm0, %%mm4 \n"
73         "jg 1b                \n"
74         "pmaddwd %4, %%mm4    \n"
75         "pshufw $14, %%mm4, %%mm0 \n"
76         "paddd   %%mm0, %%mm4 \n"
77         "movd    %%mm4, %0    \n"
78         :"=r"(sum), "+r"(i_mvc)
79         :"r"(mvc), "m"(M64( mvc )), "m"(pw_1)
80     );
81     return sum;
82 }
83 #define x264_cabac_mvd_sum x264_cabac_mvd_sum_mmxext
84 static ALWAYS_INLINE uint16_t x264_cabac_mvd_sum_mmxext(uint8_t *mvdleft, uint8_t *mvdtop)
85 {
86     static const uint64_t pb_2    = 0x0202020202020202ULL;
87     static const uint64_t pb_32   = 0x2020202020202020ULL;
88     int amvd;
89     asm(
90         "movd         %1, %%mm0 \n"
91         "movd         %2, %%mm1 \n"
92         "paddb     %%mm1, %%mm0 \n"
93         "pxor      %%mm2, %%mm2 \n"
94         "movq      %%mm0, %%mm1 \n"
95         "pcmpgtb      %3, %%mm0 \n"
96         "pcmpgtb      %4, %%mm1 \n"
97         "psubb     %%mm0, %%mm2 \n"
98         "psubb     %%mm1, %%mm2 \n"
99         "movd      %%mm2, %0    \n"
100         :"=r"(amvd)
101         :"m"(M16( mvdleft )),"m"(M16( mvdtop )),
102          "m"(pb_2),"m"(pb_32)
103     );
104     return amvd;
105 }
106 #undef M128_ZERO
107 #define M128_ZERO ((__m128){0,0,0,0})
108 #define x264_union128_t x264_union128_sse_t
109 typedef union { __m128 i; uint64_t a[2]; uint32_t b[4]; uint16_t c[8]; uint8_t d[16]; } MAY_ALIAS x264_union128_sse_t;
110
111 #endif
112
113 #endif