blob: 2c725e8a2f1e00eacae08fa95c1865bc21c9f762 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- llc.cpp - Implement the LLVM Native Code Generator ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5f5a5732007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
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"
Anton Korobeynikov6a2122d2008-08-17 14:33:01 +000019#include "llvm/CodeGen/LinkAllAsmWriterComponents.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000020#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/ManagedStatic.h"
31#include "llvm/Support/MemoryBuffer.h"
32#include "llvm/Support/PluginLoader.h"
33#include "llvm/Support/FileUtilities.h"
Owen Anderson847b99b2008-08-21 00:14:44 +000034#include "llvm/Support/raw_ostream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000035#include "llvm/Analysis/Verifier.h"
36#include "llvm/System/Signals.h"
37#include "llvm/Config/config.h"
38#include "llvm/LinkAllVMCore.h"
39#include <fstream>
40#include <iostream>
41#include <memory>
42using namespace llvm;
43
44// General options for llc. Other pass-specific options are specified
45// within the corresponding llc passes, and target-specific options
46// and back-end code generation options are specified with the target machine.
47//
48static cl::opt<std::string>
49InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
50
51static cl::opt<std::string>
52OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
53
54static cl::opt<bool> Force("f", cl::desc("Overwrite output files"));
55
56static cl::opt<bool> Fast("fast",
57 cl::desc("Generate code quickly, potentially sacrificing code quality"));
58
59static cl::opt<std::string>
60TargetTriple("mtriple", cl::desc("Override target triple for module"));
61
Gordon Henriksen99e34ab2007-10-17 21:28:48 +000062static cl::opt<const TargetMachineRegistry::entry*, false,
63 TargetMachineRegistry::Parser>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000064MArch("march", cl::desc("Architecture to generate code for:"));
65
66static cl::opt<std::string>
67MCPU("mcpu",
68 cl::desc("Target a specific cpu type (-mcpu=help for details)"),
69 cl::value_desc("cpu-name"),
70 cl::init(""));
71
72static cl::list<std::string>
73MAttrs("mattr",
74 cl::CommaSeparated,
75 cl::desc("Target specific attributes (-mattr=help for details)"),
76 cl::value_desc("a1,+a2,-a3,..."));
77
78cl::opt<TargetMachine::CodeGenFileType>
79FileType("filetype", cl::init(TargetMachine::AssemblyFile),
80 cl::desc("Choose a file type (not all types are supported by all targets):"),
81 cl::values(
82 clEnumValN(TargetMachine::AssemblyFile, "asm",
83 " Emit an assembly ('.s') file"),
84 clEnumValN(TargetMachine::ObjectFile, "obj",
85 " Emit a native object ('.o') file [experimental]"),
86 clEnumValN(TargetMachine::DynamicLibrary, "dynlib",
87 " Emit a native dynamic library ('.so') file"
88 " [experimental]"),
89 clEnumValEnd));
90
91cl::opt<bool> NoVerify("disable-verify", cl::Hidden,
92 cl::desc("Do not verify input module"));
93
94
95// GetFileNameRoot - Helper function to get the basename of a filename.
96static inline std::string
97GetFileNameRoot(const std::string &InputFilename) {
98 std::string IFN = InputFilename;
99 std::string outputFilename;
100 int Len = IFN.length();
101 if ((Len > 2) &&
102 IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c') {
103 outputFilename = std::string(IFN.begin(), IFN.end()-3); // s/.bc/.s/
104 } else {
105 outputFilename = IFN;
106 }
107 return outputFilename;
108}
109
Owen Anderson847b99b2008-08-21 00:14:44 +0000110static raw_ostream *GetOutputStream(const char *ProgName) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000111 if (OutputFilename != "") {
112 if (OutputFilename == "-")
Owen Anderson847b99b2008-08-21 00:14:44 +0000113 return &outs();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000114
115 // Specified an output filename?
116 if (!Force && std::ifstream(OutputFilename.c_str())) {
117 // If force is not specified, make sure not to overwrite a file!
118 std::cerr << ProgName << ": error opening '" << OutputFilename
119 << "': file exists!\n"
120 << "Use -f command line argument to force output\n";
121 return 0;
122 }
123 // Make sure that the Out file gets unlinked from the disk if we get a
124 // SIGINT
125 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
126
Owen Anderson847b99b2008-08-21 00:14:44 +0000127 std::string error;
128 return new raw_fd_ostream(OutputFilename.c_str(), error);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 }
130
131 if (InputFilename == "-") {
132 OutputFilename = "-";
Owen Anderson847b99b2008-08-21 00:14:44 +0000133 return &outs();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000134 }
135
136 OutputFilename = GetFileNameRoot(InputFilename);
137
138 switch (FileType) {
139 case TargetMachine::AssemblyFile:
Anton Korobeynikovb87de74b2008-04-23 22:29:24 +0000140 if (MArch->Name[0] == 'c') {
141 if (MArch->Name[1] == 0)
142 OutputFilename += ".cbe.c";
143 else if (MArch->Name[1] == 'p' && MArch->Name[2] == 'p')
144 OutputFilename += ".cpp";
145 else
146 OutputFilename += ".s";
147 } else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148 OutputFilename += ".s";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000149 break;
150 case TargetMachine::ObjectFile:
151 OutputFilename += ".o";
152 break;
153 case TargetMachine::DynamicLibrary:
154 OutputFilename += LTDL_SHLIB_EXT;
155 break;
156 }
157
158 if (!Force && std::ifstream(OutputFilename.c_str())) {
159 // If force is not specified, make sure not to overwrite a file!
160 std::cerr << ProgName << ": error opening '" << OutputFilename
161 << "': file exists!\n"
162 << "Use -f command line argument to force output\n";
163 return 0;
164 }
165
166 // Make sure that the Out file gets unlinked from the disk if we get a
167 // SIGINT
168 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
169
Owen Anderson847b99b2008-08-21 00:14:44 +0000170 std::string error;
171 raw_ostream *Out = new raw_fd_ostream(OutputFilename.c_str(), error);
172 if (!error.empty()) {
173 std::cerr << error;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000174 delete Out;
175 return 0;
176 }
177
178 return Out;
179}
180
181// main - Entry point for the llc compiler.
182//
183int main(int argc, char **argv) {
184 llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
Dan Gohman6099df82007-10-08 15:45:12 +0000185 cl::ParseCommandLineOptions(argc, argv, "llvm system compiler\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186 sys::PrintStackTraceOnErrorSignal();
187
188 // Load the module to be compiled...
189 std::string ErrorMessage;
190 std::auto_ptr<Module> M;
191
192 std::auto_ptr<MemoryBuffer> Buffer(
193 MemoryBuffer::getFileOrSTDIN(InputFilename, &ErrorMessage));
194 if (Buffer.get())
195 M.reset(ParseBitcodeFile(Buffer.get(), &ErrorMessage));
196 if (M.get() == 0) {
197 std::cerr << argv[0] << ": bitcode didn't read correctly.\n";
198 std::cerr << "Reason: " << ErrorMessage << "\n";
199 return 1;
200 }
201 Module &mod = *M.get();
202
203 // If we are supposed to override the target triple, do so now.
204 if (!TargetTriple.empty())
205 mod.setTargetTriple(TargetTriple);
206
207 // Allocate target machine. First, check whether the user has
208 // explicitly specified an architecture to compile for.
209 if (MArch == 0) {
210 std::string Err;
211 MArch = TargetMachineRegistry::getClosestStaticTargetForModule(mod, Err);
212 if (MArch == 0) {
213 std::cerr << argv[0] << ": error auto-selecting target for module '"
214 << Err << "'. Please use the -march option to explicitly "
215 << "pick a target.\n";
216 return 1;
217 }
218 }
219
220 // Package up features to be passed to target/subtarget
221 std::string FeaturesStr;
222 if (MCPU.size() || MAttrs.size()) {
223 SubtargetFeatures Features;
224 Features.setCPU(MCPU);
225 for (unsigned i = 0; i != MAttrs.size(); ++i)
226 Features.AddFeature(MAttrs[i]);
227 FeaturesStr = Features.getString();
228 }
229
230 std::auto_ptr<TargetMachine> target(MArch->CtorFn(mod, FeaturesStr));
231 assert(target.get() && "Could not allocate target machine!");
232 TargetMachine &Target = *target.get();
233
234 // Figure out where we are going to send the output...
Owen Anderson847b99b2008-08-21 00:14:44 +0000235 raw_ostream *Out = GetOutputStream(argv[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000236 if (Out == 0) return 1;
237
238 // If this target requires addPassesToEmitWholeFile, do it now. This is
239 // used by strange things like the C backend.
240 if (Target.WantsWholeFile()) {
241 PassManager PM;
242 PM.add(new TargetData(*Target.getTargetData()));
243 if (!NoVerify)
244 PM.add(createVerifierPass());
245
246 // Ask the target to add backend passes as necessary.
247 if (Target.addPassesToEmitWholeFile(PM, *Out, FileType, Fast)) {
248 std::cerr << argv[0] << ": target does not support generation of this"
249 << " file type!\n";
Owen Anderson847b99b2008-08-21 00:14:44 +0000250 if (Out != &outs()) delete Out;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251 // And the Out file is empty and useless, so remove it now.
252 sys::Path(OutputFilename).eraseFromDisk();
253 return 1;
254 }
255 PM.run(mod);
256 } else {
257 // Build up all of the passes that we want to do to the module.
Dan Gohmana16244e2008-04-16 15:56:26 +0000258 ExistingModuleProvider Provider(M.release());
259 FunctionPassManager Passes(&Provider);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000260 Passes.add(new TargetData(*Target.getTargetData()));
261
262#ifndef NDEBUG
263 if (!NoVerify)
264 Passes.add(createVerifierPass());
265#endif
266
267 // Ask the target to add backend passes as necessary.
268 MachineCodeEmitter *MCE = 0;
269
270 switch (Target.addPassesToEmitFile(Passes, *Out, FileType, Fast)) {
271 default:
272 assert(0 && "Invalid file model!");
273 return 1;
274 case FileModel::Error:
275 std::cerr << argv[0] << ": target does not support generation of this"
276 << " file type!\n";
Owen Anderson847b99b2008-08-21 00:14:44 +0000277 if (Out != &outs()) delete Out;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000278 // And the Out file is empty and useless, so remove it now.
279 sys::Path(OutputFilename).eraseFromDisk();
280 return 1;
281 case FileModel::AsmFile:
282 break;
283 case FileModel::MachOFile:
284 MCE = AddMachOWriter(Passes, *Out, Target);
285 break;
286 case FileModel::ElfFile:
287 MCE = AddELFWriter(Passes, *Out, Target);
288 break;
289 }
290
291 if (Target.addPassesToEmitFileFinish(Passes, MCE, Fast)) {
292 std::cerr << argv[0] << ": target does not support generation of this"
293 << " file type!\n";
Owen Anderson847b99b2008-08-21 00:14:44 +0000294 if (Out != &outs()) delete Out;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000295 // And the Out file is empty and useless, so remove it now.
296 sys::Path(OutputFilename).eraseFromDisk();
297 return 1;
298 }
299
300 Passes.doInitialization();
301
302 // Run our queue of passes all at once now, efficiently.
303 // TODO: this could lazily stream functions out of the module.
304 for (Module::iterator I = mod.begin(), E = mod.end(); I != E; ++I)
305 if (!I->isDeclaration())
306 Passes.run(*I);
307
308 Passes.doFinalization();
309 }
310
311 // Delete the ostream if it's not a stdout stream
Owen Anderson847b99b2008-08-21 00:14:44 +0000312 if (Out != &outs()) delete Out;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000313
314 return 0;
315}