blob: 2183eefb0cc700f398f86016e6588ae4d582f07c [file] [log] [blame]
Chris Lattner00950542001-06-06 20:29:01 +00001//===------------------------------------------------------------------------===
2// LLVM 'OPT' UTILITY
3//
4// This utility may be invoked in the following manner:
5// opt --help - Output information about command line switches
6// opt [options] -dce - Run a dead code elimination pass on input
7// bytecodes
8// opt [options] -constprop - Run a constant propogation pass on input
9// bytecodes
10// opt [options] -inline - Run a method inlining pass on input bytecodes
11// opt [options] -strip - Strip symbol tables out of methods
12// opt [options] -mstrip - Strip module & method symbol tables
13//
14// Optimizations may be specified an arbitrary number of times on the command
15// line, they are run in the order specified.
16//
17// TODO: Add a -all option to keep applying all optimizations until the program
18// stops permuting.
Chris Lattner00950542001-06-06 20:29:01 +000019//
20//===------------------------------------------------------------------------===
21
22#include <iostream.h>
23#include <fstream.h>
24#include "llvm/Module.h"
25#include "llvm/Bytecode/Reader.h"
26#include "llvm/Bytecode/Writer.h"
Chris Lattner57dbb3a2001-07-23 17:46:59 +000027#include "llvm/Support/CommandLine.h"
Chris Lattner95781b62001-06-30 06:38:31 +000028#include "llvm/Optimizations/AllOpts.h"
29
30using namespace opt;
Chris Lattner00950542001-06-06 20:29:01 +000031
Chris Lattner8f367bd2001-07-23 02:35:57 +000032enum Opts {
33 // Basic optimizations
34 dce, constprop, inlining, strip, mstrip,
35
36 // More powerful optimizations
37 indvars, sccp, cpm, adce, raise,
Chris Lattner00950542001-06-06 20:29:01 +000038};
39
Chris Lattner8f367bd2001-07-23 02:35:57 +000040struct {
41 enum Opts OptID;
42 bool (*OptPtr)(Module *C);
43} OptTable[] = {
44 { dce , DoDeadCodeElimination },
45 { constprop, DoConstantPropogation },
46 { inlining , DoMethodInlining },
47 { strip , DoSymbolStripping },
48 { mstrip , DoFullSymbolStripping },
49 { indvars , DoInductionVariableCannonicalize },
50 { sccp , DoSCCP },
51 { cpm , DoConstantPoolMerging },
52 { adce , DoADCE },
53 { raise , DoRaiseRepresentation },
54};
55
Chris Lattnera8e1fd32001-07-23 20:22:30 +000056cl::String InputFilename ("", "Load <arg> file to optimize", cl::NoFlags, "-");
57cl::String OutputFilename("o", "Override output filename", cl::NoFlags, "");
58cl::Flag Force ("f", "Overwrite output files", cl::NoFlags, false);
Chris Lattner8f367bd2001-07-23 02:35:57 +000059cl::Flag Quiet ("q", "Don't print modifying pass names", 0, false);
Chris Lattnera8e1fd32001-07-23 20:22:30 +000060cl::Alias QuietA ("quiet", "Alias for -q", cl::NoFlags, Quiet);
Chris Lattner8f367bd2001-07-23 02:35:57 +000061cl::EnumList<enum Opts> OptimizationList(cl::NoFlags,
62 clEnumVal(dce , "Dead Code Elimination"),
63 clEnumVal(constprop, "Simple Constant Propogation"),
Chris Lattnerafb0cbb2001-07-23 23:02:51 +000064 clEnumValN(inlining , "inline", "Method Integration"),
Chris Lattner8f367bd2001-07-23 02:35:57 +000065 clEnumVal(strip , "Strip Symbols"),
66 clEnumVal(mstrip , "Strip Module Symbols"),
67 clEnumVal(indvars , "Simplify Induction Variables"),
68 clEnumVal(sccp , "Sparse Conditional Constant Propogation"),
69 clEnumVal(cpm , "Constant Pool Merging"),
70 clEnumVal(adce , "Agressive DCE"),
71 clEnumVal(raise , "Raise to Higher Level"),
720);
73
74
Chris Lattner00950542001-06-06 20:29:01 +000075int main(int argc, char **argv) {
Chris Lattner8f367bd2001-07-23 02:35:57 +000076 cl::ParseCommandLineOptions(argc, argv,
77 " llvm .bc -> .bc modular optimizer\n");
78
Chris Lattner1e78f362001-07-23 19:27:24 +000079 Module *C = ParseBytecodeFile(InputFilename);
Chris Lattner00950542001-06-06 20:29:01 +000080 if (C == 0) {
81 cerr << "bytecode didn't read correctly.\n";
82 return 1;
83 }
84
Chris Lattner8f367bd2001-07-23 02:35:57 +000085 for (unsigned i = 0; i < OptimizationList.size(); ++i) {
86 enum Opts Opt = OptimizationList[i];
Chris Lattner00950542001-06-06 20:29:01 +000087
Chris Lattner00950542001-06-06 20:29:01 +000088 unsigned j;
Chris Lattner8f367bd2001-07-23 02:35:57 +000089 for (j = 0; j < sizeof(OptTable)/sizeof(OptTable[0]); ++j) {
90 if (Opt == OptTable[j].OptID) {
Chris Lattner00950542001-06-06 20:29:01 +000091 if (OptTable[j].OptPtr(C) && !Quiet)
Chris Lattner8f367bd2001-07-23 02:35:57 +000092 cerr << OptimizationList.getArgName(Opt)
93 << " pass made modifications!\n";
Chris Lattner00950542001-06-06 20:29:01 +000094 break;
95 }
96 }
97
98 if (j == sizeof(OptTable)/sizeof(OptTable[0]))
Chris Lattner8f367bd2001-07-23 02:35:57 +000099 cerr << "Optimization tables inconsistent!!\n";
Chris Lattner00950542001-06-06 20:29:01 +0000100 }
101
Chris Lattner8f367bd2001-07-23 02:35:57 +0000102 ostream *Out = &cout; // Default to printing to stdout...
Chris Lattner1e78f362001-07-23 19:27:24 +0000103 if (OutputFilename != "") {
104 Out = new ofstream(OutputFilename.c_str(),
105 (Force ? 0 : ios::noreplace)|ios::out);
Chris Lattner00950542001-06-06 20:29:01 +0000106 if (!Out->good()) {
Chris Lattner1e78f362001-07-23 19:27:24 +0000107 cerr << "Error opening " << OutputFilename << "!\n";
Chris Lattner00950542001-06-06 20:29:01 +0000108 delete C;
109 return 1;
110 }
111 }
112
113 // Okay, we're done now... write out result...
114 WriteBytecodeToFile(C, *Out);
115 delete C;
116
117 if (Out != &cout) delete Out;
118 return 0;
119}