forked from OSchip/llvm-project
Fix a leak in the FastISel code that Chris pointed out.
llvm-svn: 55031
This commit is contained in:
parent
eaef5f612a
commit
98265cae87
|
@ -43,13 +43,13 @@ public:
|
||||||
SelectInstructions(BasicBlock::iterator Begin, BasicBlock::iterator End,
|
SelectInstructions(BasicBlock::iterator Begin, BasicBlock::iterator End,
|
||||||
DenseMap<const Value*, unsigned> &ValueMap);
|
DenseMap<const Value*, unsigned> &ValueMap);
|
||||||
|
|
||||||
|
virtual ~FastISel();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
FastISel(MachineBasicBlock *mbb, MachineFunction *mf,
|
FastISel(MachineBasicBlock *mbb, MachineFunction *mf,
|
||||||
const TargetInstrInfo *tii)
|
const TargetInstrInfo *tii)
|
||||||
: MBB(mbb), MF(mf), TII(tii) {}
|
: MBB(mbb), MF(mf), TII(tii) {}
|
||||||
|
|
||||||
virtual ~FastISel();
|
|
||||||
|
|
||||||
/// FastEmit_r - This method is called by target-independent code
|
/// FastEmit_r - This method is called by target-independent code
|
||||||
/// to request that an instruction with the given type and opcode
|
/// to request that an instruction with the given type and opcode
|
||||||
/// be emitted.
|
/// be emitted.
|
||||||
|
|
|
@ -5115,6 +5115,14 @@ void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
|
||||||
if (FastISel *F = TLI.createFastISel(BB, &FuncInfo.MF,
|
if (FastISel *F = TLI.createFastISel(BB, &FuncInfo.MF,
|
||||||
TLI.getTargetMachine().getInstrInfo())) {
|
TLI.getTargetMachine().getInstrInfo())) {
|
||||||
Begin = F->SelectInstructions(Begin, LLVMBB->end(), FuncInfo.ValueMap);
|
Begin = F->SelectInstructions(Begin, LLVMBB->end(), FuncInfo.ValueMap);
|
||||||
|
|
||||||
|
// Clean up the FastISel object. TODO: Reorganize what data is
|
||||||
|
// stored in the FastISel class itself and what is merely passed
|
||||||
|
// to the SelectInstructions method, and then move the creation
|
||||||
|
// and deletion of the FastISel object up so that it is only
|
||||||
|
// done once per MachineFunction.
|
||||||
|
delete F;
|
||||||
|
|
||||||
if (Begin == LLVMBB->end())
|
if (Begin == LLVMBB->end())
|
||||||
// The "fast" selector selected the entire block, so we're done.
|
// The "fast" selector selected the entire block, so we're done.
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue