[x265] [PATCH 5 of 8] asm: interp_4tap_horiz_pp_4x4_sse3

dtyx265 at gmail.com dtyx265 at gmail.com
Fri Apr 17 18:48:01 CEST 2015


# HG changeset patch
# User David T Yuen <dtyx265 at gmail.com>
# Date 1429287986 25200
# Node ID afc42e4ffe02b0dde666bc859e907296cc0b95a7
# Parent  722f24e9ddcb900ea48f658fee33bc05b67b6385
asm: interp_4tap_horiz_pp_4x4_sse3

This replaces c code.

64-bit

./test/TestBench --testbench interp | grep "chroma_hpp\[  4x4\]"
chroma_hpp[  4x4]	2.18x 	 872.49   	 1902.48
chroma_hpp[  4x4]	2.17x 	 874.99   	 1900.67

32-bit

./test/TestBench --testbench interp | grep "chroma_hpp\[  4x4\]"
chroma_hpp[  4x4]	2.59x 	 952.48   	 2462.42
chroma_hpp[  4x4]	2.59x 	 950.02   	 2462.46

diff -r 722f24e9ddcb -r afc42e4ffe02 source/common/x86/asm-primitives.cpp
--- a/source/common/x86/asm-primitives.cpp	Fri Apr 17 09:21:15 2015 -0700
+++ b/source/common/x86/asm-primitives.cpp	Fri Apr 17 09:26:26 2015 -0700
@@ -1359,8 +1359,10 @@
         p.chroma[X265_CSP_I420].pu[CHROMA_420_2x4].filter_hpp = x265_interp_4tap_horiz_pp_2x4_sse3;
         p.chroma[X265_CSP_I420].pu[CHROMA_420_2x8].filter_hpp = x265_interp_4tap_horiz_pp_2x8_sse3;
         p.chroma[X265_CSP_I420].pu[CHROMA_420_4x2].filter_hpp = x265_interp_4tap_horiz_pp_4x2_sse3;
+        p.chroma[X265_CSP_I420].pu[CHROMA_420_4x4].filter_hpp = x265_interp_4tap_horiz_pp_4x4_sse3;
         p.chroma[X265_CSP_I422].pu[CHROMA_422_2x8].filter_hpp = x265_interp_4tap_horiz_pp_2x8_sse3;
         p.chroma[X265_CSP_I422].pu[CHROMA_422_2x16].filter_hpp = x265_interp_4tap_horiz_pp_2x16_sse3;
+        p.chroma[X265_CSP_I422].pu[CHROMA_422_4x4].filter_hpp = x265_interp_4tap_horiz_pp_4x4_sse3;
     }
     if (cpuMask & X265_CPU_SSSE3)
     {
diff -r 722f24e9ddcb -r afc42e4ffe02 source/common/x86/ipfilter8.asm
--- a/source/common/x86/ipfilter8.asm	Fri Apr 17 09:21:15 2015 -0700
+++ b/source/common/x86/ipfilter8.asm	Fri Apr 17 09:26:26 2015 -0700
@@ -475,6 +475,28 @@
 
 RET
 
+;-----------------------------------------------------------------------------
+; void interp_4tap_horiz_pp_4x4(pixel *src, intptr_t srcStride, pixel *dst, intptr_t dstStride, int coeffIdx)
+;-----------------------------------------------------------------------------
+INIT_XMM sse3
+cglobal interp_4tap_horiz_pp_4x4, 4, 6, 8, src, srcstride, dst, dststride
+mov         r4d,        r4m
+mova        m7,         [pw_32]
+
+%ifdef PIC
+lea         r5,         [tabw_ChromaCoeff]
+movddup     m4,         [r5 + r4 * 8]
+%else
+movddup     m4,         [tabw_ChromaCoeff + r4 * 8]
+%endif
+
+FILTER_H4_w4_2_sse2
+lea         srcq,       [srcq + srcstrideq * 2]
+lea         dstq,       [dstq + dststrideq * 2]
+FILTER_H4_w4_2_sse2
+
+RET
+
 %macro FILTER_H4_w2_2 3
     movh        %2, [srcq - 1]
     pshufb      %2, %2, Tm0
diff -r 722f24e9ddcb -r afc42e4ffe02 source/common/x86/ipfilter8.h
--- a/source/common/x86/ipfilter8.h	Fri Apr 17 09:21:15 2015 -0700
+++ b/source/common/x86/ipfilter8.h	Fri Apr 17 09:26:26 2015 -0700
@@ -767,6 +767,7 @@
 void x265_interp_4tap_horiz_pp_2x8_sse3(const pixel *src, intptr_t srcStride, pixel *dst, intptr_t dstStride, int coeffIdx);
 void x265_interp_4tap_horiz_pp_2x16_sse3(const pixel *src, intptr_t srcStride, pixel *dst, intptr_t dstStride, int coeffIdx);
 void x265_interp_4tap_horiz_pp_4x2_sse3(const pixel *src, intptr_t srcStride, pixel *dst, intptr_t dstStride, int coeffIdx);
+void x265_interp_4tap_horiz_pp_4x4_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