[PATCH] D145175: [ASAN] Support memory checks on scalable vector typed loads and stores
Philip Reames via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 2 12:42:29 PST 2023
reames added inline comments.
================
Comment at: llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp:1425
+ if (!TypeStoreSize.isScalable() &&
+ (TypeStoreSize == 8 || TypeStoreSize == 16 || TypeStoreSize == 32 ||
+ TypeStoreSize == 64 || TypeStoreSize == 128) &&
----------------
craig.topper wrote:
> Should we call TypeStoreSize.getFixedValue() while we're here instead of using implicit conversion to unsigned?
Honestly, it should probably be a switch inside a condition. Mind if I do that as a separate post commit? I'd like to keep the change isolated here.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D145175/new/
https://reviews.llvm.org/D145175
More information about the llvm-commits
mailing list