summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/MI/LiveIntervalTest.cpp
diff options
context:
space:
mode:
authorMatthias Braun <matze@braunis.de>2016-08-23 03:20:09 +0000
committerMatthias Braun <matze@braunis.de>2016-08-23 03:20:09 +0000
commitfd936841ebefb39a383fe651126998f6728efcbc (patch)
tree0a1cad6c837cfb2c8da49c46ed4a2e81c95961d0 /llvm/unittests/MI/LiveIntervalTest.cpp
parent72ca69e40321a9866a95e3d03a8054af2cf73a8e (diff)
downloadbcm5719-llvm-fd936841ebefb39a383fe651126998f6728efcbc.tar.gz
bcm5719-llvm-fd936841ebefb39a383fe651126998f6728efcbc.zip
CodeGen: Remove MachineFunctionAnalysis => Enable (Machine)ModulePasses
This patch removes the MachineFunctionAnalysis. Instead we keep a map from IR Function to MachineFunction in the MachineModuleInfo. This allows the insertion of ModulePasses into the codegen pipeline without breaking it because the MachineFunctionAnalysis gets dropped before a module pass. Peak memory should stay unchanged without a ModulePass in the codegen pipeline: Previously the MachineFunction was freed at the end of a codegen function pipeline because the MachineFunctionAnalysis was dropped; With this patch the MachineFunction is freed after the AsmPrinter has finished. Differential Revision: http://reviews.llvm.org/D23736 llvm-svn: 279502
Diffstat (limited to 'llvm/unittests/MI/LiveIntervalTest.cpp')
-rw-r--r--llvm/unittests/MI/LiveIntervalTest.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/unittests/MI/LiveIntervalTest.cpp b/llvm/unittests/MI/LiveIntervalTest.cpp
index 12c3ad66073..5fe5c916719 100644
--- a/llvm/unittests/MI/LiveIntervalTest.cpp
+++ b/llvm/unittests/MI/LiveIntervalTest.cpp
@@ -70,8 +70,7 @@ std::unique_ptr<Module> parseMIR(LLVMContext &Context,
return nullptr;
const LLVMTargetMachine &LLVMTM = static_cast<const LLVMTargetMachine&>(TM);
- LLVMTM.addMachineModuleInfo(PM);
- LLVMTM.addMachineFunctionAnalysis(PM, MIR.get());
+ LLVMTM.addMachineModuleInfo(PM, MIR.get());
return M;
}
OpenPOWER on IntegriCloud