[x265] [PATCH 8 of 8] asm: interp_4tap_horiz_pp_4x32_sse3

dtyx265 at gmail.com dtyx265 at gmail.com
Thu Apr 16 22:35:57 CEST 2015


# HG changeset patch
# User David T Yuen <dtyx265 at gmail.com>
# Date 1429216277 25200
# Node ID 66ebb65fbcbf24f56934ae69471e84fdc131b7c0
# Parent  707a65570cb93e06bb743bb11a9178a92ed7bfb3
asm: interp_4tap_horiz_pp_4x32_sse3

This replaces c code.

64-bit

./test/TestBench --testbench interp | grep "chroma_hpp\[ 4x32\]"
chroma_hpp[ 4x32]	2.81x 	 6530.71  	 18352.48

32-bit

./test/TestBench --testbench interp | grep "chroma_hpp\[ 4x32\]"
chroma_hpp[ 4x32]	2.80x 	 6602.54  	 18459.98

diff -r 707a65570cb9 -r 66ebb65fbcbf source/common/x86/asm-primitives.cpp
--- a/source/common/x86/asm-primitives.cpp	Thu Apr 16 13:27:24 2015 -0700
+++ b/source/common/x86/asm-primitives.cpp	Thu Apr 16 13:31:17 2015 -0700
@@ -1367,6 +1367,7 @@
         p.chroma[X265_CSP_I422].pu[CHROMA_422_4x4].filter_hpp = x265_interp_4tap_horiz_pp_4x4_sse3;
         p.chroma[X265_CSP_I422].pu[CHROMA_422_4x8].filter_hpp = x265_interp_4tap_horiz_pp_4x8_sse3;
         p.chroma[X265_CSP_I422].pu[CHROMA_422_4x16].filter_hpp = x265_interp_4tap_horiz_pp_4x16_sse3;
+        p.chroma[X265_CSP_I422].pu[CHROMA_422_4x32].filter_hpp = x265_interp_4tap_horiz_pp_4x32_sse3;
     }
     if (cpuMask & X265_CPU_SSSE3)
     {
diff -r 707a65570cb9 -r 66ebb65fbcbf source/common/x86/ipfilter8.asm
--- a/source/common/x86/ipfilter8.asm	Thu Apr 16 13:27:24 2015 -0700
+++ b/source/common/x86/ipfilter8.asm	Thu Apr 16 13:31:17 2015 -0700
@@ -544,6 +544,32 @@
 
 RET
 
+;-----------------------------------------------------------------------------
+; void interp_4tap_horiz_pp_4x32(pixel *src, intptr_t srcStride, pixel *dst, intptr_t dstStride, int coeffIdx)
+;-----------------------------------------------------------------------------
+INIT_XMM sse3
+cglobal interp_4tap_horiz_pp_4x32, 4, 6, 7, src, srcstride, dst, dststride
+mov         r4d,        r4m
+
+%ifdef PIC
+lea         r5,          [tabw_ChromaCoeff]
+movddup     m4,       [r5 + r4 * 8]
+%else
+movddup     m4,       [tabw_ChromaCoeff + r4 * 8]
+%endif
+
+%assign x 1
+%rep 16
+FILTER_H4_w4_2_sse2
+%if x < 16
+lea         srcq,       [srcq + srcstrideq * 2]
+lea         dstq,       [dstq + dststrideq * 2]
+%endif
+%assign x x+1
+%endrep
+
+RET
+
 %macro FILTER_H4_w2_2 3
     movh        %2, [srcq - 1]
     pshufb      %2, %2, Tm0
diff -r 707a65570cb9 -r 66ebb65fbcbf source/common/x86/ipfilter8.h
--- a/source/common/x86/ipfilter8.h	Thu Apr 16 13:27:24 2015 -0700
+++ b/source/common/x86/ipfilter8.h	Thu Apr 16 13:31:17 2015 -0700
@@ -770,6 +770,7 @@
 void x265_interp_4tap_horiz_pp_4x4_sse3(const pixel *src, intptr_t srcStride, pixel *dst, intptr_t dstStride, int coeffIdx);
 void x265_interp_4tap_horiz_pp_4x8_sse3(const pixel *src, intptr_t srcStride, pixel *dst, intptr_t dstStride, int coeffIdx);
 void x265_interp_4tap_horiz_pp_4x16_sse3(const pixel *src, intptr_t srcStride, pixel *dst, intptr_t dstStride, int coeffIdx);
+void x265_interp_4tap_horiz_pp_4x32_sse3(const pixel *src, intptr_t srcStride, pixel *dst, intptr_t dstStride, int coeffIdx);
 #undef LUMA_FILTERS
 #undef LUMA_SP_FILTERS
 #undef LUMA_SS_FILTERS


More information about the x265-devel mailing list