[llvm] [AddressSanitizer] Remove memory effects from functions (PR #130495)

Guy David via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 14 04:06:42 PDT 2025


================
@@ -612,6 +612,48 @@ void getAddressSanitizerParams(const Triple &TargetTriple, int LongSize,
   *OrShadowOffset = Mapping.OrShadowOffset;
 }
 
+void removeASanIncompatibleFnAttributes(Function &F, bool ReadsArgMem) {
+  // Remove memory attributes that are invalid with ASan and HWSan.
+  // ASan checks read from shadow, which invalidates memory(argmem: *)
+  // Short granule checks on function arguments read from the argument memory
+  // (last byte of the granule), which invalidates writeonly.
----------------
guy-david wrote:

Better described the parameter in the common header and explained the implementation detail in `HWAddressSanitizer.cpp` because its specific to that sanitizer.

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


More information about the llvm-commits mailing list