riscv: test for assembler support
This should fix the build on LLVM 16 and earlier, at the cost of turning all non-RVV optimisations off.
This commit is contained in:
parent
0b9d009b4a
commit
b3825bbe45
6
Makefile
6
Makefile
@ -93,10 +93,10 @@ ffbuild/.config: $(CONFIGURABLE_COMPONENTS)
|
|||||||
SUBDIR_VARS := CLEANFILES FFLIBS HOSTPROGS TESTPROGS TOOLS \
|
SUBDIR_VARS := CLEANFILES FFLIBS HOSTPROGS TESTPROGS TOOLS \
|
||||||
HEADERS ARCH_HEADERS BUILT_HEADERS SKIPHEADERS \
|
HEADERS ARCH_HEADERS BUILT_HEADERS SKIPHEADERS \
|
||||||
ARMV5TE-OBJS ARMV6-OBJS ARMV8-OBJS VFP-OBJS NEON-OBJS \
|
ARMV5TE-OBJS ARMV6-OBJS ARMV8-OBJS VFP-OBJS NEON-OBJS \
|
||||||
ALTIVEC-OBJS VSX-OBJS RVV-OBJS MMX-OBJS X86ASM-OBJS \
|
ALTIVEC-OBJS VSX-OBJS MMX-OBJS X86ASM-OBJS \
|
||||||
MIPSFPU-OBJS MIPSDSPR2-OBJS MIPSDSP-OBJS MSA-OBJS \
|
MIPSFPU-OBJS MIPSDSPR2-OBJS MIPSDSP-OBJS MSA-OBJS \
|
||||||
MMI-OBJS LSX-OBJS LASX-OBJS OBJS SLIBOBJS SHLIBOBJS \
|
MMI-OBJS LSX-OBJS LASX-OBJS RV-OBJS RVV-OBJS \
|
||||||
STLIBOBJS HOSTOBJS TESTOBJS
|
OBJS SLIBOBJS SHLIBOBJS STLIBOBJS HOSTOBJS TESTOBJS
|
||||||
|
|
||||||
define RESET
|
define RESET
|
||||||
$(1) :=
|
$(1) :=
|
||||||
|
5
configure
vendored
5
configure
vendored
@ -2154,6 +2154,7 @@ ARCH_EXT_LIST_PPC="
|
|||||||
"
|
"
|
||||||
|
|
||||||
ARCH_EXT_LIST_RISCV="
|
ARCH_EXT_LIST_RISCV="
|
||||||
|
rv
|
||||||
rvv
|
rvv
|
||||||
"
|
"
|
||||||
|
|
||||||
@ -2679,7 +2680,8 @@ ppc4xx_deps="ppc"
|
|||||||
vsx_deps="altivec"
|
vsx_deps="altivec"
|
||||||
power8_deps="vsx"
|
power8_deps="vsx"
|
||||||
|
|
||||||
rvv_deps="riscv"
|
rv_deps="riscv"
|
||||||
|
rvv_deps="rv"
|
||||||
|
|
||||||
loongson2_deps="mips"
|
loongson2_deps="mips"
|
||||||
loongson3_deps="mips"
|
loongson3_deps="mips"
|
||||||
@ -6243,6 +6245,7 @@ elif enabled ppc; then
|
|||||||
|
|
||||||
elif enabled riscv; then
|
elif enabled riscv; then
|
||||||
|
|
||||||
|
enabled rv && check_inline_asm rv '".option arch, +zbb\nrev8 t0, t1"'
|
||||||
enabled rvv && check_inline_asm rvv '".option arch, +v\nvsetivli zero, 0, e8, m1, ta, ma"'
|
enabled rvv && check_inline_asm rvv '".option arch, +v\nvsetivli zero, 0, e8, m1, ta, ma"'
|
||||||
|
|
||||||
elif enabled x86; then
|
elif enabled x86; then
|
||||||
|
@ -15,6 +15,7 @@ OBJS-$(HAVE_LASX) += $(LASX-OBJS) $(LASX-OBJS-yes)
|
|||||||
OBJS-$(HAVE_ALTIVEC) += $(ALTIVEC-OBJS) $(ALTIVEC-OBJS-yes)
|
OBJS-$(HAVE_ALTIVEC) += $(ALTIVEC-OBJS) $(ALTIVEC-OBJS-yes)
|
||||||
OBJS-$(HAVE_VSX) += $(VSX-OBJS) $(VSX-OBJS-yes)
|
OBJS-$(HAVE_VSX) += $(VSX-OBJS) $(VSX-OBJS-yes)
|
||||||
|
|
||||||
|
OBJS-$(HAVE_RV) += $(RV-OBJS) $(RV-OBJS-yes)
|
||||||
OBJS-$(HAVE_RVV) += $(RVV-OBJS) $(RVV-OBJS-yes)
|
OBJS-$(HAVE_RVV) += $(RVV-OBJS) $(RVV-OBJS-yes)
|
||||||
|
|
||||||
OBJS-$(HAVE_MMX) += $(MMX-OBJS) $(MMX-OBJS-yes)
|
OBJS-$(HAVE_MMX) += $(MMX-OBJS) $(MMX-OBJS-yes)
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
OBJS-$(CONFIG_AAC_DECODER) += riscv/aacpsdsp_init.o riscv/sbrdsp_init.o
|
OBJS-$(CONFIG_AAC_DECODER) += riscv/aacpsdsp_init.o riscv/sbrdsp_init.o
|
||||||
RVV-OBJS-$(CONFIG_AAC_DECODER) += riscv/aacpsdsp_rvv.o riscv/sbrdsp_rvv.o
|
RVV-OBJS-$(CONFIG_AAC_DECODER) += riscv/aacpsdsp_rvv.o riscv/sbrdsp_rvv.o
|
||||||
OBJS-$(CONFIG_AC3DSP) += riscv/ac3dsp_init.o \
|
OBJS-$(CONFIG_AC3DSP) += riscv/ac3dsp_init.o
|
||||||
riscv/ac3dsp_rvb.o
|
RV-OBJS-$(CONFIG_AC3DSP) += riscv/ac3dsp_rvb.o
|
||||||
RVV-OBJS-$(CONFIG_AC3DSP) += riscv/ac3dsp_rvv.o
|
RVV-OBJS-$(CONFIG_AC3DSP) += riscv/ac3dsp_rvv.o
|
||||||
OBJS-$(CONFIG_ALAC_DECODER) += riscv/alacdsp_init.o
|
OBJS-$(CONFIG_ALAC_DECODER) += riscv/alacdsp_init.o
|
||||||
RVV-OBJS-$(CONFIG_ALAC_DECODER) += riscv/alacdsp_rvv.o
|
RVV-OBJS-$(CONFIG_ALAC_DECODER) += riscv/alacdsp_rvv.o
|
||||||
OBJS-$(CONFIG_AUDIODSP) += riscv/audiodsp_init.o \
|
OBJS-$(CONFIG_AUDIODSP) += riscv/audiodsp_init.o
|
||||||
riscv/audiodsp_rvf.o
|
RV-OBJS-$(CONFIG_AUDIODSP) += riscv/audiodsp_rvf.o
|
||||||
RVV-OBJS-$(CONFIG_AUDIODSP) += riscv/audiodsp_rvv.o
|
RVV-OBJS-$(CONFIG_AUDIODSP) += riscv/audiodsp_rvv.o
|
||||||
OBJS-$(CONFIG_BSWAPDSP) += riscv/bswapdsp_init.o \
|
OBJS-$(CONFIG_BSWAPDSP) += riscv/bswapdsp_init.o
|
||||||
riscv/bswapdsp_rvb.o
|
RV-OBJS-$(CONFIG_BSWAPDSP) += riscv/bswapdsp_rvb.o
|
||||||
RVV-OBJS-$(CONFIG_BSWAPDSP) += riscv/bswapdsp_rvv.o
|
RVV-OBJS-$(CONFIG_BSWAPDSP) += riscv/bswapdsp_rvv.o
|
||||||
OBJS-$(CONFIG_EXR_DECODER) += riscv/exrdsp_init.o
|
OBJS-$(CONFIG_EXR_DECODER) += riscv/exrdsp_init.o
|
||||||
RVV-OBJS-$(CONFIG_EXR_DECODER) += riscv/exrdsp_rvv.o
|
RVV-OBJS-$(CONFIG_EXR_DECODER) += riscv/exrdsp_rvv.o
|
||||||
@ -35,8 +35,8 @@ OBJS-$(CONFIG_LLVIDENCDSP) += riscv/llvidencdsp_init.o
|
|||||||
RVV-OBJS-$(CONFIG_LLVIDENCDSP) += riscv/llvidencdsp_rvv.o
|
RVV-OBJS-$(CONFIG_LLVIDENCDSP) += riscv/llvidencdsp_rvv.o
|
||||||
OBJS-$(CONFIG_OPUS_DECODER) += riscv/opusdsp_init.o
|
OBJS-$(CONFIG_OPUS_DECODER) += riscv/opusdsp_init.o
|
||||||
RVV-OBJS-$(CONFIG_OPUS_DECODER) += riscv/opusdsp_rvv.o
|
RVV-OBJS-$(CONFIG_OPUS_DECODER) += riscv/opusdsp_rvv.o
|
||||||
OBJS-$(CONFIG_PIXBLOCKDSP) += riscv/pixblockdsp_init.o \
|
OBJS-$(CONFIG_PIXBLOCKDSP) += riscv/pixblockdsp_init.o
|
||||||
riscv/pixblockdsp_rvi.o
|
RV-OBJS-$(CONFIG_PIXBLOCKDSP) += riscv/pixblockdsp_rvi.o
|
||||||
RVV-OBJS-$(CONFIG_PIXBLOCKDSP) += riscv/pixblockdsp_rvv.o
|
RVV-OBJS-$(CONFIG_PIXBLOCKDSP) += riscv/pixblockdsp_rvv.o
|
||||||
OBJS-$(CONFIG_UTVIDEO_DECODER) += riscv/utvideodsp_init.o
|
OBJS-$(CONFIG_UTVIDEO_DECODER) += riscv/utvideodsp_init.o
|
||||||
RVV-OBJS-$(CONFIG_UTVIDEO_DECODER) += riscv/utvideodsp_rvv.o
|
RVV-OBJS-$(CONFIG_UTVIDEO_DECODER) += riscv/utvideodsp_rvv.o
|
||||||
|
@ -31,6 +31,7 @@ void ff_float_to_fixed24_rvv(int32_t *dst, const float *src, size_t len);
|
|||||||
|
|
||||||
av_cold void ff_ac3dsp_init_riscv(AC3DSPContext *c)
|
av_cold void ff_ac3dsp_init_riscv(AC3DSPContext *c)
|
||||||
{
|
{
|
||||||
|
#if HAVE_RV
|
||||||
int flags = av_get_cpu_flags();
|
int flags = av_get_cpu_flags();
|
||||||
|
|
||||||
if (flags & AV_CPU_FLAG_RVB_ADDR) {
|
if (flags & AV_CPU_FLAG_RVB_ADDR) {
|
||||||
@ -39,4 +40,5 @@ av_cold void ff_ac3dsp_init_riscv(AC3DSPContext *c)
|
|||||||
if (flags & AV_CPU_FLAG_RVV_F32)
|
if (flags & AV_CPU_FLAG_RVV_F32)
|
||||||
c->float_to_fixed24 = ff_float_to_fixed24_rvv;
|
c->float_to_fixed24 = ff_float_to_fixed24_rvv;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -33,6 +33,7 @@ void ff_vector_clipf_rvv(float *dst, const float *src, int len, float min, float
|
|||||||
|
|
||||||
av_cold void ff_audiodsp_init_riscv(AudioDSPContext *c)
|
av_cold void ff_audiodsp_init_riscv(AudioDSPContext *c)
|
||||||
{
|
{
|
||||||
|
#if HAVE_RV
|
||||||
int flags = av_get_cpu_flags();
|
int flags = av_get_cpu_flags();
|
||||||
|
|
||||||
if (flags & AV_CPU_FLAG_RVF)
|
if (flags & AV_CPU_FLAG_RVF)
|
||||||
@ -47,4 +48,5 @@ av_cold void ff_audiodsp_init_riscv(AudioDSPContext *c)
|
|||||||
c->vector_clipf = ff_vector_clipf_rvv;
|
c->vector_clipf = ff_vector_clipf_rvv;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -30,6 +30,7 @@ void ff_bswap16_buf_rvv(uint16_t *dst, const uint16_t *src, int len);
|
|||||||
|
|
||||||
av_cold void ff_bswapdsp_init_riscv(BswapDSPContext *c)
|
av_cold void ff_bswapdsp_init_riscv(BswapDSPContext *c)
|
||||||
{
|
{
|
||||||
|
#if HAVE_RV
|
||||||
int flags = av_get_cpu_flags();
|
int flags = av_get_cpu_flags();
|
||||||
|
|
||||||
if (flags & AV_CPU_FLAG_RVB_ADDR) {
|
if (flags & AV_CPU_FLAG_RVB_ADDR) {
|
||||||
@ -42,4 +43,5 @@ av_cold void ff_bswapdsp_init_riscv(BswapDSPContext *c)
|
|||||||
c->bswap16_buf = ff_bswap16_buf_rvv;
|
c->bswap16_buf = ff_bswap16_buf_rvv;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -45,6 +45,7 @@ av_cold void ff_pixblockdsp_init_riscv(PixblockDSPContext *c,
|
|||||||
AVCodecContext *avctx,
|
AVCodecContext *avctx,
|
||||||
unsigned high_bit_depth)
|
unsigned high_bit_depth)
|
||||||
{
|
{
|
||||||
|
#if HAVE_RV
|
||||||
int cpu_flags = av_get_cpu_flags();
|
int cpu_flags = av_get_cpu_flags();
|
||||||
|
|
||||||
if (cpu_flags & AV_CPU_FLAG_RVI) {
|
if (cpu_flags & AV_CPU_FLAG_RVI) {
|
||||||
@ -69,4 +70,5 @@ av_cold void ff_pixblockdsp_init_riscv(PixblockDSPContext *c,
|
|||||||
c->diff_pixels = ff_diff_pixels_rvv;
|
c->diff_pixels = ff_diff_pixels_rvv;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
OBJS += riscv/rgb2rgb.o
|
OBJS += riscv/rgb2rgb.o
|
||||||
OBJS += riscv/rgb2rgb_rvb.o
|
RV-OBJS += riscv/rgb2rgb_rvb.o
|
||||||
RVV-OBJS += riscv/rgb2rgb_rvv.o
|
RVV-OBJS += riscv/rgb2rgb_rvv.o
|
||||||
|
@ -42,6 +42,7 @@ void ff_yuyvtoyuv422_rvv(uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
|
|||||||
|
|
||||||
av_cold void rgb2rgb_init_riscv(void)
|
av_cold void rgb2rgb_init_riscv(void)
|
||||||
{
|
{
|
||||||
|
#if HAVE_RV
|
||||||
int flags = av_get_cpu_flags();
|
int flags = av_get_cpu_flags();
|
||||||
|
|
||||||
#if (__riscv_xlen == 64)
|
#if (__riscv_xlen == 64)
|
||||||
@ -61,4 +62,5 @@ av_cold void rgb2rgb_init_riscv(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -68,7 +68,7 @@ CHECKASMOBJS-$(CONFIG_AVUTIL) += $(AVUTILOBJS)
|
|||||||
|
|
||||||
CHECKASMOBJS-$(ARCH_AARCH64) += aarch64/checkasm.o
|
CHECKASMOBJS-$(ARCH_AARCH64) += aarch64/checkasm.o
|
||||||
CHECKASMOBJS-$(HAVE_ARMV5TE_EXTERNAL) += arm/checkasm.o
|
CHECKASMOBJS-$(HAVE_ARMV5TE_EXTERNAL) += arm/checkasm.o
|
||||||
CHECKASMOBJS-$(ARCH_RISCV) += riscv/checkasm.o
|
CHECKASMOBJS-$(HAVE_RV) += riscv/checkasm.o
|
||||||
CHECKASMOBJS-$(HAVE_X86ASM) += x86/checkasm.o
|
CHECKASMOBJS-$(HAVE_X86ASM) += x86/checkasm.o
|
||||||
|
|
||||||
CHECKASMOBJS += $(CHECKASMOBJS-yes) checkasm.o
|
CHECKASMOBJS += $(CHECKASMOBJS-yes) checkasm.o
|
||||||
|
@ -738,7 +738,7 @@ int main(int argc, char *argv[])
|
|||||||
if (have_vfp(av_get_cpu_flags()) || have_neon(av_get_cpu_flags()))
|
if (have_vfp(av_get_cpu_flags()) || have_neon(av_get_cpu_flags()))
|
||||||
checkasm_checked_call = checkasm_checked_call_vfp;
|
checkasm_checked_call = checkasm_checked_call_vfp;
|
||||||
#endif
|
#endif
|
||||||
#if ARCH_RISCV
|
#if ARCH_RISCV && HAVE_RV
|
||||||
struct sigaction act = {
|
struct sigaction act = {
|
||||||
.sa_handler = checkasm_handle_signal,
|
.sa_handler = checkasm_handle_signal,
|
||||||
.sa_flags = 0,
|
.sa_flags = 0,
|
||||||
|
@ -217,7 +217,7 @@ void checkasm_set_function(void *, sigjmp_buf);
|
|||||||
void *checkasm_get_wrapper(void);
|
void *checkasm_get_wrapper(void);
|
||||||
void checkasm_handle_signal(int signum);
|
void checkasm_handle_signal(int signum);
|
||||||
|
|
||||||
#if (__riscv_xlen == 64) && defined (__riscv_d)
|
#if HAVE_RV && (__riscv_xlen == 64) && defined (__riscv_d)
|
||||||
#define declare_new(ret, ...) \
|
#define declare_new(ret, ...) \
|
||||||
int checked_call_signum = 0; \
|
int checked_call_signum = 0; \
|
||||||
sigjmp_buf checked_call_jb; \
|
sigjmp_buf checked_call_jb; \
|
||||||
@ -227,6 +227,9 @@ void checkasm_handle_signal(int signum);
|
|||||||
(checked_call_signum = sigsetjmp(checked_call_jb, 1)) == 0 \
|
(checked_call_signum = sigsetjmp(checked_call_jb, 1)) == 0 \
|
||||||
? checked_call(__VA_ARGS__) \
|
? checked_call(__VA_ARGS__) \
|
||||||
: (checkasm_fail_signal(checked_call_signum), 0))
|
: (checkasm_fail_signal(checked_call_signum), 0))
|
||||||
|
#else
|
||||||
|
#define declare_new(ret, ...)
|
||||||
|
#define call_new(...) ((func_type *)func_new)(__VA_ARGS__)
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
#define declare_new(ret, ...)
|
#define declare_new(ret, ...)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user