blob: 7de05c6889266f0d60cd4761a1488a6aa51696e0 [file] [log] [blame]
Chris Lattner3dc67dd2002-01-22 03:30:46 +00001//===----------------------------------------------------------------------===//
Chris Lattnerecbde332001-10-31 04:28:11 +00002// LLVM 'GCCAS' UTILITY
3//
Misha Brukman57d708b2003-08-07 21:23:52 +00004// This utility is designed to be used by the GCC frontend for creating bytecode
5// files from its intermediate LLVM assembly. The requirements for this utility
6// are thus slightly different than that of the standard `as' util.
Chris Lattnerecbde332001-10-31 04:28:11 +00007//
Chris Lattner3dc67dd2002-01-22 03:30:46 +00008//===----------------------------------------------------------------------===//
Chris Lattnerecbde332001-10-31 04:28:11 +00009
10#include "llvm/Module.h"
Chris Lattner0f3bfff2002-01-31 00:46:22 +000011#include "llvm/PassManager.h"
Misha Brukman57d708b2003-08-07 21:23:52 +000012#include "llvm/Analysis/LoadValueNumbering.h"
13#include "llvm/Analysis/Verifier.h"
Chris Lattnerecbde332001-10-31 04:28:11 +000014#include "llvm/Assembly/Parser.h"
Misha Brukman57d708b2003-08-07 21:23:52 +000015#include "llvm/Bytecode/WriteBytecodePass.h"
16#include "llvm/Target/TargetData.h"
Chris Lattnerd9d8c072002-07-23 22:04:43 +000017#include "llvm/Transforms/RaisePointerReferences.h"
18#include "llvm/Transforms/IPO.h"
Chris Lattner65f1b892002-05-07 20:03:27 +000019#include "llvm/Transforms/Scalar.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000020#include "Support/CommandLine.h"
Chris Lattner76d12292002-04-18 19:55:25 +000021#include "Support/Signals.h"
Chris Lattnerecbde332001-10-31 04:28:11 +000022#include <memory>
23#include <fstream>
Chris Lattnerecbde332001-10-31 04:28:11 +000024
Chris Lattnerf2956fc2003-04-16 17:34:29 +000025namespace {
Chris Lattnerf2956fc2003-04-16 17:34:29 +000026 cl::opt<std::string>
Chris Lattner8c7b0552003-04-16 17:49:18 +000027 InputFilename(cl::Positional,cl::desc("<input llvm assembly>"),cl::init("-"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000028
Chris Lattnerf2956fc2003-04-16 17:34:29 +000029 cl::opt<std::string>
30 OutputFilename("o", cl::desc("Override output filename"),
31 cl::value_desc("filename"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000032
Chris Lattnerf2956fc2003-04-16 17:34:29 +000033 cl::opt<int>
34 RunNPasses("stopAfterNPasses",
35 cl::desc("Only run the first N passes of gccas"), cl::Hidden,
36 cl::value_desc("# passes"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000037
Chris Lattnerf2956fc2003-04-16 17:34:29 +000038 cl::opt<bool>
39 Verify("verify", cl::desc("Verify each pass result"));
Chris Lattnerf2956fc2003-04-16 17:34:29 +000040}
Chris Lattner5ff62e92002-07-22 02:10:13 +000041
Chris Lattner624c3e02002-06-25 15:57:43 +000042
43static inline void addPass(PassManager &PM, Pass *P) {
44 static int NumPassesCreated = 0;
45
46 // If we haven't already created the number of passes that was requested...
47 if (RunNPasses == 0 || RunNPasses > NumPassesCreated) {
48 // Add the pass to the pass manager...
49 PM.add(P);
50
51 // If we are verifying all of the intermediate steps, add the verifier...
52 if (Verify) PM.add(createVerifierPass());
53
54 // Keep track of how many passes we made for -stopAfterNPasses
55 ++NumPassesCreated;
Chris Lattner374a0952002-08-17 22:40:03 +000056 } else {
57 delete P; // We don't want this pass to run, just delete it now
Chris Lattner624c3e02002-06-25 15:57:43 +000058 }
59}
60
61
62void AddConfiguredTransformationPasses(PassManager &PM) {
Chris Lattnere643a6c2003-06-22 20:11:45 +000063 PM.add(createVerifierPass()); // Verify that input is correct
Chris Lattnerc5394832002-08-30 22:55:32 +000064 addPass(PM, createFunctionResolvingPass()); // Resolve (...) functions
Chris Lattnerc5394832002-08-30 22:55:32 +000065 addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst
Chris Lattnercf37c232003-08-31 21:45:55 +000066 addPass(PM, createGlobalDCEPass()); // Remove unused globals
67 addPass(PM, createPruneEHPass()); // Remove dead EH info
68 addPass(PM, createFunctionInliningPass()); // Inline small functions
69
Chris Lattner590607b2003-05-02 18:19:05 +000070 addPass(PM, createInstructionCombiningPass()); // Cleanup code for raise
Chris Lattner961f7b42003-04-24 18:26:03 +000071 addPass(PM, createRaisePointerReferencesPass());// Recover type information
Chris Lattnere643a6c2003-06-22 20:11:45 +000072 addPass(PM, createTailDuplicationPass()); // Simplify cfg by copying code
73 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Chris Lattner42ed21b2003-05-30 19:24:06 +000074 addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
Chris Lattnerc5394832002-08-30 22:55:32 +000075 addPass(PM, createPromoteMemoryToRegister()); // Promote alloca's to regs
Chris Lattnercf37c232003-08-31 21:45:55 +000076 addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
77
78
Chris Lattner4dc35352003-05-30 19:23:10 +000079 addPass(PM, createIndVarSimplifyPass()); // Simplify indvars
Chris Lattner52af6302002-10-31 17:13:11 +000080 addPass(PM, createReassociatePass()); // Reassociate expressions
Chris Lattner4dd7d3e2002-09-06 18:41:33 +000081 addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
82 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Chris Lattnerc5394832002-08-30 22:55:32 +000083 addPass(PM, createLICMPass()); // Hoist loop invariants
84 addPass(PM, createLoadValueNumberingPass()); // GVN for load instructions
85 addPass(PM, createGCSEPass()); // Remove common subexprs
86 addPass(PM, createSCCPPass()); // Constant prop with SCCP
Chris Lattner624c3e02002-06-25 15:57:43 +000087
88 // Run instcombine after redundancy elimination to exploit opportunities
89 // opened up by them.
90 addPass(PM, createInstructionCombiningPass());
Chris Lattnere643a6c2003-06-22 20:11:45 +000091 addPass(PM, createAggressiveDCEPass()); // SSA based 'Aggressive DCE'
Chris Lattner4dd7d3e2002-09-06 18:41:33 +000092 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Chris Lattnercf37c232003-08-31 21:45:55 +000093 addPass(PM, createDeadTypeEliminationPass()); // Eliminate dead types
94 addPass(PM, createConstantMergePass()); // Merge dup global constants
Chris Lattner624c3e02002-06-25 15:57:43 +000095}
96
Chris Lattnerecbde332001-10-31 04:28:11 +000097
98int main(int argc, char **argv) {
Chris Lattner11c862c2001-10-31 04:33:33 +000099 cl::ParseCommandLineOptions(argc, argv, " llvm .s -> .o assembler for GCC\n");
Chris Lattnerecbde332001-10-31 04:28:11 +0000100
Chris Lattnerecbde332001-10-31 04:28:11 +0000101 std::auto_ptr<Module> M;
102 try {
103 // Parse the file now...
104 M.reset(ParseAssemblyFile(InputFilename));
105 } catch (const ParseException &E) {
Chris Lattner2c1d2f22003-04-16 17:41:08 +0000106 std::cerr << argv[0] << ": " << E.getMessage() << "\n";
Chris Lattnerecbde332001-10-31 04:28:11 +0000107 return 1;
108 }
109
110 if (M.get() == 0) {
Chris Lattner2c1d2f22003-04-16 17:41:08 +0000111 std::cerr << argv[0] << ": assembly didn't read correctly.\n";
Chris Lattnerecbde332001-10-31 04:28:11 +0000112 return 1;
113 }
Chris Lattner8c7b0552003-04-16 17:49:18 +0000114
115 std::ostream *Out = 0;
Chris Lattnerecbde332001-10-31 04:28:11 +0000116 if (OutputFilename == "") { // Didn't specify an output filename?
Chris Lattner8c7b0552003-04-16 17:49:18 +0000117 if (InputFilename == "-") {
118 OutputFilename = "-";
Chris Lattnerecbde332001-10-31 04:28:11 +0000119 } else {
Chris Lattner8c7b0552003-04-16 17:49:18 +0000120 std::string IFN = InputFilename;
121 int Len = IFN.length();
122 if (IFN[Len-2] == '.' && IFN[Len-1] == 's') { // Source ends in .s?
123 OutputFilename = std::string(IFN.begin(), IFN.end()-2);
124 } else {
125 OutputFilename = IFN; // Append a .o to it
126 }
127 OutputFilename += ".o";
Chris Lattnerecbde332001-10-31 04:28:11 +0000128 }
Chris Lattnerecbde332001-10-31 04:28:11 +0000129 }
130
Chris Lattner8c7b0552003-04-16 17:49:18 +0000131 if (OutputFilename == "-")
132 Out = &std::cout;
133 else {
134 Out = new std::ofstream(OutputFilename.c_str(), std::ios::out);
135
136 // Make sure that the Out file gets unlink'd from the disk if we get a
137 // signal
138 RemoveFileOnSignal(OutputFilename);
139 }
140
141
142 if (!Out->good()) {
Chris Lattner2c1d2f22003-04-16 17:41:08 +0000143 std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
Chris Lattnerecbde332001-10-31 04:28:11 +0000144 return 1;
145 }
146
147 // In addition to just parsing the input from GCC, we also want to spiff it up
148 // a little bit. Do this now.
149 //
Chris Lattnerf4de63f2002-01-21 07:31:50 +0000150 PassManager Passes;
Chris Lattner4ad53222002-05-14 16:23:14 +0000151
Chris Lattner9c3b55e2003-04-24 19:13:02 +0000152 // Add an appropriate TargetData instance for this module...
153 Passes.add(new TargetData("gccas", M.get()));
154
Chris Lattner624c3e02002-06-25 15:57:43 +0000155 // Add all of the transformation passes to the pass manager to do the cleanup
156 // and optimization of the GCC output.
157 //
158 AddConfiguredTransformationPasses(Passes);
159
160 // Write bytecode to file...
Chris Lattner8c7b0552003-04-16 17:49:18 +0000161 Passes.add(new WriteBytecodePass(Out));
Chris Lattnerecbde332001-10-31 04:28:11 +0000162
Chris Lattner3dc67dd2002-01-22 03:30:46 +0000163 // Run our queue of passes all at once now, efficiently.
Chris Lattner624c3e02002-06-25 15:57:43 +0000164 Passes.run(*M.get());
Chris Lattner8c7b0552003-04-16 17:49:18 +0000165
166 if (Out != &std::cout) delete Out;
Chris Lattnerecbde332001-10-31 04:28:11 +0000167 return 0;
168}