02d7cfe827f8904f8bf3019d186960d1a419f0a3
[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/PassManager.h"
12 #include "llvm/Assembly/Parser.h"
13 #include "llvm/Transforms/CleanupGCCOutput.h"
14 #include "llvm/Transforms/LevelChange.h"
15 #include "llvm/Transforms/ConstantMerge.h"
16 #include "llvm/Transforms/ChangeAllocations.h"
17 #include "llvm/Transforms/Scalar/DCE.h"
18 #include "llvm/Transforms/Scalar/IndVarSimplify.h"
19 #include "llvm/Transforms/Scalar/InstructionCombining.h"
20 #include "llvm/Transforms/Scalar/PromoteMemoryToRegister.h"
21 #include "llvm/Bytecode/WriteBytecodePass.h"
22 #include "Support/CommandLine.h"
23 #include "Support/Signals.h"
24 #include <memory>
25 #include <fstream>
26 #include <string>
27
28 cl::String InputFilename ("", "Parse <arg> file, compile to bytecode",
29                           cl::Required, "");
30 cl::String OutputFilename("o", "Override output filename", cl::NoFlags, "");
31 cl::Flag   StopAtLevelRaise("stopraise", "Stop optimization before level raise",
32                             cl::Hidden);
33
34 int main(int argc, char **argv) {
35   cl::ParseCommandLineOptions(argc, argv, " llvm .s -> .o assembler for GCC\n");
36
37   std::auto_ptr<Module> M;
38   try {
39     // Parse the file now...
40     M.reset(ParseAssemblyFile(InputFilename));
41   } catch (const ParseException &E) {
42     cerr << E.getMessage() << endl;
43     return 1;
44   }
45
46   if (M.get() == 0) {
47     cerr << "assembly didn't read correctly.\n";
48     return 1;
49   }
50   
51   if (OutputFilename == "") {   // Didn't specify an output filename?
52     std::string IFN = InputFilename;
53     int Len = IFN.length();
54     if (IFN[Len-2] == '.' && IFN[Len-1] == 's') {   // Source ends in .s?
55       OutputFilename = std::string(IFN.begin(), IFN.end()-2);
56     } else {
57       OutputFilename = IFN;   // Append a .o to it
58     }
59     OutputFilename += ".o";
60   }
61
62   std::ofstream Out(OutputFilename.c_str(), ios::out);
63   if (!Out.good()) {
64     cerr << "Error opening " << OutputFilename << "!\n";
65     return 1;
66   }
67
68   // Make sure that the Out file gets unlink'd from the disk if we get a SIGINT
69   RemoveFileOnSignal(OutputFilename);
70
71   // In addition to just parsing the input from GCC, we also want to spiff it up
72   // a little bit.  Do this now.
73   //
74   PassManager Passes;
75   Passes.add(createFunctionResolvingPass());      // Resolve (...) functions
76   Passes.add(createDeadInstEliminationPass());    // Remove Dead code/vars
77   Passes.add(createRaiseAllocationsPass());       // call %malloc -> malloc inst
78   Passes.add(createCleanupGCCOutputPass());       // Fix gccisms
79   Passes.add(createIndVarSimplifyPass());         // Simplify indvars
80   if (!StopAtLevelRaise) {
81     Passes.add(createRaisePointerReferencesPass()); // Eliminate casts
82     Passes.add(createPromoteMemoryToRegister());    // Promote alloca's to regs
83     Passes.add(createConstantMergePass());          // Merge dup global consts
84     Passes.add(createInstructionCombiningPass());   // Combine silly seq's
85     Passes.add(createDeadCodeEliminationPass());    // Remove Dead code/vars
86   }
87   Passes.add(new WriteBytecodePass(&Out));        // Write bytecode to file...
88
89   // Run our queue of passes all at once now, efficiently.
90   Passes.run(M.get());
91   return 0;
92 }
93