52d324ff13
Fix a typo in the host endianness macro and add a simple test to detect
regressions.
Fixes: 9bb0048ec6
("target/ppc: convert xxspltw to vector operations")
Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220310172047.61094-1-matheus.ferst@eldorado.org.br>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
31 lines
812 B
Makefile
31 lines
812 B
Makefile
# -*- Mode: makefile -*-
|
|
#
|
|
# ppc64le specific tweaks
|
|
|
|
VPATH += $(SRC_PATH)/tests/tcg/ppc64le
|
|
|
|
ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_POWER8_VECTOR),)
|
|
PPC64LE_TESTS=bcdsub non_signalling_xscv
|
|
endif
|
|
$(PPC64LE_TESTS): CFLAGS += -mpower8-vector
|
|
|
|
ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_POWER10),)
|
|
PPC64LE_TESTS += byte_reverse sha512-vector
|
|
endif
|
|
byte_reverse: CFLAGS += -mcpu=power10
|
|
run-byte_reverse: QEMU_OPTS+=-cpu POWER10
|
|
run-plugin-byte_reverse-with-%: QEMU_OPTS+=-cpu POWER10
|
|
|
|
sha512-vector: CFLAGS +=-mcpu=power10 -O3
|
|
sha512-vector: sha512.c
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS)
|
|
|
|
run-sha512-vector: QEMU_OPTS+=-cpu POWER10
|
|
run-plugin-sha512-vector-with-%: QEMU_OPTS+=-cpu POWER10
|
|
|
|
PPC64LE_TESTS += mtfsf
|
|
PPC64LE_TESTS += signal_save_restore_xer
|
|
PPC64LE_TESTS += xxspltw
|
|
|
|
TESTS += $(PPC64LE_TESTS)
|