Add a "--with-xlen" configure argument (#16)
[riscv-tests.git] / isa / Makefile
1 #=======================================================================
2 # Makefile for riscv-tests/isa
3 #-----------------------------------------------------------------------
4
5 src_dir := .
6
7 include $(src_dir)/rv64ui/Makefrag
8 include $(src_dir)/rv64um/Makefrag
9 include $(src_dir)/rv64ua/Makefrag
10 include $(src_dir)/rv64uf/Makefrag
11 include $(src_dir)/rv64ud/Makefrag
12 include $(src_dir)/rv64si/Makefrag
13 include $(src_dir)/rv64mi/Makefrag
14 include $(src_dir)/rv32ui/Makefrag
15 include $(src_dir)/rv32um/Makefrag
16 include $(src_dir)/rv32ua/Makefrag
17 include $(src_dir)/rv32si/Makefrag
18 include $(src_dir)/rv32mi/Makefrag
19
20 default: all
21
22 #--------------------------------------------------------------------
23 # Build rules
24 #--------------------------------------------------------------------
25
26 RISCV_PREFIX ?= riscv$(XLEN)-unknown-elf-
27 RISCV_GCC ?= $(RISCV_PREFIX)gcc
28 ENTROPY ?= -DENTROPY=$(shell echo $$$$)
29 RISCV_GCC_OPTS ?= $(ENTROPY) -static -mcmodel=medany -fvisibility=hidden -nostdlib -nostartfiles
30 RISCV_OBJDUMP ?= $(RISCV_PREFIX)objdump --disassemble-all --disassemble-zeroes --section=.text --section=.text.startup --section=.text.init --section=.data
31 RISCV_SIM ?= spike
32
33 vpath %.S $(src_dir)
34
35 #------------------------------------------------------------
36 # Build assembly tests
37
38 %.dump: %
39 $(RISCV_OBJDUMP) $< > $@
40
41 %.out: %
42 $(RISCV_SIM) $< 2> $@
43
44 %.out32: %
45 $(RISCV_SIM) --isa=RV32 $< 2> $@
46
47 define compile_template
48
49 $$($(1)_p_tests): $(1)-p-%: $(1)/%.S
50 $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -I$(src_dir)/../env/p -I$(src_dir)/macros/scalar -T$(src_dir)/../env/p/link.ld $$< -o $$@
51 $(1)_tests += $$($(1)_p_tests)
52
53 $$($(1)_v_tests): $(1)-v-%: $(1)/%.S
54 $$(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 $$@
55 $(1)_tests += $$($(1)_v_tests)
56
57 $(1)_tests_dump = $$(addsuffix .dump, $$($(1)_tests))
58
59 $(1): $$($(1)_tests_dump)
60
61 .PHONY: $(1)
62
63 tests += $$($(1)_tests)
64
65 endef
66
67 $(eval $(call compile_template,rv32ui,-m32))
68 $(eval $(call compile_template,rv32um,-m32))
69 $(eval $(call compile_template,rv32ua,-m32))
70 $(eval $(call compile_template,rv32si,-m32))
71 $(eval $(call compile_template,rv32mi,-m32))
72 ifeq ($(XLEN),64)
73 $(eval $(call compile_template,rv64ui))
74 $(eval $(call compile_template,rv64um))
75 $(eval $(call compile_template,rv64ua))
76 $(eval $(call compile_template,rv64uf))
77 $(eval $(call compile_template,rv64ud))
78 $(eval $(call compile_template,rv64si))
79 $(eval $(call compile_template,rv64mi))
80 endif
81
82 tests_dump = $(addsuffix .dump, $(tests))
83 tests_hex = $(addsuffix .hex, $(tests))
84 tests_out = $(addsuffix .out, $(spike_tests))
85 tests32_out = $(addsuffix .out32, $(spike32_tests))
86
87 run: $(tests_out) $(tests32_out)
88 echo; perl -ne 'print " [$$1] $$ARGV \t$$2\n" if /\*{3}(.{8})\*{3}(.*)/' \
89 $(tests_out) $(tests32_out); echo;
90
91 junk += $(tests) $(tests_dump) $(tests_hex) $(tests_out) $(tests32_out)
92
93 #------------------------------------------------------------
94 # Default
95
96 all: $(tests_dump)
97
98 #------------------------------------------------------------
99 # Clean up
100
101 clean:
102 rm -rf $(junk)