diff options
author | Matthias Braun <matze@braunis.de> | 2016-08-23 03:20:09 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2016-08-23 03:20:09 +0000 |
commit | fd936841ebefb39a383fe651126998f6728efcbc (patch) | |
tree | 0a1cad6c837cfb2c8da49c46ed4a2e81c95961d0 /llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp | |
parent | 72ca69e40321a9866a95e3d03a8054af2cf73a8e (diff) | |
download | llvm-fd936841ebefb39a383fe651126998f6728efcbc.zip llvm-fd936841ebefb39a383fe651126998f6728efcbc.tar.gz llvm-fd936841ebefb39a383fe651126998f6728efcbc.tar.bz2 |
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/lib/CodeGen/StackMapLivenessAnalysis.cpp')
-rw-r--r-- | llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp b/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp index 9da22db..86dab76 100644 --- a/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp +++ b/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp @@ -17,7 +17,6 @@ #include "llvm/CodeGen/LivePhysRegs.h" #include "llvm/CodeGen/MachineFrameInfo.h" #include "llvm/CodeGen/MachineFunction.h" -#include "llvm/CodeGen/MachineFunctionAnalysis.h" #include "llvm/CodeGen/MachineFunctionPass.h" #include "llvm/CodeGen/Passes.h" #include "llvm/Support/CommandLine.h" |