[llvm] [LV] Fix runtime-VF logic when generating RT-checks (PR #130118)
David Sherwood via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 7 01:20:37 PST 2025
================
@@ -1924,21 +1924,17 @@ class GeneratedRTChecks {
"vector.memcheck");
auto DiffChecks = RtPtrChecking.getDiffChecks();
- if (DiffChecks) {
- Value *RuntimeVF = nullptr;
- MemRuntimeCheckCond = addDiffRuntimeChecks(
- MemCheckBlock->getTerminator(), *DiffChecks, MemCheckExp,
- [VF, &RuntimeVF](IRBuilderBase &B, unsigned Bits) {
- if (!RuntimeVF)
- RuntimeVF = getRuntimeVF(B, B.getIntNTy(Bits), VF);
- return RuntimeVF;
- },
- IC);
- } else {
- MemRuntimeCheckCond = addRuntimeChecks(
- MemCheckBlock->getTerminator(), L, RtPtrChecking.getChecks(),
- MemCheckExp, VectorizerParams::HoistRuntimeChecks);
- }
+ MemRuntimeCheckCond =
+ DiffChecks
+ ? addDiffRuntimeChecks(
+ MemCheckBlock->getTerminator(), *DiffChecks, MemCheckExp,
+ [VF](IRBuilderBase &B, unsigned Bits) {
----------------
david-arm wrote:
Perhaps now I think about this you explicitly do want to cache the runtime VF because the code in `addDiffRuntimeChecks` expects that, however there are no comments to that affect. And also, we should be caching a value for every value of `Bits` in that case.
https://github.com/llvm/llvm-project/pull/130118
More information about the llvm-commits
mailing list