Use the new Alias command line option
[oota-llvm.git] / tools / opt / opt.cpp
1 //===------------------------------------------------------------------------===
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.
19 //
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"
27 #include "llvm/Support/CommandLine.h"
28 #include "llvm/Optimizations/AllOpts.h"
29
30 using namespace opt;
31
32 enum Opts {
33   // Basic optimizations
34   dce, constprop, inlining, strip, mstrip,
35
36   // More powerful optimizations
37   indvars, sccp, cpm, adce, raise,
38 };
39
40 struct {
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
56 cl::String InputFilename ("", "Load <arg> file to optimize", cl::NoFlags, "-");
57 cl::String OutputFilename("o", "Override output filename", cl::NoFlags, "");
58 cl::Flag   Force         ("f", "Overwrite output files", cl::NoFlags, false);
59 cl::Flag   Quiet         ("q", "Don't print modifying pass names", 0, false);
60 cl::Alias  QuietA        ("quiet", "Alias for -q", cl::NoFlags, Quiet);
61 cl::EnumList<enum Opts> OptimizationList(cl::NoFlags,
62   clEnumVal(dce      , "Dead Code Elimination"),
63   clEnumVal(constprop, "Simple Constant Propogation"),
64  clEnumValN(inlining , "inline", "Method Inlining"),
65   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"),
72 0);
73
74
75 int main(int argc, char **argv) {
76   cl::ParseCommandLineOptions(argc, argv,
77                               " llvm .bc -> .bc modular optimizer\n");
78  
79   Module *C = ParseBytecodeFile(InputFilename);
80   if (C == 0) {
81     cerr << "bytecode didn't read correctly.\n";
82     return 1;
83   }
84
85   for (unsigned i = 0; i < OptimizationList.size(); ++i) {
86     enum Opts Opt = OptimizationList[i];
87
88     unsigned j;
89     for (j = 0; j < sizeof(OptTable)/sizeof(OptTable[0]); ++j) {
90       if (Opt == OptTable[j].OptID) {
91         if (OptTable[j].OptPtr(C) && !Quiet)
92           cerr << OptimizationList.getArgName(Opt)
93                << " pass made modifications!\n";
94         break;
95       }
96     }
97
98     if (j == sizeof(OptTable)/sizeof(OptTable[0])) 
99       cerr << "Optimization tables inconsistent!!\n";
100   }
101
102   ostream *Out = &cout;  // Default to printing to stdout...
103   if (OutputFilename != "") {
104     Out = new ofstream(OutputFilename.c_str(), 
105                        (Force ? 0 : ios::noreplace)|ios::out);
106     if (!Out->good()) {
107       cerr << "Error opening " << OutputFilename << "!\n";
108       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 }