[llvm] [PowerPC] Deprecate uses of ISD::ADDC/ISD::ADDE/ISD::SUBC/ISD::SUBE (PR #133155)
Maryam Moghadas via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 31 09:17:35 PDT 2025
================
@@ -338,3 +338,25 @@ void llvm::computeAndAddLiveIns(LivePhysRegs &LiveRegs,
computeLiveIns(LiveRegs, MBB);
addLiveIns(MBB, LiveRegs);
}
+
+bool llvm::isPhysRegLiveAfter(Register Reg, MachineBasicBlock::iterator MBI) {
+ assert(Reg.isPhysical() && "Apply to physical register only");
+
+ MachineBasicBlock *MBB = MBI->getParent();
+ // Scan forward through BB for a use/def of Reg
+ for (const MachineInstr &MI : llvm::make_range(std::next(MBI), MBB->end())) {
+ if (MI.readsRegister(Reg, /*TRI=*/nullptr))
+ return true;
----------------
maryammo wrote:
Why does it return true if a Reg is being read here but then being redefined later in this MBB?
https://github.com/llvm/llvm-project/pull/133155
More information about the llvm-commits
mailing list