Turn on argument promotion in gccas. This can give us substantially better
[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   cl::opt<bool>
47   DisableOptimizations("disable-opt",
48                        cl::desc("Do not run any optimization passes"));
49 }
50
51
52 static inline void addPass(PassManager &PM, Pass *P) {
53   // Add the pass to the pass manager...
54   PM.add(P);
55   
56   // If we are verifying all of the intermediate steps, add the verifier...
57   if (Verify) PM.add(createVerifierPass());
58 }
59
60
61 void AddConfiguredTransformationPasses(PassManager &PM) {
62   PM.add(createVerifierPass());                  // Verify that input is correct
63   addPass(PM, createLowerSetJmpPass());          // Lower llvm.setjmp/.longjmp
64   addPass(PM, createFunctionResolvingPass());    // Resolve (...) functions
65
66   if (DisableOptimizations) return;
67
68   addPass(PM, createRaiseAllocationsPass());     // call %malloc -> malloc inst
69   addPass(PM, createCFGSimplificationPass());    // Clean up disgusting code
70   addPass(PM, createPromoteMemoryToRegister());  // Kill useless allocas
71   addPass(PM, createGlobalConstifierPass());     // Mark read-only globals const
72   addPass(PM, createGlobalDCEPass());            // Remove unused globals
73   addPass(PM, createIPConstantPropagationPass());// IP Constant Propagation
74   addPass(PM, createDeadArgEliminationPass());   // Dead argument elimination
75   addPass(PM, createInstructionCombiningPass()); // Clean up after IPCP & DAE
76   addPass(PM, createCFGSimplificationPass());    // Clean up after IPCP & DAE
77
78   addPass(PM, createPruneEHPass());              // Remove dead EH info
79
80   if (!DisableInline)
81     addPass(PM, createFunctionInliningPass());   // Inline small functions
82   addPass(PM, createArgumentPromotionPass());    // Scalarize uninlined fn args
83
84   addPass(PM, createRaisePointerReferencesPass());// Recover type information
85   addPass(PM, createTailDuplicationPass());      // Simplify cfg by copying code
86   addPass(PM, createCFGSimplificationPass());    // Merge & remove BBs
87   addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
88   addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
89
90   addPass(PM, createReassociatePass());          // Reassociate expressions
91   addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
92   addPass(PM, createTailCallEliminationPass());  // Eliminate tail calls
93   addPass(PM, createCFGSimplificationPass());    // Merge & remove BBs
94   addPass(PM, createLICMPass());                 // Hoist loop invariants
95   addPass(PM, createLoadValueNumberingPass());   // GVN for load instructions
96   addPass(PM, createGCSEPass());                 // Remove common subexprs
97   addPass(PM, createSCCPPass());                 // Constant prop with SCCP
98
99   // Run instcombine after redundancy elimination to exploit opportunities
100   // opened up by them.
101   addPass(PM, createInstructionCombiningPass());
102   addPass(PM, createIndVarSimplifyPass());       // Canonicalize indvars
103   addPass(PM, createAggressiveDCEPass());        // SSA based 'Aggressive DCE'
104   addPass(PM, createCFGSimplificationPass());    // Merge & remove BBs
105   addPass(PM, createDeadTypeEliminationPass());  // Eliminate dead types
106   addPass(PM, createConstantMergePass());        // Merge dup global constants
107 }
108
109
110 int main(int argc, char **argv) {
111   cl::ParseCommandLineOptions(argc, argv, " llvm .s -> .o assembler for GCC\n");
112   PrintStackTraceOnErrorSignal();
113
114   std::auto_ptr<Module> M;
115   try {
116     // Parse the file now...
117     M.reset(ParseAssemblyFile(InputFilename));
118   } catch (const ParseException &E) {
119     std::cerr << argv[0] << ": " << E.getMessage() << "\n";
120     return 1;
121   }
122
123   if (M.get() == 0) {
124     std::cerr << argv[0] << ": assembly didn't read correctly.\n";
125     return 1;
126   }
127
128   std::ostream *Out = 0;
129   if (OutputFilename == "") {   // Didn't specify an output filename?
130     if (InputFilename == "-") {
131       OutputFilename = "-";
132     } else {
133       std::string IFN = InputFilename;
134       int Len = IFN.length();
135       if (IFN[Len-2] == '.' && IFN[Len-1] == 's') {   // Source ends in .s?
136         OutputFilename = std::string(IFN.begin(), IFN.end()-2);
137       } else {
138         OutputFilename = IFN;   // Append a .o to it
139       }
140       OutputFilename += ".o";
141     }
142   }
143
144   if (OutputFilename == "-")
145     Out = &std::cout;
146   else {
147     Out = new std::ofstream(OutputFilename.c_str(), std::ios::out);
148
149     // Make sure that the Out file gets unlinked from the disk if we get a
150     // signal
151     RemoveFileOnSignal(OutputFilename);
152   }
153
154   
155   if (!Out->good()) {
156     std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
157     return 1;
158   }
159
160   // In addition to just parsing the input from GCC, we also want to spiff it up
161   // a little bit.  Do this now.
162   //
163   PassManager Passes;
164
165   // Add an appropriate TargetData instance for this module...
166   Passes.add(new TargetData("gccas", M.get()));
167
168   // Add all of the transformation passes to the pass manager to do the cleanup
169   // and optimization of the GCC output.
170   //
171   AddConfiguredTransformationPasses(Passes);
172
173   // Make sure everything is still good.
174   Passes.add(createVerifierPass());
175
176   // Write bytecode to file...
177   Passes.add(new WriteBytecodePass(Out));
178
179   // Run our queue of passes all at once now, efficiently.
180   Passes.run(*M.get());
181
182   if (Out != &std::cout) delete Out;
183   return 0;
184 }