]> git.proxmox.com Git - mirror_qemu.git/blob - target/arm/Makefile.objs
1cbe7cfdb47b394cc71811bce271fa7845615916
[mirror_qemu.git] / target / arm / Makefile.objs
1 obj-y += arm-semi.o
2 obj-$(CONFIG_SOFTMMU) += machine.o psci.o arch_dump.o monitor.o
3 obj-$(CONFIG_KVM) += kvm.o
4 obj-$(call land,$(CONFIG_KVM),$(call lnot,$(TARGET_AARCH64))) += kvm32.o
5 obj-$(call land,$(CONFIG_KVM),$(TARGET_AARCH64)) += kvm64.o
6 obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o
7 obj-y += helper.o vfp_helper.o
8 obj-y += cpu.o gdbstub.o
9 obj-$(TARGET_AARCH64) += cpu64.o gdbstub64.o
10 obj-$(CONFIG_SOFTMMU) += arm-powerctl.o
11
12 DECODETREE = $(SRC_PATH)/scripts/decodetree.py
13
14 target/arm/decode-sve.inc.c: $(SRC_PATH)/target/arm/sve.decode $(DECODETREE)
15 $(call quiet-command,\
16 $(PYTHON) $(DECODETREE) --decode disas_sve -o $@ $<,\
17 "GEN", $(TARGET_DIR)$@)
18
19 target/arm/decode-vfp.inc.c: $(SRC_PATH)/target/arm/vfp.decode $(DECODETREE)
20 $(call quiet-command,\
21 $(PYTHON) $(DECODETREE) --static-decode disas_vfp -o $@ $<,\
22 "GEN", $(TARGET_DIR)$@)
23
24 target/arm/decode-vfp-uncond.inc.c: $(SRC_PATH)/target/arm/vfp-uncond.decode $(DECODETREE)
25 $(call quiet-command,\
26 $(PYTHON) $(DECODETREE) --static-decode disas_vfp_uncond -o $@ $<,\
27 "GEN", $(TARGET_DIR)$@)
28
29 target/arm/translate-sve.o: target/arm/decode-sve.inc.c
30 target/arm/translate.o: target/arm/decode-vfp.inc.c
31 target/arm/translate.o: target/arm/decode-vfp-uncond.inc.c
32
33 obj-y += translate.o op_helper.o
34 obj-y += crypto_helper.o
35 obj-y += iwmmxt_helper.o vec_helper.o neon_helper.o
36
37 obj-$(TARGET_AARCH64) += translate-a64.o helper-a64.o
38 obj-$(TARGET_AARCH64) += translate-sve.o sve_helper.o
39 obj-$(TARGET_AARCH64) += pauth_helper.o