diff options
author | Tanya Lattner <tonic@nondot.org> | 2004-05-24 07:14:35 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2004-05-24 07:14:35 +0000 |
commit | 91fa3a9908b8eb852efa32b0eae73a9b777fe9a7 (patch) | |
tree | c1418a405eebeb8518ed6b94953f5998fd5097e9 /llvm/lib | |
parent | 6f02714a10b87f5bdd8e34484d66d684a5c4a5a0 (diff) | |
download | bcm5719-llvm-91fa3a9908b8eb852efa32b0eae73a9b777fe9a7.tar.gz bcm5719-llvm-91fa3a9908b8eb852efa32b0eae73a9b777fe9a7.zip |
Moved MachineBasicBlock deconstructor to cpp file and removed it from LeakDetector to fix memory leak bug.
llvm-svn: 13718
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/MachineBasicBlock.cpp | 10 | ||||
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 6 |
2 files changed, 11 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp index c0b144d26c3..c72b247d8a4 100644 --- a/llvm/lib/CodeGen/MachineBasicBlock.cpp +++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp @@ -20,14 +20,20 @@ #include "Support/LeakDetector.h" using namespace llvm; +MachineBasicBlock::~MachineBasicBlock() { + LeakDetector::removeGarbageObject(this); +} + + + // MBBs start out as #-1. When a MBB is added to a MachineFunction, it // gets the next available unique MBB number. If it is removed from a // MachineFunction, it goes back to being #-1. void ilist_traits<MachineBasicBlock>::addNodeToList (MachineBasicBlock* N) { assert(N->Parent == 0 && "machine instruction already in a basic block"); - N->Parent = parent; - N->Number = parent->getNextMBBNumber(); + N->Parent = Parent; + N->Number = Parent->getNextMBBNumber(); LeakDetector::removeGarbageObject(N); diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index a3e9211f5c3..54149c3281f 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -98,9 +98,9 @@ void ilist_traits<MachineBasicBlock>::transferNodesFromList( ilist_iterator<MachineBasicBlock> first, ilist_iterator<MachineBasicBlock> last) { - if (parent != toList.parent) + if (Parent != toList.Parent) for (; first != last; ++first) - first->Parent = toList.parent; + first->Parent = toList.Parent; } MachineFunction::MachineFunction(const Function *F, @@ -110,7 +110,7 @@ MachineFunction::MachineFunction(const Function *F, MFInfo = new MachineFunctionInfo(*this); FrameInfo = new MachineFrameInfo(); ConstantPool = new MachineConstantPool(); - BasicBlocks.parent = this; + BasicBlocks.Parent = this; } MachineFunction::~MachineFunction() { |