[x264-devel] mips: Initial MSA support
Kaustubh Raste
git at videolan.org
Sun Jul 26 22:26:34 CEST 2015
x264 | branch: master | Kaustubh Raste <kaustubh.raste at imgtec.com> | Fri Apr 17 17:56:58 2015 +0530| [ce0757d9d2778e349a7c2f6445b6aa75d8765c30] | committer: Henrik Gramner
mips: Initial MSA support
MSA is the MIPS SIMD Architecture.
Add X264_CPU_MSA define.
Update configure to detect MIPS platform and set flags.
CPU-specific gcc options are expected through --extra-cflags.
Sample command line for mips32r5:
./configure --host=mipsel-linux-gnu --cross-prefix=<TOOLCHAIN>/mips-mti-linux-gnu-
--extra-cflags="-EL -mips32r5 -msched-weight -mload-store-pairs"
Signed-off-by: Kaustubh Raste <kaustubh.raste at imgtec.com>
> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=ce0757d9d2778e349a7c2f6445b6aa75d8765c30
---
common/cpu.c | 13 +++++++++++++
configure | 21 +++++++++++++++++++--
x264.h | 5 ++++-
3 files changed, 36 insertions(+), 3 deletions(-)
diff --git a/common/cpu.c b/common/cpu.c
index e0d1377..e311bab 100644
--- a/common/cpu.c
+++ b/common/cpu.c
@@ -92,6 +92,8 @@ const x264_cpu_name_t x264_cpu_names[] =
#elif ARCH_AARCH64
{"ARMv8", X264_CPU_ARMV8},
{"NEON", X264_CPU_NEON},
+#elif ARCH_MIPS
+ {"MSA", X264_CPU_MSA},
#endif
{"", 0},
};
@@ -419,6 +421,17 @@ uint32_t x264_cpu_detect( void )
return X264_CPU_ARMV8 | X264_CPU_NEON;
}
+#elif ARCH_MIPS
+
+uint32_t x264_cpu_detect( void )
+{
+ uint32_t flags = 0;
+#if HAVE_MSA
+ flags |= X264_CPU_MSA;
+#endif
+ return flags;
+}
+
#else
uint32_t x264_cpu_detect( void )
diff --git a/configure b/configure
index 2c6cfe8..d82c449 100755
--- a/configure
+++ b/configure
@@ -358,7 +358,8 @@ NL="
# list of all preprocessor HAVE values we can define
CONFIG_HAVE="MALLOC_H ALTIVEC ALTIVEC_H MMX ARMV6 ARMV6T2 NEON BEOSTHREAD POSIXTHREAD WIN32THREAD THREAD LOG2F SWSCALE \
- LAVF FFMS GPAC AVS GPL VECTOREXT INTERLACED CPU_COUNT OPENCL THP LSMASH X86_INLINE_ASM AS_FUNC INTEL_DISPATCHER"
+ LAVF FFMS GPAC AVS GPL VECTOREXT INTERLACED CPU_COUNT OPENCL THP LSMASH X86_INLINE_ASM AS_FUNC INTEL_DISPATCHER \
+ MSA"
# parse options
@@ -727,8 +728,10 @@ case $host_cpu in
sparc)
ARCH="SPARC"
;;
- mips|mipsel|mips64|mips64el)
+ mips*)
ARCH="MIPS"
+ AS="${AS-${CC}}"
+ AS_EXT=".c"
;;
arm*)
ARCH="ARM"
@@ -854,6 +857,20 @@ if [ $asm = auto -a \( $ARCH = ARM -o $ARCH = AARCH64 \) ] ; then
as_check ".func test${NL}.endfunc" && define HAVE_AS_FUNC 1
fi
+if [ $asm = auto -a $ARCH = MIPS ] ; then
+ if ! echo $CFLAGS | grep -Eq '(-march|-mmsa|-mno-msa)' ; then
+ cc_check '' '-mmsa -mfp64 -mhard-float' && CFLAGS="-mmsa -mfp64 -mhard-float $CFLAGS"
+ fi
+
+ if cc_check '' '' '__asm__("addvi.b $w0, $w1, 1");' ; then
+ define HAVE_MSA
+ else
+ echo "You specified a pre-MSA CPU in your CFLAGS."
+ echo "If you really want to run on such a CPU, configure with --disable-asm."
+ exit 1
+ fi
+fi
+
[ $asm = no ] && AS=""
[ "x$AS" = x ] && asm="no" || asm="yes"
diff --git a/x264.h b/x264.h
index 6202f72..ff9d897 100644
--- a/x264.h
+++ b/x264.h
@@ -41,7 +41,7 @@
#include "x264_config.h"
-#define X264_BUILD 147
+#define X264_BUILD 148
/* Application developers planning to link against a shared library version of
* libx264 from a Microsoft Visual Studio or similar development environment
@@ -158,6 +158,9 @@ typedef struct
#define X264_CPU_FAST_NEON_MRC 0x0000004 /* Transfer from NEON to ARM register is fast (Cortex-A9) */
#define X264_CPU_ARMV8 0x0000008
+/* MIPS */
+#define X264_CPU_MSA 0x0000001 /* MIPS MSA */
+
/* Analyse flags */
#define X264_ANALYSE_I4x4 0x0001 /* Analyse i4x4 */
#define X264_ANALYSE_I8x8 0x0002 /* Analyse i8x8 (requires 8x8 transform) */
More information about the x264-devel
mailing list