[compiler-rt] [compiler-rt] Implement address sanitizer on AIX (3/3) (PR #130028)
Hubert Tong via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 8 19:05:46 PST 2025
================
@@ -179,7 +179,13 @@ bool Symbolizer::FindModuleNameAndOffsetForAddress(uptr address,
if (!module)
return false;
*module_name = module->full_name();
+ // On AIX, the address for the data in the object is the same with the runtime one.
+ // So, we don't need to sub the base address.
+#if SANITIZER_AIX
+ *module_offset = address;
+#else
----------------
hubert-reinterpretcast wrote:
We know this is not true (even though it works this way sometimes).
https://github.com/llvm/llvm-project/pull/130028
More information about the llvm-commits
mailing list