diff options
author | Hongtao Yu <hoy@fb.com> | 2021-04-12 23:51:44 -0700 |
---|---|---|
committer | Hongtao Yu <hoy@fb.com> | 2021-04-19 17:55:35 -0700 |
commit | b98807df05cb4cd728e744c3349a9dfd341f6f61 (patch) | |
tree | 7288dd26f041df9f156887793a1bcb301c4c4d3f /llvm/lib/CodeGen/LiveDebugVariables.cpp | |
parent | 1812319292e0041e7e32ad7b61d7252a450b95c2 (diff) | |
download | llvm-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/LiveDebugVariables.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveDebugVariables.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/LiveDebugVariables.cpp b/llvm/lib/CodeGen/LiveDebugVariables.cpp index 751e4f6..ce898cd 100644 --- a/llvm/lib/CodeGen/LiveDebugVariables.cpp +++ b/llvm/lib/CodeGen/LiveDebugVariables.cpp @@ -870,7 +870,7 @@ bool LDVImpl::collectDebugValues(MachineFunction &mf) { MBBI != MBBE;) { // Use the first debug instruction in the sequence to get a SlotIndex // for following consecutive debug instructions. - if (!MBBI->isDebugInstr()) { + if (!MBBI->isDebugOrPseudoInstr()) { ++MBBI; continue; } @@ -891,7 +891,7 @@ bool LDVImpl::collectDebugValues(MachineFunction &mf) { Changed = true; } else ++MBBI; - } while (MBBI != MBBE && MBBI->isDebugInstr()); + } while (MBBI != MBBE && MBBI->isDebugOrPseudoInstr()); } } return Changed; |