forked from OSchip/llvm-project
Re-introduce LeakDetector support for MachineInstrs and MachineBasicBlocks.
Fix a leak that this turned up in LowerSubregs.cpp. And, comment a leak in LiveIntervalAnalysis.cpp. llvm-svn: 53746
This commit is contained in:
parent
e330aacbed
commit
0ece943845
|
@ -67,7 +67,7 @@ class MachineBasicBlock {
|
||||||
|
|
||||||
explicit MachineBasicBlock(MachineFunction &mf, const BasicBlock *bb);
|
explicit MachineBasicBlock(MachineFunction &mf, const BasicBlock *bb);
|
||||||
|
|
||||||
~MachineBasicBlock() {}
|
~MachineBasicBlock();
|
||||||
|
|
||||||
// MachineBasicBlocks are allocated and owned by MachineFunction.
|
// MachineBasicBlocks are allocated and owned by MachineFunction.
|
||||||
friend class MachineFunction;
|
friend class MachineFunction;
|
||||||
|
|
|
@ -1585,9 +1585,9 @@ addIntervalsForSpills(const LiveInterval &li,
|
||||||
if (ReMatDefMI && isReMaterializable(li, VNI, ReMatDefMI, dummy)) {
|
if (ReMatDefMI && isReMaterializable(li, VNI, ReMatDefMI, dummy)) {
|
||||||
// Remember how to remat the def of this val#.
|
// Remember how to remat the def of this val#.
|
||||||
ReMatOrigDefs[VN] = ReMatDefMI;
|
ReMatOrigDefs[VN] = ReMatDefMI;
|
||||||
// Original def may be modified so we have to make a copy here. vrm must
|
// Original def may be modified so we have to make a copy here.
|
||||||
// delete these!
|
// FIXME: This is a memory leak. vrm should delete these!
|
||||||
ReMatDefs[VN] = ReMatDefMI = mf_->CloneMachineInstr(ReMatDefMI);
|
ReMatDefs[VN] = mf_->CloneMachineInstr(ReMatDefMI);
|
||||||
|
|
||||||
bool CanDelete = true;
|
bool CanDelete = true;
|
||||||
if (VNI->hasPHIKill) {
|
if (VNI->hasPHIKill) {
|
||||||
|
|
|
@ -80,7 +80,7 @@ bool LowerSubregsInstructionPass::LowerExtract(MachineInstr *MI) {
|
||||||
}
|
}
|
||||||
|
|
||||||
DOUT << "\n";
|
DOUT << "\n";
|
||||||
MBB->remove(MI);
|
MBB->erase(MI);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -119,7 +119,7 @@ bool LowerSubregsInstructionPass::LowerSubregToReg(MachineInstr *MI) {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
DOUT << "\n";
|
DOUT << "\n";
|
||||||
MBB->remove(MI);
|
MBB->erase(MI);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -164,7 +164,7 @@ bool LowerSubregsInstructionPass::LowerInsert(MachineInstr *MI) {
|
||||||
}
|
}
|
||||||
|
|
||||||
DOUT << "\n";
|
DOUT << "\n";
|
||||||
MBB->remove(MI);
|
MBB->erase(MI);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
#include "llvm/Target/TargetData.h"
|
#include "llvm/Target/TargetData.h"
|
||||||
#include "llvm/Target/TargetInstrDesc.h"
|
#include "llvm/Target/TargetInstrDesc.h"
|
||||||
#include "llvm/Target/TargetMachine.h"
|
#include "llvm/Target/TargetMachine.h"
|
||||||
|
#include "llvm/Support/LeakDetector.h"
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
|
@ -26,6 +27,10 @@ MachineBasicBlock::MachineBasicBlock(MachineFunction &mf, const BasicBlock *bb)
|
||||||
Insts.getTraits().Parent = this;
|
Insts.getTraits().Parent = this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MachineBasicBlock::~MachineBasicBlock() {
|
||||||
|
LeakDetector::removeGarbageObject(this);
|
||||||
|
}
|
||||||
|
|
||||||
std::ostream& llvm::operator<<(std::ostream &OS, const MachineBasicBlock &MBB) {
|
std::ostream& llvm::operator<<(std::ostream &OS, const MachineBasicBlock &MBB) {
|
||||||
MBB.print(OS);
|
MBB.print(OS);
|
||||||
return OS;
|
return OS;
|
||||||
|
@ -46,11 +51,14 @@ void alist_traits<MachineBasicBlock>::addNodeToList(MachineBasicBlock* N) {
|
||||||
MachineRegisterInfo &RegInfo = MF.getRegInfo();
|
MachineRegisterInfo &RegInfo = MF.getRegInfo();
|
||||||
for (MachineBasicBlock::iterator I = N->begin(), E = N->end(); I != E; ++I)
|
for (MachineBasicBlock::iterator I = N->begin(), E = N->end(); I != E; ++I)
|
||||||
I->AddRegOperandsToUseLists(RegInfo);
|
I->AddRegOperandsToUseLists(RegInfo);
|
||||||
|
|
||||||
|
LeakDetector::removeGarbageObject(N);
|
||||||
}
|
}
|
||||||
|
|
||||||
void alist_traits<MachineBasicBlock>::removeNodeFromList(MachineBasicBlock* N) {
|
void alist_traits<MachineBasicBlock>::removeNodeFromList(MachineBasicBlock* N) {
|
||||||
N->getParent()->removeFromMBBNumbering(N->Number);
|
N->getParent()->removeFromMBBNumbering(N->Number);
|
||||||
N->Number = -1;
|
N->Number = -1;
|
||||||
|
LeakDetector::addGarbageObject(N);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -65,6 +73,8 @@ void alist_traits<MachineInstr>::addNodeToList(MachineInstr* N) {
|
||||||
// use/def lists.
|
// use/def lists.
|
||||||
MachineFunction *MF = Parent->getParent();
|
MachineFunction *MF = Parent->getParent();
|
||||||
N->AddRegOperandsToUseLists(MF->getRegInfo());
|
N->AddRegOperandsToUseLists(MF->getRegInfo());
|
||||||
|
|
||||||
|
LeakDetector::removeGarbageObject(N);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// removeNodeFromList (MI) - When we remove an instruction from a basic block
|
/// removeNodeFromList (MI) - When we remove an instruction from a basic block
|
||||||
|
@ -77,6 +87,8 @@ void alist_traits<MachineInstr>::removeNodeFromList(MachineInstr* N) {
|
||||||
N->RemoveRegOperandsFromUseLists();
|
N->RemoveRegOperandsFromUseLists();
|
||||||
|
|
||||||
N->setParent(0);
|
N->setParent(0);
|
||||||
|
|
||||||
|
LeakDetector::addGarbageObject(N);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// transferNodesFromList (MI) - When moving a range of instructions from one
|
/// transferNodesFromList (MI) - When moving a range of instructions from one
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
#include "llvm/Target/TargetInstrInfo.h"
|
#include "llvm/Target/TargetInstrInfo.h"
|
||||||
#include "llvm/Target/TargetInstrDesc.h"
|
#include "llvm/Target/TargetInstrDesc.h"
|
||||||
#include "llvm/Target/TargetRegisterInfo.h"
|
#include "llvm/Target/TargetRegisterInfo.h"
|
||||||
|
#include "llvm/Support/LeakDetector.h"
|
||||||
#include "llvm/Support/MathExtras.h"
|
#include "llvm/Support/MathExtras.h"
|
||||||
#include "llvm/Support/Streams.h"
|
#include "llvm/Support/Streams.h"
|
||||||
#include <ostream>
|
#include <ostream>
|
||||||
|
@ -257,6 +258,8 @@ MachineMemOperand::MachineMemOperand(const Value *v, unsigned int f,
|
||||||
/// TID NULL and no operands.
|
/// TID NULL and no operands.
|
||||||
MachineInstr::MachineInstr()
|
MachineInstr::MachineInstr()
|
||||||
: TID(0), NumImplicitOps(0), Parent(0) {
|
: TID(0), NumImplicitOps(0), Parent(0) {
|
||||||
|
// Make sure that we get added to a machine basicblock
|
||||||
|
LeakDetector::addGarbageObject(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MachineInstr::addImplicitDefUseOperands() {
|
void MachineInstr::addImplicitDefUseOperands() {
|
||||||
|
@ -283,6 +286,8 @@ MachineInstr::MachineInstr(const TargetInstrDesc &tid, bool NoImp)
|
||||||
Operands.reserve(NumImplicitOps + TID->getNumOperands());
|
Operands.reserve(NumImplicitOps + TID->getNumOperands());
|
||||||
if (!NoImp)
|
if (!NoImp)
|
||||||
addImplicitDefUseOperands();
|
addImplicitDefUseOperands();
|
||||||
|
// Make sure that we get added to a machine basicblock
|
||||||
|
LeakDetector::addGarbageObject(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// MachineInstr ctor - Work exactly the same as the ctor above, except that the
|
/// MachineInstr ctor - Work exactly the same as the ctor above, except that the
|
||||||
|
@ -300,6 +305,8 @@ MachineInstr::MachineInstr(MachineBasicBlock *MBB,
|
||||||
NumImplicitOps++;
|
NumImplicitOps++;
|
||||||
Operands.reserve(NumImplicitOps + TID->getNumOperands());
|
Operands.reserve(NumImplicitOps + TID->getNumOperands());
|
||||||
addImplicitDefUseOperands();
|
addImplicitDefUseOperands();
|
||||||
|
// Make sure that we get added to a machine basicblock
|
||||||
|
LeakDetector::addGarbageObject(this);
|
||||||
MBB->push_back(this); // Add instruction to end of basic block!
|
MBB->push_back(this); // Add instruction to end of basic block!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -326,6 +333,7 @@ MachineInstr::MachineInstr(MachineFunction &MF, const MachineInstr &MI) {
|
||||||
}
|
}
|
||||||
|
|
||||||
MachineInstr::~MachineInstr() {
|
MachineInstr::~MachineInstr() {
|
||||||
|
LeakDetector::removeGarbageObject(this);
|
||||||
assert(MemOperands.empty() &&
|
assert(MemOperands.empty() &&
|
||||||
"MachineInstr being deleted with live memoperands!");
|
"MachineInstr being deleted with live memoperands!");
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
|
|
Loading…
Reference in New Issue