2003-01-13 20:01:16 +00:00
|
|
|
//===-- LiveVariables.cpp - Live Variable Analysis for Machine Code -------===//
|
2005-04-21 22:36:52 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 22:36:52 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-21 22:36:52 +00:00
|
|
|
//
|
2003-05-07 20:08:36 +00:00
|
|
|
// This file implements the LiveVariable analysis pass. For each machine
|
|
|
|
// instruction in the function, this pass calculates the set of registers that
|
|
|
|
// are immediately dead after the instruction (i.e., the instruction calculates
|
|
|
|
// the value, but it is never used) and the set of registers that are used by
|
|
|
|
// the instruction, but are never used after the instruction (i.e., they are
|
|
|
|
// killed).
|
|
|
|
//
|
|
|
|
// This class computes live variables using are sparse implementation based on
|
|
|
|
// the machine code SSA form. This class computes live variable information for
|
|
|
|
// each virtual and _register allocatable_ physical register in a function. It
|
|
|
|
// uses the dominance properties of SSA form to efficiently compute live
|
|
|
|
// variables for virtual registers, and assumes that physical registers are only
|
|
|
|
// live within a single basic block (allowing it to do a single local analysis
|
|
|
|
// to resolve physical register lifetimes in each basic block). If a physical
|
|
|
|
// register is not register allocatable, it is not tracked. This is useful for
|
|
|
|
// things like the stack pointer and condition codes.
|
|
|
|
//
|
2003-01-13 20:01:16 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/LiveVariables.h"
|
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2004-02-10 21:18:55 +00:00
|
|
|
#include "llvm/Target/MRegisterInfo.h"
|
2003-01-14 22:00:31 +00:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
2003-01-13 20:01:16 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/ADT/DepthFirstIterator.h"
|
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2004-10-25 18:44:14 +00:00
|
|
|
#include "llvm/Config/alloca.h"
|
2005-08-24 00:09:33 +00:00
|
|
|
#include <algorithm>
|
2004-01-30 22:08:53 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2007-05-03 01:11:54 +00:00
|
|
|
char LiveVariables::ID = 0;
|
2006-08-27 22:30:17 +00:00
|
|
|
static RegisterPass<LiveVariables> X("livevars", "Live Variable Analysis");
|
2003-01-13 20:01:16 +00:00
|
|
|
|
2006-01-04 05:40:30 +00:00
|
|
|
void LiveVariables::VarInfo::dump() const {
|
2006-12-07 20:28:15 +00:00
|
|
|
cerr << "Register Defined by: ";
|
2006-01-04 05:40:30 +00:00
|
|
|
if (DefInst)
|
2006-12-07 20:28:15 +00:00
|
|
|
cerr << *DefInst;
|
2006-01-04 05:40:30 +00:00
|
|
|
else
|
2006-12-07 20:28:15 +00:00
|
|
|
cerr << "<null>\n";
|
|
|
|
cerr << " Alive in blocks: ";
|
2006-01-04 05:40:30 +00:00
|
|
|
for (unsigned i = 0, e = AliveBlocks.size(); i != e; ++i)
|
2006-12-07 20:28:15 +00:00
|
|
|
if (AliveBlocks[i]) cerr << i << ", ";
|
|
|
|
cerr << "\n Killed by:";
|
2006-01-04 05:40:30 +00:00
|
|
|
if (Kills.empty())
|
2006-12-07 20:28:15 +00:00
|
|
|
cerr << " No instructions.\n";
|
2006-01-04 05:40:30 +00:00
|
|
|
else {
|
|
|
|
for (unsigned i = 0, e = Kills.size(); i != e; ++i)
|
2006-12-07 20:28:15 +00:00
|
|
|
cerr << "\n #" << i << ": " << *Kills[i];
|
|
|
|
cerr << "\n";
|
2006-01-04 05:40:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-12 14:24:00 +00:00
|
|
|
LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
|
2004-01-31 21:27:19 +00:00
|
|
|
assert(MRegisterInfo::isVirtualRegister(RegIdx) &&
|
2003-05-12 14:24:00 +00:00
|
|
|
"getVarInfo: not a virtual register!");
|
|
|
|
RegIdx -= MRegisterInfo::FirstVirtualRegister;
|
|
|
|
if (RegIdx >= VirtRegInfo.size()) {
|
|
|
|
if (RegIdx >= 2*VirtRegInfo.size())
|
|
|
|
VirtRegInfo.resize(RegIdx*2);
|
|
|
|
else
|
|
|
|
VirtRegInfo.resize(2*VirtRegInfo.size());
|
|
|
|
}
|
2007-03-17 09:29:54 +00:00
|
|
|
VarInfo &VI = VirtRegInfo[RegIdx];
|
|
|
|
VI.AliveBlocks.resize(MF->getNumBlockIDs());
|
|
|
|
return VI;
|
2003-05-12 14:24:00 +00:00
|
|
|
}
|
|
|
|
|
2005-08-24 00:09:33 +00:00
|
|
|
bool LiveVariables::KillsRegister(MachineInstr *MI, unsigned Reg) const {
|
2006-11-15 20:51:59 +00:00
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = MI->getOperand(i);
|
|
|
|
if (MO.isReg() && MO.isKill()) {
|
2007-04-25 07:30:23 +00:00
|
|
|
if ((MO.getReg() == Reg) ||
|
|
|
|
(MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
|
|
|
|
MRegisterInfo::isPhysicalRegister(Reg) &&
|
|
|
|
RegInfo->isSubRegister(MO.getReg(), Reg)))
|
2006-11-15 20:51:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2005-08-24 00:09:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool LiveVariables::RegisterDefIsDead(MachineInstr *MI, unsigned Reg) const {
|
2006-11-15 20:51:59 +00:00
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = MI->getOperand(i);
|
2007-04-25 07:30:23 +00:00
|
|
|
if (MO.isReg() && MO.isDead()) {
|
|
|
|
if ((MO.getReg() == Reg) ||
|
|
|
|
(MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
|
|
|
|
MRegisterInfo::isPhysicalRegister(Reg) &&
|
|
|
|
RegInfo->isSubRegister(MO.getReg(), Reg)))
|
2006-11-15 20:51:59 +00:00
|
|
|
return true;
|
2007-04-25 07:30:23 +00:00
|
|
|
}
|
2006-11-15 20:51:59 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LiveVariables::ModifiesRegister(MachineInstr *MI, unsigned Reg) const {
|
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = MI->getOperand(i);
|
2007-04-25 07:30:23 +00:00
|
|
|
if (MO.isReg() && MO.isDef() && MO.getReg() == Reg)
|
|
|
|
return true;
|
2006-11-15 20:51:59 +00:00
|
|
|
}
|
|
|
|
return false;
|
2005-08-24 00:09:33 +00:00
|
|
|
}
|
2003-05-12 14:24:00 +00:00
|
|
|
|
2003-01-13 20:01:16 +00:00
|
|
|
void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
|
2004-06-24 21:31:16 +00:00
|
|
|
MachineBasicBlock *MBB) {
|
2004-07-01 04:29:47 +00:00
|
|
|
unsigned BBNum = MBB->getNumber();
|
2003-01-13 20:01:16 +00:00
|
|
|
|
|
|
|
// Check to see if this basic block is one of the killing blocks. If so,
|
|
|
|
// remove it...
|
|
|
|
for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
|
2004-07-19 07:04:55 +00:00
|
|
|
if (VRInfo.Kills[i]->getParent() == MBB) {
|
2003-01-13 20:01:16 +00:00
|
|
|
VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entry
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2004-07-19 06:26:50 +00:00
|
|
|
if (MBB == VRInfo.DefInst->getParent()) return; // Terminate recursion
|
2003-01-13 20:01:16 +00:00
|
|
|
|
|
|
|
if (VRInfo.AliveBlocks[BBNum])
|
|
|
|
return; // We already know the block is live
|
|
|
|
|
|
|
|
// Mark the variable known alive in this bb
|
|
|
|
VRInfo.AliveBlocks[BBNum] = true;
|
|
|
|
|
2004-05-01 21:24:24 +00:00
|
|
|
for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
|
|
|
|
E = MBB->pred_end(); PI != E; ++PI)
|
2003-01-13 20:01:16 +00:00
|
|
|
MarkVirtRegAliveInBlock(VRInfo, *PI);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LiveVariables::HandleVirtRegUse(VarInfo &VRInfo, MachineBasicBlock *MBB,
|
2004-06-24 21:31:16 +00:00
|
|
|
MachineInstr *MI) {
|
2004-09-01 22:34:52 +00:00
|
|
|
assert(VRInfo.DefInst && "Register use before def!");
|
|
|
|
|
2007-04-17 20:22:11 +00:00
|
|
|
VRInfo.NumUses++;
|
2007-03-17 09:29:54 +00:00
|
|
|
|
2003-01-13 20:01:16 +00:00
|
|
|
// Check to see if this basic block is already a kill block...
|
2004-07-19 07:04:55 +00:00
|
|
|
if (!VRInfo.Kills.empty() && VRInfo.Kills.back()->getParent() == MBB) {
|
2003-01-13 20:01:16 +00:00
|
|
|
// Yes, this register is killed in this basic block already. Increase the
|
|
|
|
// live range by updating the kill instruction.
|
2004-07-19 07:04:55 +00:00
|
|
|
VRInfo.Kills.back() = MI;
|
2003-01-13 20:01:16 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
|
2004-07-19 07:04:55 +00:00
|
|
|
assert(VRInfo.Kills[i]->getParent() != MBB && "entry should be at end!");
|
2003-01-13 20:01:16 +00:00
|
|
|
#endif
|
|
|
|
|
2005-04-21 22:36:52 +00:00
|
|
|
assert(MBB != VRInfo.DefInst->getParent() &&
|
2004-07-19 06:26:50 +00:00
|
|
|
"Should have kill for defblock!");
|
2003-01-13 20:01:16 +00:00
|
|
|
|
|
|
|
// Add a new kill entry for this basic block.
|
2007-03-09 09:48:56 +00:00
|
|
|
// If this virtual register is already marked as alive in this basic block,
|
|
|
|
// that means it is alive in at least one of the successor block, it's not
|
|
|
|
// a kill.
|
2007-04-18 05:04:38 +00:00
|
|
|
if (!VRInfo.AliveBlocks[MBB->getNumber()])
|
2007-03-09 09:48:56 +00:00
|
|
|
VRInfo.Kills.push_back(MI);
|
2003-01-13 20:01:16 +00:00
|
|
|
|
|
|
|
// Update all dominating blocks to mark them known live.
|
2004-05-01 21:24:24 +00:00
|
|
|
for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
|
|
|
|
E = MBB->pred_end(); PI != E; ++PI)
|
2003-01-13 20:01:16 +00:00
|
|
|
MarkVirtRegAliveInBlock(VRInfo, *PI);
|
|
|
|
}
|
|
|
|
|
2007-04-26 01:40:09 +00:00
|
|
|
bool LiveVariables::addRegisterKilled(unsigned IncomingReg, MachineInstr *MI,
|
|
|
|
bool AddIfNotFound) {
|
2007-04-25 07:30:23 +00:00
|
|
|
bool Found = false;
|
2006-11-15 20:51:59 +00:00
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = MI->getOperand(i);
|
2007-04-25 07:30:23 +00:00
|
|
|
if (MO.isReg() && MO.isUse()) {
|
|
|
|
unsigned Reg = MO.getReg();
|
|
|
|
if (!Reg)
|
|
|
|
continue;
|
|
|
|
if (Reg == IncomingReg) {
|
|
|
|
MO.setIsKill();
|
|
|
|
Found = true;
|
|
|
|
break;
|
|
|
|
} else if (MRegisterInfo::isPhysicalRegister(Reg) &&
|
|
|
|
MRegisterInfo::isPhysicalRegister(IncomingReg) &&
|
|
|
|
RegInfo->isSuperRegister(IncomingReg, Reg) &&
|
|
|
|
MO.isKill())
|
|
|
|
// A super-register kill already exists.
|
2007-04-26 01:40:09 +00:00
|
|
|
return true;
|
2006-11-15 20:51:59 +00:00
|
|
|
}
|
|
|
|
}
|
2007-04-25 07:30:23 +00:00
|
|
|
|
|
|
|
// If not found, this means an alias of one of the operand is killed. Add a
|
2007-04-26 01:40:09 +00:00
|
|
|
// new implicit operand if required.
|
|
|
|
if (!Found && AddIfNotFound) {
|
2007-04-25 07:30:23 +00:00
|
|
|
MI->addRegOperand(IncomingReg, false/*IsDef*/,true/*IsImp*/,true/*IsKill*/);
|
2007-04-26 01:40:09 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return Found;
|
2006-11-15 20:51:59 +00:00
|
|
|
}
|
|
|
|
|
2007-04-26 01:40:09 +00:00
|
|
|
bool LiveVariables::addRegisterDead(unsigned IncomingReg, MachineInstr *MI,
|
|
|
|
bool AddIfNotFound) {
|
2007-04-25 07:30:23 +00:00
|
|
|
bool Found = false;
|
2006-11-15 20:51:59 +00:00
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = MI->getOperand(i);
|
2007-04-25 07:30:23 +00:00
|
|
|
if (MO.isReg() && MO.isDef()) {
|
|
|
|
unsigned Reg = MO.getReg();
|
|
|
|
if (!Reg)
|
|
|
|
continue;
|
|
|
|
if (Reg == IncomingReg) {
|
|
|
|
MO.setIsDead();
|
|
|
|
Found = true;
|
|
|
|
break;
|
|
|
|
} else if (MRegisterInfo::isPhysicalRegister(Reg) &&
|
|
|
|
MRegisterInfo::isPhysicalRegister(IncomingReg) &&
|
|
|
|
RegInfo->isSuperRegister(IncomingReg, Reg) &&
|
|
|
|
MO.isDead())
|
|
|
|
// There exists a super-register that's marked dead.
|
2007-04-26 01:40:09 +00:00
|
|
|
return true;
|
2006-11-15 20:51:59 +00:00
|
|
|
}
|
|
|
|
}
|
2007-04-25 07:30:23 +00:00
|
|
|
|
|
|
|
// If not found, this means an alias of one of the operand is dead. Add a
|
|
|
|
// new implicit operand.
|
2007-04-26 01:40:09 +00:00
|
|
|
if (!Found && AddIfNotFound) {
|
2007-04-25 07:30:23 +00:00
|
|
|
MI->addRegOperand(IncomingReg, true/*IsDef*/,true/*IsImp*/,false/*IsKill*/,
|
|
|
|
true/*IsDead*/);
|
2007-04-26 01:40:09 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return Found;
|
2006-11-15 20:51:59 +00:00
|
|
|
}
|
|
|
|
|
2003-01-13 20:01:16 +00:00
|
|
|
void LiveVariables::HandlePhysRegUse(unsigned Reg, MachineInstr *MI) {
|
2007-04-25 07:30:23 +00:00
|
|
|
// There is a now a proper use, forget about the last partial use.
|
|
|
|
PhysRegPartUse[Reg] = NULL;
|
|
|
|
|
|
|
|
// Turn previous partial def's into read/mod/write.
|
|
|
|
for (unsigned i = 0, e = PhysRegPartDef[Reg].size(); i != e; ++i) {
|
|
|
|
MachineInstr *Def = PhysRegPartDef[Reg][i];
|
|
|
|
// First one is just a def. This means the use is reading some undef bits.
|
|
|
|
if (i != 0)
|
|
|
|
Def->addRegOperand(Reg, false/*IsDef*/,true/*IsImp*/,true/*IsKill*/);
|
|
|
|
Def->addRegOperand(Reg, true/*IsDef*/,true/*IsImp*/);
|
|
|
|
}
|
|
|
|
PhysRegPartDef[Reg].clear();
|
|
|
|
|
|
|
|
// There was an earlier def of a super-register. Add implicit def to that MI.
|
|
|
|
// A: EAX = ...
|
|
|
|
// B: = AX
|
|
|
|
// Add implicit def to A.
|
|
|
|
if (PhysRegInfo[Reg] && !PhysRegUsed[Reg]) {
|
|
|
|
MachineInstr *Def = PhysRegInfo[Reg];
|
|
|
|
if (!Def->findRegisterDefOperand(Reg))
|
|
|
|
Def->addRegOperand(Reg, true/*IsDef*/,true/*IsImp*/);
|
|
|
|
}
|
|
|
|
|
2004-01-13 21:16:25 +00:00
|
|
|
PhysRegInfo[Reg] = MI;
|
|
|
|
PhysRegUsed[Reg] = true;
|
2004-05-10 05:12:43 +00:00
|
|
|
|
2007-04-25 07:30:23 +00:00
|
|
|
for (const unsigned *SubRegs = RegInfo->getSubRegisters(Reg);
|
|
|
|
unsigned SubReg = *SubRegs; ++SubRegs) {
|
|
|
|
PhysRegInfo[SubReg] = MI;
|
|
|
|
PhysRegUsed[SubReg] = true;
|
2004-05-10 05:12:43 +00:00
|
|
|
}
|
2007-04-25 07:30:23 +00:00
|
|
|
|
|
|
|
// Remember the partial uses.
|
|
|
|
for (const unsigned *SuperRegs = RegInfo->getSuperRegisters(Reg);
|
|
|
|
unsigned SuperReg = *SuperRegs; ++SuperRegs)
|
|
|
|
PhysRegPartUse[SuperReg] = MI;
|
2003-01-13 20:01:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void LiveVariables::HandlePhysRegDef(unsigned Reg, MachineInstr *MI) {
|
|
|
|
// Does this kill a previous version of this register?
|
2007-04-25 07:30:23 +00:00
|
|
|
if (MachineInstr *LastRef = PhysRegInfo[Reg]) {
|
2003-01-13 20:01:16 +00:00
|
|
|
if (PhysRegUsed[Reg])
|
2007-04-25 07:30:23 +00:00
|
|
|
addRegisterKilled(Reg, LastRef);
|
|
|
|
else if (PhysRegPartUse[Reg])
|
|
|
|
// Add implicit use / kill to last use of a sub-register.
|
2007-04-26 01:40:09 +00:00
|
|
|
addRegisterKilled(Reg, PhysRegPartUse[Reg], true);
|
2003-01-13 20:01:16 +00:00
|
|
|
else
|
2007-04-26 08:24:22 +00:00
|
|
|
addRegisterDead(Reg, LastRef);
|
2003-01-13 20:01:16 +00:00
|
|
|
}
|
|
|
|
PhysRegInfo[Reg] = MI;
|
|
|
|
PhysRegUsed[Reg] = false;
|
2007-04-25 07:30:23 +00:00
|
|
|
PhysRegPartUse[Reg] = NULL;
|
|
|
|
|
|
|
|
for (const unsigned *SubRegs = RegInfo->getSubRegisters(Reg);
|
|
|
|
unsigned SubReg = *SubRegs; ++SubRegs) {
|
|
|
|
if (MachineInstr *LastRef = PhysRegInfo[SubReg]) {
|
|
|
|
if (PhysRegUsed[SubReg])
|
|
|
|
addRegisterKilled(SubReg, LastRef);
|
|
|
|
else if (PhysRegPartUse[SubReg])
|
|
|
|
// Add implicit use / kill to last use of a sub-register.
|
2007-04-26 08:24:22 +00:00
|
|
|
addRegisterKilled(SubReg, PhysRegPartUse[SubReg], true);
|
2004-01-13 06:24:30 +00:00
|
|
|
else
|
2007-04-25 07:30:23 +00:00
|
|
|
addRegisterDead(SubReg, LastRef);
|
2004-01-13 06:24:30 +00:00
|
|
|
}
|
2007-04-25 07:30:23 +00:00
|
|
|
PhysRegInfo[SubReg] = MI;
|
|
|
|
PhysRegUsed[SubReg] = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (MI)
|
|
|
|
for (const unsigned *SuperRegs = RegInfo->getSuperRegisters(Reg);
|
|
|
|
unsigned SuperReg = *SuperRegs; ++SuperRegs) {
|
|
|
|
if (PhysRegInfo[SuperReg]) {
|
|
|
|
// The larger register is previously defined. Now a smaller part is
|
|
|
|
// being re-defined. Treat it as read/mod/write.
|
|
|
|
// EAX =
|
|
|
|
// AX = EAX<imp-use,kill>, EAX<imp-def>
|
|
|
|
MI->addRegOperand(SuperReg, false/*IsDef*/,true/*IsImp*/,true/*IsKill*/);
|
|
|
|
MI->addRegOperand(SuperReg, true/*IsDef*/,true/*IsImp*/);
|
|
|
|
PhysRegInfo[SuperReg] = MI;
|
|
|
|
PhysRegUsed[SuperReg] = false;
|
|
|
|
} else {
|
|
|
|
// Remember this partial def.
|
|
|
|
PhysRegPartDef[SuperReg].push_back(MI);
|
|
|
|
}
|
2004-01-13 06:24:30 +00:00
|
|
|
}
|
2003-01-13 20:01:16 +00:00
|
|
|
}
|
|
|
|
|
2007-03-17 09:29:54 +00:00
|
|
|
bool LiveVariables::runOnMachineFunction(MachineFunction &mf) {
|
|
|
|
MF = &mf;
|
|
|
|
const TargetInstrInfo &TII = *MF->getTarget().getInstrInfo();
|
|
|
|
RegInfo = MF->getTarget().getRegisterInfo();
|
2004-02-09 01:35:21 +00:00
|
|
|
assert(RegInfo && "Target doesn't have register information?");
|
|
|
|
|
2007-03-17 09:29:54 +00:00
|
|
|
ReservedRegisters = RegInfo->getReservedRegs(mf);
|
2003-05-07 20:08:36 +00:00
|
|
|
|
2007-04-25 19:34:00 +00:00
|
|
|
unsigned NumRegs = RegInfo->getNumRegs();
|
|
|
|
PhysRegInfo = new MachineInstr*[NumRegs];
|
|
|
|
PhysRegUsed = new bool[NumRegs];
|
|
|
|
PhysRegPartUse = new MachineInstr*[NumRegs];
|
|
|
|
PhysRegPartDef = new SmallVector<MachineInstr*,4>[NumRegs];
|
|
|
|
PHIVarInfo = new SmallVector<unsigned, 4>[MF->getNumBlockIDs()];
|
|
|
|
std::fill(PhysRegInfo, PhysRegInfo + NumRegs, (MachineInstr*)0);
|
|
|
|
std::fill(PhysRegUsed, PhysRegUsed + NumRegs, false);
|
|
|
|
std::fill(PhysRegPartUse, PhysRegPartUse + NumRegs, (MachineInstr*)0);
|
2003-01-13 20:01:16 +00:00
|
|
|
|
|
|
|
/// Get some space for a respectable number of registers...
|
|
|
|
VirtRegInfo.resize(64);
|
2005-04-09 15:23:25 +00:00
|
|
|
|
2007-03-17 09:29:54 +00:00
|
|
|
analyzePHINodes(mf);
|
2006-10-03 07:20:20 +00:00
|
|
|
|
2003-01-13 20:01:16 +00:00
|
|
|
// Calculate live variable information in depth first order on the CFG of the
|
|
|
|
// function. This guarantees that we will see the definition of a virtual
|
|
|
|
// register before its uses due to dominance properties of SSA (except for PHI
|
|
|
|
// nodes, which are treated as a special case).
|
|
|
|
//
|
2007-03-17 09:29:54 +00:00
|
|
|
MachineBasicBlock *Entry = MF->begin();
|
2004-07-01 04:24:29 +00:00
|
|
|
std::set<MachineBasicBlock*> Visited;
|
|
|
|
for (df_ext_iterator<MachineBasicBlock*> DFI = df_ext_begin(Entry, Visited),
|
|
|
|
E = df_ext_end(Entry, Visited); DFI != E; ++DFI) {
|
2004-05-01 21:24:24 +00:00
|
|
|
MachineBasicBlock *MBB = *DFI;
|
2003-01-13 20:01:16 +00:00
|
|
|
|
2007-02-19 21:49:54 +00:00
|
|
|
// Mark live-in registers as live-in.
|
|
|
|
for (MachineBasicBlock::const_livein_iterator II = MBB->livein_begin(),
|
2007-02-13 01:30:55 +00:00
|
|
|
EE = MBB->livein_end(); II != EE; ++II) {
|
|
|
|
assert(MRegisterInfo::isPhysicalRegister(*II) &&
|
|
|
|
"Cannot have a live-in virtual register!");
|
|
|
|
HandlePhysRegDef(*II, 0);
|
|
|
|
}
|
|
|
|
|
2003-01-13 20:01:16 +00:00
|
|
|
// Loop over all of the instructions, processing them.
|
|
|
|
for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
|
2004-06-24 21:31:16 +00:00
|
|
|
I != E; ++I) {
|
2004-02-12 02:27:10 +00:00
|
|
|
MachineInstr *MI = I;
|
2003-01-13 20:01:16 +00:00
|
|
|
|
|
|
|
// Process all of the operands of the instruction...
|
|
|
|
unsigned NumOperandsToProcess = MI->getNumOperands();
|
|
|
|
|
|
|
|
// Unless it is a PHI node. In this case, ONLY process the DEF, not any
|
|
|
|
// of the uses. They will be handled in other basic blocks.
|
2005-04-21 22:36:52 +00:00
|
|
|
if (MI->getOpcode() == TargetInstrInfo::PHI)
|
2004-06-24 21:31:16 +00:00
|
|
|
NumOperandsToProcess = 1;
|
2003-01-13 20:01:16 +00:00
|
|
|
|
2006-11-10 08:43:01 +00:00
|
|
|
// Process all uses...
|
2003-01-13 20:01:16 +00:00
|
|
|
for (unsigned i = 0; i != NumOperandsToProcess; ++i) {
|
2004-06-24 21:31:16 +00:00
|
|
|
MachineOperand &MO = MI->getOperand(i);
|
2006-09-05 20:19:27 +00:00
|
|
|
if (MO.isRegister() && MO.isUse() && MO.getReg()) {
|
2004-06-24 21:31:16 +00:00
|
|
|
if (MRegisterInfo::isVirtualRegister(MO.getReg())){
|
|
|
|
HandleVirtRegUse(getVarInfo(MO.getReg()), MBB, MI);
|
|
|
|
} else if (MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
|
2007-02-19 21:49:54 +00:00
|
|
|
!ReservedRegisters[MO.getReg()]) {
|
2004-06-24 21:31:16 +00:00
|
|
|
HandlePhysRegUse(MO.getReg(), MI);
|
|
|
|
}
|
|
|
|
}
|
2003-01-13 20:01:16 +00:00
|
|
|
}
|
|
|
|
|
2006-11-10 08:43:01 +00:00
|
|
|
// Process all defs...
|
2003-01-13 20:01:16 +00:00
|
|
|
for (unsigned i = 0; i != NumOperandsToProcess; ++i) {
|
2004-06-24 21:31:16 +00:00
|
|
|
MachineOperand &MO = MI->getOperand(i);
|
2006-09-05 20:19:27 +00:00
|
|
|
if (MO.isRegister() && MO.isDef() && MO.getReg()) {
|
2004-06-24 21:31:16 +00:00
|
|
|
if (MRegisterInfo::isVirtualRegister(MO.getReg())) {
|
|
|
|
VarInfo &VRInfo = getVarInfo(MO.getReg());
|
|
|
|
|
2004-07-19 06:26:50 +00:00
|
|
|
assert(VRInfo.DefInst == 0 && "Variable multiply defined!");
|
2004-06-24 21:31:16 +00:00
|
|
|
VRInfo.DefInst = MI;
|
2004-07-19 06:55:21 +00:00
|
|
|
// Defaults to dead
|
2004-07-19 07:04:55 +00:00
|
|
|
VRInfo.Kills.push_back(MI);
|
2004-06-24 21:31:16 +00:00
|
|
|
} else if (MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
|
2007-02-19 21:49:54 +00:00
|
|
|
!ReservedRegisters[MO.getReg()]) {
|
2004-06-24 21:31:16 +00:00
|
|
|
HandlePhysRegDef(MO.getReg(), MI);
|
|
|
|
}
|
|
|
|
}
|
2003-01-13 20:01:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle any virtual assignments from PHI nodes which might be at the
|
|
|
|
// bottom of this basic block. We check all of our successor blocks to see
|
|
|
|
// if they have PHI nodes, and if so, we simulate an assignment at the end
|
|
|
|
// of the current block.
|
2007-04-25 19:34:00 +00:00
|
|
|
if (!PHIVarInfo[MBB->getNumber()].empty()) {
|
|
|
|
SmallVector<unsigned, 4>& VarInfoVec = PHIVarInfo[MBB->getNumber()];
|
2006-05-04 01:26:39 +00:00
|
|
|
|
2007-04-25 19:34:00 +00:00
|
|
|
for (SmallVector<unsigned, 4>::iterator I = VarInfoVec.begin(),
|
2006-10-03 07:20:20 +00:00
|
|
|
E = VarInfoVec.end(); I != E; ++I) {
|
|
|
|
VarInfo& VRInfo = getVarInfo(*I);
|
|
|
|
assert(VRInfo.DefInst && "Register use before def (or no def)!");
|
|
|
|
|
|
|
|
// Only mark it alive only in the block we are representing.
|
|
|
|
MarkVirtRegAliveInBlock(VRInfo, MBB);
|
2003-01-13 20:01:16 +00:00
|
|
|
}
|
|
|
|
}
|
2005-04-21 22:36:52 +00:00
|
|
|
|
2006-11-15 20:51:59 +00:00
|
|
|
// Finally, if the last instruction in the block is a return, make sure to mark
|
2005-04-09 15:23:25 +00:00
|
|
|
// it as using all of the live-out values in the function.
|
|
|
|
if (!MBB->empty() && TII.isReturn(MBB->back().getOpcode())) {
|
|
|
|
MachineInstr *Ret = &MBB->back();
|
2007-03-17 09:29:54 +00:00
|
|
|
for (MachineFunction::liveout_iterator I = MF->liveout_begin(),
|
|
|
|
E = MF->liveout_end(); I != E; ++I) {
|
2005-04-09 15:23:25 +00:00
|
|
|
assert(MRegisterInfo::isPhysicalRegister(*I) &&
|
|
|
|
"Cannot have a live-in virtual register!");
|
|
|
|
HandlePhysRegUse(*I, Ret);
|
2006-11-15 20:51:59 +00:00
|
|
|
// Add live-out registers as implicit uses.
|
2007-04-26 19:00:32 +00:00
|
|
|
if (Ret->findRegisterUseOperandIdx(*I) == -1)
|
|
|
|
Ret->addRegOperand(*I, false, true);
|
2005-04-09 15:23:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-13 20:01:16 +00:00
|
|
|
// Loop over PhysRegInfo, killing any registers that are available at the
|
|
|
|
// end of the basic block. This also resets the PhysRegInfo map.
|
2007-04-25 19:34:00 +00:00
|
|
|
for (unsigned i = 0; i != NumRegs; ++i)
|
2003-01-13 20:01:16 +00:00
|
|
|
if (PhysRegInfo[i])
|
2004-06-24 21:31:16 +00:00
|
|
|
HandlePhysRegDef(i, 0);
|
2007-04-25 07:30:23 +00:00
|
|
|
|
|
|
|
// Clear some states between BB's. These are purely local information.
|
2007-04-25 21:34:08 +00:00
|
|
|
for (unsigned i = 0; i != NumRegs; ++i)
|
2007-04-25 07:30:23 +00:00
|
|
|
PhysRegPartDef[i].clear();
|
2007-04-25 19:34:00 +00:00
|
|
|
std::fill(PhysRegPartUse, PhysRegPartUse + NumRegs, (MachineInstr*)0);
|
2003-01-13 20:01:16 +00:00
|
|
|
}
|
|
|
|
|
2006-11-15 20:51:59 +00:00
|
|
|
// Convert and transfer the dead / killed information we have gathered into
|
|
|
|
// VirtRegInfo onto MI's.
|
2003-01-13 20:01:16 +00:00
|
|
|
//
|
2007-03-09 06:02:17 +00:00
|
|
|
for (unsigned i = 0, e1 = VirtRegInfo.size(); i != e1; ++i)
|
|
|
|
for (unsigned j = 0, e2 = VirtRegInfo[i].Kills.size(); j != e2; ++j) {
|
2004-07-19 07:04:55 +00:00
|
|
|
if (VirtRegInfo[i].Kills[j] == VirtRegInfo[i].DefInst)
|
2006-11-15 20:51:59 +00:00
|
|
|
addRegisterDead(i + MRegisterInfo::FirstVirtualRegister,
|
|
|
|
VirtRegInfo[i].Kills[j]);
|
2003-01-13 20:01:16 +00:00
|
|
|
else
|
2006-11-15 20:51:59 +00:00
|
|
|
addRegisterKilled(i + MRegisterInfo::FirstVirtualRegister,
|
|
|
|
VirtRegInfo[i].Kills[j]);
|
2003-01-13 20:01:16 +00:00
|
|
|
}
|
2004-07-01 04:24:29 +00:00
|
|
|
|
2004-07-09 16:44:37 +00:00
|
|
|
// Check to make sure there are no unreachable blocks in the MC CFG for the
|
|
|
|
// function. If so, it is due to a bug in the instruction selector or some
|
|
|
|
// other part of the code generator if this happens.
|
|
|
|
#ifndef NDEBUG
|
2007-03-17 09:29:54 +00:00
|
|
|
for(MachineFunction::iterator i = MF->begin(), e = MF->end(); i != e; ++i)
|
2004-07-09 16:44:37 +00:00
|
|
|
assert(Visited.count(&*i) != 0 && "unreachable basic block found");
|
|
|
|
#endif
|
|
|
|
|
2007-04-25 19:34:00 +00:00
|
|
|
delete[] PhysRegInfo;
|
|
|
|
delete[] PhysRegUsed;
|
|
|
|
delete[] PhysRegPartUse;
|
|
|
|
delete[] PhysRegPartDef;
|
|
|
|
delete[] PHIVarInfo;
|
|
|
|
|
2003-01-13 20:01:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
2004-02-19 18:28:02 +00:00
|
|
|
|
|
|
|
/// instructionChanged - When the address of an instruction changes, this
|
|
|
|
/// method should be called so that live variables can update its internal
|
|
|
|
/// data structures. This removes the records for OldMI, transfering them to
|
|
|
|
/// the records for NewMI.
|
|
|
|
void LiveVariables::instructionChanged(MachineInstr *OldMI,
|
|
|
|
MachineInstr *NewMI) {
|
2006-11-15 20:51:59 +00:00
|
|
|
// If the instruction defines any virtual registers, update the VarInfo,
|
|
|
|
// kill and dead information for the instruction.
|
2004-03-30 22:44:39 +00:00
|
|
|
for (unsigned i = 0, e = OldMI->getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = OldMI->getOperand(i);
|
2005-01-19 17:09:15 +00:00
|
|
|
if (MO.isRegister() && MO.getReg() &&
|
2004-02-19 18:28:02 +00:00
|
|
|
MRegisterInfo::isVirtualRegister(MO.getReg())) {
|
|
|
|
unsigned Reg = MO.getReg();
|
|
|
|
VarInfo &VI = getVarInfo(Reg);
|
2005-01-19 17:09:15 +00:00
|
|
|
if (MO.isDef()) {
|
2006-11-15 20:51:59 +00:00
|
|
|
if (MO.isDead()) {
|
|
|
|
MO.unsetIsDead();
|
|
|
|
addVirtualRegisterDead(Reg, NewMI);
|
|
|
|
}
|
2005-01-19 17:09:15 +00:00
|
|
|
// Update the defining instruction.
|
|
|
|
if (VI.DefInst == OldMI)
|
|
|
|
VI.DefInst = NewMI;
|
2005-01-19 17:11:51 +00:00
|
|
|
}
|
|
|
|
if (MO.isUse()) {
|
2006-11-15 20:51:59 +00:00
|
|
|
if (MO.isKill()) {
|
|
|
|
MO.unsetIsKill();
|
|
|
|
addVirtualRegisterKilled(Reg, NewMI);
|
|
|
|
}
|
2005-01-19 17:09:15 +00:00
|
|
|
// If this is a kill of the value, update the VI kills list.
|
|
|
|
if (VI.removeKill(OldMI))
|
|
|
|
VI.Kills.push_back(NewMI); // Yes, there was a kill of it
|
|
|
|
}
|
2004-02-19 18:28:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-09-03 00:05:09 +00:00
|
|
|
|
|
|
|
/// removeVirtualRegistersKilled - Remove all killed info for the specified
|
|
|
|
/// instruction.
|
|
|
|
void LiveVariables::removeVirtualRegistersKilled(MachineInstr *MI) {
|
2006-11-15 20:51:59 +00:00
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = MI->getOperand(i);
|
|
|
|
if (MO.isReg() && MO.isKill()) {
|
|
|
|
MO.unsetIsKill();
|
|
|
|
unsigned Reg = MO.getReg();
|
|
|
|
if (MRegisterInfo::isVirtualRegister(Reg)) {
|
|
|
|
bool removed = getVarInfo(Reg).removeKill(MI);
|
|
|
|
assert(removed && "kill not in register's VarInfo?");
|
|
|
|
}
|
2006-09-03 00:05:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// removeVirtualRegistersDead - Remove all of the dead registers for the
|
|
|
|
/// specified instruction from the live variable information.
|
|
|
|
void LiveVariables::removeVirtualRegistersDead(MachineInstr *MI) {
|
2006-11-15 20:51:59 +00:00
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = MI->getOperand(i);
|
|
|
|
if (MO.isReg() && MO.isDead()) {
|
|
|
|
MO.unsetIsDead();
|
|
|
|
unsigned Reg = MO.getReg();
|
|
|
|
if (MRegisterInfo::isVirtualRegister(Reg)) {
|
|
|
|
bool removed = getVarInfo(Reg).removeKill(MI);
|
|
|
|
assert(removed && "kill not in register's VarInfo?");
|
|
|
|
}
|
2006-09-03 00:05:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-03 07:20:20 +00:00
|
|
|
/// analyzePHINodes - Gather information about the PHI nodes in here. In
|
|
|
|
/// particular, we want to map the variable information of a virtual
|
|
|
|
/// register which is used in a PHI node. We map that to the BB the vreg is
|
|
|
|
/// coming from.
|
|
|
|
///
|
|
|
|
void LiveVariables::analyzePHINodes(const MachineFunction& Fn) {
|
|
|
|
for (MachineFunction::const_iterator I = Fn.begin(), E = Fn.end();
|
|
|
|
I != E; ++I)
|
|
|
|
for (MachineBasicBlock::const_iterator BBI = I->begin(), BBE = I->end();
|
|
|
|
BBI != BBE && BBI->getOpcode() == TargetInstrInfo::PHI; ++BBI)
|
|
|
|
for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
|
2007-04-25 19:34:00 +00:00
|
|
|
PHIVarInfo[BBI->getOperand(i + 1).getMachineBasicBlock()->getNumber()].
|
2006-10-03 07:20:20 +00:00
|
|
|
push_back(BBI->getOperand(i).getReg());
|
|
|
|
}
|