[llvm] c8bd3e7 - [SCEV] Remove unnecessary pointer handling in BuildConstantFromSCEV (NFCI)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 1 07:30:16 PDT 2022
Author: Nikita Popov
Date: 2022-07-01T16:28:56+02:00
New Revision: c8bd3e7825a97a8459d579878d80b7c62504d48f
URL: https://github.com/llvm/llvm-project/commit/c8bd3e7825a97a8459d579878d80b7c62504d48f
DIFF: https://github.com/llvm/llvm-project/commit/c8bd3e7825a97a8459d579878d80b7c62504d48f.diff
LOG: [SCEV] Remove unnecessary pointer handling in BuildConstantFromSCEV (NFCI)
Nowadays, we do not allow pointers in multiplies, and adds can only
have a single pointer, which is also guaranteed to be last by
complexity sorting. As such, we can somewhat simplify the treatment
of pointer types.
Added:
Modified:
llvm/lib/Analysis/ScalarEvolution.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp
index 72077eb6bae55..207f4df79e451 100644
--- a/llvm/lib/Analysis/ScalarEvolution.cpp
+++ b/llvm/lib/Analysis/ScalarEvolution.cpp
@@ -9480,58 +9480,42 @@ static Constant *BuildConstantFromSCEV(const SCEV *V) {
}
case scAddExpr: {
const SCEVAddExpr *SA = cast<SCEVAddExpr>(V);
- if (Constant *C = BuildConstantFromSCEV(SA->getOperand(0))) {
- if (PointerType *PTy = dyn_cast<PointerType>(C->getType())) {
- unsigned AS = PTy->getAddressSpace();
- Type *DestPtrTy = Type::getInt8PtrTy(C->getContext(), AS);
- C = ConstantExpr::getBitCast(C, DestPtrTy);
+ Constant *C = nullptr;
+ for (const SCEV *Op : SA->operands()) {
+ Constant *OpC = BuildConstantFromSCEV(Op);
+ if (!OpC)
+ return nullptr;
+ if (!C) {
+ C = OpC;
+ continue;
}
- for (unsigned i = 1, e = SA->getNumOperands(); i != e; ++i) {
- Constant *C2 = BuildConstantFromSCEV(SA->getOperand(i));
- if (!C2)
- return nullptr;
-
- // First pointer!
- if (!C->getType()->isPointerTy() && C2->getType()->isPointerTy()) {
- unsigned AS = C2->getType()->getPointerAddressSpace();
- std::swap(C, C2);
- Type *DestPtrTy = Type::getInt8PtrTy(C->getContext(), AS);
- // The offsets have been converted to bytes. We can add bytes to an
- // i8* by GEP with the byte count in the first index.
- C = ConstantExpr::getBitCast(C, DestPtrTy);
- }
-
- // Don't bother trying to sum two pointers. We probably can't
- // statically compute a load that results from it anyway.
- if (C2->getType()->isPointerTy())
- return nullptr;
-
- if (C->getType()->isPointerTy()) {
- C = ConstantExpr::getGetElementPtr(Type::getInt8Ty(C->getContext()),
- C, C2);
- } else {
- C = ConstantExpr::getAdd(C, C2);
- }
+ assert(!C->getType()->isPointerTy() &&
+ "Can only have one pointer, and it must be last");
+ if (auto *PT = dyn_cast<PointerType>(OpC->getType())) {
+ // The offsets have been converted to bytes. We can add bytes to an
+ // i8* by GEP with the byte count in the first index.
+ Type *DestPtrTy =
+ Type::getInt8PtrTy(PT->getContext(), PT->getAddressSpace());
+ OpC = ConstantExpr::getBitCast(OpC, DestPtrTy);
+ C = ConstantExpr::getGetElementPtr(Type::getInt8Ty(C->getContext()),
+ OpC, C);
+ } else {
+ C = ConstantExpr::getAdd(C, OpC);
}
- return C;
}
- return nullptr;
+ return C;
}
case scMulExpr: {
const SCEVMulExpr *SM = cast<SCEVMulExpr>(V);
- if (Constant *C = BuildConstantFromSCEV(SM->getOperand(0))) {
- // Don't bother with pointers at all.
- if (C->getType()->isPointerTy())
+ Constant *C = nullptr;
+ for (const SCEV *Op : SM->operands()) {
+ assert(!Op->getType()->isPointerTy() && "Can't multiply pointers");
+ Constant *OpC = BuildConstantFromSCEV(Op);
+ if (!OpC)
return nullptr;
- for (unsigned i = 1, e = SM->getNumOperands(); i != e; ++i) {
- Constant *C2 = BuildConstantFromSCEV(SM->getOperand(i));
- if (!C2 || C2->getType()->isPointerTy())
- return nullptr;
- C = ConstantExpr::getMul(C, C2);
- }
- return C;
+ C = C ? ConstantExpr::getMul(C, OpC) : OpC;
}
- return nullptr;
+ return C;
}
case scUDivExpr: {
const SCEVUDivExpr *SU = cast<SCEVUDivExpr>(V);
More information about the llvm-commits
mailing list