[x265-commits] [x265] asm: disable new findPosLast - it is causing check failur...

Steve Borho steve at borho.org
Tue Apr 21 20:29:26 CEST 2015


details:   http://hg.videolan.org/x265/rev/1a4cd3067f77
branches:  
changeset: 10244:1a4cd3067f77
user:      Steve Borho <steve at borho.org>
date:      Tue Apr 21 13:28:37 2015 -0500
description:
asm: disable new findPosLast - it is causing check failures / crashes

the BMI2 version is still ok, but this new one is broken. the test harness for
it must not be very good

diffstat:

 source/common/x86/asm-primitives.cpp |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 77267c5390df -r 1a4cd3067f77 source/common/x86/asm-primitives.cpp
--- a/source/common/x86/asm-primitives.cpp	Tue Apr 21 15:05:18 2015 +0530
+++ b/source/common/x86/asm-primitives.cpp	Tue Apr 21 13:28:37 2015 -0500
@@ -801,7 +801,7 @@ void setupAssemblyPrimitives(EncoderPrim
 #endif
 
 #if X86_64
-    p.findPosLast = x265_findPosLast_x64;
+    //p.findPosLast = x265_findPosLast_x64;
 #endif
 
     if (cpuMask & X265_CPU_SSE2)
@@ -1277,7 +1277,7 @@ void setupAssemblyPrimitives(EncoderPrim
 void setupAssemblyPrimitives(EncoderPrimitives &p, int cpuMask) // 8bpp
 {
 #if X86_64
-    p.findPosLast = x265_findPosLast_x64;
+    //p.findPosLast = x265_findPosLast_x64;
 #endif
 
     if (cpuMask & X265_CPU_SSE2)


More information about the x265-commits mailing list