make install rule copy the right things to the right places
[riscv-tests.git] / isa / Makefile
1 #=======================================================================
2 # Makefile for riscv-tests/isa
3 #-----------------------------------------------------------------------
4
5 isa_src_dir := .
6
7 include $(isa_src_dir)/rv64ui/Makefrag
8 include $(isa_src_dir)/rv64uf/Makefrag
9 include $(isa_src_dir)/rv64si/Makefrag
10 include $(isa_src_dir)/rv64mi/Makefrag
11 include $(isa_src_dir)/rv32ui/Makefrag
12 include $(isa_src_dir)/rv32si/Makefrag
13 include $(isa_src_dir)/rv32mi/Makefrag
14
15 default: all
16
17 #--------------------------------------------------------------------
18 # Build rules
19 #--------------------------------------------------------------------
20
21 RISCV_PREFIX=riscv64-unknown-elf-
22 RISCV_GCC = $(RISCV_PREFIX)gcc
23 ENTROPY = -DENTROPY=$(shell echo $$$$)
24 RISCV_GCC_OPTS = $(ENTROPY) -static -mcmodel=medany -fvisibility=hidden -nostdlib -nostartfiles
25 RISCV_OBJDUMP = $(RISCV_PREFIX)objdump --disassemble-all --disassemble-zeroes --section=.text --section=.text.startup --section=.text.init --section=.data
26 RISCV_SIM = spike
27
28 vpath %.S $(isa_src_dir)
29
30 #------------------------------------------------------------
31 # Build assembly tests
32
33 %.hex: %
34 (elf2hex 16 8192 $< 2> /dev/null || elf2hex 16 16384 $<) > $@
35
36 %.dump: %
37 $(RISCV_OBJDUMP) $< > $@
38
39 %.out: %
40 $(RISCV_SIM) $< 2> $@
41
42 %.out32: %
43 $(RISCV_SIM) --isa=RV32 $< 2> $@
44
45 define compile_template
46
47 $$($(1)_p_tests): $(1)-p-%: $(1)/%.S
48 $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -I$(isa_src_dir)/../env/p -I$(isa_src_dir)/macros/scalar -T$(isa_src_dir)/../env/p/link.ld $$< -o $$@
49 $(1)_tests += $$($(1)_p_tests)
50
51 $$($(1)_pt_tests): $(1)-pt-%: $(1)/%.S
52 $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -I$(isa_src_dir)/../env/pt -I$(isa_src_dir)/macros/scalar -T$(isa_src_dir)/../env/pt/link.ld $$< -o $$@
53 $(1)_tests += $$($(1)_pt_tests)
54
55 $$($(1)_pm_tests): $(1)-pm-%: $(1)/%.S
56 $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -I$(isa_src_dir)/../env/pm -I$(isa_src_dir)/macros/scalar -T$(isa_src_dir)/../env/pm/link.ld $$< -o $$@
57 $(1)_tests += $$($(1)_pm_tests)
58
59 $$($(1)_v_tests): $(1)-v-%: $(1)/%.S
60 $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -std=gnu99 -O2 -I$(isa_src_dir)/../env/v -I$(isa_src_dir)/macros/scalar -T$(isa_src_dir)/../env/v/link.ld $(isa_src_dir)/../env/v/entry.S $(isa_src_dir)/../env/v/vm.c $$< -lc -o $$@
61 $(1)_tests += $$($(1)_v_tests)
62
63 $(1)_tests_dump = $$(addsuffix .dump, $$($(1)_tests))
64 $(1)_tests_hex = $$(addsuffix .hex, $$($(1)_tests))
65
66 $(1): $$($(1)_tests_dump) $$($(1)_tests_hex)
67
68 .PHONY: $(1)
69
70 tests += $$($(1)_tests)
71
72 endef
73
74 $(eval $(call compile_template,rv32ui,-m32))
75 $(eval $(call compile_template,rv32si,-m32))
76 $(eval $(call compile_template,rv32mi,-m32))
77 $(eval $(call compile_template,rv64ui))
78 $(eval $(call compile_template,rv64uf))
79 $(eval $(call compile_template,rv64si))
80 $(eval $(call compile_template,rv64mi))
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) $(tests_hex)
97
98 #------------------------------------------------------------
99 # Clean up
100
101 clean:
102 rm -rf $(junk)