[x265] [PATCH 3 of 8] asm: interp_4tap_horiz_pp_2x16_sse3
dtyx265 at gmail.com
dtyx265 at gmail.com
Thu Apr 16 22:35:52 CEST 2015
# HG changeset patch
# User David T Yuen <dtyx265 at gmail.com>
# Date 1429214172 25200
# Node ID d53d53e9e19ebe1c5945909be1985fdad65369e6
# Parent a7e6c63f0ee15389340855f7b1c42eb14c6ae195
asm: interp_4tap_horiz_pp_2x16_sse3
This replaces c code.
64-bit
./test/TestBench --testbench interp | grep "chroma_hpp\[ 2x16\]"
chroma_hpp[ 2x16] 2.38x 2097.07 4982.83
32-bit
./test/TestBench --testbench interp | grep "chroma_hpp\[ 2x16\]"
chroma_hpp[ 2x16] 2.26x 2207.64 4985.18
diff -r a7e6c63f0ee1 -r d53d53e9e19e source/common/x86/asm-primitives.cpp
--- a/source/common/x86/asm-primitives.cpp Thu Apr 16 12:46:19 2015 -0700
+++ b/source/common/x86/asm-primitives.cpp Thu Apr 16 12:56:12 2015 -0700
@@ -1359,6 +1359,7 @@
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_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;
}
if (cpuMask & X265_CPU_SSSE3)
{
diff -r a7e6c63f0ee1 -r d53d53e9e19e source/common/x86/ipfilter8.asm
--- a/source/common/x86/ipfilter8.asm Thu Apr 16 12:46:19 2015 -0700
+++ b/source/common/x86/ipfilter8.asm Thu Apr 16 12:56:12 2015 -0700
@@ -386,6 +386,32 @@
RET
+;-----------------------------------------------------------------------------
+; void interp_4tap_horiz_pp_2x16(pixel *src, intptr_t srcStride, pixel *dst, intptr_t dstStride, int coeffIdx)
+;-----------------------------------------------------------------------------
+INIT_XMM sse3
+cglobal interp_4tap_horiz_pp_2x16, 4, 6, 5, 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 8
+FILTER_H4_w2_2_sse2
+%if x < 8
+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 a7e6c63f0ee1 -r d53d53e9e19e source/common/x86/ipfilter8.h
--- a/source/common/x86/ipfilter8.h Thu Apr 16 12:46:19 2015 -0700
+++ b/source/common/x86/ipfilter8.h Thu Apr 16 12:56:12 2015 -0700
@@ -765,6 +765,7 @@
void x265_filterPixelToShort_24x32_avx2(const pixel* src, intptr_t srcStride, int16_t* dst, intptr_t dstStride);
void x265_interp_4tap_horiz_pp_2x4_sse3(const pixel *src, intptr_t srcStride, pixel *dst, intptr_t dstStride, int coeffIdx);
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);
#undef LUMA_FILTERS
#undef LUMA_SP_FILTERS
#undef LUMA_SS_FILTERS
More information about the x265-devel
mailing list