[PR #288] [CLOSED] AFL_EXITPOINT #391

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

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/288
Author: @vanhauser-thc
Created: 6/18/2025
Status: Closed

Base: masterHead: exit


📝 Commits (10+)

📊 Changes

54 files changed (+9803 additions, -86 deletions)

View changed files

📝 README.rst (+6 -0)
📝 accel/tcg/cpu-exec.c (+986 -0)
📝 accel/tcg/tcg-runtime.c (+815 -0)
📝 accel/tcg/tcg-runtime.h (+25 -0)
📝 accel/tcg/translate-all.c (+189 -0)
📝 accel/tcg/translator.c (+30 -0)
📝 configure (+8 -1)
📝 contrib/plugins/Makefile (+1 -0)
contrib/plugins/drcov.c (+349 -0)
📝 gdbstub.c (+65 -42)
📝 linux-user/aarch64/cpu_loop.c (+6 -0)
📝 linux-user/arm/cpu_loop.c (+6 -0)
📝 linux-user/elfload.c (+54 -4)
📝 linux-user/i386/cpu_loop.c (+11 -0)
📝 linux-user/i386/target_elf.h (+1 -1)
📝 linux-user/main.c (+120 -0)
📝 linux-user/mips/cpu_loop.c (+15 -0)
📝 linux-user/mmap.c (+67 -1)
📝 linux-user/signal.c (+43 -2)
📝 linux-user/syscall.c (+85 -4)

...and 34 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/288 **Author:** [@vanhauser-thc](https://github.com/vanhauser-thc) **Created:** 6/18/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `exit` --- ### 📝 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 **54 files changed** (+9803 additions, -86 deletions) <details> <summary>View changed files</summary> 📝 `README.rst` (+6 -0) 📝 `accel/tcg/cpu-exec.c` (+986 -0) 📝 `accel/tcg/tcg-runtime.c` (+815 -0) 📝 `accel/tcg/tcg-runtime.h` (+25 -0) 📝 `accel/tcg/translate-all.c` (+189 -0) 📝 `accel/tcg/translator.c` (+30 -0) 📝 `configure` (+8 -1) 📝 `contrib/plugins/Makefile` (+1 -0) ➕ `contrib/plugins/drcov.c` (+349 -0) 📝 `gdbstub.c` (+65 -42) 📝 `linux-user/aarch64/cpu_loop.c` (+6 -0) 📝 `linux-user/arm/cpu_loop.c` (+6 -0) 📝 `linux-user/elfload.c` (+54 -4) 📝 `linux-user/i386/cpu_loop.c` (+11 -0) 📝 `linux-user/i386/target_elf.h` (+1 -1) 📝 `linux-user/main.c` (+120 -0) 📝 `linux-user/mips/cpu_loop.c` (+15 -0) 📝 `linux-user/mmap.c` (+67 -1) 📝 `linux-user/signal.c` (+43 -2) 📝 `linux-user/syscall.c` (+85 -4) _...and 34 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:31:04 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#391