2 * MLP DSP functions x86-optimized
3 * Copyright (c) 2009 Ramiro Polla
5 * This file is part of Libav.
7 * Libav is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * Libav is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavutil/attributes.h"
23 #include "libavutil/internal.h"
24 #include "libavutil/cpu.h"
25 #include "libavutil/x86/asm.h"
26 #include "libavutil/x86/cpu.h"
27 #include "libavcodec/mlpdsp.h"
28 #include "libavcodec/mlp.h"
30 #if HAVE_7REGS && HAVE_INLINE_ASM
32 extern char ff_mlp_firorder_8
;
33 extern char ff_mlp_firorder_7
;
34 extern char ff_mlp_firorder_6
;
35 extern char ff_mlp_firorder_5
;
36 extern char ff_mlp_firorder_4
;
37 extern char ff_mlp_firorder_3
;
38 extern char ff_mlp_firorder_2
;
39 extern char ff_mlp_firorder_1
;
40 extern char ff_mlp_firorder_0
;
42 extern char ff_mlp_iirorder_4
;
43 extern char ff_mlp_iirorder_3
;
44 extern char ff_mlp_iirorder_2
;
45 extern char ff_mlp_iirorder_1
;
46 extern char ff_mlp_iirorder_0
;
48 static const void * const firtable
[9] = { &ff_mlp_firorder_0
, &ff_mlp_firorder_1
,
49 &ff_mlp_firorder_2
, &ff_mlp_firorder_3
,
50 &ff_mlp_firorder_4
, &ff_mlp_firorder_5
,
51 &ff_mlp_firorder_6
, &ff_mlp_firorder_7
,
53 static const void * const iirtable
[5] = { &ff_mlp_iirorder_0
, &ff_mlp_iirorder_1
,
54 &ff_mlp_iirorder_2
, &ff_mlp_iirorder_3
,
59 #define MLPMUL(label, offset, offs, offc) \
60 LABEL_MANGLE(label)": \n\t" \
61 "movslq "offset"+"offs"(%0), %%rax\n\t" \
62 "movslq "offset"+"offc"(%1), %%rdx\n\t" \
63 "imul %%rdx, %%rax\n\t" \
64 "add %%rax, %%rsi\n\t"
66 #define FIRMULREG(label, offset, firc)\
67 LABEL_MANGLE(label)": \n\t" \
68 "movslq "#offset"(%0), %%rax\n\t" \
69 "imul %"#firc", %%rax\n\t" \
70 "add %%rax, %%rsi\n\t"
73 "xor %%rsi, %%rsi\n\t"
79 #define RESULT "%%rsi"
80 #define RESULT32 "%%esi"
82 #else /* if ARCH_X86_32 */
84 #define MLPMUL(label, offset, offs, offc) \
85 LABEL_MANGLE(label)": \n\t" \
86 "mov "offset"+"offs"(%0), %%eax\n\t" \
87 "imull "offset"+"offc"(%1) \n\t" \
88 "add %%eax , %%esi\n\t" \
89 "adc %%edx , %%ecx\n\t"
91 #define FIRMULREG(label, offset, firc) \
92 MLPMUL(label, #offset, "0", "0")
95 "xor %%esi, %%esi\n\t" \
96 "xor %%ecx, %%ecx\n\t"
99 "mov %%ecx, %%edx\n\t" \
100 "mov %%esi, %%eax\n\t" \
101 "movzbl %7 , %%ecx\n\t" \
102 "shrd %%cl, %%edx, %%eax\n\t" \
104 #define ACCUM "%%edx"
105 #define RESULT "%%eax"
106 #define RESULT32 "%%eax"
108 #endif /* !ARCH_X86_64 */
110 #define BINC AV_STRINGIFY(4* MAX_CHANNELS)
111 #define IOFFS AV_STRINGIFY(4*(MAX_FIR_ORDER + MAX_BLOCKSIZE))
112 #define IOFFC AV_STRINGIFY(4* MAX_FIR_ORDER)
114 #define FIRMUL(label, offset) MLPMUL(label, #offset, "0", "0")
115 #define IIRMUL(label, offset) MLPMUL(label, #offset, IOFFS, IOFFC)
117 static void mlp_filter_channel_x86(int32_t *state
, const int32_t *coeff
,
118 int firorder
, int iirorder
,
119 unsigned int filter_shift
, int32_t mask
,
120 int blocksize
, int32_t *sample_buffer
)
122 const void *firjump
= firtable
[firorder
];
123 const void *iirjump
= iirtable
[iirorder
];
125 blocksize
= -blocksize
;
131 FIRMUL (ff_mlp_firorder_8
, 0x1c )
132 FIRMUL (ff_mlp_firorder_7
, 0x18 )
133 FIRMUL (ff_mlp_firorder_6
, 0x14 )
134 FIRMUL (ff_mlp_firorder_5
, 0x10 )
135 FIRMUL (ff_mlp_firorder_4
, 0x0c )
136 FIRMULREG(ff_mlp_firorder_3
, 0x08,10)
137 FIRMULREG(ff_mlp_firorder_2
, 0x04, 9)
138 FIRMULREG(ff_mlp_firorder_1
, 0x00, 8)
139 LABEL_MANGLE(ff_mlp_firorder_0
)":\n\t"
141 IIRMUL (ff_mlp_iirorder_4
, 0x0c )
142 IIRMUL (ff_mlp_iirorder_3
, 0x08 )
143 IIRMUL (ff_mlp_iirorder_2
, 0x04 )
144 IIRMUL (ff_mlp_iirorder_1
, 0x00 )
145 LABEL_MANGLE(ff_mlp_iirorder_0
)":\n\t"
147 "mov "RESULT
" ,"ACCUM
" \n\t"
148 "add (%2) ,"RESULT
" \n\t"
149 "and %4 ,"RESULT
" \n\t"
151 "mov "RESULT32
", (%0) \n\t"
152 "mov "RESULT32
", (%2) \n\t"
153 "add $"BINC
" , %2 \n\t"
154 "sub "ACCUM
" ,"RESULT
" \n\t"
155 "mov "RESULT32
","IOFFS
"(%0) \n\t"
160 /* 2*/"+r"(sample_buffer
),
162 /* 3*/"+r"(blocksize
)
163 : /* 4*/"r"((x86_reg
)mask
), /* 5*/"r"(firjump
),
164 /* 6*/"r"(iirjump
) , /* 7*/"c"(filter_shift
)
165 , /* 8*/"r"((int64_t)coeff
[0])
166 , /* 9*/"r"((int64_t)coeff
[1])
167 , /*10*/"r"((int64_t)coeff
[2])
168 : "rax", "rdx", "rsi"
169 #else /* ARCH_X86_32 */
170 /* 3*/"+m"(blocksize
)
171 : /* 4*/"m"( mask
), /* 5*/"m"(firjump
),
172 /* 6*/"m"(iirjump
) , /* 7*/"m"(filter_shift
)
173 : "eax", "edx", "esi", "ecx"
174 #endif /* !ARCH_X86_64 */
178 #endif /* HAVE_7REGS && HAVE_INLINE_ASM */
180 av_cold
void ff_mlpdsp_init_x86(MLPDSPContext
*c
)
182 #if HAVE_7REGS && HAVE_INLINE_ASM
183 int cpu_flags
= av_get_cpu_flags();
184 if (INLINE_MMX(cpu_flags
))
185 c
->mlp_filter_channel
= mlp_filter_channel_x86
;