blob: c222c6e18318eb75b0733e4bc9597efe1faabbf3 [file] [log] [blame]
Chris Lattnerdbc23182003-10-15 21:49:57 +00001//===-- gccas.cpp - The "optimizing assembler" used by the GCC frontend ---===//
John Criswell7c0e0222003-10-20 17:47:21 +00002//
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//===----------------------------------------------------------------------===//
Chris Lattnerecbde332001-10-31 04:28:11 +00009//
Misha Brukman57d708b2003-08-07 21:23:52 +000010// 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.
Chris Lattnerecbde332001-10-31 04:28:11 +000013//
Chris Lattner3dc67dd2002-01-22 03:30:46 +000014//===----------------------------------------------------------------------===//
Chris Lattnerecbde332001-10-31 04:28:11 +000015
16#include "llvm/Module.h"
Chris Lattner0f3bfff2002-01-31 00:46:22 +000017#include "llvm/PassManager.h"
Misha Brukman57d708b2003-08-07 21:23:52 +000018#include "llvm/Analysis/LoadValueNumbering.h"
19#include "llvm/Analysis/Verifier.h"
Chris Lattnerecbde332001-10-31 04:28:11 +000020#include "llvm/Assembly/Parser.h"
Misha Brukman57d708b2003-08-07 21:23:52 +000021#include "llvm/Bytecode/WriteBytecodePass.h"
22#include "llvm/Target/TargetData.h"
Chris Lattnerd9d8c072002-07-23 22:04:43 +000023#include "llvm/Transforms/IPO.h"
Chris Lattner65f1b892002-05-07 20:03:27 +000024#include "llvm/Transforms/Scalar.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000025#include "llvm/Support/CommandLine.h"
Chris Lattnerbed85ff2004-05-27 05:41:36 +000026#include "llvm/System/Signals.h"
Chris Lattnerecbde332001-10-31 04:28:11 +000027#include <memory>
28#include <fstream>
Chris Lattnerecbde332001-10-31 04:28:11 +000029
Brian Gaeked0fde302003-11-11 22:41:34 +000030using namespace llvm;
31
Chris Lattnerf2956fc2003-04-16 17:34:29 +000032namespace {
Chris Lattnerf2956fc2003-04-16 17:34:29 +000033 cl::opt<std::string>
Chris Lattner8c7b0552003-04-16 17:49:18 +000034 InputFilename(cl::Positional,cl::desc("<input llvm assembly>"),cl::init("-"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000035
Chris Lattnerf2956fc2003-04-16 17:34:29 +000036 cl::opt<std::string>
37 OutputFilename("o", cl::desc("Override output filename"),
38 cl::value_desc("filename"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000039
Chris Lattnerf2956fc2003-04-16 17:34:29 +000040 cl::opt<bool>
41 Verify("verify", cl::desc("Verify each pass result"));
Chris Lattner0cea3ec2003-10-10 18:18:53 +000042
43 cl::opt<bool>
44 DisableInline("disable-inlining", cl::desc("Do not run the inliner pass"));
Chris Lattner74295c02003-12-30 03:24:27 +000045
46 cl::opt<bool>
47 DisableOptimizations("disable-opt",
48 cl::desc("Do not run any optimization passes"));
Chris Lattnerb11a4632004-07-22 08:34:33 +000049
50 cl::opt<bool>
Chris Lattner40add592004-12-03 05:45:58 +000051 StripDebug("strip-debug",
52 cl::desc("Strip debugger symbol info from translation unit"));
53
Reid Spencercc0bd562004-11-08 17:37:04 +000054 cl::opt<bool>
55 NoCompress("disable-compression", cl::init(false),
56 cl::desc("Don't ompress the generated bytecode"));
Reid Spencer55126552004-12-22 02:58:43 +000057
58 cl::opt<bool> TF("traditional-format", cl::Hidden,
59 cl::desc("Compatibility option: ignored"));
Chris Lattnerf2956fc2003-04-16 17:34:29 +000060}
Chris Lattner5ff62e92002-07-22 02:10:13 +000061
Chris Lattner624c3e02002-06-25 15:57:43 +000062
63static inline void addPass(PassManager &PM, Pass *P) {
Chris Lattner36f18ae2003-08-31 21:47:24 +000064 // Add the pass to the pass manager...
65 PM.add(P);
Chris Lattner624c3e02002-06-25 15:57:43 +000066
Chris Lattner36f18ae2003-08-31 21:47:24 +000067 // If we are verifying all of the intermediate steps, add the verifier...
68 if (Verify) PM.add(createVerifierPass());
Chris Lattner624c3e02002-06-25 15:57:43 +000069}
70
71
72void AddConfiguredTransformationPasses(PassManager &PM) {
Chris Lattnere643a6c2003-06-22 20:11:45 +000073 PM.add(createVerifierPass()); // Verify that input is correct
Chris Lattner40add592004-12-03 05:45:58 +000074
Chris Lattnerf7c7f5a2003-09-15 04:56:44 +000075 addPass(PM, createLowerSetJmpPass()); // Lower llvm.setjmp/.longjmp
Chris Lattnerc5394832002-08-30 22:55:32 +000076 addPass(PM, createFunctionResolvingPass()); // Resolve (...) functions
Chris Lattner74295c02003-12-30 03:24:27 +000077
Chris Lattner40add592004-12-03 05:45:58 +000078 // If the -strip-debug command line option was specified, do it.
79 if (StripDebug)
80 addPass(PM, createStripSymbolsPass(true));
81
Chris Lattner74295c02003-12-30 03:24:27 +000082 if (DisableOptimizations) return;
83
Chris Lattner14b170f2003-11-21 21:44:35 +000084 addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst
Chris Lattner05e4e8a2004-02-01 07:24:53 +000085 addPass(PM, createCFGSimplificationPass()); // Clean up disgusting code
86 addPass(PM, createPromoteMemoryToRegister()); // Kill useless allocas
Chris Lattner93a00e42004-10-07 04:12:02 +000087 addPass(PM, createGlobalOptimizerPass()); // Optimize out global vars
88 addPass(PM, createGlobalDCEPass()); // Remove unused fns and globs
Chris Lattnereaa35bb2003-10-23 18:25:57 +000089 addPass(PM, createIPConstantPropagationPass());// IP Constant Propagation
90 addPass(PM, createDeadArgEliminationPass()); // Dead argument elimination
Chris Lattner05e4e8a2004-02-01 07:24:53 +000091 addPass(PM, createInstructionCombiningPass()); // Clean up after IPCP & DAE
92 addPass(PM, createCFGSimplificationPass()); // Clean up after IPCP & DAE
Chris Lattnereaa35bb2003-10-23 18:25:57 +000093
Chris Lattnercf37c232003-08-31 21:45:55 +000094 addPass(PM, createPruneEHPass()); // Remove dead EH info
Chris Lattner0cea3ec2003-10-10 18:18:53 +000095
96 if (!DisableInline)
97 addPass(PM, createFunctionInliningPass()); // Inline small functions
Chris Lattner2c7b4302004-03-13 21:38:35 +000098 addPass(PM, createArgumentPromotionPass()); // Scalarize uninlined fn args
Chris Lattnercf37c232003-08-31 21:45:55 +000099
Chris Lattnerf07c8332003-10-16 16:50:34 +0000100 addPass(PM, createRaisePointerReferencesPass());// Recover type information
Chris Lattnere643a6c2003-06-22 20:11:45 +0000101 addPass(PM, createTailDuplicationPass()); // Simplify cfg by copying code
102 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Chris Lattner42ed21b2003-05-30 19:24:06 +0000103 addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
Chris Lattnercf37c232003-08-31 21:45:55 +0000104 addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
105
Chris Lattner52af6302002-10-31 17:13:11 +0000106 addPass(PM, createReassociatePass()); // Reassociate expressions
Chris Lattner4dd7d3e2002-09-06 18:41:33 +0000107 addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
Chris Lattnerca6cc6f2003-12-11 17:50:32 +0000108 addPass(PM, createTailCallEliminationPass()); // Eliminate tail calls
Chris Lattner4dd7d3e2002-09-06 18:41:33 +0000109 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Chris Lattnerc5394832002-08-30 22:55:32 +0000110 addPass(PM, createLICMPass()); // Hoist loop invariants
Chris Lattner93d82022004-04-18 05:21:01 +0000111 addPass(PM, createInstructionCombiningPass()); // Clean up after the unroller
112 addPass(PM, createIndVarSimplifyPass()); // Canonicalize indvars
113 addPass(PM, createLoopUnrollPass()); // Unroll small loops
114 addPass(PM, createInstructionCombiningPass()); // Clean up after the unroller
Chris Lattnerc5394832002-08-30 22:55:32 +0000115 addPass(PM, createLoadValueNumberingPass()); // GVN for load instructions
116 addPass(PM, createGCSEPass()); // Remove common subexprs
117 addPass(PM, createSCCPPass()); // Constant prop with SCCP
Chris Lattner624c3e02002-06-25 15:57:43 +0000118
119 // Run instcombine after redundancy elimination to exploit opportunities
120 // opened up by them.
121 addPass(PM, createInstructionCombiningPass());
Chris Lattner40add592004-12-03 05:45:58 +0000122 addPass(PM, createDeadStoreEliminationPass()); // Delete dead stores
Chris Lattnere643a6c2003-06-22 20:11:45 +0000123 addPass(PM, createAggressiveDCEPass()); // SSA based 'Aggressive DCE'
Chris Lattner4dd7d3e2002-09-06 18:41:33 +0000124 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Chris Lattnercf37c232003-08-31 21:45:55 +0000125 addPass(PM, createDeadTypeEliminationPass()); // Eliminate dead types
126 addPass(PM, createConstantMergePass()); // Merge dup global constants
Chris Lattner624c3e02002-06-25 15:57:43 +0000127}
128
Chris Lattnerecbde332001-10-31 04:28:11 +0000129
130int main(int argc, char **argv) {
Chris Lattnerecbde332001-10-31 04:28:11 +0000131 try {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000132 cl::ParseCommandLineOptions(argc, argv,
133 " llvm .s -> .o assembler for GCC\n");
134 sys::PrintStackTraceOnErrorSignal();
Chris Lattnerecbde332001-10-31 04:28:11 +0000135
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000136 std::auto_ptr<Module> M;
137 try {
138 // Parse the file now...
139 M.reset(ParseAssemblyFile(InputFilename));
140 } catch (const ParseException &E) {
141 std::cerr << argv[0] << ": " << E.getMessage() << "\n";
142 return 1;
Chris Lattnerecbde332001-10-31 04:28:11 +0000143 }
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000144
145 if (M.get() == 0) {
146 std::cerr << argv[0] << ": assembly didn't read correctly.\n";
147 return 1;
148 }
149
150 std::ostream *Out = 0;
151 if (OutputFilename == "") { // Didn't specify an output filename?
152 if (InputFilename == "-") {
153 OutputFilename = "-";
154 } else {
155 std::string IFN = InputFilename;
156 int Len = IFN.length();
157 if (IFN[Len-2] == '.' && IFN[Len-1] == 's') { // Source ends in .s?
158 OutputFilename = std::string(IFN.begin(), IFN.end()-2);
159 } else {
160 OutputFilename = IFN; // Append a .o to it
161 }
162 OutputFilename += ".o";
163 }
164 }
165
166 if (OutputFilename == "-")
167 Out = &std::cout;
168 else {
169 Out = new std::ofstream(OutputFilename.c_str(), std::ios::out);
170
171 // Make sure that the Out file gets unlinked from the disk if we get a
172 // signal
173 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
174 }
175
176
177 if (!Out->good()) {
178 std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
179 return 1;
180 }
181
182 // In addition to just parsing the input from GCC, we also want to spiff it up
183 // a little bit. Do this now.
184 //
185 PassManager Passes;
186
187 // Add an appropriate TargetData instance for this module...
188 Passes.add(new TargetData("gccas", M.get()));
189
190 // Add all of the transformation passes to the pass manager to do the cleanup
191 // and optimization of the GCC output.
192 //
193 AddConfiguredTransformationPasses(Passes);
194
195 // Make sure everything is still good.
196 Passes.add(createVerifierPass());
197
198 // Write bytecode to file...
199 Passes.add(new WriteBytecodePass(Out,false,!NoCompress));
200
201 // Run our queue of passes all at once now, efficiently.
202 Passes.run(*M.get());
203
204 if (Out != &std::cout) delete Out;
205 return 0;
206 } catch (const std::string& msg) {
207 std::cerr << argv[0] << ": " << msg << "\n";
208 } catch (...) {
209 std::cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
Chris Lattnerecbde332001-10-31 04:28:11 +0000210 }
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000211 return 1;
Chris Lattnerecbde332001-10-31 04:28:11 +0000212}