[PATCH] D155177: [FuncSpec][NFC] Sink cast into function.
Alexandros Lamprineas via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 13 04:20:00 PDT 2023
labrinea created this revision.
labrinea added a reviewer: ChuanqiXu.
Herald added subscribers: ormris, hiraditya.
Herald added a project: All.
labrinea requested review of this revision.
Herald added a project: LLVM.
Before looking up a value in the map of known constants we attempt
to dynamically cast it. The code looks cleaner if we move the cast
inside findConstantFor(), where the look up happens.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D155177
Files:
llvm/lib/Transforms/IPO/FunctionSpecialization.cpp
Index: llvm/lib/Transforms/IPO/FunctionSpecialization.cpp
===================================================================
--- llvm/lib/Transforms/IPO/FunctionSpecialization.cpp
+++ llvm/lib/Transforms/IPO/FunctionSpecialization.cpp
@@ -145,6 +145,8 @@
}
static Constant *findConstantFor(Value *V, ConstMap &KnownConstants) {
+ if (auto *C = dyn_cast<Constant>(V))
+ return C;
if (auto It = KnownConstants.find(V); It != KnownConstants.end())
return It->second;
return nullptr;
@@ -240,9 +242,7 @@
for (unsigned Idx = 0, E = I.getNumOperands() - 1; Idx != E; ++Idx) {
Value *V = I.getOperand(Idx);
- auto *C = dyn_cast<Constant>(V);
- if (!C)
- C = findConstantFor(V, KnownConstants);
+ Constant *C = findConstantFor(V, KnownConstants);
if (!C)
return nullptr;
Operands.push_back(C);
@@ -264,9 +264,7 @@
for (unsigned Idx = 0, E = I.getNumOperands(); Idx != E; ++Idx) {
Value *V = I.getOperand(Idx);
- auto *C = dyn_cast<Constant>(V);
- if (!C)
- C = findConstantFor(V, KnownConstants);
+ Constant *C = findConstantFor(V, KnownConstants);
if (!C)
return nullptr;
Operands.push_back(C);
@@ -282,9 +280,7 @@
Value *V = LastVisited->second->isZeroValue() ? I.getFalseValue()
: I.getTrueValue();
- auto *C = dyn_cast<Constant>(V);
- if (!C)
- C = findConstantFor(V, KnownConstants);
+ Constant *C = findConstantFor(V, KnownConstants);
return C;
}
@@ -296,10 +292,7 @@
Constant *InstCostVisitor::visitCmpInst(CmpInst &I) {
bool Swap = I.getOperand(1) == LastVisited->first;
Value *V = Swap ? I.getOperand(0) : I.getOperand(1);
- auto *Other = dyn_cast<Constant>(V);
- if (!Other)
- Other = findConstantFor(V, KnownConstants);
-
+ Constant *Other = findConstantFor(V, KnownConstants);
if (!Other)
return nullptr;
@@ -316,10 +309,7 @@
Constant *InstCostVisitor::visitBinaryOperator(BinaryOperator &I) {
bool Swap = I.getOperand(1) == LastVisited->first;
Value *V = Swap ? I.getOperand(0) : I.getOperand(1);
- auto *Other = dyn_cast<Constant>(V);
- if (!Other)
- Other = findConstantFor(V, KnownConstants);
-
+ Constant *Other = findConstantFor(V, KnownConstants);
if (!Other)
return nullptr;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D155177.539948.patch
Type: text/x-patch
Size: 2301 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230713/b26b6502/attachment.bin>
More information about the llvm-commits
mailing list