[PATCH] D151713: [ASAN] Support asan for masked.expandload/compressstore.

Craig Topper via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 10 20:06:03 PDT 2023


craig.topper accepted this revision.
craig.topper added a comment.
This revision is now accepted and ready to land.

LGTM



================
Comment at: llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp:1369
+      Value *Mask = CI->getOperand(1 + OpOffset);
+      // Use the popcount of Mask as the effetive vector length.
+      Type *ExtTy = VectorType::get(IntptrTy, cast<VectorType>(Ty));
----------------
effective*


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D151713/new/

https://reviews.llvm.org/D151713



More information about the llvm-commits mailing list