├── .exrc ├── .gitignore ├── .mailmap ├── CGC_README.md ├── CODING_STYLE ├── COPYING ├── COPYING.LIB ├── Changelog ├── HACKING ├── LICENSE ├── MAINTAINERS ├── Makefile ├── Makefile.objs ├── Makefile.target ├── README.md ├── README.qemu ├── VERSION ├── accel.c ├── aio-posix.c ├── aio-win32.c ├── arch_init.c ├── async.c ├── backends ├── Makefile.objs ├── baum.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 ├── blkverify.c ├── block-backend.c ├── bochs.c ├── cloop.c ├── commit.c ├── curl.c ├── dmg.c ├── gluster.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-aio.h ├── raw-posix.c ├── raw-win32.c ├── raw_bsd.c ├── rbd.c ├── sheepdog.c ├── snapshot.c ├── ssh.c ├── stream.c ├── 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 ├── bt-host.c ├── bt-vhci.c ├── cgc_configure_afl_debug ├── cgc_configure_afl_opt ├── cgc_configure_debug ├── cgc_configure_nxtracer_debug ├── cgc_configure_nxtracer_opt ├── cgc_configure_opt ├── cgc_configure_tracer_debug ├── cgc_configure_tracer_opt ├── configure ├── coroutine-gthread.c ├── coroutine-sigaltstack.c ├── coroutine-ucontext.c ├── coroutine-win32.c ├── cpu-exec.c ├── cpus.c ├── cputlb.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.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 ├── tricore-softmmu.mak ├── unicore32-linux-user.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 ├── i386.c └── tci.c ├── dma-helpers.c ├── docs ├── aio_notify.promela ├── atomics.txt ├── blkdebug.txt ├── blkverify.txt ├── bootindex.txt ├── ccid.txt ├── ich9-ehci-uhci.cfg ├── image-fuzzer.txt ├── libcacard.txt ├── live-block-ops.txt ├── memory-hotplug.txt ├── memory.txt ├── migration.txt ├── multiple-iothreads.txt ├── multiseat.txt ├── q35-chipset.cfg ├── qapi-code-gen.txt ├── qdev-device-use.txt ├── qemupciserial.inf ├── qmp │ ├── README │ ├── qmp-events.txt │ └── qmp-spec.txt ├── rcu.txt ├── rdma.txt ├── specs │ ├── acpi_cpu_hotplug.txt │ ├── acpi_mem_hotplug.txt │ ├── acpi_pci_hotplug.txt │ ├── edu.txt │ ├── fw_cfg.txt │ ├── ivshmem_device_spec.txt │ ├── pci-ids.txt │ ├── pci-serial.txt │ ├── pci-testdev.txt │ ├── ppc-spapr-hcalls.txt │ ├── pvpanic.txt │ ├── qcow2.txt │ ├── qed_spec.txt │ ├── standard-vga.txt │ ├── vhost-user.txt │ └── vmw_pvscsi-spec.txt ├── spice-port-fqdn.txt ├── tracing.txt ├── usb-storage.txt ├── usb2.txt ├── virtio-balloon-stats.txt ├── vnc-ledstate-Pseudo-encoding.txt ├── writing-qmp-commands.txt ├── xbzrle.txt └── xen-save-devices-state.txt ├── dtc ├── .gitignore ├── Documentation │ ├── dtc-paper.bib │ ├── dtc-paper.tex │ ├── dts-format.txt │ └── manual.txt ├── GPL ├── Makefile ├── Makefile.convert-dtsv0 ├── Makefile.dtc ├── Makefile.ftdump ├── README.license ├── TODO ├── checks.c ├── convert-dtsv0-lexer.l ├── data.c ├── dtc-lexer.l ├── dtc-parser.y ├── dtc.c ├── dtc.h ├── dtdiff ├── flattree.c ├── fstree.c ├── ftdump.c ├── libfdt │ ├── Makefile.libfdt │ ├── TODO │ ├── fdt.c │ ├── fdt.h │ ├── fdt_ro.c │ ├── fdt_rw.c │ ├── fdt_strerror.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ ├── libfdt.h │ ├── libfdt_env.h │ ├── libfdt_internal.h │ └── version.lds ├── livetree.c ├── scripts │ └── setlocalversion ├── srcpos.c ├── srcpos.h ├── tests │ ├── .gitignore │ ├── Makefile.tests │ ├── add_subnode_with_nops.c │ ├── aliases.dts │ ├── asm_tree_dump.c │ ├── bad-empty-ranges.dts │ ├── bad-name-property.dts │ ├── bad-ncells.dts │ ├── bad-reg-ranges.dts │ ├── bad-string-props.dts │ ├── base01.asm │ ├── base01.cmd │ ├── base01.dts │ ├── base01.stderr │ ├── boot-cpuid.c │ ├── boot-cpuid.dts │ ├── comments-cmp.dts │ ├── comments.dts │ ├── data.S │ ├── default-addr-size.dts │ ├── del_node.c │ ├── del_property.c │ ├── dtb_reverse.c │ ├── dtbs_equal_ordered.c │ ├── dtbs_equal_unordered.c │ ├── dtc-checkfails.sh │ ├── dtc-fatal.sh │ ├── dumptrees.c │ ├── dup-nodename.dts │ ├── dup-phandle.dts │ ├── dup-propname.dts │ ├── empty.dts │ ├── escapes.dts │ ├── extra-terminating-null.c │ ├── extra-terminating-null.dts │ ├── find_property.c │ ├── get_alias.c │ ├── get_mem_rsv.c │ ├── get_name.c │ ├── get_path.c │ ├── get_phandle.c │ ├── getprop.c │ ├── incbin.bin │ ├── incbin.c │ ├── incbin.dts │ ├── include0.dts │ ├── include1.dts │ ├── include2.dts │ ├── include3.dts │ ├── include4.dts │ ├── include5.dts │ ├── include6.dts │ ├── include7.dts │ ├── include8.dts │ ├── label01.dts │ ├── mangle-layout.c │ ├── mangle-layout.supp │ ├── minusone-phandle.dts │ ├── move_and_save.c │ ├── multilabel.dts │ ├── multilabel_merge.dts │ ├── node_check_compatible.c │ ├── node_offset_by_compatible.c │ ├── node_offset_by_phandle.c │ ├── node_offset_by_prop_value.c │ ├── nonexist-label-ref.dts │ ├── nonexist-node-ref.dts │ ├── nonexist-node-ref2.dts │ ├── nop_node.c │ ├── nop_property.c │ ├── nopulate.c │ ├── notfound.c │ ├── obsolete-chosen-interrupt-controller.dts │ ├── open_pack.c │ ├── open_pack.supp │ ├── parent_offset.c │ ├── path-references.c │ ├── path-references.dts │ ├── path_offset.c │ ├── path_offset_aliases.c │ ├── phandle_format.c │ ├── prop-after-subnode.dts │ ├── references.c │ ├── references.dts │ ├── reg-ranges-root.dts │ ├── reuse-label.dts │ ├── reuse-label1.dts │ ├── reuse-label2.dts │ ├── reuse-label3.dts │ ├── reuse-label4.dts │ ├── reuse-label5.dts │ ├── reuse-label6.dts │ ├── root_node.c │ ├── run_tests.sh │ ├── rw_tree1.c │ ├── set_name.c │ ├── setprop.c │ ├── setprop_inplace.c │ ├── string_escapes.c │ ├── subnode_offset.c │ ├── supernode_atdepth_offset.c │ ├── sw_tree1.c │ ├── test01.asm │ ├── test01.dts │ ├── test01.stderr │ ├── test_kernel_dts │ ├── test_tree1.dts │ ├── test_tree1_dts0.dts │ ├── test_tree1_merge.dts │ ├── test_tree1_merge_labelled.dts │ ├── test_tree1_merge_path.dts │ ├── test_tree1_wrong1.dts │ ├── test_tree1_wrong2.dts │ ├── test_tree1_wrong3.dts │ ├── test_tree1_wrong4.dts │ ├── test_tree1_wrong5.dts │ ├── test_tree1_wrong6.dts │ ├── test_tree1_wrong7.dts │ ├── test_tree1_wrong8.dts │ ├── test_tree1_wrong9.dts │ ├── testdata.h │ ├── tests.h │ ├── tests.sh │ ├── testutils.c │ ├── trees.S │ ├── truncated_property.c │ ├── value-labels.c │ ├── value-labels.dts │ └── zero-phandle.dts ├── treesource.c ├── util.c └── util.h ├── dump.c ├── exec.c ├── fpu ├── softfloat-macros.h ├── softfloat-specialize.h └── softfloat.c ├── fsdev ├── 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 ├── virtio-9p-marshal.c └── virtio-9p-marshal.h ├── 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 ├── power64-core.xml ├── s390-acr.xml ├── s390-fpr.xml └── s390x-core64.xml ├── gdbstub.c ├── hmp-commands.hx ├── hmp.c ├── hmp.h ├── hw ├── Makefile.objs └── core │ ├── Makefile.objs │ ├── empty_slot.c │ ├── fw-path-provider.c │ ├── hotplug.c │ ├── irq.c │ ├── loader.c │ ├── machine.c │ ├── nmi.c │ ├── null-machine.c │ ├── platform-bus.c │ ├── ptimer.c │ ├── qdev-properties-system.c │ ├── qdev-properties.c │ ├── qdev.c │ ├── stream.c │ ├── sysbus.c │ └── uboot_image.h ├── include ├── block │ ├── accounting.h │ ├── aio.h │ ├── block.h │ ├── block_int.h │ ├── blockjob.h │ ├── coroutine.h │ ├── coroutine_int.h │ ├── nbd.h │ ├── qapi.h │ ├── scsi.h │ ├── snapshot.h │ ├── thread-pool.h │ └── write-threshold.h ├── config.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 │ ├── memory-internal.h │ ├── memory.h │ ├── poison.h │ ├── ram_addr.h │ ├── softmmu-semi.h │ ├── spinlock.h │ └── user │ │ ├── abitypes.h │ │ └── thunk.h ├── fpu │ └── softfloat.h ├── glib-compat.h ├── hw │ ├── acpi │ │ ├── acpi.h │ │ ├── acpi_dev_interface.h │ │ ├── aml-build.h │ │ ├── bios-linker-loader.h │ │ ├── cpu_hotplug.h │ │ ├── ich9.h │ │ ├── memory_hotplug.h │ │ ├── pc-hotplug.h │ │ ├── pcihp.h │ │ ├── piix4.h │ │ └── tpm.h │ ├── arm │ │ ├── allwinner-a10.h │ │ ├── arm.h │ │ ├── digic.h │ │ ├── exynos4210.h │ │ ├── imx.h │ │ ├── omap.h │ │ ├── primecell.h │ │ ├── pxa.h │ │ ├── sharpsl.h │ │ ├── soc_dma.h │ │ └── stm32f205_soc.h │ ├── audio │ │ ├── audio.h │ │ └── pcspk.h │ ├── block │ │ ├── block.h │ │ ├── fdc.h │ │ └── flash.h │ ├── boards.h │ ├── bt.h │ ├── char │ │ ├── digic-uart.h │ │ ├── escc.h │ │ ├── lm32_juart.h │ │ ├── serial.h │ │ └── stm32f2xx_usart.h │ ├── compat.h │ ├── cpu │ │ ├── a15mpcore.h │ │ ├── a9mpcore.h │ │ ├── arm11mpcore.h │ │ └── icc_bus.h │ ├── cris │ │ ├── etraxfs.h │ │ └── etraxfs_dma.h │ ├── devices.h │ ├── elf_ops.h │ ├── empty_slot.h │ ├── fw-path-provider.h │ ├── hotplug.h │ ├── hw.h │ ├── i2c │ │ ├── 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 │ │ ├── smbios.h │ │ └── topology.h │ ├── ide.h │ ├── input │ │ ├── adb.h │ │ ├── hid.h │ │ └── ps2.h │ ├── intc │ │ ├── allwinner-a10-pic.h │ │ ├── arm_gic.h │ │ ├── arm_gic_common.h │ │ └── realview_gic.h │ ├── ipack │ │ └── ipack.h │ ├── irq.h │ ├── isa │ │ ├── apm.h │ │ ├── i8259_internal.h │ │ ├── isa.h │ │ ├── pc87312.h │ │ └── vt82c686.h │ ├── kvm │ │ └── clock.h │ ├── lm32 │ │ └── lm32_pic.h │ ├── loader.h │ ├── m68k │ │ └── mcf.h │ ├── mem │ │ └── pc-dimm.h │ ├── mips │ │ ├── bios.h │ │ ├── cpudevs.h │ │ └── mips.h │ ├── misc │ │ ├── a9scu.h │ │ ├── arm11scu.h │ │ ├── arm_integrator_debug.h │ │ ├── stm32f2xx_syscfg.h │ │ └── tmp105_regs.h │ ├── net │ │ └── allwinner_emac.h │ ├── nmi.h │ ├── nvram │ │ ├── eeprom93xx.h │ │ ├── fw_cfg.h │ │ └── openbios_firmware_abi.h │ ├── pci-host │ │ ├── apb.h │ │ ├── gpex.h │ │ ├── pam.h │ │ ├── ppce500.h │ │ ├── q35.h │ │ └── spapr.h │ ├── pci │ │ ├── msi.h │ │ ├── msix.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 │ │ ├── mac_dbdma.h │ │ ├── openpic.h │ │ ├── ppc.h │ │ ├── ppc4xx.h │ │ ├── ppc_e500.h │ │ ├── spapr.h │ │ ├── spapr_vio.h │ │ └── xics.h │ ├── ptimer.h │ ├── qdev-core.h │ ├── qdev-dma.h │ ├── qdev-properties.h │ ├── qdev.h │ ├── s390x │ │ ├── adapter.h │ │ ├── ebcdic.h │ │ ├── event-facility.h │ │ ├── s390_flic.h │ │ └── sclp.h │ ├── scsi │ │ ├── esp.h │ │ └── scsi.h │ ├── sd.h │ ├── sh4 │ │ ├── sh.h │ │ └── sh_intc.h │ ├── sparc │ │ ├── grlib.h │ │ ├── sparc32_dma.h │ │ └── sun4m.h │ ├── ssi.h │ ├── stream.h │ ├── sysbus.h │ ├── timer │ │ ├── a9gtimer.h │ │ ├── allwinner-a10-pit.h │ │ ├── arm_mptimer.h │ │ ├── digic-timer.h │ │ ├── hpet.h │ │ ├── i8254.h │ │ ├── i8254_internal.h │ │ ├── m48t59.h │ │ ├── mc146818rtc.h │ │ ├── mc146818rtc_regs.h │ │ └── stm32f2xx_timer.h │ ├── tricore │ │ └── tricore.h │ ├── unicore32 │ │ └── puv3.h │ ├── usb.h │ ├── usb │ │ ├── ehci-regs.h │ │ └── uhci-regs.h │ ├── vfio │ │ ├── vfio-common.h │ │ └── vfio.h │ ├── virtio │ │ ├── dataplane │ │ │ ├── vring-accessors.h │ │ │ └── vring.h │ │ ├── vhost-backend.h │ │ ├── vhost-scsi.h │ │ ├── vhost.h │ │ ├── virtio-9p.h │ │ ├── virtio-access.h │ │ ├── virtio-balloon.h │ │ ├── virtio-blk.h │ │ ├── virtio-bus.h │ │ ├── virtio-net.h │ │ ├── virtio-rng.h │ │ ├── virtio-scsi.h │ │ ├── virtio-serial.h │ │ └── virtio.h │ └── xen │ │ ├── xen.h │ │ ├── xen_backend.h │ │ └── xen_common.h ├── libdecnumber │ ├── dconfig.h │ ├── decContext.h │ ├── decDPD.h │ ├── decNumber.h │ ├── decNumberLocal.h │ └── dpd │ │ ├── decimal128.h │ │ ├── decimal128Local.h │ │ ├── decimal32.h │ │ └── decimal64.h ├── migration │ ├── block.h │ ├── migration.h │ ├── page_cache.h │ ├── qemu-file.h │ └── vmstate.h ├── monitor │ ├── monitor.h │ └── qdev.h ├── net │ ├── checksum.h │ ├── eth.h │ ├── net.h │ ├── queue.h │ ├── slirp.h │ ├── tap.h │ ├── vhost-user.h │ └── vhost_net.h ├── qapi │ ├── dealloc-visitor.h │ ├── error.h │ ├── opts-visitor.h │ ├── qmp-event.h │ ├── qmp-input-visitor.h │ ├── qmp-output-visitor.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 │ ├── string-input-visitor.h │ ├── string-output-visitor.h │ ├── util.h │ ├── visitor-impl.h │ └── visitor.h ├── qemu-common.h ├── qemu-io.h ├── qemu │ ├── acl.h │ ├── aes.h │ ├── atomic.h │ ├── bitmap.h │ ├── bitops.h │ ├── bswap.h │ ├── compatfd.h │ ├── compiler.h │ ├── config-file.h │ ├── crc32c.h │ ├── envlist.h │ ├── error-report.h │ ├── event_notifier.h │ ├── fifo8.h │ ├── hbitmap.h │ ├── host-utils.h │ ├── int128.h │ ├── iov.h │ ├── log.h │ ├── main-loop.h │ ├── module.h │ ├── notify.h │ ├── option.h │ ├── option_int.h │ ├── osdep.h │ ├── queue.h │ ├── range.h │ ├── ratelimit.h │ ├── rcu.h │ ├── rcu_queue.h │ ├── readline.h │ ├── rfifolock.h │ ├── seqlock.h │ ├── sockets.h │ ├── thread-posix.h │ ├── thread-win32.h │ ├── thread.h │ ├── throttle.h │ ├── timer.h │ ├── tls.h │ ├── typedefs.h │ ├── uri.h │ └── xattr.h ├── qjson.h ├── qom │ ├── cpu.h │ ├── object.h │ ├── object_interfaces.h │ └── qom-qobject.h ├── standard-headers │ ├── asm-s390 │ │ ├── kvm_virtio.h │ │ └── virtio-ccw.h │ └── linux │ │ ├── if_ether.h │ │ ├── types.h │ │ ├── virtio_9p.h │ │ ├── virtio_balloon.h │ │ ├── virtio_blk.h │ │ ├── virtio_config.h │ │ ├── virtio_console.h │ │ ├── virtio_ids.h │ │ ├── virtio_net.h │ │ ├── virtio_pci.h │ │ ├── virtio_ring.h │ │ ├── virtio_rng.h │ │ ├── virtio_scsi.h │ │ └── virtio_types.h ├── sysemu │ ├── accel.h │ ├── arch_init.h │ ├── balloon.h │ ├── block-backend.h │ ├── blockdev.h │ ├── bt.h │ ├── char.h │ ├── cpus.h │ ├── device_tree.h │ ├── dma.h │ ├── dump-arch.h │ ├── dump.h │ ├── hostmem.h │ ├── iothread.h │ ├── kvm.h │ ├── memory_mapping.h │ ├── numa.h │ ├── os-posix.h │ ├── os-win32.h │ ├── qtest.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 │ ├── input.h │ ├── pixel_ops.h │ ├── qemu-pixman.h │ ├── qemu-spice.h │ ├── sdl2.h │ └── spice-display.h ├── iohandler.c ├── ioport.c ├── iothread.c ├── kvm-all.c ├── kvm-stub.c ├── libcacard ├── Makefile ├── cac.c ├── cac.h ├── card_7816.c ├── card_7816.h ├── card_7816t.h ├── event.c ├── eventt.h ├── libcacard.pc.in ├── libcacard.syms ├── link_test.c ├── vcard.c ├── vcard.h ├── vcard_emul.h ├── vcard_emul_nss.c ├── vcard_emul_type.c ├── vcard_emul_type.h ├── vcardt.c ├── vcardt.h ├── vcardt_internal.h ├── vevent.h ├── vreader.c ├── vreader.h ├── vreadert.h ├── vscard_common.h └── vscclient.c ├── libdecnumber ├── decContext.c ├── decNumber.c └── dpd │ ├── decimal128.c │ ├── decimal128Local.h │ ├── decimal32.c │ └── decimal64.c ├── linux-headers ├── COPYING ├── README ├── asm-arm │ ├── kvm.h │ └── kvm_para.h ├── asm-arm64 │ ├── kvm.h │ └── kvm_para.h ├── asm-generic │ └── kvm_para.h ├── asm-mips │ ├── kvm.h │ └── kvm_para.h ├── asm-powerpc │ ├── epapr_hcalls.h │ ├── kvm.h │ └── kvm_para.h ├── asm-s390 │ ├── kvm.h │ └── kvm_para.h ├── asm-x86 │ ├── hyperv.h │ ├── kvm.h │ └── kvm_para.h └── linux │ ├── kvm.h │ ├── kvm_para.h │ ├── psci.h │ ├── vfio.h │ ├── vhost.h │ ├── virtio_config.h │ └── virtio_ring.h ├── linux-user ├── Makefile.objs ├── elfload.c ├── errno_defs.h ├── flag.h ├── i386 │ ├── syscall.h │ ├── syscall_nr.h │ └── target_signal.h ├── linuxload.c ├── main.c ├── mmap.c ├── qemu.h ├── signal.c ├── strace.c ├── syscall.c ├── syscall_defs.h └── uaccess.c ├── main-loop.c ├── memory.c ├── memory_mapping.c ├── migration ├── Makefile.objs ├── block.c ├── exec.c ├── fd.c ├── migration.c ├── qemu-file-buf.c ├── qemu-file-internal.h ├── qemu-file-stdio.c ├── qemu-file-unix.c ├── qemu-file.c ├── rdma.c ├── tcp.c ├── unix.c ├── vmstate.c └── xbzrle.c ├── module-common.c ├── monitor.c ├── nbd.c ├── net ├── Makefile.objs ├── checksum.c ├── clients.h ├── dump.c ├── eth.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 ├── util.c ├── util.h ├── vde.c └── vhost-user.c ├── numa.c ├── os-posix.c ├── os-win32.c ├── page_cache.c ├── pixman ├── .gitignore ├── AUTHORS ├── CODING_STYLE ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.win32 ├── Makefile.win32.common ├── NEWS ├── README ├── RELEASING ├── autogen.sh ├── configure.ac ├── demos │ ├── Makefile.am │ ├── alpha-test.c │ ├── checkerboard.c │ ├── clip-in.c │ ├── clip-test.c │ ├── composite-test.c │ ├── conical-test.c │ ├── convolution-test.c │ ├── gradient-test.c │ ├── gtk-utils.c │ ├── gtk-utils.h │ ├── linear-gradient.c │ ├── parrot.c │ ├── parrot.jpg │ ├── quad2quad.c │ ├── radial-test.c │ ├── scale.c │ ├── scale.ui │ ├── screen-test.c │ ├── srgb-test.c │ ├── srgb-trap-test.c │ ├── trap-test.c │ ├── tri-test.c │ └── zone_plate.png ├── pixman-1-uninstalled.pc.in ├── pixman-1.pc.in ├── pixman │ ├── Makefile.am │ ├── Makefile.sources │ ├── Makefile.win32 │ ├── loongson-mmintrin.h │ ├── make-srgb.pl │ ├── pixman-access-accessors.c │ ├── pixman-access.c │ ├── pixman-accessor.h │ ├── pixman-arm-common.h │ ├── pixman-arm-detect-win32.asm │ ├── pixman-arm-neon-asm-bilinear.S │ ├── pixman-arm-neon-asm.S │ ├── pixman-arm-neon-asm.h │ ├── pixman-arm-neon.c │ ├── pixman-arm-simd-asm-scaled.S │ ├── pixman-arm-simd-asm.S │ ├── pixman-arm-simd-asm.h │ ├── pixman-arm-simd.c │ ├── pixman-arm.c │ ├── pixman-bits-image.c │ ├── pixman-combine-float.c │ ├── pixman-combine32.c │ ├── pixman-combine32.h │ ├── pixman-compiler.h │ ├── pixman-conical-gradient.c │ ├── pixman-edge-accessors.c │ ├── pixman-edge-imp.h │ ├── pixman-edge.c │ ├── pixman-fast-path.c │ ├── pixman-filter.c │ ├── pixman-general.c │ ├── pixman-glyph.c │ ├── pixman-gradient-walker.c │ ├── pixman-image.c │ ├── pixman-implementation.c │ ├── pixman-inlines.h │ ├── pixman-linear-gradient.c │ ├── pixman-matrix.c │ ├── pixman-mips-dspr2-asm.S │ ├── pixman-mips-dspr2-asm.h │ ├── pixman-mips-dspr2.c │ ├── pixman-mips-dspr2.h │ ├── pixman-mips-memcpy-asm.S │ ├── pixman-mips.c │ ├── pixman-mmx.c │ ├── pixman-noop.c │ ├── pixman-ppc.c │ ├── pixman-private.h │ ├── pixman-radial-gradient.c │ ├── pixman-region.c │ ├── pixman-region16.c │ ├── pixman-region32.c │ ├── pixman-solid-fill.c │ ├── pixman-sse2.c │ ├── pixman-ssse3.c │ ├── pixman-timer.c │ ├── pixman-trap.c │ ├── pixman-utils.c │ ├── pixman-version.h.in │ ├── pixman-vmx.c │ ├── pixman-x86.c │ ├── pixman.c │ ├── pixman.h │ ├── rounding.txt │ └── solaris-hwcap.mapfile └── test │ ├── Makefile.am │ ├── Makefile.sources │ ├── Makefile.win32 │ ├── a1-trap-test.c │ ├── affine-test.c │ ├── alpha-loop.c │ ├── alphamap.c │ ├── blitters-test.c │ ├── check-formats.c │ ├── combiner-test.c │ ├── composite-traps-test.c │ ├── composite.c │ ├── fetch-test.c │ ├── fuzzer-find-diff.pl │ ├── glyph-test.c │ ├── gradient-crash-test.c │ ├── infinite-loop.c │ ├── lowlevel-blt-bench.c │ ├── matrix-test.c │ ├── oob-test.c │ ├── pdf-op-test.c │ ├── pixel-test.c │ ├── prng-test.c │ ├── radial-perf-test.c │ ├── region-contains-test.c │ ├── region-test.c │ ├── region-translate-test.c │ ├── rotate-test.c │ ├── scaling-bench.c │ ├── scaling-crash-test.c │ ├── scaling-helpers-test.c │ ├── scaling-test.c │ ├── stress-test.c │ ├── thread-test.c │ ├── trap-crasher.c │ ├── utils-prng.c │ ├── utils-prng.h │ ├── utils.c │ └── utils.h ├── po ├── Makefile ├── 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 ├── event.json ├── opts-visitor.c ├── qapi-dealloc-visitor.c ├── qapi-util.c ├── qapi-visit-core.c ├── qmp-dispatch.c ├── qmp-event.c ├── qmp-input-visitor.c ├── qmp-output-visitor.c ├── qmp-registry.c ├── string-input-visitor.c ├── string-output-visitor.c └── trace.json ├── qdev-monitor.c ├── qdict-test-data.txt ├── qemu-bridge-helper.c ├── qemu-char.c ├── qemu-coroutine-io.c ├── qemu-coroutine-lock.c ├── qemu-coroutine-sleep.c ├── qemu-coroutine.c ├── qemu-doc.texi ├── qemu-img-cmds.hx ├── qemu-img.c ├── qemu-img.texi ├── qemu-io-cmds.c ├── qemu-io.c ├── qemu-log.c ├── qemu-nbd.c ├── qemu-nbd.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 ├── 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 ├── qjson.c ├── qmp-commands.hx ├── qmp.c ├── qobject ├── Makefile.objs ├── json-lexer.c ├── json-parser.c ├── json-streamer.c ├── qbool.c ├── qdict.c ├── qerror.c ├── qfloat.c ├── qint.c ├── qjson.c ├── qlist.c └── qstring.c ├── qom ├── Makefile.objs ├── container.c ├── cpu.c ├── object.c ├── object_interfaces.c └── qom-qobject.c ├── qtest.c ├── roms ├── seabios │ └── .gitignore └── vgabios │ └── .gitignore ├── rules.mak ├── savevm.c ├── scripts ├── acpi_extract.py ├── acpi_extract_preprocess.py ├── analyse-9p-simpletrace.py ├── analyze-migration.py ├── check-qerror.sh ├── checkpatch.pl ├── cleanup-trace-events.pl ├── 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 │ ├── kvm_stat │ ├── kvm_stat.texi │ └── vmxcap ├── make-release ├── make_device_config.sh ├── ordereddict.py ├── qapi-commands.py ├── qapi-event.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 ├── qmp │ ├── qemu-ga-client │ ├── qmp │ ├── qmp-shell │ ├── qmp.py │ ├── qom-fuse │ ├── qom-get │ ├── qom-list │ ├── qom-set │ └── qom-tree ├── qtest.py ├── refresh-pxe-roms.sh ├── signrom.py ├── simpletrace.py ├── switch-timer-api ├── texi2pod.pl ├── tracetool.py ├── tracetool │ ├── __init__.py │ ├── backend │ │ ├── __init__.py │ │ ├── dtrace.py │ │ ├── ftrace.py │ │ ├── simple.py │ │ ├── stderr.py │ │ └── ust.py │ ├── format │ │ ├── __init__.py │ │ ├── c.py │ │ ├── d.py │ │ ├── events_c.py │ │ ├── events_h.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 ├── update-acpi.sh ├── update-linux-headers.sh └── vmstate-static-checker.py ├── slirp ├── COPYRIGHT ├── Makefile.objs ├── arp_table.c ├── bootp.c ├── bootp.h ├── cksum.c ├── debug.h ├── dnssearch.c ├── if.c ├── if.h ├── ip.h ├── ip_icmp.c ├── ip_icmp.h ├── ip_input.c ├── ip_output.c ├── libslirp.h ├── main.h ├── mbuf.c ├── mbuf.h ├── misc.c ├── misc.h ├── 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 ├── softmmu_template.h ├── spice-qemu-char.c ├── stubs ├── Makefile.objs ├── arch-query-cpu-def.c ├── bdrv-commit-all.c ├── chr-baum-init.c ├── chr-msmouse.c ├── chr-testdev.c ├── clock-warp.c ├── cpu-get-clock.c ├── cpu-get-icount.c ├── cpus.c ├── dump.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 ├── iothread-lock.c ├── is-daemonized.c ├── kvm.c ├── machine-init-done.c ├── migr-blocker.c ├── mon-is-qmp.c ├── mon-printf.c ├── mon-set-error.c ├── monitor-init.c ├── notify-event.c ├── qemu-chr-open-spice.c ├── qmp_pc_dimm_device_list.c ├── qtest.c ├── reset.c ├── runstate-check.c ├── set-fd-handler.c ├── slirp.c ├── sysbus.c ├── uuid.c ├── vc-init.c ├── vm-stop.c └── vmstate.c ├── sysconfigs └── target │ └── target-x86_64.conf ├── target-i386 ├── Makefile.objs ├── TODO ├── arch_dump.c ├── arch_memory_mapping.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 ├── int_helper.c ├── ioport-user.c ├── kvm-stub.c ├── kvm.c ├── kvm_i386.h ├── machine.c ├── mem_helper.c ├── misc_helper.c ├── ops_sse.h ├── ops_sse_header.h ├── seg_helper.c ├── shift_helper_template.h ├── smm_helper.c ├── svm.h ├── svm_helper.c └── translate.c ├── tcg-runtime.c ├── tcg ├── LICENSE ├── README ├── TODO ├── aarch64 │ ├── tcg-target.c │ └── tcg-target.h ├── arm │ ├── tcg-target.c │ └── tcg-target.h ├── i386 │ ├── tcg-target.c │ └── tcg-target.h ├── ia64 │ ├── tcg-target.c │ └── tcg-target.h ├── mips │ ├── tcg-target.c │ └── tcg-target.h ├── optimize.c ├── ppc │ ├── tcg-target.c │ └── tcg-target.h ├── s390 │ ├── tcg-target.c │ └── tcg-target.h ├── sparc │ ├── tcg-target.c │ └── tcg-target.h ├── tcg-be-ldst.h ├── tcg-be-null.h ├── tcg-op.c ├── tcg-op.h ├── tcg-opc.h ├── tcg-runtime.h ├── tcg.c ├── tcg.h └── tci │ ├── README │ ├── tcg-target.c │ └── tcg-target.h ├── tci.c ├── tests ├── .gitignore ├── Makefile ├── ac97-test.c ├── acpi-test-data │ ├── pc │ │ ├── APIC │ │ ├── DSDT │ │ ├── FACP │ │ ├── FACS │ │ ├── HPET │ │ ├── SSDT │ │ └── SSDT.bridge │ ├── q35 │ │ ├── APIC │ │ ├── DSDT │ │ ├── FACP │ │ ├── FACS │ │ ├── HPET │ │ ├── MCFG │ │ ├── SSDT │ │ └── SSDT.bridge │ └── rebuild-expected-aml.sh ├── ahci-test.c ├── bios-tables-test.c ├── boot-order-test.c ├── check-block.sh ├── check-qdict.c ├── check-qfloat.c ├── check-qint.c ├── check-qjson.c ├── check-qlist.c ├── check-qom-interface.c ├── check-qstring.c ├── display-vga-test.c ├── drive_del-test.c ├── e1000-test.c ├── eepro100-test.c ├── endianness-test.c ├── es1370-test.c ├── fdc-test.c ├── fw_cfg-test.c ├── 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 ├── ioh3420-test.c ├── ipoctal232-test.c ├── libqos │ ├── ahci.c │ ├── ahci.h │ ├── fw_cfg.c │ ├── fw_cfg.h │ ├── i2c-omap.c │ ├── i2c.c │ ├── i2c.h │ ├── libqos-pc.c │ ├── libqos-pc.h │ ├── libqos.c │ ├── libqos.h │ ├── malloc-generic.c │ ├── malloc-generic.h │ ├── malloc-pc.c │ ├── malloc-pc.h │ ├── malloc.c │ ├── malloc.h │ ├── pci-pc.c │ ├── pci-pc.h │ ├── pci.c │ ├── pci.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 ├── m48t59-test.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 ├── pvpanic-test.c ├── qapi-schema │ ├── comments.err │ ├── comments.exit │ ├── comments.json │ ├── comments.out │ ├── duplicate-key.err │ ├── duplicate-key.exit │ ├── duplicate-key.json │ ├── duplicate-key.out │ ├── empty.err │ ├── empty.exit │ ├── empty.json │ ├── empty.out │ ├── event-nest-struct.err │ ├── event-nest-struct.exit │ ├── event-nest-struct.json │ ├── event-nest-struct.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-reverse-define.err │ ├── flat-union-reverse-define.exit │ ├── flat-union-reverse-define.json │ ├── flat-union-reverse-define.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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── union-invalid-base.err │ ├── union-invalid-base.exit │ ├── union-invalid-base.json │ └── union-invalid-base.out ├── qemu-iotests-quick.sh ├── qemu-iotests │ ├── .gitignore │ ├── 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 │ └── socket_scm_helper.c ├── qom-test.c ├── rcutorture.c ├── rtc-test.c ├── rtl8139-test.c ├── spapr-phb-test.c ├── tcg │ ├── Makefile │ ├── hello-arm.c │ ├── hello-i386.c │ ├── hello-mips.c │ ├── linux-test.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 ├── test-aio.c ├── test-bitops.c ├── test-coroutine.c ├── test-cutils.c ├── test-hbitmap.c ├── test-int128.c ├── test-iov.c ├── test-mul64.c ├── test-opts-visitor.c ├── test-qdev-global-props.c ├── test-qemu-opts.c ├── test-qmp-commands.c ├── test-qmp-event.c ├── test-qmp-input-strict.c ├── test-qmp-input-visitor.c ├── test-qmp-output-visitor.c ├── test-rcu-list.c ├── test-rfifolock.c ├── test-string-input-visitor.c ├── test-string-output-visitor.c ├── test-thread-pool.c ├── test-throttle.c ├── test-visitor-serialization.c ├── test-vmstate.c ├── test-write-threshold.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-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.c ├── control.h ├── event-internal.h ├── ftrace.c ├── ftrace.h ├── qmp.c ├── simple.c └── simple.h ├── tracer-config ├── translate-all.c ├── translate-all.h ├── ui ├── Makefile.objs ├── cocoa.m ├── console.c ├── curses.c ├── curses_keys.h ├── cursor.c ├── cursor_hidden.xpm ├── cursor_left_ptr.xpm ├── d3des.c ├── d3des.h ├── gtk.c ├── input-keymap.c ├── input-legacy.c ├── input.c ├── keymaps.c ├── keymaps.h ├── qemu-pixman.c ├── qemu-x509.h ├── sdl.c ├── sdl2-2d.c ├── sdl2-input.c ├── sdl2-keymap.h ├── sdl2.c ├── sdl_keysym.h ├── sdl_zoom.c ├── sdl_zoom.h ├── sdl_zoom_template.h ├── spice-core.c ├── spice-display.c ├── spice-input.c ├── 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-tls.c ├── vnc-tls.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 ├── aes.c ├── bitmap.c ├── bitops.c ├── compatfd.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 ├── module.c ├── notify.c ├── osdep.c ├── oslib-posix.c ├── oslib-win32.c ├── path.c ├── qemu-config.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 ├── rcu.c ├── readline.c ├── rfifolock.c ├── throttle.c ├── unicode.c └── uri.c ├── version.rc ├── vl.c ├── xen-common-stub.c ├── xen-common.c ├── xen-hvm-stub.c ├── xen-hvm.c └── xen-mapcache.c /.exrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/.exrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/.mailmap -------------------------------------------------------------------------------- /CGC_README.md: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/CODING_STYLE -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/Changelog -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/HACKING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/Makefile.objs -------------------------------------------------------------------------------- /Makefile.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/Makefile.target -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/README.md -------------------------------------------------------------------------------- /README.qemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/README.qemu -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.3.0 2 | -------------------------------------------------------------------------------- /accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/accel.c -------------------------------------------------------------------------------- /aio-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/aio-posix.c -------------------------------------------------------------------------------- /aio-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/aio-win32.c -------------------------------------------------------------------------------- /arch_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/arch_init.c -------------------------------------------------------------------------------- /async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/async.c -------------------------------------------------------------------------------- /backends/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/backends/Makefile.objs -------------------------------------------------------------------------------- /backends/baum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/backends/baum.c -------------------------------------------------------------------------------- /backends/hostmem-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/backends/hostmem-file.c -------------------------------------------------------------------------------- /backends/hostmem-ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/backends/hostmem-ram.c -------------------------------------------------------------------------------- /backends/hostmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/backends/hostmem.c -------------------------------------------------------------------------------- /backends/msmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/backends/msmouse.c -------------------------------------------------------------------------------- /backends/rng-egd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/backends/rng-egd.c -------------------------------------------------------------------------------- /backends/rng-random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/backends/rng-random.c -------------------------------------------------------------------------------- /backends/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/backends/rng.c -------------------------------------------------------------------------------- /backends/testdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/backends/testdev.c -------------------------------------------------------------------------------- /backends/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/backends/tpm.c -------------------------------------------------------------------------------- /balloon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/balloon.c -------------------------------------------------------------------------------- /block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block.c -------------------------------------------------------------------------------- /block/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/Makefile.objs -------------------------------------------------------------------------------- /block/accounting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/accounting.c -------------------------------------------------------------------------------- /block/archipelago.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/archipelago.c -------------------------------------------------------------------------------- /block/backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/backup.c -------------------------------------------------------------------------------- /block/blkdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/blkdebug.c -------------------------------------------------------------------------------- /block/blkverify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/blkverify.c -------------------------------------------------------------------------------- /block/block-backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/block-backend.c -------------------------------------------------------------------------------- /block/bochs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/bochs.c -------------------------------------------------------------------------------- /block/cloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/cloop.c -------------------------------------------------------------------------------- /block/commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/commit.c -------------------------------------------------------------------------------- /block/curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/curl.c -------------------------------------------------------------------------------- /block/dmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/dmg.c -------------------------------------------------------------------------------- /block/gluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/gluster.c -------------------------------------------------------------------------------- /block/iscsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/iscsi.c -------------------------------------------------------------------------------- /block/linux-aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/linux-aio.c -------------------------------------------------------------------------------- /block/mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/mirror.c -------------------------------------------------------------------------------- /block/nbd-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/nbd-client.c -------------------------------------------------------------------------------- /block/nbd-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/nbd-client.h -------------------------------------------------------------------------------- /block/nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/nbd.c -------------------------------------------------------------------------------- /block/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/nfs.c -------------------------------------------------------------------------------- /block/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/null.c -------------------------------------------------------------------------------- /block/parallels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/parallels.c -------------------------------------------------------------------------------- /block/qapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/qapi.c -------------------------------------------------------------------------------- /block/qcow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/qcow.c -------------------------------------------------------------------------------- /block/qcow2-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/qcow2-cache.c -------------------------------------------------------------------------------- /block/qcow2-cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/qcow2-cluster.c -------------------------------------------------------------------------------- /block/qcow2-refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/qcow2-refcount.c -------------------------------------------------------------------------------- /block/qcow2-snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/qcow2-snapshot.c -------------------------------------------------------------------------------- /block/qcow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/qcow2.c -------------------------------------------------------------------------------- /block/qcow2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/qcow2.h -------------------------------------------------------------------------------- /block/qed-check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/qed-check.c -------------------------------------------------------------------------------- /block/qed-cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/qed-cluster.c -------------------------------------------------------------------------------- /block/qed-gencb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/qed-gencb.c -------------------------------------------------------------------------------- /block/qed-l2-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/qed-l2-cache.c -------------------------------------------------------------------------------- /block/qed-table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/qed-table.c -------------------------------------------------------------------------------- /block/qed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/qed.c -------------------------------------------------------------------------------- /block/qed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/qed.h -------------------------------------------------------------------------------- /block/quorum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/quorum.c -------------------------------------------------------------------------------- /block/raw-aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/raw-aio.h -------------------------------------------------------------------------------- /block/raw-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/raw-posix.c -------------------------------------------------------------------------------- /block/raw-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/raw-win32.c -------------------------------------------------------------------------------- /block/raw_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/raw_bsd.c -------------------------------------------------------------------------------- /block/rbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/rbd.c -------------------------------------------------------------------------------- /block/sheepdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/sheepdog.c -------------------------------------------------------------------------------- /block/snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/snapshot.c -------------------------------------------------------------------------------- /block/ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/ssh.c -------------------------------------------------------------------------------- /block/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/stream.c -------------------------------------------------------------------------------- /block/vdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/vdi.c -------------------------------------------------------------------------------- /block/vhdx-endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/vhdx-endian.c -------------------------------------------------------------------------------- /block/vhdx-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/vhdx-log.c -------------------------------------------------------------------------------- /block/vhdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/vhdx.c -------------------------------------------------------------------------------- /block/vhdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/vhdx.h -------------------------------------------------------------------------------- /block/vmdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/vmdk.c -------------------------------------------------------------------------------- /block/vpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/vpc.c -------------------------------------------------------------------------------- /block/vvfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/vvfat.c -------------------------------------------------------------------------------- /block/win32-aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/win32-aio.c -------------------------------------------------------------------------------- /block/write-threshold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/block/write-threshold.c -------------------------------------------------------------------------------- /blockdev-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/blockdev-nbd.c -------------------------------------------------------------------------------- /blockdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/blockdev.c -------------------------------------------------------------------------------- /blockjob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/blockjob.c -------------------------------------------------------------------------------- /bootdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/bootdevice.c -------------------------------------------------------------------------------- /bt-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/bt-host.c -------------------------------------------------------------------------------- /bt-vhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/bt-vhci.c -------------------------------------------------------------------------------- /cgc_configure_afl_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/cgc_configure_afl_debug -------------------------------------------------------------------------------- /cgc_configure_afl_opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/cgc_configure_afl_opt -------------------------------------------------------------------------------- /cgc_configure_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/cgc_configure_debug -------------------------------------------------------------------------------- /cgc_configure_opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/cgc_configure_opt -------------------------------------------------------------------------------- /cgc_configure_tracer_opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/cgc_configure_tracer_opt -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/configure -------------------------------------------------------------------------------- /coroutine-gthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/coroutine-gthread.c -------------------------------------------------------------------------------- /coroutine-sigaltstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/coroutine-sigaltstack.c -------------------------------------------------------------------------------- /coroutine-ucontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/coroutine-ucontext.c -------------------------------------------------------------------------------- /coroutine-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/coroutine-win32.c -------------------------------------------------------------------------------- /cpu-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/cpu-exec.c -------------------------------------------------------------------------------- /cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/cpus.c -------------------------------------------------------------------------------- /cputlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/cputlb.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/microblaze-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for microblaze-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/microblazeel-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for microblazeel-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/mips64el-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips64el-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/mipsel-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsel-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/mipsn32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsn32-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/mipsn32el-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsn32el-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/or32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for or32-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/pci.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/default-configs/pci.mak -------------------------------------------------------------------------------- /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/sparc32plus-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc32plus-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/sparc64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc64-bsd-user 2 | -------------------------------------------------------------------------------- /default-configs/sparc64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc64-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/tricore-softmmu.mak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default-configs/unicore32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for unicore32-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/usb.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/default-configs/usb.mak -------------------------------------------------------------------------------- /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/mechaphish/qemu-cgc/HEAD/device-hotplug.c -------------------------------------------------------------------------------- /device_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/device_tree.c -------------------------------------------------------------------------------- /disas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/disas.c -------------------------------------------------------------------------------- /disas/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/disas/Makefile.objs -------------------------------------------------------------------------------- /disas/i386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/disas/i386.c -------------------------------------------------------------------------------- /disas/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/disas/tci.c -------------------------------------------------------------------------------- /dma-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dma-helpers.c -------------------------------------------------------------------------------- /docs/aio_notify.promela: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/aio_notify.promela -------------------------------------------------------------------------------- /docs/atomics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/atomics.txt -------------------------------------------------------------------------------- /docs/blkdebug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/blkdebug.txt -------------------------------------------------------------------------------- /docs/blkverify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/blkverify.txt -------------------------------------------------------------------------------- /docs/bootindex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/bootindex.txt -------------------------------------------------------------------------------- /docs/ccid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/ccid.txt -------------------------------------------------------------------------------- /docs/ich9-ehci-uhci.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/ich9-ehci-uhci.cfg -------------------------------------------------------------------------------- /docs/image-fuzzer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/image-fuzzer.txt -------------------------------------------------------------------------------- /docs/libcacard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/libcacard.txt -------------------------------------------------------------------------------- /docs/live-block-ops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/live-block-ops.txt -------------------------------------------------------------------------------- /docs/memory-hotplug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/memory-hotplug.txt -------------------------------------------------------------------------------- /docs/memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/memory.txt -------------------------------------------------------------------------------- /docs/migration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/migration.txt -------------------------------------------------------------------------------- /docs/multiseat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/multiseat.txt -------------------------------------------------------------------------------- /docs/q35-chipset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/q35-chipset.cfg -------------------------------------------------------------------------------- /docs/qapi-code-gen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/qapi-code-gen.txt -------------------------------------------------------------------------------- /docs/qdev-device-use.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/qdev-device-use.txt -------------------------------------------------------------------------------- /docs/qemupciserial.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/qemupciserial.inf -------------------------------------------------------------------------------- /docs/qmp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/qmp/README -------------------------------------------------------------------------------- /docs/qmp/qmp-events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/qmp/qmp-events.txt -------------------------------------------------------------------------------- /docs/qmp/qmp-spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/qmp/qmp-spec.txt -------------------------------------------------------------------------------- /docs/rcu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/rcu.txt -------------------------------------------------------------------------------- /docs/rdma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/rdma.txt -------------------------------------------------------------------------------- /docs/specs/edu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/specs/edu.txt -------------------------------------------------------------------------------- /docs/specs/fw_cfg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/specs/fw_cfg.txt -------------------------------------------------------------------------------- /docs/specs/pci-ids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/specs/pci-ids.txt -------------------------------------------------------------------------------- /docs/specs/pvpanic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/specs/pvpanic.txt -------------------------------------------------------------------------------- /docs/specs/qcow2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/specs/qcow2.txt -------------------------------------------------------------------------------- /docs/specs/qed_spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/specs/qed_spec.txt -------------------------------------------------------------------------------- /docs/spice-port-fqdn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/spice-port-fqdn.txt -------------------------------------------------------------------------------- /docs/tracing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/tracing.txt -------------------------------------------------------------------------------- /docs/usb-storage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/usb-storage.txt -------------------------------------------------------------------------------- /docs/usb2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/usb2.txt -------------------------------------------------------------------------------- /docs/xbzrle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/docs/xbzrle.txt -------------------------------------------------------------------------------- /dtc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/.gitignore -------------------------------------------------------------------------------- /dtc/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/GPL -------------------------------------------------------------------------------- /dtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/Makefile -------------------------------------------------------------------------------- /dtc/Makefile.dtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/Makefile.dtc -------------------------------------------------------------------------------- /dtc/Makefile.ftdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/Makefile.ftdump -------------------------------------------------------------------------------- /dtc/README.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/README.license -------------------------------------------------------------------------------- /dtc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/TODO -------------------------------------------------------------------------------- /dtc/checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/checks.c -------------------------------------------------------------------------------- /dtc/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/data.c -------------------------------------------------------------------------------- /dtc/dtc-lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/dtc-lexer.l -------------------------------------------------------------------------------- /dtc/dtc-parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/dtc-parser.y -------------------------------------------------------------------------------- /dtc/dtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/dtc.c -------------------------------------------------------------------------------- /dtc/dtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/dtc.h -------------------------------------------------------------------------------- /dtc/dtdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/dtdiff -------------------------------------------------------------------------------- /dtc/flattree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/flattree.c -------------------------------------------------------------------------------- /dtc/fstree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/fstree.c -------------------------------------------------------------------------------- /dtc/ftdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/ftdump.c -------------------------------------------------------------------------------- /dtc/libfdt/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/libfdt/TODO -------------------------------------------------------------------------------- /dtc/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/libfdt/fdt.c -------------------------------------------------------------------------------- /dtc/libfdt/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/libfdt/fdt.h -------------------------------------------------------------------------------- /dtc/libfdt/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/libfdt/fdt_ro.c -------------------------------------------------------------------------------- /dtc/libfdt/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/libfdt/fdt_rw.c -------------------------------------------------------------------------------- /dtc/libfdt/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/libfdt/fdt_sw.c -------------------------------------------------------------------------------- /dtc/libfdt/fdt_wip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/libfdt/fdt_wip.c -------------------------------------------------------------------------------- /dtc/libfdt/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/libfdt/libfdt.h -------------------------------------------------------------------------------- /dtc/livetree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/livetree.c -------------------------------------------------------------------------------- /dtc/srcpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/srcpos.c -------------------------------------------------------------------------------- /dtc/srcpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/srcpos.h -------------------------------------------------------------------------------- /dtc/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/.gitignore -------------------------------------------------------------------------------- /dtc/tests/aliases.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/aliases.dts -------------------------------------------------------------------------------- /dtc/tests/base01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/base01.asm -------------------------------------------------------------------------------- /dtc/tests/base01.cmd: -------------------------------------------------------------------------------- 1 | dtc -f -b 0 -V 16 -I dts -O asm 2 | -------------------------------------------------------------------------------- /dtc/tests/base01.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/base01.dts -------------------------------------------------------------------------------- /dtc/tests/data.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/data.S -------------------------------------------------------------------------------- /dtc/tests/del_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/del_node.c -------------------------------------------------------------------------------- /dtc/tests/dumptrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/dumptrees.c -------------------------------------------------------------------------------- /dtc/tests/empty.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | }; 5 | -------------------------------------------------------------------------------- /dtc/tests/escapes.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/escapes.dts -------------------------------------------------------------------------------- /dtc/tests/get_alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/get_alias.c -------------------------------------------------------------------------------- /dtc/tests/get_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/get_name.c -------------------------------------------------------------------------------- /dtc/tests/get_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/get_path.c -------------------------------------------------------------------------------- /dtc/tests/getprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/getprop.c -------------------------------------------------------------------------------- /dtc/tests/incbin.bin: -------------------------------------------------------------------------------- 1 | abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ -------------------------------------------------------------------------------- /dtc/tests/incbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/incbin.c -------------------------------------------------------------------------------- /dtc/tests/incbin.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/incbin.dts -------------------------------------------------------------------------------- /dtc/tests/include3.dts: -------------------------------------------------------------------------------- 1 | 123456789 010000 2 | -------------------------------------------------------------------------------- /dtc/tests/include4.dts: -------------------------------------------------------------------------------- 1 | compatible = "test_tree1"; 2 | -------------------------------------------------------------------------------- /dtc/tests/include5.dts: -------------------------------------------------------------------------------- 1 | prop-int 2 | -------------------------------------------------------------------------------- /dtc/tests/include6.dts: -------------------------------------------------------------------------------- 1 | "hello world" 2 | -------------------------------------------------------------------------------- /dtc/tests/include8.dts: -------------------------------------------------------------------------------- 1 | subsubnode@0 { -------------------------------------------------------------------------------- /dtc/tests/label01.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/label01.dts -------------------------------------------------------------------------------- /dtc/tests/nop_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/nop_node.c -------------------------------------------------------------------------------- /dtc/tests/nopulate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/nopulate.c -------------------------------------------------------------------------------- /dtc/tests/notfound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/notfound.c -------------------------------------------------------------------------------- /dtc/tests/open_pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/open_pack.c -------------------------------------------------------------------------------- /dtc/tests/root_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/root_node.c -------------------------------------------------------------------------------- /dtc/tests/rw_tree1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/rw_tree1.c -------------------------------------------------------------------------------- /dtc/tests/set_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/set_name.c -------------------------------------------------------------------------------- /dtc/tests/setprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/setprop.c -------------------------------------------------------------------------------- /dtc/tests/sw_tree1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/sw_tree1.c -------------------------------------------------------------------------------- /dtc/tests/test01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/test01.asm -------------------------------------------------------------------------------- /dtc/tests/test01.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/test01.dts -------------------------------------------------------------------------------- /dtc/tests/testdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/testdata.h -------------------------------------------------------------------------------- /dtc/tests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/tests.h -------------------------------------------------------------------------------- /dtc/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/tests.sh -------------------------------------------------------------------------------- /dtc/tests/testutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/testutils.c -------------------------------------------------------------------------------- /dtc/tests/trees.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/tests/trees.S -------------------------------------------------------------------------------- /dtc/treesource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/treesource.c -------------------------------------------------------------------------------- /dtc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/util.c -------------------------------------------------------------------------------- /dtc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dtc/util.h -------------------------------------------------------------------------------- /dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/dump.c -------------------------------------------------------------------------------- /exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/exec.c -------------------------------------------------------------------------------- /fpu/softfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/fpu/softfloat.c -------------------------------------------------------------------------------- /fsdev/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/fsdev/Makefile.objs -------------------------------------------------------------------------------- /fsdev/file-op-9p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/fsdev/file-op-9p.h -------------------------------------------------------------------------------- /fsdev/qemu-fsdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/fsdev/qemu-fsdev.c -------------------------------------------------------------------------------- /fsdev/qemu-fsdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/fsdev/qemu-fsdev.h -------------------------------------------------------------------------------- /gdb-xml/arm-core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/gdb-xml/arm-core.xml -------------------------------------------------------------------------------- /gdb-xml/arm-neon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/gdb-xml/arm-neon.xml -------------------------------------------------------------------------------- /gdb-xml/arm-vfp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/gdb-xml/arm-vfp.xml -------------------------------------------------------------------------------- /gdb-xml/arm-vfp3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/gdb-xml/arm-vfp3.xml -------------------------------------------------------------------------------- /gdb-xml/cf-core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/gdb-xml/cf-core.xml -------------------------------------------------------------------------------- /gdb-xml/cf-fp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/gdb-xml/cf-fp.xml -------------------------------------------------------------------------------- /gdb-xml/power-fpu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/gdb-xml/power-fpu.xml -------------------------------------------------------------------------------- /gdb-xml/power-spe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/gdb-xml/power-spe.xml -------------------------------------------------------------------------------- /gdb-xml/s390-acr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/gdb-xml/s390-acr.xml -------------------------------------------------------------------------------- /gdb-xml/s390-fpr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/gdb-xml/s390-fpr.xml -------------------------------------------------------------------------------- /gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/gdbstub.c -------------------------------------------------------------------------------- /hmp-commands.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hmp-commands.hx -------------------------------------------------------------------------------- /hmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hmp.c -------------------------------------------------------------------------------- /hmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hmp.h -------------------------------------------------------------------------------- /hw/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hw/Makefile.objs -------------------------------------------------------------------------------- /hw/core/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hw/core/Makefile.objs -------------------------------------------------------------------------------- /hw/core/empty_slot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hw/core/empty_slot.c -------------------------------------------------------------------------------- /hw/core/hotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hw/core/hotplug.c -------------------------------------------------------------------------------- /hw/core/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hw/core/irq.c -------------------------------------------------------------------------------- /hw/core/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hw/core/loader.c -------------------------------------------------------------------------------- /hw/core/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hw/core/machine.c -------------------------------------------------------------------------------- /hw/core/nmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hw/core/nmi.c -------------------------------------------------------------------------------- /hw/core/ptimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hw/core/ptimer.c -------------------------------------------------------------------------------- /hw/core/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hw/core/qdev.c -------------------------------------------------------------------------------- /hw/core/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hw/core/stream.c -------------------------------------------------------------------------------- /hw/core/sysbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hw/core/sysbus.c -------------------------------------------------------------------------------- /hw/core/uboot_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/hw/core/uboot_image.h -------------------------------------------------------------------------------- /include/block/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/block/aio.h -------------------------------------------------------------------------------- /include/block/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/block/block.h -------------------------------------------------------------------------------- /include/block/nbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/block/nbd.h -------------------------------------------------------------------------------- /include/block/qapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/block/qapi.h -------------------------------------------------------------------------------- /include/block/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/block/scsi.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/config.h -------------------------------------------------------------------------------- /include/disas/bfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/disas/bfd.h -------------------------------------------------------------------------------- /include/disas/disas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/disas/disas.h -------------------------------------------------------------------------------- /include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/elf.h -------------------------------------------------------------------------------- /include/exec/cputlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/exec/cputlb.h -------------------------------------------------------------------------------- /include/exec/hwaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/exec/hwaddr.h -------------------------------------------------------------------------------- /include/exec/ioport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/exec/ioport.h -------------------------------------------------------------------------------- /include/exec/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/exec/memory.h -------------------------------------------------------------------------------- /include/exec/poison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/exec/poison.h -------------------------------------------------------------------------------- /include/glib-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/glib-compat.h -------------------------------------------------------------------------------- /include/hw/acpi/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/acpi/tpm.h -------------------------------------------------------------------------------- /include/hw/arm/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/arm/arm.h -------------------------------------------------------------------------------- /include/hw/arm/imx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/arm/imx.h -------------------------------------------------------------------------------- /include/hw/arm/omap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/arm/omap.h -------------------------------------------------------------------------------- /include/hw/arm/pxa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/arm/pxa.h -------------------------------------------------------------------------------- /include/hw/boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/boards.h -------------------------------------------------------------------------------- /include/hw/bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/bt.h -------------------------------------------------------------------------------- /include/hw/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/compat.h -------------------------------------------------------------------------------- /include/hw/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/devices.h -------------------------------------------------------------------------------- /include/hw/elf_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/elf_ops.h -------------------------------------------------------------------------------- /include/hw/hotplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/hotplug.h -------------------------------------------------------------------------------- /include/hw/hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/hw.h -------------------------------------------------------------------------------- /include/hw/i2c/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/i2c/i2c.h -------------------------------------------------------------------------------- /include/hw/i386/pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/i386/pc.h -------------------------------------------------------------------------------- /include/hw/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/ide.h -------------------------------------------------------------------------------- /include/hw/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/irq.h -------------------------------------------------------------------------------- /include/hw/isa/apm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/isa/apm.h -------------------------------------------------------------------------------- /include/hw/isa/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/isa/isa.h -------------------------------------------------------------------------------- /include/hw/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/loader.h -------------------------------------------------------------------------------- /include/hw/m68k/mcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/m68k/mcf.h -------------------------------------------------------------------------------- /include/hw/nmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/nmi.h -------------------------------------------------------------------------------- /include/hw/pci/msi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/pci/msi.h -------------------------------------------------------------------------------- /include/hw/pci/msix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/pci/msix.h -------------------------------------------------------------------------------- /include/hw/pci/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/pci/pci.h -------------------------------------------------------------------------------- /include/hw/pci/pcie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/pci/pcie.h -------------------------------------------------------------------------------- /include/hw/pci/shpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/pci/shpc.h -------------------------------------------------------------------------------- /include/hw/pcmcia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/pcmcia.h -------------------------------------------------------------------------------- /include/hw/ppc/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/ppc/ppc.h -------------------------------------------------------------------------------- /include/hw/ppc/xics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/ppc/xics.h -------------------------------------------------------------------------------- /include/hw/ptimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/ptimer.h -------------------------------------------------------------------------------- /include/hw/qdev-dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/qdev-dma.h -------------------------------------------------------------------------------- /include/hw/qdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/qdev.h -------------------------------------------------------------------------------- /include/hw/scsi/esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/scsi/esp.h -------------------------------------------------------------------------------- /include/hw/sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/sd.h -------------------------------------------------------------------------------- /include/hw/sh4/sh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/sh4/sh.h -------------------------------------------------------------------------------- /include/hw/ssi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/ssi.h -------------------------------------------------------------------------------- /include/hw/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/stream.h -------------------------------------------------------------------------------- /include/hw/sysbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/sysbus.h -------------------------------------------------------------------------------- /include/hw/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/usb.h -------------------------------------------------------------------------------- /include/hw/xen/xen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/hw/xen/xen.h -------------------------------------------------------------------------------- /include/net/eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/net/eth.h -------------------------------------------------------------------------------- /include/net/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/net/net.h -------------------------------------------------------------------------------- /include/net/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/net/queue.h -------------------------------------------------------------------------------- /include/net/slirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/net/slirp.h -------------------------------------------------------------------------------- /include/net/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/net/tap.h -------------------------------------------------------------------------------- /include/qapi/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qapi/error.h -------------------------------------------------------------------------------- /include/qapi/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qapi/util.h -------------------------------------------------------------------------------- /include/qemu-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu-common.h -------------------------------------------------------------------------------- /include/qemu-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu-io.h -------------------------------------------------------------------------------- /include/qemu/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/acl.h -------------------------------------------------------------------------------- /include/qemu/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/aes.h -------------------------------------------------------------------------------- /include/qemu/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/atomic.h -------------------------------------------------------------------------------- /include/qemu/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/bitmap.h -------------------------------------------------------------------------------- /include/qemu/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/bitops.h -------------------------------------------------------------------------------- /include/qemu/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/bswap.h -------------------------------------------------------------------------------- /include/qemu/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/crc32c.h -------------------------------------------------------------------------------- /include/qemu/fifo8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/fifo8.h -------------------------------------------------------------------------------- /include/qemu/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/int128.h -------------------------------------------------------------------------------- /include/qemu/iov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/iov.h -------------------------------------------------------------------------------- /include/qemu/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/log.h -------------------------------------------------------------------------------- /include/qemu/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/module.h -------------------------------------------------------------------------------- /include/qemu/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/notify.h -------------------------------------------------------------------------------- /include/qemu/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/option.h -------------------------------------------------------------------------------- /include/qemu/osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/osdep.h -------------------------------------------------------------------------------- /include/qemu/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/queue.h -------------------------------------------------------------------------------- /include/qemu/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/range.h -------------------------------------------------------------------------------- /include/qemu/rcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/rcu.h -------------------------------------------------------------------------------- /include/qemu/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/thread.h -------------------------------------------------------------------------------- /include/qemu/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/timer.h -------------------------------------------------------------------------------- /include/qemu/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/tls.h -------------------------------------------------------------------------------- /include/qemu/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/uri.h -------------------------------------------------------------------------------- /include/qemu/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qemu/xattr.h -------------------------------------------------------------------------------- /include/qjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qjson.h -------------------------------------------------------------------------------- /include/qom/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qom/cpu.h -------------------------------------------------------------------------------- /include/qom/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/qom/object.h -------------------------------------------------------------------------------- /include/standard-headers/linux/if_ether.h: -------------------------------------------------------------------------------- 1 | #define ETH_ALEN 6 2 | -------------------------------------------------------------------------------- /include/sysemu/bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/sysemu/bt.h -------------------------------------------------------------------------------- /include/sysemu/char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/sysemu/char.h -------------------------------------------------------------------------------- /include/sysemu/cpus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/sysemu/cpus.h -------------------------------------------------------------------------------- /include/sysemu/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/sysemu/dma.h -------------------------------------------------------------------------------- /include/sysemu/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/sysemu/dump.h -------------------------------------------------------------------------------- /include/sysemu/kvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/sysemu/kvm.h -------------------------------------------------------------------------------- /include/sysemu/numa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/sysemu/numa.h -------------------------------------------------------------------------------- /include/sysemu/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/sysemu/rng.h -------------------------------------------------------------------------------- /include/sysemu/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/sysemu/tpm.h -------------------------------------------------------------------------------- /include/trace-tcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/trace-tcg.h -------------------------------------------------------------------------------- /include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/trace.h -------------------------------------------------------------------------------- /include/ui/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/ui/console.h -------------------------------------------------------------------------------- /include/ui/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/ui/input.h -------------------------------------------------------------------------------- /include/ui/sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/include/ui/sdl2.h -------------------------------------------------------------------------------- /iohandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/iohandler.c -------------------------------------------------------------------------------- /ioport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ioport.c -------------------------------------------------------------------------------- /iothread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/iothread.c -------------------------------------------------------------------------------- /kvm-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/kvm-all.c -------------------------------------------------------------------------------- /kvm-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/kvm-stub.c -------------------------------------------------------------------------------- /libcacard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/Makefile -------------------------------------------------------------------------------- /libcacard/cac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/cac.c -------------------------------------------------------------------------------- /libcacard/cac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/cac.h -------------------------------------------------------------------------------- /libcacard/card_7816.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/card_7816.c -------------------------------------------------------------------------------- /libcacard/card_7816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/card_7816.h -------------------------------------------------------------------------------- /libcacard/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/event.c -------------------------------------------------------------------------------- /libcacard/eventt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/eventt.h -------------------------------------------------------------------------------- /libcacard/link_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/link_test.c -------------------------------------------------------------------------------- /libcacard/vcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/vcard.c -------------------------------------------------------------------------------- /libcacard/vcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/vcard.h -------------------------------------------------------------------------------- /libcacard/vcardt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/vcardt.c -------------------------------------------------------------------------------- /libcacard/vcardt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/vcardt.h -------------------------------------------------------------------------------- /libcacard/vevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/vevent.h -------------------------------------------------------------------------------- /libcacard/vreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/vreader.c -------------------------------------------------------------------------------- /libcacard/vreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/vreader.h -------------------------------------------------------------------------------- /libcacard/vreadert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/vreadert.h -------------------------------------------------------------------------------- /libcacard/vscclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/libcacard/vscclient.c -------------------------------------------------------------------------------- /linux-headers/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/linux-headers/COPYING -------------------------------------------------------------------------------- /linux-headers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/linux-headers/README -------------------------------------------------------------------------------- /linux-headers/asm-arm/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /linux-headers/asm-arm64/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /linux-headers/linux/virtio_config.h: -------------------------------------------------------------------------------- 1 | #include "standard-headers/linux/virtio_config.h" 2 | -------------------------------------------------------------------------------- /linux-headers/linux/virtio_ring.h: -------------------------------------------------------------------------------- 1 | #include "standard-headers/linux/virtio_ring.h" 2 | -------------------------------------------------------------------------------- /linux-user/elfload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/linux-user/elfload.c -------------------------------------------------------------------------------- /linux-user/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/linux-user/flag.h -------------------------------------------------------------------------------- /linux-user/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/linux-user/main.c -------------------------------------------------------------------------------- /linux-user/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/linux-user/mmap.c -------------------------------------------------------------------------------- /linux-user/qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/linux-user/qemu.h -------------------------------------------------------------------------------- /linux-user/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/linux-user/signal.c -------------------------------------------------------------------------------- /linux-user/strace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/linux-user/strace.c -------------------------------------------------------------------------------- /linux-user/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/linux-user/syscall.c -------------------------------------------------------------------------------- /linux-user/uaccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/linux-user/uaccess.c -------------------------------------------------------------------------------- /main-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/main-loop.c -------------------------------------------------------------------------------- /memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/memory.c -------------------------------------------------------------------------------- /memory_mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/memory_mapping.c -------------------------------------------------------------------------------- /migration/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/migration/block.c -------------------------------------------------------------------------------- /migration/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/migration/exec.c -------------------------------------------------------------------------------- /migration/fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/migration/fd.c -------------------------------------------------------------------------------- /migration/migration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/migration/migration.c -------------------------------------------------------------------------------- /migration/qemu-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/migration/qemu-file.c -------------------------------------------------------------------------------- /migration/rdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/migration/rdma.c -------------------------------------------------------------------------------- /migration/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/migration/tcp.c -------------------------------------------------------------------------------- /migration/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/migration/unix.c -------------------------------------------------------------------------------- /migration/vmstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/migration/vmstate.c -------------------------------------------------------------------------------- /migration/xbzrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/migration/xbzrle.c -------------------------------------------------------------------------------- /module-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/module-common.c -------------------------------------------------------------------------------- /monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/monitor.c -------------------------------------------------------------------------------- /nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/nbd.c -------------------------------------------------------------------------------- /net/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/Makefile.objs -------------------------------------------------------------------------------- /net/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/checksum.c -------------------------------------------------------------------------------- /net/clients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/clients.h -------------------------------------------------------------------------------- /net/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/dump.c -------------------------------------------------------------------------------- /net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/eth.c -------------------------------------------------------------------------------- /net/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/hub.c -------------------------------------------------------------------------------- /net/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/hub.h -------------------------------------------------------------------------------- /net/l2tpv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/l2tpv3.c -------------------------------------------------------------------------------- /net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/net.c -------------------------------------------------------------------------------- /net/netmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/netmap.c -------------------------------------------------------------------------------- /net/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/queue.c -------------------------------------------------------------------------------- /net/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/slirp.c -------------------------------------------------------------------------------- /net/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/socket.c -------------------------------------------------------------------------------- /net/tap-aix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/tap-aix.c -------------------------------------------------------------------------------- /net/tap-bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/tap-bsd.c -------------------------------------------------------------------------------- /net/tap-haiku.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/tap-haiku.c -------------------------------------------------------------------------------- /net/tap-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/tap-linux.c -------------------------------------------------------------------------------- /net/tap-linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/tap-linux.h -------------------------------------------------------------------------------- /net/tap-solaris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/tap-solaris.c -------------------------------------------------------------------------------- /net/tap-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/tap-win32.c -------------------------------------------------------------------------------- /net/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/tap.c -------------------------------------------------------------------------------- /net/tap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/tap_int.h -------------------------------------------------------------------------------- /net/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/util.c -------------------------------------------------------------------------------- /net/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/util.h -------------------------------------------------------------------------------- /net/vde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/vde.c -------------------------------------------------------------------------------- /net/vhost-user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/net/vhost-user.c -------------------------------------------------------------------------------- /numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/numa.c -------------------------------------------------------------------------------- /os-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/os-posix.c -------------------------------------------------------------------------------- /os-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/os-win32.c -------------------------------------------------------------------------------- /page_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/page_cache.c -------------------------------------------------------------------------------- /pixman/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/.gitignore -------------------------------------------------------------------------------- /pixman/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pixman/CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/CODING_STYLE -------------------------------------------------------------------------------- /pixman/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/COPYING -------------------------------------------------------------------------------- /pixman/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pixman/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/INSTALL -------------------------------------------------------------------------------- /pixman/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/Makefile.am -------------------------------------------------------------------------------- /pixman/Makefile.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/Makefile.win32 -------------------------------------------------------------------------------- /pixman/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pixman/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/README -------------------------------------------------------------------------------- /pixman/RELEASING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/RELEASING -------------------------------------------------------------------------------- /pixman/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/autogen.sh -------------------------------------------------------------------------------- /pixman/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/configure.ac -------------------------------------------------------------------------------- /pixman/demos/parrot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/demos/parrot.c -------------------------------------------------------------------------------- /pixman/demos/scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/demos/scale.c -------------------------------------------------------------------------------- /pixman/demos/scale.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/demos/scale.ui -------------------------------------------------------------------------------- /pixman/pixman-1.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/pixman-1.pc.in -------------------------------------------------------------------------------- /pixman/test/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/test/utils.c -------------------------------------------------------------------------------- /pixman/test/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/pixman/test/utils.h -------------------------------------------------------------------------------- /po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/po/Makefile -------------------------------------------------------------------------------- /po/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/po/de_DE.po -------------------------------------------------------------------------------- /po/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/po/fr_FR.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/po/it.po -------------------------------------------------------------------------------- /po/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/po/messages.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /qapi-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qapi-schema.json -------------------------------------------------------------------------------- /qapi/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qapi/Makefile.objs -------------------------------------------------------------------------------- /qapi/block-core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qapi/block-core.json -------------------------------------------------------------------------------- /qapi/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qapi/block.json -------------------------------------------------------------------------------- /qapi/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qapi/common.json -------------------------------------------------------------------------------- /qapi/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qapi/event.json -------------------------------------------------------------------------------- /qapi/opts-visitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qapi/opts-visitor.c -------------------------------------------------------------------------------- /qapi/qapi-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qapi/qapi-util.c -------------------------------------------------------------------------------- /qapi/qmp-dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qapi/qmp-dispatch.c -------------------------------------------------------------------------------- /qapi/qmp-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qapi/qmp-event.c -------------------------------------------------------------------------------- /qapi/qmp-registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qapi/qmp-registry.c -------------------------------------------------------------------------------- /qapi/trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qapi/trace.json -------------------------------------------------------------------------------- /qdev-monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qdev-monitor.c -------------------------------------------------------------------------------- /qdict-test-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qdict-test-data.txt -------------------------------------------------------------------------------- /qemu-bridge-helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-bridge-helper.c -------------------------------------------------------------------------------- /qemu-char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-char.c -------------------------------------------------------------------------------- /qemu-coroutine-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-coroutine-io.c -------------------------------------------------------------------------------- /qemu-coroutine-lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-coroutine-lock.c -------------------------------------------------------------------------------- /qemu-coroutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-coroutine.c -------------------------------------------------------------------------------- /qemu-doc.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-doc.texi -------------------------------------------------------------------------------- /qemu-img-cmds.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-img-cmds.hx -------------------------------------------------------------------------------- /qemu-img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-img.c -------------------------------------------------------------------------------- /qemu-img.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-img.texi -------------------------------------------------------------------------------- /qemu-io-cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-io-cmds.c -------------------------------------------------------------------------------- /qemu-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-io.c -------------------------------------------------------------------------------- /qemu-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-log.c -------------------------------------------------------------------------------- /qemu-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-nbd.c -------------------------------------------------------------------------------- /qemu-nbd.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-nbd.texi -------------------------------------------------------------------------------- /qemu-options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-options.h -------------------------------------------------------------------------------- /qemu-options.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-options.hx -------------------------------------------------------------------------------- /qemu-seccomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-seccomp.c -------------------------------------------------------------------------------- /qemu-tech.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-tech.texi -------------------------------------------------------------------------------- /qemu-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu-timer.c -------------------------------------------------------------------------------- /qemu.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu.nsi -------------------------------------------------------------------------------- /qemu.sasl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qemu.sasl -------------------------------------------------------------------------------- /qga/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qga/Makefile.objs -------------------------------------------------------------------------------- /qga/channel-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qga/channel-posix.c -------------------------------------------------------------------------------- /qga/channel-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qga/channel-win32.c -------------------------------------------------------------------------------- /qga/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qga/channel.h -------------------------------------------------------------------------------- /qga/commands-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qga/commands-posix.c -------------------------------------------------------------------------------- /qga/commands-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qga/commands-win32.c -------------------------------------------------------------------------------- /qga/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qga/commands.c -------------------------------------------------------------------------------- /qga/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qga/main.c -------------------------------------------------------------------------------- /qga/qapi-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qga/qapi-schema.json -------------------------------------------------------------------------------- /qga/service-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qga/service-win32.c -------------------------------------------------------------------------------- /qga/service-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qga/service-win32.h -------------------------------------------------------------------------------- /qga/vss-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qga/vss-win32.c -------------------------------------------------------------------------------- /qga/vss-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qga/vss-win32.h -------------------------------------------------------------------------------- /qjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qjson.c -------------------------------------------------------------------------------- /qmp-commands.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qmp-commands.hx -------------------------------------------------------------------------------- /qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qmp.c -------------------------------------------------------------------------------- /qobject/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qobject/Makefile.objs -------------------------------------------------------------------------------- /qobject/json-lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qobject/json-lexer.c -------------------------------------------------------------------------------- /qobject/json-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qobject/json-parser.c -------------------------------------------------------------------------------- /qobject/qbool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qobject/qbool.c -------------------------------------------------------------------------------- /qobject/qdict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qobject/qdict.c -------------------------------------------------------------------------------- /qobject/qerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qobject/qerror.c -------------------------------------------------------------------------------- /qobject/qfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qobject/qfloat.c -------------------------------------------------------------------------------- /qobject/qint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qobject/qint.c -------------------------------------------------------------------------------- /qobject/qjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qobject/qjson.c -------------------------------------------------------------------------------- /qobject/qlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qobject/qlist.c -------------------------------------------------------------------------------- /qobject/qstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qobject/qstring.c -------------------------------------------------------------------------------- /qom/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qom/Makefile.objs -------------------------------------------------------------------------------- /qom/container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qom/container.c -------------------------------------------------------------------------------- /qom/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qom/cpu.c -------------------------------------------------------------------------------- /qom/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qom/object.c -------------------------------------------------------------------------------- /qom/qom-qobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qom/qom-qobject.c -------------------------------------------------------------------------------- /qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/qtest.c -------------------------------------------------------------------------------- /roms/seabios/.gitignore: -------------------------------------------------------------------------------- 1 | /config.mak 2 | -------------------------------------------------------------------------------- /roms/vgabios/.gitignore: -------------------------------------------------------------------------------- 1 | /config.mak 2 | -------------------------------------------------------------------------------- /rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/rules.mak -------------------------------------------------------------------------------- /savevm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/savevm.c -------------------------------------------------------------------------------- /scripts/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/checkpatch.pl -------------------------------------------------------------------------------- /scripts/create_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/create_config -------------------------------------------------------------------------------- /scripts/gtester-cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/gtester-cat -------------------------------------------------------------------------------- /scripts/hxtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/hxtool -------------------------------------------------------------------------------- /scripts/kvm/kvm_stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/kvm/kvm_stat -------------------------------------------------------------------------------- /scripts/kvm/vmxcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/kvm/vmxcap -------------------------------------------------------------------------------- /scripts/make-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/make-release -------------------------------------------------------------------------------- /scripts/qapi-event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/qapi-event.py -------------------------------------------------------------------------------- /scripts/qapi-types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/qapi-types.py -------------------------------------------------------------------------------- /scripts/qapi-visit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/qapi-visit.py -------------------------------------------------------------------------------- /scripts/qapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/qapi.py -------------------------------------------------------------------------------- /scripts/qemu-gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/qemu-gdb.py -------------------------------------------------------------------------------- /scripts/qmp/qmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/qmp/qmp -------------------------------------------------------------------------------- /scripts/qmp/qmp-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/qmp/qmp-shell -------------------------------------------------------------------------------- /scripts/qmp/qmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/qmp/qmp.py -------------------------------------------------------------------------------- /scripts/qmp/qom-fuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/qmp/qom-fuse -------------------------------------------------------------------------------- /scripts/qmp/qom-get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/qmp/qom-get -------------------------------------------------------------------------------- /scripts/qmp/qom-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/qmp/qom-list -------------------------------------------------------------------------------- /scripts/qmp/qom-set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/qmp/qom-set -------------------------------------------------------------------------------- /scripts/qmp/qom-tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/qmp/qom-tree -------------------------------------------------------------------------------- /scripts/qtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/qtest.py -------------------------------------------------------------------------------- /scripts/signrom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/signrom.py -------------------------------------------------------------------------------- /scripts/texi2pod.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/texi2pod.pl -------------------------------------------------------------------------------- /scripts/tracetool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/scripts/tracetool.py -------------------------------------------------------------------------------- /slirp/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/COPYRIGHT -------------------------------------------------------------------------------- /slirp/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/Makefile.objs -------------------------------------------------------------------------------- /slirp/arp_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/arp_table.c -------------------------------------------------------------------------------- /slirp/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/bootp.c -------------------------------------------------------------------------------- /slirp/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/bootp.h -------------------------------------------------------------------------------- /slirp/cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/cksum.c -------------------------------------------------------------------------------- /slirp/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/debug.h -------------------------------------------------------------------------------- /slirp/dnssearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/dnssearch.c -------------------------------------------------------------------------------- /slirp/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/if.c -------------------------------------------------------------------------------- /slirp/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/if.h -------------------------------------------------------------------------------- /slirp/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/ip.h -------------------------------------------------------------------------------- /slirp/ip_icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/ip_icmp.c -------------------------------------------------------------------------------- /slirp/ip_icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/ip_icmp.h -------------------------------------------------------------------------------- /slirp/ip_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/ip_input.c -------------------------------------------------------------------------------- /slirp/ip_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/ip_output.c -------------------------------------------------------------------------------- /slirp/libslirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/libslirp.h -------------------------------------------------------------------------------- /slirp/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/main.h -------------------------------------------------------------------------------- /slirp/mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/mbuf.c -------------------------------------------------------------------------------- /slirp/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/mbuf.h -------------------------------------------------------------------------------- /slirp/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/misc.c -------------------------------------------------------------------------------- /slirp/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/misc.h -------------------------------------------------------------------------------- /slirp/sbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/sbuf.c -------------------------------------------------------------------------------- /slirp/sbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/sbuf.h -------------------------------------------------------------------------------- /slirp/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/slirp.c -------------------------------------------------------------------------------- /slirp/slirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/slirp.h -------------------------------------------------------------------------------- /slirp/slirp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/slirp_config.h -------------------------------------------------------------------------------- /slirp/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/socket.c -------------------------------------------------------------------------------- /slirp/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/socket.h -------------------------------------------------------------------------------- /slirp/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/tcp.h -------------------------------------------------------------------------------- /slirp/tcp_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/tcp_input.c -------------------------------------------------------------------------------- /slirp/tcp_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/tcp_output.c -------------------------------------------------------------------------------- /slirp/tcp_subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/tcp_subr.c -------------------------------------------------------------------------------- /slirp/tcp_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/tcp_timer.c -------------------------------------------------------------------------------- /slirp/tcp_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/tcp_timer.h -------------------------------------------------------------------------------- /slirp/tcp_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/tcp_var.h -------------------------------------------------------------------------------- /slirp/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/tcpip.h -------------------------------------------------------------------------------- /slirp/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/tftp.c -------------------------------------------------------------------------------- /slirp/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/tftp.h -------------------------------------------------------------------------------- /slirp/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/udp.c -------------------------------------------------------------------------------- /slirp/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/slirp/udp.h -------------------------------------------------------------------------------- /softmmu_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/softmmu_template.h -------------------------------------------------------------------------------- /spice-qemu-char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/spice-qemu-char.c -------------------------------------------------------------------------------- /stubs/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/Makefile.objs -------------------------------------------------------------------------------- /stubs/chr-baum-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/chr-baum-init.c -------------------------------------------------------------------------------- /stubs/chr-msmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/chr-msmouse.c -------------------------------------------------------------------------------- /stubs/chr-testdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/chr-testdev.c -------------------------------------------------------------------------------- /stubs/clock-warp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/clock-warp.c -------------------------------------------------------------------------------- /stubs/cpu-get-clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/cpu-get-clock.c -------------------------------------------------------------------------------- /stubs/cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/cpus.c -------------------------------------------------------------------------------- /stubs/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/dump.c -------------------------------------------------------------------------------- /stubs/fd-register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/fd-register.c -------------------------------------------------------------------------------- /stubs/fdset-add-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/fdset-add-fd.c -------------------------------------------------------------------------------- /stubs/fdset-find-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/fdset-find-fd.c -------------------------------------------------------------------------------- /stubs/fdset-get-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/fdset-get-fd.c -------------------------------------------------------------------------------- /stubs/gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/gdbstub.c -------------------------------------------------------------------------------- /stubs/get-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/get-fd.c -------------------------------------------------------------------------------- /stubs/get-next-serial.c: -------------------------------------------------------------------------------- 1 | #include "qemu-common.h" 2 | 3 | CharDriverState *serial_hds[0]; 4 | -------------------------------------------------------------------------------- /stubs/get-vm-name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/get-vm-name.c -------------------------------------------------------------------------------- /stubs/iothread-lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/iothread-lock.c -------------------------------------------------------------------------------- /stubs/is-daemonized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/is-daemonized.c -------------------------------------------------------------------------------- /stubs/kvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/kvm.c -------------------------------------------------------------------------------- /stubs/migr-blocker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/migr-blocker.c -------------------------------------------------------------------------------- /stubs/mon-is-qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/mon-is-qmp.c -------------------------------------------------------------------------------- /stubs/mon-printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/mon-printf.c -------------------------------------------------------------------------------- /stubs/mon-set-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/mon-set-error.c -------------------------------------------------------------------------------- /stubs/monitor-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/monitor-init.c -------------------------------------------------------------------------------- /stubs/notify-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/notify-event.c -------------------------------------------------------------------------------- /stubs/qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/qtest.c -------------------------------------------------------------------------------- /stubs/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/reset.c -------------------------------------------------------------------------------- /stubs/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/slirp.c -------------------------------------------------------------------------------- /stubs/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/uuid.c -------------------------------------------------------------------------------- /stubs/vc-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/vc-init.c -------------------------------------------------------------------------------- /stubs/vm-stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/vm-stop.c -------------------------------------------------------------------------------- /stubs/vmstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/stubs/vmstate.c -------------------------------------------------------------------------------- /sysconfigs/target/target-x86_64.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target-i386/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/target-i386/TODO -------------------------------------------------------------------------------- /target-i386/cpu-qom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/target-i386/cpu-qom.h -------------------------------------------------------------------------------- /target-i386/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/target-i386/cpu.c -------------------------------------------------------------------------------- /target-i386/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/target-i386/cpu.h -------------------------------------------------------------------------------- /target-i386/gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/target-i386/gdbstub.c -------------------------------------------------------------------------------- /target-i386/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/target-i386/helper.c -------------------------------------------------------------------------------- /target-i386/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/target-i386/helper.h -------------------------------------------------------------------------------- /target-i386/kvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/target-i386/kvm.c -------------------------------------------------------------------------------- /target-i386/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/target-i386/machine.c -------------------------------------------------------------------------------- /target-i386/ops_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/target-i386/ops_sse.h -------------------------------------------------------------------------------- /target-i386/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/target-i386/svm.h -------------------------------------------------------------------------------- /tcg-runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg-runtime.c -------------------------------------------------------------------------------- /tcg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/LICENSE -------------------------------------------------------------------------------- /tcg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/README -------------------------------------------------------------------------------- /tcg/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/TODO -------------------------------------------------------------------------------- /tcg/arm/tcg-target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/arm/tcg-target.c -------------------------------------------------------------------------------- /tcg/arm/tcg-target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/arm/tcg-target.h -------------------------------------------------------------------------------- /tcg/i386/tcg-target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/i386/tcg-target.c -------------------------------------------------------------------------------- /tcg/i386/tcg-target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/i386/tcg-target.h -------------------------------------------------------------------------------- /tcg/ia64/tcg-target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/ia64/tcg-target.c -------------------------------------------------------------------------------- /tcg/ia64/tcg-target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/ia64/tcg-target.h -------------------------------------------------------------------------------- /tcg/mips/tcg-target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/mips/tcg-target.c -------------------------------------------------------------------------------- /tcg/mips/tcg-target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/mips/tcg-target.h -------------------------------------------------------------------------------- /tcg/optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/optimize.c -------------------------------------------------------------------------------- /tcg/ppc/tcg-target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/ppc/tcg-target.c -------------------------------------------------------------------------------- /tcg/ppc/tcg-target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/ppc/tcg-target.h -------------------------------------------------------------------------------- /tcg/s390/tcg-target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/s390/tcg-target.c -------------------------------------------------------------------------------- /tcg/s390/tcg-target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/s390/tcg-target.h -------------------------------------------------------------------------------- /tcg/tcg-be-ldst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/tcg-be-ldst.h -------------------------------------------------------------------------------- /tcg/tcg-be-null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/tcg-be-null.h -------------------------------------------------------------------------------- /tcg/tcg-op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/tcg-op.c -------------------------------------------------------------------------------- /tcg/tcg-op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/tcg-op.h -------------------------------------------------------------------------------- /tcg/tcg-opc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/tcg-opc.h -------------------------------------------------------------------------------- /tcg/tcg-runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/tcg-runtime.h -------------------------------------------------------------------------------- /tcg/tcg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/tcg.c -------------------------------------------------------------------------------- /tcg/tcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/tcg.h -------------------------------------------------------------------------------- /tcg/tci/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/tci/README -------------------------------------------------------------------------------- /tcg/tci/tcg-target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/tci/tcg-target.c -------------------------------------------------------------------------------- /tcg/tci/tcg-target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tcg/tci/tcg-target.h -------------------------------------------------------------------------------- /tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tci.c -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/ac97-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/ac97-test.c -------------------------------------------------------------------------------- /tests/acpi-test-data/pc/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /tests/acpi-test-data/q35/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /tests/ahci-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/ahci-test.c -------------------------------------------------------------------------------- /tests/check-block.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/check-block.sh -------------------------------------------------------------------------------- /tests/check-qdict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/check-qdict.c -------------------------------------------------------------------------------- /tests/check-qfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/check-qfloat.c -------------------------------------------------------------------------------- /tests/check-qint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/check-qint.c -------------------------------------------------------------------------------- /tests/check-qjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/check-qjson.c -------------------------------------------------------------------------------- /tests/check-qlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/check-qlist.c -------------------------------------------------------------------------------- /tests/check-qstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/check-qstring.c -------------------------------------------------------------------------------- /tests/e1000-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/e1000-test.c -------------------------------------------------------------------------------- /tests/eepro100-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/eepro100-test.c -------------------------------------------------------------------------------- /tests/es1370-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/es1370-test.c -------------------------------------------------------------------------------- /tests/fdc-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/fdc-test.c -------------------------------------------------------------------------------- /tests/fw_cfg-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/fw_cfg-test.c -------------------------------------------------------------------------------- /tests/hd-geo-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/hd-geo-test.c -------------------------------------------------------------------------------- /tests/i440fx-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/i440fx-test.c -------------------------------------------------------------------------------- /tests/ide-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/ide-test.c -------------------------------------------------------------------------------- /tests/image-fuzzer/qcow2/__init__.py: -------------------------------------------------------------------------------- 1 | from layout import create_image 2 | -------------------------------------------------------------------------------- /tests/ioh3420-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/ioh3420-test.c -------------------------------------------------------------------------------- /tests/libqos/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/ahci.c -------------------------------------------------------------------------------- /tests/libqos/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/ahci.h -------------------------------------------------------------------------------- /tests/libqos/fw_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/fw_cfg.c -------------------------------------------------------------------------------- /tests/libqos/fw_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/fw_cfg.h -------------------------------------------------------------------------------- /tests/libqos/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/i2c.c -------------------------------------------------------------------------------- /tests/libqos/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/i2c.h -------------------------------------------------------------------------------- /tests/libqos/libqos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/libqos.c -------------------------------------------------------------------------------- /tests/libqos/libqos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/libqos.h -------------------------------------------------------------------------------- /tests/libqos/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/malloc.c -------------------------------------------------------------------------------- /tests/libqos/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/malloc.h -------------------------------------------------------------------------------- /tests/libqos/pci-pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/pci-pc.c -------------------------------------------------------------------------------- /tests/libqos/pci-pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/pci-pc.h -------------------------------------------------------------------------------- /tests/libqos/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/pci.c -------------------------------------------------------------------------------- /tests/libqos/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/pci.h -------------------------------------------------------------------------------- /tests/libqos/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/usb.c -------------------------------------------------------------------------------- /tests/libqos/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/usb.h -------------------------------------------------------------------------------- /tests/libqos/virtio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/virtio.c -------------------------------------------------------------------------------- /tests/libqos/virtio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqos/virtio.h -------------------------------------------------------------------------------- /tests/libqtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqtest.c -------------------------------------------------------------------------------- /tests/libqtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/libqtest.h -------------------------------------------------------------------------------- /tests/m48t59-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/m48t59-test.c -------------------------------------------------------------------------------- /tests/ne2000-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/ne2000-test.c -------------------------------------------------------------------------------- /tests/nvme-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/nvme-test.c -------------------------------------------------------------------------------- /tests/pc-cpu-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/pc-cpu-test.c -------------------------------------------------------------------------------- /tests/pcnet-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/pcnet-test.c -------------------------------------------------------------------------------- /tests/pvpanic-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/pvpanic-test.c -------------------------------------------------------------------------------- /tests/qapi-schema/comments.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/comments.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /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/event-nest-struct.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-nest-struct.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-reverse-define.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-reverse-define.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /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.err: -------------------------------------------------------------------------------- 1 | tests/qapi-schema/funny-char.json:2:36: Stray ";" 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/funny-char.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/funny-char.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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': [ 'foo', 'bar' ] } 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/missing-colon.err: -------------------------------------------------------------------------------- 1 | tests/qapi-schema/missing-colon.json:1:10: Expected ":" 2 | -------------------------------------------------------------------------------- /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/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/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/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/union-invalid-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-invalid-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qom-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/qom-test.c -------------------------------------------------------------------------------- /tests/rcutorture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/rcutorture.c -------------------------------------------------------------------------------- /tests/rtc-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/rtc-test.c -------------------------------------------------------------------------------- /tests/rtl8139-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/rtl8139-test.c -------------------------------------------------------------------------------- /tests/tcg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/tcg/Makefile -------------------------------------------------------------------------------- /tests/tcg/hello-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/tcg/hello-arm.c -------------------------------------------------------------------------------- /tests/tcg/pi_10.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/tcg/pi_10.com -------------------------------------------------------------------------------- /tests/tcg/runcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/tcg/runcom.c -------------------------------------------------------------------------------- /tests/tcg/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/tcg/sha1.c -------------------------------------------------------------------------------- /tests/tcg/test-i386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/tcg/test-i386.c -------------------------------------------------------------------------------- /tests/tcg/test-i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/tcg/test-i386.h -------------------------------------------------------------------------------- /tests/tcg/test-mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/tcg/test-mmap.c -------------------------------------------------------------------------------- /tests/tcg/test_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/tcg/test_path.c -------------------------------------------------------------------------------- /tests/test-aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/test-aio.c -------------------------------------------------------------------------------- /tests/test-bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/test-bitops.c -------------------------------------------------------------------------------- /tests/test-cutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/test-cutils.c -------------------------------------------------------------------------------- /tests/test-hbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/test-hbitmap.c -------------------------------------------------------------------------------- /tests/test-int128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/test-int128.c -------------------------------------------------------------------------------- /tests/test-iov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/test-iov.c -------------------------------------------------------------------------------- /tests/test-mul64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/test-mul64.c -------------------------------------------------------------------------------- /tests/test-rcu-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/test-rcu-list.c -------------------------------------------------------------------------------- /tests/test-throttle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/test-throttle.c -------------------------------------------------------------------------------- /tests/test-vmstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/test-vmstate.c -------------------------------------------------------------------------------- /tests/test-xbzrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/test-xbzrle.c -------------------------------------------------------------------------------- /tests/tmp105-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/tmp105-test.c -------------------------------------------------------------------------------- /tests/tpci200-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/tpci200-test.c -------------------------------------------------------------------------------- /tests/vmxnet3-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tests/vmxnet3-test.c -------------------------------------------------------------------------------- /thread-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/thread-pool.c -------------------------------------------------------------------------------- /thunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/thunk.c -------------------------------------------------------------------------------- /tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/tpm.c -------------------------------------------------------------------------------- /trace-events: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/trace-events -------------------------------------------------------------------------------- /trace/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/trace/Makefile.objs -------------------------------------------------------------------------------- /trace/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/trace/control.c -------------------------------------------------------------------------------- /trace/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/trace/control.h -------------------------------------------------------------------------------- /trace/ftrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/trace/ftrace.c -------------------------------------------------------------------------------- /trace/ftrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/trace/ftrace.h -------------------------------------------------------------------------------- /trace/qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/trace/qmp.c -------------------------------------------------------------------------------- /trace/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/trace/simple.c -------------------------------------------------------------------------------- /trace/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/trace/simple.h -------------------------------------------------------------------------------- /tracer-config: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ./cgc_configure_tracer_opt 4 | -------------------------------------------------------------------------------- /translate-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/translate-all.c -------------------------------------------------------------------------------- /translate-all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/translate-all.h -------------------------------------------------------------------------------- /ui/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/Makefile.objs -------------------------------------------------------------------------------- /ui/cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/cocoa.m -------------------------------------------------------------------------------- /ui/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/console.c -------------------------------------------------------------------------------- /ui/curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/curses.c -------------------------------------------------------------------------------- /ui/curses_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/curses_keys.h -------------------------------------------------------------------------------- /ui/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/cursor.c -------------------------------------------------------------------------------- /ui/cursor_hidden.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/cursor_hidden.xpm -------------------------------------------------------------------------------- /ui/d3des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/d3des.c -------------------------------------------------------------------------------- /ui/d3des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/d3des.h -------------------------------------------------------------------------------- /ui/gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/gtk.c -------------------------------------------------------------------------------- /ui/input-keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/input-keymap.c -------------------------------------------------------------------------------- /ui/input-legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/input-legacy.c -------------------------------------------------------------------------------- /ui/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/input.c -------------------------------------------------------------------------------- /ui/keymaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/keymaps.c -------------------------------------------------------------------------------- /ui/keymaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/keymaps.h -------------------------------------------------------------------------------- /ui/qemu-pixman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/qemu-pixman.c -------------------------------------------------------------------------------- /ui/qemu-x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/qemu-x509.h -------------------------------------------------------------------------------- /ui/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/sdl.c -------------------------------------------------------------------------------- /ui/sdl2-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/sdl2-2d.c -------------------------------------------------------------------------------- /ui/sdl2-input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/sdl2-input.c -------------------------------------------------------------------------------- /ui/sdl2-keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/sdl2-keymap.h -------------------------------------------------------------------------------- /ui/sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/sdl2.c -------------------------------------------------------------------------------- /ui/sdl_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/sdl_keysym.h -------------------------------------------------------------------------------- /ui/sdl_zoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/sdl_zoom.c -------------------------------------------------------------------------------- /ui/sdl_zoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/sdl_zoom.h -------------------------------------------------------------------------------- /ui/spice-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/spice-core.c -------------------------------------------------------------------------------- /ui/spice-display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/spice-display.c -------------------------------------------------------------------------------- /ui/spice-input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/spice-input.c -------------------------------------------------------------------------------- /ui/vgafont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vgafont.h -------------------------------------------------------------------------------- /ui/vnc-auth-sasl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-auth-sasl.c -------------------------------------------------------------------------------- /ui/vnc-auth-sasl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-auth-sasl.h -------------------------------------------------------------------------------- /ui/vnc-enc-hextile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-enc-hextile.c -------------------------------------------------------------------------------- /ui/vnc-enc-tight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-enc-tight.c -------------------------------------------------------------------------------- /ui/vnc-enc-tight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-enc-tight.h -------------------------------------------------------------------------------- /ui/vnc-enc-zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-enc-zlib.c -------------------------------------------------------------------------------- /ui/vnc-enc-zrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-enc-zrle.c -------------------------------------------------------------------------------- /ui/vnc-enc-zrle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-enc-zrle.h -------------------------------------------------------------------------------- /ui/vnc-enc-zywrle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-enc-zywrle.h -------------------------------------------------------------------------------- /ui/vnc-jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-jobs.c -------------------------------------------------------------------------------- /ui/vnc-jobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-jobs.h -------------------------------------------------------------------------------- /ui/vnc-palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-palette.c -------------------------------------------------------------------------------- /ui/vnc-palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-palette.h -------------------------------------------------------------------------------- /ui/vnc-tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-tls.c -------------------------------------------------------------------------------- /ui/vnc-tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-tls.h -------------------------------------------------------------------------------- /ui/vnc-ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-ws.c -------------------------------------------------------------------------------- /ui/vnc-ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc-ws.h -------------------------------------------------------------------------------- /ui/vnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc.c -------------------------------------------------------------------------------- /ui/vnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc.h -------------------------------------------------------------------------------- /ui/vnc_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/vnc_keysym.h -------------------------------------------------------------------------------- /ui/x_keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/x_keymap.c -------------------------------------------------------------------------------- /ui/x_keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/ui/x_keymap.h -------------------------------------------------------------------------------- /user-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/user-exec.c -------------------------------------------------------------------------------- /util/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/Makefile.objs -------------------------------------------------------------------------------- /util/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/acl.c -------------------------------------------------------------------------------- /util/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/aes.c -------------------------------------------------------------------------------- /util/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/bitmap.c -------------------------------------------------------------------------------- /util/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/bitops.c -------------------------------------------------------------------------------- /util/compatfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/compatfd.c -------------------------------------------------------------------------------- /util/crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/crc32c.c -------------------------------------------------------------------------------- /util/cutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/cutils.c -------------------------------------------------------------------------------- /util/envlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/envlist.c -------------------------------------------------------------------------------- /util/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/error.c -------------------------------------------------------------------------------- /util/fifo8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/fifo8.c -------------------------------------------------------------------------------- /util/getauxval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/getauxval.c -------------------------------------------------------------------------------- /util/hbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/hbitmap.c -------------------------------------------------------------------------------- /util/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/hexdump.c -------------------------------------------------------------------------------- /util/host-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/host-utils.c -------------------------------------------------------------------------------- /util/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/id.c -------------------------------------------------------------------------------- /util/iov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/iov.c -------------------------------------------------------------------------------- /util/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/module.c -------------------------------------------------------------------------------- /util/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/notify.c -------------------------------------------------------------------------------- /util/osdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/osdep.c -------------------------------------------------------------------------------- /util/oslib-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/oslib-posix.c -------------------------------------------------------------------------------- /util/oslib-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/oslib-win32.c -------------------------------------------------------------------------------- /util/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/path.c -------------------------------------------------------------------------------- /util/qemu-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/qemu-config.c -------------------------------------------------------------------------------- /util/qemu-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/qemu-error.c -------------------------------------------------------------------------------- /util/qemu-openpty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/qemu-openpty.c -------------------------------------------------------------------------------- /util/qemu-option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/qemu-option.c -------------------------------------------------------------------------------- /util/qemu-progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/qemu-progress.c -------------------------------------------------------------------------------- /util/qemu-sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/qemu-sockets.c -------------------------------------------------------------------------------- /util/rcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/rcu.c -------------------------------------------------------------------------------- /util/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/readline.c -------------------------------------------------------------------------------- /util/rfifolock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/rfifolock.c -------------------------------------------------------------------------------- /util/throttle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/throttle.c -------------------------------------------------------------------------------- /util/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/unicode.c -------------------------------------------------------------------------------- /util/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/util/uri.c -------------------------------------------------------------------------------- /version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/version.rc -------------------------------------------------------------------------------- /vl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/vl.c -------------------------------------------------------------------------------- /xen-common-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/xen-common-stub.c -------------------------------------------------------------------------------- /xen-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/xen-common.c -------------------------------------------------------------------------------- /xen-hvm-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/xen-hvm-stub.c -------------------------------------------------------------------------------- /xen-hvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/xen-hvm.c -------------------------------------------------------------------------------- /xen-mapcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechaphish/qemu-cgc/HEAD/xen-mapcache.c --------------------------------------------------------------------------------