2018-04-13 19:08:26 +03:00
|
|
|
# -*- Mode: makefile -*-
|
|
|
|
#
|
|
|
|
# AArch64 specific tweaks
|
|
|
|
|
2019-08-07 17:35:22 +03:00
|
|
|
ARM_SRC=$(SRC_PATH)/tests/tcg/arm
|
|
|
|
VPATH += $(ARM_SRC)
|
|
|
|
|
2018-04-13 19:08:26 +03:00
|
|
|
AARCH64_SRC=$(SRC_PATH)/tests/tcg/aarch64
|
|
|
|
VPATH += $(AARCH64_SRC)
|
|
|
|
|
2019-09-19 16:18:40 +03:00
|
|
|
# Float-convert Tests
|
2019-08-07 17:35:22 +03:00
|
|
|
AARCH64_TESTS=fcvt
|
2018-04-13 19:08:26 +03:00
|
|
|
|
|
|
|
fcvt: LDFLAGS+=-lm
|
|
|
|
|
|
|
|
run-fcvt: fcvt
|
2018-05-21 12:38:37 +03:00
|
|
|
$(call run-test,$<,$(QEMU) $<, "$< on $(TARGET_NAME)")
|
|
|
|
$(call diff-out,$<,$(AARCH64_SRC)/fcvt.ref)
|
2019-02-05 19:52:39 +03:00
|
|
|
|
2019-09-19 16:18:40 +03:00
|
|
|
# Pauth Tests
|
2020-02-03 12:09:28 +03:00
|
|
|
ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_ARMV8_3),)
|
2020-08-03 19:55:03 +03:00
|
|
|
AARCH64_TESTS += pauth-1 pauth-2 pauth-4 pauth-5
|
2020-01-23 18:22:38 +03:00
|
|
|
pauth-%: CFLAGS += -march=armv8.3-a
|
2020-06-15 17:19:22 +03:00
|
|
|
run-pauth-%: QEMU_OPTS += -cpu max
|
|
|
|
run-plugin-pauth-%: QEMU_OPTS += -cpu max
|
2020-02-03 12:09:28 +03:00
|
|
|
endif
|
2019-02-05 19:52:39 +03:00
|
|
|
|
2020-10-21 20:37:49 +03: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 21:49:02 +03:00
|
|
|
# MTE Tests
|
|
|
|
ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_ARMV8_MTE),)
|
2021-04-16 21:31:01 +03:00
|
|
|
AARCH64_TESTS += mte-1 mte-2 mte-3 mte-4 mte-5 mte-6
|
2021-02-12 21:49:02 +03:00
|
|
|
mte-%: CFLAGS += -march=armv8.5-a+memtag
|
|
|
|
endif
|
|
|
|
|
2020-03-16 20:21:47 +03:00
|
|
|
ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_SVE),)
|
|
|
|
# System Registers Tests
|
|
|
|
AARCH64_TESTS += sysregs
|
|
|
|
sysregs: CFLAGS+=-march=armv8.1-a+sve
|
2020-03-16 20:21:50 +03:00
|
|
|
|
2020-03-16 20:21:51 +03:00
|
|
|
# SVE ioctl test
|
|
|
|
AARCH64_TESTS += sve-ioctls
|
|
|
|
sve-ioctls: CFLAGS+=-march=armv8.1-a+sve
|
|
|
|
|
2020-03-16 20:21:50 +03: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 20:21:52 +03: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 22:01:21 +03:00
|
|
|
|
|
|
|
EXTRA_RUNS += run-gdbstub-sysregs run-gdbstub-sve-ioctls
|
2020-03-16 20:21:50 +03:00
|
|
|
endif
|
|
|
|
|
2020-03-16 20:21:47 +03:00
|
|
|
endif
|
|
|
|
|
2019-08-07 17:35:22 +03:00
|
|
|
TESTS += $(AARCH64_TESTS)
|