aboutsummaryrefslogtreecommitdiff
path: root/target/riscv/Makefile.objs
blob: 1cd4c580059e01a31f6176f77d008d1325e34040 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
obj-y += translate.o op_helper.o cpu_helper.o cpu.o csr.o fpu_helper.o vector_helper.o gdbstub.o
obj-$(CONFIG_SOFTMMU) += pmp.o

ifeq ($(CONFIG_SOFTMMU),y)
obj-y += monitor.o
endif

DECODETREE = $(SRC_PATH)/scripts/decodetree.py

decode32-y = $(SRC_PATH)/target/riscv/insn32.decode
decode32-$(TARGET_RISCV64) += $(SRC_PATH)/target/riscv/insn32-64.decode

decode16-y = $(SRC_PATH)/target/riscv/insn16.decode
decode16-$(TARGET_RISCV32) += $(SRC_PATH)/target/riscv/insn16-32.decode
decode16-$(TARGET_RISCV64) += $(SRC_PATH)/target/riscv/insn16-64.decode

target/riscv/decode_insn32.c.inc: $(decode32-y) $(DECODETREE)
	$(call quiet-command, \
	  $(PYTHON) $(DECODETREE) -o $@ --static-decode decode_insn32 \
          $(decode32-y), "GEN", $(TARGET_DIR)$@)

target/riscv/decode_insn16.c.inc: $(decode16-y) $(DECODETREE)
	$(call quiet-command, \
	  $(PYTHON) $(DECODETREE) -o $@ --static-decode decode_insn16 \
          --insnwidth 16 $(decode16-y), "GEN", $(TARGET_DIR)$@)

target/riscv/translate.o: target/riscv/decode_insn32.c.inc \
	target/riscv/decode_insn16.c.inc