Chris Lattner | 3dc67dd | 2002-01-22 03:30:46 +0000 | [diff] [blame] | 1 | //===----------------------------------------------------------------------===// |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 2 | // LLVM 'GCCAS' UTILITY |
| 3 | // |
Misha Brukman | 57d708b | 2003-08-07 21:23:52 +0000 | [diff] [blame] | 4 | // 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 Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 3dc67dd | 2002-01-22 03:30:46 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 9 | |
| 10 | #include "llvm/Module.h" |
Chris Lattner | 0f3bfff | 2002-01-31 00:46:22 +0000 | [diff] [blame] | 11 | #include "llvm/PassManager.h" |
Misha Brukman | 57d708b | 2003-08-07 21:23:52 +0000 | [diff] [blame] | 12 | #include "llvm/Analysis/LoadValueNumbering.h" |
| 13 | #include "llvm/Analysis/Verifier.h" |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 14 | #include "llvm/Assembly/Parser.h" |
Misha Brukman | 57d708b | 2003-08-07 21:23:52 +0000 | [diff] [blame] | 15 | #include "llvm/Bytecode/WriteBytecodePass.h" |
| 16 | #include "llvm/Target/TargetData.h" |
Chris Lattner | d9d8c07 | 2002-07-23 22:04:43 +0000 | [diff] [blame] | 17 | #include "llvm/Transforms/RaisePointerReferences.h" |
| 18 | #include "llvm/Transforms/IPO.h" |
Chris Lattner | 65f1b89 | 2002-05-07 20:03:27 +0000 | [diff] [blame] | 19 | #include "llvm/Transforms/Scalar.h" |
Chris Lattner | cee8f9a | 2001-11-27 00:03:19 +0000 | [diff] [blame] | 20 | #include "Support/CommandLine.h" |
Chris Lattner | 76d1229 | 2002-04-18 19:55:25 +0000 | [diff] [blame] | 21 | #include "Support/Signals.h" |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 22 | #include <memory> |
| 23 | #include <fstream> |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 24 | |
Chris Lattner | f2956fc | 2003-04-16 17:34:29 +0000 | [diff] [blame] | 25 | namespace { |
Chris Lattner | f2956fc | 2003-04-16 17:34:29 +0000 | [diff] [blame] | 26 | cl::opt<std::string> |
Chris Lattner | 8c7b055 | 2003-04-16 17:49:18 +0000 | [diff] [blame] | 27 | InputFilename(cl::Positional,cl::desc("<input llvm assembly>"),cl::init("-")); |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 28 | |
Chris Lattner | f2956fc | 2003-04-16 17:34:29 +0000 | [diff] [blame] | 29 | cl::opt<std::string> |
| 30 | OutputFilename("o", cl::desc("Override output filename"), |
| 31 | cl::value_desc("filename")); |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 32 | |
Chris Lattner | f2956fc | 2003-04-16 17:34:29 +0000 | [diff] [blame] | 33 | 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 Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 37 | |
Chris Lattner | f2956fc | 2003-04-16 17:34:29 +0000 | [diff] [blame] | 38 | cl::opt<bool> |
| 39 | Verify("verify", cl::desc("Verify each pass result")); |
Chris Lattner | f2956fc | 2003-04-16 17:34:29 +0000 | [diff] [blame] | 40 | } |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 41 | |
Chris Lattner | 624c3e0 | 2002-06-25 15:57:43 +0000 | [diff] [blame] | 42 | |
| 43 | static 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 Lattner | 374a095 | 2002-08-17 22:40:03 +0000 | [diff] [blame] | 56 | } else { |
| 57 | delete P; // We don't want this pass to run, just delete it now |
Chris Lattner | 624c3e0 | 2002-06-25 15:57:43 +0000 | [diff] [blame] | 58 | } |
| 59 | } |
| 60 | |
| 61 | |
| 62 | void AddConfiguredTransformationPasses(PassManager &PM) { |
Chris Lattner | e643a6c | 2003-06-22 20:11:45 +0000 | [diff] [blame] | 63 | PM.add(createVerifierPass()); // Verify that input is correct |
Chris Lattner | c539483 | 2002-08-30 22:55:32 +0000 | [diff] [blame] | 64 | addPass(PM, createFunctionResolvingPass()); // Resolve (...) functions |
Chris Lattner | c539483 | 2002-08-30 22:55:32 +0000 | [diff] [blame] | 65 | addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst |
Chris Lattner | cf37c23 | 2003-08-31 21:45:55 +0000 | [diff] [blame^] | 66 | addPass(PM, createGlobalDCEPass()); // Remove unused globals |
| 67 | addPass(PM, createPruneEHPass()); // Remove dead EH info |
| 68 | addPass(PM, createFunctionInliningPass()); // Inline small functions |
| 69 | |
Chris Lattner | 590607b | 2003-05-02 18:19:05 +0000 | [diff] [blame] | 70 | addPass(PM, createInstructionCombiningPass()); // Cleanup code for raise |
Chris Lattner | 961f7b4 | 2003-04-24 18:26:03 +0000 | [diff] [blame] | 71 | addPass(PM, createRaisePointerReferencesPass());// Recover type information |
Chris Lattner | e643a6c | 2003-06-22 20:11:45 +0000 | [diff] [blame] | 72 | addPass(PM, createTailDuplicationPass()); // Simplify cfg by copying code |
| 73 | addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs |
Chris Lattner | 42ed21b | 2003-05-30 19:24:06 +0000 | [diff] [blame] | 74 | addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas |
Chris Lattner | c539483 | 2002-08-30 22:55:32 +0000 | [diff] [blame] | 75 | addPass(PM, createPromoteMemoryToRegister()); // Promote alloca's to regs |
Chris Lattner | cf37c23 | 2003-08-31 21:45:55 +0000 | [diff] [blame^] | 76 | addPass(PM, createInstructionCombiningPass()); // Combine silly seq's |
| 77 | |
| 78 | |
Chris Lattner | 4dc3535 | 2003-05-30 19:23:10 +0000 | [diff] [blame] | 79 | addPass(PM, createIndVarSimplifyPass()); // Simplify indvars |
Chris Lattner | 52af630 | 2002-10-31 17:13:11 +0000 | [diff] [blame] | 80 | addPass(PM, createReassociatePass()); // Reassociate expressions |
Chris Lattner | 4dd7d3e | 2002-09-06 18:41:33 +0000 | [diff] [blame] | 81 | addPass(PM, createInstructionCombiningPass()); // Combine silly seq's |
| 82 | addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs |
Chris Lattner | c539483 | 2002-08-30 22:55:32 +0000 | [diff] [blame] | 83 | 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 Lattner | 624c3e0 | 2002-06-25 15:57:43 +0000 | [diff] [blame] | 87 | |
| 88 | // Run instcombine after redundancy elimination to exploit opportunities |
| 89 | // opened up by them. |
| 90 | addPass(PM, createInstructionCombiningPass()); |
Chris Lattner | e643a6c | 2003-06-22 20:11:45 +0000 | [diff] [blame] | 91 | addPass(PM, createAggressiveDCEPass()); // SSA based 'Aggressive DCE' |
Chris Lattner | 4dd7d3e | 2002-09-06 18:41:33 +0000 | [diff] [blame] | 92 | addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs |
Chris Lattner | cf37c23 | 2003-08-31 21:45:55 +0000 | [diff] [blame^] | 93 | addPass(PM, createDeadTypeEliminationPass()); // Eliminate dead types |
| 94 | addPass(PM, createConstantMergePass()); // Merge dup global constants |
Chris Lattner | 624c3e0 | 2002-06-25 15:57:43 +0000 | [diff] [blame] | 95 | } |
| 96 | |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 97 | |
| 98 | int main(int argc, char **argv) { |
Chris Lattner | 11c862c | 2001-10-31 04:33:33 +0000 | [diff] [blame] | 99 | cl::ParseCommandLineOptions(argc, argv, " llvm .s -> .o assembler for GCC\n"); |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 100 | |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 101 | std::auto_ptr<Module> M; |
| 102 | try { |
| 103 | // Parse the file now... |
| 104 | M.reset(ParseAssemblyFile(InputFilename)); |
| 105 | } catch (const ParseException &E) { |
Chris Lattner | 2c1d2f2 | 2003-04-16 17:41:08 +0000 | [diff] [blame] | 106 | std::cerr << argv[0] << ": " << E.getMessage() << "\n"; |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 107 | return 1; |
| 108 | } |
| 109 | |
| 110 | if (M.get() == 0) { |
Chris Lattner | 2c1d2f2 | 2003-04-16 17:41:08 +0000 | [diff] [blame] | 111 | std::cerr << argv[0] << ": assembly didn't read correctly.\n"; |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 112 | return 1; |
| 113 | } |
Chris Lattner | 8c7b055 | 2003-04-16 17:49:18 +0000 | [diff] [blame] | 114 | |
| 115 | std::ostream *Out = 0; |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 116 | if (OutputFilename == "") { // Didn't specify an output filename? |
Chris Lattner | 8c7b055 | 2003-04-16 17:49:18 +0000 | [diff] [blame] | 117 | if (InputFilename == "-") { |
| 118 | OutputFilename = "-"; |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 119 | } else { |
Chris Lattner | 8c7b055 | 2003-04-16 17:49:18 +0000 | [diff] [blame] | 120 | 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 Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 128 | } |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 129 | } |
| 130 | |
Chris Lattner | 8c7b055 | 2003-04-16 17:49:18 +0000 | [diff] [blame] | 131 | 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 Lattner | 2c1d2f2 | 2003-04-16 17:41:08 +0000 | [diff] [blame] | 143 | std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n"; |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 144 | 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 Lattner | f4de63f | 2002-01-21 07:31:50 +0000 | [diff] [blame] | 150 | PassManager Passes; |
Chris Lattner | 4ad5322 | 2002-05-14 16:23:14 +0000 | [diff] [blame] | 151 | |
Chris Lattner | 9c3b55e | 2003-04-24 19:13:02 +0000 | [diff] [blame] | 152 | // Add an appropriate TargetData instance for this module... |
| 153 | Passes.add(new TargetData("gccas", M.get())); |
| 154 | |
Chris Lattner | 624c3e0 | 2002-06-25 15:57:43 +0000 | [diff] [blame] | 155 | // 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 Lattner | 8c7b055 | 2003-04-16 17:49:18 +0000 | [diff] [blame] | 161 | Passes.add(new WriteBytecodePass(Out)); |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 162 | |
Chris Lattner | 3dc67dd | 2002-01-22 03:30:46 +0000 | [diff] [blame] | 163 | // Run our queue of passes all at once now, efficiently. |
Chris Lattner | 624c3e0 | 2002-06-25 15:57:43 +0000 | [diff] [blame] | 164 | Passes.run(*M.get()); |
Chris Lattner | 8c7b055 | 2003-04-16 17:49:18 +0000 | [diff] [blame] | 165 | |
| 166 | if (Out != &std::cout) delete Out; |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 167 | return 0; |
| 168 | } |