X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=isa%2FMakefile;h=4e1ba20d2a07668719949b1ccc28d08dbffa24d3;hb=49f478416cec9f73801fdc5dedf9955494be8c66;hp=95092e81049ec21a5e76ed468a9d3c4b963394f0;hpb=0849aad0c23f24ed7728128873fc852839e988b1;p=riscv-tests.git diff --git a/isa/Makefile b/isa/Makefile index 95092e8..4e1ba20 100644 --- a/isa/Makefile +++ b/isa/Makefile @@ -6,16 +6,22 @@ XLEN ?= 64 src_dir := . +ifeq ($(XLEN),64) include $(src_dir)/rv64ui/Makefrag +include $(src_dir)/rv64uc/Makefrag include $(src_dir)/rv64um/Makefrag include $(src_dir)/rv64ua/Makefrag include $(src_dir)/rv64uf/Makefrag include $(src_dir)/rv64ud/Makefrag include $(src_dir)/rv64si/Makefrag include $(src_dir)/rv64mi/Makefrag +endif include $(src_dir)/rv32ui/Makefrag +include $(src_dir)/rv32uc/Makefrag include $(src_dir)/rv32um/Makefrag include $(src_dir)/rv32ua/Makefrag +include $(src_dir)/rv32uf/Makefrag +include $(src_dir)/rv32ud/Makefrag include $(src_dir)/rv32si/Makefrag include $(src_dir)/rv32mi/Makefrag @@ -27,8 +33,7 @@ default: all RISCV_PREFIX ?= riscv$(XLEN)-unknown-elf- RISCV_GCC ?= $(RISCV_PREFIX)gcc -ENTROPY ?= -DENTROPY=$(shell echo $$$$) -RISCV_GCC_OPTS ?= $(ENTROPY) -static -mcmodel=medany -fvisibility=hidden -nostdlib -nostartfiles +RISCV_GCC_OPTS ?= -static -mcmodel=medany -fvisibility=hidden -nostdlib -nostartfiles RISCV_OBJDUMP ?= $(RISCV_PREFIX)objdump --disassemble-all --disassemble-zeroes --section=.text --section=.text.startup --section=.text.init --section=.data RISCV_SIM ?= spike @@ -41,10 +46,10 @@ vpath %.S $(src_dir) $(RISCV_OBJDUMP) $< > $@ %.out: % - $(RISCV_SIM) $< 2> $@ + $(RISCV_SIM) --isa=rv64gc $< 2> $@ %.out32: % - $(RISCV_SIM) --isa=RV32 $< 2> $@ + $(RISCV_SIM) --isa=rv32gc $< 2> $@ define compile_template @@ -53,7 +58,7 @@ $$($(1)_p_tests): $(1)-p-%: $(1)/%.S $(1)_tests += $$($(1)_p_tests) $$($(1)_v_tests): $(1)-v-%: $(1)/%.S - $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -std=gnu99 -O2 -I$(src_dir)/../env/v -I$(src_dir)/macros/scalar -T$(src_dir)/../env/v/link.ld $(src_dir)/../env/v/entry.S $(src_dir)/../env/v/*.c $$< -lc -o $$@ + $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -DENTROPY=0x$$(shell echo \$$@ | md5sum | cut -c 1-7) -std=gnu99 -O2 -I$(src_dir)/../env/v -I$(src_dir)/macros/scalar -T$(src_dir)/../env/v/link.ld $(src_dir)/../env/v/entry.S $(src_dir)/../env/v/*.c $$< -o $$@ $(1)_tests += $$($(1)_v_tests) $(1)_tests_dump = $$(addsuffix .dump, $$($(1)_tests)) @@ -66,19 +71,23 @@ tests += $$($(1)_tests) endef -$(eval $(call compile_template,rv32ui,-m32)) -$(eval $(call compile_template,rv32um,-m32)) -$(eval $(call compile_template,rv32ua,-m32)) -$(eval $(call compile_template,rv32si,-m32)) -$(eval $(call compile_template,rv32mi,-m32)) +$(eval $(call compile_template,rv32ui,-march=rv32g -mabi=ilp32)) +$(eval $(call compile_template,rv32uc,-march=rv32g -mabi=ilp32)) +$(eval $(call compile_template,rv32um,-march=rv32g -mabi=ilp32)) +$(eval $(call compile_template,rv32ua,-march=rv32g -mabi=ilp32)) +$(eval $(call compile_template,rv32uf,-march=rv32g -mabi=ilp32)) +$(eval $(call compile_template,rv32ud,-march=rv32g -mabi=ilp32)) +$(eval $(call compile_template,rv32si,-march=rv32g -mabi=ilp32)) +$(eval $(call compile_template,rv32mi,-march=rv32g -mabi=ilp32)) ifeq ($(XLEN),64) -$(eval $(call compile_template,rv64ui)) -$(eval $(call compile_template,rv64um)) -$(eval $(call compile_template,rv64ua)) -$(eval $(call compile_template,rv64uf)) -$(eval $(call compile_template,rv64ud)) -$(eval $(call compile_template,rv64si)) -$(eval $(call compile_template,rv64mi)) +$(eval $(call compile_template,rv64ui,-march=rv64g -mabi=lp64)) +$(eval $(call compile_template,rv64uc,-march=rv64g -mabi=lp64)) +$(eval $(call compile_template,rv64um,-march=rv64g -mabi=lp64)) +$(eval $(call compile_template,rv64ua,-march=rv64g -mabi=lp64)) +$(eval $(call compile_template,rv64uf,-march=rv64g -mabi=lp64)) +$(eval $(call compile_template,rv64ud,-march=rv64g -mabi=lp64)) +$(eval $(call compile_template,rv64si,-march=rv64g -mabi=lp64)) +$(eval $(call compile_template,rv64mi,-march=rv64g -mabi=lp64)) endif tests_dump = $(addsuffix .dump, $(tests)) @@ -87,8 +96,6 @@ tests_out = $(addsuffix .out, $(spike_tests)) tests32_out = $(addsuffix .out32, $(spike32_tests)) run: $(tests_out) $(tests32_out) - echo; perl -ne 'print " [$$1] $$ARGV \t$$2\n" if /\*{3}(.{8})\*{3}(.*)/' \ - $(tests_out) $(tests32_out); echo; junk += $(tests) $(tests_dump) $(tests_hex) $(tests_out) $(tests32_out)