├── .dir-locals.el ├── .exrc ├── .gitignore ├── .gitmodules ├── .mailmap ├── .travis.yml ├── CODING_STYLE ├── COPYING ├── COPYING.LIB ├── Changelog ├── HACKING ├── LICENSE ├── MAINTAINERS ├── Makefile ├── Makefile.objs ├── Makefile.target ├── README ├── VERSION ├── accel.c ├── aio-posix.c ├── aio-win32.c ├── arch_init.c ├── async.c ├── atomic_template.h ├── audio ├── Makefile.objs ├── alsaaudio.c ├── audio.c ├── audio.h ├── audio_int.h ├── audio_pt_int.c ├── audio_pt_int.h ├── audio_template.h ├── audio_win_int.c ├── audio_win_int.h ├── coreaudio.c ├── dsound_template.h ├── dsoundaudio.c ├── mixeng.c ├── mixeng.h ├── mixeng_template.h ├── noaudio.c ├── ossaudio.c ├── paaudio.c ├── rate_template.h ├── sdlaudio.c ├── spiceaudio.c ├── trace-events ├── wavaudio.c └── wavcapture.c ├── backends ├── Makefile.objs ├── baum.c ├── cryptodev-builtin.c ├── cryptodev.c ├── hostmem-file.c ├── hostmem-ram.c ├── hostmem.c ├── msmouse.c ├── rng-egd.c ├── rng-random.c ├── rng.c ├── testdev.c └── tpm.c ├── balloon.c ├── block.c ├── block ├── Makefile.objs ├── accounting.c ├── archipelago.c ├── backup.c ├── blkdebug.c ├── blkreplay.c ├── blkverify.c ├── block-backend.c ├── bochs.c ├── cloop.c ├── commit.c ├── crypto.c ├── curl.c ├── dirty-bitmap.c ├── dmg-bz2.c ├── dmg.c ├── dmg.h ├── gluster.c ├── io.c ├── iscsi.c ├── linux-aio.c ├── mirror.c ├── nbd-client.c ├── nbd-client.h ├── nbd.c ├── nfs.c ├── null.c ├── parallels.c ├── qapi.c ├── qcow.c ├── qcow2-cache.c ├── qcow2-cluster.c ├── qcow2-refcount.c ├── qcow2-snapshot.c ├── qcow2.c ├── qcow2.h ├── qed-check.c ├── qed-cluster.c ├── qed-gencb.c ├── qed-l2-cache.c ├── qed-table.c ├── qed.c ├── qed.h ├── quorum.c ├── raw-posix.c ├── raw-win32.c ├── raw_bsd.c ├── rbd.c ├── replication.c ├── sheepdog.c ├── snapshot.c ├── ssh.c ├── stream.c ├── throttle-groups.c ├── trace-events ├── vdi.c ├── vhdx-endian.c ├── vhdx-log.c ├── vhdx.c ├── vhdx.h ├── vmdk.c ├── vpc.c ├── vvfat.c ├── win32-aio.c └── write-threshold.c ├── blockdev-nbd.c ├── blockdev.c ├── blockjob.c ├── bootdevice.c ├── bsd-user ├── Makefile.objs ├── bsd-mman.h ├── bsdload.c ├── elfload.c ├── errno_defs.h ├── freebsd │ ├── strace.list │ └── syscall_nr.h ├── i386 │ ├── target_signal.h │ └── target_syscall.h ├── main.c ├── mmap.c ├── netbsd │ ├── strace.list │ └── syscall_nr.h ├── openbsd │ ├── strace.list │ └── syscall_nr.h ├── qemu.h ├── signal.c ├── sparc │ ├── target_signal.h │ └── target_syscall.h ├── sparc64 │ ├── target_signal.h │ └── target_syscall.h ├── strace.c ├── syscall.c ├── syscall_defs.h ├── uaccess.c └── x86_64 │ ├── target_signal.h │ └── target_syscall.h ├── bt-host.c ├── bt-vhci.c ├── configure ├── contrib ├── ivshmem-client │ ├── Makefile.objs │ ├── ivshmem-client.c │ ├── ivshmem-client.h │ └── main.c └── ivshmem-server │ ├── Makefile.objs │ ├── ivshmem-server.c │ ├── ivshmem-server.h │ └── main.c ├── cpu-exec-common.c ├── cpu-exec.c ├── cpus-common.c ├── cpus.c ├── cputlb.c ├── crypto ├── Makefile.objs ├── aes.c ├── afsplit.c ├── block-luks.c ├── block-luks.h ├── block-qcow.c ├── block-qcow.h ├── block.c ├── blockpriv.h ├── cipher-builtin.c ├── cipher-gcrypt.c ├── cipher-nettle.c ├── cipher.c ├── desrfb.c ├── hash-gcrypt.c ├── hash-glib.c ├── hash-nettle.c ├── hash.c ├── hmac-gcrypt.c ├── hmac-glib.c ├── hmac-nettle.c ├── hmac.c ├── hmac.h ├── init.c ├── ivgen-essiv.c ├── ivgen-essiv.h ├── ivgen-plain.c ├── ivgen-plain.h ├── ivgen-plain64.c ├── ivgen-plain64.h ├── ivgen.c ├── ivgenpriv.h ├── pbkdf-gcrypt.c ├── pbkdf-nettle.c ├── pbkdf-stub.c ├── pbkdf.c ├── random-gcrypt.c ├── random-gnutls.c ├── random-platform.c ├── secret.c ├── tlscreds.c ├── tlscredsanon.c ├── tlscredspriv.h ├── tlscredsx509.c ├── tlssession.c ├── trace-events └── xts.c ├── default-configs ├── aarch64-linux-user.mak ├── aarch64-softmmu.mak ├── alpha-linux-user.mak ├── alpha-softmmu.mak ├── arm-linux-user.mak ├── arm-softmmu.mak ├── armeb-linux-user.mak ├── cris-linux-user.mak ├── cris-softmmu.mak ├── i386-bsd-user.mak ├── i386-linux-user.mak ├── i386-softmmu.mak ├── lm32-softmmu.mak ├── m68k-linux-user.mak ├── m68k-softmmu.mak ├── microblaze-linux-user.mak ├── microblaze-softmmu.mak ├── microblazeel-linux-user.mak ├── microblazeel-softmmu.mak ├── mips-linux-user.mak ├── mips-softmmu-common.mak ├── mips-softmmu.mak ├── mips64-linux-user.mak ├── mips64-softmmu.mak ├── mips64el-linux-user.mak ├── mips64el-softmmu.mak ├── mipsel-linux-user.mak ├── mipsel-softmmu.mak ├── mipsn32-linux-user.mak ├── mipsn32el-linux-user.mak ├── moxie-softmmu.mak ├── or32-linux-user.mak ├── or32-softmmu.mak ├── pci.mak ├── ppc-linux-user.mak ├── ppc-softmmu.mak ├── ppc64-linux-user.mak ├── ppc64-softmmu.mak ├── ppc64abi32-linux-user.mak ├── ppc64le-linux-user.mak ├── ppcemb-softmmu.mak ├── s390x-linux-user.mak ├── s390x-softmmu.mak ├── sh4-linux-user.mak ├── sh4-softmmu.mak ├── sh4eb-linux-user.mak ├── sh4eb-softmmu.mak ├── sound.mak ├── sparc-bsd-user.mak ├── sparc-linux-user.mak ├── sparc-softmmu.mak ├── sparc32plus-linux-user.mak ├── sparc64-bsd-user.mak ├── sparc64-linux-user.mak ├── sparc64-softmmu.mak ├── tilegx-linux-user.mak ├── tricore-softmmu.mak ├── unicore32-softmmu.mak ├── usb.mak ├── x86_64-bsd-user.mak ├── x86_64-linux-user.mak ├── x86_64-softmmu.mak ├── xtensa-softmmu.mak └── xtensaeb-softmmu.mak ├── device-hotplug.c ├── device_tree.c ├── disas.c ├── disas ├── Makefile.objs ├── alpha.c ├── arm-a64.cc ├── arm.c ├── cris.c ├── i386.c ├── ia64.c ├── libvixl │ ├── LICENCE │ ├── Makefile.objs │ ├── README │ └── vixl │ │ ├── a64 │ │ ├── assembler-a64.h │ │ ├── constants-a64.h │ │ ├── cpu-a64.h │ │ ├── decoder-a64.cc │ │ ├── decoder-a64.h │ │ ├── disasm-a64.cc │ │ ├── disasm-a64.h │ │ ├── instructions-a64.cc │ │ └── instructions-a64.h │ │ ├── code-buffer.h │ │ ├── compiler-intrinsics.cc │ │ ├── compiler-intrinsics.h │ │ ├── globals.h │ │ ├── invalset.h │ │ ├── platform.h │ │ ├── utils.cc │ │ └── utils.h ├── lm32.c ├── m68k.c ├── microblaze.c ├── mips.c ├── moxie.c ├── ppc.c ├── s390.c ├── sh4.c ├── sparc.c └── tci.c ├── dma-helpers.c ├── docs ├── COLO-FT.txt ├── aio_notify.promela ├── aio_notify_accept.promela ├── aio_notify_bug.promela ├── atomics.txt ├── bitmaps.md ├── blkdebug.txt ├── blkverify.txt ├── block-replication.txt ├── bootindex.txt ├── build-system.txt ├── ccid.txt ├── colo-proxy.txt ├── generic-loader.txt ├── ich9-ehci-uhci.cfg ├── igd-assign.txt ├── image-fuzzer.txt ├── live-block-ops.txt ├── memory-hotplug.txt ├── memory.txt ├── migration.txt ├── multi-thread-compression.txt ├── multiple-iothreads.txt ├── multiseat.txt ├── pci_expander_bridge.txt ├── pcie.txt ├── q35-chipset.cfg ├── qapi-code-gen.txt ├── qcow2-cache.txt ├── qdev-device-use.txt ├── qemupciserial.inf ├── qmp-commands.txt ├── qmp-events.txt ├── qmp-intro.txt ├── qmp-spec.txt ├── rcu.txt ├── rdma.txt ├── replay.txt ├── specs │ ├── acpi_cpu_hotplug.txt │ ├── acpi_mem_hotplug.txt │ ├── acpi_nvdimm.txt │ ├── acpi_pci_hotplug.txt │ ├── edu.txt │ ├── fw_cfg.txt │ ├── ivshmem-spec.txt │ ├── parallels.txt │ ├── pci-ids.txt │ ├── pci-serial.txt │ ├── pci-testdev.txt │ ├── ppc-spapr-hcalls.txt │ ├── ppc-spapr-hotplug.txt │ ├── pvpanic.txt │ ├── qcow2.txt │ ├── qed_spec.txt │ ├── rocker.txt │ ├── standard-vga.txt │ ├── vhost-user.txt │ └── vmw_pvscsi-spec.txt ├── spice-port-fqdn.txt ├── tcg-exclusive.promela ├── throttle.txt ├── tracing.txt ├── usb-storage.txt ├── usb2.txt ├── virtio-balloon-stats.txt ├── virtio-migration.txt ├── vnc-ledstate-Pseudo-encoding.txt ├── win32-qemu-event.promela ├── writing-qmp-commands.txt ├── xbzrle.txt └── xen-save-devices-state.txt ├── dump.c ├── exec.c ├── fpu ├── softfloat-macros.h ├── softfloat-specialize.h └── softfloat.c ├── fsdev ├── 9p-iov-marshal.c ├── 9p-iov-marshal.h ├── 9p-marshal.c ├── 9p-marshal.h ├── Makefile.objs ├── file-op-9p.h ├── qemu-fsdev-dummy.c ├── qemu-fsdev-opts.c ├── qemu-fsdev.c ├── qemu-fsdev.h ├── virtfs-proxy-helper.c └── virtfs-proxy-helper.texi ├── gdb-xml ├── aarch64-core.xml ├── aarch64-fpu.xml ├── arm-core.xml ├── arm-neon.xml ├── arm-vfp.xml ├── arm-vfp3.xml ├── cf-core.xml ├── cf-fp.xml ├── power-altivec.xml ├── power-core.xml ├── power-fpu.xml ├── power-spe.xml ├── power-vsx.xml ├── power64-core.xml ├── s390-acr.xml ├── s390-cr.xml ├── s390-fpr.xml ├── s390-virt.xml ├── s390-vx.xml └── s390x-core64.xml ├── gdbstub.c ├── hmp-commands-info.hx ├── hmp-commands.hx ├── hmp.c ├── hmp.h ├── hw ├── 9pfs │ ├── 9p-handle.c │ ├── 9p-local.c │ ├── 9p-posix-acl.c │ ├── 9p-proxy.c │ ├── 9p-proxy.h │ ├── 9p-synth.c │ ├── 9p-synth.h │ ├── 9p-xattr-user.c │ ├── 9p-xattr.c │ ├── 9p-xattr.h │ ├── 9p.c │ ├── 9p.h │ ├── Makefile.objs │ ├── codir.c │ ├── cofile.c │ ├── cofs.c │ ├── coth.c │ ├── coth.h │ ├── coxattr.c │ ├── trace-events │ ├── virtio-9p-device.c │ └── virtio-9p.h ├── Makefile.objs ├── acpi │ ├── Makefile.objs │ ├── acpi_interface.c │ ├── aml-build.c │ ├── bios-linker-loader.c │ ├── core.c │ ├── cpu.c │ ├── cpu_hotplug.c │ ├── ich9.c │ ├── ipmi.c │ ├── memory_hotplug.c │ ├── memory_hotplug_acpi_table.c │ ├── nvdimm.c │ ├── pcihp.c │ ├── piix4.c │ ├── tco.c │ └── trace-events ├── adc │ ├── Makefile.objs │ └── stm32f2xx_adc.c ├── alpha │ ├── Makefile.objs │ ├── alpha_sys.h │ ├── dp264.c │ ├── pci.c │ ├── trace-events │ └── typhoon.c ├── arm │ ├── Makefile.objs │ ├── allwinner-a10.c │ ├── armv7m.c │ ├── aspeed.c │ ├── aspeed_soc.c │ ├── bcm2835_peripherals.c │ ├── bcm2836.c │ ├── boot.c │ ├── collie.c │ ├── cubieboard.c │ ├── digic.c │ ├── digic_boards.c │ ├── exynos4210.c │ ├── exynos4_boards.c │ ├── fsl-imx25.c │ ├── fsl-imx31.c │ ├── fsl-imx6.c │ ├── gumstix.c │ ├── highbank.c │ ├── imx25_pdk.c │ ├── integratorcp.c │ ├── kzm.c │ ├── mainstone.c │ ├── musicpal.c │ ├── netduino2.c │ ├── nseries.c │ ├── omap1.c │ ├── omap2.c │ ├── omap_sx1.c │ ├── palm.c │ ├── pxa2xx.c │ ├── pxa2xx_gpio.c │ ├── pxa2xx_pic.c │ ├── raspi.c │ ├── realview.c │ ├── sabrelite.c │ ├── spitz.c │ ├── stellaris.c │ ├── stm32f205_soc.c │ ├── strongarm.c │ ├── strongarm.h │ ├── sysbus-fdt.c │ ├── tosa.c │ ├── trace-events │ ├── versatilepb.c │ ├── vexpress.c │ ├── virt-acpi-build.c │ ├── virt.c │ ├── xilinx_zynq.c │ ├── xlnx-ep108.c │ ├── xlnx-zynqmp.c │ └── z2.c ├── audio │ ├── Makefile.objs │ ├── ac97.c │ ├── adlib.c │ ├── cs4231.c │ ├── cs4231a.c │ ├── es1370.c │ ├── fmopl.c │ ├── fmopl.h │ ├── gus.c │ ├── gusemu.h │ ├── gusemu_hal.c │ ├── gusemu_mixer.c │ ├── gustate.h │ ├── hda-codec-common.h │ ├── hda-codec.c │ ├── intel-hda-defs.h │ ├── intel-hda.c │ ├── intel-hda.h │ ├── lm4549.c │ ├── lm4549.h │ ├── marvell_88w8618.c │ ├── milkymist-ac97.c │ ├── pcspk.c │ ├── pl041.c │ ├── pl041.h │ ├── pl041.hx │ ├── sb16.c │ ├── trace-events │ └── wm8750.c ├── block │ ├── Makefile.objs │ ├── block.c │ ├── cdrom.c │ ├── dataplane │ │ ├── Makefile.objs │ │ ├── virtio-blk.c │ │ └── virtio-blk.h │ ├── ecc.c │ ├── fdc.c │ ├── hd-geometry.c │ ├── m25p80.c │ ├── nand.c │ ├── nvme.c │ ├── nvme.h │ ├── onenand.c │ ├── pflash_cfi01.c │ ├── pflash_cfi02.c │ ├── tc58128.c │ ├── trace-events │ ├── virtio-blk.c │ ├── xen_blkif.h │ └── xen_disk.c ├── bt │ ├── Makefile.objs │ ├── core.c │ ├── hci-csr.c │ ├── hci.c │ ├── hid.c │ ├── l2cap.c │ └── sdp.c ├── char │ ├── Makefile.objs │ ├── bcm2835_aux.c │ ├── cadence_uart.c │ ├── debugcon.c │ ├── digic-uart.c │ ├── escc.c │ ├── etraxfs_ser.c │ ├── exynos4210_uart.c │ ├── grlib_apbuart.c │ ├── imx_serial.c │ ├── ipoctal232.c │ ├── lm32_juart.c │ ├── lm32_uart.c │ ├── mcf_uart.c │ ├── milkymist-uart.c │ ├── omap_uart.c │ ├── parallel.c │ ├── pl011.c │ ├── sclpconsole-lm.c │ ├── sclpconsole.c │ ├── serial-isa.c │ ├── serial-pci.c │ ├── serial.c │ ├── sh_serial.c │ ├── spapr_vty.c │ ├── stm32f2xx_usart.c │ ├── trace-events │ ├── virtio-console.c │ ├── virtio-serial-bus.c │ ├── xen_console.c │ └── xilinx_uartlite.c ├── core │ ├── Makefile.objs │ ├── bus.c │ ├── empty_slot.c │ ├── fw-path-provider.c │ ├── generic-loader.c │ ├── hotplug.c │ ├── irq.c │ ├── loader.c │ ├── machine.c │ ├── nmi.c │ ├── null-machine.c │ ├── or-irq.c │ ├── platform-bus.c │ ├── ptimer.c │ ├── qdev-properties-system.c │ ├── qdev-properties.c │ ├── qdev.c │ ├── register.c │ ├── stream.c │ ├── sysbus.c │ └── uboot_image.h ├── cpu │ ├── Makefile.objs │ ├── a15mpcore.c │ ├── a9mpcore.c │ ├── arm11mpcore.c │ ├── core.c │ └── realview_mpcore.c ├── cris │ ├── Makefile.objs │ ├── axis_dev88.c │ ├── boot.c │ └── boot.h ├── display │ ├── Makefile.objs │ ├── ads7846.c │ ├── bcm2835_fb.c │ ├── blizzard.c │ ├── cg3.c │ ├── cirrus_vga.c │ ├── cirrus_vga_rop.h │ ├── cirrus_vga_rop2.h │ ├── dpcd.c │ ├── exynos4210_fimd.c │ ├── framebuffer.c │ ├── framebuffer.h │ ├── g364fb.c │ ├── jazz_led.c │ ├── milkymist-tmu2.c │ ├── milkymist-vgafb.c │ ├── milkymist-vgafb_template.h │ ├── omap_dss.c │ ├── omap_lcd_template.h │ ├── omap_lcdc.c │ ├── pl110.c │ ├── pl110_template.h │ ├── pxa2xx_lcd.c │ ├── pxa2xx_template.h │ ├── qxl-logger.c │ ├── qxl-render.c │ ├── qxl.c │ ├── qxl.h │ ├── sm501.c │ ├── sm501_template.h │ ├── ssd0303.c │ ├── ssd0323.c │ ├── tc6393xb.c │ ├── tc6393xb_template.h │ ├── tcx.c │ ├── trace-events │ ├── vga-helpers.h │ ├── vga-isa-mm.c │ ├── vga-isa.c │ ├── vga-pci.c │ ├── vga.c │ ├── vga.h │ ├── vga_int.h │ ├── virtio-gpu-3d.c │ ├── virtio-gpu-pci.c │ ├── virtio-gpu.c │ ├── virtio-vga.c │ ├── vmware_vga.c │ ├── xenfb.c │ └── xlnx_dp.c ├── dma │ ├── Makefile.objs │ ├── bcm2835_dma.c │ ├── etraxfs_dma.c │ ├── i82374.c │ ├── i8257.c │ ├── omap_dma.c │ ├── pl080.c │ ├── pl330.c │ ├── puv3_dma.c │ ├── pxa2xx_dma.c │ ├── rc4030.c │ ├── soc_dma.c │ ├── sparc32_dma.c │ ├── sun4m_iommu.c │ ├── trace-events │ ├── xilinx_axidma.c │ ├── xlnx-zynq-devcfg.c │ └── xlnx_dpdma.c ├── gpio │ ├── Makefile.objs │ ├── gpio_key.c │ ├── imx_gpio.c │ ├── max7310.c │ ├── mpc8xxx.c │ ├── omap_gpio.c │ ├── pl061.c │ ├── puv3_gpio.c │ └── zaurus.c ├── i2c │ ├── Makefile.objs │ ├── aspeed_i2c.c │ ├── bitbang_i2c.c │ ├── bitbang_i2c.h │ ├── core.c │ ├── exynos4210_i2c.c │ ├── i2c-ddc.c │ ├── imx_i2c.c │ ├── omap_i2c.c │ ├── pm_smbus.c │ ├── smbus.c │ ├── smbus_eeprom.c │ ├── smbus_ich9.c │ └── versatile_i2c.c ├── i386 │ ├── Makefile.objs │ ├── acpi-build.c │ ├── acpi-build.h │ ├── amd_iommu.c │ ├── amd_iommu.h │ ├── intel_iommu.c │ ├── intel_iommu_internal.h │ ├── kvm │ │ ├── Makefile.objs │ │ ├── apic.c │ │ ├── clock.c │ │ ├── i8254.c │ │ ├── i8259.c │ │ ├── ioapic.c │ │ └── pci-assign.c │ ├── kvmvapic.c │ ├── multiboot.c │ ├── multiboot.h │ ├── pc.c │ ├── pc_piix.c │ ├── pc_q35.c │ ├── pc_sysfw.c │ ├── pci-assign-load-rom.c │ ├── trace-events │ ├── x86-iommu.c │ └── xen │ │ ├── Makefile.objs │ │ ├── xen_apic.c │ │ ├── xen_platform.c │ │ └── xen_pvdevice.c ├── ide │ ├── Makefile.objs │ ├── ahci.c │ ├── atapi.c │ ├── cmd646.c │ ├── core.c │ ├── ich.c │ ├── isa.c │ ├── macio.c │ ├── microdrive.c │ ├── mmio.c │ ├── pci.c │ ├── piix.c │ ├── qdev.c │ └── via.c ├── input │ ├── Makefile.objs │ ├── adb.c │ ├── hid.c │ ├── lm832x.c │ ├── milkymist-softusb.c │ ├── pckbd.c │ ├── pl050.c │ ├── ps2.c │ ├── pxa2xx_keypad.c │ ├── stellaris_input.c │ ├── trace-events │ ├── tsc2005.c │ ├── tsc210x.c │ ├── virtio-input-hid.c │ ├── virtio-input-host.c │ ├── virtio-input.c │ └── vmmouse.c ├── intc │ ├── Makefile.objs │ ├── allwinner-a10-pic.c │ ├── apic.c │ ├── apic_common.c │ ├── arm_gic.c │ ├── arm_gic_common.c │ ├── arm_gic_kvm.c │ ├── arm_gicv2m.c │ ├── arm_gicv3.c │ ├── arm_gicv3_common.c │ ├── arm_gicv3_cpuif.c │ ├── arm_gicv3_dist.c │ ├── arm_gicv3_its_common.c │ ├── arm_gicv3_its_kvm.c │ ├── arm_gicv3_kvm.c │ ├── arm_gicv3_redist.c │ ├── armv7m_nvic.c │ ├── aspeed_vic.c │ ├── bcm2835_ic.c │ ├── bcm2836_control.c │ ├── etraxfs_pic.c │ ├── exynos4210_combiner.c │ ├── exynos4210_gic.c │ ├── gic_internal.h │ ├── gicv3_internal.h │ ├── grlib_irqmp.c │ ├── heathrow_pic.c │ ├── i8259.c │ ├── i8259_common.c │ ├── imx_avic.c │ ├── intc.c │ ├── ioapic.c │ ├── ioapic_common.c │ ├── lm32_pic.c │ ├── mips_gic.c │ ├── omap_intc.c │ ├── openpic.c │ ├── openpic_kvm.c │ ├── pl190.c │ ├── puv3_intc.c │ ├── realview_gic.c │ ├── s390_flic.c │ ├── s390_flic_kvm.c │ ├── sh_intc.c │ ├── slavio_intctl.c │ ├── trace-events │ ├── vgic_common.h │ ├── xics.c │ ├── xics_kvm.c │ ├── xics_spapr.c │ └── xilinx_intc.c ├── ipack │ ├── Makefile.objs │ ├── ipack.c │ └── tpci200.c ├── ipmi │ ├── Makefile.objs │ ├── ipmi.c │ ├── ipmi_bmc_extern.c │ ├── ipmi_bmc_sim.c │ ├── isa_ipmi_bt.c │ └── isa_ipmi_kcs.c ├── isa │ ├── Makefile.objs │ ├── apm.c │ ├── i82378.c │ ├── isa-bus.c │ ├── lpc_ich9.c │ ├── pc87312.c │ ├── piix4.c │ ├── trace-events │ └── vt82c686.c ├── lm32 │ ├── Makefile.objs │ ├── lm32.h │ ├── lm32_boards.c │ ├── lm32_hwsetup.h │ ├── milkymist-hw.h │ └── milkymist.c ├── m68k │ ├── Makefile.objs │ ├── an5206.c │ ├── dummy_m68k.c │ ├── mcf5206.c │ ├── mcf5208.c │ └── mcf_intc.c ├── mem │ ├── Makefile.objs │ ├── nvdimm.c │ ├── pc-dimm.c │ └── trace-events ├── microblaze │ ├── Makefile.objs │ ├── boot.c │ ├── boot.h │ ├── petalogix_ml605_mmu.c │ └── petalogix_s3adsp1800_mmu.c ├── mips │ ├── Makefile.objs │ ├── addr.c │ ├── cps.c │ ├── cputimer.c │ ├── gt64xxx_pci.c │ ├── mips_fulong2e.c │ ├── mips_int.c │ ├── mips_jazz.c │ ├── mips_malta.c │ ├── mips_mipssim.c │ └── mips_r4k.c ├── misc │ ├── Makefile.objs │ ├── a9scu.c │ ├── applesmc.c │ ├── arm11scu.c │ ├── arm_integrator_debug.c │ ├── arm_l2x0.c │ ├── arm_sysctl.c │ ├── aspeed_scu.c │ ├── aspeed_sdmc.c │ ├── auxbus.c │ ├── bcm2835_mbox.c │ ├── bcm2835_property.c │ ├── cbus.c │ ├── debugexit.c │ ├── eccmemctl.c │ ├── edu.c │ ├── exynos4210_pmu.c │ ├── hyperv_testdev.c │ ├── imx25_ccm.c │ ├── imx31_ccm.c │ ├── imx6_ccm.c │ ├── imx6_src.c │ ├── imx_ccm.c │ ├── ivshmem.c │ ├── macio │ │ ├── Makefile.objs │ │ ├── cuda.c │ │ ├── mac_dbdma.c │ │ └── macio.c │ ├── max111x.c │ ├── milkymist-hpdmc.c │ ├── milkymist-pfpu.c │ ├── mips_cmgcr.c │ ├── mips_cpc.c │ ├── mips_itu.c │ ├── mst_fpga.c │ ├── omap_clk.c │ ├── omap_gpmc.c │ ├── omap_l4.c │ ├── omap_sdrc.c │ ├── omap_tap.c │ ├── pc-testdev.c │ ├── pci-testdev.c │ ├── puv3_pm.c │ ├── pvpanic.c │ ├── sga.c │ ├── slavio_misc.c │ ├── stm32f2xx_syscfg.c │ ├── tmp105.c │ ├── tmp105.h │ ├── trace-events │ ├── vmport.c │ ├── zynq-xadc.c │ └── zynq_slcr.c ├── moxie │ ├── Makefile.objs │ └── moxiesim.c ├── net │ ├── Makefile.objs │ ├── allwinner_emac.c │ ├── cadence_gem.c │ ├── dp8393x.c │ ├── e1000.c │ ├── e1000_regs.h │ ├── e1000e.c │ ├── e1000e_core.c │ ├── e1000e_core.h │ ├── e1000x_common.c │ ├── e1000x_common.h │ ├── eepro100.c │ ├── etraxfs_eth.c │ ├── fsl_etsec │ │ ├── etsec.c │ │ ├── etsec.h │ │ ├── miim.c │ │ ├── registers.c │ │ ├── registers.h │ │ └── rings.c │ ├── imx_fec.c │ ├── lan9118.c │ ├── lance.c │ ├── mcf_fec.c │ ├── milkymist-minimac2.c │ ├── mipsnet.c │ ├── ne2000-isa.c │ ├── ne2000.c │ ├── ne2000.h │ ├── net_rx_pkt.c │ ├── net_rx_pkt.h │ ├── net_tx_pkt.c │ ├── net_tx_pkt.h │ ├── opencores_eth.c │ ├── pcnet-pci.c │ ├── pcnet.c │ ├── pcnet.h │ ├── rocker │ │ ├── qmp-norocker.c │ │ ├── rocker.c │ │ ├── rocker.h │ │ ├── rocker_desc.c │ │ ├── rocker_desc.h │ │ ├── rocker_fp.c │ │ ├── rocker_fp.h │ │ ├── rocker_hw.h │ │ ├── rocker_of_dpa.c │ │ ├── rocker_of_dpa.h │ │ ├── rocker_tlv.h │ │ ├── rocker_world.c │ │ └── rocker_world.h │ ├── rtl8139.c │ ├── smc91c111.c │ ├── spapr_llan.c │ ├── stellaris_enet.c │ ├── trace-events │ ├── vhost_net.c │ ├── virtio-net.c │ ├── vmware_utils.h │ ├── vmxnet3.c │ ├── vmxnet3.h │ ├── vmxnet_debug.h │ ├── xen_nic.c │ ├── xgmac.c │ ├── xilinx_axienet.c │ └── xilinx_ethlite.c ├── nvram │ ├── Makefile.objs │ ├── chrp_nvram.c │ ├── ds1225y.c │ ├── eeprom93xx.c │ ├── fw_cfg.c │ ├── mac_nvram.c │ ├── spapr_nvram.c │ └── trace-events ├── openrisc │ ├── Makefile.objs │ ├── cputimer.c │ ├── openrisc_sim.c │ └── pic_cpu.c ├── pci-bridge │ ├── Makefile.objs │ ├── dec.c │ ├── dec.h │ ├── i82801b11.c │ ├── ioh3420.c │ ├── ioh3420.h │ ├── pci_bridge_dev.c │ ├── pci_expander_bridge.c │ ├── xio3130_downstream.c │ ├── xio3130_downstream.h │ ├── xio3130_upstream.c │ └── xio3130_upstream.h ├── pci-host │ ├── Makefile.objs │ ├── apb.c │ ├── bonito.c │ ├── gpex.c │ ├── grackle.c │ ├── pam.c │ ├── piix.c │ ├── ppce500.c │ ├── prep.c │ ├── q35.c │ ├── uninorth.c │ └── versatile.c ├── pci │ ├── Makefile.objs │ ├── msi.c │ ├── msix.c │ ├── pci-stub.c │ ├── pci.c │ ├── pci_bridge.c │ ├── pci_host.c │ ├── pcie.c │ ├── pcie_aer.c │ ├── pcie_host.c │ ├── pcie_port.c │ ├── shpc.c │ ├── slotid_cap.c │ └── trace-events ├── pcmcia │ ├── Makefile.objs │ ├── pcmcia.c │ └── pxa2xx.c ├── ppc │ ├── Makefile.objs │ ├── e500-ccsr.h │ ├── e500.c │ ├── e500.h │ ├── e500plat.c │ ├── fdt.c │ ├── mac.h │ ├── mac_newworld.c │ ├── mac_oldworld.c │ ├── mpc8544_guts.c │ ├── mpc8544ds.c │ ├── pnv.c │ ├── pnv_core.c │ ├── pnv_lpc.c │ ├── pnv_xscom.c │ ├── ppc.c │ ├── ppc405.h │ ├── ppc405_boards.c │ ├── ppc405_uc.c │ ├── ppc440_bamboo.c │ ├── ppc4xx_devs.c │ ├── ppc4xx_pci.c │ ├── ppc_booke.c │ ├── ppce500_spin.c │ ├── prep.c │ ├── spapr.c │ ├── spapr_cpu_core.c │ ├── spapr_drc.c │ ├── spapr_events.c │ ├── spapr_hcall.c │ ├── spapr_iommu.c │ ├── spapr_ovec.c │ ├── spapr_pci.c │ ├── spapr_pci_vfio.c │ ├── spapr_rng.c │ ├── spapr_rtas.c │ ├── spapr_rtas_ddw.c │ ├── spapr_rtc.c │ ├── spapr_vio.c │ ├── trace-events │ └── virtex_ml507.c ├── s390x │ ├── Makefile.objs │ ├── ccw-device.c │ ├── ccw-device.h │ ├── css-bridge.c │ ├── css.c │ ├── event-facility.c │ ├── ipl.c │ ├── ipl.h │ ├── s390-pci-bus.c │ ├── s390-pci-bus.h │ ├── s390-pci-inst.c │ ├── s390-pci-inst.h │ ├── s390-skeys-kvm.c │ ├── s390-skeys.c │ ├── s390-virtio-ccw.c │ ├── s390-virtio-hcall.c │ ├── s390-virtio.c │ ├── s390-virtio.h │ ├── sclp.c │ ├── sclpcpu.c │ ├── sclpquiesce.c │ ├── trace-events │ ├── virtio-ccw.c │ └── virtio-ccw.h ├── scsi │ ├── Makefile.objs │ ├── esp-pci.c │ ├── esp.c │ ├── lsi53c895a.c │ ├── megasas.c │ ├── mfi.h │ ├── mpi.h │ ├── mptconfig.c │ ├── mptendian.c │ ├── mptsas.c │ ├── mptsas.h │ ├── scsi-bus.c │ ├── scsi-disk.c │ ├── scsi-generic.c │ ├── spapr_vscsi.c │ ├── srp.h │ ├── trace-events │ ├── vhost-scsi.c │ ├── viosrp.h │ ├── virtio-scsi-dataplane.c │ ├── virtio-scsi.c │ ├── vmw_pvscsi.c │ └── vmw_pvscsi.h ├── sd │ ├── Makefile.objs │ ├── core.c │ ├── milkymist-memcard.c │ ├── omap_mmc.c │ ├── pl181.c │ ├── pxa2xx_mmci.c │ ├── sd.c │ ├── sdhci-internal.h │ ├── sdhci.c │ ├── ssi-sd.c │ └── trace-events ├── sh4 │ ├── Makefile.objs │ ├── r2d.c │ ├── sh7750.c │ ├── sh7750_regnames.c │ ├── sh7750_regnames.h │ ├── sh7750_regs.h │ ├── sh_pci.c │ └── shix.c ├── smbios │ ├── Makefile.objs │ ├── smbios.c │ ├── smbios_build.h │ └── smbios_type_38.c ├── sparc │ ├── Makefile.objs │ ├── leon3.c │ ├── sun4m.c │ └── trace-events ├── sparc64 │ ├── Makefile.objs │ └── sun4u.c ├── ssi │ ├── Makefile.objs │ ├── aspeed_smc.c │ ├── imx_spi.c │ ├── omap_spi.c │ ├── pl022.c │ ├── ssi.c │ ├── stm32f2xx_spi.c │ ├── xilinx_spi.c │ └── xilinx_spips.c ├── timer │ ├── Makefile.objs │ ├── a9gtimer.c │ ├── allwinner-a10-pit.c │ ├── arm_mptimer.c │ ├── arm_timer.c │ ├── aspeed_timer.c │ ├── cadence_ttc.c │ ├── digic-timer.c │ ├── ds1338.c │ ├── etraxfs_timer.c │ ├── exynos4210_mct.c │ ├── exynos4210_pwm.c │ ├── exynos4210_rtc.c │ ├── grlib_gptimer.c │ ├── hpet.c │ ├── i8254.c │ ├── i8254_common.c │ ├── imx_epit.c │ ├── imx_gpt.c │ ├── lm32_timer.c │ ├── m48t59.c │ ├── mc146818rtc.c │ ├── milkymist-sysctl.c │ ├── mips_gictimer.c │ ├── omap_gptimer.c │ ├── omap_synctimer.c │ ├── pl031.c │ ├── puv3_ost.c │ ├── pxa2xx_timer.c │ ├── sh_timer.c │ ├── slavio_timer.c │ ├── stm32f2xx_timer.c │ ├── trace-events │ ├── twl92230.c │ └── xilinx_timer.c ├── tpm │ ├── Makefile.objs │ ├── tpm_int.h │ ├── tpm_passthrough.c │ ├── tpm_tis.c │ ├── tpm_tis.h │ ├── tpm_util.c │ └── tpm_util.h ├── tricore │ ├── Makefile.objs │ └── tricore_testboard.c ├── unicore32 │ ├── Makefile.objs │ └── puv3.c ├── usb │ ├── Makefile.objs │ ├── bus.c │ ├── ccid-card-emulated.c │ ├── ccid-card-passthru.c │ ├── ccid.h │ ├── combined-packet.c │ ├── core.c │ ├── desc-msos.c │ ├── desc.c │ ├── desc.h │ ├── dev-audio.c │ ├── dev-bluetooth.c │ ├── dev-hid.c │ ├── dev-hub.c │ ├── dev-mtp.c │ ├── dev-network.c │ ├── dev-serial.c │ ├── dev-smartcard-reader.c │ ├── dev-storage.c │ ├── dev-uas.c │ ├── dev-wacom.c │ ├── hcd-ehci-pci.c │ ├── hcd-ehci-sysbus.c │ ├── hcd-ehci.c │ ├── hcd-ehci.h │ ├── hcd-musb.c │ ├── hcd-ohci.c │ ├── hcd-uhci.c │ ├── hcd-xhci.c │ ├── host-legacy.c │ ├── host-libusb.c │ ├── host-stub.c │ ├── host.h │ ├── libhw.c │ ├── quirks-ftdi-ids.h │ ├── quirks-pl2303-ids.h │ ├── quirks.c │ ├── quirks.h │ ├── redirect.c │ ├── trace-events │ ├── tusb6010.c │ └── xen-usb.c ├── vfio │ ├── Makefile.objs │ ├── amd-xgbe.c │ ├── calxeda-xgmac.c │ ├── common.c │ ├── pci-quirks.c │ ├── pci.c │ ├── pci.h │ ├── platform.c │ ├── spapr.c │ └── trace-events ├── virtio │ ├── Makefile.objs │ ├── trace-events │ ├── vhost-backend.c │ ├── vhost-user.c │ ├── vhost-vsock.c │ ├── vhost.c │ ├── virtio-balloon.c │ ├── virtio-bus.c │ ├── virtio-crypto-pci.c │ ├── virtio-crypto.c │ ├── virtio-mmio.c │ ├── virtio-pci.c │ ├── virtio-pci.h │ ├── virtio-rng.c │ └── virtio.c ├── watchdog │ ├── Makefile.objs │ ├── watchdog.c │ ├── wdt_diag288.c │ ├── wdt_i6300esb.c │ └── wdt_ib700.c ├── xen │ ├── Makefile.objs │ ├── xen-host-pci-device.c │ ├── xen-host-pci-device.h │ ├── xen_backend.c │ ├── xen_devconfig.c │ ├── xen_pt.c │ ├── xen_pt.h │ ├── xen_pt_config_init.c │ ├── xen_pt_graphics.c │ ├── xen_pt_msi.c │ └── xen_pvdev.c ├── xenpv │ ├── Makefile.objs │ ├── xen_domainbuild.c │ ├── xen_domainbuild.h │ └── xen_machine_pv.c └── xtensa │ ├── Makefile.objs │ ├── bootparam.h │ ├── pic_cpu.c │ ├── sim.c │ └── xtfpga.c ├── include ├── block │ ├── accounting.h │ ├── aio.h │ ├── block.h │ ├── block_backup.h │ ├── block_int.h │ ├── blockjob.h │ ├── blockjob_int.h │ ├── dirty-bitmap.h │ ├── nbd.h │ ├── qapi.h │ ├── raw-aio.h │ ├── scsi.h │ ├── snapshot.h │ ├── thread-pool.h │ ├── throttle-groups.h │ └── write-threshold.h ├── crypto │ ├── aes.h │ ├── afsplit.h │ ├── block.h │ ├── cipher.h │ ├── desrfb.h │ ├── hash.h │ ├── init.h │ ├── ivgen.h │ ├── pbkdf.h │ ├── random.h │ ├── secret.h │ ├── tlscreds.h │ ├── tlscredsanon.h │ ├── tlscredsx509.h │ ├── tlssession.h │ └── xts.h ├── disas │ ├── bfd.h │ └── disas.h ├── elf.h ├── exec │ ├── address-spaces.h │ ├── cpu-all.h │ ├── cpu-common.h │ ├── cpu-defs.h │ ├── cpu_ldst.h │ ├── cpu_ldst_template.h │ ├── cpu_ldst_useronly_template.h │ ├── cputlb.h │ ├── exec-all.h │ ├── gdbstub.h │ ├── gen-icount.h │ ├── helper-gen.h │ ├── helper-head.h │ ├── helper-proto.h │ ├── helper-tcg.h │ ├── hwaddr.h │ ├── ioport.h │ ├── log.h │ ├── memattrs.h │ ├── memory-internal.h │ ├── memory.h │ ├── poison.h │ ├── ram_addr.h │ ├── semihost.h │ ├── softmmu-semi.h │ ├── tb-context.h │ ├── tb-hash-xx.h │ ├── tb-hash.h │ └── user │ │ ├── abitypes.h │ │ └── thunk.h ├── fpu │ └── softfloat.h ├── glib-compat.h ├── hw │ ├── acpi │ │ ├── acpi-defs.h │ │ ├── acpi.h │ │ ├── acpi_dev_interface.h │ │ ├── aml-build.h │ │ ├── bios-linker-loader.h │ │ ├── cpu.h │ │ ├── cpu_hotplug.h │ │ ├── ich9.h │ │ ├── ipmi.h │ │ ├── memory_hotplug.h │ │ ├── pc-hotplug.h │ │ ├── pcihp.h │ │ ├── piix4.h │ │ ├── tco.h │ │ └── tpm.h │ ├── adc │ │ └── stm32f2xx_adc.h │ ├── arm │ │ ├── allwinner-a10.h │ │ ├── arm.h │ │ ├── aspeed_soc.h │ │ ├── bcm2835_peripherals.h │ │ ├── bcm2836.h │ │ ├── digic.h │ │ ├── exynos4210.h │ │ ├── fdt.h │ │ ├── fsl-imx25.h │ │ ├── fsl-imx31.h │ │ ├── fsl-imx6.h │ │ ├── linux-boot-if.h │ │ ├── omap.h │ │ ├── primecell.h │ │ ├── pxa.h │ │ ├── raspi_platform.h │ │ ├── sharpsl.h │ │ ├── soc_dma.h │ │ ├── stm32f205_soc.h │ │ ├── sysbus-fdt.h │ │ ├── virt-acpi-build.h │ │ ├── virt.h │ │ └── xlnx-zynqmp.h │ ├── audio │ │ ├── audio.h │ │ └── pcspk.h │ ├── block │ │ ├── block.h │ │ ├── fdc.h │ │ └── flash.h │ ├── boards.h │ ├── bt.h │ ├── char │ │ ├── bcm2835_aux.h │ │ ├── cadence_uart.h │ │ ├── digic-uart.h │ │ ├── escc.h │ │ ├── imx_serial.h │ │ ├── lm32_juart.h │ │ ├── pl011.h │ │ ├── serial.h │ │ ├── stm32f2xx_usart.h │ │ └── xilinx_uartlite.h │ ├── compat.h │ ├── core │ │ └── generic-loader.h │ ├── cpu │ │ ├── a15mpcore.h │ │ ├── a9mpcore.h │ │ ├── arm11mpcore.h │ │ └── core.h │ ├── cris │ │ ├── etraxfs.h │ │ └── etraxfs_dma.h │ ├── devices.h │ ├── display │ │ ├── bcm2835_fb.h │ │ ├── dpcd.h │ │ └── xlnx_dp.h │ ├── dma │ │ ├── bcm2835_dma.h │ │ ├── xlnx-zynq-devcfg.h │ │ └── xlnx_dpdma.h │ ├── elf_ops.h │ ├── empty_slot.h │ ├── fw-path-provider.h │ ├── gpio │ │ └── imx_gpio.h │ ├── hotplug.h │ ├── hw.h │ ├── i2c │ │ ├── aspeed_i2c.h │ │ ├── i2c-ddc.h │ │ ├── i2c.h │ │ ├── imx_i2c.h │ │ ├── pm_smbus.h │ │ └── smbus.h │ ├── i386 │ │ ├── apic-msidef.h │ │ ├── apic.h │ │ ├── apic_internal.h │ │ ├── ich9.h │ │ ├── intel_iommu.h │ │ ├── ioapic.h │ │ ├── ioapic_internal.h │ │ ├── pc.h │ │ ├── topology.h │ │ └── x86-iommu.h │ ├── ide.h │ ├── ide │ │ ├── ahci.h │ │ ├── internal.h │ │ └── pci.h │ ├── input │ │ ├── adb-keys.h │ │ ├── adb.h │ │ ├── hid.h │ │ └── ps2.h │ ├── intc │ │ ├── allwinner-a10-pic.h │ │ ├── arm_gic.h │ │ ├── arm_gic_common.h │ │ ├── arm_gicv3.h │ │ ├── arm_gicv3_common.h │ │ ├── arm_gicv3_its_common.h │ │ ├── aspeed_vic.h │ │ ├── bcm2835_ic.h │ │ ├── bcm2836_control.h │ │ ├── imx_avic.h │ │ ├── intc.h │ │ ├── mips_gic.h │ │ └── realview_gic.h │ ├── ipack │ │ └── ipack.h │ ├── ipmi │ │ └── ipmi.h │ ├── irq.h │ ├── isa │ │ ├── apm.h │ │ ├── i8257.h │ │ ├── i8259_internal.h │ │ ├── isa.h │ │ ├── pc87312.h │ │ └── vt82c686.h │ ├── kvm │ │ └── clock.h │ ├── lm32 │ │ └── lm32_pic.h │ ├── loader.h │ ├── m68k │ │ └── mcf.h │ ├── mem │ │ ├── nvdimm.h │ │ └── pc-dimm.h │ ├── mips │ │ ├── bios.h │ │ ├── cps.h │ │ ├── cpudevs.h │ │ └── mips.h │ ├── misc │ │ ├── a9scu.h │ │ ├── arm11scu.h │ │ ├── arm_integrator_debug.h │ │ ├── aspeed_scu.h │ │ ├── aspeed_sdmc.h │ │ ├── auxbus.h │ │ ├── bcm2835_mbox.h │ │ ├── bcm2835_mbox_defs.h │ │ ├── bcm2835_property.h │ │ ├── imx25_ccm.h │ │ ├── imx31_ccm.h │ │ ├── imx6_ccm.h │ │ ├── imx6_src.h │ │ ├── imx_ccm.h │ │ ├── ivshmem.h │ │ ├── mips_cmgcr.h │ │ ├── mips_cpc.h │ │ ├── mips_itu.h │ │ ├── stm32f2xx_syscfg.h │ │ ├── tmp105_regs.h │ │ └── zynq-xadc.h │ ├── net │ │ ├── allwinner_emac.h │ │ ├── cadence_gem.h │ │ ├── imx_fec.h │ │ └── mii.h │ ├── nmi.h │ ├── nvram │ │ ├── chrp_nvram.h │ │ ├── eeprom93xx.h │ │ ├── fw_cfg.h │ │ ├── fw_cfg_keys.h │ │ └── sun_nvram.h │ ├── or-irq.h │ ├── pci-host │ │ ├── apb.h │ │ ├── gpex.h │ │ ├── pam.h │ │ ├── ppce500.h │ │ ├── q35.h │ │ └── spapr.h │ ├── pci │ │ ├── msi.h │ │ ├── msix.h │ │ ├── pci-assign.h │ │ ├── pci.h │ │ ├── pci_bridge.h │ │ ├── pci_bus.h │ │ ├── pci_host.h │ │ ├── pci_ids.h │ │ ├── pci_regs.h │ │ ├── pcie.h │ │ ├── pcie_aer.h │ │ ├── pcie_host.h │ │ ├── pcie_port.h │ │ ├── pcie_regs.h │ │ ├── shpc.h │ │ └── slotid_cap.h │ ├── pcmcia.h │ ├── platform-bus.h │ ├── ppc │ │ ├── fdt.h │ │ ├── mac_dbdma.h │ │ ├── openpic.h │ │ ├── pnv.h │ │ ├── pnv_core.h │ │ ├── pnv_lpc.h │ │ ├── pnv_xscom.h │ │ ├── ppc.h │ │ ├── ppc4xx.h │ │ ├── ppc_e500.h │ │ ├── spapr.h │ │ ├── spapr_cpu_core.h │ │ ├── spapr_drc.h │ │ ├── spapr_ovec.h │ │ ├── spapr_rtas.h │ │ ├── spapr_vio.h │ │ └── xics.h │ ├── ptimer.h │ ├── qdev-core.h │ ├── qdev-dma.h │ ├── qdev-properties.h │ ├── qdev.h │ ├── register.h │ ├── s390x │ │ ├── adapter.h │ │ ├── css-bridge.h │ │ ├── css.h │ │ ├── ebcdic.h │ │ ├── event-facility.h │ │ ├── ioinst.h │ │ ├── s390-virtio-ccw.h │ │ ├── s390_flic.h │ │ ├── sclp.h │ │ └── storage-keys.h │ ├── scsi │ │ ├── esp.h │ │ └── scsi.h │ ├── sd │ │ ├── sd.h │ │ └── sdhci.h │ ├── sh4 │ │ ├── sh.h │ │ └── sh_intc.h │ ├── smbios │ │ ├── ipmi.h │ │ └── smbios.h │ ├── sparc │ │ ├── grlib.h │ │ ├── sparc32_dma.h │ │ └── sun4m.h │ ├── ssi │ │ ├── aspeed_smc.h │ │ ├── imx_spi.h │ │ ├── ssi.h │ │ ├── stm32f2xx_spi.h │ │ └── xilinx_spips.h │ ├── stream.h │ ├── sysbus.h │ ├── timer │ │ ├── a9gtimer.h │ │ ├── allwinner-a10-pit.h │ │ ├── arm_mptimer.h │ │ ├── aspeed_timer.h │ │ ├── digic-timer.h │ │ ├── hpet.h │ │ ├── i8254.h │ │ ├── i8254_internal.h │ │ ├── imx_epit.h │ │ ├── imx_gpt.h │ │ ├── m48t59.h │ │ ├── mc146818rtc.h │ │ ├── mc146818rtc_regs.h │ │ ├── mips_gictimer.h │ │ └── stm32f2xx_timer.h │ ├── tricore │ │ └── tricore.h │ ├── unicore32 │ │ └── puv3.h │ ├── usb.h │ ├── usb │ │ ├── ehci-regs.h │ │ └── uhci-regs.h │ ├── vfio │ │ ├── vfio-amd-xgbe.h │ │ ├── vfio-calxeda-xgmac.h │ │ ├── vfio-common.h │ │ ├── vfio-platform.h │ │ └── vfio.h │ ├── virtio │ │ ├── vhost-backend.h │ │ ├── vhost-scsi.h │ │ ├── vhost-vsock.h │ │ ├── vhost.h │ │ ├── virtio-access.h │ │ ├── virtio-balloon.h │ │ ├── virtio-blk.h │ │ ├── virtio-bus.h │ │ ├── virtio-crypto.h │ │ ├── virtio-gpu.h │ │ ├── virtio-input.h │ │ ├── virtio-net.h │ │ ├── virtio-rng.h │ │ ├── virtio-scsi.h │ │ ├── virtio-serial.h │ │ └── virtio.h │ ├── watchdog │ │ └── wdt_diag288.h │ └── xen │ │ ├── xen.h │ │ ├── xen_backend.h │ │ ├── xen_common.h │ │ └── xen_pvdev.h ├── io │ ├── channel-buffer.h │ ├── channel-command.h │ ├── channel-file.h │ ├── channel-socket.h │ ├── channel-tls.h │ ├── channel-util.h │ ├── channel-watch.h │ ├── channel-websock.h │ ├── channel.h │ └── task.h ├── libdecnumber │ ├── dconfig.h │ ├── decContext.h │ ├── decDPD.h │ ├── decNumber.h │ ├── decNumberLocal.h │ └── dpd │ │ ├── decimal128.h │ │ ├── decimal128Local.h │ │ ├── decimal32.h │ │ └── decimal64.h ├── migration │ ├── block.h │ ├── colo.h │ ├── cpu.h │ ├── failover.h │ ├── migration.h │ ├── page_cache.h │ ├── postcopy-ram.h │ ├── qemu-file.h │ ├── qjson.h │ └── vmstate.h ├── monitor │ ├── hmp-target.h │ ├── monitor.h │ └── qdev.h ├── net │ ├── checksum.h │ ├── eth.h │ ├── filter.h │ ├── net.h │ ├── queue.h │ ├── slirp.h │ ├── tap.h │ ├── vhost-user.h │ └── vhost_net.h ├── qapi │ ├── clone-visitor.h │ ├── dealloc-visitor.h │ ├── error.h │ ├── opts-visitor.h │ ├── qmp-event.h │ ├── qmp │ │ ├── dispatch.h │ │ ├── json-lexer.h │ │ ├── json-parser.h │ │ ├── json-streamer.h │ │ ├── qbool.h │ │ ├── qdict.h │ │ ├── qerror.h │ │ ├── qfloat.h │ │ ├── qint.h │ │ ├── qjson.h │ │ ├── qlist.h │ │ ├── qobject.h │ │ ├── qstring.h │ │ └── types.h │ ├── qobject-input-visitor.h │ ├── qobject-output-visitor.h │ ├── string-input-visitor.h │ ├── string-output-visitor.h │ ├── util.h │ ├── visitor-impl.h │ └── visitor.h ├── qemu-common.h ├── qemu-io.h ├── qemu │ ├── acl.h │ ├── atomic.h │ ├── base64.h │ ├── bcd.h │ ├── bitmap.h │ ├── bitops.h │ ├── bswap.h │ ├── buffer.h │ ├── compatfd.h │ ├── compiler.h │ ├── config-file.h │ ├── coroutine.h │ ├── coroutine_int.h │ ├── crc32c.h │ ├── cutils.h │ ├── envlist.h │ ├── error-report.h │ ├── event_notifier.h │ ├── fifo32.h │ ├── fifo8.h │ ├── fprintf-fn.h │ ├── hbitmap.h │ ├── help_option.h │ ├── host-utils.h │ ├── id.h │ ├── int128.h │ ├── iov.h │ ├── jhash.h │ ├── log.h │ ├── main-loop.h │ ├── memfd.h │ ├── mmap-alloc.h │ ├── module.h │ ├── notify.h │ ├── option.h │ ├── option_int.h │ ├── osdep.h │ ├── path.h │ ├── processor.h │ ├── qdist.h │ ├── qht.h │ ├── queue.h │ ├── range.h │ ├── ratelimit.h │ ├── rcu.h │ ├── rcu_queue.h │ ├── readline.h │ ├── seqlock.h │ ├── sockets.h │ ├── thread-posix.h │ ├── thread-win32.h │ ├── thread.h │ ├── throttle.h │ ├── timed-average.h │ ├── timer.h │ ├── typedefs.h │ ├── unicode.h │ ├── uri.h │ ├── uuid.h │ └── xattr.h ├── qom │ ├── cpu.h │ ├── object.h │ ├── object_interfaces.h │ └── qom-qobject.h ├── standard-headers │ ├── asm-s390 │ │ ├── kvm_virtio.h │ │ └── virtio-ccw.h │ ├── asm-x86 │ │ └── hyperv.h │ └── linux │ │ ├── if_ether.h │ │ ├── input-event-codes.h │ │ ├── input.h │ │ ├── pci_regs.h │ │ ├── types.h │ │ ├── virtio_9p.h │ │ ├── virtio_balloon.h │ │ ├── virtio_blk.h │ │ ├── virtio_config.h │ │ ├── virtio_console.h │ │ ├── virtio_crypto.h │ │ ├── virtio_gpu.h │ │ ├── virtio_ids.h │ │ ├── virtio_input.h │ │ ├── virtio_net.h │ │ ├── virtio_pci.h │ │ ├── virtio_ring.h │ │ ├── virtio_rng.h │ │ ├── virtio_scsi.h │ │ ├── virtio_types.h │ │ └── virtio_vsock.h ├── sysemu │ ├── accel.h │ ├── arch_init.h │ ├── balloon.h │ ├── block-backend.h │ ├── blockdev.h │ ├── bt.h │ ├── char.h │ ├── cpus.h │ ├── cryptodev.h │ ├── device_tree.h │ ├── dma.h │ ├── dump-arch.h │ ├── dump.h │ ├── hostmem.h │ ├── iothread.h │ ├── kvm.h │ ├── kvm_int.h │ ├── memory_mapping.h │ ├── numa.h │ ├── os-posix.h │ ├── os-win32.h │ ├── qtest.h │ ├── replay.h │ ├── rng-random.h │ ├── rng.h │ ├── seccomp.h │ ├── sysemu.h │ ├── tpm.h │ ├── tpm_backend.h │ ├── tpm_backend_int.h │ ├── watchdog.h │ └── xen-mapcache.h ├── trace-tcg.h ├── trace.h └── ui │ ├── console.h │ ├── egl-context.h │ ├── egl-helpers.h │ ├── gtk.h │ ├── input.h │ ├── pixel_ops.h │ ├── qemu-pixman.h │ ├── qemu-spice.h │ ├── sdl2.h │ ├── shader.h │ └── spice-display.h ├── io ├── Makefile.objs ├── channel-buffer.c ├── channel-command.c ├── channel-file.c ├── channel-socket.c ├── channel-tls.c ├── channel-util.c ├── channel-watch.c ├── channel-websock.c ├── channel.c ├── task.c └── trace-events ├── iohandler.c ├── ioport.c ├── iothread.c ├── kvm-all.c ├── kvm-stub.c ├── libdecnumber ├── decContext.c ├── decNumber.c └── dpd │ ├── decimal128.c │ ├── decimal32.c │ └── decimal64.c ├── linux-headers ├── COPYING ├── README ├── asm-arm │ ├── kvm.h │ ├── kvm_para.h │ └── unistd.h ├── asm-arm64 │ ├── kvm.h │ ├── kvm_para.h │ └── unistd.h ├── asm-generic │ └── kvm_para.h ├── asm-mips │ ├── kvm.h │ ├── kvm_para.h │ └── unistd.h ├── asm-powerpc │ ├── epapr_hcalls.h │ ├── kvm.h │ ├── kvm_para.h │ └── unistd.h ├── asm-s390 │ ├── kvm.h │ ├── kvm_para.h │ └── unistd.h ├── asm-x86 │ ├── hyperv.h │ ├── kvm.h │ ├── kvm_para.h │ ├── unistd.h │ ├── unistd_32.h │ ├── unistd_64.h │ └── unistd_x32.h └── linux │ ├── kvm.h │ ├── kvm_para.h │ ├── psci.h │ ├── userfaultfd.h │ ├── vfio.h │ ├── vhost.h │ ├── virtio_config.h │ └── virtio_ring.h ├── linux-user ├── Makefile.objs ├── aarch64 │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── alpha │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── arm │ ├── nwfpe │ │ ├── Makefile.objs │ │ ├── double_cpdo.c │ │ ├── extended_cpdo.c │ │ ├── fpa11.c │ │ ├── fpa11.h │ │ ├── fpa11.inl │ │ ├── fpa11_cpdo.c │ │ ├── fpa11_cpdt.c │ │ ├── fpa11_cprt.c │ │ ├── fpopcode.c │ │ ├── fpopcode.h │ │ ├── fpsr.h │ │ └── single_cpdo.c │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── cris │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── elfload.c ├── errno_defs.h ├── flat.h ├── flatload.c ├── host │ ├── aarch64 │ │ ├── hostdep.h │ │ └── safe-syscall.inc.S │ ├── arm │ │ ├── hostdep.h │ │ └── safe-syscall.inc.S │ ├── i386 │ │ ├── hostdep.h │ │ └── safe-syscall.inc.S │ ├── ia64 │ │ └── hostdep.h │ ├── mips │ │ └── hostdep.h │ ├── ppc │ │ └── hostdep.h │ ├── ppc64 │ │ ├── hostdep.h │ │ └── safe-syscall.inc.S │ ├── s390 │ │ └── hostdep.h │ ├── s390x │ │ ├── hostdep.h │ │ └── safe-syscall.inc.S │ ├── sparc │ │ └── hostdep.h │ ├── sparc64 │ │ └── hostdep.h │ ├── x32 │ │ └── hostdep.h │ └── x86_64 │ │ ├── hostdep.h │ │ └── safe-syscall.inc.S ├── i386 │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── ioctls.h ├── linux_loop.h ├── linuxload.c ├── m68k-sim.c ├── m68k │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── main.c ├── microblaze │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── mips │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── mips64 │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── mmap.c ├── openrisc │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── ppc │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── qemu.h ├── s390x │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── safe-syscall.S ├── sh4 │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── signal.c ├── socket.h ├── sparc │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── sparc64 │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── strace.c ├── strace.list ├── syscall.c ├── syscall_defs.h ├── syscall_types.h ├── target_flat.h ├── tilegx │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── trace-events ├── uaccess.c ├── uname.c ├── uname.h ├── unicore32 │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── vm86.c └── x86_64 │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── main-loop.c ├── memory.c ├── memory_ldst.inc.c ├── memory_mapping.c ├── migration ├── Makefile.objs ├── block.c ├── colo-comm.c ├── colo-failover.c ├── colo.c ├── exec.c ├── fd.c ├── migration.c ├── postcopy-ram.c ├── qemu-file-channel.c ├── qemu-file.c ├── qjson.c ├── ram.c ├── rdma.c ├── savevm.c ├── socket.c ├── tls.c ├── trace-events ├── vmstate.c └── xbzrle.c ├── module-common.c ├── monitor.c ├── nbd ├── Makefile.objs ├── client.c ├── common.c ├── nbd-internal.h └── server.c ├── net ├── Makefile.objs ├── checksum.c ├── clients.h ├── colo-compare.c ├── colo.c ├── colo.h ├── dump.c ├── eth.c ├── filter-buffer.c ├── filter-mirror.c ├── filter-rewriter.c ├── filter.c ├── hub.c ├── hub.h ├── l2tpv3.c ├── net.c ├── netmap.c ├── queue.c ├── slirp.c ├── socket.c ├── tap-aix.c ├── tap-bsd.c ├── tap-haiku.c ├── tap-linux.c ├── tap-linux.h ├── tap-solaris.c ├── tap-win32.c ├── tap.c ├── tap_int.h ├── trace-events ├── util.c ├── util.h ├── vde.c └── vhost-user.c ├── numa.c ├── os-posix.c ├── os-win32.c ├── page_cache.c ├── pc-bios ├── Makefile ├── QEMU,cgthree.bin ├── QEMU,tcx.bin ├── README ├── acpi-dsdt.aml ├── bamboo.dtb ├── bamboo.dts ├── bios-256k.bin ├── bios.bin ├── efi-e1000.rom ├── efi-e1000e.rom ├── efi-eepro100.rom ├── efi-ne2k_pci.rom ├── efi-pcnet.rom ├── efi-rtl8139.rom ├── efi-virtio.rom ├── efi-vmxnet3.rom ├── keymaps │ ├── ar │ ├── bepo │ ├── common │ ├── cz │ ├── da │ ├── de │ ├── de-ch │ ├── en-gb │ ├── en-us │ ├── es │ ├── et │ ├── fi │ ├── fo │ ├── fr │ ├── fr-be │ ├── fr-ca │ ├── fr-ch │ ├── hr │ ├── hu │ ├── is │ ├── it │ ├── ja │ ├── lt │ ├── lv │ ├── mk │ ├── modifiers │ ├── nl │ ├── nl-be │ ├── no │ ├── pl │ ├── pt │ ├── pt-br │ ├── ru │ ├── sl │ ├── sv │ ├── th │ └── tr ├── kvmvapic.bin ├── linuxboot.bin ├── linuxboot_dma.bin ├── multiboot.bin ├── openbios-ppc ├── openbios-sparc32 ├── openbios-sparc64 ├── optionrom │ ├── Makefile │ ├── code16gcc.h │ ├── flat.lds │ ├── kvmvapic.S │ ├── linuxboot.S │ ├── linuxboot_dma.c │ ├── multiboot.S │ └── optionrom.h ├── palcode-clipper ├── petalogix-ml605.dtb ├── petalogix-s3adsp1800.dtb ├── ppc_rom.bin ├── pxe-e1000.rom ├── pxe-eepro100.rom ├── pxe-ne2k_pci.rom ├── pxe-pcnet.rom ├── pxe-rtl8139.rom ├── pxe-virtio.rom ├── qemu-icon.bmp ├── qemu-nsis.bmp ├── qemu-nsis.ico ├── qemu.rsrc ├── qemu_logo.svg ├── qemu_logo_no_text.svg ├── s390-ccw.img ├── s390-ccw │ ├── Makefile │ ├── bootmap.c │ ├── bootmap.h │ ├── cio.h │ ├── iplb.h │ ├── main.c │ ├── s390-ccw.h │ ├── sclp-ascii.c │ ├── sclp.h │ ├── scsi.h │ ├── start.S │ ├── virtio-scsi.c │ ├── virtio-scsi.h │ ├── virtio.c │ └── virtio.h ├── sgabios.bin ├── skiboot.lid ├── slof.bin ├── spapr-rtas.bin ├── spapr-rtas │ ├── Makefile │ └── spapr-rtas.S ├── u-boot.e500 ├── vgabios-cirrus.bin ├── vgabios-qxl.bin ├── vgabios-stdvga.bin ├── vgabios-virtio.bin ├── vgabios-vmware.bin └── vgabios.bin ├── po ├── Makefile ├── bg.po ├── de_DE.po ├── fr_FR.po ├── hu.po ├── it.po ├── messages.po ├── tr.po └── zh_CN.po ├── qapi-schema.json ├── qapi ├── Makefile.objs ├── block-core.json ├── block.json ├── common.json ├── crypto.json ├── event.json ├── introspect.json ├── opts-visitor.c ├── qapi-clone-visitor.c ├── qapi-dealloc-visitor.c ├── qapi-util.c ├── qapi-visit-core.c ├── qmp-dispatch.c ├── qmp-event.c ├── qmp-registry.c ├── qobject-input-visitor.c ├── qobject-output-visitor.c ├── rocker.json ├── string-input-visitor.c ├── string-output-visitor.c ├── trace-events └── trace.json ├── qdev-monitor.c ├── qdict-test-data.txt ├── qemu-bridge-helper.c ├── qemu-char.c ├── qemu-doc.texi ├── qemu-ga.texi ├── qemu-img-cmds.hx ├── qemu-img.c ├── qemu-img.texi ├── qemu-io-cmds.c ├── qemu-io.c ├── qemu-nbd.c ├── qemu-nbd.texi ├── qemu-option-trace.texi ├── qemu-options-wrapper.h ├── qemu-options.h ├── qemu-options.hx ├── qemu-seccomp.c ├── qemu-tech.texi ├── qemu-timer.c ├── qemu.nsi ├── qemu.sasl ├── qga ├── Makefile.objs ├── channel-posix.c ├── channel-win32.c ├── channel.h ├── commands-posix.c ├── commands-win32.c ├── commands.c ├── guest-agent-command-state.c ├── guest-agent-core.h ├── installer │ └── qemu-ga.wxs ├── main.c ├── qapi-schema.json ├── service-win32.c ├── service-win32.h ├── vss-win32.c ├── vss-win32.h └── vss-win32 │ ├── Makefile.objs │ ├── install.cpp │ ├── provider.cpp │ ├── qga-vss.def │ ├── qga-vss.idl │ ├── qga-vss.tlb │ ├── requester.cpp │ ├── requester.h │ └── vss-common.h ├── qmp.c ├── qobject ├── Makefile.objs ├── json-lexer.c ├── json-parser.c ├── json-streamer.c ├── qbool.c ├── qdict.c ├── qfloat.c ├── qint.c ├── qjson.c ├── qlist.c ├── qnull.c ├── qobject.c └── qstring.c ├── qom ├── Makefile.objs ├── container.c ├── cpu.c ├── object.c ├── object_interfaces.c ├── qom-qobject.c └── trace-events ├── qtest.c ├── replay ├── Makefile.objs ├── replay-char.c ├── replay-events.c ├── replay-input.c ├── replay-internal.c ├── replay-internal.h ├── replay-snapshot.c ├── replay-time.c └── replay.c ├── replication.c ├── replication.h ├── roms ├── Makefile ├── config.seabios-128k ├── config.seabios-256k ├── config.vga-cirrus ├── config.vga-isavga ├── config.vga-qxl ├── config.vga-stdvga ├── config.vga-virtio ├── config.vga-vmware └── configure-seabios.sh ├── rules.mak ├── scripts ├── analyse-9p-simpletrace.py ├── analyze-inclusions ├── analyze-migration.py ├── check-qerror.sh ├── checkpatch.pl ├── clean-header-guards.pl ├── clean-includes ├── cleanup-trace-events.pl ├── cocci-macro-file.h ├── coccinelle │ ├── err-bad-newline.cocci │ ├── error_propagate_null.cocci │ ├── overflow_muldiv64.cocci │ ├── remove_local_err.cocci │ ├── remove_muldiv64.cocci │ ├── return_directly.cocci │ ├── round.cocci │ ├── simplify_muldiv64.cocci │ ├── swap_muldiv64.cocci │ └── typecast.cocci ├── coverity-model.c ├── create_config ├── disas-objdump.pl ├── dump-guest-memory.py ├── extract-vsssdk-headers ├── feature_to_c.sh ├── get_maintainer.pl ├── gtester-cat ├── hxtool ├── kvm │ ├── kvm_flightrecorder │ └── vmxcap ├── make-release ├── make_device_config.sh ├── modules │ └── module_block.py ├── ordereddict.py ├── qapi-commands.py ├── qapi-event.py ├── qapi-introspect.py ├── qapi-types.py ├── qapi-visit.py ├── qapi.py ├── qemu-binfmt-conf.sh ├── qemu-gdb.py ├── qemu-guest-agent │ ├── fsfreeze-hook │ └── fsfreeze-hook.d │ │ └── mysql-flush.sh.sample ├── qemu.py ├── qemugdb │ ├── __init__.py │ ├── aio.py │ ├── coroutine.py │ └── mtree.py ├── qmp │ ├── __init__.py │ ├── qemu-ga-client │ ├── qmp │ ├── qmp-shell │ ├── qmp.py │ ├── qom-fuse │ ├── qom-get │ ├── qom-list │ ├── qom-set │ └── qom-tree ├── qtest.py ├── refresh-pxe-roms.sh ├── shaderinclude.pl ├── show-fixed-bugs.sh ├── signrom.py ├── simpletrace.py ├── switch-timer-api ├── texi2pod.pl ├── tracetool.py ├── tracetool │ ├── __init__.py │ ├── backend │ │ ├── __init__.py │ │ ├── dtrace.py │ │ ├── ftrace.py │ │ ├── log.py │ │ ├── simple.py │ │ ├── syslog.py │ │ └── ust.py │ ├── format │ │ ├── __init__.py │ │ ├── c.py │ │ ├── d.py │ │ ├── h.py │ │ ├── simpletrace_stap.py │ │ ├── stap.py │ │ ├── tcg_h.py │ │ ├── tcg_helper_c.py │ │ ├── tcg_helper_h.py │ │ ├── tcg_helper_wrapper_h.py │ │ ├── ust_events_c.py │ │ └── ust_events_h.py │ ├── transform.py │ └── vcpu.py ├── update-linux-headers.sh └── vmstate-static-checker.py ├── slirp ├── COPYRIGHT ├── Makefile.objs ├── arp_table.c ├── bootp.c ├── bootp.h ├── cksum.c ├── debug.h ├── dhcpv6.c ├── dhcpv6.h ├── dnssearch.c ├── if.c ├── if.h ├── ip.h ├── ip6.h ├── ip6_icmp.c ├── ip6_icmp.h ├── ip6_input.c ├── ip6_output.c ├── ip_icmp.c ├── ip_icmp.h ├── ip_input.c ├── ip_output.c ├── libslirp.h ├── main.h ├── mbuf.c ├── mbuf.h ├── misc.c ├── misc.h ├── ndp_table.c ├── sbuf.c ├── sbuf.h ├── slirp.c ├── slirp.h ├── slirp_config.h ├── socket.c ├── socket.h ├── tcp.h ├── tcp_input.c ├── tcp_output.c ├── tcp_subr.c ├── tcp_timer.c ├── tcp_timer.h ├── tcp_var.h ├── tcpip.h ├── tftp.c ├── tftp.h ├── udp.c ├── udp.h └── udp6.c ├── softmmu_template.h ├── spice-qemu-char.c ├── stubs ├── Makefile.objs ├── arch-query-cpu-def.c ├── arch-query-cpu-model-baseline.c ├── arch-query-cpu-model-comparison.c ├── arch-query-cpu-model-expansion.c ├── bdrv-next-monitor-owned.c ├── blk-commit-all.c ├── blockdev-close-all-bdrv-states.c ├── clock-warp.c ├── cpu-get-clock.c ├── cpu-get-icount.c ├── cpus.c ├── dump.c ├── error-printf.c ├── fd-register.c ├── fdset-add-fd.c ├── fdset-find-fd.c ├── fdset-get-fd.c ├── fdset-remove-fd.c ├── gdbstub.c ├── get-fd.c ├── get-next-serial.c ├── get-vm-name.c ├── iohandler.c ├── iothread-lock.c ├── iothread.c ├── ipmi.c ├── is-daemonized.c ├── kvm.c ├── machine-init-done.c ├── migr-blocker.c ├── migration-colo.c ├── mon-is-qmp.c ├── monitor-init.c ├── notify-event.c ├── pc_madt_cpu_entry.c ├── qmp_pc_dimm_device_list.c ├── qtest.c ├── replay-user.c ├── replay.c ├── reset.c ├── runstate-check.c ├── set-fd-handler.c ├── slirp.c ├── smbios_type_38.c ├── sysbus.c ├── target-get-monitor-def.c ├── target-monitor-defs.c ├── trace-control.c ├── uuid.c ├── vhost.c ├── vm-stop.c └── vmstate.c ├── target ├── alpha │ ├── Makefile.objs │ ├── STATUS │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── int_helper.c │ ├── machine.c │ ├── mem_helper.c │ ├── sys_helper.c │ ├── translate.c │ └── vax_helper.c ├── arm │ ├── Makefile.objs │ ├── arch_dump.c │ ├── arm-powerctl.c │ ├── arm-powerctl.h │ ├── arm-semi.c │ ├── arm_ldst.h │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── cpu64.c │ ├── crypto_helper.c │ ├── gdbstub.c │ ├── gdbstub64.c │ ├── helper-a64.c │ ├── helper-a64.h │ ├── helper.c │ ├── helper.h │ ├── internals.h │ ├── iwmmxt_helper.c │ ├── kvm-consts.h │ ├── kvm-stub.c │ ├── kvm.c │ ├── kvm32.c │ ├── kvm64.c │ ├── kvm_arm.h │ ├── machine.c │ ├── monitor.c │ ├── neon_helper.c │ ├── op_addsub.h │ ├── op_helper.c │ ├── psci.c │ ├── trace-events │ ├── translate-a64.c │ ├── translate.c │ └── translate.h ├── cris │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── crisv10-decode.h │ ├── crisv32-decode.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── machine.c │ ├── mmu.c │ ├── mmu.h │ ├── op_helper.c │ ├── opcode-cris.h │ ├── translate.c │ └── translate_v10.c ├── i386 │ ├── Makefile.objs │ ├── TODO │ ├── arch_dump.c │ ├── arch_memory_mapping.c │ ├── bpt_helper.c │ ├── cc_helper.c │ ├── cc_helper_template.h │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── excp_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── hyperv.c │ ├── hyperv.h │ ├── int_helper.c │ ├── kvm-stub.c │ ├── kvm.c │ ├── kvm_i386.h │ ├── machine.c │ ├── mem_helper.c │ ├── misc_helper.c │ ├── monitor.c │ ├── mpx_helper.c │ ├── ops_sse.h │ ├── ops_sse_header.h │ ├── seg_helper.c │ ├── shift_helper_template.h │ ├── smm_helper.c │ ├── svm.h │ ├── svm_helper.c │ ├── trace-events │ └── translate.c ├── lm32 │ ├── Makefile.objs │ ├── README │ ├── TODO │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── lm32-semi.c │ ├── machine.c │ ├── op_helper.c │ └── translate.c ├── m68k │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── m68k-semi.c │ ├── op_helper.c │ ├── qregs.def │ └── translate.c ├── microblaze │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── microblaze-decode.h │ ├── mmu.c │ ├── mmu.h │ ├── op_helper.c │ └── translate.c ├── mips │ ├── Makefile.objs │ ├── TODO │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── dsp_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── kvm.c │ ├── kvm_mips.h │ ├── lmi_helper.c │ ├── machine.c │ ├── mips-defs.h │ ├── mips-semi.c │ ├── msa_helper.c │ ├── op_helper.c │ ├── translate.c │ └── translate_init.c ├── moxie │ ├── Makefile.objs │ ├── cpu.c │ ├── cpu.h │ ├── helper.c │ ├── helper.h │ ├── machine.c │ ├── machine.h │ ├── mmu.c │ ├── mmu.h │ └── translate.c ├── openrisc │ ├── Makefile.objs │ ├── cpu.c │ ├── cpu.h │ ├── exception.c │ ├── exception.h │ ├── exception_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.h │ ├── int_helper.c │ ├── interrupt.c │ ├── interrupt_helper.c │ ├── machine.c │ ├── mmu.c │ ├── mmu_helper.c │ ├── sys_helper.c │ └── translate.c ├── ppc │ ├── Makefile.objs │ ├── STATUS │ ├── arch_dump.c │ ├── cpu-models.c │ ├── cpu-models.h │ ├── cpu-qom.h │ ├── cpu.h │ ├── dfp_helper.c │ ├── excp_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.h │ ├── helper_regs.h │ ├── int_helper.c │ ├── internal.h │ ├── kvm-stub.c │ ├── kvm.c │ ├── kvm_ppc.h │ ├── machine.c │ ├── mem_helper.c │ ├── mfrom_table.c │ ├── mfrom_table_gen.c │ ├── misc_helper.c │ ├── mmu-hash32.c │ ├── mmu-hash32.h │ ├── mmu-hash64.c │ ├── mmu-hash64.h │ ├── mmu_helper.c │ ├── monitor.c │ ├── timebase_helper.c │ ├── trace-events │ ├── translate.c │ ├── translate │ │ ├── dfp-impl.inc.c │ │ ├── dfp-ops.inc.c │ │ ├── fp-impl.inc.c │ │ ├── fp-ops.inc.c │ │ ├── spe-impl.inc.c │ │ ├── spe-ops.inc.c │ │ ├── vmx-impl.inc.c │ │ ├── vmx-ops.inc.c │ │ ├── vsx-impl.inc.c │ │ └── vsx-ops.inc.c │ ├── translate_init.c │ └── user_only_helper.c ├── s390x │ ├── Makefile.objs │ ├── arch_dump.c │ ├── cc_helper.c │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── cpu_features.c │ ├── cpu_features.h │ ├── cpu_features_def.h │ ├── cpu_models.c │ ├── cpu_models.h │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── gen-features.c │ ├── helper.c │ ├── helper.h │ ├── insn-data.def │ ├── insn-format.def │ ├── int_helper.c │ ├── interrupt.c │ ├── ioinst.c │ ├── kvm.c │ ├── machine.c │ ├── mem_helper.c │ ├── misc_helper.c │ ├── mmu_helper.c │ ├── trace-events │ └── translate.c ├── sh4 │ ├── Makefile.objs │ ├── README.sh4 │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── monitor.c │ ├── op_helper.c │ └── translate.c ├── sparc │ ├── Makefile.objs │ ├── TODO │ ├── asi.h │ ├── cc_helper.c │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── fop_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── int32_helper.c │ ├── int64_helper.c │ ├── ldst_helper.c │ ├── machine.c │ ├── mmu_helper.c │ ├── monitor.c │ ├── trace-events │ ├── translate.c │ ├── vis_helper.c │ └── win_helper.c ├── tilegx │ ├── Makefile.objs │ ├── cpu.c │ ├── cpu.h │ ├── helper.c │ ├── helper.h │ ├── opcode_tilegx.h │ ├── simd_helper.c │ ├── spr_def_64.h │ └── translate.c ├── tricore │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── csfr.def │ ├── fpu_helper.c │ ├── helper.c │ ├── helper.h │ ├── op_helper.c │ ├── translate.c │ ├── tricore-defs.h │ └── tricore-opcodes.h ├── unicore32 │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── helper.c │ ├── helper.h │ ├── op_helper.c │ ├── softmmu.c │ ├── translate.c │ └── ucf64_helper.c └── xtensa │ ├── Makefile.objs │ ├── core-dc232b.c │ ├── core-dc232b │ ├── core-isa.h │ └── gdb-config.c │ ├── core-dc233c.c │ ├── core-dc233c │ ├── core-isa.h │ └── gdb-config.c │ ├── core-fsf.c │ ├── core-fsf │ └── core-isa.h │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── import_core.sh │ ├── monitor.c │ ├── op_helper.c │ ├── overlay_tool.h │ ├── translate.c │ └── xtensa-semi.c ├── tcg-runtime.c ├── tcg ├── LICENSE ├── README ├── TODO ├── aarch64 │ ├── tcg-target.h │ └── tcg-target.inc.c ├── arm │ ├── tcg-target.h │ └── tcg-target.inc.c ├── i386 │ ├── tcg-target.h │ └── tcg-target.inc.c ├── ia64 │ ├── tcg-target.h │ └── tcg-target.inc.c ├── mips │ ├── tcg-target.h │ └── tcg-target.inc.c ├── optimize.c ├── ppc │ ├── tcg-target.h │ └── tcg-target.inc.c ├── s390 │ ├── tcg-target.h │ └── tcg-target.inc.c ├── sparc │ ├── tcg-target.h │ └── tcg-target.inc.c ├── tcg-be-ldst.h ├── tcg-be-null.h ├── tcg-common.c ├── tcg-op.c ├── tcg-op.h ├── tcg-opc.h ├── tcg-runtime.h ├── tcg.c ├── tcg.h └── tci │ ├── README │ ├── tcg-target.h │ └── tcg-target.inc.c ├── tci.c ├── tests ├── .gitignore ├── Makefile.include ├── ac97-test.c ├── acpi-test-data │ ├── pc │ │ ├── APIC │ │ ├── APIC.cphp │ │ ├── DSDT │ │ ├── DSDT.bridge │ │ ├── DSDT.cphp │ │ ├── DSDT.ipmikcs │ │ ├── FACP │ │ ├── FACS │ │ ├── HPET │ │ └── SRAT.cphp │ ├── q35 │ │ ├── APIC │ │ ├── APIC.cphp │ │ ├── DSDT │ │ ├── DSDT.bridge │ │ ├── DSDT.cphp │ │ ├── DSDT.ipmibt │ │ ├── FACP │ │ ├── FACS │ │ ├── HPET │ │ ├── MCFG │ │ └── SRAT.cphp │ └── rebuild-expected-aml.sh ├── ahci-test.c ├── atomic_add-bench.c ├── bios-tables-test.c ├── boot-order-test.c ├── boot-sector.c ├── boot-sector.h ├── boot-serial-test.c ├── check-block.sh ├── check-qdict.c ├── check-qfloat.c ├── check-qint.c ├── check-qjson.c ├── check-qlist.c ├── check-qnull.c ├── check-qom-interface.c ├── check-qom-proplist.c ├── check-qstring.c ├── crypto-tls-x509-helpers.c ├── crypto-tls-x509-helpers.h ├── data │ └── test-qga-config ├── device-introspect-test.c ├── display-vga-test.c ├── docker │ ├── Makefile.include │ ├── common.rc │ ├── docker.py │ ├── dockerfiles │ │ ├── centos6.docker │ │ ├── debian-bootstrap.docker │ │ ├── debian-bootstrap.pre │ │ ├── fedora.docker │ │ ├── min-glib.docker │ │ ├── travis.docker │ │ └── ubuntu.docker │ ├── run │ ├── test-build │ ├── test-clang │ ├── test-full │ ├── test-mingw │ ├── test-quick │ ├── travis │ └── travis.py ├── drive_del-test.c ├── ds1338-test.c ├── e1000-test.c ├── e1000e-test.c ├── eepro100-test.c ├── endianness-test.c ├── es1370-test.c ├── fdc-test.c ├── fw_cfg-test.c ├── guest-debug │ └── test-gdbstub.py ├── hd-geo-test.c ├── i440fx-test.c ├── i82801b11-test.c ├── ide-test.c ├── image-fuzzer │ ├── qcow2 │ │ ├── __init__.py │ │ ├── fuzz.py │ │ └── layout.py │ └── runner.py ├── intel-hda-test.c ├── io-channel-helpers.c ├── io-channel-helpers.h ├── ioh3420-test.c ├── ipmi-bt-test.c ├── ipmi-kcs-test.c ├── ipoctal232-test.c ├── ivshmem-test.c ├── libqos │ ├── ahci.c │ ├── ahci.h │ ├── fw_cfg.c │ ├── fw_cfg.h │ ├── i2c-imx.c │ ├── i2c-omap.c │ ├── i2c.c │ ├── i2c.h │ ├── libqos-pc.c │ ├── libqos-pc.h │ ├── libqos-spapr.c │ ├── libqos-spapr.h │ ├── libqos.c │ ├── libqos.h │ ├── malloc-generic.c │ ├── malloc-generic.h │ ├── malloc-pc.c │ ├── malloc-pc.h │ ├── malloc-spapr.c │ ├── malloc-spapr.h │ ├── malloc.c │ ├── malloc.h │ ├── pci-pc.c │ ├── pci-pc.h │ ├── pci-spapr.c │ ├── pci-spapr.h │ ├── pci.c │ ├── pci.h │ ├── rtas.c │ ├── rtas.h │ ├── usb.c │ ├── usb.h │ ├── virtio-mmio.c │ ├── virtio-mmio.h │ ├── virtio-pci.c │ ├── virtio-pci.h │ ├── virtio.c │ └── virtio.h ├── libqtest.c ├── libqtest.h ├── m25p80-test.c ├── m48t59-test.c ├── migration │ ├── .gitignore │ ├── guestperf-batch.py │ ├── guestperf-plot.py │ ├── guestperf.py │ ├── guestperf │ │ ├── __init__.py │ │ ├── comparison.py │ │ ├── engine.py │ │ ├── hardware.py │ │ ├── plot.py │ │ ├── progress.py │ │ ├── report.py │ │ ├── scenario.py │ │ ├── shell.py │ │ └── timings.py │ └── stress.c ├── multiboot │ ├── Makefile │ ├── libc.c │ ├── libc.h │ ├── link.ld │ ├── mmap.c │ ├── mmap.out │ ├── module.txt │ ├── modules.c │ ├── modules.out │ ├── multiboot.h │ ├── run_test.sh │ └── start.S ├── ne2000-test.c ├── nvme-test.c ├── pc-cpu-test.c ├── pcnet-test.c ├── pkix_asn1_tab.c ├── pnv-xscom-test.c ├── postcopy-test.c ├── prom-env-test.c ├── ptimer-test-stubs.c ├── ptimer-test.c ├── ptimer-test.h ├── pvpanic-test.c ├── pxe-test.c ├── q35-test.c ├── qapi-schema │ ├── alternate-any.err │ ├── alternate-any.exit │ ├── alternate-any.json │ ├── alternate-any.out │ ├── alternate-array.err │ ├── alternate-array.exit │ ├── alternate-array.json │ ├── alternate-array.out │ ├── alternate-base.err │ ├── alternate-base.exit │ ├── alternate-base.json │ ├── alternate-base.out │ ├── alternate-clash.err │ ├── alternate-clash.exit │ ├── alternate-clash.json │ ├── alternate-clash.out │ ├── alternate-conflict-dict.err │ ├── alternate-conflict-dict.exit │ ├── alternate-conflict-dict.json │ ├── alternate-conflict-dict.out │ ├── alternate-conflict-string.err │ ├── alternate-conflict-string.exit │ ├── alternate-conflict-string.json │ ├── alternate-conflict-string.out │ ├── alternate-empty.err │ ├── alternate-empty.exit │ ├── alternate-empty.json │ ├── alternate-empty.out │ ├── alternate-nested.err │ ├── alternate-nested.exit │ ├── alternate-nested.json │ ├── alternate-nested.out │ ├── alternate-unknown.err │ ├── alternate-unknown.exit │ ├── alternate-unknown.json │ ├── alternate-unknown.out │ ├── args-alternate.err │ ├── args-alternate.exit │ ├── args-alternate.json │ ├── args-alternate.out │ ├── args-any.err │ ├── args-any.exit │ ├── args-any.json │ ├── args-any.out │ ├── args-array-empty.err │ ├── args-array-empty.exit │ ├── args-array-empty.json │ ├── args-array-empty.out │ ├── args-array-unknown.err │ ├── args-array-unknown.exit │ ├── args-array-unknown.json │ ├── args-array-unknown.out │ ├── args-bad-boxed.err │ ├── args-bad-boxed.exit │ ├── args-bad-boxed.json │ ├── args-bad-boxed.out │ ├── args-boxed-anon.err │ ├── args-boxed-anon.exit │ ├── args-boxed-anon.json │ ├── args-boxed-anon.out │ ├── args-boxed-empty.err │ ├── args-boxed-empty.exit │ ├── args-boxed-empty.json │ ├── args-boxed-empty.out │ ├── args-boxed-string.err │ ├── args-boxed-string.exit │ ├── args-boxed-string.json │ ├── args-boxed-string.out │ ├── args-int.err │ ├── args-int.exit │ ├── args-int.json │ ├── args-int.out │ ├── args-invalid.err │ ├── args-invalid.exit │ ├── args-invalid.json │ ├── args-invalid.out │ ├── args-member-array-bad.err │ ├── args-member-array-bad.exit │ ├── args-member-array-bad.json │ ├── args-member-array-bad.out │ ├── args-member-case.err │ ├── args-member-case.exit │ ├── args-member-case.json │ ├── args-member-case.out │ ├── args-member-unknown.err │ ├── args-member-unknown.exit │ ├── args-member-unknown.json │ ├── args-member-unknown.out │ ├── args-name-clash.err │ ├── args-name-clash.exit │ ├── args-name-clash.json │ ├── args-name-clash.out │ ├── args-union.err │ ├── args-union.exit │ ├── args-union.json │ ├── args-union.out │ ├── args-unknown.err │ ├── args-unknown.exit │ ├── args-unknown.json │ ├── args-unknown.out │ ├── bad-base.err │ ├── bad-base.exit │ ├── bad-base.json │ ├── bad-base.out │ ├── bad-data.err │ ├── bad-data.exit │ ├── bad-data.json │ ├── bad-data.out │ ├── bad-ident.err │ ├── bad-ident.exit │ ├── bad-ident.json │ ├── bad-ident.out │ ├── bad-type-bool.err │ ├── bad-type-bool.exit │ ├── bad-type-bool.json │ ├── bad-type-bool.out │ ├── bad-type-dict.err │ ├── bad-type-dict.exit │ ├── bad-type-dict.json │ ├── bad-type-dict.out │ ├── bad-type-int.err │ ├── bad-type-int.exit │ ├── bad-type-int.json │ ├── bad-type-int.out │ ├── base-cycle-direct.err │ ├── base-cycle-direct.exit │ ├── base-cycle-direct.json │ ├── base-cycle-direct.out │ ├── base-cycle-indirect.err │ ├── base-cycle-indirect.exit │ ├── base-cycle-indirect.json │ ├── base-cycle-indirect.out │ ├── command-int.err │ ├── command-int.exit │ ├── command-int.json │ ├── command-int.out │ ├── comments.err │ ├── comments.exit │ ├── comments.json │ ├── comments.out │ ├── double-data.err │ ├── double-data.exit │ ├── double-data.json │ ├── double-data.out │ ├── double-type.err │ ├── double-type.exit │ ├── double-type.json │ ├── double-type.out │ ├── duplicate-key.err │ ├── duplicate-key.exit │ ├── duplicate-key.json │ ├── duplicate-key.out │ ├── empty.err │ ├── empty.exit │ ├── empty.json │ ├── empty.out │ ├── enum-bad-name.err │ ├── enum-bad-name.exit │ ├── enum-bad-name.json │ ├── enum-bad-name.out │ ├── enum-bad-prefix.err │ ├── enum-bad-prefix.exit │ ├── enum-bad-prefix.json │ ├── enum-bad-prefix.out │ ├── enum-clash-member.err │ ├── enum-clash-member.exit │ ├── enum-clash-member.json │ ├── enum-clash-member.out │ ├── enum-dict-member.err │ ├── enum-dict-member.exit │ ├── enum-dict-member.json │ ├── enum-dict-member.out │ ├── enum-int-member.err │ ├── enum-int-member.exit │ ├── enum-int-member.json │ ├── enum-int-member.out │ ├── enum-member-case.err │ ├── enum-member-case.exit │ ├── enum-member-case.json │ ├── enum-member-case.out │ ├── enum-missing-data.err │ ├── enum-missing-data.exit │ ├── enum-missing-data.json │ ├── enum-missing-data.out │ ├── enum-wrong-data.err │ ├── enum-wrong-data.exit │ ├── enum-wrong-data.json │ ├── enum-wrong-data.out │ ├── escape-outside-string.err │ ├── escape-outside-string.exit │ ├── escape-outside-string.json │ ├── escape-outside-string.out │ ├── escape-too-big.err │ ├── escape-too-big.exit │ ├── escape-too-big.json │ ├── escape-too-big.out │ ├── escape-too-short.err │ ├── escape-too-short.exit │ ├── escape-too-short.json │ ├── escape-too-short.out │ ├── event-boxed-empty.err │ ├── event-boxed-empty.exit │ ├── event-boxed-empty.json │ ├── event-boxed-empty.out │ ├── event-case.err │ ├── event-case.exit │ ├── event-case.json │ ├── event-case.out │ ├── event-nest-struct.err │ ├── event-nest-struct.exit │ ├── event-nest-struct.json │ ├── event-nest-struct.out │ ├── flat-union-array-branch.err │ ├── flat-union-array-branch.exit │ ├── flat-union-array-branch.json │ ├── flat-union-array-branch.out │ ├── flat-union-bad-base.err │ ├── flat-union-bad-base.exit │ ├── flat-union-bad-base.json │ ├── flat-union-bad-base.out │ ├── flat-union-bad-discriminator.err │ ├── flat-union-bad-discriminator.exit │ ├── flat-union-bad-discriminator.json │ ├── flat-union-bad-discriminator.out │ ├── flat-union-base-any.err │ ├── flat-union-base-any.exit │ ├── flat-union-base-any.json │ ├── flat-union-base-any.out │ ├── flat-union-base-union.err │ ├── flat-union-base-union.exit │ ├── flat-union-base-union.json │ ├── flat-union-base-union.out │ ├── flat-union-clash-member.err │ ├── flat-union-clash-member.exit │ ├── flat-union-clash-member.json │ ├── flat-union-clash-member.out │ ├── flat-union-empty.err │ ├── flat-union-empty.exit │ ├── flat-union-empty.json │ ├── flat-union-empty.out │ ├── flat-union-incomplete-branch.err │ ├── flat-union-incomplete-branch.exit │ ├── flat-union-incomplete-branch.json │ ├── flat-union-incomplete-branch.out │ ├── flat-union-inline.err │ ├── flat-union-inline.exit │ ├── flat-union-inline.json │ ├── flat-union-inline.out │ ├── flat-union-int-branch.err │ ├── flat-union-int-branch.exit │ ├── flat-union-int-branch.json │ ├── flat-union-int-branch.out │ ├── flat-union-invalid-branch-key.err │ ├── flat-union-invalid-branch-key.exit │ ├── flat-union-invalid-branch-key.json │ ├── flat-union-invalid-branch-key.out │ ├── flat-union-invalid-discriminator.err │ ├── flat-union-invalid-discriminator.exit │ ├── flat-union-invalid-discriminator.json │ ├── flat-union-invalid-discriminator.out │ ├── flat-union-no-base.err │ ├── flat-union-no-base.exit │ ├── flat-union-no-base.json │ ├── flat-union-no-base.out │ ├── flat-union-optional-discriminator.err │ ├── flat-union-optional-discriminator.exit │ ├── flat-union-optional-discriminator.json │ ├── flat-union-optional-discriminator.out │ ├── flat-union-string-discriminator.err │ ├── flat-union-string-discriminator.exit │ ├── flat-union-string-discriminator.json │ ├── flat-union-string-discriminator.out │ ├── funny-char.err │ ├── funny-char.exit │ ├── funny-char.json │ ├── funny-char.out │ ├── ident-with-escape.err │ ├── ident-with-escape.exit │ ├── ident-with-escape.json │ ├── ident-with-escape.out │ ├── include-before-err.err │ ├── include-before-err.exit │ ├── include-before-err.json │ ├── include-before-err.out │ ├── include-cycle-b.json │ ├── include-cycle-c.json │ ├── include-cycle.err │ ├── include-cycle.exit │ ├── include-cycle.json │ ├── include-cycle.out │ ├── include-format-err.err │ ├── include-format-err.exit │ ├── include-format-err.json │ ├── include-format-err.out │ ├── include-nested-err.err │ ├── include-nested-err.exit │ ├── include-nested-err.json │ ├── include-nested-err.out │ ├── include-no-file.err │ ├── include-no-file.exit │ ├── include-no-file.json │ ├── include-no-file.out │ ├── include-non-file.err │ ├── include-non-file.exit │ ├── include-non-file.json │ ├── include-non-file.out │ ├── include-relpath-sub.json │ ├── include-relpath.err │ ├── include-relpath.exit │ ├── include-relpath.json │ ├── include-relpath.out │ ├── include-repetition-sub.json │ ├── include-repetition.err │ ├── include-repetition.exit │ ├── include-repetition.json │ ├── include-repetition.out │ ├── include-self-cycle.err │ ├── include-self-cycle.exit │ ├── include-self-cycle.json │ ├── include-self-cycle.out │ ├── include-simple-sub.json │ ├── include-simple.err │ ├── include-simple.exit │ ├── include-simple.json │ ├── include-simple.out │ ├── include │ │ └── relpath.json │ ├── indented-expr.err │ ├── indented-expr.exit │ ├── indented-expr.json │ ├── indented-expr.out │ ├── leading-comma-list.err │ ├── leading-comma-list.exit │ ├── leading-comma-list.json │ ├── leading-comma-list.out │ ├── leading-comma-object.err │ ├── leading-comma-object.exit │ ├── leading-comma-object.json │ ├── leading-comma-object.out │ ├── missing-colon.err │ ├── missing-colon.exit │ ├── missing-colon.json │ ├── missing-colon.out │ ├── missing-comma-list.err │ ├── missing-comma-list.exit │ ├── missing-comma-list.json │ ├── missing-comma-list.out │ ├── missing-comma-object.err │ ├── missing-comma-object.exit │ ├── missing-comma-object.json │ ├── missing-comma-object.out │ ├── missing-type.err │ ├── missing-type.exit │ ├── missing-type.json │ ├── missing-type.out │ ├── nested-struct-data.err │ ├── nested-struct-data.exit │ ├── nested-struct-data.json │ ├── nested-struct-data.out │ ├── non-objects.err │ ├── non-objects.exit │ ├── non-objects.json │ ├── non-objects.out │ ├── qapi-schema-test.err │ ├── qapi-schema-test.exit │ ├── qapi-schema-test.json │ ├── qapi-schema-test.out │ ├── quoted-structural-chars.err │ ├── quoted-structural-chars.exit │ ├── quoted-structural-chars.json │ ├── quoted-structural-chars.out │ ├── redefined-builtin.err │ ├── redefined-builtin.exit │ ├── redefined-builtin.json │ ├── redefined-builtin.out │ ├── redefined-command.err │ ├── redefined-command.exit │ ├── redefined-command.json │ ├── redefined-command.out │ ├── redefined-event.err │ ├── redefined-event.exit │ ├── redefined-event.json │ ├── redefined-event.out │ ├── redefined-type.err │ ├── redefined-type.exit │ ├── redefined-type.json │ ├── redefined-type.out │ ├── reserved-command-q.err │ ├── reserved-command-q.exit │ ├── reserved-command-q.json │ ├── reserved-command-q.out │ ├── reserved-enum-q.err │ ├── reserved-enum-q.exit │ ├── reserved-enum-q.json │ ├── reserved-enum-q.out │ ├── reserved-member-has.err │ ├── reserved-member-has.exit │ ├── reserved-member-has.json │ ├── reserved-member-has.out │ ├── reserved-member-q.err │ ├── reserved-member-q.exit │ ├── reserved-member-q.json │ ├── reserved-member-q.out │ ├── reserved-member-u.err │ ├── reserved-member-u.exit │ ├── reserved-member-u.json │ ├── reserved-member-u.out │ ├── reserved-member-underscore.err │ ├── reserved-member-underscore.exit │ ├── reserved-member-underscore.json │ ├── reserved-member-underscore.out │ ├── reserved-type-kind.err │ ├── reserved-type-kind.exit │ ├── reserved-type-kind.json │ ├── reserved-type-kind.out │ ├── reserved-type-list.err │ ├── reserved-type-list.exit │ ├── reserved-type-list.json │ ├── reserved-type-list.out │ ├── returns-alternate.err │ ├── returns-alternate.exit │ ├── returns-alternate.json │ ├── returns-alternate.out │ ├── returns-array-bad.err │ ├── returns-array-bad.exit │ ├── returns-array-bad.json │ ├── returns-array-bad.out │ ├── returns-dict.err │ ├── returns-dict.exit │ ├── returns-dict.json │ ├── returns-dict.out │ ├── returns-unknown.err │ ├── returns-unknown.exit │ ├── returns-unknown.json │ ├── returns-unknown.out │ ├── returns-whitelist.err │ ├── returns-whitelist.exit │ ├── returns-whitelist.json │ ├── returns-whitelist.out │ ├── struct-base-clash-deep.err │ ├── struct-base-clash-deep.exit │ ├── struct-base-clash-deep.json │ ├── struct-base-clash-deep.out │ ├── struct-base-clash.err │ ├── struct-base-clash.exit │ ├── struct-base-clash.json │ ├── struct-base-clash.out │ ├── struct-data-invalid.err │ ├── struct-data-invalid.exit │ ├── struct-data-invalid.json │ ├── struct-data-invalid.out │ ├── struct-member-invalid.err │ ├── struct-member-invalid.exit │ ├── struct-member-invalid.json │ ├── struct-member-invalid.out │ ├── test-qapi.py │ ├── trailing-comma-list.err │ ├── trailing-comma-list.exit │ ├── trailing-comma-list.json │ ├── trailing-comma-list.out │ ├── trailing-comma-object.err │ ├── trailing-comma-object.exit │ ├── trailing-comma-object.json │ ├── trailing-comma-object.out │ ├── type-bypass-bad-gen.err │ ├── type-bypass-bad-gen.exit │ ├── type-bypass-bad-gen.json │ ├── type-bypass-bad-gen.out │ ├── unclosed-list.err │ ├── unclosed-list.exit │ ├── unclosed-list.json │ ├── unclosed-list.out │ ├── unclosed-object.err │ ├── unclosed-object.exit │ ├── unclosed-object.json │ ├── unclosed-object.out │ ├── unclosed-string.err │ ├── unclosed-string.exit │ ├── unclosed-string.json │ ├── unclosed-string.out │ ├── unicode-str.err │ ├── unicode-str.exit │ ├── unicode-str.json │ ├── unicode-str.out │ ├── union-base-no-discriminator.err │ ├── union-base-no-discriminator.exit │ ├── union-base-no-discriminator.json │ ├── union-base-no-discriminator.out │ ├── union-branch-case.err │ ├── union-branch-case.exit │ ├── union-branch-case.json │ ├── union-branch-case.out │ ├── union-clash-branches.err │ ├── union-clash-branches.exit │ ├── union-clash-branches.json │ ├── union-clash-branches.out │ ├── union-empty.err │ ├── union-empty.exit │ ├── union-empty.json │ ├── union-empty.out │ ├── union-invalid-base.err │ ├── union-invalid-base.exit │ ├── union-invalid-base.json │ ├── union-invalid-base.out │ ├── union-optional-branch.err │ ├── union-optional-branch.exit │ ├── union-optional-branch.json │ ├── union-optional-branch.out │ ├── union-unknown.err │ ├── union-unknown.exit │ ├── union-unknown.json │ ├── union-unknown.out │ ├── unknown-escape.err │ ├── unknown-escape.exit │ ├── unknown-escape.json │ ├── unknown-escape.out │ ├── unknown-expr-key.err │ ├── unknown-expr-key.exit │ ├── unknown-expr-key.json │ └── unknown-expr-key.out ├── qemu-iotests-quick.sh ├── qemu-iotests │ ├── 101 │ ├── 102 │ ├── 103 │ ├── 104 │ ├── 105 │ ├── 107 │ ├── 108 │ ├── 109 │ ├── 110 │ ├── 111 │ ├── 112 │ ├── 113 │ ├── 114 │ ├── 115 │ ├── 116 │ ├── 117 │ ├── 118 │ ├── 119 │ ├── 120 │ ├── 121 │ ├── 122 │ ├── 123 │ ├── 124 │ ├── 128 │ ├── 129 │ ├── 130 │ ├── 131 │ ├── 132 │ ├── 133 │ ├── 134 │ ├── 135 │ ├── 136 │ ├── 137 │ ├── 138 │ ├── 139 │ ├── 140 │ ├── 141 │ ├── 142 │ ├── 143 │ ├── 144 │ ├── 145 │ ├── 146 │ ├── 147 │ ├── 148 │ ├── 149 │ ├── 150 │ ├── 152 │ ├── 154 │ ├── 155 │ ├── 156 │ ├── 157 │ ├── 158 │ ├── 159 │ ├── 160 │ ├── 162 │ ├── 170 │ ├── 171 │ ├── 172 │ ├── .gitignore │ ├── 001 │ ├── 001.out │ ├── 002 │ ├── 002.out │ ├── 003 │ ├── 003.out │ ├── 004 │ ├── 004.out │ ├── 005 │ ├── 005.out │ ├── 007 │ ├── 007.out │ ├── 008 │ ├── 008.out │ ├── 009 │ ├── 009.out │ ├── 010 │ ├── 010.out │ ├── 011 │ ├── 011.out │ ├── 012 │ ├── 012.out │ ├── 013 │ ├── 013.out │ ├── 014 │ ├── 014.out │ ├── 015 │ ├── 015.out │ ├── 017 │ ├── 017.out │ ├── 018 │ ├── 018.out │ ├── 019 │ ├── 019.out │ ├── 020 │ ├── 020.out │ ├── 021 │ ├── 021.out │ ├── 022 │ ├── 022.out │ ├── 023 │ ├── 023.out │ ├── 024 │ ├── 024.out │ ├── 025 │ ├── 025.out │ ├── 026 │ ├── 026.out │ ├── 026.out.nocache │ ├── 027 │ ├── 027.out │ ├── 028 │ ├── 028.out │ ├── 029 │ ├── 029.out │ ├── 030 │ ├── 030.out │ ├── 031 │ ├── 031.out │ ├── 032 │ ├── 032.out │ ├── 033 │ ├── 033.out │ ├── 034 │ ├── 034.out │ ├── 035 │ ├── 035.out │ ├── 036 │ ├── 036.out │ ├── 037 │ ├── 037.out │ ├── 038 │ ├── 038.out │ ├── 039 │ ├── 039.out │ ├── 040 │ ├── 040.out │ ├── 041 │ ├── 041.out │ ├── 042 │ ├── 042.out │ ├── 043 │ ├── 043.out │ ├── 044 │ ├── 044.out │ ├── 045 │ ├── 045.out │ ├── 046 │ ├── 046.out │ ├── 047 │ ├── 047.out │ ├── 048 │ ├── 048.out │ ├── 049 │ ├── 049.out │ ├── 050 │ ├── 050.out │ ├── 051 │ ├── 051.out │ ├── 051.pc.out │ ├── 052 │ ├── 052.out │ ├── 053 │ ├── 053.out │ ├── 054 │ ├── 054.out │ ├── 055 │ ├── 055.out │ ├── 056 │ ├── 056.out │ ├── 057 │ ├── 057.out │ ├── 058 │ ├── 058.out │ ├── 059 │ ├── 059.out │ ├── 060 │ ├── 060.out │ ├── 061 │ ├── 061.out │ ├── 062 │ ├── 062.out │ ├── 063 │ ├── 063.out │ ├── 064 │ ├── 064.out │ ├── 065 │ ├── 065.out │ ├── 066 │ ├── 066.out │ ├── 067 │ ├── 067.out │ ├── 068 │ ├── 068.out │ ├── 069 │ ├── 069.out │ ├── 070 │ ├── 070.out │ ├── 071 │ ├── 071.out │ ├── 072 │ ├── 072.out │ ├── 073 │ ├── 073.out │ ├── 074 │ ├── 074.out │ ├── 075 │ ├── 075.out │ ├── 076 │ ├── 076.out │ ├── 077 │ ├── 077.out │ ├── 078 │ ├── 078.out │ ├── 079 │ ├── 079.out │ ├── 080 │ ├── 080.out │ ├── 081 │ ├── 081.out │ ├── 082 │ ├── 082.out │ ├── 083 │ ├── 083.out │ ├── 084 │ ├── 084.out │ ├── 085 │ ├── 085.out │ ├── 086 │ ├── 086.out │ ├── 087 │ ├── 087.out │ ├── 088 │ ├── 088.out │ ├── 089 │ ├── 089.out │ ├── 090 │ ├── 090.out │ ├── 091 │ ├── 091.out │ ├── 092 │ ├── 092.out │ ├── 093 │ ├── 093.out │ ├── 094 │ ├── 094.out │ ├── 095 │ ├── 095.out │ ├── 096 │ ├── 096.out │ ├── 097 │ ├── 097.out │ ├── 098 │ ├── 098.out │ ├── 099 │ ├── 099.out │ ├── 101.out │ ├── 102.out │ ├── 103.out │ ├── 104.out │ ├── 105.out │ ├── 107.out │ ├── 108.out │ ├── 109.out │ ├── 110.out │ ├── 111.out │ ├── 112.out │ ├── 113.out │ ├── 114.out │ ├── 115.out │ ├── 116.out │ ├── 117.out │ ├── 118.out │ ├── 119.out │ ├── 120.out │ ├── 121.out │ ├── 122.out │ ├── 123.out │ ├── 124.out │ ├── 128.out │ ├── 129.out │ ├── 130.out │ ├── 131.out │ ├── 132.out │ ├── 133.out │ ├── 134.out │ ├── 135.out │ ├── 136.out │ ├── 137.out │ ├── 138.out │ ├── 139.out │ ├── 140.out │ ├── 141.out │ ├── 142.out │ ├── 143.out │ ├── 144.out │ ├── 145.out │ ├── 146.out │ ├── 147.out │ ├── 148.out │ ├── 149.out │ ├── 150.out │ ├── 152.out │ ├── 154.out │ ├── 155.out │ ├── 156.out │ ├── 157.out │ ├── 158.out │ ├── 159.out │ ├── 160.out │ ├── 162.out │ ├── 170.out │ ├── 171.out │ ├── 172.out │ ├── COPYING │ ├── Makefile │ ├── README │ ├── check │ ├── common │ ├── common.config │ ├── common.filter │ ├── common.pattern │ ├── common.qemu │ ├── common.rc │ ├── group │ ├── iotests.py │ ├── nbd-fault-injector.py │ ├── qcow2.py │ ├── qed.py │ ├── sample_images │ │ ├── README │ │ ├── afl5.img.bz2 │ │ ├── afl9.vmdk.bz2 │ │ ├── d2v-zerofilled.vhd.bz2 │ │ ├── empty.bochs.bz2 │ │ ├── grub_mbr.raw.bz2 │ │ ├── hyperv2012r2-dynamic.vhd.bz2 │ │ ├── iotest-dirtylog-10G-4M.vhdx.bz2 │ │ ├── iotest-dynamic-1G.vhdx.bz2 │ │ ├── iotest-version3.vmdk.bz2 │ │ ├── parallels-v1.bz2 │ │ ├── parallels-v2.bz2 │ │ ├── simple-pattern.cloop.bz2 │ │ ├── test-disk2vhd.vhdx.bz2 │ │ └── virtualpc-dynamic.vhd.bz2 │ └── socket_scm_helper.c ├── qht-bench.c ├── qom-test.c ├── rcutorture.c ├── rocker │ ├── README │ ├── all │ ├── bridge │ ├── bridge-stp │ ├── bridge-vlan │ ├── bridge-vlan-stp │ ├── port │ └── tut.dot ├── rtas-test.c ├── rtc-test.c ├── rtl8139-test.c ├── spapr-phb-test.c ├── tcg │ ├── Makefile │ ├── README │ ├── alpha │ │ ├── Makefile │ │ ├── crt.s │ │ ├── hello-alpha.c │ │ ├── test-cond.c │ │ └── test-ovf.c │ ├── cris │ │ ├── .gdbinit │ │ ├── Makefile │ │ ├── README │ │ ├── check_abs.c │ │ ├── check_addc.c │ │ ├── check_addcm.c │ │ ├── check_addcv17.s │ │ ├── check_addi.s │ │ ├── check_addiv32.s │ │ ├── check_addm.s │ │ ├── check_addo.c │ │ ├── check_addoq.c │ │ ├── check_addq.s │ │ ├── check_addr.s │ │ ├── check_addxc.s │ │ ├── check_addxm.s │ │ ├── check_addxr.s │ │ ├── check_andc.s │ │ ├── check_andm.s │ │ ├── check_andq.s │ │ ├── check_andr.s │ │ ├── check_asr.s │ │ ├── check_ba.s │ │ ├── check_bas.s │ │ ├── check_bcc.s │ │ ├── check_bound.c │ │ ├── check_boundc.s │ │ ├── check_boundr.s │ │ ├── check_btst.s │ │ ├── check_clearfv32.s │ │ ├── check_clrjmp1.s │ │ ├── check_cmp-2.s │ │ ├── check_cmpc.s │ │ ├── check_cmpm.s │ │ ├── check_cmpq.s │ │ ├── check_cmpr.s │ │ ├── check_cmpxc.s │ │ ├── check_cmpxm.s │ │ ├── check_dstep.s │ │ ├── check_ftag.c │ │ ├── check_gcctorture_pr28634-1.c │ │ ├── check_gcctorture_pr28634.c │ │ ├── check_glibc_kernelversion.c │ │ ├── check_hello.c │ │ ├── check_int64.c │ │ ├── check_jsr.s │ │ ├── check_lapc.s │ │ ├── check_lsl.s │ │ ├── check_lsr.s │ │ ├── check_lz.c │ │ ├── check_mapbrk.c │ │ ├── check_mcp.s │ │ ├── check_mmap1.c │ │ ├── check_mmap2.c │ │ ├── check_mmap3.c │ │ ├── check_movdelsr1.s │ │ ├── check_movecr.s │ │ ├── check_movei.s │ │ ├── check_movemr.s │ │ ├── check_movemrv32.s │ │ ├── check_moveq.c │ │ ├── check_mover.s │ │ ├── check_moverm.s │ │ ├── check_movmp.s │ │ ├── check_movpmv32.s │ │ ├── check_movpr.s │ │ ├── check_movprv32.s │ │ ├── check_movscr.s │ │ ├── check_movsm.s │ │ ├── check_movsr.s │ │ ├── check_movucr.s │ │ ├── check_movum.s │ │ ├── check_movur.s │ │ ├── check_mulv32.s │ │ ├── check_mulx.s │ │ ├── check_neg.s │ │ ├── check_not.s │ │ ├── check_openpf1.c │ │ ├── check_openpf2.c │ │ ├── check_openpf3.c │ │ ├── check_openpf5.c │ │ ├── check_orc.s │ │ ├── check_orm.s │ │ ├── check_orq.s │ │ ├── check_orr.s │ │ ├── check_ret.s │ │ ├── check_scc.s │ │ ├── check_settls1.c │ │ ├── check_sigalrm.c │ │ ├── check_stat1.c │ │ ├── check_stat2.c │ │ ├── check_stat3.c │ │ ├── check_stat4.c │ │ ├── check_subc.s │ │ ├── check_subm.s │ │ ├── check_subq.s │ │ ├── check_subr.s │ │ ├── check_swap.c │ │ ├── check_time2.c │ │ ├── check_xarith.s │ │ ├── crisutils.h │ │ ├── crt.s │ │ ├── sys.c │ │ ├── sys.h │ │ └── testutils.inc │ ├── hello-arm.c │ ├── hello-i386.c │ ├── hello-mips.c │ ├── linux-test.c │ ├── lm32 │ │ ├── Makefile │ │ ├── crt.S │ │ ├── helper.S │ │ ├── linker.ld │ │ ├── macros.inc │ │ ├── test_add.S │ │ ├── test_addi.S │ │ ├── test_and.S │ │ ├── test_andhi.S │ │ ├── test_andi.S │ │ ├── test_b.S │ │ ├── test_be.S │ │ ├── test_bg.S │ │ ├── test_bge.S │ │ ├── test_bgeu.S │ │ ├── test_bgu.S │ │ ├── test_bi.S │ │ ├── test_bne.S │ │ ├── test_break.S │ │ ├── test_bret.S │ │ ├── test_call.S │ │ ├── test_calli.S │ │ ├── test_cmpe.S │ │ ├── test_cmpei.S │ │ ├── test_cmpg.S │ │ ├── test_cmpge.S │ │ ├── test_cmpgei.S │ │ ├── test_cmpgeu.S │ │ ├── test_cmpgeui.S │ │ ├── test_cmpgi.S │ │ ├── test_cmpgu.S │ │ ├── test_cmpgui.S │ │ ├── test_cmpne.S │ │ ├── test_cmpnei.S │ │ ├── test_divu.S │ │ ├── test_eret.S │ │ ├── test_lb.S │ │ ├── test_lbu.S │ │ ├── test_lh.S │ │ ├── test_lhu.S │ │ ├── test_lw.S │ │ ├── test_modu.S │ │ ├── test_mul.S │ │ ├── test_muli.S │ │ ├── test_nor.S │ │ ├── test_nori.S │ │ ├── test_or.S │ │ ├── test_orhi.S │ │ ├── test_ori.S │ │ ├── test_ret.S │ │ ├── test_sb.S │ │ ├── test_scall.S │ │ ├── test_sextb.S │ │ ├── test_sexth.S │ │ ├── test_sh.S │ │ ├── test_sl.S │ │ ├── test_sli.S │ │ ├── test_sr.S │ │ ├── test_sri.S │ │ ├── test_sru.S │ │ ├── test_srui.S │ │ ├── test_sub.S │ │ ├── test_sw.S │ │ ├── test_xnor.S │ │ ├── test_xnori.S │ │ ├── test_xor.S │ │ └── test_xori.S │ ├── mips │ │ ├── mips32-dsp │ │ │ ├── Makefile │ │ │ ├── absq_s_ph.c │ │ │ ├── absq_s_w.c │ │ │ ├── addq_ph.c │ │ │ ├── addq_s_ph.c │ │ │ ├── addq_s_w.c │ │ │ ├── addsc.c │ │ │ ├── addu_qb.c │ │ │ ├── addu_s_qb.c │ │ │ ├── addwc.c │ │ │ ├── bitrev.c │ │ │ ├── bposge32.c │ │ │ ├── cmp_eq_ph.c │ │ │ ├── cmp_le_ph.c │ │ │ ├── cmp_lt_ph.c │ │ │ ├── cmpgu_eq_qb.c │ │ │ ├── cmpgu_le_qb.c │ │ │ ├── cmpgu_lt_qb.c │ │ │ ├── cmpu_eq_qb.c │ │ │ ├── cmpu_le_qb.c │ │ │ ├── cmpu_lt_qb.c │ │ │ ├── dpaq_s_w_ph.c │ │ │ ├── dpaq_sa_l_w.c │ │ │ ├── dpau_h_qbl.c │ │ │ ├── dpau_h_qbr.c │ │ │ ├── dpsq_s_w_ph.c │ │ │ ├── dpsq_sa_l_w.c │ │ │ ├── dpsu_h_qbl.c │ │ │ ├── dpsu_h_qbr.c │ │ │ ├── extp.c │ │ │ ├── extpdp.c │ │ │ ├── extpdpv.c │ │ │ ├── extpv.c │ │ │ ├── extr_r_w.c │ │ │ ├── extr_rs_w.c │ │ │ ├── extr_s_h.c │ │ │ ├── extr_w.c │ │ │ ├── extrv_r_w.c │ │ │ ├── extrv_rs_w.c │ │ │ ├── extrv_s_h.c │ │ │ ├── extrv_w.c │ │ │ ├── insv.c │ │ │ ├── lbux.c │ │ │ ├── lhx.c │ │ │ ├── lwx.c │ │ │ ├── madd.c │ │ │ ├── maddu.c │ │ │ ├── main.c │ │ │ ├── maq_s_w_phl.c │ │ │ ├── maq_s_w_phr.c │ │ │ ├── maq_sa_w_phl.c │ │ │ ├── maq_sa_w_phr.c │ │ │ ├── mfhi.c │ │ │ ├── mflo.c │ │ │ ├── modsub.c │ │ │ ├── msub.c │ │ │ ├── msubu.c │ │ │ ├── mthi.c │ │ │ ├── mthlip.c │ │ │ ├── mtlo.c │ │ │ ├── muleq_s_w_phl.c │ │ │ ├── muleq_s_w_phr.c │ │ │ ├── muleu_s_ph_qbl.c │ │ │ ├── muleu_s_ph_qbr.c │ │ │ ├── mulq_rs_ph.c │ │ │ ├── mult.c │ │ │ ├── multu.c │ │ │ ├── packrl_ph.c │ │ │ ├── pick_ph.c │ │ │ ├── pick_qb.c │ │ │ ├── preceq_w_phl.c │ │ │ ├── preceq_w_phr.c │ │ │ ├── precequ_ph_qbl.c │ │ │ ├── precequ_ph_qbla.c │ │ │ ├── precequ_ph_qbr.c │ │ │ ├── precequ_ph_qbra.c │ │ │ ├── preceu_ph_qbl.c │ │ │ ├── preceu_ph_qbla.c │ │ │ ├── preceu_ph_qbr.c │ │ │ ├── preceu_ph_qbra.c │ │ │ ├── precrq_ph_w.c │ │ │ ├── precrq_qb_ph.c │ │ │ ├── precrq_rs_ph_w.c │ │ │ ├── precrqu_s_qb_ph.c │ │ │ ├── raddu_w_qb.c │ │ │ ├── rddsp.c │ │ │ ├── repl_ph.c │ │ │ ├── repl_qb.c │ │ │ ├── replv_ph.c │ │ │ ├── replv_qb.c │ │ │ ├── shilo.c │ │ │ ├── shilov.c │ │ │ ├── shll_ph.c │ │ │ ├── shll_qb.c │ │ │ ├── shll_s_ph.c │ │ │ ├── shll_s_w.c │ │ │ ├── shllv_ph.c │ │ │ ├── shllv_qb.c │ │ │ ├── shllv_s_ph.c │ │ │ ├── shllv_s_w.c │ │ │ ├── shra_ph.c │ │ │ ├── shra_r_ph.c │ │ │ ├── shra_r_w.c │ │ │ ├── shrav_ph.c │ │ │ ├── shrav_r_ph.c │ │ │ ├── shrav_r_w.c │ │ │ ├── shrl_qb.c │ │ │ ├── shrlv_qb.c │ │ │ ├── subq_ph.c │ │ │ ├── subq_s_ph.c │ │ │ ├── subq_s_w.c │ │ │ ├── subu_qb.c │ │ │ ├── subu_s_qb.c │ │ │ └── wrdsp.c │ │ ├── mips32-dspr2 │ │ │ ├── Makefile │ │ │ ├── absq_s_qb.c │ │ │ ├── addqh_ph.c │ │ │ ├── addqh_r_ph.c │ │ │ ├── addqh_r_w.c │ │ │ ├── addqh_w.c │ │ │ ├── addu_ph.c │ │ │ ├── addu_s_ph.c │ │ │ ├── adduh_qb.c │ │ │ ├── adduh_r_qb.c │ │ │ ├── append.c │ │ │ ├── balign.c │ │ │ ├── cmpgdu_eq_qb.c │ │ │ ├── cmpgdu_le_qb.c │ │ │ ├── cmpgdu_lt_qb.c │ │ │ ├── dpa_w_ph.c │ │ │ ├── dpaqx_s_w_ph.c │ │ │ ├── dpaqx_sa_w_ph.c │ │ │ ├── dpax_w_ph.c │ │ │ ├── dps_w_ph.c │ │ │ ├── dpsqx_s_w_ph.c │ │ │ ├── dpsqx_sa_w_ph.c │ │ │ ├── dpsx_w_ph.c │ │ │ ├── mul_ph.c │ │ │ ├── mul_s_ph.c │ │ │ ├── mulq_rs_w.c │ │ │ ├── mulq_s_ph.c │ │ │ ├── mulq_s_w.c │ │ │ ├── mulsa_w_ph.c │ │ │ ├── mulsaq_s_w_ph.c │ │ │ ├── precr_qb_ph.c │ │ │ ├── precr_sra_ph_w.c │ │ │ ├── precr_sra_r_ph_w.c │ │ │ ├── prepend.c │ │ │ ├── shra_qb.c │ │ │ ├── shra_r_qb.c │ │ │ ├── shrav_qb.c │ │ │ ├── shrav_r_qb.c │ │ │ ├── shrl_ph.c │ │ │ ├── shrlv_ph.c │ │ │ ├── subqh_ph.c │ │ │ ├── subqh_r_ph.c │ │ │ ├── subqh_r_w.c │ │ │ ├── subqh_w.c │ │ │ ├── subu_ph.c │ │ │ ├── subu_s_ph.c │ │ │ ├── subuh_qb.c │ │ │ └── subuh_r_qb.c │ │ ├── mips64-dsp │ │ │ ├── Makefile │ │ │ ├── absq_s_ob.c │ │ │ ├── absq_s_ph.c │ │ │ ├── absq_s_pw.c │ │ │ ├── absq_s_qh.c │ │ │ ├── absq_s_w.c │ │ │ ├── addq_ph.c │ │ │ ├── addq_pw.c │ │ │ ├── addq_qh.c │ │ │ ├── addq_s_ph.c │ │ │ ├── addq_s_pw.c │ │ │ ├── addq_s_qh.c │ │ │ ├── addq_s_w.c │ │ │ ├── addsc.c │ │ │ ├── addu_ob.c │ │ │ ├── addu_qb.c │ │ │ ├── addu_s_ob.c │ │ │ ├── addu_s_qb.c │ │ │ ├── addwc.c │ │ │ ├── bitrev.c │ │ │ ├── bposge32.c │ │ │ ├── bposge64.c │ │ │ ├── cmp_eq_ph.c │ │ │ ├── cmp_eq_pw.c │ │ │ ├── cmp_eq_qh.c │ │ │ ├── cmp_le_ph.c │ │ │ ├── cmp_le_pw.c │ │ │ ├── cmp_le_qh.c │ │ │ ├── cmp_lt_ph.c │ │ │ ├── cmp_lt_pw.c │ │ │ ├── cmp_lt_qh.c │ │ │ ├── cmpgu_eq_ob.c │ │ │ ├── cmpgu_eq_qb.c │ │ │ ├── cmpgu_le_ob.c │ │ │ ├── cmpgu_le_qb.c │ │ │ ├── cmpgu_lt_ob.c │ │ │ ├── cmpgu_lt_qb.c │ │ │ ├── cmpu_eq_ob.c │ │ │ ├── cmpu_eq_qb.c │ │ │ ├── cmpu_le_ob.c │ │ │ ├── cmpu_le_qb.c │ │ │ ├── cmpu_lt_ob.c │ │ │ ├── cmpu_lt_qb.c │ │ │ ├── dappend.c │ │ │ ├── dextp.c │ │ │ ├── dextpdp.c │ │ │ ├── dextpdpv.c │ │ │ ├── dextpv.c │ │ │ ├── dextr_l.c │ │ │ ├── dextr_r_l.c │ │ │ ├── dextr_r_w.c │ │ │ ├── dextr_rs_l.c │ │ │ ├── dextr_rs_w.c │ │ │ ├── dextr_s_h.c │ │ │ ├── dextr_w.c │ │ │ ├── dextrv_l.c │ │ │ ├── dextrv_r_l.c │ │ │ ├── dextrv_r_w.c │ │ │ ├── dextrv_rs_l.c │ │ │ ├── dextrv_rs_w.c │ │ │ ├── dextrv_s_h.c │ │ │ ├── dextrv_w.c │ │ │ ├── dinsv.c │ │ │ ├── dmadd.c │ │ │ ├── dmaddu.c │ │ │ ├── dmsub.c │ │ │ ├── dmsubu.c │ │ │ ├── dmthlip.c │ │ │ ├── dpaq_s_w_ph.c │ │ │ ├── dpaq_s_w_qh.c │ │ │ ├── dpaq_sa_l_pw.c │ │ │ ├── dpaq_sa_l_w.c │ │ │ ├── dpau_h_obl.c │ │ │ ├── dpau_h_obr.c │ │ │ ├── dpau_h_qbl.c │ │ │ ├── dpau_h_qbr.c │ │ │ ├── dpsq_s_w_ph.c │ │ │ ├── dpsq_s_w_qh.c │ │ │ ├── dpsq_sa_l_pw.c │ │ │ ├── dpsq_sa_l_w.c │ │ │ ├── dpsu_h_obl.c │ │ │ ├── dpsu_h_obr.c │ │ │ ├── dpsu_h_qbl.c │ │ │ ├── dpsu_h_qbr.c │ │ │ ├── dshilo.c │ │ │ ├── dshilov.c │ │ │ ├── extp.c │ │ │ ├── extpdp.c │ │ │ ├── extpdpv.c │ │ │ ├── extpv.c │ │ │ ├── extr_r_w.c │ │ │ ├── extr_rs_w.c │ │ │ ├── extr_s_h.c │ │ │ ├── extr_w.c │ │ │ ├── extrv_r_w.c │ │ │ ├── extrv_rs_w.c │ │ │ ├── extrv_s_h.c │ │ │ ├── extrv_w.c │ │ │ ├── head.S │ │ │ ├── insv.c │ │ │ ├── io.h │ │ │ ├── lbux.c │ │ │ ├── ldx.c │ │ │ ├── lhx.c │ │ │ ├── lwx.c │ │ │ ├── madd.c │ │ │ ├── maddu.c │ │ │ ├── maq_s_l_pwl.c │ │ │ ├── maq_s_l_pwr.c │ │ │ ├── maq_s_w_phl.c │ │ │ ├── maq_s_w_phr.c │ │ │ ├── maq_s_w_qhll.c │ │ │ ├── maq_s_w_qhlr.c │ │ │ ├── maq_s_w_qhrl.c │ │ │ ├── maq_s_w_qhrr.c │ │ │ ├── maq_sa_w_phl.c │ │ │ ├── maq_sa_w_phr.c │ │ │ ├── maq_sa_w_qhll.c │ │ │ ├── maq_sa_w_qhlr.c │ │ │ ├── maq_sa_w_qhrl.c │ │ │ ├── maq_sa_w_qhrr.c │ │ │ ├── mfhi.c │ │ │ ├── mflo.c │ │ │ ├── mips_boot.lds │ │ │ ├── modsub.c │ │ │ ├── msub.c │ │ │ ├── msubu.c │ │ │ ├── mthi.c │ │ │ ├── mthlip.c │ │ │ ├── mtlo.c │ │ │ ├── muleq_s_pw_qhl.c │ │ │ ├── muleq_s_pw_qhr.c │ │ │ ├── muleq_s_w_phl.c │ │ │ ├── muleq_s_w_phr.c │ │ │ ├── muleu_s_ph_qbl.c │ │ │ ├── muleu_s_ph_qbr.c │ │ │ ├── muleu_s_qh_obl.c │ │ │ ├── muleu_s_qh_obr.c │ │ │ ├── mulq_rs_ph.c │ │ │ ├── mulq_rs_qh.c │ │ │ ├── mulsaq_s_l_pw.c │ │ │ ├── mulsaq_s_w_qh.c │ │ │ ├── mult.c │ │ │ ├── multu.c │ │ │ ├── packrl_ph.c │ │ │ ├── packrl_pw.c │ │ │ ├── pick_ob.c │ │ │ ├── pick_ph.c │ │ │ ├── pick_pw.c │ │ │ ├── pick_qb.c │ │ │ ├── pick_qh.c │ │ │ ├── preceq_l_pwl.c │ │ │ ├── preceq_l_pwr.c │ │ │ ├── preceq_pw_qhl.c │ │ │ ├── preceq_pw_qhla.c │ │ │ ├── preceq_pw_qhr.c │ │ │ ├── preceq_pw_qhra.c │ │ │ ├── preceq_w_phl.c │ │ │ ├── preceq_w_phr.c │ │ │ ├── precequ_ph_qbl.c │ │ │ ├── precequ_ph_qbla.c │ │ │ ├── precequ_ph_qbr.c │ │ │ ├── precequ_ph_qbra.c │ │ │ ├── precequ_qh_obl.c │ │ │ ├── precequ_qh_obla.c │ │ │ ├── precequ_qh_obr.c │ │ │ ├── precequ_qh_obra.c │ │ │ ├── preceu_ph_qbl.c │ │ │ ├── preceu_ph_qbla.c │ │ │ ├── preceu_ph_qbr.c │ │ │ ├── preceu_ph_qbra.c │ │ │ ├── preceu_qh_obl.c │ │ │ ├── preceu_qh_obla.c │ │ │ ├── preceu_qh_obr.c │ │ │ ├── preceu_qh_obra.c │ │ │ ├── precr_ob_qh.c │ │ │ ├── precr_sra_qh_pw.c │ │ │ ├── precr_sra_r_qh_pw.c │ │ │ ├── precrq_ob_qh.c │ │ │ ├── precrq_ph_w.c │ │ │ ├── precrq_pw_l.c │ │ │ ├── precrq_qb_ph.c │ │ │ ├── precrq_qh_pw.c │ │ │ ├── precrq_rs_ph_w.c │ │ │ ├── precrq_rs_qh_pw.c │ │ │ ├── precrqu_s_ob_qh.c │ │ │ ├── precrqu_s_qb_ph.c │ │ │ ├── prependd.c │ │ │ ├── prependw.c │ │ │ ├── printf.c │ │ │ ├── raddu_l_ob.c │ │ │ ├── raddu_w_qb.c │ │ │ ├── rddsp.c │ │ │ ├── repl_ob.c │ │ │ ├── repl_ph.c │ │ │ ├── repl_pw.c │ │ │ ├── repl_qb.c │ │ │ ├── repl_qh.c │ │ │ ├── replv_ob.c │ │ │ ├── replv_ph.c │ │ │ ├── replv_pw.c │ │ │ ├── replv_qb.c │ │ │ ├── shilo.c │ │ │ ├── shilov.c │ │ │ ├── shll_ob.c │ │ │ ├── shll_ph.c │ │ │ ├── shll_pw.c │ │ │ ├── shll_qb.c │ │ │ ├── shll_qh.c │ │ │ ├── shll_s_ph.c │ │ │ ├── shll_s_pw.c │ │ │ ├── shll_s_qh.c │ │ │ ├── shll_s_w.c │ │ │ ├── shllv_ob.c │ │ │ ├── shllv_ph.c │ │ │ ├── shllv_pw.c │ │ │ ├── shllv_qb.c │ │ │ ├── shllv_qh.c │ │ │ ├── shllv_s_ph.c │ │ │ ├── shllv_s_pw.c │ │ │ ├── shllv_s_qh.c │ │ │ ├── shllv_s_w.c │ │ │ ├── shra_ob.c │ │ │ ├── shra_ph.c │ │ │ ├── shra_pw.c │ │ │ ├── shra_qh.c │ │ │ ├── shra_r_ob.c │ │ │ ├── shra_r_ph.c │ │ │ ├── shra_r_pw.c │ │ │ ├── shra_r_qh.c │ │ │ ├── shra_r_w.c │ │ │ ├── shrav_ph.c │ │ │ ├── shrav_pw.c │ │ │ ├── shrav_qh.c │ │ │ ├── shrav_r_ph.c │ │ │ ├── shrav_r_pw.c │ │ │ ├── shrav_r_qh.c │ │ │ ├── shrav_r_w.c │ │ │ ├── shrl_ob.c │ │ │ ├── shrl_qb.c │ │ │ ├── shrl_qh.c │ │ │ ├── shrlv_ob.c │ │ │ ├── shrlv_qb.c │ │ │ ├── shrlv_qh.c │ │ │ ├── subq_ph.c │ │ │ ├── subq_pw.c │ │ │ ├── subq_qh.c │ │ │ ├── subq_s_ph.c │ │ │ ├── subq_s_pw.c │ │ │ ├── subq_s_qh.c │ │ │ ├── subq_s_w.c │ │ │ ├── subu_ob.c │ │ │ ├── subu_qb.c │ │ │ ├── subu_s_ob.c │ │ │ ├── subu_s_qb.c │ │ │ └── wrdsp.c │ │ └── mips64-dspr2 │ │ │ ├── .directory │ │ │ ├── Makefile │ │ │ ├── absq_s_qb.c │ │ │ ├── addqh_ph.c │ │ │ ├── addqh_r_ph.c │ │ │ ├── addqh_r_w.c │ │ │ ├── addqh_w.c │ │ │ ├── addu_ph.c │ │ │ ├── addu_qh.c │ │ │ ├── addu_s_ph.c │ │ │ ├── addu_s_qh.c │ │ │ ├── adduh_ob.c │ │ │ ├── adduh_qb.c │ │ │ ├── adduh_r_ob.c │ │ │ ├── adduh_r_qb.c │ │ │ ├── append.c │ │ │ ├── balign.c │ │ │ ├── cmpgdu_eq_ob.c │ │ │ ├── cmpgdu_eq_qb.c │ │ │ ├── cmpgdu_le_ob.c │ │ │ ├── cmpgdu_le_qb.c │ │ │ ├── cmpgdu_lt_ob.c │ │ │ ├── cmpgdu_lt_qb.c │ │ │ ├── dbalign.c │ │ │ ├── dpa_w_ph.c │ │ │ ├── dpa_w_qh.c │ │ │ ├── dpaqx_s_w_ph.c │ │ │ ├── dpaqx_sa_w_ph.c │ │ │ ├── dpax_w_ph.c │ │ │ ├── dps_w_ph.c │ │ │ ├── dps_w_qh.c │ │ │ ├── dpsqx_s_w_ph.c │ │ │ ├── dpsqx_sa_w_ph.c │ │ │ ├── dpsx_w_ph.c │ │ │ ├── head.S │ │ │ ├── io.h │ │ │ ├── mips_boot.lds │ │ │ ├── mul_ph.c │ │ │ ├── mul_s_ph.c │ │ │ ├── mulq_rs_w.c │ │ │ ├── mulq_s_ph.c │ │ │ ├── mulq_s_w.c │ │ │ ├── mulsa_w_ph.c │ │ │ ├── mulsaq_s_w_ph.c │ │ │ ├── precr_qb_ph.c │ │ │ ├── precr_sra_ph_w.c │ │ │ ├── precr_sra_r_ph_w.c │ │ │ ├── prepend.c │ │ │ ├── printf.c │ │ │ ├── shra_qb.c │ │ │ ├── shra_r_qb.c │ │ │ ├── shrav_ob.c │ │ │ ├── shrav_qb.c │ │ │ ├── shrav_r_ob.c │ │ │ ├── shrav_r_qb.c │ │ │ ├── shrl_ph.c │ │ │ ├── shrlv_ph.c │ │ │ ├── subqh_ph.c │ │ │ ├── subqh_r_ph.c │ │ │ ├── subqh_r_w.c │ │ │ ├── subqh_w.c │ │ │ ├── subu_ph.c │ │ │ ├── subu_qh.c │ │ │ ├── subu_s_ph.c │ │ │ ├── subu_s_qh.c │ │ │ ├── subuh_ob.c │ │ │ ├── subuh_qb.c │ │ │ ├── subuh_r_ob.c │ │ │ └── subuh_r_qb.c │ ├── openrisc │ │ ├── Makefile │ │ ├── test_add.c │ │ ├── test_addc.c │ │ ├── test_addi.c │ │ ├── test_addic.c │ │ ├── test_and_or.c │ │ ├── test_bf.c │ │ ├── test_bnf.c │ │ ├── test_div.c │ │ ├── test_divu.c │ │ ├── test_extx.c │ │ ├── test_fx.c │ │ ├── test_j.c │ │ ├── test_jal.c │ │ ├── test_lf_add.c │ │ ├── test_lf_div.c │ │ ├── test_lf_eqs.c │ │ ├── test_lf_ges.c │ │ ├── test_lf_gts.c │ │ ├── test_lf_les.c │ │ ├── test_lf_lts.c │ │ ├── test_lf_mul.c │ │ ├── test_lf_nes.c │ │ ├── test_lf_rem.c │ │ ├── test_lf_sub.c │ │ ├── test_logic.c │ │ ├── test_lx.c │ │ ├── test_movhi.c │ │ ├── test_mul.c │ │ ├── test_muli.c │ │ ├── test_mulu.c │ │ ├── test_sfeq.c │ │ ├── test_sfeqi.c │ │ ├── test_sfges.c │ │ ├── test_sfgesi.c │ │ ├── test_sfgeu.c │ │ ├── test_sfgeui.c │ │ ├── test_sfgts.c │ │ ├── test_sfgtsi.c │ │ ├── test_sfgtu.c │ │ ├── test_sfgtui.c │ │ ├── test_sfles.c │ │ ├── test_sflesi.c │ │ ├── test_sfleu.c │ │ ├── test_sfleui.c │ │ ├── test_sflts.c │ │ ├── test_sfltsi.c │ │ ├── test_sfltu.c │ │ ├── test_sfltui.c │ │ ├── test_sfne.c │ │ ├── test_sfnei.c │ │ └── test_sub.c │ ├── pi_10.com │ ├── runcom.c │ ├── sha1.c │ ├── test-arm-iwmmxt.s │ ├── test-i386-code16.S │ ├── test-i386-fprem.c │ ├── test-i386-muldiv.h │ ├── test-i386-shift.h │ ├── test-i386-ssse3.c │ ├── test-i386-vm86.S │ ├── test-i386.c │ ├── test-i386.h │ ├── test-mmap.c │ ├── test_path.c │ ├── testthread.c │ └── xtensa │ │ ├── Makefile │ │ ├── crt.S │ │ ├── linker.ld.S │ │ ├── macros.inc │ │ ├── test_b.S │ │ ├── test_bi.S │ │ ├── test_boolean.S │ │ ├── test_break.S │ │ ├── test_bz.S │ │ ├── test_cache.S │ │ ├── test_clamps.S │ │ ├── test_extui.S │ │ ├── test_fail.S │ │ ├── test_interrupt.S │ │ ├── test_loop.S │ │ ├── test_mac16.S │ │ ├── test_max.S │ │ ├── test_min.S │ │ ├── test_mmu.S │ │ ├── test_mul16.S │ │ ├── test_mul32.S │ │ ├── test_nsa.S │ │ ├── test_pipeline.S │ │ ├── test_quo.S │ │ ├── test_rem.S │ │ ├── test_rst0.S │ │ ├── test_s32c1i.S │ │ ├── test_sar.S │ │ ├── test_sext.S │ │ ├── test_shift.S │ │ ├── test_sr.S │ │ ├── test_timer.S │ │ ├── test_windowed.S │ │ └── vectors.S ├── tco-test.c ├── test-aio.c ├── test-arm-mptimer.c ├── test-base64.c ├── test-bitops.c ├── test-blockjob-txn.c ├── test-blockjob.c ├── test-bufferiszero.c ├── test-char.c ├── test-clone-visitor.c ├── test-coroutine.c ├── test-crypto-afsplit.c ├── test-crypto-block.c ├── test-crypto-cipher.c ├── test-crypto-hash.c ├── test-crypto-hmac.c ├── test-crypto-ivgen.c ├── test-crypto-pbkdf.c ├── test-crypto-secret.c ├── test-crypto-tlscredsx509.c ├── test-crypto-tlssession.c ├── test-crypto-xts.c ├── test-cutils.c ├── test-filter-mirror.c ├── test-filter-redirector.c ├── test-hbitmap.c ├── test-int128.c ├── test-io-channel-buffer.c ├── test-io-channel-command.c ├── test-io-channel-file.c ├── test-io-channel-socket.c ├── test-io-channel-tls.c ├── test-io-task.c ├── test-iov.c ├── test-logging.c ├── test-mul64.c ├── test-netfilter.c ├── test-opts-visitor.c ├── test-qdev-global-props.c ├── test-qdist.c ├── test-qemu-opts.c ├── test-qga.c ├── test-qht-par.c ├── test-qht.c ├── test-qmp-commands.c ├── test-qmp-event.c ├── test-qobject-input-strict.c ├── test-qobject-input-visitor.c ├── test-qobject-output-visitor.c ├── test-rcu-list.c ├── test-replication.c ├── test-string-input-visitor.c ├── test-string-output-visitor.c ├── test-thread-pool.c ├── test-throttle.c ├── test-timed-average.c ├── test-uuid.c ├── test-visitor-serialization.c ├── test-vmstate.c ├── test-write-threshold.c ├── test-x86-cpuid-compat.c ├── test-x86-cpuid.c ├── test-xbzrle.c ├── tmp105-test.c ├── tpci200-test.c ├── usb-hcd-ehci-test.c ├── usb-hcd-ohci-test.c ├── usb-hcd-uhci-test.c ├── usb-hcd-xhci-test.c ├── vhost-user-bridge.c ├── vhost-user-test.c ├── virtio-9p-test.c ├── virtio-balloon-test.c ├── virtio-blk-test.c ├── virtio-console-test.c ├── virtio-net-test.c ├── virtio-rng-test.c ├── virtio-scsi-test.c ├── virtio-serial-test.c ├── vmstate-static-checker-data │ ├── dump1.json │ └── dump2.json ├── vmxnet3-test.c └── wdt_ib700-test.c ├── thread-pool.c ├── thunk.c ├── tpm.c ├── trace-events ├── trace ├── Makefile.objs ├── control-internal.h ├── control-target.c ├── control.c ├── control.h ├── event-internal.h ├── ftrace.c ├── ftrace.h ├── mem-internal.h ├── mem.h ├── qmp.c ├── simple.c └── simple.h ├── translate-all.c ├── translate-all.h ├── translate-common.c ├── ui ├── Makefile.objs ├── cocoa.m ├── console-gl.c ├── console.c ├── curses.c ├── curses_keys.h ├── cursor.c ├── cursor_hidden.xpm ├── cursor_left_ptr.xpm ├── egl-context.c ├── egl-helpers.c ├── gtk-egl.c ├── gtk-gl-area.c ├── gtk.c ├── input-keymap.c ├── input-legacy.c ├── input-linux.c ├── input.c ├── keymaps.c ├── keymaps.h ├── qemu-pixman.c ├── qemu-x509.h ├── sdl.c ├── sdl2-2d.c ├── sdl2-gl.c ├── sdl2-input.c ├── sdl2-keymap.h ├── sdl2.c ├── sdl_keysym.h ├── sdl_zoom.c ├── sdl_zoom.h ├── sdl_zoom_template.h ├── shader.c ├── shader │ ├── texture-blit.frag │ └── texture-blit.vert ├── spice-core.c ├── spice-display.c ├── spice-input.c ├── trace-events ├── vgafont.h ├── vnc-auth-sasl.c ├── vnc-auth-sasl.h ├── vnc-auth-vencrypt.c ├── vnc-auth-vencrypt.h ├── vnc-enc-hextile-template.h ├── vnc-enc-hextile.c ├── vnc-enc-tight.c ├── vnc-enc-tight.h ├── vnc-enc-zlib.c ├── vnc-enc-zrle-template.c ├── vnc-enc-zrle.c ├── vnc-enc-zrle.h ├── vnc-enc-zywrle-template.c ├── vnc-enc-zywrle.h ├── vnc-jobs.c ├── vnc-jobs.h ├── vnc-palette.c ├── vnc-palette.h ├── vnc-ws.c ├── vnc-ws.h ├── vnc.c ├── vnc.h ├── vnc_keysym.h ├── x_keymap.c └── x_keymap.h ├── user-exec.c ├── util ├── Makefile.objs ├── acl.c ├── base64.c ├── bitmap.c ├── bitops.c ├── buffer.c ├── bufferiszero.c ├── compatfd.c ├── coroutine-gthread.c ├── coroutine-sigaltstack.c ├── coroutine-ucontext.c ├── coroutine-win32.c ├── crc32c.c ├── cutils.c ├── envlist.c ├── error.c ├── event_notifier-posix.c ├── event_notifier-win32.c ├── fifo8.c ├── getauxval.c ├── hbitmap.c ├── hexdump.c ├── host-utils.c ├── id.c ├── iov.c ├── log.c ├── memfd.c ├── mmap-alloc.c ├── module.c ├── notify.c ├── osdep.c ├── oslib-posix.c ├── oslib-win32.c ├── path.c ├── qdist.c ├── qemu-config.c ├── qemu-coroutine-io.c ├── qemu-coroutine-lock.c ├── qemu-coroutine-sleep.c ├── qemu-coroutine.c ├── qemu-error.c ├── qemu-openpty.c ├── qemu-option.c ├── qemu-progress.c ├── qemu-sockets.c ├── qemu-thread-posix.c ├── qemu-thread-win32.c ├── qemu-timer-common.c ├── qht.c ├── range.c ├── rcu.c ├── readline.c ├── throttle.c ├── timed-average.c ├── trace-events ├── unicode.c ├── uri.c └── uuid.c ├── version.rc ├── vl.c ├── xen-common-stub.c ├── xen-common.c ├── xen-hvm-stub.c ├── xen-hvm.c └── xen-mapcache.c /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.exrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/.exrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/.mailmap -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/CODING_STYLE -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/Changelog -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/HACKING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/Makefile.objs -------------------------------------------------------------------------------- /Makefile.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/Makefile.target -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/README -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.8.50 2 | -------------------------------------------------------------------------------- /accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/accel.c -------------------------------------------------------------------------------- /aio-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/aio-posix.c -------------------------------------------------------------------------------- /aio-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/aio-win32.c -------------------------------------------------------------------------------- /arch_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/arch_init.c -------------------------------------------------------------------------------- /async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/async.c -------------------------------------------------------------------------------- /atomic_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/atomic_template.h -------------------------------------------------------------------------------- /audio/alsaaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/audio/alsaaudio.c -------------------------------------------------------------------------------- /audio/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/audio/audio.c -------------------------------------------------------------------------------- /audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/audio/audio.h -------------------------------------------------------------------------------- /audio/audio_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/audio/audio_int.h -------------------------------------------------------------------------------- /audio/coreaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/audio/coreaudio.c -------------------------------------------------------------------------------- /audio/mixeng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/audio/mixeng.c -------------------------------------------------------------------------------- /audio/mixeng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/audio/mixeng.h -------------------------------------------------------------------------------- /audio/noaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/audio/noaudio.c -------------------------------------------------------------------------------- /audio/ossaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/audio/ossaudio.c -------------------------------------------------------------------------------- /audio/paaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/audio/paaudio.c -------------------------------------------------------------------------------- /audio/sdlaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/audio/sdlaudio.c -------------------------------------------------------------------------------- /audio/wavaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/audio/wavaudio.c -------------------------------------------------------------------------------- /backends/baum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/backends/baum.c -------------------------------------------------------------------------------- /backends/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/backends/rng.c -------------------------------------------------------------------------------- /backends/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/backends/tpm.c -------------------------------------------------------------------------------- /balloon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/balloon.c -------------------------------------------------------------------------------- /block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block.c -------------------------------------------------------------------------------- /block/backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/backup.c -------------------------------------------------------------------------------- /block/blkdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/blkdebug.c -------------------------------------------------------------------------------- /block/blkreplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/blkreplay.c -------------------------------------------------------------------------------- /block/blkverify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/blkverify.c -------------------------------------------------------------------------------- /block/bochs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/bochs.c -------------------------------------------------------------------------------- /block/cloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/cloop.c -------------------------------------------------------------------------------- /block/commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/commit.c -------------------------------------------------------------------------------- /block/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/crypto.c -------------------------------------------------------------------------------- /block/curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/curl.c -------------------------------------------------------------------------------- /block/dmg-bz2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/dmg-bz2.c -------------------------------------------------------------------------------- /block/dmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/dmg.c -------------------------------------------------------------------------------- /block/dmg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/dmg.h -------------------------------------------------------------------------------- /block/gluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/gluster.c -------------------------------------------------------------------------------- /block/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/io.c -------------------------------------------------------------------------------- /block/iscsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/iscsi.c -------------------------------------------------------------------------------- /block/linux-aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/linux-aio.c -------------------------------------------------------------------------------- /block/mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/mirror.c -------------------------------------------------------------------------------- /block/nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/nbd.c -------------------------------------------------------------------------------- /block/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/nfs.c -------------------------------------------------------------------------------- /block/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/null.c -------------------------------------------------------------------------------- /block/parallels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/parallels.c -------------------------------------------------------------------------------- /block/qapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/qapi.c -------------------------------------------------------------------------------- /block/qcow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/qcow.c -------------------------------------------------------------------------------- /block/qcow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/qcow2.c -------------------------------------------------------------------------------- /block/qcow2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/qcow2.h -------------------------------------------------------------------------------- /block/qed-check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/qed-check.c -------------------------------------------------------------------------------- /block/qed-gencb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/qed-gencb.c -------------------------------------------------------------------------------- /block/qed-table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/qed-table.c -------------------------------------------------------------------------------- /block/qed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/qed.c -------------------------------------------------------------------------------- /block/qed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/qed.h -------------------------------------------------------------------------------- /block/quorum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/quorum.c -------------------------------------------------------------------------------- /block/raw-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/raw-posix.c -------------------------------------------------------------------------------- /block/raw-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/raw-win32.c -------------------------------------------------------------------------------- /block/raw_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/raw_bsd.c -------------------------------------------------------------------------------- /block/rbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/rbd.c -------------------------------------------------------------------------------- /block/sheepdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/sheepdog.c -------------------------------------------------------------------------------- /block/snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/snapshot.c -------------------------------------------------------------------------------- /block/ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/ssh.c -------------------------------------------------------------------------------- /block/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/stream.c -------------------------------------------------------------------------------- /block/vdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/vdi.c -------------------------------------------------------------------------------- /block/vhdx-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/vhdx-log.c -------------------------------------------------------------------------------- /block/vhdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/vhdx.c -------------------------------------------------------------------------------- /block/vhdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/vhdx.h -------------------------------------------------------------------------------- /block/vmdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/vmdk.c -------------------------------------------------------------------------------- /block/vpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/vpc.c -------------------------------------------------------------------------------- /block/vvfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/vvfat.c -------------------------------------------------------------------------------- /block/win32-aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/block/win32-aio.c -------------------------------------------------------------------------------- /blockdev-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/blockdev-nbd.c -------------------------------------------------------------------------------- /blockdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/blockdev.c -------------------------------------------------------------------------------- /blockjob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/blockjob.c -------------------------------------------------------------------------------- /bootdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/bootdevice.c -------------------------------------------------------------------------------- /bsd-user/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/bsd-user/main.c -------------------------------------------------------------------------------- /bsd-user/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/bsd-user/mmap.c -------------------------------------------------------------------------------- /bsd-user/qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/bsd-user/qemu.h -------------------------------------------------------------------------------- /bsd-user/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/bsd-user/signal.c -------------------------------------------------------------------------------- /bsd-user/strace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/bsd-user/strace.c -------------------------------------------------------------------------------- /bt-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/bt-host.c -------------------------------------------------------------------------------- /bt-vhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/bt-vhci.c -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/configure -------------------------------------------------------------------------------- /cpu-exec-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/cpu-exec-common.c -------------------------------------------------------------------------------- /cpu-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/cpu-exec.c -------------------------------------------------------------------------------- /cpus-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/cpus-common.c -------------------------------------------------------------------------------- /cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/cpus.c -------------------------------------------------------------------------------- /cputlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/cputlb.c -------------------------------------------------------------------------------- /crypto/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/crypto/aes.c -------------------------------------------------------------------------------- /crypto/afsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/crypto/afsplit.c -------------------------------------------------------------------------------- /crypto/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/crypto/block.c -------------------------------------------------------------------------------- /crypto/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/crypto/cipher.c -------------------------------------------------------------------------------- /crypto/desrfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/crypto/desrfb.c -------------------------------------------------------------------------------- /crypto/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/crypto/hash.c -------------------------------------------------------------------------------- /crypto/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/crypto/hmac.c -------------------------------------------------------------------------------- /crypto/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/crypto/hmac.h -------------------------------------------------------------------------------- /crypto/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/crypto/init.c -------------------------------------------------------------------------------- /crypto/ivgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/crypto/ivgen.c -------------------------------------------------------------------------------- /crypto/pbkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/crypto/pbkdf.c -------------------------------------------------------------------------------- /crypto/secret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/crypto/secret.c -------------------------------------------------------------------------------- /crypto/tlscreds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/crypto/tlscreds.c -------------------------------------------------------------------------------- /crypto/xts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/crypto/xts.c -------------------------------------------------------------------------------- /default-configs/alpha-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for alpha-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/arm-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for arm-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/armeb-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for armeb-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/cris-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for cris-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/i386-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-bsd-user 2 | -------------------------------------------------------------------------------- /default-configs/i386-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/m68k-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for m68k-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/mips-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/mips64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips64-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/mipsel-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsel-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/or32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for or32-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/s390x-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for s390x-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/sh4-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sh4-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/sh4eb-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sh4eb-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/sparc-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc-bsd-user 2 | -------------------------------------------------------------------------------- /default-configs/sparc-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/sparc64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc64-bsd-user 2 | -------------------------------------------------------------------------------- /default-configs/tilegx-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for tilegx-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/tricore-softmmu.mak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default-configs/x86_64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for x86_64-bsd-user 2 | -------------------------------------------------------------------------------- /default-configs/x86_64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for x86_64-linux-user 2 | -------------------------------------------------------------------------------- /device-hotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/device-hotplug.c -------------------------------------------------------------------------------- /device_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/device_tree.c -------------------------------------------------------------------------------- /disas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas.c -------------------------------------------------------------------------------- /disas/alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas/alpha.c -------------------------------------------------------------------------------- /disas/arm-a64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas/arm-a64.cc -------------------------------------------------------------------------------- /disas/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas/arm.c -------------------------------------------------------------------------------- /disas/cris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas/cris.c -------------------------------------------------------------------------------- /disas/i386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas/i386.c -------------------------------------------------------------------------------- /disas/ia64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas/ia64.c -------------------------------------------------------------------------------- /disas/lm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas/lm32.c -------------------------------------------------------------------------------- /disas/m68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas/m68k.c -------------------------------------------------------------------------------- /disas/mips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas/mips.c -------------------------------------------------------------------------------- /disas/moxie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas/moxie.c -------------------------------------------------------------------------------- /disas/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas/ppc.c -------------------------------------------------------------------------------- /disas/s390.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas/s390.c -------------------------------------------------------------------------------- /disas/sh4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas/sh4.c -------------------------------------------------------------------------------- /disas/sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas/sparc.c -------------------------------------------------------------------------------- /disas/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/disas/tci.c -------------------------------------------------------------------------------- /dma-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/dma-helpers.c -------------------------------------------------------------------------------- /docs/COLO-FT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/docs/COLO-FT.txt -------------------------------------------------------------------------------- /docs/atomics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/docs/atomics.txt -------------------------------------------------------------------------------- /docs/bitmaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/docs/bitmaps.md -------------------------------------------------------------------------------- /docs/blkdebug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/docs/blkdebug.txt -------------------------------------------------------------------------------- /docs/ccid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/docs/ccid.txt -------------------------------------------------------------------------------- /docs/memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/docs/memory.txt -------------------------------------------------------------------------------- /docs/pcie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/docs/pcie.txt -------------------------------------------------------------------------------- /docs/qmp-spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/docs/qmp-spec.txt -------------------------------------------------------------------------------- /docs/rcu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/docs/rcu.txt -------------------------------------------------------------------------------- /docs/rdma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/docs/rdma.txt -------------------------------------------------------------------------------- /docs/replay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/docs/replay.txt -------------------------------------------------------------------------------- /docs/throttle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/docs/throttle.txt -------------------------------------------------------------------------------- /docs/tracing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/docs/tracing.txt -------------------------------------------------------------------------------- /docs/usb2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/docs/usb2.txt -------------------------------------------------------------------------------- /docs/xbzrle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/docs/xbzrle.txt -------------------------------------------------------------------------------- /dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/dump.c -------------------------------------------------------------------------------- /exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/exec.c -------------------------------------------------------------------------------- /fpu/softfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/fpu/softfloat.c -------------------------------------------------------------------------------- /gdb-xml/cf-fp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/gdb-xml/cf-fp.xml -------------------------------------------------------------------------------- /gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/gdbstub.c -------------------------------------------------------------------------------- /hmp-commands.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hmp-commands.hx -------------------------------------------------------------------------------- /hmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hmp.c -------------------------------------------------------------------------------- /hmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hmp.h -------------------------------------------------------------------------------- /hw/9pfs/9p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/9pfs/9p.c -------------------------------------------------------------------------------- /hw/9pfs/9p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/9pfs/9p.h -------------------------------------------------------------------------------- /hw/9pfs/codir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/9pfs/codir.c -------------------------------------------------------------------------------- /hw/9pfs/cofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/9pfs/cofile.c -------------------------------------------------------------------------------- /hw/9pfs/cofs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/9pfs/cofs.c -------------------------------------------------------------------------------- /hw/9pfs/coth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/9pfs/coth.c -------------------------------------------------------------------------------- /hw/9pfs/coth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/9pfs/coth.h -------------------------------------------------------------------------------- /hw/9pfs/coxattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/9pfs/coxattr.c -------------------------------------------------------------------------------- /hw/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/Makefile.objs -------------------------------------------------------------------------------- /hw/acpi/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/acpi/core.c -------------------------------------------------------------------------------- /hw/acpi/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/acpi/cpu.c -------------------------------------------------------------------------------- /hw/acpi/ich9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/acpi/ich9.c -------------------------------------------------------------------------------- /hw/acpi/ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/acpi/ipmi.c -------------------------------------------------------------------------------- /hw/acpi/nvdimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/acpi/nvdimm.c -------------------------------------------------------------------------------- /hw/acpi/pcihp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/acpi/pcihp.c -------------------------------------------------------------------------------- /hw/acpi/piix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/acpi/piix4.c -------------------------------------------------------------------------------- /hw/acpi/tco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/acpi/tco.c -------------------------------------------------------------------------------- /hw/adc/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_STM32F2XX_ADC) += stm32f2xx_adc.o 2 | -------------------------------------------------------------------------------- /hw/alpha/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += dp264.o pci.o typhoon.o 2 | -------------------------------------------------------------------------------- /hw/alpha/dp264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/alpha/dp264.c -------------------------------------------------------------------------------- /hw/alpha/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/alpha/pci.c -------------------------------------------------------------------------------- /hw/arm/armv7m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/armv7m.c -------------------------------------------------------------------------------- /hw/arm/aspeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/aspeed.c -------------------------------------------------------------------------------- /hw/arm/bcm2836.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/bcm2836.c -------------------------------------------------------------------------------- /hw/arm/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/boot.c -------------------------------------------------------------------------------- /hw/arm/collie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/collie.c -------------------------------------------------------------------------------- /hw/arm/digic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/digic.c -------------------------------------------------------------------------------- /hw/arm/fsl-imx6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/fsl-imx6.c -------------------------------------------------------------------------------- /hw/arm/gumstix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/gumstix.c -------------------------------------------------------------------------------- /hw/arm/highbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/highbank.c -------------------------------------------------------------------------------- /hw/arm/kzm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/kzm.c -------------------------------------------------------------------------------- /hw/arm/musicpal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/musicpal.c -------------------------------------------------------------------------------- /hw/arm/nseries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/nseries.c -------------------------------------------------------------------------------- /hw/arm/omap1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/omap1.c -------------------------------------------------------------------------------- /hw/arm/omap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/omap2.c -------------------------------------------------------------------------------- /hw/arm/omap_sx1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/omap_sx1.c -------------------------------------------------------------------------------- /hw/arm/palm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/palm.c -------------------------------------------------------------------------------- /hw/arm/pxa2xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/pxa2xx.c -------------------------------------------------------------------------------- /hw/arm/raspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/raspi.c -------------------------------------------------------------------------------- /hw/arm/realview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/realview.c -------------------------------------------------------------------------------- /hw/arm/spitz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/spitz.c -------------------------------------------------------------------------------- /hw/arm/tosa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/tosa.c -------------------------------------------------------------------------------- /hw/arm/vexpress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/vexpress.c -------------------------------------------------------------------------------- /hw/arm/virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/virt.c -------------------------------------------------------------------------------- /hw/arm/z2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/arm/z2.c -------------------------------------------------------------------------------- /hw/audio/ac97.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/ac97.c -------------------------------------------------------------------------------- /hw/audio/adlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/adlib.c -------------------------------------------------------------------------------- /hw/audio/cs4231.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/cs4231.c -------------------------------------------------------------------------------- /hw/audio/es1370.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/es1370.c -------------------------------------------------------------------------------- /hw/audio/fmopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/fmopl.c -------------------------------------------------------------------------------- /hw/audio/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/fmopl.h -------------------------------------------------------------------------------- /hw/audio/gus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/gus.c -------------------------------------------------------------------------------- /hw/audio/gusemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/gusemu.h -------------------------------------------------------------------------------- /hw/audio/lm4549.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/lm4549.c -------------------------------------------------------------------------------- /hw/audio/lm4549.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/lm4549.h -------------------------------------------------------------------------------- /hw/audio/pcspk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/pcspk.c -------------------------------------------------------------------------------- /hw/audio/pl041.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/pl041.c -------------------------------------------------------------------------------- /hw/audio/pl041.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/pl041.h -------------------------------------------------------------------------------- /hw/audio/pl041.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/pl041.hx -------------------------------------------------------------------------------- /hw/audio/sb16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/sb16.c -------------------------------------------------------------------------------- /hw/audio/wm8750.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/audio/wm8750.c -------------------------------------------------------------------------------- /hw/block/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/block/block.c -------------------------------------------------------------------------------- /hw/block/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/block/cdrom.c -------------------------------------------------------------------------------- /hw/block/dataplane/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += virtio-blk.o 2 | -------------------------------------------------------------------------------- /hw/block/ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/block/ecc.c -------------------------------------------------------------------------------- /hw/block/fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/block/fdc.c -------------------------------------------------------------------------------- /hw/block/m25p80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/block/m25p80.c -------------------------------------------------------------------------------- /hw/block/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/block/nand.c -------------------------------------------------------------------------------- /hw/block/nvme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/block/nvme.c -------------------------------------------------------------------------------- /hw/block/nvme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/block/nvme.h -------------------------------------------------------------------------------- /hw/bt/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/bt/core.c -------------------------------------------------------------------------------- /hw/bt/hci-csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/bt/hci-csr.c -------------------------------------------------------------------------------- /hw/bt/hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/bt/hci.c -------------------------------------------------------------------------------- /hw/bt/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/bt/hid.c -------------------------------------------------------------------------------- /hw/bt/l2cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/bt/l2cap.c -------------------------------------------------------------------------------- /hw/bt/sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/bt/sdp.c -------------------------------------------------------------------------------- /hw/char/escc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/char/escc.c -------------------------------------------------------------------------------- /hw/char/pl011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/char/pl011.c -------------------------------------------------------------------------------- /hw/char/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/char/serial.c -------------------------------------------------------------------------------- /hw/core/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/core/bus.c -------------------------------------------------------------------------------- /hw/core/hotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/core/hotplug.c -------------------------------------------------------------------------------- /hw/core/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/core/irq.c -------------------------------------------------------------------------------- /hw/core/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/core/loader.c -------------------------------------------------------------------------------- /hw/core/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/core/machine.c -------------------------------------------------------------------------------- /hw/core/nmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/core/nmi.c -------------------------------------------------------------------------------- /hw/core/or-irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/core/or-irq.c -------------------------------------------------------------------------------- /hw/core/ptimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/core/ptimer.c -------------------------------------------------------------------------------- /hw/core/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/core/qdev.c -------------------------------------------------------------------------------- /hw/core/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/core/stream.c -------------------------------------------------------------------------------- /hw/core/sysbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/core/sysbus.c -------------------------------------------------------------------------------- /hw/cpu/a9mpcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/cpu/a9mpcore.c -------------------------------------------------------------------------------- /hw/cpu/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/cpu/core.c -------------------------------------------------------------------------------- /hw/cris/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/cris/boot.c -------------------------------------------------------------------------------- /hw/cris/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/cris/boot.h -------------------------------------------------------------------------------- /hw/display/cg3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/display/cg3.c -------------------------------------------------------------------------------- /hw/display/dpcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/display/dpcd.c -------------------------------------------------------------------------------- /hw/display/qxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/display/qxl.c -------------------------------------------------------------------------------- /hw/display/qxl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/display/qxl.h -------------------------------------------------------------------------------- /hw/display/tcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/display/tcx.c -------------------------------------------------------------------------------- /hw/display/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/display/vga.c -------------------------------------------------------------------------------- /hw/display/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/display/vga.h -------------------------------------------------------------------------------- /hw/dma/i82374.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/dma/i82374.c -------------------------------------------------------------------------------- /hw/dma/i8257.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/dma/i8257.c -------------------------------------------------------------------------------- /hw/dma/omap_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/dma/omap_dma.c -------------------------------------------------------------------------------- /hw/dma/pl080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/dma/pl080.c -------------------------------------------------------------------------------- /hw/dma/pl330.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/dma/pl330.c -------------------------------------------------------------------------------- /hw/dma/puv3_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/dma/puv3_dma.c -------------------------------------------------------------------------------- /hw/dma/rc4030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/dma/rc4030.c -------------------------------------------------------------------------------- /hw/dma/soc_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/dma/soc_dma.c -------------------------------------------------------------------------------- /hw/gpio/max7310.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/gpio/max7310.c -------------------------------------------------------------------------------- /hw/gpio/mpc8xxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/gpio/mpc8xxx.c -------------------------------------------------------------------------------- /hw/gpio/pl061.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/gpio/pl061.c -------------------------------------------------------------------------------- /hw/gpio/zaurus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/gpio/zaurus.c -------------------------------------------------------------------------------- /hw/i2c/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/i2c/core.c -------------------------------------------------------------------------------- /hw/i2c/i2c-ddc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/i2c/i2c-ddc.c -------------------------------------------------------------------------------- /hw/i2c/imx_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/i2c/imx_i2c.c -------------------------------------------------------------------------------- /hw/i2c/omap_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/i2c/omap_i2c.c -------------------------------------------------------------------------------- /hw/i2c/pm_smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/i2c/pm_smbus.c -------------------------------------------------------------------------------- /hw/i2c/smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/i2c/smbus.c -------------------------------------------------------------------------------- /hw/i386/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/i386/pc.c -------------------------------------------------------------------------------- /hw/i386/pc_piix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/i386/pc_piix.c -------------------------------------------------------------------------------- /hw/i386/pc_q35.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/i386/pc_q35.c -------------------------------------------------------------------------------- /hw/ide/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ide/ahci.c -------------------------------------------------------------------------------- /hw/ide/atapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ide/atapi.c -------------------------------------------------------------------------------- /hw/ide/cmd646.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ide/cmd646.c -------------------------------------------------------------------------------- /hw/ide/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ide/core.c -------------------------------------------------------------------------------- /hw/ide/ich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ide/ich.c -------------------------------------------------------------------------------- /hw/ide/isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ide/isa.c -------------------------------------------------------------------------------- /hw/ide/macio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ide/macio.c -------------------------------------------------------------------------------- /hw/ide/mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ide/mmio.c -------------------------------------------------------------------------------- /hw/ide/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ide/pci.c -------------------------------------------------------------------------------- /hw/ide/piix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ide/piix.c -------------------------------------------------------------------------------- /hw/ide/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ide/qdev.c -------------------------------------------------------------------------------- /hw/ide/via.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ide/via.c -------------------------------------------------------------------------------- /hw/input/adb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/input/adb.c -------------------------------------------------------------------------------- /hw/input/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/input/hid.c -------------------------------------------------------------------------------- /hw/input/lm832x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/input/lm832x.c -------------------------------------------------------------------------------- /hw/input/pckbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/input/pckbd.c -------------------------------------------------------------------------------- /hw/input/pl050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/input/pl050.c -------------------------------------------------------------------------------- /hw/input/ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/input/ps2.c -------------------------------------------------------------------------------- /hw/intc/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/intc/apic.c -------------------------------------------------------------------------------- /hw/intc/arm_gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/intc/arm_gic.c -------------------------------------------------------------------------------- /hw/intc/i8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/intc/i8259.c -------------------------------------------------------------------------------- /hw/intc/intc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/intc/intc.c -------------------------------------------------------------------------------- /hw/intc/ioapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/intc/ioapic.c -------------------------------------------------------------------------------- /hw/intc/openpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/intc/openpic.c -------------------------------------------------------------------------------- /hw/intc/pl190.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/intc/pl190.c -------------------------------------------------------------------------------- /hw/intc/sh_intc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/intc/sh_intc.c -------------------------------------------------------------------------------- /hw/intc/xics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/intc/xics.c -------------------------------------------------------------------------------- /hw/ipack/ipack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ipack/ipack.c -------------------------------------------------------------------------------- /hw/ipmi/ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ipmi/ipmi.c -------------------------------------------------------------------------------- /hw/isa/apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/isa/apm.c -------------------------------------------------------------------------------- /hw/isa/i82378.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/isa/i82378.c -------------------------------------------------------------------------------- /hw/isa/isa-bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/isa/isa-bus.c -------------------------------------------------------------------------------- /hw/isa/lpc_ich9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/isa/lpc_ich9.c -------------------------------------------------------------------------------- /hw/isa/pc87312.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/isa/pc87312.c -------------------------------------------------------------------------------- /hw/isa/piix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/isa/piix4.c -------------------------------------------------------------------------------- /hw/isa/vt82c686.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/isa/vt82c686.c -------------------------------------------------------------------------------- /hw/lm32/lm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/lm32/lm32.h -------------------------------------------------------------------------------- /hw/m68k/an5206.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/m68k/an5206.c -------------------------------------------------------------------------------- /hw/m68k/mcf5206.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/m68k/mcf5206.c -------------------------------------------------------------------------------- /hw/m68k/mcf5208.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/m68k/mcf5208.c -------------------------------------------------------------------------------- /hw/mem/nvdimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/mem/nvdimm.c -------------------------------------------------------------------------------- /hw/mem/pc-dimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/mem/pc-dimm.c -------------------------------------------------------------------------------- /hw/mips/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/mips/addr.c -------------------------------------------------------------------------------- /hw/mips/cps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/mips/cps.c -------------------------------------------------------------------------------- /hw/misc/a9scu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/misc/a9scu.c -------------------------------------------------------------------------------- /hw/misc/auxbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/misc/auxbus.c -------------------------------------------------------------------------------- /hw/misc/cbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/misc/cbus.c -------------------------------------------------------------------------------- /hw/misc/edu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/misc/edu.c -------------------------------------------------------------------------------- /hw/misc/imx_ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/misc/imx_ccm.c -------------------------------------------------------------------------------- /hw/misc/ivshmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/misc/ivshmem.c -------------------------------------------------------------------------------- /hw/misc/max111x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/misc/max111x.c -------------------------------------------------------------------------------- /hw/misc/omap_l4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/misc/omap_l4.c -------------------------------------------------------------------------------- /hw/misc/puv3_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/misc/puv3_pm.c -------------------------------------------------------------------------------- /hw/misc/pvpanic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/misc/pvpanic.c -------------------------------------------------------------------------------- /hw/misc/sga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/misc/sga.c -------------------------------------------------------------------------------- /hw/misc/tmp105.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/misc/tmp105.c -------------------------------------------------------------------------------- /hw/misc/tmp105.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/misc/tmp105.h -------------------------------------------------------------------------------- /hw/misc/vmport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/misc/vmport.c -------------------------------------------------------------------------------- /hw/net/dp8393x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/dp8393x.c -------------------------------------------------------------------------------- /hw/net/e1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/e1000.c -------------------------------------------------------------------------------- /hw/net/e1000e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/e1000e.c -------------------------------------------------------------------------------- /hw/net/eepro100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/eepro100.c -------------------------------------------------------------------------------- /hw/net/imx_fec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/imx_fec.c -------------------------------------------------------------------------------- /hw/net/lan9118.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/lan9118.c -------------------------------------------------------------------------------- /hw/net/lance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/lance.c -------------------------------------------------------------------------------- /hw/net/mcf_fec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/mcf_fec.c -------------------------------------------------------------------------------- /hw/net/mipsnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/mipsnet.c -------------------------------------------------------------------------------- /hw/net/ne2000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/ne2000.c -------------------------------------------------------------------------------- /hw/net/ne2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/ne2000.h -------------------------------------------------------------------------------- /hw/net/pcnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/pcnet.c -------------------------------------------------------------------------------- /hw/net/pcnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/pcnet.h -------------------------------------------------------------------------------- /hw/net/rtl8139.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/rtl8139.c -------------------------------------------------------------------------------- /hw/net/vmxnet3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/vmxnet3.c -------------------------------------------------------------------------------- /hw/net/vmxnet3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/vmxnet3.h -------------------------------------------------------------------------------- /hw/net/xen_nic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/xen_nic.c -------------------------------------------------------------------------------- /hw/net/xgmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/net/xgmac.c -------------------------------------------------------------------------------- /hw/nvram/fw_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/nvram/fw_cfg.c -------------------------------------------------------------------------------- /hw/pci-host/apb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/pci-host/apb.c -------------------------------------------------------------------------------- /hw/pci-host/pam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/pci-host/pam.c -------------------------------------------------------------------------------- /hw/pci-host/q35.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/pci-host/q35.c -------------------------------------------------------------------------------- /hw/pci/msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/pci/msi.c -------------------------------------------------------------------------------- /hw/pci/msix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/pci/msix.c -------------------------------------------------------------------------------- /hw/pci/pci-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/pci/pci-stub.c -------------------------------------------------------------------------------- /hw/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/pci/pci.c -------------------------------------------------------------------------------- /hw/pci/pci_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/pci/pci_host.c -------------------------------------------------------------------------------- /hw/pci/pcie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/pci/pcie.c -------------------------------------------------------------------------------- /hw/pci/pcie_aer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/pci/pcie_aer.c -------------------------------------------------------------------------------- /hw/pci/shpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/pci/shpc.c -------------------------------------------------------------------------------- /hw/ppc/e500.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ppc/e500.c -------------------------------------------------------------------------------- /hw/ppc/e500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ppc/e500.h -------------------------------------------------------------------------------- /hw/ppc/e500plat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ppc/e500plat.c -------------------------------------------------------------------------------- /hw/ppc/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ppc/fdt.c -------------------------------------------------------------------------------- /hw/ppc/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ppc/mac.h -------------------------------------------------------------------------------- /hw/ppc/pnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ppc/pnv.c -------------------------------------------------------------------------------- /hw/ppc/pnv_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ppc/pnv_core.c -------------------------------------------------------------------------------- /hw/ppc/pnv_lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ppc/pnv_lpc.c -------------------------------------------------------------------------------- /hw/ppc/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ppc/ppc.c -------------------------------------------------------------------------------- /hw/ppc/ppc405.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ppc/ppc405.h -------------------------------------------------------------------------------- /hw/ppc/prep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ppc/prep.c -------------------------------------------------------------------------------- /hw/ppc/spapr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ppc/spapr.c -------------------------------------------------------------------------------- /hw/s390x/css.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/s390x/css.c -------------------------------------------------------------------------------- /hw/s390x/ipl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/s390x/ipl.c -------------------------------------------------------------------------------- /hw/s390x/ipl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/s390x/ipl.h -------------------------------------------------------------------------------- /hw/s390x/sclp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/s390x/sclp.c -------------------------------------------------------------------------------- /hw/scsi/esp-pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/scsi/esp-pci.c -------------------------------------------------------------------------------- /hw/scsi/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/scsi/esp.c -------------------------------------------------------------------------------- /hw/scsi/megasas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/scsi/megasas.c -------------------------------------------------------------------------------- /hw/scsi/mfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/scsi/mfi.h -------------------------------------------------------------------------------- /hw/scsi/mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/scsi/mpi.h -------------------------------------------------------------------------------- /hw/scsi/mptsas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/scsi/mptsas.c -------------------------------------------------------------------------------- /hw/scsi/mptsas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/scsi/mptsas.h -------------------------------------------------------------------------------- /hw/scsi/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/scsi/srp.h -------------------------------------------------------------------------------- /hw/scsi/viosrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/scsi/viosrp.h -------------------------------------------------------------------------------- /hw/sd/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/sd/core.c -------------------------------------------------------------------------------- /hw/sd/omap_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/sd/omap_mmc.c -------------------------------------------------------------------------------- /hw/sd/pl181.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/sd/pl181.c -------------------------------------------------------------------------------- /hw/sd/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/sd/sd.c -------------------------------------------------------------------------------- /hw/sd/sdhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/sd/sdhci.c -------------------------------------------------------------------------------- /hw/sd/ssi-sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/sd/ssi-sd.c -------------------------------------------------------------------------------- /hw/sh4/r2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/sh4/r2d.c -------------------------------------------------------------------------------- /hw/sh4/sh7750.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/sh4/sh7750.c -------------------------------------------------------------------------------- /hw/sh4/sh_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/sh4/sh_pci.c -------------------------------------------------------------------------------- /hw/sh4/shix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/sh4/shix.c -------------------------------------------------------------------------------- /hw/sparc/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += sun4m.o leon3.o 2 | -------------------------------------------------------------------------------- /hw/sparc/leon3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/sparc/leon3.c -------------------------------------------------------------------------------- /hw/sparc/sun4m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/sparc/sun4m.c -------------------------------------------------------------------------------- /hw/sparc64/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += sun4u.o 2 | -------------------------------------------------------------------------------- /hw/ssi/imx_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ssi/imx_spi.c -------------------------------------------------------------------------------- /hw/ssi/omap_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ssi/omap_spi.c -------------------------------------------------------------------------------- /hw/ssi/pl022.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ssi/pl022.c -------------------------------------------------------------------------------- /hw/ssi/ssi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/ssi/ssi.c -------------------------------------------------------------------------------- /hw/timer/ds1338.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/timer/ds1338.c -------------------------------------------------------------------------------- /hw/timer/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/timer/hpet.c -------------------------------------------------------------------------------- /hw/timer/i8254.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/timer/i8254.c -------------------------------------------------------------------------------- /hw/timer/m48t59.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/timer/m48t59.c -------------------------------------------------------------------------------- /hw/timer/pl031.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/timer/pl031.c -------------------------------------------------------------------------------- /hw/tpm/tpm_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/tpm/tpm_int.h -------------------------------------------------------------------------------- /hw/tpm/tpm_tis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/tpm/tpm_tis.c -------------------------------------------------------------------------------- /hw/tpm/tpm_tis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/tpm/tpm_tis.h -------------------------------------------------------------------------------- /hw/tpm/tpm_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/tpm/tpm_util.c -------------------------------------------------------------------------------- /hw/tpm/tpm_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/tpm/tpm_util.h -------------------------------------------------------------------------------- /hw/tricore/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += tricore_testboard.o 2 | -------------------------------------------------------------------------------- /hw/usb/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/bus.c -------------------------------------------------------------------------------- /hw/usb/ccid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/ccid.h -------------------------------------------------------------------------------- /hw/usb/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/core.c -------------------------------------------------------------------------------- /hw/usb/desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/desc.c -------------------------------------------------------------------------------- /hw/usb/desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/desc.h -------------------------------------------------------------------------------- /hw/usb/dev-hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/dev-hid.c -------------------------------------------------------------------------------- /hw/usb/dev-hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/dev-hub.c -------------------------------------------------------------------------------- /hw/usb/dev-mtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/dev-mtp.c -------------------------------------------------------------------------------- /hw/usb/dev-uas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/dev-uas.c -------------------------------------------------------------------------------- /hw/usb/hcd-ehci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/hcd-ehci.c -------------------------------------------------------------------------------- /hw/usb/hcd-ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/hcd-ehci.h -------------------------------------------------------------------------------- /hw/usb/hcd-musb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/hcd-musb.c -------------------------------------------------------------------------------- /hw/usb/hcd-ohci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/hcd-ohci.c -------------------------------------------------------------------------------- /hw/usb/hcd-uhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/hcd-uhci.c -------------------------------------------------------------------------------- /hw/usb/hcd-xhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/hcd-xhci.c -------------------------------------------------------------------------------- /hw/usb/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/host.h -------------------------------------------------------------------------------- /hw/usb/libhw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/libhw.c -------------------------------------------------------------------------------- /hw/usb/quirks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/quirks.c -------------------------------------------------------------------------------- /hw/usb/quirks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/quirks.h -------------------------------------------------------------------------------- /hw/usb/redirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/redirect.c -------------------------------------------------------------------------------- /hw/usb/tusb6010.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/tusb6010.c -------------------------------------------------------------------------------- /hw/usb/xen-usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/usb/xen-usb.c -------------------------------------------------------------------------------- /hw/vfio/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/vfio/common.c -------------------------------------------------------------------------------- /hw/vfio/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/vfio/pci.c -------------------------------------------------------------------------------- /hw/vfio/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/vfio/pci.h -------------------------------------------------------------------------------- /hw/vfio/spapr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/vfio/spapr.c -------------------------------------------------------------------------------- /hw/virtio/vhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/virtio/vhost.c -------------------------------------------------------------------------------- /hw/xen/xen_pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/xen/xen_pt.c -------------------------------------------------------------------------------- /hw/xen/xen_pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/xen/xen_pt.h -------------------------------------------------------------------------------- /hw/xtensa/sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/hw/xtensa/sim.c -------------------------------------------------------------------------------- /include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/elf.h -------------------------------------------------------------------------------- /include/hw/bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/hw/bt.h -------------------------------------------------------------------------------- /include/hw/hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/hw/hw.h -------------------------------------------------------------------------------- /include/hw/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/hw/ide.h -------------------------------------------------------------------------------- /include/hw/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/hw/irq.h -------------------------------------------------------------------------------- /include/hw/nmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/hw/nmi.h -------------------------------------------------------------------------------- /include/hw/qdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/hw/qdev.h -------------------------------------------------------------------------------- /include/hw/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/hw/usb.h -------------------------------------------------------------------------------- /include/io/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/io/task.h -------------------------------------------------------------------------------- /include/net/eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/net/eth.h -------------------------------------------------------------------------------- /include/net/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/net/net.h -------------------------------------------------------------------------------- /include/net/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/net/tap.h -------------------------------------------------------------------------------- /include/qemu-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/qemu-io.h -------------------------------------------------------------------------------- /include/qemu/id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/qemu/id.h -------------------------------------------------------------------------------- /include/qom/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/qom/cpu.h -------------------------------------------------------------------------------- /include/standard-headers/linux/if_ether.h: -------------------------------------------------------------------------------- 1 | #define ETH_ALEN 6 2 | -------------------------------------------------------------------------------- /include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/trace.h -------------------------------------------------------------------------------- /include/ui/gtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/ui/gtk.h -------------------------------------------------------------------------------- /include/ui/sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/include/ui/sdl2.h -------------------------------------------------------------------------------- /io/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/io/Makefile.objs -------------------------------------------------------------------------------- /io/channel-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/io/channel-file.c -------------------------------------------------------------------------------- /io/channel-tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/io/channel-tls.c -------------------------------------------------------------------------------- /io/channel-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/io/channel-util.c -------------------------------------------------------------------------------- /io/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/io/channel.c -------------------------------------------------------------------------------- /io/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/io/task.c -------------------------------------------------------------------------------- /io/trace-events: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/io/trace-events -------------------------------------------------------------------------------- /iohandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/iohandler.c -------------------------------------------------------------------------------- /ioport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ioport.c -------------------------------------------------------------------------------- /iothread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/iothread.c -------------------------------------------------------------------------------- /kvm-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/kvm-all.c -------------------------------------------------------------------------------- /kvm-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/kvm-stub.c -------------------------------------------------------------------------------- /linux-headers/asm-arm/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /linux-headers/asm-arm64/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /linux-headers/asm-x86/hyperv.h: -------------------------------------------------------------------------------- 1 | #include "standard-headers/asm-x86/hyperv.h" 2 | -------------------------------------------------------------------------------- /linux-headers/linux/virtio_ring.h: -------------------------------------------------------------------------------- 1 | #include "standard-headers/linux/virtio_ring.h" 2 | -------------------------------------------------------------------------------- /linux-user/flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/linux-user/flat.h -------------------------------------------------------------------------------- /linux-user/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/linux-user/main.c -------------------------------------------------------------------------------- /linux-user/mips64/target_structs.h: -------------------------------------------------------------------------------- 1 | #include "../mips/target_structs.h" 2 | 3 | -------------------------------------------------------------------------------- /linux-user/mips64/termbits.h: -------------------------------------------------------------------------------- 1 | #include "../mips/termbits.h" 2 | 3 | -------------------------------------------------------------------------------- /linux-user/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/linux-user/mmap.c -------------------------------------------------------------------------------- /linux-user/qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/linux-user/qemu.h -------------------------------------------------------------------------------- /linux-user/sparc64/target_cpu.h: -------------------------------------------------------------------------------- 1 | #include "../sparc/target_cpu.h" 2 | -------------------------------------------------------------------------------- /linux-user/vm86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/linux-user/vm86.c -------------------------------------------------------------------------------- /linux-user/x86_64/target_cpu.h: -------------------------------------------------------------------------------- 1 | #include "../i386/target_cpu.h" 2 | -------------------------------------------------------------------------------- /main-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/main-loop.c -------------------------------------------------------------------------------- /memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/memory.c -------------------------------------------------------------------------------- /memory_ldst.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/memory_ldst.inc.c -------------------------------------------------------------------------------- /memory_mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/memory_mapping.c -------------------------------------------------------------------------------- /migration/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/migration/block.c -------------------------------------------------------------------------------- /migration/colo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/migration/colo.c -------------------------------------------------------------------------------- /migration/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/migration/exec.c -------------------------------------------------------------------------------- /migration/fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/migration/fd.c -------------------------------------------------------------------------------- /migration/qjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/migration/qjson.c -------------------------------------------------------------------------------- /migration/ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/migration/ram.c -------------------------------------------------------------------------------- /migration/rdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/migration/rdma.c -------------------------------------------------------------------------------- /migration/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/migration/tls.c -------------------------------------------------------------------------------- /module-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/module-common.c -------------------------------------------------------------------------------- /monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/monitor.c -------------------------------------------------------------------------------- /nbd/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/nbd/Makefile.objs -------------------------------------------------------------------------------- /nbd/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/nbd/client.c -------------------------------------------------------------------------------- /nbd/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/nbd/common.c -------------------------------------------------------------------------------- /nbd/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/nbd/server.c -------------------------------------------------------------------------------- /net/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/Makefile.objs -------------------------------------------------------------------------------- /net/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/checksum.c -------------------------------------------------------------------------------- /net/clients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/clients.h -------------------------------------------------------------------------------- /net/colo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/colo.c -------------------------------------------------------------------------------- /net/colo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/colo.h -------------------------------------------------------------------------------- /net/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/dump.c -------------------------------------------------------------------------------- /net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/eth.c -------------------------------------------------------------------------------- /net/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/filter.c -------------------------------------------------------------------------------- /net/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/hub.c -------------------------------------------------------------------------------- /net/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/hub.h -------------------------------------------------------------------------------- /net/l2tpv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/l2tpv3.c -------------------------------------------------------------------------------- /net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/net.c -------------------------------------------------------------------------------- /net/netmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/netmap.c -------------------------------------------------------------------------------- /net/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/queue.c -------------------------------------------------------------------------------- /net/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/slirp.c -------------------------------------------------------------------------------- /net/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/socket.c -------------------------------------------------------------------------------- /net/tap-aix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/tap-aix.c -------------------------------------------------------------------------------- /net/tap-bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/tap-bsd.c -------------------------------------------------------------------------------- /net/tap-haiku.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/tap-haiku.c -------------------------------------------------------------------------------- /net/tap-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/tap-linux.c -------------------------------------------------------------------------------- /net/tap-linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/tap-linux.h -------------------------------------------------------------------------------- /net/tap-solaris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/tap-solaris.c -------------------------------------------------------------------------------- /net/tap-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/tap-win32.c -------------------------------------------------------------------------------- /net/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/tap.c -------------------------------------------------------------------------------- /net/tap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/tap_int.h -------------------------------------------------------------------------------- /net/trace-events: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/trace-events -------------------------------------------------------------------------------- /net/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/util.c -------------------------------------------------------------------------------- /net/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/util.h -------------------------------------------------------------------------------- /net/vde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/vde.c -------------------------------------------------------------------------------- /net/vhost-user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/net/vhost-user.c -------------------------------------------------------------------------------- /numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/numa.c -------------------------------------------------------------------------------- /os-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/os-posix.c -------------------------------------------------------------------------------- /os-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/os-win32.c -------------------------------------------------------------------------------- /page_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/page_cache.c -------------------------------------------------------------------------------- /pc-bios/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/pc-bios/Makefile -------------------------------------------------------------------------------- /pc-bios/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/pc-bios/README -------------------------------------------------------------------------------- /pc-bios/bios.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/pc-bios/bios.bin -------------------------------------------------------------------------------- /pc-bios/keymaps/nl-be: -------------------------------------------------------------------------------- 1 | # Dutch (Belgium) 2 | map 0x813 3 | include common 4 | -------------------------------------------------------------------------------- /pc-bios/optionrom/code16gcc.h: -------------------------------------------------------------------------------- 1 | asm( 2 | ".code16gcc\n" 3 | ); 4 | -------------------------------------------------------------------------------- /pc-bios/qemu.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/pc-bios/qemu.rsrc -------------------------------------------------------------------------------- /pc-bios/slof.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/pc-bios/slof.bin -------------------------------------------------------------------------------- /po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/po/Makefile -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/po/de_DE.po -------------------------------------------------------------------------------- /po/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/po/fr_FR.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/po/it.po -------------------------------------------------------------------------------- /po/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/po/messages.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /qapi-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qapi-schema.json -------------------------------------------------------------------------------- /qapi/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qapi/block.json -------------------------------------------------------------------------------- /qapi/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qapi/common.json -------------------------------------------------------------------------------- /qapi/crypto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qapi/crypto.json -------------------------------------------------------------------------------- /qapi/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qapi/event.json -------------------------------------------------------------------------------- /qapi/qapi-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qapi/qapi-util.c -------------------------------------------------------------------------------- /qapi/qmp-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qapi/qmp-event.c -------------------------------------------------------------------------------- /qapi/rocker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qapi/rocker.json -------------------------------------------------------------------------------- /qapi/trace-events: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qapi/trace-events -------------------------------------------------------------------------------- /qapi/trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qapi/trace.json -------------------------------------------------------------------------------- /qdev-monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qdev-monitor.c -------------------------------------------------------------------------------- /qemu-char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu-char.c -------------------------------------------------------------------------------- /qemu-doc.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu-doc.texi -------------------------------------------------------------------------------- /qemu-ga.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu-ga.texi -------------------------------------------------------------------------------- /qemu-img-cmds.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu-img-cmds.hx -------------------------------------------------------------------------------- /qemu-img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu-img.c -------------------------------------------------------------------------------- /qemu-img.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu-img.texi -------------------------------------------------------------------------------- /qemu-io-cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu-io-cmds.c -------------------------------------------------------------------------------- /qemu-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu-io.c -------------------------------------------------------------------------------- /qemu-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu-nbd.c -------------------------------------------------------------------------------- /qemu-nbd.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu-nbd.texi -------------------------------------------------------------------------------- /qemu-options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu-options.h -------------------------------------------------------------------------------- /qemu-options.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu-options.hx -------------------------------------------------------------------------------- /qemu-seccomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu-seccomp.c -------------------------------------------------------------------------------- /qemu-tech.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu-tech.texi -------------------------------------------------------------------------------- /qemu-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu-timer.c -------------------------------------------------------------------------------- /qemu.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu.nsi -------------------------------------------------------------------------------- /qemu.sasl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qemu.sasl -------------------------------------------------------------------------------- /qga/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qga/channel.h -------------------------------------------------------------------------------- /qga/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qga/commands.c -------------------------------------------------------------------------------- /qga/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qga/main.c -------------------------------------------------------------------------------- /qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qmp.c -------------------------------------------------------------------------------- /qobject/qint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qobject/qint.c -------------------------------------------------------------------------------- /qom/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qom/cpu.c -------------------------------------------------------------------------------- /qom/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qom/object.c -------------------------------------------------------------------------------- /qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/qtest.c -------------------------------------------------------------------------------- /replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/replication.c -------------------------------------------------------------------------------- /replication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/replication.h -------------------------------------------------------------------------------- /roms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/roms/Makefile -------------------------------------------------------------------------------- /rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/rules.mak -------------------------------------------------------------------------------- /scripts/hxtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/scripts/hxtool -------------------------------------------------------------------------------- /scripts/qmp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slirp/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/bootp.c -------------------------------------------------------------------------------- /slirp/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/bootp.h -------------------------------------------------------------------------------- /slirp/cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/cksum.c -------------------------------------------------------------------------------- /slirp/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/debug.h -------------------------------------------------------------------------------- /slirp/dhcpv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/dhcpv6.c -------------------------------------------------------------------------------- /slirp/dhcpv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/dhcpv6.h -------------------------------------------------------------------------------- /slirp/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/if.c -------------------------------------------------------------------------------- /slirp/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/if.h -------------------------------------------------------------------------------- /slirp/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/ip.h -------------------------------------------------------------------------------- /slirp/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/ip6.h -------------------------------------------------------------------------------- /slirp/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/main.h -------------------------------------------------------------------------------- /slirp/mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/mbuf.c -------------------------------------------------------------------------------- /slirp/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/mbuf.h -------------------------------------------------------------------------------- /slirp/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/misc.c -------------------------------------------------------------------------------- /slirp/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/misc.h -------------------------------------------------------------------------------- /slirp/sbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/sbuf.c -------------------------------------------------------------------------------- /slirp/sbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/sbuf.h -------------------------------------------------------------------------------- /slirp/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/slirp.c -------------------------------------------------------------------------------- /slirp/slirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/slirp.h -------------------------------------------------------------------------------- /slirp/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/socket.c -------------------------------------------------------------------------------- /slirp/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/socket.h -------------------------------------------------------------------------------- /slirp/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/tcp.h -------------------------------------------------------------------------------- /slirp/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/tcpip.h -------------------------------------------------------------------------------- /slirp/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/tftp.c -------------------------------------------------------------------------------- /slirp/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/tftp.h -------------------------------------------------------------------------------- /slirp/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/udp.c -------------------------------------------------------------------------------- /slirp/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/udp.h -------------------------------------------------------------------------------- /slirp/udp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/slirp/udp6.c -------------------------------------------------------------------------------- /stubs/cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/stubs/cpus.c -------------------------------------------------------------------------------- /stubs/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/stubs/dump.c -------------------------------------------------------------------------------- /stubs/get-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/stubs/get-fd.c -------------------------------------------------------------------------------- /stubs/ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/stubs/ipmi.c -------------------------------------------------------------------------------- /stubs/kvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/stubs/kvm.c -------------------------------------------------------------------------------- /stubs/qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/stubs/qtest.c -------------------------------------------------------------------------------- /stubs/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/stubs/replay.c -------------------------------------------------------------------------------- /stubs/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/stubs/reset.c -------------------------------------------------------------------------------- /stubs/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/stubs/slirp.c -------------------------------------------------------------------------------- /stubs/sysbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/stubs/sysbus.c -------------------------------------------------------------------------------- /stubs/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/stubs/uuid.c -------------------------------------------------------------------------------- /stubs/vhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/stubs/vhost.c -------------------------------------------------------------------------------- /target/lm32/TODO: -------------------------------------------------------------------------------- 1 | * linux-user emulation 2 | -------------------------------------------------------------------------------- /target/moxie/machine.h: -------------------------------------------------------------------------------- 1 | extern const VMStateDescription vmstate_moxie_cpu; 2 | -------------------------------------------------------------------------------- /tcg-runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/tcg-runtime.c -------------------------------------------------------------------------------- /tcg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/tcg/LICENSE -------------------------------------------------------------------------------- /tcg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/tcg/README -------------------------------------------------------------------------------- /tcg/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/tcg/TODO -------------------------------------------------------------------------------- /tcg/optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/tcg/optimize.c -------------------------------------------------------------------------------- /tcg/tcg-op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/tcg/tcg-op.c -------------------------------------------------------------------------------- /tcg/tcg-op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/tcg/tcg-op.h -------------------------------------------------------------------------------- /tcg/tcg-opc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/tcg/tcg-opc.h -------------------------------------------------------------------------------- /tcg/tcg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/tcg/tcg.c -------------------------------------------------------------------------------- /tcg/tcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/tcg/tcg.h -------------------------------------------------------------------------------- /tcg/tci/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/tcg/tci/README -------------------------------------------------------------------------------- /tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/tci.c -------------------------------------------------------------------------------- /tests/acpi-test-data/pc/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /tests/acpi-test-data/q35/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /tests/image-fuzzer/qcow2/__init__.py: -------------------------------------------------------------------------------- 1 | from layout import create_image 2 | -------------------------------------------------------------------------------- /tests/migration/guestperf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-any.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-any.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-array.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-array.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-clash.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-clash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-nested.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-nested.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-alternate.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-alternate.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-any.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-any.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-array-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-array-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-array-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-array-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-bad-boxed.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-bad-boxed.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-anon.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-anon.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-invalid.json: -------------------------------------------------------------------------------- 1 | { 'command': 'foo', 2 | 'data': false } 3 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-array-bad.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-array-bad.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-case.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-name-clash.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-name-clash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-union.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-union.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-ident.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-ident.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-bool.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-bool.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/base-cycle-direct.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/base-cycle-direct.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/base-cycle-indirect.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/base-cycle-indirect.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/command-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/command-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/comments.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/comments.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/double-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/double-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/double-type.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/double-type.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/duplicate-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/duplicate-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/empty.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/empty.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-bad-name.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-bad-name.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-bad-prefix.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-bad-prefix.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-clash-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-clash-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-dict-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-dict-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-int-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-int-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-member-case.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-member-case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-missing-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-missing-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-wrong-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-wrong-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-outside-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-outside-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-too-big.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-too-big.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-too-short.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-too-short.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-boxed-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-boxed-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-case.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-case.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-nest-struct.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-nest-struct.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-array-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-array-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-bad-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-bad-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-bad-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-bad-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-base-any.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-base-any.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-base-union.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-base-union.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-clash-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-clash-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-incomplete-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-incomplete-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-inline.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-inline.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-int-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-int-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-invalid-branch-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-invalid-branch-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-invalid-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-invalid-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-no-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-no-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-optional-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-optional-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-string-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-string-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/funny-char.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/funny-char.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/ident-with-escape.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/ident-with-escape.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-before-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-before-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-cycle.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-cycle.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-format-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-format-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-nested-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-nested-err.json: -------------------------------------------------------------------------------- 1 | { 'include': 'missing-colon.json' } 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-nested-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-no-file.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-no-file.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-non-file.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-non-file.json: -------------------------------------------------------------------------------- 1 | { 'include': {} } 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-non-file.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-relpath.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-relpath.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-repetition.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-repetition.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-self-cycle.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-self-cycle.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-simple.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-simple.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/indented-expr.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/indented-expr.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/leading-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/leading-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/leading-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/leading-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-colon.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-colon.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-type.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-type.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/nested-struct-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/nested-struct-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/non-objects.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/non-objects.json: -------------------------------------------------------------------------------- 1 | 'string' 2 | [ ] 3 | -------------------------------------------------------------------------------- /tests/qapi-schema/non-objects.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/qapi-schema-test.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/qapi-schema-test.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/quoted-structural-chars.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/quoted-structural-chars.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-builtin.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-builtin.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-command.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-command.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-event.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-event.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-type.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-type.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-command-q.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-command-q.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-enum-q.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-enum-q.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-has.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-has.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-q.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-q.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-u.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-u.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-underscore.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-underscore.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-type-kind.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-type-kind.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-type-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-type-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-alternate.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-alternate.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-array-bad.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-array-bad.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-whitelist.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-whitelist.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-base-clash-deep.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-base-clash-deep.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-base-clash.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-base-clash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-data-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-data-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-member-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-member-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/trailing-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/trailing-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/trailing-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/trailing-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/type-bypass-bad-gen.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/type-bypass-bad-gen.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-list.json: -------------------------------------------------------------------------------- 1 | { 'key': [ 'value' } 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-object.json: -------------------------------------------------------------------------------- 1 | { 'key': [ 'value' ] 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-string.json: -------------------------------------------------------------------------------- 1 | { 'text': 'lorem ips 2 | } 3 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unicode-str.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unicode-str.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-base-no-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-base-no-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-branch-case.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-branch-case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-clash-branches.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-clash-branches.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-invalid-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-invalid-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-optional-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-optional-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unknown-escape.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unknown-escape.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unknown-expr-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unknown-expr-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thread-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/thread-pool.c -------------------------------------------------------------------------------- /thunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/thunk.c -------------------------------------------------------------------------------- /tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/tpm.c -------------------------------------------------------------------------------- /trace-events: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/trace-events -------------------------------------------------------------------------------- /trace/ftrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/trace/ftrace.c -------------------------------------------------------------------------------- /trace/ftrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/trace/ftrace.h -------------------------------------------------------------------------------- /trace/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/trace/mem.h -------------------------------------------------------------------------------- /trace/qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/trace/qmp.c -------------------------------------------------------------------------------- /trace/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/trace/simple.c -------------------------------------------------------------------------------- /trace/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/trace/simple.h -------------------------------------------------------------------------------- /ui/cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/cocoa.m -------------------------------------------------------------------------------- /ui/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/console.c -------------------------------------------------------------------------------- /ui/curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/curses.c -------------------------------------------------------------------------------- /ui/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/cursor.c -------------------------------------------------------------------------------- /ui/gtk-egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/gtk-egl.c -------------------------------------------------------------------------------- /ui/gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/gtk.c -------------------------------------------------------------------------------- /ui/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/input.c -------------------------------------------------------------------------------- /ui/keymaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/keymaps.c -------------------------------------------------------------------------------- /ui/keymaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/keymaps.h -------------------------------------------------------------------------------- /ui/qemu-x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/qemu-x509.h -------------------------------------------------------------------------------- /ui/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/sdl.c -------------------------------------------------------------------------------- /ui/sdl2-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/sdl2-2d.c -------------------------------------------------------------------------------- /ui/sdl2-gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/sdl2-gl.c -------------------------------------------------------------------------------- /ui/sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/sdl2.c -------------------------------------------------------------------------------- /ui/sdl_zoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/sdl_zoom.c -------------------------------------------------------------------------------- /ui/sdl_zoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/sdl_zoom.h -------------------------------------------------------------------------------- /ui/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/shader.c -------------------------------------------------------------------------------- /ui/vgafont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/vgafont.h -------------------------------------------------------------------------------- /ui/vnc-jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/vnc-jobs.c -------------------------------------------------------------------------------- /ui/vnc-jobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/vnc-jobs.h -------------------------------------------------------------------------------- /ui/vnc-ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/vnc-ws.c -------------------------------------------------------------------------------- /ui/vnc-ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/vnc-ws.h -------------------------------------------------------------------------------- /ui/vnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/vnc.c -------------------------------------------------------------------------------- /ui/vnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/vnc.h -------------------------------------------------------------------------------- /ui/x_keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/x_keymap.c -------------------------------------------------------------------------------- /ui/x_keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/ui/x_keymap.h -------------------------------------------------------------------------------- /user-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/user-exec.c -------------------------------------------------------------------------------- /util/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/acl.c -------------------------------------------------------------------------------- /util/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/base64.c -------------------------------------------------------------------------------- /util/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/bitmap.c -------------------------------------------------------------------------------- /util/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/bitops.c -------------------------------------------------------------------------------- /util/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/buffer.c -------------------------------------------------------------------------------- /util/crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/crc32c.c -------------------------------------------------------------------------------- /util/cutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/cutils.c -------------------------------------------------------------------------------- /util/envlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/envlist.c -------------------------------------------------------------------------------- /util/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/error.c -------------------------------------------------------------------------------- /util/fifo8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/fifo8.c -------------------------------------------------------------------------------- /util/hbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/hbitmap.c -------------------------------------------------------------------------------- /util/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/hexdump.c -------------------------------------------------------------------------------- /util/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/id.c -------------------------------------------------------------------------------- /util/iov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/iov.c -------------------------------------------------------------------------------- /util/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/log.c -------------------------------------------------------------------------------- /util/memfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/memfd.c -------------------------------------------------------------------------------- /util/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/module.c -------------------------------------------------------------------------------- /util/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/notify.c -------------------------------------------------------------------------------- /util/osdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/osdep.c -------------------------------------------------------------------------------- /util/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/path.c -------------------------------------------------------------------------------- /util/qdist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/qdist.c -------------------------------------------------------------------------------- /util/qht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/qht.c -------------------------------------------------------------------------------- /util/range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/range.c -------------------------------------------------------------------------------- /util/rcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/rcu.c -------------------------------------------------------------------------------- /util/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/unicode.c -------------------------------------------------------------------------------- /util/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/uri.c -------------------------------------------------------------------------------- /util/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/util/uuid.c -------------------------------------------------------------------------------- /version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/version.rc -------------------------------------------------------------------------------- /vl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/vl.c -------------------------------------------------------------------------------- /xen-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/xen-common.c -------------------------------------------------------------------------------- /xen-hvm-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/xen-hvm-stub.c -------------------------------------------------------------------------------- /xen-hvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/xen-hvm.c -------------------------------------------------------------------------------- /xen-mapcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/rvmi-qemu/HEAD/xen-mapcache.c --------------------------------------------------------------------------------