freebsd-dev/lib/CodeGen/PHIElimination.cpp

413 lines
16 KiB
C++
Raw Normal View History

2009-06-02 17:52:33 +00:00
//===-- PhiElimination.cpp - Eliminate PHI nodes by inserting copies ------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This pass eliminates machine instruction PHI nodes by inserting copy
// instructions. This destroys SSA information, but is the desired input for
// some register allocators.
//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "phielim"
2009-10-14 17:57:32 +00:00
#include "PHIElimination.h"
2009-06-02 17:52:33 +00:00
#include "llvm/CodeGen/LiveVariables.h"
#include "llvm/CodeGen/Passes.h"
2009-11-18 14:58:34 +00:00
#include "llvm/CodeGen/MachineDominators.h"
2009-06-02 17:52:33 +00:00
#include "llvm/CodeGen/MachineInstr.h"
#include "llvm/CodeGen/MachineInstrBuilder.h"
#include "llvm/CodeGen/MachineLoopInfo.h"
2009-06-02 17:52:33 +00:00
#include "llvm/CodeGen/MachineRegisterInfo.h"
2010-02-16 09:30:23 +00:00
#include "llvm/Target/TargetInstrInfo.h"
2009-11-18 14:58:34 +00:00
#include "llvm/Function.h"
2009-06-02 17:52:33 +00:00
#include "llvm/Target/TargetMachine.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/Support/Compiler.h"
2009-11-18 14:58:34 +00:00
#include "llvm/Support/Debug.h"
2009-06-02 17:52:33 +00:00
#include <algorithm>
#include <map>
using namespace llvm;
STATISTIC(NumAtomic, "Number of atomic phis lowered");
2010-01-01 10:31:22 +00:00
STATISTIC(NumReused, "Number of reused lowered phis");
2009-11-18 14:58:34 +00:00
2009-10-14 17:57:32 +00:00
char PHIElimination::ID = 0;
INITIALIZE_PASS(PHIElimination, "phi-node-elimination",
"Eliminate PHI nodes for register allocation", false, false);
2009-06-02 17:52:33 +00:00
char &llvm::PHIEliminationID = PHIElimination::ID;
2009-06-02 17:52:33 +00:00
2009-10-14 17:57:32 +00:00
void llvm::PHIElimination::getAnalysisUsage(AnalysisUsage &AU) const {
AU.addPreserved<LiveVariables>();
2009-11-18 14:58:34 +00:00
AU.addPreserved<MachineDominatorTree>();
AU.addPreserved<MachineLoopInfo>();
2009-10-14 17:57:32 +00:00
MachineFunctionPass::getAnalysisUsage(AU);
}
2010-05-04 20:50:39 +00:00
bool llvm::PHIElimination::runOnMachineFunction(MachineFunction &MF) {
MRI = &MF.getRegInfo();
2009-06-02 17:52:33 +00:00
bool Changed = false;
2009-11-18 14:58:34 +00:00
// Split critical edges to help the coalescer
if (LiveVariables *LV = getAnalysisIfAvailable<LiveVariables>()) {
MachineLoopInfo *MLI = getAnalysisIfAvailable<MachineLoopInfo>();
2010-05-04 20:50:39 +00:00
for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
Changed |= SplitPHIEdges(MF, *I, *LV, MLI);
}
2009-11-18 14:58:34 +00:00
// Populate VRegPHIUseCount
2010-05-04 20:50:39 +00:00
analyzePHINodes(MF);
2009-11-18 14:58:34 +00:00
2009-06-02 17:52:33 +00:00
// Eliminate PHI instructions by inserting copies into predecessor blocks.
2010-05-04 20:50:39 +00:00
for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
Changed |= EliminatePHINodes(MF, *I);
2009-06-02 17:52:33 +00:00
// Remove dead IMPLICIT_DEF instructions.
2010-01-01 10:31:22 +00:00
for (SmallPtrSet<MachineInstr*, 4>::iterator I = ImpDefs.begin(),
2009-06-02 17:52:33 +00:00
E = ImpDefs.end(); I != E; ++I) {
MachineInstr *DefMI = *I;
unsigned DefReg = DefMI->getOperand(0).getReg();
2010-04-02 08:54:30 +00:00
if (MRI->use_nodbg_empty(DefReg))
2009-06-02 17:52:33 +00:00
DefMI->eraseFromParent();
}
2010-01-01 10:31:22 +00:00
// Clean up the lowered PHI instructions.
for (LoweredPHIMap::iterator I = LoweredPHIs.begin(), E = LoweredPHIs.end();
I != E; ++I)
2010-05-04 20:50:39 +00:00
MF.DeleteMachineInstr(I->first);
2010-01-01 10:31:22 +00:00
LoweredPHIs.clear();
2009-06-02 17:52:33 +00:00
ImpDefs.clear();
VRegPHIUseCount.clear();
2010-05-04 20:50:39 +00:00
2009-06-02 17:52:33 +00:00
return Changed;
}
/// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions in
/// predecessor basic blocks.
///
2009-10-14 17:57:32 +00:00
bool llvm::PHIElimination::EliminatePHINodes(MachineFunction &MF,
MachineBasicBlock &MBB) {
2010-02-16 09:30:23 +00:00
if (MBB.empty() || !MBB.front().isPHI())
2009-06-02 17:52:33 +00:00
return false; // Quick exit for basic blocks without PHIs.
// Get an iterator to the first instruction after the last PHI node (this may
// also be the end of the basic block).
MachineBasicBlock::iterator AfterPHIsIt = SkipPHIsAndLabels(MBB, MBB.begin());
2010-02-16 09:30:23 +00:00
while (MBB.front().isPHI())
2009-06-02 17:52:33 +00:00
LowerAtomicPHINode(MBB, AfterPHIsIt);
return true;
}
/// isSourceDefinedByImplicitDef - Return true if all sources of the phi node
/// are implicit_def's.
static bool isSourceDefinedByImplicitDef(const MachineInstr *MPhi,
const MachineRegisterInfo *MRI) {
for (unsigned i = 1; i != MPhi->getNumOperands(); i += 2) {
unsigned SrcReg = MPhi->getOperand(i).getReg();
const MachineInstr *DefMI = MRI->getVRegDef(SrcReg);
2010-02-16 09:30:23 +00:00
if (!DefMI || !DefMI->isImplicitDef())
2009-06-02 17:52:33 +00:00
return false;
}
return true;
}
2009-11-18 14:58:34 +00:00
// FindCopyInsertPoint - Find a safe place in MBB to insert a copy from SrcReg
// when following the CFG edge to SuccMBB. This needs to be after any def of
// SrcReg, but before any subsequent point where control flow might jump out of
// the basic block.
2009-10-14 17:57:32 +00:00
MachineBasicBlock::iterator
llvm::PHIElimination::FindCopyInsertPoint(MachineBasicBlock &MBB,
2009-11-18 14:58:34 +00:00
MachineBasicBlock &SuccMBB,
2009-10-14 17:57:32 +00:00
unsigned SrcReg) {
2009-06-02 17:52:33 +00:00
// Handle the trivial case trivially.
if (MBB.empty())
return MBB.begin();
2009-11-18 14:58:34 +00:00
// Usually, we just want to insert the copy before the first terminator
// instruction. However, for the edge going to a landing pad, we must insert
// the copy before the call/invoke instruction.
if (!SuccMBB.isLandingPad())
2009-06-02 17:52:33 +00:00
return MBB.getFirstTerminator();
2009-11-18 14:58:34 +00:00
// Discover any defs/uses in this basic block.
2009-06-02 17:52:33 +00:00
SmallPtrSet<MachineInstr*, 8> DefUsesInMBB;
for (MachineRegisterInfo::reg_iterator RI = MRI->reg_begin(SrcReg),
2009-11-18 14:58:34 +00:00
RE = MRI->reg_end(); RI != RE; ++RI) {
2009-06-02 17:52:33 +00:00
MachineInstr *DefUseMI = &*RI;
if (DefUseMI->getParent() == &MBB)
DefUsesInMBB.insert(DefUseMI);
}
MachineBasicBlock::iterator InsertPoint;
if (DefUsesInMBB.empty()) {
2009-11-18 14:58:34 +00:00
// No defs. Insert the copy at the start of the basic block.
2009-06-02 17:52:33 +00:00
InsertPoint = MBB.begin();
} else if (DefUsesInMBB.size() == 1) {
2009-11-18 14:58:34 +00:00
// Insert the copy immediately after the def/use.
2009-06-02 17:52:33 +00:00
InsertPoint = *DefUsesInMBB.begin();
++InsertPoint;
} else {
2009-11-18 14:58:34 +00:00
// Insert the copy immediately after the last def/use.
2009-06-02 17:52:33 +00:00
InsertPoint = MBB.end();
while (!DefUsesInMBB.count(&*--InsertPoint)) {}
++InsertPoint;
}
// Make sure the copy goes after any phi nodes however.
return SkipPHIsAndLabels(MBB, InsertPoint);
}
/// LowerAtomicPHINode - Lower the PHI node at the top of the specified block,
/// under the assuption that it needs to be lowered in a way that supports
/// atomic execution of PHIs. This lowering method is always correct all of the
/// time.
2009-11-18 14:58:34 +00:00
///
2009-10-14 17:57:32 +00:00
void llvm::PHIElimination::LowerAtomicPHINode(
MachineBasicBlock &MBB,
MachineBasicBlock::iterator AfterPHIsIt) {
2010-01-01 10:31:22 +00:00
++NumAtomic;
2009-06-02 17:52:33 +00:00
// Unlink the PHI node from the basic block, but don't delete the PHI yet.
MachineInstr *MPhi = MBB.remove(MBB.begin());
unsigned NumSrcs = (MPhi->getNumOperands() - 1) / 2;
unsigned DestReg = MPhi->getOperand(0).getReg();
assert(MPhi->getOperand(0).getSubReg() == 0 && "Can't handle sub-reg PHIs");
2009-06-02 17:52:33 +00:00
bool isDead = MPhi->getOperand(0).isDead();
// Create a new register for the incoming PHI arguments.
MachineFunction &MF = *MBB.getParent();
unsigned IncomingReg = 0;
2010-01-01 10:31:22 +00:00
bool reusedIncoming = false; // Is IncomingReg reused from an earlier PHI?
2009-06-02 17:52:33 +00:00
// Insert a register to register copy at the top of the current block (but
// after any remaining phi nodes) which copies the new incoming register
// into the phi node destination.
const TargetInstrInfo *TII = MF.getTarget().getInstrInfo();
if (isSourceDefinedByImplicitDef(MPhi, MRI))
// If all sources of a PHI node are implicit_def, just emit an
// implicit_def instead of a copy.
BuildMI(MBB, AfterPHIsIt, MPhi->getDebugLoc(),
2010-02-16 09:30:23 +00:00
TII->get(TargetOpcode::IMPLICIT_DEF), DestReg);
2009-06-02 17:52:33 +00:00
else {
2010-01-01 10:31:22 +00:00
// Can we reuse an earlier PHI node? This only happens for critical edges,
// typically those created by tail duplication.
unsigned &entry = LoweredPHIs[MPhi];
if (entry) {
// An identical PHI node was already lowered. Reuse the incoming register.
IncomingReg = entry;
reusedIncoming = true;
++NumReused;
2010-01-15 15:37:28 +00:00
DEBUG(dbgs() << "Reusing %reg" << IncomingReg << " for " << *MPhi);
2010-01-01 10:31:22 +00:00
} else {
2010-07-13 17:19:57 +00:00
const TargetRegisterClass *RC = MF.getRegInfo().getRegClass(DestReg);
2010-01-01 10:31:22 +00:00
entry = IncomingReg = MF.getRegInfo().createVirtualRegister(RC);
}
2010-07-13 17:19:57 +00:00
BuildMI(MBB, AfterPHIsIt, MPhi->getDebugLoc(),
TII->get(TargetOpcode::COPY), DestReg)
.addReg(IncomingReg);
2009-06-02 17:52:33 +00:00
}
// Update live variable information if there is any.
LiveVariables *LV = getAnalysisIfAvailable<LiveVariables>();
if (LV) {
MachineInstr *PHICopy = prior(AfterPHIsIt);
if (IncomingReg) {
2010-01-01 10:31:22 +00:00
LiveVariables::VarInfo &VI = LV->getVarInfo(IncomingReg);
2009-06-02 17:52:33 +00:00
// Increment use count of the newly created virtual register.
2010-01-01 10:31:22 +00:00
VI.NumUses++;
2010-03-03 17:27:15 +00:00
LV->setPHIJoin(IncomingReg);
2010-01-01 10:31:22 +00:00
// When we are reusing the incoming register, it may already have been
// killed in this block. The old kill will also have been inserted at
// AfterPHIsIt, so it appears before the current PHICopy.
if (reusedIncoming)
if (MachineInstr *OldKill = VI.findKill(&MBB)) {
2010-01-15 15:37:28 +00:00
DEBUG(dbgs() << "Remove old kill from " << *OldKill);
2010-01-01 10:31:22 +00:00
LV->removeVirtualRegisterKilled(IncomingReg, OldKill);
DEBUG(MBB.dump());
}
2009-06-02 17:52:33 +00:00
// Add information to LiveVariables to know that the incoming value is
// killed. Note that because the value is defined in several places (once
// each for each incoming block), the "def" block and instruction fields
// for the VarInfo is not filled in.
LV->addVirtualRegisterKilled(IncomingReg, PHICopy);
}
// Since we are going to be deleting the PHI node, if it is the last use of
// any registers, or if the value itself is dead, we need to move this
// information over to the new copy we just inserted.
LV->removeVirtualRegistersKilled(MPhi);
// If the result is dead, update LV.
if (isDead) {
LV->addVirtualRegisterDead(DestReg, PHICopy);
LV->removeVirtualRegisterDead(DestReg, MPhi);
}
}
// Adjust the VRegPHIUseCount map to account for the removal of this PHI node.
for (unsigned i = 1; i != MPhi->getNumOperands(); i += 2)
2010-01-01 10:31:22 +00:00
--VRegPHIUseCount[BBVRegPair(MPhi->getOperand(i+1).getMBB()->getNumber(),
2009-06-02 17:52:33 +00:00
MPhi->getOperand(i).getReg())];
// Now loop over all of the incoming arguments, changing them to copy into the
// IncomingReg register in the corresponding predecessor basic block.
SmallPtrSet<MachineBasicBlock*, 8> MBBsInsertedInto;
for (int i = NumSrcs - 1; i >= 0; --i) {
unsigned SrcReg = MPhi->getOperand(i*2+1).getReg();
unsigned SrcSubReg = MPhi->getOperand(i*2+1).getSubReg();
2009-06-02 17:52:33 +00:00
assert(TargetRegisterInfo::isVirtualRegister(SrcReg) &&
"Machine PHI Operands must all be virtual registers!");
2009-10-14 17:57:32 +00:00
// Get the MachineBasicBlock equivalent of the BasicBlock that is the source
// path the PHI.
MachineBasicBlock &opBlock = *MPhi->getOperand(i*2+2).getMBB();
2009-06-02 17:52:33 +00:00
// If source is defined by an implicit def, there is no need to insert a
// copy.
MachineInstr *DefMI = MRI->getVRegDef(SrcReg);
2010-02-16 09:30:23 +00:00
if (DefMI->isImplicitDef()) {
2009-06-02 17:52:33 +00:00
ImpDefs.insert(DefMI);
continue;
}
// Check to make sure we haven't already emitted the copy for this block.
// This can happen because PHI nodes may have multiple entries for the same
// basic block.
if (!MBBsInsertedInto.insert(&opBlock))
continue; // If the copy has already been emitted, we're done.
2009-11-18 14:58:34 +00:00
2009-06-02 17:52:33 +00:00
// Find a safe location to insert the copy, this may be the first terminator
// in the block (or end()).
2009-11-18 14:58:34 +00:00
MachineBasicBlock::iterator InsertPos =
FindCopyInsertPoint(opBlock, MBB, SrcReg);
2009-06-02 17:52:33 +00:00
// Insert the copy.
2010-01-01 10:31:22 +00:00
if (!reusedIncoming && IncomingReg)
2010-07-13 17:19:57 +00:00
BuildMI(opBlock, InsertPos, MPhi->getDebugLoc(),
TII->get(TargetOpcode::COPY), IncomingReg).addReg(SrcReg, 0, SrcSubReg);
2009-06-02 17:52:33 +00:00
// Now update live variable information if we have it. Otherwise we're done
if (!LV) continue;
2009-11-18 14:58:34 +00:00
2009-06-02 17:52:33 +00:00
// We want to be able to insert a kill of the register if this PHI (aka, the
// copy we just inserted) is the last use of the source value. Live
// variable analysis conservatively handles this by saying that the value is
// live until the end of the block the PHI entry lives in. If the value
// really is dead at the PHI copy, there will be no successor blocks which
// have the value live-in.
2009-11-18 14:58:34 +00:00
2009-06-02 17:52:33 +00:00
// Also check to see if this register is in use by another PHI node which
// has not yet been eliminated. If so, it will be killed at an appropriate
// point later.
// Is it used by any PHI instructions in this block?
2010-01-01 10:31:22 +00:00
bool ValueIsUsed = VRegPHIUseCount[BBVRegPair(opBlock.getNumber(), SrcReg)];
2009-06-02 17:52:33 +00:00
// Okay, if we now know that the value is not live out of the block, we can
// add a kill marker in this block saying that it kills the incoming value!
2009-12-15 18:09:07 +00:00
if (!ValueIsUsed && !LV->isLiveOut(SrcReg, opBlock)) {
2009-06-02 17:52:33 +00:00
// In our final twist, we have to decide which instruction kills the
// register. In most cases this is the copy, however, the first
// terminator instruction at the end of the block may also use the value.
// In this case, we should mark *it* as being the killing block, not the
// copy.
2010-01-01 10:31:22 +00:00
MachineBasicBlock::iterator KillInst;
2009-06-02 17:52:33 +00:00
MachineBasicBlock::iterator Term = opBlock.getFirstTerminator();
2010-01-01 10:31:22 +00:00
if (Term != opBlock.end() && Term->readsRegister(SrcReg)) {
KillInst = Term;
2009-11-18 14:58:34 +00:00
2009-06-02 17:52:33 +00:00
// Check that no other terminators use values.
#ifndef NDEBUG
2009-12-15 18:09:07 +00:00
for (MachineBasicBlock::iterator TI = llvm::next(Term);
TI != opBlock.end(); ++TI) {
2009-06-02 17:52:33 +00:00
assert(!TI->readsRegister(SrcReg) &&
"Terminator instructions cannot use virtual registers unless"
"they are the first terminator in a block!");
}
#endif
2010-01-01 10:31:22 +00:00
} else if (reusedIncoming || !IncomingReg) {
// We may have to rewind a bit if we didn't insert a copy this time.
KillInst = Term;
while (KillInst != opBlock.begin())
if ((--KillInst)->readsRegister(SrcReg))
break;
} else {
// We just inserted this copy.
KillInst = prior(InsertPos);
2009-06-02 17:52:33 +00:00
}
2010-01-01 10:31:22 +00:00
assert(KillInst->readsRegister(SrcReg) && "Cannot find kill instruction");
2009-11-18 14:58:34 +00:00
2009-06-02 17:52:33 +00:00
// Finally, mark it killed.
LV->addVirtualRegisterKilled(SrcReg, KillInst);
// This vreg no longer lives all of the way through opBlock.
unsigned opBlockNum = opBlock.getNumber();
2009-11-18 14:58:34 +00:00
LV->getVarInfo(SrcReg).AliveBlocks.reset(opBlockNum);
2009-06-02 17:52:33 +00:00
}
}
2009-11-18 14:58:34 +00:00
2010-01-01 10:31:22 +00:00
// Really delete the PHI instruction now, if it is not in the LoweredPHIs map.
if (reusedIncoming || !IncomingReg)
MF.DeleteMachineInstr(MPhi);
2009-06-02 17:52:33 +00:00
}
/// analyzePHINodes - Gather information about the PHI nodes in here. In
/// particular, we want to map the number of uses of a virtual register which is
/// used in a PHI node. We map that to the BB the vreg is coming from. This is
/// used later to determine when the vreg is killed in the BB.
///
2010-05-04 20:50:39 +00:00
void llvm::PHIElimination::analyzePHINodes(const MachineFunction& MF) {
for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
2009-06-02 17:52:33 +00:00
I != E; ++I)
for (MachineBasicBlock::const_iterator BBI = I->begin(), BBE = I->end();
2010-02-16 09:30:23 +00:00
BBI != BBE && BBI->isPHI(); ++BBI)
2009-06-02 17:52:33 +00:00
for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
2010-01-01 10:31:22 +00:00
++VRegPHIUseCount[BBVRegPair(BBI->getOperand(i+1).getMBB()->getNumber(),
2009-06-02 17:52:33 +00:00
BBI->getOperand(i).getReg())];
}
2009-11-18 14:58:34 +00:00
bool llvm::PHIElimination::SplitPHIEdges(MachineFunction &MF,
2009-11-19 08:59:28 +00:00
MachineBasicBlock &MBB,
LiveVariables &LV,
MachineLoopInfo *MLI) {
2010-02-16 09:30:23 +00:00
if (MBB.empty() || !MBB.front().isPHI() || MBB.isLandingPad())
2009-11-18 14:58:34 +00:00
return false; // Quick exit for basic blocks without PHIs.
2009-11-19 08:59:28 +00:00
bool Changed = false;
2009-11-18 14:58:34 +00:00
for (MachineBasicBlock::const_iterator BBI = MBB.begin(), BBE = MBB.end();
2010-02-16 09:30:23 +00:00
BBI != BBE && BBI->isPHI(); ++BBI) {
2009-11-18 14:58:34 +00:00
for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2) {
unsigned Reg = BBI->getOperand(i).getReg();
MachineBasicBlock *PreMBB = BBI->getOperand(i+1).getMBB();
// We break edges when registers are live out from the predecessor block
// (not considering PHI nodes). If the register is live in to this block
// anyway, we would gain nothing from splitting.
// Avoid splitting backedges of loops. It would introduce small
// out-of-line blocks into the loop which is very bad for code placement.
if (PreMBB != &MBB &&
!LV.isLiveIn(Reg, MBB) && LV.isLiveOut(Reg, *PreMBB)) {
if (!MLI ||
!(MLI->getLoopFor(PreMBB) == MLI->getLoopFor(&MBB) &&
MLI->isLoopHeader(&MBB)))
Changed |= PreMBB->SplitCriticalEdge(&MBB, this) != 0;
}
2009-11-18 14:58:34 +00:00
}
}
return true;
}