diff options
author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-02-16 07:17:43 +0000 |
---|---|---|
committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-02-16 07:17:43 +0000 |
commit | 14f3fe81c6feab49d9af0a98229418e354871b17 (patch) | |
tree | b196137f091e39ce55f21769922dc9c0cc83ba6f /llvm/lib/CodeGen/MachineInstr.cpp | |
parent | e42732e75f9a03701939c0124204b89d3289262c (diff) | |
download | llvm-14f3fe81c6feab49d9af0a98229418e354871b17.zip llvm-14f3fe81c6feab49d9af0a98229418e354871b17.tar.gz llvm-14f3fe81c6feab49d9af0a98229418e354871b17.tar.bz2 |
Add LeakDetection to MachineInstr.
Move out of line member functions of MachineBasicBlock to
MachineBasicBlock.cpp.
llvm-svn: 11497
Diffstat (limited to 'llvm/lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineInstr.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index ca2c2db..bb7cefe 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -20,6 +20,7 @@ #include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/MRegisterInfo.h" +#include "Support/LeakDetector.h" namespace llvm { @@ -38,6 +39,8 @@ MachineInstr::MachineInstr(short opcode, unsigned numOperands) numImplicitRefs(0), operands(numOperands, MachineOperand()), parent(0) { + // Make sure that we get added to a machine basicblock + LeakDetector::addGarbageObject(this); } /// MachineInstr ctor - This constructor only does a _reserve_ of the operands, @@ -48,6 +51,8 @@ MachineInstr::MachineInstr(short opcode, unsigned numOperands) MachineInstr::MachineInstr(short opcode, unsigned numOperands, bool XX, bool YY) : Opcode(opcode), numImplicitRefs(0), parent(0) { operands.reserve(numOperands); + // 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 @@ -58,9 +63,16 @@ MachineInstr::MachineInstr(MachineBasicBlock *MBB, short opcode, : Opcode(opcode), numImplicitRefs(0), parent(0) { assert(MBB && "Cannot use inserting ctor with null basic block!"); operands.reserve(numOperands); + // Make sure that we get added to a machine basicblock + LeakDetector::addGarbageObject(this); MBB->push_back(this); // Add instruction to end of basic block! } +MachineInstr::~MachineInstr() +{ + LeakDetector::removeGarbageObject(this); +} + /// OperandComplete - Return true if it's illegal to add a new operand /// bool MachineInstr::OperandsComplete() const { |