2019-01-05 02:23:55 +03:00
|
|
|
obj-y += translate.o op_helper.o cpu_helper.o cpu.o csr.o fpu_helper.o gdbstub.o pmp.o
|
2019-02-13 18:53:41 +03:00
|
|
|
|
|
|
|
DECODETREE = $(SRC_PATH)/scripts/decodetree.py
|
|
|
|
|
2019-02-13 18:53:44 +03:00
|
|
|
decode32-y = $(SRC_PATH)/target/riscv/insn32.decode
|
|
|
|
decode32-$(TARGET_RISCV64) += $(SRC_PATH)/target/riscv/insn32-64.decode
|
|
|
|
|
2019-04-01 06:11:53 +03:00
|
|
|
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
|
|
|
|
|
2019-02-13 18:53:44 +03:00
|
|
|
target/riscv/decode_insn32.inc.c: $(decode32-y) $(DECODETREE)
|
2019-02-13 18:53:41 +03:00
|
|
|
$(call quiet-command, \
|
2019-04-01 06:11:49 +03:00
|
|
|
$(PYTHON) $(DECODETREE) -o $@ --static-decode decode_insn32 \
|
|
|
|
$(decode32-y), "GEN", $(TARGET_DIR)$@)
|
2019-02-13 18:53:41 +03:00
|
|
|
|
2019-04-01 06:11:53 +03:00
|
|
|
target/riscv/decode_insn16.inc.c: $(decode16-y) $(DECODETREE)
|
2019-02-13 18:53:56 +03:00
|
|
|
$(call quiet-command, \
|
2019-04-01 06:11:49 +03:00
|
|
|
$(PYTHON) $(DECODETREE) -o $@ --static-decode decode_insn16 \
|
2019-04-01 06:11:53 +03:00
|
|
|
--insnwidth 16 $(decode16-y), "GEN", $(TARGET_DIR)$@)
|
2019-02-13 18:53:56 +03:00
|
|
|
|
|
|
|
target/riscv/translate.o: target/riscv/decode_insn32.inc.c \
|
|
|
|
target/riscv/decode_insn16.inc.c
|