]> git.proxmox.com Git - mirror_qemu.git/blob - target/arm/Makefile.objs
ioapic: use irq number instead of vector in ioapic_eoi_broadcast
[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 += translate.o op_helper.o helper.o cpu.o
8 obj-y += neon_helper.o iwmmxt_helper.o vec_helper.o vfp_helper.o
9 obj-y += gdbstub.o
10 obj-$(TARGET_AARCH64) += cpu64.o translate-a64.o helper-a64.o gdbstub64.o
11 obj-$(TARGET_AARCH64) += pauth_helper.o
12 obj-y += crypto_helper.o
13 obj-$(CONFIG_SOFTMMU) += arm-powerctl.o
14
15 DECODETREE = $(SRC_PATH)/scripts/decodetree.py
16
17 target/arm/decode-sve.inc.c: $(SRC_PATH)/target/arm/sve.decode $(DECODETREE)
18 $(call quiet-command,\
19 $(PYTHON) $(DECODETREE) --decode disas_sve -o $@ $<,\
20 "GEN", $(TARGET_DIR)$@)
21
22 target/arm/decode-vfp.inc.c: $(SRC_PATH)/target/arm/vfp.decode $(DECODETREE)
23 $(call quiet-command,\
24 $(PYTHON) $(DECODETREE) --static-decode disas_vfp -o $@ $<,\
25 "GEN", $(TARGET_DIR)$@)
26
27 target/arm/decode-vfp-uncond.inc.c: $(SRC_PATH)/target/arm/vfp-uncond.decode $(DECODETREE)
28 $(call quiet-command,\
29 $(PYTHON) $(DECODETREE) --static-decode disas_vfp_uncond -o $@ $<,\
30 "GEN", $(TARGET_DIR)$@)
31
32 target/arm/translate-sve.o: target/arm/decode-sve.inc.c
33 target/arm/translate.o: target/arm/decode-vfp.inc.c
34 target/arm/translate.o: target/arm/decode-vfp-uncond.inc.c
35
36 obj-$(TARGET_AARCH64) += translate-sve.o sve_helper.o