1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Move malloc/free lowering after tracing until lli supports

calls to external malloc/free functions.

llvm-svn: 893
This commit is contained in:
Vikram S. Adve 2001-10-18 18:20:20 +00:00
parent 0b908c75a6
commit a70aaaf07a

View File

@ -121,9 +121,6 @@ int main(int argc, char **argv) {
// Build up all of the passes that we want to do to the module...
vector<Pass*> Passes;
// Replace malloc and free instructions with library calls
Passes.push_back(new LowerAllocations(Target.DataLayout));
// Hoist constants out of PHI nodes into predecessor BB's
Passes.push_back(new HoistPHIConstants());
@ -148,10 +145,16 @@ int main(int argc, char **argv) {
} else {
Passes.push_back(new PrintModulePass("", os,
/*deleteStream*/ true,
/*printAsBytecode*/ ! DebugTrace));
/*printPerMethod*/ false,
/*printAsBytecode*/ !DebugTrace));
}
}
// Replace malloc and free instructions with library calls.
// Do this after tracing until lli implements these lib calls.
// For now, it will emulate malloc and free internally.
Passes.push_back(new LowerAllocations(Target.DataLayout));
// If LLVM dumping after transformations is requested, add it to the pipeline
if (DumpAsm)
Passes.push_back(new PrintModulePass("Code after xformations: \n",&cerr));