mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-04 09:54:09 +00:00
crunch the output of GCC a bit to make it nicer
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1068 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2305b6c3a7
commit
dbe0514e12
@ -10,7 +10,10 @@
|
|||||||
#include "llvm/Module.h"
|
#include "llvm/Module.h"
|
||||||
#include "llvm/Assembly/Parser.h"
|
#include "llvm/Assembly/Parser.h"
|
||||||
#include "llvm/Transforms/CleanupGCCOutput.h"
|
#include "llvm/Transforms/CleanupGCCOutput.h"
|
||||||
|
#include "llvm/Optimizations/LevelChange.h"
|
||||||
|
#include "llvm/Optimizations/ConstantProp.h"
|
||||||
#include "llvm/Optimizations/DCE.h"
|
#include "llvm/Optimizations/DCE.h"
|
||||||
|
#include "llvm/Transforms/ConstantMerge.h"
|
||||||
#include "llvm/Bytecode/Writer.h"
|
#include "llvm/Bytecode/Writer.h"
|
||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include <memory>
|
#include <memory>
|
||||||
@ -60,8 +63,11 @@ int main(int argc, char **argv) {
|
|||||||
// a little bit. Do this now.
|
// a little bit. Do this now.
|
||||||
//
|
//
|
||||||
vector<Pass*> Passes;
|
vector<Pass*> Passes;
|
||||||
Passes.push_back(new CleanupGCCOutput());
|
Passes.push_back(new CleanupGCCOutput()); // Fix gccisms
|
||||||
Passes.push_back(new opt::DeadCodeElimination());
|
Passes.push_back(new opt::RaiseRepresentation());// Fix general low level code
|
||||||
|
Passes.push_back(new opt::ConstantPropogation());// Trivial const prop
|
||||||
|
Passes.push_back(new opt::DeadCodeElimination());// Trivial DCE
|
||||||
|
Passes.push_back(new ConstantMerge()); // Merge dup global constants
|
||||||
|
|
||||||
// Run our queue of passes all at once now, efficiently. This form of
|
// Run our queue of passes all at once now, efficiently. This form of
|
||||||
// runAllPasses frees the Pass objects after runAllPasses completes.
|
// runAllPasses frees the Pass objects after runAllPasses completes.
|
||||||
|
Loading…
Reference in New Issue
Block a user