aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/SplitKit.cpp
diff options
context:
space:
mode:
authorHongtao Yu <hoy@fb.com>2021-04-12 23:51:44 -0700
committerHongtao Yu <hoy@fb.com>2021-04-19 17:55:35 -0700
commitb98807df05cb4cd728e744c3349a9dfd341f6f61 (patch)
tree7288dd26f041df9f156887793a1bcb301c4c4d3f /llvm/lib/CodeGen/SplitKit.cpp
parent1812319292e0041e7e32ad7b61d7252a450b95c2 (diff)
downloadllvm-b98807df05cb4cd728e744c3349a9dfd341f6f61.zip
llvm-b98807df05cb4cd728e744c3349a9dfd341f6f61.tar.gz
llvm-b98807df05cb4cd728e744c3349a9dfd341f6f61.tar.bz2
[CSSPGO] Exclude pseudo probes from slot index
Pseudo probe are currently given a slot index like other regular instructions. This affects register pressure and lifetime weight computation because of enlarged lifetime length with pseudo probe instructions. As a consequence, program could get different code generated w/ and w/o pseudo probes. I'm closing the gap by excluding pseudo probes from stack index and downstream register allocation related passes. Reviewed By: wmi Differential Revision: https://reviews.llvm.org/D100334
Diffstat (limited to 'llvm/lib/CodeGen/SplitKit.cpp')
-rw-r--r--llvm/lib/CodeGen/SplitKit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SplitKit.cpp b/llvm/lib/CodeGen/SplitKit.cpp
index d778a9e..597f516 100644
--- a/llvm/lib/CodeGen/SplitKit.cpp
+++ b/llvm/lib/CodeGen/SplitKit.cpp
@@ -819,7 +819,7 @@ void SplitEditor::removeBackCopies(SmallVectorImpl<VNInfo*> &Copies) {
MachineBasicBlock::iterator MBBI(MI);
bool AtBegin;
do AtBegin = MBBI == MBB->begin();
- while (!AtBegin && (--MBBI)->isDebugInstr());
+ while (!AtBegin && (--MBBI)->isDebugOrPseudoInstr());
LLVM_DEBUG(dbgs() << "Removing " << Def << '\t' << *MI);
LIS.removeVRegDefAt(*LI, Def);