Revert the previous patch since it causes lots of miscompilations. :( :(
[oota-llvm.git] / tools / gccas / gccas.cpp
1 //===-- gccas.cpp - The "optimizing assembler" used by the GCC frontend ---===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This utility is designed to be used by the GCC frontend for creating bytecode
11 // files from its intermediate LLVM assembly.  The requirements for this utility
12 // are thus slightly different than that of the standard `as' util.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #include "llvm/Module.h"
17 #include "llvm/PassManager.h"
18 #include "llvm/Analysis/LoadValueNumbering.h"
19 #include "llvm/Analysis/Verifier.h"
20 #include "llvm/Assembly/Parser.h"
21 #include "llvm/Bytecode/WriteBytecodePass.h"
22 #include "llvm/Target/TargetData.h"
23 #include "llvm/Transforms/IPO.h"
24 #include "llvm/Transforms/Scalar.h"
25 #include "Support/CommandLine.h"
26 #include "Support/Signals.h"
27 #include <memory>
28 #include <fstream>
29
30 using namespace llvm;
31
32 namespace {
33   cl::opt<std::string>
34   InputFilename(cl::Positional,cl::desc("<input llvm assembly>"),cl::init("-"));
35
36   cl::opt<std::string> 
37   OutputFilename("o", cl::desc("Override output filename"),
38                  cl::value_desc("filename"));
39
40   cl::opt<bool>   
41   Verify("verify", cl::desc("Verify each pass result"));
42
43   cl::opt<bool>
44   DisableInline("disable-inlining", cl::desc("Do not run the inliner pass"));
45 }
46
47
48 static inline void addPass(PassManager &PM, Pass *P) {
49   // Add the pass to the pass manager...
50   PM.add(P);
51   
52   // If we are verifying all of the intermediate steps, add the verifier...
53   if (Verify) PM.add(createVerifierPass());
54 }
55
56
57 void AddConfiguredTransformationPasses(PassManager &PM) {
58   PM.add(createVerifierPass());                  // Verify that input is correct
59   addPass(PM, createLowerSetJmpPass());          // Lower llvm.setjmp/.longjmp
60   addPass(PM, createFunctionResolvingPass());    // Resolve (...) functions
61   addPass(PM, createCFGSimplificationPass());    // Clean up disgusting code
62   addPass(PM, createRaiseAllocationsPass());     // call %malloc -> malloc inst
63   addPass(PM, createGlobalDCEPass());            // Remove unused globals
64   addPass(PM, createIPConstantPropagationPass());// IP Constant Propagation
65   addPass(PM, createDeadArgEliminationPass());   // Dead argument elimination
66
67   addPass(PM, createPruneEHPass());              // Remove dead EH info
68
69   if (!DisableInline)
70     addPass(PM, createFunctionInliningPass());   // Inline small functions
71
72   addPass(PM, createInstructionCombiningPass()); // Cleanup code for raise
73
74   // HACK HACK HACK.  This pass should be extended to support calls like 'call
75   // (const expr cast (free))(Ty *).  Until it does so, we have to run it after
76   // instruction combining.  This should be removed after PLDI!
77   addPass(PM, createRaiseAllocationsPass());     // call %malloc -> malloc inst
78
79   addPass(PM, createRaisePointerReferencesPass());// Recover type information
80   addPass(PM, createTailDuplicationPass());      // Simplify cfg by copying code
81   addPass(PM, createCFGSimplificationPass());    // Merge & remove BBs
82   addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
83   addPass(PM, createTailCallEliminationPass());  // Eliminate tail calls
84   addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
85
86   addPass(PM, createReassociatePass());          // Reassociate expressions
87   addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
88   addPass(PM, createCFGSimplificationPass());    // Merge & remove BBs
89   addPass(PM, createLICMPass());                 // Hoist loop invariants
90   addPass(PM, createLoadValueNumberingPass());   // GVN for load instructions
91   addPass(PM, createGCSEPass());                 // Remove common subexprs
92   addPass(PM, createSCCPPass());                 // Constant prop with SCCP
93
94   // Run instcombine after redundancy elimination to exploit opportunities
95   // opened up by them.
96   addPass(PM, createInstructionCombiningPass());
97   addPass(PM, createIndVarSimplifyPass());       // Canonicalize indvars
98   addPass(PM, createAggressiveDCEPass());        // SSA based 'Aggressive DCE'
99   addPass(PM, createCFGSimplificationPass());    // Merge & remove BBs
100   addPass(PM, createDeadTypeEliminationPass());  // Eliminate dead types
101   addPass(PM, createConstantMergePass());        // Merge dup global constants
102 }
103
104
105 int main(int argc, char **argv) {
106   cl::ParseCommandLineOptions(argc, argv, " llvm .s -> .o assembler for GCC\n");
107
108   std::auto_ptr<Module> M;
109   try {
110     // Parse the file now...
111     M.reset(ParseAssemblyFile(InputFilename));
112   } catch (const ParseException &E) {
113     std::cerr << argv[0] << ": " << E.getMessage() << "\n";
114     return 1;
115   }
116
117   if (M.get() == 0) {
118     std::cerr << argv[0] << ": assembly didn't read correctly.\n";
119     return 1;
120   }
121
122   std::ostream *Out = 0;
123   if (OutputFilename == "") {   // Didn't specify an output filename?
124     if (InputFilename == "-") {
125       OutputFilename = "-";
126     } else {
127       std::string IFN = InputFilename;
128       int Len = IFN.length();
129       if (IFN[Len-2] == '.' && IFN[Len-1] == 's') {   // Source ends in .s?
130         OutputFilename = std::string(IFN.begin(), IFN.end()-2);
131       } else {
132         OutputFilename = IFN;   // Append a .o to it
133       }
134       OutputFilename += ".o";
135     }
136   }
137
138   if (OutputFilename == "-")
139     Out = &std::cout;
140   else {
141     Out = new std::ofstream(OutputFilename.c_str(), std::ios::out);
142
143     // Make sure that the Out file gets unlinked from the disk if we get a
144     // signal
145     RemoveFileOnSignal(OutputFilename);
146   }
147
148   
149   if (!Out->good()) {
150     std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
151     return 1;
152   }
153
154   // In addition to just parsing the input from GCC, we also want to spiff it up
155   // a little bit.  Do this now.
156   //
157   PassManager Passes;
158
159   // Add an appropriate TargetData instance for this module...
160   Passes.add(new TargetData("gccas", M.get()));
161
162   // Add all of the transformation passes to the pass manager to do the cleanup
163   // and optimization of the GCC output.
164   //
165   AddConfiguredTransformationPasses(Passes);
166
167   // Write bytecode to file...
168   Passes.add(new WriteBytecodePass(Out));
169
170   // Run our queue of passes all at once now, efficiently.
171   Passes.run(*M.get());
172
173   if (Out != &std::cout) delete Out;
174   return 0;
175 }