[llvm] 635b875 - [ARM][MVE] Tail-predication: use unsigned SCEV ranges for tripcount
Sjoerd Meijer via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 15 05:23:30 PDT 2020
Author: Sjoerd Meijer
Date: 2020-09-15T13:23:02+01:00
New Revision: 635b87511ec3d6d2fa8f65a3ed1876f01367584e
URL: https://github.com/llvm/llvm-project/commit/635b87511ec3d6d2fa8f65a3ed1876f01367584e
DIFF: https://github.com/llvm/llvm-project/commit/635b87511ec3d6d2fa8f65a3ed1876f01367584e.diff
LOG: [ARM][MVE] Tail-predication: use unsigned SCEV ranges for tripcount
Loop tripcount expressions have a positive range, so use unsigned SCEV ranges
for them.
Differential Revision: https://reviews.llvm.org/D87608
Added:
Modified:
llvm/lib/Target/ARM/MVETailPredication.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/ARM/MVETailPredication.cpp b/llvm/lib/Target/ARM/MVETailPredication.cpp
index b2c15be75cd4..987df73970e5 100644
--- a/llvm/lib/Target/ARM/MVETailPredication.cpp
+++ b/llvm/lib/Target/ARM/MVETailPredication.cpp
@@ -457,13 +457,10 @@ bool MVETailPredication::IsSafeActiveMask(IntrinsicInst *ActiveLaneMask,
// upperbound(TC) <= UINT_MAX - VectorWidth
//
unsigned SizeInBits = TripCount->getType()->getScalarSizeInBits();
- auto Diff = APInt(SizeInBits, ~0) - APInt(SizeInBits, VectorWidth);
- uint64_t MaxMinusVW = Diff.getZExtValue();
- // FIXME: since ranges can be negative we work with signed ranges here, but
- // we shouldn't extract the zext'ed values for them.
- uint64_t UpperboundTC = SE->getSignedRange(TC).getUpper().getZExtValue();
+ auto MaxMinusVW = APInt(SizeInBits, ~0) - APInt(SizeInBits, VectorWidth);
+ APInt UpperboundTC = SE->getUnsignedRangeMax(TC);
- if (UpperboundTC > MaxMinusVW && !ForceTailPredication) {
+ if (UpperboundTC.ugt(MaxMinusVW) && !ForceTailPredication) {
LLVM_DEBUG(dbgs() << "ARM TP: Overflow possible in tripcount rounding:\n";
dbgs() << "upperbound(TC) <= UINT_MAX - VectorWidth\n";
dbgs() << UpperboundTC << " <= " << MaxMinusVW << " == false\n";);
@@ -501,8 +498,8 @@ bool MVETailPredication::IsSafeActiveMask(IntrinsicInst *ActiveLaneMask,
auto *Ceil = SE->getUDivExpr(ECPlusVWMinus1,
SE->getSCEV(ConstantInt::get(TripCount->getType(), VectorWidth)));
- ConstantRange RangeCeil = SE->getSignedRange(Ceil) ;
- ConstantRange RangeTC = SE->getSignedRange(TC) ;
+ ConstantRange RangeCeil = SE->getUnsignedRange(Ceil) ;
+ ConstantRange RangeTC = SE->getUnsignedRange(TC) ;
if (!RangeTC.isSingleElement()) {
auto ZeroRange =
ConstantRange(APInt(TripCount->getType()->getScalarSizeInBits(), 0));
More information about the llvm-commits
mailing list