[llvm] [llvm] Implement address sanitizer on AIX (2/3) (PR #129926)
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 5 18:13:18 PST 2025
================
@@ -1326,7 +1340,11 @@ static bool isUnsupportedAMDGPUAddrspace(Value *Addr) {
Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
// Shadow >> scale
- Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
+ if (TargetTriple.isOSAIX() && TargetTriple.getArch() == Triple::ppc64)
+ Shadow = IRB.CreateLShr(IRB.CreateShl(Shadow, Mapping.HighBits),
----------------
vitalybuka wrote:
Also, does this mean that 0x090100000f000000 will have same shadow as 0x000100000f000000?
https://github.com/llvm/llvm-project/pull/129926
More information about the llvm-commits
mailing list