blob: 1cefa371b6ce6c1dba779986be23b09b2533844c [file] [log] [blame]
Chris Lattner3bb02e42002-01-22 03:30:46 +00001//===----------------------------------------------------------------------===//
Chris Lattner1a3061762001-10-31 04:28:11 +00002// LLVM 'GCCAS' UTILITY
3//
4// This utility is designed to be used by the GCC frontend for creating
5// bytecode files from it's intermediate llvm assembly. The requirements for
6// this utility are thus slightly different than that of the standard as util.
7//
Chris Lattner3bb02e42002-01-22 03:30:46 +00008//===----------------------------------------------------------------------===//
Chris Lattner1a3061762001-10-31 04:28:11 +00009
10#include "llvm/Module.h"
Chris Lattnerad50ec22002-01-31 00:46:22 +000011#include "llvm/PassManager.h"
Chris Lattner1a3061762001-10-31 04:28:11 +000012#include "llvm/Assembly/Parser.h"
Chris Lattner35c45412002-07-23 22:04:43 +000013#include "llvm/Transforms/RaisePointerReferences.h"
14#include "llvm/Transforms/IPO.h"
Chris Lattner89a20ef2002-05-07 20:03:27 +000015#include "llvm/Transforms/Scalar.h"
Chris Lattneredd67042002-08-30 20:25:25 +000016#include "llvm/Analysis/LoadValueNumbering.h"
Chris Lattner5aa3a072002-06-25 15:57:43 +000017#include "llvm/Analysis/Verifier.h"
Chris Lattner3bb02e42002-01-22 03:30:46 +000018#include "llvm/Bytecode/WriteBytecodePass.h"
Chris Lattner8c7b3152002-07-23 18:09:58 +000019#include "llvm/Target/TargetData.h"
Chris Lattner5de22042001-11-27 00:03:19 +000020#include "Support/CommandLine.h"
Chris Lattnerc065ad82002-04-18 19:55:25 +000021#include "Support/Signals.h"
Chris Lattner1a3061762001-10-31 04:28:11 +000022#include <memory>
23#include <fstream>
Chris Lattner1a3061762001-10-31 04:28:11 +000024
Chris Lattner1f412ae2003-04-16 17:34:29 +000025namespace {
Chris Lattner1f412ae2003-04-16 17:34:29 +000026 cl::opt<std::string>
Chris Lattner12fe9b42003-04-16 17:49:18 +000027 InputFilename(cl::Positional,cl::desc("<input llvm assembly>"),cl::init("-"));
Chris Lattnerf5cad152002-07-22 02:10:13 +000028
Chris Lattner1f412ae2003-04-16 17:34:29 +000029 cl::opt<std::string>
30 OutputFilename("o", cl::desc("Override output filename"),
31 cl::value_desc("filename"));
Chris Lattnerf5cad152002-07-22 02:10:13 +000032
Chris Lattner1f412ae2003-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 Lattnerf5cad152002-07-22 02:10:13 +000037
Chris Lattner1f412ae2003-04-16 17:34:29 +000038 cl::opt<bool>
39 Verify("verify", cl::desc("Verify each pass result"));
Chris Lattner1f412ae2003-04-16 17:34:29 +000040}
Chris Lattnerf5cad152002-07-22 02:10:13 +000041
Chris Lattner5aa3a072002-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 Lattnerdded1072002-08-17 22:40:03 +000056 } else {
57 delete P; // We don't want this pass to run, just delete it now
Chris Lattner5aa3a072002-06-25 15:57:43 +000058 }
59}
60
61
62void AddConfiguredTransformationPasses(PassManager &PM) {
63 if (Verify) PM.add(createVerifierPass());
64
Chris Lattner3f5b4262002-08-30 22:55:32 +000065 addPass(PM, createFunctionResolvingPass()); // Resolve (...) functions
66 addPass(PM, createGlobalDCEPass()); // Kill unused uinit g-vars
67 addPass(PM, createDeadTypeEliminationPass()); // Eliminate dead types
68 addPass(PM, createConstantMergePass()); // Merge dup global constants
Chris Lattner03507802003-04-23 20:40:42 +000069 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Chris Lattnerd571e2a2003-04-24 19:13:02 +000070 addPass(PM, createVerifierPass()); // Verify that input is correct
Chris Lattner3f5b4262002-08-30 22:55:32 +000071 addPass(PM, createDeadInstEliminationPass()); // Remove Dead code/vars
72 addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst
Chris Lattnere22031e2003-05-02 18:19:05 +000073 addPass(PM, createInstructionCombiningPass()); // Cleanup code for raise
Chris Lattner3f5b4262002-08-30 22:55:32 +000074 addPass(PM, createIndVarSimplifyPass()); // Simplify indvars
Chris Lattner0e48f8c2003-04-24 18:26:03 +000075 addPass(PM, createRaisePointerReferencesPass());// Recover type information
Chris Lattner387d76a2002-09-22 18:50:22 +000076 addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
Chris Lattner3f5b4262002-08-30 22:55:32 +000077 addPass(PM, createPromoteMemoryToRegister()); // Promote alloca's to regs
Chris Lattnerf1257592002-10-31 17:13:11 +000078 addPass(PM, createReassociatePass()); // Reassociate expressions
Vikram S. Advea8ebc7a2002-11-03 12:41:50 +000079 //addPass(PM, createCorrelatedExpressionEliminationPass());// Kill corr branches
Chris Lattnerc70222d2002-09-06 18:41:33 +000080 addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
81 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Chris Lattner3f5b4262002-08-30 22:55:32 +000082 addPass(PM, createLICMPass()); // Hoist loop invariants
83 addPass(PM, createLoadValueNumberingPass()); // GVN for load instructions
84 addPass(PM, createGCSEPass()); // Remove common subexprs
85 addPass(PM, createSCCPPass()); // Constant prop with SCCP
Chris Lattner5aa3a072002-06-25 15:57:43 +000086
87 // Run instcombine after redundancy elimination to exploit opportunities
88 // opened up by them.
89 addPass(PM, createInstructionCombiningPass());
Chris Lattnerc70222d2002-09-06 18:41:33 +000090 addPass(PM, createAggressiveDCEPass()); // SSA based 'Agressive DCE'
91 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Chris Lattner5aa3a072002-06-25 15:57:43 +000092}
93
Chris Lattner1a3061762001-10-31 04:28:11 +000094
95int main(int argc, char **argv) {
Chris Lattnerae6de302001-10-31 04:33:33 +000096 cl::ParseCommandLineOptions(argc, argv, " llvm .s -> .o assembler for GCC\n");
Chris Lattner1a3061762001-10-31 04:28:11 +000097
Chris Lattner1a3061762001-10-31 04:28:11 +000098 std::auto_ptr<Module> M;
99 try {
100 // Parse the file now...
101 M.reset(ParseAssemblyFile(InputFilename));
102 } catch (const ParseException &E) {
Chris Lattner37088702003-04-16 17:41:08 +0000103 std::cerr << argv[0] << ": " << E.getMessage() << "\n";
Chris Lattner1a3061762001-10-31 04:28:11 +0000104 return 1;
105 }
106
107 if (M.get() == 0) {
Chris Lattner37088702003-04-16 17:41:08 +0000108 std::cerr << argv[0] << ": assembly didn't read correctly.\n";
Chris Lattner1a3061762001-10-31 04:28:11 +0000109 return 1;
110 }
Chris Lattner12fe9b42003-04-16 17:49:18 +0000111
112 std::ostream *Out = 0;
Chris Lattner1a3061762001-10-31 04:28:11 +0000113 if (OutputFilename == "") { // Didn't specify an output filename?
Chris Lattner12fe9b42003-04-16 17:49:18 +0000114 if (InputFilename == "-") {
115 OutputFilename = "-";
Chris Lattner1a3061762001-10-31 04:28:11 +0000116 } else {
Chris Lattner12fe9b42003-04-16 17:49:18 +0000117 std::string IFN = InputFilename;
118 int Len = IFN.length();
119 if (IFN[Len-2] == '.' && IFN[Len-1] == 's') { // Source ends in .s?
120 OutputFilename = std::string(IFN.begin(), IFN.end()-2);
121 } else {
122 OutputFilename = IFN; // Append a .o to it
123 }
124 OutputFilename += ".o";
Chris Lattner1a3061762001-10-31 04:28:11 +0000125 }
Chris Lattner1a3061762001-10-31 04:28:11 +0000126 }
127
Chris Lattner12fe9b42003-04-16 17:49:18 +0000128 if (OutputFilename == "-")
129 Out = &std::cout;
130 else {
131 Out = new std::ofstream(OutputFilename.c_str(), std::ios::out);
132
133 // Make sure that the Out file gets unlink'd from the disk if we get a
134 // signal
135 RemoveFileOnSignal(OutputFilename);
136 }
137
138
139 if (!Out->good()) {
Chris Lattner37088702003-04-16 17:41:08 +0000140 std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
Chris Lattner1a3061762001-10-31 04:28:11 +0000141 return 1;
142 }
143
144 // In addition to just parsing the input from GCC, we also want to spiff it up
145 // a little bit. Do this now.
146 //
Chris Lattner0686e432002-01-21 07:31:50 +0000147 PassManager Passes;
Chris Lattnerc9149442002-05-14 16:23:14 +0000148
Chris Lattnerd571e2a2003-04-24 19:13:02 +0000149 // Add an appropriate TargetData instance for this module...
150 Passes.add(new TargetData("gccas", M.get()));
151
Chris Lattner5aa3a072002-06-25 15:57:43 +0000152 // Add all of the transformation passes to the pass manager to do the cleanup
153 // and optimization of the GCC output.
154 //
155 AddConfiguredTransformationPasses(Passes);
156
157 // Write bytecode to file...
Chris Lattner12fe9b42003-04-16 17:49:18 +0000158 Passes.add(new WriteBytecodePass(Out));
Chris Lattner1a3061762001-10-31 04:28:11 +0000159
Chris Lattner3bb02e42002-01-22 03:30:46 +0000160 // Run our queue of passes all at once now, efficiently.
Chris Lattner5aa3a072002-06-25 15:57:43 +0000161 Passes.run(*M.get());
Chris Lattner12fe9b42003-04-16 17:49:18 +0000162
163 if (Out != &std::cout) delete Out;
Chris Lattner1a3061762001-10-31 04:28:11 +0000164 return 0;
165}