[llvm] [AddressSanitizer] Remove memory effects from functions (PR #130495)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 08:16:41 PDT 2025
================
@@ -58,6 +58,13 @@ void getAddressSanitizerParams(const Triple &TargetTriple, int LongSize,
bool IsKasan, uint64_t *ShadowBase,
int *MappingScale, bool *OrShadowOffset);
+/// Remove memory attributes that are incompatible with the instrumentation
+/// added by AddressSanitizer and HWSanitizer. See more details in the
+/// implementation.
+/// \p ReadsArgMem - whether to remove memory attributes from function
----------------
fhahn wrote:
The comment doesn't really match the argument name, should this either by RemoveWriteOnly to match the description or the description updated, e.g. something like `indicates if the function's arguments may be read by instrumentation and require removing `writeonly` attributes
https://github.com/llvm/llvm-project/pull/130495
More information about the llvm-commits
mailing list