[PATCH] D86031: NFC: [GVNHoist] Hoist loop invariant code and rename variables for readability
Aditya Kumar via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 17 09:22:37 PDT 2020
hiraditya updated this revision to Diff 286048.
hiraditya added a comment.
Addressed fhahn's comments
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D86031/new/
https://reviews.llvm.org/D86031
Files:
llvm/lib/Transforms/Scalar/GVNHoist.cpp
Index: llvm/lib/Transforms/Scalar/GVNHoist.cpp
===================================================================
--- llvm/lib/Transforms/Scalar/GVNHoist.cpp
+++ llvm/lib/Transforms/Scalar/GVNHoist.cpp
@@ -792,14 +792,14 @@
}
// Insert empty CHI node for this VN. This is used to factor out
// basic blocks where the ANTIC can potentially change.
- for (auto IDFB : IDFBlocks) {
+ CHIArg EmptyChi = {VN, nullptr, nullptr};
+ for (auto *IDFBB : IDFBlocks) {
for (unsigned i = 0; i < V.size(); ++i) {
- CHIArg C = {VN, nullptr, nullptr};
- // Ignore spurious PDFs.
- if (DT->properlyDominates(IDFB, V[i]->getParent())) {
- OutValue[IDFB].push_back(C);
- LLVM_DEBUG(dbgs() << "\nInsertion a CHI for BB: " << IDFB->getName()
- << ", for Insn: " << *V[i]);
+ // Ignore spurious PDFs.
+ if (DT->properlyDominates(IDFBB, V[i]->getParent())) {
+ OutValue[IDFBB].push_back(EmptyChi);
+ LLVM_DEBUG(dbgs() << "\nInserting a CHI for BB: "
+ << IDFBB->getName() << ", for Insn: " << *V[i]);
}
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D86031.286048.patch
Type: text/x-patch
Size: 1205 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200817/1ba56269/attachment.bin>
More information about the llvm-commits
mailing list