Run DCE before cleanupGCCoutput which will cause some dead types (like FILE) to be...
[oota-llvm.git] / tools / gccas / gccas.cpp
1 //===------------------------------------------------------------------------===
2 // LLVM 'GCCAS' UTILITY 
3 //
4 //  This utility is designed to be used by the GCC frontend for creating
5 // bytecode files from it's intermediate llvm assembly.  The requirements for
6 // this utility are thus slightly different than that of the standard as util.
7 //
8 //===------------------------------------------------------------------------===
9
10 #include "llvm/Module.h"
11 #include "llvm/Assembly/Parser.h"
12 #include "llvm/Transforms/CleanupGCCOutput.h"
13 #include "llvm/Transforms/LevelChange.h"
14 #include "llvm/Optimizations/DCE.h"
15 #include "llvm/Transforms/ConstantMerge.h"
16 #include "llvm/Transforms/Scalar/IndVarSimplify.h"
17 #include "llvm/Bytecode/Writer.h"
18 #include "Support/CommandLine.h"
19 #include <memory>
20 #include <fstream>
21 #include <string>
22
23 cl::String InputFilename ("", "Parse <arg> file, compile to bytecode",
24                           cl::Required, "");
25 cl::String OutputFilename("o", "Override output filename", cl::NoFlags, "");
26
27 int main(int argc, char **argv) {
28   cl::ParseCommandLineOptions(argc, argv, " llvm .s -> .o assembler for GCC\n");
29
30   ostream *Out = 0;
31   std::auto_ptr<Module> M;
32   try {
33     // Parse the file now...
34     M.reset(ParseAssemblyFile(InputFilename));
35   } catch (const ParseException &E) {
36     cerr << E.getMessage() << endl;
37     return 1;
38   }
39
40   if (M.get() == 0) {
41     cerr << "assembly didn't read correctly.\n";
42     return 1;
43   }
44   
45   if (OutputFilename == "") {   // Didn't specify an output filename?
46     string IFN = InputFilename;
47     int Len = IFN.length();
48     if (IFN[Len-2] == '.' && IFN[Len-1] == 's') {   // Source ends in .s?
49       OutputFilename = string(IFN.begin(), IFN.end()-2);
50     } else {
51       OutputFilename = IFN;   // Append a .o to it
52     }
53     OutputFilename += ".o";
54   }
55
56   Out = new ofstream(OutputFilename.c_str(), ios::out);
57   if (!Out->good()) {
58     cerr << "Error opening " << OutputFilename << "!\n";
59     return 1;
60   }
61
62   // In addition to just parsing the input from GCC, we also want to spiff it up
63   // a little bit.  Do this now.
64   //
65   vector<Pass*> Passes;
66   Passes.push_back(new opt::DeadCodeElimination());  // Remove Dead code/vars
67   Passes.push_back(new CleanupGCCOutput());          // Fix gccisms
68   Passes.push_back(new InductionVariableSimplify()); // Simplify indvars
69   Passes.push_back(new RaisePointerReferences());    // Fix general low level code
70   Passes.push_back(new ConstantMerge());             // Merge dup global constants
71
72   // Run our queue of passes all at once now, efficiently.  This form of
73   // runAllPasses frees the Pass objects after runAllPasses completes.
74   //
75   Pass::runAllPassesAndFree(M.get(), Passes);
76
77   WriteBytecodeToFile(M.get(), *Out);
78   return 0;
79 }
80