2013-12-14 07:52:56 +01:00
|
|
|
//===--- LivePhysRegs.cpp - Live Physical Register Set --------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the LivePhysRegs utility for tracking liveness of
|
|
|
|
// physical registers across machine instructions in forward or backward order.
|
|
|
|
// A more detailed description can be found in the corresponding header file.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/LivePhysRegs.h"
|
2015-07-01 19:17:17 +02:00
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2013-12-14 07:52:56 +01:00
|
|
|
#include "llvm/CodeGen/MachineInstrBundle.h"
|
2016-07-06 23:31:27 +02:00
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
2018-04-30 16:59:11 +02:00
|
|
|
#include "llvm/Config/llvm-config.h"
|
2013-12-14 07:52:56 +01:00
|
|
|
#include "llvm/Support/Debug.h"
|
2015-03-23 19:23:08 +01:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2013-12-14 07:52:56 +01:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Remove all registers from the set that get clobbered by the register
|
2013-12-14 07:52:56 +01:00
|
|
|
/// mask.
|
2015-05-05 22:14:22 +02:00
|
|
|
/// The clobbers set will be the list of live registers clobbered
|
|
|
|
/// by the regmask.
|
|
|
|
void LivePhysRegs::removeRegsInMask(const MachineOperand &MO,
|
2018-11-06 20:00:11 +01:00
|
|
|
SmallVectorImpl<std::pair<MCPhysReg, const MachineOperand*>> *Clobbers) {
|
|
|
|
RegisterSet::iterator LRI = LiveRegs.begin();
|
2013-12-14 07:52:56 +01:00
|
|
|
while (LRI != LiveRegs.end()) {
|
2015-05-05 22:14:22 +02:00
|
|
|
if (MO.clobbersPhysReg(*LRI)) {
|
|
|
|
if (Clobbers)
|
|
|
|
Clobbers->push_back(std::make_pair(*LRI, &MO));
|
2013-12-14 07:52:56 +01:00
|
|
|
LRI = LiveRegs.erase(LRI);
|
2015-05-05 22:14:22 +02:00
|
|
|
} else
|
2013-12-14 07:52:56 +01:00
|
|
|
++LRI;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-14 17:53:11 +02:00
|
|
|
/// Remove defined registers and regmask kills from the set.
|
|
|
|
void LivePhysRegs::removeDefs(const MachineInstr &MI) {
|
2016-02-27 18:05:33 +01:00
|
|
|
for (ConstMIBundleOperands O(MI); O.isValid(); ++O) {
|
2013-12-14 07:52:56 +01:00
|
|
|
if (O->isReg()) {
|
2018-03-19 17:06:40 +01:00
|
|
|
if (!O->isDef() || O->isDebug())
|
2013-12-14 07:52:56 +01:00
|
|
|
continue;
|
|
|
|
unsigned Reg = O->getReg();
|
2016-10-07 16:50:49 +02:00
|
|
|
if (!TargetRegisterInfo::isPhysicalRegister(Reg))
|
2013-12-14 07:52:56 +01:00
|
|
|
continue;
|
|
|
|
removeReg(Reg);
|
|
|
|
} else if (O->isRegMask())
|
2017-05-26 23:50:51 +02:00
|
|
|
removeRegsInMask(*O);
|
2013-12-14 07:52:56 +01:00
|
|
|
}
|
2017-09-14 17:53:11 +02:00
|
|
|
}
|
2013-12-14 07:52:56 +01:00
|
|
|
|
2017-09-14 17:53:11 +02:00
|
|
|
/// Add uses to the set.
|
|
|
|
void LivePhysRegs::addUses(const MachineInstr &MI) {
|
2016-02-27 18:05:33 +01:00
|
|
|
for (ConstMIBundleOperands O(MI); O.isValid(); ++O) {
|
2018-03-19 17:06:40 +01:00
|
|
|
if (!O->isReg() || !O->readsReg() || O->isDebug())
|
2013-12-14 07:52:56 +01:00
|
|
|
continue;
|
|
|
|
unsigned Reg = O->getReg();
|
2016-10-07 16:50:49 +02:00
|
|
|
if (!TargetRegisterInfo::isPhysicalRegister(Reg))
|
2013-12-14 07:52:56 +01:00
|
|
|
continue;
|
|
|
|
addReg(Reg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-14 17:53:11 +02:00
|
|
|
/// Simulates liveness when stepping backwards over an instruction(bundle):
|
|
|
|
/// Remove Defs, add uses. This is the recommended way of calculating liveness.
|
|
|
|
void LivePhysRegs::stepBackward(const MachineInstr &MI) {
|
|
|
|
// Remove defined registers and regmask kills from the set.
|
|
|
|
removeDefs(MI);
|
|
|
|
|
|
|
|
// Add uses to the set.
|
|
|
|
addUses(MI);
|
|
|
|
}
|
|
|
|
|
2013-12-14 07:52:56 +01:00
|
|
|
/// Simulates liveness when stepping forward over an instruction(bundle): Remove
|
|
|
|
/// killed-uses, add defs. This is the not recommended way, because it depends
|
2015-09-04 14:34:55 +02:00
|
|
|
/// on accurate kill flags. If possible use stepBackward() instead of this
|
2013-12-14 07:52:56 +01:00
|
|
|
/// function.
|
2015-05-05 22:14:22 +02:00
|
|
|
void LivePhysRegs::stepForward(const MachineInstr &MI,
|
2018-11-06 20:00:11 +01:00
|
|
|
SmallVectorImpl<std::pair<MCPhysReg, const MachineOperand*>> &Clobbers) {
|
2013-12-14 07:52:56 +01:00
|
|
|
// Remove killed registers from the set.
|
2016-02-27 18:05:33 +01:00
|
|
|
for (ConstMIBundleOperands O(MI); O.isValid(); ++O) {
|
2018-03-19 17:06:40 +01:00
|
|
|
if (O->isReg() && !O->isDebug()) {
|
2013-12-14 07:52:56 +01:00
|
|
|
unsigned Reg = O->getReg();
|
2016-10-07 16:50:49 +02:00
|
|
|
if (!TargetRegisterInfo::isPhysicalRegister(Reg))
|
2013-12-14 07:52:56 +01:00
|
|
|
continue;
|
|
|
|
if (O->isDef()) {
|
2015-05-07 00:51:04 +02:00
|
|
|
// Note, dead defs are still recorded. The caller should decide how to
|
|
|
|
// handle them.
|
|
|
|
Clobbers.push_back(std::make_pair(Reg, &*O));
|
2013-12-14 07:52:56 +01:00
|
|
|
} else {
|
|
|
|
if (!O->isKill())
|
|
|
|
continue;
|
|
|
|
assert(O->isUse());
|
|
|
|
removeReg(Reg);
|
|
|
|
}
|
|
|
|
} else if (O->isRegMask())
|
2015-05-05 22:14:22 +02:00
|
|
|
removeRegsInMask(*O, &Clobbers);
|
2013-12-14 07:52:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add defs to the set.
|
2015-05-07 00:51:04 +02:00
|
|
|
for (auto Reg : Clobbers) {
|
2018-04-30 21:38:47 +02:00
|
|
|
// Skip dead defs and registers clobbered by regmasks. They shouldn't
|
|
|
|
// be added to the set.
|
2015-05-07 00:51:04 +02:00
|
|
|
if (Reg.second->isReg() && Reg.second->isDead())
|
|
|
|
continue;
|
2018-04-30 21:38:47 +02:00
|
|
|
if (Reg.second->isRegMask() &&
|
|
|
|
MachineOperand::clobbersPhysReg(Reg.second->getRegMask(), Reg.first))
|
|
|
|
continue;
|
2015-05-05 22:14:22 +02:00
|
|
|
addReg(Reg.first);
|
2015-05-07 00:51:04 +02:00
|
|
|
}
|
2013-12-14 07:52:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Prin the currently live registers to OS.
|
|
|
|
void LivePhysRegs::print(raw_ostream &OS) const {
|
|
|
|
OS << "Live Registers:";
|
|
|
|
if (!TRI) {
|
|
|
|
OS << " (uninitialized)\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty()) {
|
|
|
|
OS << " (empty)\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const_iterator I = begin(), E = end(); I != E; ++I)
|
2017-11-28 13:42:37 +01:00
|
|
|
OS << " " << printReg(*I, TRI);
|
2013-12-14 07:52:56 +01:00
|
|
|
OS << "\n";
|
|
|
|
}
|
|
|
|
|
2017-10-15 16:32:27 +02:00
|
|
|
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
2017-01-28 03:02:38 +01:00
|
|
|
LLVM_DUMP_METHOD void LivePhysRegs::dump() const {
|
2013-12-14 07:52:56 +01:00
|
|
|
dbgs() << " " << *this;
|
|
|
|
}
|
2017-01-28 03:02:38 +01:00
|
|
|
#endif
|
2015-07-01 19:17:17 +02:00
|
|
|
|
2016-07-06 23:31:27 +02:00
|
|
|
bool LivePhysRegs::available(const MachineRegisterInfo &MRI,
|
2018-11-06 20:00:11 +01:00
|
|
|
MCPhysReg Reg) const {
|
2016-07-06 23:31:27 +02:00
|
|
|
if (LiveRegs.count(Reg))
|
|
|
|
return false;
|
|
|
|
if (MRI.isReserved(Reg))
|
|
|
|
return false;
|
|
|
|
for (MCRegAliasIterator R(Reg, TRI, false); R.isValid(); ++R) {
|
|
|
|
if (LiveRegs.count(*R))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-07-01 19:17:17 +02:00
|
|
|
/// Add live-in registers of basic block \p MBB to \p LiveRegs.
|
2016-10-13 00:53:41 +02:00
|
|
|
void LivePhysRegs::addBlockLiveIns(const MachineBasicBlock &MBB) {
|
|
|
|
for (const auto &LI : MBB.liveins()) {
|
2018-11-06 20:00:11 +01:00
|
|
|
MCPhysReg Reg = LI.PhysReg;
|
2017-05-26 18:23:08 +02:00
|
|
|
LaneBitmask Mask = LI.LaneMask;
|
|
|
|
MCSubRegIndexIterator S(Reg, TRI);
|
|
|
|
assert(Mask.any() && "Invalid livein mask");
|
|
|
|
if (Mask.all() || !S.isValid()) {
|
|
|
|
addReg(Reg);
|
2016-10-13 00:53:41 +02:00
|
|
|
continue;
|
|
|
|
}
|
2016-12-15 15:36:06 +01:00
|
|
|
for (; S.isValid(); ++S) {
|
|
|
|
unsigned SI = S.getSubRegIndex();
|
2017-05-26 18:23:08 +02:00
|
|
|
if ((Mask & TRI->getSubRegIndexLaneMask(SI)).any())
|
2016-10-13 00:53:41 +02:00
|
|
|
addReg(S.getSubReg());
|
2016-12-15 15:36:06 +01:00
|
|
|
}
|
2016-10-13 00:53:41 +02:00
|
|
|
}
|
2015-07-01 19:17:17 +02:00
|
|
|
}
|
|
|
|
|
2017-05-26 18:23:08 +02:00
|
|
|
/// Adds all callee saved registers to \p LiveRegs.
|
|
|
|
static void addCalleeSavedRegs(LivePhysRegs &LiveRegs,
|
|
|
|
const MachineFunction &MF) {
|
2017-03-14 10:09:26 +01:00
|
|
|
const MachineRegisterInfo &MRI = MF.getRegInfo();
|
2017-05-26 18:23:08 +02:00
|
|
|
for (const MCPhysReg *CSR = MRI.getCalleeSavedRegs(); CSR && *CSR; ++CSR)
|
2015-07-01 19:17:17 +02:00
|
|
|
LiveRegs.addReg(*CSR);
|
2017-05-26 18:23:08 +02:00
|
|
|
}
|
|
|
|
|
2017-09-08 18:29:50 +02:00
|
|
|
void LivePhysRegs::addPristines(const MachineFunction &MF) {
|
2017-05-26 18:23:08 +02:00
|
|
|
const MachineFrameInfo &MFI = MF.getFrameInfo();
|
|
|
|
if (!MFI.isCalleeSavedInfoValid())
|
|
|
|
return;
|
2017-09-08 18:29:50 +02:00
|
|
|
/// This function will usually be called on an empty object, handle this
|
|
|
|
/// as a special case.
|
|
|
|
if (empty()) {
|
|
|
|
/// Add all callee saved regs, then remove the ones that are saved and
|
|
|
|
/// restored.
|
|
|
|
addCalleeSavedRegs(*this, MF);
|
|
|
|
/// Remove the ones that are not saved/restored; they are pristine.
|
|
|
|
for (const CalleeSavedInfo &Info : MFI.getCalleeSavedInfo())
|
|
|
|
removeReg(Info.getReg());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/// If a callee-saved register that is not pristine is already present
|
|
|
|
/// in the set, we should make sure that it stays in it. Precompute the
|
|
|
|
/// set of pristine registers in a separate object.
|
2017-05-26 18:23:08 +02:00
|
|
|
/// Add all callee saved regs, then remove the ones that are saved+restored.
|
2017-09-08 18:29:50 +02:00
|
|
|
LivePhysRegs Pristine(*TRI);
|
|
|
|
addCalleeSavedRegs(Pristine, MF);
|
2017-05-26 18:23:08 +02:00
|
|
|
/// Remove the ones that are not saved/restored; they are pristine.
|
2015-07-01 19:17:17 +02:00
|
|
|
for (const CalleeSavedInfo &Info : MFI.getCalleeSavedInfo())
|
2017-09-08 18:29:50 +02:00
|
|
|
Pristine.removeReg(Info.getReg());
|
|
|
|
for (MCPhysReg R : Pristine)
|
|
|
|
addReg(R);
|
2015-07-01 19:17:17 +02:00
|
|
|
}
|
|
|
|
|
2016-05-03 02:24:32 +02:00
|
|
|
void LivePhysRegs::addLiveOutsNoPristines(const MachineBasicBlock &MBB) {
|
2018-02-07 00:00:17 +01:00
|
|
|
// To get the live-outs we simply merge the live-ins of all successors.
|
|
|
|
for (const MachineBasicBlock *Succ : MBB.successors())
|
|
|
|
addBlockLiveIns(*Succ);
|
|
|
|
if (MBB.isReturnBlock()) {
|
|
|
|
// Return blocks are a special case because we currently don't mark up
|
|
|
|
// return instructions completely: specifically, there is no explicit
|
|
|
|
// use for callee-saved registers. So we add all callee saved registers
|
|
|
|
// that are saved and restored (somewhere). This does not include
|
|
|
|
// callee saved registers that are unused and hence not saved and
|
|
|
|
// restored; they are called pristine.
|
|
|
|
// FIXME: PEI should add explicit markings to return instructions
|
|
|
|
// instead of implicitly handling them here.
|
2017-05-26 18:23:08 +02:00
|
|
|
const MachineFunction &MF = *MBB.getParent();
|
|
|
|
const MachineFrameInfo &MFI = MF.getFrameInfo();
|
|
|
|
if (MFI.isCalleeSavedInfoValid()) {
|
|
|
|
for (const CalleeSavedInfo &Info : MFI.getCalleeSavedInfo())
|
2017-08-10 18:17:32 +02:00
|
|
|
if (Info.isRestored())
|
|
|
|
addReg(Info.getReg());
|
2017-05-26 18:23:08 +02:00
|
|
|
}
|
|
|
|
}
|
2016-05-03 02:08:46 +02:00
|
|
|
}
|
|
|
|
|
2016-05-03 02:24:32 +02:00
|
|
|
void LivePhysRegs::addLiveOuts(const MachineBasicBlock &MBB) {
|
2017-06-03 02:26:35 +02:00
|
|
|
const MachineFunction &MF = *MBB.getParent();
|
2018-02-07 00:00:17 +01:00
|
|
|
addPristines(MF);
|
|
|
|
addLiveOutsNoPristines(MBB);
|
2015-07-01 19:17:17 +02:00
|
|
|
}
|
|
|
|
|
2016-05-03 02:24:32 +02:00
|
|
|
void LivePhysRegs::addLiveIns(const MachineBasicBlock &MBB) {
|
|
|
|
const MachineFunction &MF = *MBB.getParent();
|
2017-09-08 18:29:50 +02:00
|
|
|
addPristines(MF);
|
2016-10-13 00:53:41 +02:00
|
|
|
addBlockLiveIns(MBB);
|
2015-07-01 19:17:17 +02:00
|
|
|
}
|
2016-12-17 00:55:37 +01:00
|
|
|
|
2017-05-26 08:32:31 +02:00
|
|
|
void llvm::computeLiveIns(LivePhysRegs &LiveRegs,
|
2017-09-06 22:45:24 +02:00
|
|
|
const MachineBasicBlock &MBB) {
|
|
|
|
const MachineFunction &MF = *MBB.getParent();
|
|
|
|
const MachineRegisterInfo &MRI = MF.getRegInfo();
|
2017-05-26 08:32:31 +02:00
|
|
|
const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo();
|
2016-12-17 00:55:37 +01:00
|
|
|
LiveRegs.init(TRI);
|
|
|
|
LiveRegs.addLiveOutsNoPristines(MBB);
|
2017-09-06 22:45:24 +02:00
|
|
|
for (const MachineInstr &MI : make_range(MBB.rbegin(), MBB.rend()))
|
2016-12-17 00:55:37 +01:00
|
|
|
LiveRegs.stepBackward(MI);
|
2017-09-06 22:45:24 +02:00
|
|
|
}
|
2016-12-17 00:55:37 +01:00
|
|
|
|
2017-09-06 22:45:24 +02:00
|
|
|
void llvm::addLiveIns(MachineBasicBlock &MBB, const LivePhysRegs &LiveRegs) {
|
|
|
|
assert(MBB.livein_empty() && "Expected empty live-in list");
|
|
|
|
const MachineFunction &MF = *MBB.getParent();
|
|
|
|
const MachineRegisterInfo &MRI = MF.getRegInfo();
|
|
|
|
const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo();
|
|
|
|
for (MCPhysReg Reg : LiveRegs) {
|
2017-05-26 08:32:31 +02:00
|
|
|
if (MRI.isReserved(Reg))
|
|
|
|
continue;
|
2016-12-17 00:55:37 +01:00
|
|
|
// Skip the register if we are about to add one of its super registers.
|
|
|
|
bool ContainsSuperReg = false;
|
|
|
|
for (MCSuperRegIterator SReg(Reg, &TRI); SReg.isValid(); ++SReg) {
|
2017-05-26 08:32:31 +02:00
|
|
|
if (LiveRegs.contains(*SReg) && !MRI.isReserved(*SReg)) {
|
2016-12-17 00:55:37 +01:00
|
|
|
ContainsSuperReg = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ContainsSuperReg)
|
|
|
|
continue;
|
|
|
|
MBB.addLiveIn(Reg);
|
|
|
|
}
|
|
|
|
}
|
2017-09-06 22:45:24 +02:00
|
|
|
|
2017-09-14 17:53:11 +02:00
|
|
|
void llvm::recomputeLivenessFlags(MachineBasicBlock &MBB) {
|
|
|
|
const MachineFunction &MF = *MBB.getParent();
|
|
|
|
const MachineRegisterInfo &MRI = MF.getRegInfo();
|
|
|
|
const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo();
|
|
|
|
|
|
|
|
// We walk through the block backwards and start with the live outs.
|
|
|
|
LivePhysRegs LiveRegs;
|
|
|
|
LiveRegs.init(TRI);
|
|
|
|
LiveRegs.addLiveOutsNoPristines(MBB);
|
|
|
|
|
|
|
|
for (MachineInstr &MI : make_range(MBB.rbegin(), MBB.rend())) {
|
|
|
|
// Recompute dead flags.
|
|
|
|
for (MIBundleOperands MO(MI); MO.isValid(); ++MO) {
|
|
|
|
if (!MO->isReg() || !MO->isDef() || MO->isDebug())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
unsigned Reg = MO->getReg();
|
|
|
|
if (Reg == 0)
|
|
|
|
continue;
|
|
|
|
assert(TargetRegisterInfo::isPhysicalRegister(Reg));
|
|
|
|
|
|
|
|
bool IsNotLive = LiveRegs.available(MRI, Reg);
|
|
|
|
MO->setIsDead(IsNotLive);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Step backward over defs.
|
|
|
|
LiveRegs.removeDefs(MI);
|
|
|
|
|
|
|
|
// Recompute kill flags.
|
|
|
|
for (MIBundleOperands MO(MI); MO.isValid(); ++MO) {
|
|
|
|
if (!MO->isReg() || !MO->readsReg() || MO->isDebug())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
unsigned Reg = MO->getReg();
|
|
|
|
if (Reg == 0)
|
|
|
|
continue;
|
|
|
|
assert(TargetRegisterInfo::isPhysicalRegister(Reg));
|
|
|
|
|
|
|
|
bool IsNotLive = LiveRegs.available(MRI, Reg);
|
|
|
|
MO->setIsKill(IsNotLive);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Complete the stepbackward.
|
|
|
|
LiveRegs.addUses(MI);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-06 22:45:24 +02:00
|
|
|
void llvm::computeAndAddLiveIns(LivePhysRegs &LiveRegs,
|
|
|
|
MachineBasicBlock &MBB) {
|
|
|
|
computeLiveIns(LiveRegs, MBB);
|
|
|
|
addLiveIns(MBB, LiveRegs);
|
|
|
|
}
|