Default llc / lli optimization to "Default", which corresponds to -O1 / -O2.
[oota-llvm.git] / tools / llc / llc.cpp
1 //===-- llc.cpp - Implement the LLVM Native Code Generator ----------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This is the llc code generator driver. It provides a convenient
11 // command-line interface for generating native assembly-language code
12 // or C code, given LLVM bitcode.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #include "llvm/Bitcode/ReaderWriter.h"
17 #include "llvm/CodeGen/FileWriters.h"
18 #include "llvm/CodeGen/LinkAllCodegenComponents.h"
19 #include "llvm/CodeGen/LinkAllAsmWriterComponents.h"
20 #include "llvm/Target/SubtargetFeature.h"
21 #include "llvm/Target/TargetData.h"
22 #include "llvm/Target/TargetMachine.h"
23 #include "llvm/Target/TargetMachineRegistry.h"
24 #include "llvm/Transforms/Scalar.h"
25 #include "llvm/Module.h"
26 #include "llvm/ModuleProvider.h"
27 #include "llvm/PassManager.h"
28 #include "llvm/Pass.h"
29 #include "llvm/Support/CommandLine.h"
30 #include "llvm/Support/FileUtilities.h"
31 #include "llvm/Support/ManagedStatic.h"
32 #include "llvm/Support/MemoryBuffer.h"
33 #include "llvm/Support/PluginLoader.h"
34 #include "llvm/Support/PrettyStackTrace.h"
35 #include "llvm/Support/RegistryParser.h"
36 #include "llvm/Support/raw_ostream.h"
37 #include "llvm/Analysis/Verifier.h"
38 #include "llvm/System/Signals.h"
39 #include "llvm/Config/config.h"
40 #include "llvm/LinkAllVMCore.h"
41 #include <fstream>
42 #include <iostream>
43 #include <memory>
44 using namespace llvm;
45
46 // General options for llc.  Other pass-specific options are specified
47 // within the corresponding llc passes, and target-specific options
48 // and back-end code generation options are specified with the target machine.
49 //
50 static cl::opt<std::string>
51 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
52
53 static cl::opt<std::string>
54 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
55
56 static cl::opt<bool> Force("f", cl::desc("Overwrite output files"));
57
58 // Determine optimization level.
59 static cl::opt<char>
60 OptLevel("O",
61          cl::desc("Optimization level. [-O0, -O1, -O2, or -O3] "
62                   "(default = '-O2')"),
63          cl::Prefix,
64          cl::ZeroOrMore,
65          cl::init(' '));
66
67 static cl::opt<std::string>
68 TargetTriple("mtriple", cl::desc("Override target triple for module"));
69
70 static cl::opt<const TargetMachineRegistry::entry*, false,
71                RegistryParser<TargetMachine> >
72 MArch("march", cl::desc("Architecture to generate code for:"));
73
74 static cl::opt<std::string>
75 MCPU("mcpu",
76   cl::desc("Target a specific cpu type (-mcpu=help for details)"),
77   cl::value_desc("cpu-name"),
78   cl::init(""));
79
80 static cl::list<std::string>
81 MAttrs("mattr",
82   cl::CommaSeparated,
83   cl::desc("Target specific attributes (-mattr=help for details)"),
84   cl::value_desc("a1,+a2,-a3,..."));
85
86 cl::opt<TargetMachine::CodeGenFileType>
87 FileType("filetype", cl::init(TargetMachine::AssemblyFile),
88   cl::desc("Choose a file type (not all types are supported by all targets):"),
89   cl::values(
90        clEnumValN(TargetMachine::AssemblyFile, "asm",
91                   "Emit an assembly ('.s') file"),
92        clEnumValN(TargetMachine::ObjectFile, "obj",
93                   "Emit a native object ('.o') file [experimental]"),
94        clEnumValN(TargetMachine::DynamicLibrary, "dynlib",
95                   "Emit a native dynamic library ('.so') file"
96                   " [experimental]"),
97        clEnumValEnd));
98
99 cl::opt<bool> NoVerify("disable-verify", cl::Hidden,
100                        cl::desc("Do not verify input module"));
101
102
103 // GetFileNameRoot - Helper function to get the basename of a filename.
104 static inline std::string
105 GetFileNameRoot(const std::string &InputFilename) {
106   std::string IFN = InputFilename;
107   std::string outputFilename;
108   int Len = IFN.length();
109   if ((Len > 2) &&
110       IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c') {
111     outputFilename = std::string(IFN.begin(), IFN.end()-3); // s/.bc/.s/
112   } else {
113     outputFilename = IFN;
114   }
115   return outputFilename;
116 }
117
118 static raw_ostream *GetOutputStream(const char *ProgName) {
119   if (OutputFilename != "") {
120     if (OutputFilename == "-")
121       return &outs();
122
123     // Specified an output filename?
124     if (!Force && std::ifstream(OutputFilename.c_str())) {
125       // If force is not specified, make sure not to overwrite a file!
126       std::cerr << ProgName << ": error opening '" << OutputFilename
127                 << "': file exists!\n"
128                 << "Use -f command line argument to force output\n";
129       return 0;
130     }
131     // Make sure that the Out file gets unlinked from the disk if we get a
132     // SIGINT
133     sys::RemoveFileOnSignal(sys::Path(OutputFilename));
134
135     std::string error;
136     raw_ostream *Out = new raw_fd_ostream(OutputFilename.c_str(), true, error);
137     if (!error.empty()) {
138       std::cerr << error << '\n';
139       delete Out;
140       return 0;
141     }
142
143     return Out;
144   }
145
146   if (InputFilename == "-") {
147     OutputFilename = "-";
148     return &outs();
149   }
150
151   OutputFilename = GetFileNameRoot(InputFilename);
152
153   bool Binary = false;
154   switch (FileType) {
155   case TargetMachine::AssemblyFile:
156     if (MArch->Name[0] == 'c') {
157       if (MArch->Name[1] == 0)
158         OutputFilename += ".cbe.c";
159       else if (MArch->Name[1] == 'p' && MArch->Name[2] == 'p')
160         OutputFilename += ".cpp";
161       else
162         OutputFilename += ".s";
163     } else
164       OutputFilename += ".s";
165     break;
166   case TargetMachine::ObjectFile:
167     OutputFilename += ".o";
168     Binary = true;
169     break;
170   case TargetMachine::DynamicLibrary:
171     OutputFilename += LTDL_SHLIB_EXT;
172     Binary = true;
173     break;
174   }
175
176   if (!Force && std::ifstream(OutputFilename.c_str())) {
177     // If force is not specified, make sure not to overwrite a file!
178     std::cerr << ProgName << ": error opening '" << OutputFilename
179                           << "': file exists!\n"
180                           << "Use -f command line argument to force output\n";
181     return 0;
182   }
183
184   // Make sure that the Out file gets unlinked from the disk if we get a
185   // SIGINT
186   sys::RemoveFileOnSignal(sys::Path(OutputFilename));
187
188   std::string error;
189   raw_ostream *Out = new raw_fd_ostream(OutputFilename.c_str(), Binary, error);
190   if (!error.empty()) {
191     std::cerr << error << '\n';
192     delete Out;
193     return 0;
194   }
195
196   return Out;
197 }
198
199 // main - Entry point for the llc compiler.
200 //
201 int main(int argc, char **argv) {
202   sys::PrintStackTraceOnErrorSignal();
203   PrettyStackTraceProgram X(argc, argv);
204   llvm_shutdown_obj Y;  // Call llvm_shutdown() on exit.
205   cl::ParseCommandLineOptions(argc, argv, "llvm system compiler\n");
206
207   // Load the module to be compiled...
208   std::string ErrorMessage;
209   std::auto_ptr<Module> M;
210
211   std::auto_ptr<MemoryBuffer> Buffer(
212                    MemoryBuffer::getFileOrSTDIN(InputFilename, &ErrorMessage));
213   if (Buffer.get())
214     M.reset(ParseBitcodeFile(Buffer.get(), &ErrorMessage));
215   if (M.get() == 0) {
216     std::cerr << argv[0] << ": bitcode didn't read correctly.\n";
217     std::cerr << "Reason: " << ErrorMessage << "\n";
218     return 1;
219   }
220   Module &mod = *M.get();
221
222   // If we are supposed to override the target triple, do so now.
223   if (!TargetTriple.empty())
224     mod.setTargetTriple(TargetTriple);
225
226   // Allocate target machine.  First, check whether the user has
227   // explicitly specified an architecture to compile for.
228   if (MArch == 0) {
229     std::string Err;
230     MArch = TargetMachineRegistry::getClosestStaticTargetForModule(mod, Err);
231     if (MArch == 0) {
232       std::cerr << argv[0] << ": error auto-selecting target for module '"
233                 << Err << "'.  Please use the -march option to explicitly "
234                 << "pick a target.\n";
235       return 1;
236     }
237   }
238
239   // Package up features to be passed to target/subtarget
240   std::string FeaturesStr;
241   if (MCPU.size() || MAttrs.size()) {
242     SubtargetFeatures Features;
243     Features.setCPU(MCPU);
244     for (unsigned i = 0; i != MAttrs.size(); ++i)
245       Features.AddFeature(MAttrs[i]);
246     FeaturesStr = Features.getString();
247   }
248
249   std::auto_ptr<TargetMachine> target(MArch->CtorFn(mod, FeaturesStr));
250   assert(target.get() && "Could not allocate target machine!");
251   TargetMachine &Target = *target.get();
252
253   // Figure out where we are going to send the output...
254   raw_ostream *Out = GetOutputStream(argv[0]);
255   if (Out == 0) return 1;
256
257   CodeGenOpt::Level OLvl = CodeGenOpt::Default;
258   switch (OptLevel) {
259   default:
260     std::cerr << argv[0] << ": invalid optimization level.\n";
261     return 1;
262   case ' ': break;
263   case '0': OLvl = CodeGenOpt::None; break;
264   case '1':
265   case '2': OLvl = CodeGenOpt::Default; break;
266   case '3': OLvl = CodeGenOpt::Aggressive; break;
267   }
268
269   // If this target requires addPassesToEmitWholeFile, do it now.  This is
270   // used by strange things like the C backend.
271   if (Target.WantsWholeFile()) {
272     PassManager PM;
273     PM.add(new TargetData(*Target.getTargetData()));
274     if (!NoVerify)
275       PM.add(createVerifierPass());
276
277     // Ask the target to add backend passes as necessary.
278     if (Target.addPassesToEmitWholeFile(PM, *Out, FileType, OLvl)) {
279       std::cerr << argv[0] << ": target does not support generation of this"
280                 << " file type!\n";
281       if (Out != &outs()) delete Out;
282       // And the Out file is empty and useless, so remove it now.
283       sys::Path(OutputFilename).eraseFromDisk();
284       return 1;
285     }
286     PM.run(mod);
287   } else {
288     // Build up all of the passes that we want to do to the module.
289     ExistingModuleProvider Provider(M.release());
290     FunctionPassManager Passes(&Provider);
291     Passes.add(new TargetData(*Target.getTargetData()));
292
293 #ifndef NDEBUG
294     if (!NoVerify)
295       Passes.add(createVerifierPass());
296 #endif
297
298     // Ask the target to add backend passes as necessary.
299     MachineCodeEmitter *MCE = 0;
300
301     // Override default to generate verbose assembly.
302     Target.setAsmVerbosityDefault(true);
303
304     switch (Target.addPassesToEmitFile(Passes, *Out, FileType, OLvl)) {
305     default:
306       assert(0 && "Invalid file model!");
307       return 1;
308     case FileModel::Error:
309       std::cerr << argv[0] << ": target does not support generation of this"
310                 << " file type!\n";
311       if (Out != &outs()) delete Out;
312       // And the Out file is empty and useless, so remove it now.
313       sys::Path(OutputFilename).eraseFromDisk();
314       return 1;
315     case FileModel::AsmFile:
316       break;
317     case FileModel::MachOFile:
318       MCE = AddMachOWriter(Passes, *Out, Target);
319       break;
320     case FileModel::ElfFile:
321       MCE = AddELFWriter(Passes, *Out, Target);
322       break;
323     }
324
325     if (Target.addPassesToEmitFileFinish(Passes, MCE, OLvl)) {
326       std::cerr << argv[0] << ": target does not support generation of this"
327                 << " file type!\n";
328       if (Out != &outs()) delete Out;
329       // And the Out file is empty and useless, so remove it now.
330       sys::Path(OutputFilename).eraseFromDisk();
331       return 1;
332     }
333
334     Passes.doInitialization();
335
336     // Run our queue of passes all at once now, efficiently.
337     // TODO: this could lazily stream functions out of the module.
338     for (Module::iterator I = mod.begin(), E = mod.end(); I != E; ++I)
339       if (!I->isDeclaration())
340         Passes.run(*I);
341
342     Passes.doFinalization();
343   }
344
345   // Delete the ostream if it's not a stdout stream
346   if (Out != &outs()) delete Out;
347
348   return 0;
349 }