[compiler-rt] [asan] Add experimental 'track_poison' flag (PR #133175)

Thurston Dang via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 26 16:00:43 PDT 2025


================
@@ -119,7 +181,7 @@ void __asan_poison_memory_region(void const volatile *addr, uptr size) {
       if (beg.offset > 0) {
         *beg.chunk = Min(value, beg.offset);
       } else {
-        *beg.chunk = kAsanUserPoisonedMemoryMagic;
+        *beg.chunk = poison_magic;
----------------
thurstond wrote:

Multiple poison values let us shard into different ring buffers. Having multiple ring buffers:

- reduces the likelihood of lost records (race conditions) when pushing onto the ring buffers
- improves the lookup speed when searching for the stack, because we can look up in one of the smaller ring buffers instead of one giant ring buffer

https://github.com/llvm/llvm-project/pull/133175


More information about the llvm-commits mailing list