1 //===------------------------------------------------------------------------===
2 // LLVM 'GCCAS' UTILITY
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.
8 //===------------------------------------------------------------------------===
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/ConstantProp.h"
15 #include "llvm/Optimizations/DCE.h"
16 #include "llvm/Transforms/ConstantMerge.h"
17 #include "llvm/Transforms/Scalar/IndVarSimplify.h"
18 #include "llvm/Bytecode/Writer.h"
19 #include "Support/CommandLine.h"
24 cl::String InputFilename ("", "Parse <arg> file, compile to bytecode",
26 cl::String OutputFilename("o", "Override output filename", cl::NoFlags, "");
28 int main(int argc, char **argv) {
29 cl::ParseCommandLineOptions(argc, argv, " llvm .s -> .o assembler for GCC\n");
32 std::auto_ptr<Module> M;
34 // Parse the file now...
35 M.reset(ParseAssemblyFile(InputFilename));
36 } catch (const ParseException &E) {
37 cerr << E.getMessage() << endl;
42 cerr << "assembly didn't read correctly.\n";
46 if (OutputFilename == "") { // Didn't specify an output filename?
47 string IFN = InputFilename;
48 int Len = IFN.length();
49 if (IFN[Len-2] == '.' && IFN[Len-1] == 's') { // Source ends in .s?
50 OutputFilename = string(IFN.begin(), IFN.end()-2);
52 OutputFilename = IFN; // Append a .o to it
54 OutputFilename += ".o";
57 Out = new ofstream(OutputFilename.c_str(), ios::out);
59 cerr << "Error opening " << OutputFilename << "!\n";
63 // In addition to just parsing the input from GCC, we also want to spiff it up
64 // a little bit. Do this now.
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
72 // Run our queue of passes all at once now, efficiently. This form of
73 // runAllPasses frees the Pass objects after runAllPasses completes.
75 Pass::runAllPassesAndFree(M.get(), Passes);
77 WriteBytecodeToFile(M.get(), *Out);