Run an instcombine pass after inlining but before scalarrepl. This allows
[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 "llvm/Support/CommandLine.h"
26 #include "llvm/Support/Streams.h"
27 #include "llvm/Support/ManagedStatic.h"
28 #include "llvm/System/Signals.h"
29 #include <iostream>
30 #include <memory>
31 #include <fstream>
32 using namespace llvm;
33
34 namespace {
35   cl::opt<std::string>
36   InputFilename(cl::Positional,cl::desc("<input llvm assembly>"),cl::init("-"));
37
38   cl::opt<std::string>
39   OutputFilename("o", cl::desc("Override output filename"),
40                  cl::value_desc("filename"));
41
42   cl::opt<bool>
43   Verify("verify", cl::desc("Verify each pass result"));
44
45   cl::opt<bool>
46   DisableInline("disable-inlining", cl::desc("Do not run the inliner pass"));
47
48   cl::opt<bool>
49   DisableOptimizations("disable-opt",
50                        cl::desc("Do not run any optimization passes"));
51
52   cl::opt<bool>
53   StripDebug("strip-debug",
54              cl::desc("Strip debugger symbol info from translation unit"));
55
56   cl::opt<bool>
57   NoCompress("disable-compression", cl::init(false),
58              cl::desc("Don't compress the generated bytecode"));
59
60   cl::opt<bool> TF("traditional-format", cl::Hidden,
61     cl::desc("Compatibility option: ignored"));
62 }
63
64
65 static inline void addPass(PassManager &PM, Pass *P) {
66   // Add the pass to the pass manager...
67   PM.add(P);
68
69   // If we are verifying all of the intermediate steps, add the verifier...
70   if (Verify) PM.add(createVerifierPass());
71 }
72
73
74 void AddConfiguredTransformationPasses(PassManager &PM) {
75   PM.add(createVerifierPass());                  // Verify that input is correct
76
77   addPass(PM, createLowerSetJmpPass());          // Lower llvm.setjmp/.longjmp
78   addPass(PM, createFunctionResolvingPass());    // Resolve (...) functions
79
80   // If the -strip-debug command line option was specified, do it.
81   if (StripDebug)
82     addPass(PM, createStripSymbolsPass(true));
83
84   if (DisableOptimizations) return;
85
86   addPass(PM, createRaiseAllocationsPass());     // call %malloc -> malloc inst
87   addPass(PM, createCFGSimplificationPass());    // Clean up disgusting code
88   addPass(PM, createPromoteMemoryToRegisterPass());// Kill useless allocas
89   addPass(PM, createGlobalOptimizerPass());      // Optimize out global vars
90   addPass(PM, createGlobalDCEPass());            // Remove unused fns and globs
91   addPass(PM, createIPConstantPropagationPass());// IP Constant Propagation
92   addPass(PM, createDeadArgEliminationPass());   // Dead argument elimination
93   addPass(PM, createInstructionCombiningPass()); // Clean up after IPCP & DAE
94   addPass(PM, createCFGSimplificationPass());    // Clean up after IPCP & DAE
95
96   addPass(PM, createPruneEHPass());              // Remove dead EH info
97
98   if (!DisableInline)
99     addPass(PM, createFunctionInliningPass());   // Inline small functions
100   addPass(PM, createSimplifyLibCallsPass());     // Library Call Optimizations
101   addPass(PM, createArgumentPromotionPass());    // Scalarize uninlined fn args
102
103   addPass(PM, createRaisePointerReferencesPass());// Recover type information
104   addPass(PM, createTailDuplicationPass());      // Simplify cfg by copying code
105   addPass(PM, createInstructionCombiningPass()); // Cleanup for scalarrepl.
106   addPass(PM, createCFGSimplificationPass());    // Merge & remove BBs
107   addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
108   addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
109   addPass(PM, createCondPropagationPass());      // Propagate conditionals
110
111   addPass(PM, createTailCallEliminationPass());  // Eliminate tail calls
112   addPass(PM, createCFGSimplificationPass());    // Merge & remove BBs
113   addPass(PM, createReassociatePass());          // Reassociate expressions
114   addPass(PM, createLICMPass());                 // Hoist loop invariants
115   addPass(PM, createLoopUnswitchPass());         // Unswitch loops.
116   addPass(PM, createInstructionCombiningPass()); // Clean up after LICM/reassoc
117   addPass(PM, createIndVarSimplifyPass());       // Canonicalize indvars
118   addPass(PM, createLoopUnrollPass());           // Unroll small loops
119   addPass(PM, createInstructionCombiningPass()); // Clean up after the unroller
120   addPass(PM, createLoadValueNumberingPass());   // GVN for load instructions
121   addPass(PM, createGCSEPass());                 // Remove common subexprs
122   addPass(PM, createSCCPPass());                 // Constant prop with SCCP
123
124   // Run instcombine after redundancy elimination to exploit opportunities
125   // opened up by them.
126   addPass(PM, createInstructionCombiningPass());
127   addPass(PM, createCondPropagationPass());      // Propagate conditionals
128
129   addPass(PM, createDeadStoreEliminationPass()); // Delete dead stores
130   addPass(PM, createAggressiveDCEPass());        // SSA based 'Aggressive DCE'
131   addPass(PM, createCFGSimplificationPass());    // Merge & remove BBs
132   addPass(PM, createDeadTypeEliminationPass());  // Eliminate dead types
133   addPass(PM, createConstantMergePass());        // Merge dup global constants
134 }
135
136
137 int main(int argc, char **argv) {
138   llvm_shutdown_obj X;  // Call llvm_shutdown() on exit.
139   try {
140     cl::ParseCommandLineOptions(argc, argv,
141                                 " llvm .s -> .o assembler for GCC\n");
142     sys::PrintStackTraceOnErrorSignal();
143
144     ParseError Err;
145     std::auto_ptr<Module> M(ParseAssemblyFile(InputFilename,&Err));
146     if (M.get() == 0) {
147       cerr << argv[0] << ": " << Err.getMessage() << "\n"; 
148       return 1;
149     }
150
151     std::ostream *Out = 0;
152     if (OutputFilename == "") {   // Didn't specify an output filename?
153       if (InputFilename == "-") {
154         OutputFilename = "-";
155       } else {
156         std::string IFN = InputFilename;
157         int Len = IFN.length();
158         if (IFN[Len-2] == '.' && IFN[Len-1] == 's') {   // Source ends in .s?
159           OutputFilename = std::string(IFN.begin(), IFN.end()-2);
160         } else {
161           OutputFilename = IFN;   // Append a .o to it
162         }
163         OutputFilename += ".o";
164       }
165     }
166
167     if (OutputFilename == "-")
168       // FIXME: cout is not binary!
169       Out = &std::cout;
170     else {
171       std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
172                                    std::ios::binary;
173       Out = new std::ofstream(OutputFilename.c_str(), io_mode);
174
175       // Make sure that the Out file gets unlinked from the disk if we get a
176       // signal
177       sys::RemoveFileOnSignal(sys::Path(OutputFilename));
178     }
179
180
181     if (!Out->good()) {
182       cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
183       return 1;
184     }
185
186     // In addition to just parsing the input from GCC, we also want to spiff 
187     // it up a little bit.  Do this now.
188     PassManager Passes;
189
190     // Add an appropriate TargetData instance for this module...
191     Passes.add(new TargetData(M.get()));
192
193     // Add all of the transformation passes to the pass manager to do the 
194     // cleanup and optimization of the GCC output.
195     AddConfiguredTransformationPasses(Passes);
196
197     // Make sure everything is still good.
198     Passes.add(createVerifierPass());
199
200     // Write bytecode to file...
201     OStream L(*Out);
202     Passes.add(new WriteBytecodePass(&L,false,!NoCompress));
203
204     // Run our queue of passes all at once now, efficiently.
205     Passes.run(*M.get());
206
207     if (Out != &std::cout) delete Out;
208     return 0;
209   } catch (const std::string& msg) {
210     cerr << argv[0] << ": " << msg << "\n";
211   } catch (...) {
212     cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
213   }
214   return 1;
215 }