[PR #199] [CLOSED] Afl4 #235

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

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/199
Author: @vanhauser-thc
Created: 11/6/2021
Status: Closed

Base: masterHead: afl4


📝 Commits (10+)

📊 Changes

46 files changed (+14587 additions, -40 deletions)

View changed files

📝 README.rst (+6 -0)
📝 accel/tcg/cpu-exec.c (+956 -0)
📝 accel/tcg/tcg-runtime.c (+813 -0)
📝 accel/tcg/tcg-runtime.h (+24 -0)
📝 accel/tcg/translate-all.c (+154 -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 (+40 -4)
📝 linux-user/i386/cpu_loop.c (+11 -0)
📝 linux-user/main.c (+120 -0)
📝 linux-user/mips/cpu_loop.c (+3 -0)
📝 linux-user/mmap.c (+67 -1)
📝 linux-user/signal.c (+43 -2)
📝 linux-user/syscall.c (+65 -4)
📝 meson (+1 -1)
qemuafl/api.h (+208 -0)
qemuafl/asan-giovese-inl.h (+1490 -0)
qemuafl/asan-giovese.h (+156 -0)

...and 26 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/199 **Author:** [@vanhauser-thc](https://github.com/vanhauser-thc) **Created:** 11/6/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `afl4` --- ### 📝 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 **46 files changed** (+14587 additions, -40 deletions) <details> <summary>View changed files</summary> 📝 `README.rst` (+6 -0) 📝 `accel/tcg/cpu-exec.c` (+956 -0) 📝 `accel/tcg/tcg-runtime.c` (+813 -0) 📝 `accel/tcg/tcg-runtime.h` (+24 -0) 📝 `accel/tcg/translate-all.c` (+154 -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` (+40 -4) 📝 `linux-user/i386/cpu_loop.c` (+11 -0) 📝 `linux-user/main.c` (+120 -0) 📝 `linux-user/mips/cpu_loop.c` (+3 -0) 📝 `linux-user/mmap.c` (+67 -1) 📝 `linux-user/signal.c` (+43 -2) 📝 `linux-user/syscall.c` (+65 -4) 📝 `meson` (+1 -1) ➕ `qemuafl/api.h` (+208 -0) ➕ `qemuafl/asan-giovese-inl.h` (+1490 -0) ➕ `qemuafl/asan-giovese.h` (+156 -0) _...and 26 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:22 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#235