[compiler-rt] [asan] Add experimental 'track_poison' flag (PR #133175)
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 28 17:24:51 PDT 2025
================
@@ -0,0 +1,47 @@
+// Check that __asan_poison_memory_region and ASAN_OPTIONS=track_poison work.
+//
+// RUN: %clangxx_asan -O0 %s -o %t && env ASAN_OPTIONS=track_poison=1000 not %run %t 2>&1 | FileCheck %s --check-prefixes=CHECK-AC,CHECK-A
+// RUN: %clangxx_asan -O0 %s -o %t && env ASAN_OPTIONS=track_poison=1000 %run %t 20 2>&1 | FileCheck %s --check-prefixes=CHECK-B
+// RUN: %clangxx_asan -O0 %s -o %t && env ASAN_OPTIONS=track_poison=1000 not %run %t 30 30 2>&1 | FileCheck %s --check-prefixes=CHECK-AC,CHECK-C
+
+#include <stdio.h>
+#include <stdlib.h>
+
+extern "C" void __asan_poison_memory_region(void *, size_t);
+extern "C" void __asan_unpoison_memory_region(void *, size_t);
+
+void novichok(char *x) {
----------------
vitalybuka wrote:
While I appreciate the reference :)
Please be more serious, some one in 10x year may look on this and be confused trying to find deeper meaning in that.
hm. probably AI will not be confused so easely
https://github.com/llvm/llvm-project/pull/133175
More information about the llvm-commits
mailing list