blob: d7ce20b58c02e765b430f40156a47690abb7b042 [file] [log] [blame]
Chris Lattner3dc67dd2002-01-22 03:30:46 +00001//===----------------------------------------------------------------------===//
Chris Lattnerecbde332001-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 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"
Chris Lattnerecbde332001-10-31 04:28:11 +000012#include "llvm/Assembly/Parser.h"
13#include "llvm/Transforms/CleanupGCCOutput.h"
Chris Lattner068f4872001-11-01 02:41:09 +000014#include "llvm/Transforms/LevelChange.h"
Chris Lattnerdbe05142001-10-31 06:36:48 +000015#include "llvm/Transforms/ConstantMerge.h"
Chris Lattnerd7db8632002-01-22 01:04:08 +000016#include "llvm/Transforms/ChangeAllocations.h"
Chris Lattner65f1b892002-05-07 20:03:27 +000017#include "llvm/Transforms/Scalar.h"
Chris Lattner624c3e02002-06-25 15:57:43 +000018#include "llvm/Analysis/Verifier.h"
Chris Lattner3dc67dd2002-01-22 03:30:46 +000019#include "llvm/Bytecode/WriteBytecodePass.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 Lattner624c3e02002-06-25 15:57:43 +000025static cl::String InputFilename ("", "Parse <arg> file, compile to bytecode",
26 cl::Required, "");
27static cl::String OutputFilename ("o", "Override output filename");
28static cl::Int RunNPasses ("stopAfterNPasses", "Only run the first N "
29 "passes of gccas", cl::Hidden);
30static cl::Flag StopAtLevelRaise("stopraise", "Stop optimization before "
31 "level raise", cl::Hidden);
32static cl::Flag Verify ("verify", "Verify each pass result");
33
34static inline void addPass(PassManager &PM, Pass *P) {
35 static int NumPassesCreated = 0;
36
37 // If we haven't already created the number of passes that was requested...
38 if (RunNPasses == 0 || RunNPasses > NumPassesCreated) {
39 // Add the pass to the pass manager...
40 PM.add(P);
41
42 // If we are verifying all of the intermediate steps, add the verifier...
43 if (Verify) PM.add(createVerifierPass());
44
45 // Keep track of how many passes we made for -stopAfterNPasses
46 ++NumPassesCreated;
47 }
48}
49
50
51void AddConfiguredTransformationPasses(PassManager &PM) {
52 if (Verify) PM.add(createVerifierPass());
53
54 addPass(PM, createFunctionResolvingPass()); // Resolve (...) functions
55 addPass(PM, createConstantMergePass()); // Merge dup global constants
56 addPass(PM, createDeadInstEliminationPass()); // Remove Dead code/vars
57 addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst
58 addPass(PM, createCleanupGCCOutputPass()); // Fix gccisms
59 addPass(PM, createIndVarSimplifyPass()); // Simplify indvars
60
61 // Level raise is eternally buggy/in need of enhancements. Allow
62 // transformation to stop right before it runs.
63 if (StopAtLevelRaise) return;
64
65 addPass(PM, createRaisePointerReferencesPass());// Eliminate casts
66 addPass(PM, createPromoteMemoryToRegister()); // Promote alloca's to regs
67 addPass(PM, createReassociatePass()); // Reassociate expressions
68 addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
69 addPass(PM, createDeadInstEliminationPass()); // Kill InstCombine remnants
70 addPass(PM, createLICMPass()); // Hoist loop invariants
71 addPass(PM, createGCSEPass()); // Remove common subexprs
72 addPass(PM, createSCCPPass()); // Constant prop with SCCP
73
74 // Run instcombine after redundancy elimination to exploit opportunities
75 // opened up by them.
76 addPass(PM, createInstructionCombiningPass());
77 addPass(PM, createAggressiveDCEPass()); // SSA based 'Agressive DCE'
78 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
79}
80
Chris Lattnerecbde332001-10-31 04:28:11 +000081
82int main(int argc, char **argv) {
Chris Lattner11c862c2001-10-31 04:33:33 +000083 cl::ParseCommandLineOptions(argc, argv, " llvm .s -> .o assembler for GCC\n");
Chris Lattnerecbde332001-10-31 04:28:11 +000084
Chris Lattnerecbde332001-10-31 04:28:11 +000085 std::auto_ptr<Module> M;
86 try {
87 // Parse the file now...
88 M.reset(ParseAssemblyFile(InputFilename));
89 } catch (const ParseException &E) {
90 cerr << E.getMessage() << endl;
91 return 1;
92 }
93
94 if (M.get() == 0) {
95 cerr << "assembly didn't read correctly.\n";
96 return 1;
97 }
98
99 if (OutputFilename == "") { // Didn't specify an output filename?
Chris Lattner697954c2002-01-20 22:54:45 +0000100 std::string IFN = InputFilename;
Chris Lattnerecbde332001-10-31 04:28:11 +0000101 int Len = IFN.length();
102 if (IFN[Len-2] == '.' && IFN[Len-1] == 's') { // Source ends in .s?
Chris Lattner697954c2002-01-20 22:54:45 +0000103 OutputFilename = std::string(IFN.begin(), IFN.end()-2);
Chris Lattnerecbde332001-10-31 04:28:11 +0000104 } else {
105 OutputFilename = IFN; // Append a .o to it
106 }
107 OutputFilename += ".o";
108 }
109
Chris Lattner3dc67dd2002-01-22 03:30:46 +0000110 std::ofstream Out(OutputFilename.c_str(), ios::out);
111 if (!Out.good()) {
Chris Lattnerecbde332001-10-31 04:28:11 +0000112 cerr << "Error opening " << OutputFilename << "!\n";
113 return 1;
114 }
115
Chris Lattner76d12292002-04-18 19:55:25 +0000116 // Make sure that the Out file gets unlink'd from the disk if we get a SIGINT
117 RemoveFileOnSignal(OutputFilename);
118
Chris Lattnerecbde332001-10-31 04:28:11 +0000119 // In addition to just parsing the input from GCC, we also want to spiff it up
120 // a little bit. Do this now.
121 //
Chris Lattnerf4de63f2002-01-21 07:31:50 +0000122 PassManager Passes;
Chris Lattner4ad53222002-05-14 16:23:14 +0000123
Chris Lattner624c3e02002-06-25 15:57:43 +0000124 // Add all of the transformation passes to the pass manager to do the cleanup
125 // and optimization of the GCC output.
126 //
127 AddConfiguredTransformationPasses(Passes);
128
129 // Write bytecode to file...
130 Passes.add(new WriteBytecodePass(&Out));
Chris Lattnerecbde332001-10-31 04:28:11 +0000131
Chris Lattner3dc67dd2002-01-22 03:30:46 +0000132 // Run our queue of passes all at once now, efficiently.
Chris Lattner624c3e02002-06-25 15:57:43 +0000133 Passes.run(*M.get());
Chris Lattnerecbde332001-10-31 04:28:11 +0000134 return 0;
135}