[PR #107] [CLOSED] update qemu #197

Open
opened 2026-01-31 21:30:13 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/107
Author: @andreafioraldi
Created: 1/28/2021
Status: Closed

Base: masterHead: master


📝 Commits (10+)

📊 Changes

33 files changed (+4262 additions, -3 deletions)

View changed files

📝 README.rst (+6 -0)
📝 accel/tcg/cpu-exec.c (+934 -0)
📝 accel/tcg/tcg-runtime.c (+222 -0)
📝 accel/tcg/tcg-runtime.h (+12 -0)
📝 accel/tcg/translate-all.c (+137 -0)
📝 accel/tcg/translator.c (+7 -0)
📝 configure (+5 -0)
📝 linux-user/aarch64/cpu_loop.c (+6 -0)
📝 linux-user/arm/cpu_loop.c (+6 -0)
📝 linux-user/elfload.c (+36 -0)
📝 linux-user/i386/cpu_loop.c (+11 -0)
📝 linux-user/mmap.c (+66 -0)
📝 linux-user/syscall.c (+12 -1)
📝 meson (+1 -1)
qemuafl/api.h (+140 -0)
qemuafl/common.h (+177 -0)
qemuafl/cpu-translate.h (+175 -0)
qemuafl/imported/cmplog.h (+83 -0)
qemuafl/imported/config.h (+428 -0)
qemuafl/imported/snapshot-inl.h (+115 -0)

...and 13 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/qemu/qemu/pull/107 **Author:** [@andreafioraldi](https://github.com/andreafioraldi) **Created:** 1/28/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`e19c60e`](https://github.com/qemu/qemu/commit/e19c60e2f6d8069f26b59d88f7934cd6e950db3f) first commit to port basic instrumentation - [`e7b5bba`](https://github.com/qemu/qemu/commit/e7b5bba6d2912192f9b10015e39d8f27a03ba3f9) basic fork mode working - [`ef9e47f`](https://github.com/qemu/qemu/commit/ef9e47ffc670640042e3688c736446043ac1d0bd) Merge remote-tracking branch 'upstream/master' - [`dceabef`](https://github.com/qemu/qemu/commit/dceabef00b2b665da89785c32fef089f85266c74) readme - [`24d4f5c`](https://github.com/qemu/qemu/commit/24d4f5c49ab9ccdb23dc95bc915307bc49368519) x86 cmplog and compcov - [`4a1382b`](https://github.com/qemu/qemu/commit/4a1382b716fd45663f1495242e54d6e372ba4afd) regs api and persistent for x86 - [`bec7edf`](https://github.com/qemu/qemu/commit/bec7edf41d2d0e8006637a739881abcea1d1305c) trivial memory snapshot - [`86cb0c2`](https://github.com/qemu/qemu/commit/86cb0c26517937f1190861475b3a930ff9841afe) unstable persistent exits - [`7ca5e64`](https://github.com/qemu/qemu/commit/7ca5e642ce3c01551e1456235630ced110f9a75b) exit persistent for x86 - [`67406ac`](https://github.com/qemu/qemu/commit/67406aca615dc8ea224db7639051ec4ad21511b0) conflicts ### 📊 Changes **33 files changed** (+4262 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `README.rst` (+6 -0) 📝 `accel/tcg/cpu-exec.c` (+934 -0) 📝 `accel/tcg/tcg-runtime.c` (+222 -0) 📝 `accel/tcg/tcg-runtime.h` (+12 -0) 📝 `accel/tcg/translate-all.c` (+137 -0) 📝 `accel/tcg/translator.c` (+7 -0) 📝 `configure` (+5 -0) 📝 `linux-user/aarch64/cpu_loop.c` (+6 -0) 📝 `linux-user/arm/cpu_loop.c` (+6 -0) 📝 `linux-user/elfload.c` (+36 -0) 📝 `linux-user/i386/cpu_loop.c` (+11 -0) 📝 `linux-user/mmap.c` (+66 -0) 📝 `linux-user/syscall.c` (+12 -1) 📝 `meson` (+1 -1) ➕ `qemuafl/api.h` (+140 -0) ➕ `qemuafl/common.h` (+177 -0) ➕ `qemuafl/cpu-translate.h` (+175 -0) ➕ `qemuafl/imported/cmplog.h` (+83 -0) ➕ `qemuafl/imported/config.h` (+428 -0) ➕ `qemuafl/imported/snapshot-inl.h` (+115 -0) _...and 13 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-31 21:30:13 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#197