Remove the TargetMachine forwards for TargetSubtargetInfo based
[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
17 #include "llvm/ADT/Triple.h"
18 #include "llvm/CodeGen/CommandFlags.h"
19 #include "llvm/CodeGen/LinkAllAsmWriterComponents.h"
20 #include "llvm/CodeGen/LinkAllCodegenComponents.h"
21 #include "llvm/IR/DataLayout.h"
22 #include "llvm/IR/IRPrintingPasses.h"
23 #include "llvm/IR/LLVMContext.h"
24 #include "llvm/IR/Module.h"
25 #include "llvm/IRReader/IRReader.h"
26 #include "llvm/MC/SubtargetFeature.h"
27 #include "llvm/Pass.h"
28 #include "llvm/PassManager.h"
29 #include "llvm/Support/CommandLine.h"
30 #include "llvm/Support/Debug.h"
31 #include "llvm/Support/FileSystem.h"
32 #include "llvm/Support/FormattedStream.h"
33 #include "llvm/Support/Host.h"
34 #include "llvm/Support/ManagedStatic.h"
35 #include "llvm/Support/PluginLoader.h"
36 #include "llvm/Support/PrettyStackTrace.h"
37 #include "llvm/Support/Signals.h"
38 #include "llvm/Support/SourceMgr.h"
39 #include "llvm/Support/TargetRegistry.h"
40 #include "llvm/Support/TargetSelect.h"
41 #include "llvm/Support/ToolOutputFile.h"
42 #include "llvm/Target/TargetLibraryInfo.h"
43 #include "llvm/Target/TargetMachine.h"
44 #include "llvm/Target/TargetSubtargetInfo.h"
45 #include <memory>
46 using namespace llvm;
47
48 // General options for llc.  Other pass-specific options are specified
49 // within the corresponding llc passes, and target-specific options
50 // and back-end code generation options are specified with the target machine.
51 //
52 static cl::opt<std::string>
53 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
54
55 static cl::opt<std::string>
56 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
57
58 static cl::opt<unsigned>
59 TimeCompilations("time-compilations", cl::Hidden, cl::init(1u),
60                  cl::value_desc("N"),
61                  cl::desc("Repeat compilation N times for timing"));
62
63 static cl::opt<bool>
64 NoIntegratedAssembler("no-integrated-as", cl::Hidden,
65                       cl::desc("Disable integrated assembler"));
66
67 // Determine optimization level.
68 static cl::opt<char>
69 OptLevel("O",
70          cl::desc("Optimization level. [-O0, -O1, -O2, or -O3] "
71                   "(default = '-O2')"),
72          cl::Prefix,
73          cl::ZeroOrMore,
74          cl::init(' '));
75
76 static cl::opt<std::string>
77 TargetTriple("mtriple", cl::desc("Override target triple for module"));
78
79 static cl::opt<bool> NoVerify("disable-verify", cl::Hidden,
80                               cl::desc("Do not verify input module"));
81
82 static cl::opt<bool> DisableSimplifyLibCalls("disable-simplify-libcalls",
83                                              cl::desc("Disable simplify-libcalls"));
84
85 static cl::opt<bool> ShowMCEncoding("show-mc-encoding", cl::Hidden,
86                                     cl::desc("Show encoding in .s output"));
87
88 static cl::opt<bool> EnableDwarfDirectory(
89     "enable-dwarf-directory", cl::Hidden,
90     cl::desc("Use .file directives with an explicit directory."));
91
92 static cl::opt<bool> AsmVerbose("asm-verbose",
93                                 cl::desc("Add comments to directives."),
94                                 cl::init(true));
95
96 static int compileModule(char **, LLVMContext &);
97
98 // GetFileNameRoot - Helper function to get the basename of a filename.
99 static inline std::string
100 GetFileNameRoot(const std::string &InputFilename) {
101   std::string IFN = InputFilename;
102   std::string outputFilename;
103   int Len = IFN.length();
104   if ((Len > 2) &&
105       IFN[Len-3] == '.' &&
106       ((IFN[Len-2] == 'b' && IFN[Len-1] == 'c') ||
107        (IFN[Len-2] == 'l' && IFN[Len-1] == 'l'))) {
108     outputFilename = std::string(IFN.begin(), IFN.end()-3); // s/.bc/.s/
109   } else {
110     outputFilename = IFN;
111   }
112   return outputFilename;
113 }
114
115 static tool_output_file *GetOutputStream(const char *TargetName,
116                                          Triple::OSType OS,
117                                          const char *ProgName) {
118   // If we don't yet have an output filename, make one.
119   if (OutputFilename.empty()) {
120     if (InputFilename == "-")
121       OutputFilename = "-";
122     else {
123       OutputFilename = GetFileNameRoot(InputFilename);
124
125       switch (FileType) {
126       case TargetMachine::CGFT_AssemblyFile:
127         if (TargetName[0] == 'c') {
128           if (TargetName[1] == 0)
129             OutputFilename += ".cbe.c";
130           else if (TargetName[1] == 'p' && TargetName[2] == 'p')
131             OutputFilename += ".cpp";
132           else
133             OutputFilename += ".s";
134         } else
135           OutputFilename += ".s";
136         break;
137       case TargetMachine::CGFT_ObjectFile:
138         if (OS == Triple::Win32)
139           OutputFilename += ".obj";
140         else
141           OutputFilename += ".o";
142         break;
143       case TargetMachine::CGFT_Null:
144         OutputFilename += ".null";
145         break;
146       }
147     }
148   }
149
150   // Decide if we need "binary" output.
151   bool Binary = false;
152   switch (FileType) {
153   case TargetMachine::CGFT_AssemblyFile:
154     break;
155   case TargetMachine::CGFT_ObjectFile:
156   case TargetMachine::CGFT_Null:
157     Binary = true;
158     break;
159   }
160
161   // Open the file.
162   std::string error;
163   sys::fs::OpenFlags OpenFlags = sys::fs::F_None;
164   if (!Binary)
165     OpenFlags |= sys::fs::F_Text;
166   tool_output_file *FDOut = new tool_output_file(OutputFilename.c_str(), error,
167                                                  OpenFlags);
168   if (!error.empty()) {
169     errs() << error << '\n';
170     delete FDOut;
171     return nullptr;
172   }
173
174   return FDOut;
175 }
176
177 // main - Entry point for the llc compiler.
178 //
179 int main(int argc, char **argv) {
180   sys::PrintStackTraceOnErrorSignal();
181   PrettyStackTraceProgram X(argc, argv);
182
183   // Enable debug stream buffering.
184   EnableDebugBuffering = true;
185
186   LLVMContext &Context = getGlobalContext();
187   llvm_shutdown_obj Y;  // Call llvm_shutdown() on exit.
188
189   // Initialize targets first, so that --version shows registered targets.
190   InitializeAllTargets();
191   InitializeAllTargetMCs();
192   InitializeAllAsmPrinters();
193   InitializeAllAsmParsers();
194
195   // Initialize codegen and IR passes used by llc so that the -print-after,
196   // -print-before, and -stop-after options work.
197   PassRegistry *Registry = PassRegistry::getPassRegistry();
198   initializeCore(*Registry);
199   initializeCodeGen(*Registry);
200   initializeLoopStrengthReducePass(*Registry);
201   initializeLowerIntrinsicsPass(*Registry);
202   initializeUnreachableBlockElimPass(*Registry);
203
204   // Register the target printer for --version.
205   cl::AddExtraVersionPrinter(TargetRegistry::printRegisteredTargetsForVersion);
206
207   cl::ParseCommandLineOptions(argc, argv, "llvm system compiler\n");
208
209   // Compile the module TimeCompilations times to give better compile time
210   // metrics.
211   for (unsigned I = TimeCompilations; I; --I)
212     if (int RetVal = compileModule(argv, Context))
213       return RetVal;
214   return 0;
215 }
216
217 static int compileModule(char **argv, LLVMContext &Context) {
218   // Load the module to be compiled...
219   SMDiagnostic Err;
220   std::unique_ptr<Module> M;
221   Module *mod = nullptr;
222   Triple TheTriple;
223
224   bool SkipModule = MCPU == "help" ||
225                     (!MAttrs.empty() && MAttrs.front() == "help");
226
227   // If user asked for the 'native' CPU, autodetect here. If autodection fails,
228   // this will set the CPU to an empty string which tells the target to
229   // pick a basic default.
230   if (MCPU == "native")
231     MCPU = sys::getHostCPUName();
232
233   // If user just wants to list available options, skip module loading
234   if (!SkipModule) {
235     M.reset(ParseIRFile(InputFilename, Err, Context));
236     mod = M.get();
237     if (mod == nullptr) {
238       Err.print(argv[0], errs());
239       return 1;
240     }
241
242     // If we are supposed to override the target triple, do so now.
243     if (!TargetTriple.empty())
244       mod->setTargetTriple(Triple::normalize(TargetTriple));
245     TheTriple = Triple(mod->getTargetTriple());
246   } else {
247     TheTriple = Triple(Triple::normalize(TargetTriple));
248   }
249
250   if (TheTriple.getTriple().empty())
251     TheTriple.setTriple(sys::getDefaultTargetTriple());
252
253   // Get the target specific parser.
254   std::string Error;
255   const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple,
256                                                          Error);
257   if (!TheTarget) {
258     errs() << argv[0] << ": " << Error;
259     return 1;
260   }
261
262   // Package up features to be passed to target/subtarget
263   std::string FeaturesStr;
264   if (MAttrs.size()) {
265     SubtargetFeatures Features;
266     for (unsigned i = 0; i != MAttrs.size(); ++i)
267       Features.AddFeature(MAttrs[i]);
268     FeaturesStr = Features.getString();
269   }
270
271   CodeGenOpt::Level OLvl = CodeGenOpt::Default;
272   switch (OptLevel) {
273   default:
274     errs() << argv[0] << ": invalid optimization level.\n";
275     return 1;
276   case ' ': break;
277   case '0': OLvl = CodeGenOpt::None; break;
278   case '1': OLvl = CodeGenOpt::Less; break;
279   case '2': OLvl = CodeGenOpt::Default; break;
280   case '3': OLvl = CodeGenOpt::Aggressive; break;
281   }
282
283   TargetOptions Options = InitTargetOptionsFromCodeGenFlags();
284   Options.DisableIntegratedAS = NoIntegratedAssembler;
285   Options.MCOptions.ShowMCEncoding = ShowMCEncoding;
286   Options.MCOptions.MCUseDwarfDirectory = EnableDwarfDirectory;
287   Options.MCOptions.AsmVerbose = AsmVerbose;
288
289   std::unique_ptr<TargetMachine> target(
290       TheTarget->createTargetMachine(TheTriple.getTriple(), MCPU, FeaturesStr,
291                                      Options, RelocModel, CMModel, OLvl));
292   assert(target.get() && "Could not allocate target machine!");
293
294   // If we don't have a module then just exit now. We do this down
295   // here since the CPU/Feature help is underneath the target machine
296   // creation.
297   if (SkipModule)
298     return 0;
299
300   assert(mod && "Should have exited if we didn't have a module!");
301   TargetMachine &Target = *target.get();
302
303   if (GenerateSoftFloatCalls)
304     FloatABIForCalls = FloatABI::Soft;
305
306   // Figure out where we are going to send the output.
307   std::unique_ptr<tool_output_file> Out(
308       GetOutputStream(TheTarget->getName(), TheTriple.getOS(), argv[0]));
309   if (!Out) return 1;
310
311   // Build up all of the passes that we want to do to the module.
312   PassManager PM;
313
314   // Add an appropriate TargetLibraryInfo pass for the module's triple.
315   TargetLibraryInfo *TLI = new TargetLibraryInfo(TheTriple);
316   if (DisableSimplifyLibCalls)
317     TLI->disableAllFunctions();
318   PM.add(TLI);
319
320   // Add the target data from the target machine, if it exists, or the module.
321   if (const DataLayout *DL = Target.getSubtargetImpl()->getDataLayout())
322     mod->setDataLayout(DL);
323   PM.add(new DataLayoutPass(mod));
324
325   if (RelaxAll.getNumOccurrences() > 0 &&
326       FileType != TargetMachine::CGFT_ObjectFile)
327     errs() << argv[0]
328              << ": warning: ignoring -mc-relax-all because filetype != obj";
329
330   {
331     formatted_raw_ostream FOS(Out->os());
332
333     AnalysisID StartAfterID = nullptr;
334     AnalysisID StopAfterID = nullptr;
335     const PassRegistry *PR = PassRegistry::getPassRegistry();
336     if (!StartAfter.empty()) {
337       const PassInfo *PI = PR->getPassInfo(StartAfter);
338       if (!PI) {
339         errs() << argv[0] << ": start-after pass is not registered.\n";
340         return 1;
341       }
342       StartAfterID = PI->getTypeInfo();
343     }
344     if (!StopAfter.empty()) {
345       const PassInfo *PI = PR->getPassInfo(StopAfter);
346       if (!PI) {
347         errs() << argv[0] << ": stop-after pass is not registered.\n";
348         return 1;
349       }
350       StopAfterID = PI->getTypeInfo();
351     }
352
353     // Ask the target to add backend passes as necessary.
354     if (Target.addPassesToEmitFile(PM, FOS, FileType, NoVerify,
355                                    StartAfterID, StopAfterID)) {
356       errs() << argv[0] << ": target does not support generation of this"
357              << " file type!\n";
358       return 1;
359     }
360
361     // Before executing passes, print the final values of the LLVM options.
362     cl::PrintOptionValues();
363
364     PM.run(*mod);
365   }
366
367   // Declare success.
368   Out->keep();
369
370   return 0;
371 }