2018-04-13 18:08:26 +02:00
|
|
|
# -*- Mode: makefile -*-
|
|
|
|
#
|
|
|
|
# AArch64 specific tweaks
|
|
|
|
|
2019-08-07 16:35:22 +02:00
|
|
|
ARM_SRC=$(SRC_PATH)/tests/tcg/arm
|
|
|
|
VPATH += $(ARM_SRC)
|
|
|
|
|
2018-04-13 18:08:26 +02:00
|
|
|
AARCH64_SRC=$(SRC_PATH)/tests/tcg/aarch64
|
|
|
|
VPATH += $(AARCH64_SRC)
|
|
|
|
|
2019-09-19 15:18:40 +02:00
|
|
|
# Float-convert Tests
|
2019-08-07 16:35:22 +02:00
|
|
|
AARCH64_TESTS=fcvt
|
2018-04-13 18:08:26 +02:00
|
|
|
|
|
|
|
fcvt: LDFLAGS+=-lm
|
|
|
|
|
|
|
|
run-fcvt: fcvt
|
2018-05-21 11:38:37 +02:00
|
|
|
$(call run-test,$<,$(QEMU) $<, "$< on $(TARGET_NAME)")
|
|
|
|
$(call diff-out,$<,$(AARCH64_SRC)/fcvt.ref)
|
2019-02-05 17:52:39 +01:00
|
|
|
|
2019-09-19 15:18:40 +02:00
|
|
|
# Pauth Tests
|
2020-02-03 10:09:28 +01:00
|
|
|
ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_ARMV8_3),)
|
2020-08-03 18:55:03 +02:00
|
|
|
AARCH64_TESTS += pauth-1 pauth-2 pauth-4 pauth-5
|
2020-01-23 16:22:38 +01:00
|
|
|
pauth-%: CFLAGS += -march=armv8.3-a
|
2020-06-15 16:19:22 +02:00
|
|
|
run-pauth-%: QEMU_OPTS += -cpu max
|
|
|
|
run-plugin-pauth-%: QEMU_OPTS += -cpu max
|
2020-02-03 10:09:28 +01:00
|
|
|
endif
|
2019-02-05 17:52:39 +01:00
|
|
|
|
2020-10-21 19:37:49 +02:00
|
|
|
# BTI Tests
|
|
|
|
# bti-1 tests the elf notes, so we require special compiler support.
|
|
|
|
ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_ARMV8_BTI),)
|
|
|
|
AARCH64_TESTS += bti-1
|
|
|
|
bti-1: CFLAGS += -mbranch-protection=standard
|
|
|
|
bti-1: LDFLAGS += -nostdlib
|
|
|
|
endif
|
|
|
|
# bti-2 tests PROT_BTI, so no special compiler support required.
|
|
|
|
AARCH64_TESTS += bti-2
|
|
|
|
|
2021-02-12 19:49:02 +01:00
|
|
|
# MTE Tests
|
|
|
|
ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_ARMV8_MTE),)
|
2021-04-16 20:31:01 +02:00
|
|
|
AARCH64_TESTS += mte-1 mte-2 mte-3 mte-4 mte-5 mte-6
|
2021-02-12 19:49:02 +01:00
|
|
|
mte-%: CFLAGS += -march=armv8.5-a+memtag
|
|
|
|
endif
|
|
|
|
|
2020-03-16 18:21:47 +01:00
|
|
|
ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_SVE),)
|
|
|
|
# System Registers Tests
|
|
|
|
AARCH64_TESTS += sysregs
|
|
|
|
sysregs: CFLAGS+=-march=armv8.1-a+sve
|
2020-03-16 18:21:50 +01:00
|
|
|
|
2020-03-16 18:21:51 +01:00
|
|
|
# SVE ioctl test
|
|
|
|
AARCH64_TESTS += sve-ioctls
|
|
|
|
sve-ioctls: CFLAGS+=-march=armv8.1-a+sve
|
|
|
|
|
2020-03-16 18:21:50 +01:00
|
|
|
ifneq ($(HAVE_GDB_BIN),)
|
|
|
|
GDB_SCRIPT=$(SRC_PATH)/tests/guest-debug/run-test.py
|
|
|
|
|
|
|
|
run-gdbstub-sysregs: sysregs
|
|
|
|
$(call run-test, $@, $(GDB_SCRIPT) \
|
|
|
|
--gdb $(HAVE_GDB_BIN) \
|
|
|
|
--qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
|
|
|
|
--bin $< --test $(AARCH64_SRC)/gdbstub/test-sve.py, \
|
|
|
|
"basic gdbstub SVE support")
|
2020-03-16 18:21:52 +01:00
|
|
|
|
|
|
|
run-gdbstub-sve-ioctls: sve-ioctls
|
|
|
|
$(call run-test, $@, $(GDB_SCRIPT) \
|
|
|
|
--gdb $(HAVE_GDB_BIN) \
|
|
|
|
--qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
|
|
|
|
--bin $< --test $(AARCH64_SRC)/gdbstub/test-sve-ioctl.py, \
|
|
|
|
"basic gdbstub SVE ZLEN support")
|
2020-04-30 21:01:21 +02:00
|
|
|
|
|
|
|
EXTRA_RUNS += run-gdbstub-sysregs run-gdbstub-sve-ioctls
|
2020-03-16 18:21:50 +01:00
|
|
|
endif
|
|
|
|
|
2020-03-16 18:21:47 +01:00
|
|
|
endif
|
|
|
|
|
2019-08-07 16:35:22 +02:00
|
|
|
TESTS += $(AARCH64_TESTS)
|