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