| 
									
										
										
										
											2007-12-16 22:20:47 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2009-10-17 21:00:39 +00:00
										 |  |  |  * MMX optimized LPC DSP utils | 
					
						
							| 
									
										
										
										
											2007-12-16 22:20:47 +00:00
										 |  |  |  * Copyright (c) 2007 Loren Merritt | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							|  |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							|  |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-09 11:56:36 +00:00
										 |  |  | #include "libavutil/x86_cpu.h"
 | 
					
						
							| 
									
										
										
										
											2011-01-21 00:11:44 +00:00
										 |  |  | #include "libavutil/cpu.h"
 | 
					
						
							|  |  |  | #include "libavcodec/lpc.h"
 | 
					
						
							| 
									
										
										
										
											2007-12-16 22:20:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-21 00:12:18 +00:00
										 |  |  | static void lpc_apply_welch_window_sse2(const int32_t *data, int len, | 
					
						
							|  |  |  |                                         double *w_data) | 
					
						
							| 
									
										
										
										
											2007-12-16 22:20:47 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     double c = 2.0 / (len-1.0); | 
					
						
							|  |  |  |     int n2 = len>>1; | 
					
						
							| 
									
										
										
										
											2008-05-08 21:11:24 +00:00
										 |  |  |     x86_reg i = -n2*sizeof(int32_t); | 
					
						
							|  |  |  |     x86_reg j =  n2*sizeof(int32_t); | 
					
						
							| 
									
										
										
										
											2008-10-16 13:34:09 +00:00
										 |  |  |     __asm__ volatile( | 
					
						
							| 
									
										
										
										
											2010-10-31 23:36:26 +00:00
										 |  |  |         "movsd   %4,     %%xmm7                \n\t" | 
					
						
							| 
									
										
										
										
											2008-06-28 18:30:50 +00:00
										 |  |  |         "movapd  "MANGLE(ff_pd_1)", %%xmm6     \n\t" | 
					
						
							|  |  |  |         "movapd  "MANGLE(ff_pd_2)", %%xmm5     \n\t" | 
					
						
							|  |  |  |         "movlhps %%xmm7, %%xmm7                \n\t" | 
					
						
							|  |  |  |         "subpd   %%xmm5, %%xmm7                \n\t" | 
					
						
							|  |  |  |         "addsd   %%xmm6, %%xmm7                \n\t" | 
					
						
							| 
									
										
										
										
											2010-10-31 23:36:26 +00:00
										 |  |  |         "test    $1,     %5                    \n\t" | 
					
						
							|  |  |  |         "jz      2f                            \n\t" | 
					
						
							| 
									
										
										
										
											2008-02-09 05:29:47 +00:00
										 |  |  | #define WELCH(MOVPD, offset)\
 | 
					
						
							| 
									
										
										
										
											2008-06-28 18:30:50 +00:00
										 |  |  |         "1:                                    \n\t"\ | 
					
						
							|  |  |  |         "movapd   %%xmm7,  %%xmm1              \n\t"\ | 
					
						
							|  |  |  |         "mulpd    %%xmm1,  %%xmm1              \n\t"\ | 
					
						
							|  |  |  |         "movapd   %%xmm6,  %%xmm0              \n\t"\ | 
					
						
							|  |  |  |         "subpd    %%xmm1,  %%xmm0              \n\t"\ | 
					
						
							|  |  |  |         "pshufd   $0x4e,   %%xmm0, %%xmm1      \n\t"\ | 
					
						
							|  |  |  |         "cvtpi2pd (%3,%0), %%xmm2              \n\t"\ | 
					
						
							|  |  |  |         "cvtpi2pd "#offset"*4(%3,%1), %%xmm3   \n\t"\ | 
					
						
							|  |  |  |         "mulpd    %%xmm0,  %%xmm2              \n\t"\ | 
					
						
							|  |  |  |         "mulpd    %%xmm1,  %%xmm3              \n\t"\ | 
					
						
							|  |  |  |         "movapd   %%xmm2, (%2,%0,2)            \n\t"\ | 
					
						
							| 
									
										
										
										
											2008-02-09 05:29:47 +00:00
										 |  |  |         MOVPD"    %%xmm3, "#offset"*8(%2,%1,2) \n\t"\ | 
					
						
							| 
									
										
										
										
											2008-06-28 18:30:50 +00:00
										 |  |  |         "subpd    %%xmm5,  %%xmm7              \n\t"\ | 
					
						
							|  |  |  |         "sub      $8,      %1                  \n\t"\ | 
					
						
							|  |  |  |         "add      $8,      %0                  \n\t"\ | 
					
						
							|  |  |  |         "jl 1b                                 \n\t"\ | 
					
						
							| 
									
										
										
										
											2010-10-31 23:36:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-09 05:29:47 +00:00
										 |  |  |         WELCH("movupd", -1) | 
					
						
							| 
									
										
										
										
											2010-10-31 23:36:26 +00:00
										 |  |  |         "jmp 3f                                \n\t" | 
					
						
							|  |  |  |         "2:                                    \n\t" | 
					
						
							| 
									
										
										
										
											2008-02-09 05:29:47 +00:00
										 |  |  |         WELCH("movapd", -2) | 
					
						
							| 
									
										
										
										
											2010-10-31 23:36:26 +00:00
										 |  |  |         "3:                                    \n\t" | 
					
						
							|  |  |  |         :"+&r"(i), "+&r"(j) | 
					
						
							|  |  |  |         :"r"(w_data+n2), "r"(data+n2), "m"(c), "r"(len) | 
					
						
							| 
									
										
										
										
											2010-10-31 23:37:15 +00:00
										 |  |  |          XMM_CLOBBERS_ONLY("%xmm0", "%xmm1", "%xmm2", "%xmm3", | 
					
						
							|  |  |  |                                     "%xmm5", "%xmm6", "%xmm7") | 
					
						
							| 
									
										
										
										
											2010-10-31 23:36:26 +00:00
										 |  |  |     ); | 
					
						
							| 
									
										
										
										
											2007-12-16 22:20:47 +00:00
										 |  |  | #undef WELCH
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-21 00:12:03 +00:00
										 |  |  | static void lpc_compute_autocorr_sse2(const double *data, int len, int lag, | 
					
						
							| 
									
										
										
										
											2011-01-21 00:12:18 +00:00
										 |  |  |                                       double *autoc) | 
					
						
							| 
									
										
										
										
											2007-12-16 22:20:47 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     int j; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-21 00:12:03 +00:00
										 |  |  |     if((x86_reg)data & 15) | 
					
						
							|  |  |  |         data++; | 
					
						
							| 
									
										
										
										
											2007-12-16 22:20:47 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for(j=0; j<lag; j+=2){ | 
					
						
							| 
									
										
										
										
											2008-05-08 21:11:24 +00:00
										 |  |  |         x86_reg i = -len*sizeof(double); | 
					
						
							| 
									
										
										
										
											2007-12-16 22:20:47 +00:00
										 |  |  |         if(j == lag-2) { | 
					
						
							| 
									
										
										
										
											2008-10-16 13:34:09 +00:00
										 |  |  |             __asm__ volatile( | 
					
						
							| 
									
										
										
										
											2008-06-28 18:30:50 +00:00
										 |  |  |                 "movsd    "MANGLE(ff_pd_1)", %%xmm0 \n\t" | 
					
						
							|  |  |  |                 "movsd    "MANGLE(ff_pd_1)", %%xmm1 \n\t" | 
					
						
							|  |  |  |                 "movsd    "MANGLE(ff_pd_1)", %%xmm2 \n\t" | 
					
						
							|  |  |  |                 "1:                                 \n\t" | 
					
						
							| 
									
										
										
										
											2010-01-02 17:48:08 +00:00
										 |  |  |                 "movapd   (%2,%0), %%xmm3           \n\t" | 
					
						
							|  |  |  |                 "movupd -8(%3,%0), %%xmm4           \n\t" | 
					
						
							|  |  |  |                 "movapd   (%3,%0), %%xmm5           \n\t" | 
					
						
							| 
									
										
										
										
											2008-06-28 18:30:50 +00:00
										 |  |  |                 "mulpd     %%xmm3, %%xmm4           \n\t" | 
					
						
							|  |  |  |                 "mulpd     %%xmm3, %%xmm5           \n\t" | 
					
						
							| 
									
										
										
										
											2010-01-02 17:48:08 +00:00
										 |  |  |                 "mulpd -16(%3,%0), %%xmm3           \n\t" | 
					
						
							| 
									
										
										
										
											2008-06-28 18:30:50 +00:00
										 |  |  |                 "addpd     %%xmm4, %%xmm1           \n\t" | 
					
						
							|  |  |  |                 "addpd     %%xmm5, %%xmm0           \n\t" | 
					
						
							|  |  |  |                 "addpd     %%xmm3, %%xmm2           \n\t" | 
					
						
							|  |  |  |                 "add       $16,    %0               \n\t" | 
					
						
							|  |  |  |                 "jl 1b                              \n\t" | 
					
						
							|  |  |  |                 "movhlps   %%xmm0, %%xmm3           \n\t" | 
					
						
							|  |  |  |                 "movhlps   %%xmm1, %%xmm4           \n\t" | 
					
						
							|  |  |  |                 "movhlps   %%xmm2, %%xmm5           \n\t" | 
					
						
							|  |  |  |                 "addsd     %%xmm3, %%xmm0           \n\t" | 
					
						
							|  |  |  |                 "addsd     %%xmm4, %%xmm1           \n\t" | 
					
						
							|  |  |  |                 "addsd     %%xmm5, %%xmm2           \n\t" | 
					
						
							| 
									
										
										
										
											2010-01-02 17:48:08 +00:00
										 |  |  |                 "movsd     %%xmm0,   (%1)           \n\t" | 
					
						
							|  |  |  |                 "movsd     %%xmm1,  8(%1)           \n\t" | 
					
						
							|  |  |  |                 "movsd     %%xmm2, 16(%1)           \n\t" | 
					
						
							|  |  |  |                 :"+&r"(i) | 
					
						
							| 
									
										
										
										
											2011-01-21 00:12:03 +00:00
										 |  |  |                 :"r"(autoc+j), "r"(data+len), "r"(data+len-j) | 
					
						
							| 
									
										
										
										
											2010-01-02 17:48:08 +00:00
										 |  |  |                 :"memory" | 
					
						
							| 
									
										
										
										
											2007-12-16 22:20:47 +00:00
										 |  |  |             ); | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2008-10-16 13:34:09 +00:00
										 |  |  |             __asm__ volatile( | 
					
						
							| 
									
										
										
										
											2008-06-28 18:30:50 +00:00
										 |  |  |                 "movsd    "MANGLE(ff_pd_1)", %%xmm0 \n\t" | 
					
						
							|  |  |  |                 "movsd    "MANGLE(ff_pd_1)", %%xmm1 \n\t" | 
					
						
							|  |  |  |                 "1:                                 \n\t" | 
					
						
							|  |  |  |                 "movapd   (%3,%0), %%xmm3           \n\t" | 
					
						
							|  |  |  |                 "movupd -8(%4,%0), %%xmm4           \n\t" | 
					
						
							|  |  |  |                 "mulpd     %%xmm3, %%xmm4           \n\t" | 
					
						
							|  |  |  |                 "mulpd    (%4,%0), %%xmm3           \n\t" | 
					
						
							|  |  |  |                 "addpd     %%xmm4, %%xmm1           \n\t" | 
					
						
							|  |  |  |                 "addpd     %%xmm3, %%xmm0           \n\t" | 
					
						
							|  |  |  |                 "add       $16,    %0               \n\t" | 
					
						
							|  |  |  |                 "jl 1b                              \n\t" | 
					
						
							|  |  |  |                 "movhlps   %%xmm0, %%xmm3           \n\t" | 
					
						
							|  |  |  |                 "movhlps   %%xmm1, %%xmm4           \n\t" | 
					
						
							|  |  |  |                 "addsd     %%xmm3, %%xmm0           \n\t" | 
					
						
							|  |  |  |                 "addsd     %%xmm4, %%xmm1           \n\t" | 
					
						
							|  |  |  |                 "movsd     %%xmm0, %1               \n\t" | 
					
						
							|  |  |  |                 "movsd     %%xmm1, %2               \n\t" | 
					
						
							| 
									
										
										
										
											2007-12-16 22:20:47 +00:00
										 |  |  |                 :"+&r"(i), "=m"(autoc[j]), "=m"(autoc[j+1]) | 
					
						
							| 
									
										
										
										
											2011-01-21 00:12:03 +00:00
										 |  |  |                 :"r"(data+len), "r"(data+len-j) | 
					
						
							| 
									
										
										
										
											2007-12-16 22:20:47 +00:00
										 |  |  |             ); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2011-01-21 00:11:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | av_cold void ff_lpc_init_x86(LPCContext *c) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int mm_flags = av_get_cpu_flags(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (mm_flags & (AV_CPU_FLAG_SSE2|AV_CPU_FLAG_SSE2SLOW)) { | 
					
						
							| 
									
										
										
										
											2011-01-21 00:12:18 +00:00
										 |  |  |         c->lpc_apply_welch_window = lpc_apply_welch_window_sse2; | 
					
						
							|  |  |  |         c->lpc_compute_autocorr   = lpc_compute_autocorr_sse2; | 
					
						
							| 
									
										
										
										
											2011-01-21 00:11:44 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } |