blob: 2cd408ab932f5d909d0fbe7aace0cb640ca8bfce [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/IPO.h"
Chris Lattner65f1b892002-05-07 20:03:27 +000018#include "llvm/Transforms/Scalar.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000019#include "Support/CommandLine.h"
Chris Lattner76d12292002-04-18 19:55:25 +000020#include "Support/Signals.h"
Chris Lattnerecbde332001-10-31 04:28:11 +000021#include <memory>
22#include <fstream>
Chris Lattnerecbde332001-10-31 04:28:11 +000023
Chris Lattnerf2956fc2003-04-16 17:34:29 +000024namespace {
Chris Lattnerf2956fc2003-04-16 17:34:29 +000025 cl::opt<std::string>
Chris Lattner8c7b0552003-04-16 17:49:18 +000026 InputFilename(cl::Positional,cl::desc("<input llvm assembly>"),cl::init("-"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000027
Chris Lattnerf2956fc2003-04-16 17:34:29 +000028 cl::opt<std::string>
29 OutputFilename("o", cl::desc("Override output filename"),
30 cl::value_desc("filename"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000031
Chris Lattnerf2956fc2003-04-16 17:34:29 +000032 cl::opt<bool>
33 Verify("verify", cl::desc("Verify each pass result"));
Chris Lattner0cea3ec2003-10-10 18:18:53 +000034
35 cl::opt<bool>
36 DisableInline("disable-inlining", cl::desc("Do not run the inliner pass"));
Chris Lattnerf2956fc2003-04-16 17:34:29 +000037}
Chris Lattner5ff62e92002-07-22 02:10:13 +000038
Chris Lattner624c3e02002-06-25 15:57:43 +000039
40static inline void addPass(PassManager &PM, Pass *P) {
Chris Lattner36f18ae2003-08-31 21:47:24 +000041 // Add the pass to the pass manager...
42 PM.add(P);
Chris Lattner624c3e02002-06-25 15:57:43 +000043
Chris Lattner36f18ae2003-08-31 21:47:24 +000044 // If we are verifying all of the intermediate steps, add the verifier...
45 if (Verify) PM.add(createVerifierPass());
Chris Lattner624c3e02002-06-25 15:57:43 +000046}
47
48
49void AddConfiguredTransformationPasses(PassManager &PM) {
Chris Lattnere643a6c2003-06-22 20:11:45 +000050 PM.add(createVerifierPass()); // Verify that input is correct
Chris Lattnerf7c7f5a2003-09-15 04:56:44 +000051 addPass(PM, createLowerSetJmpPass()); // Lower llvm.setjmp/.longjmp
Chris Lattnerc5394832002-08-30 22:55:32 +000052 addPass(PM, createFunctionResolvingPass()); // Resolve (...) functions
Chris Lattnerc5394832002-08-30 22:55:32 +000053 addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst
Chris Lattnercf37c232003-08-31 21:45:55 +000054 addPass(PM, createGlobalDCEPass()); // Remove unused globals
55 addPass(PM, createPruneEHPass()); // Remove dead EH info
Chris Lattner0cea3ec2003-10-10 18:18:53 +000056
57 if (!DisableInline)
58 addPass(PM, createFunctionInliningPass()); // Inline small functions
Chris Lattnercf37c232003-08-31 21:45:55 +000059
Chris Lattner590607b2003-05-02 18:19:05 +000060 addPass(PM, createInstructionCombiningPass()); // Cleanup code for raise
Chris Lattner961f7b42003-04-24 18:26:03 +000061 addPass(PM, createRaisePointerReferencesPass());// Recover type information
Chris Lattnere643a6c2003-06-22 20:11:45 +000062 addPass(PM, createTailDuplicationPass()); // Simplify cfg by copying code
63 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Chris Lattner42ed21b2003-05-30 19:24:06 +000064 addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
Chris Lattner75ebab82003-09-20 05:26:22 +000065 addPass(PM, createTailCallEliminationPass()); // Eliminate tail calls
Chris Lattnercf37c232003-08-31 21:45:55 +000066 addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
67
Chris Lattner52af6302002-10-31 17:13:11 +000068 addPass(PM, createReassociatePass()); // Reassociate expressions
Chris Lattner4dd7d3e2002-09-06 18:41:33 +000069 addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
70 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Chris Lattnerc5394832002-08-30 22:55:32 +000071 addPass(PM, createLICMPass()); // Hoist loop invariants
72 addPass(PM, createLoadValueNumberingPass()); // GVN for load instructions
73 addPass(PM, createGCSEPass()); // Remove common subexprs
74 addPass(PM, createSCCPPass()); // Constant prop with SCCP
Chris Lattner624c3e02002-06-25 15:57:43 +000075
76 // Run instcombine after redundancy elimination to exploit opportunities
77 // opened up by them.
78 addPass(PM, createInstructionCombiningPass());
Chris Lattner47320522003-09-11 16:34:07 +000079 addPass(PM, createIndVarSimplifyPass()); // Canonicalize indvars
Chris Lattnere643a6c2003-06-22 20:11:45 +000080 addPass(PM, createAggressiveDCEPass()); // SSA based 'Aggressive DCE'
Chris Lattner4dd7d3e2002-09-06 18:41:33 +000081 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Chris Lattnercf37c232003-08-31 21:45:55 +000082 addPass(PM, createDeadTypeEliminationPass()); // Eliminate dead types
83 addPass(PM, createConstantMergePass()); // Merge dup global constants
Chris Lattner624c3e02002-06-25 15:57:43 +000084}
85
Chris Lattnerecbde332001-10-31 04:28:11 +000086
87int main(int argc, char **argv) {
Chris Lattner11c862c2001-10-31 04:33:33 +000088 cl::ParseCommandLineOptions(argc, argv, " llvm .s -> .o assembler for GCC\n");
Chris Lattnerecbde332001-10-31 04:28:11 +000089
Chris Lattnerecbde332001-10-31 04:28:11 +000090 std::auto_ptr<Module> M;
91 try {
92 // Parse the file now...
93 M.reset(ParseAssemblyFile(InputFilename));
94 } catch (const ParseException &E) {
Chris Lattner2c1d2f22003-04-16 17:41:08 +000095 std::cerr << argv[0] << ": " << E.getMessage() << "\n";
Chris Lattnerecbde332001-10-31 04:28:11 +000096 return 1;
97 }
98
99 if (M.get() == 0) {
Chris Lattner2c1d2f22003-04-16 17:41:08 +0000100 std::cerr << argv[0] << ": assembly didn't read correctly.\n";
Chris Lattnerecbde332001-10-31 04:28:11 +0000101 return 1;
102 }
Chris Lattner8c7b0552003-04-16 17:49:18 +0000103
104 std::ostream *Out = 0;
Chris Lattnerecbde332001-10-31 04:28:11 +0000105 if (OutputFilename == "") { // Didn't specify an output filename?
Chris Lattner8c7b0552003-04-16 17:49:18 +0000106 if (InputFilename == "-") {
107 OutputFilename = "-";
Chris Lattnerecbde332001-10-31 04:28:11 +0000108 } else {
Chris Lattner8c7b0552003-04-16 17:49:18 +0000109 std::string IFN = InputFilename;
110 int Len = IFN.length();
111 if (IFN[Len-2] == '.' && IFN[Len-1] == 's') { // Source ends in .s?
112 OutputFilename = std::string(IFN.begin(), IFN.end()-2);
113 } else {
114 OutputFilename = IFN; // Append a .o to it
115 }
116 OutputFilename += ".o";
Chris Lattnerecbde332001-10-31 04:28:11 +0000117 }
Chris Lattnerecbde332001-10-31 04:28:11 +0000118 }
119
Chris Lattner8c7b0552003-04-16 17:49:18 +0000120 if (OutputFilename == "-")
121 Out = &std::cout;
122 else {
123 Out = new std::ofstream(OutputFilename.c_str(), std::ios::out);
124
Misha Brukman452fea92003-10-10 17:56:49 +0000125 // Make sure that the Out file gets unlinked from the disk if we get a
Chris Lattner8c7b0552003-04-16 17:49:18 +0000126 // signal
127 RemoveFileOnSignal(OutputFilename);
128 }
129
130
131 if (!Out->good()) {
Chris Lattner2c1d2f22003-04-16 17:41:08 +0000132 std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
Chris Lattnerecbde332001-10-31 04:28:11 +0000133 return 1;
134 }
135
136 // In addition to just parsing the input from GCC, we also want to spiff it up
137 // a little bit. Do this now.
138 //
Chris Lattnerf4de63f2002-01-21 07:31:50 +0000139 PassManager Passes;
Chris Lattner4ad53222002-05-14 16:23:14 +0000140
Chris Lattner9c3b55e2003-04-24 19:13:02 +0000141 // Add an appropriate TargetData instance for this module...
142 Passes.add(new TargetData("gccas", M.get()));
143
Chris Lattner624c3e02002-06-25 15:57:43 +0000144 // Add all of the transformation passes to the pass manager to do the cleanup
145 // and optimization of the GCC output.
146 //
147 AddConfiguredTransformationPasses(Passes);
148
149 // Write bytecode to file...
Chris Lattner8c7b0552003-04-16 17:49:18 +0000150 Passes.add(new WriteBytecodePass(Out));
Chris Lattnerecbde332001-10-31 04:28:11 +0000151
Chris Lattner3dc67dd2002-01-22 03:30:46 +0000152 // Run our queue of passes all at once now, efficiently.
Chris Lattner624c3e02002-06-25 15:57:43 +0000153 Passes.run(*M.get());
Chris Lattner8c7b0552003-04-16 17:49:18 +0000154
155 if (Out != &std::cout) delete Out;
Chris Lattnerecbde332001-10-31 04:28:11 +0000156 return 0;
157}