blob: 7e0823edf1bd6a9cec3ff51fdf11a0c4241a636f [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-lto.cpp - LLVM Link Time Optimizer ----------------------------------===//
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 file implements the Link Time Optimization library. This library is
11// intended to be used by linker to optimize code at link time.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/Module.h"
16#include "llvm/PassManager.h"
17#include "llvm/Linker.h"
18#include "llvm/Constants.h"
19#include "llvm/DerivedTypes.h"
20#include "llvm/ModuleProvider.h"
21#include "llvm/Bitcode/ReaderWriter.h"
22#include "llvm/Support/CommandLine.h"
23#include "llvm/Support/FileUtilities.h"
24#include "llvm/Support/SystemUtils.h"
25#include "llvm/Support/Mangler.h"
26#include "llvm/Support/MemoryBuffer.h"
27#include "llvm/System/Program.h"
28#include "llvm/System/Signals.h"
29#include "llvm/Analysis/Passes.h"
30#include "llvm/Analysis/LoopPass.h"
31#include "llvm/Analysis/Verifier.h"
32#include "llvm/CodeGen/FileWriters.h"
33#include "llvm/Target/SubtargetFeature.h"
Devang Patele3286082008-01-30 17:43:03 +000034#include "llvm/Target/TargetOptions.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000035#include "llvm/Target/TargetData.h"
36#include "llvm/Target/TargetMachine.h"
37#include "llvm/Target/TargetMachineRegistry.h"
38#include "llvm/Target/TargetAsmInfo.h"
39#include "llvm/Transforms/IPO.h"
40#include "llvm/Transforms/Scalar.h"
41#include "llvm/Analysis/LoadValueNumbering.h"
42#include "llvm/Support/MathExtras.h"
43#include "llvm/LinkTimeOptimizer.h"
44#include <fstream>
45#include <ostream>
46using namespace llvm;
47
48extern "C"
Devang Patelac953092008-01-15 23:52:34 +000049llvm::LinkTimeOptimizer *createLLVMOptimizer(unsigned VERSION)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050{
Devang Patelac953092008-01-15 23:52:34 +000051 // Linker records LLVM_LTO_VERSION based on llvm optimizer available
52 // during linker build. Match linker's recorded LTO VERSION number
53 // with installed llvm optimizer version. If these numbers do not match
54 // then linker may not be able to use llvm optimizer dynamically.
55 if (VERSION != LLVM_LTO_VERSION)
56 return NULL;
57
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058 llvm::LTO *l = new llvm::LTO();
59 return l;
60}
61
62/// If symbol is not used then make it internal and let optimizer takes
63/// care of it.
64void LLVMSymbol::mayBeNotUsed() {
65 gv->setLinkage(GlobalValue::InternalLinkage);
66}
67
68// Map LLVM LinkageType to LTO LinakgeType
69static LTOLinkageTypes
70getLTOLinkageType(GlobalValue *v)
71{
72 LTOLinkageTypes lt;
73 if (v->hasExternalLinkage())
74 lt = LTOExternalLinkage;
75 else if (v->hasLinkOnceLinkage())
76 lt = LTOLinkOnceLinkage;
77 else if (v->hasWeakLinkage())
78 lt = LTOWeakLinkage;
79 else
80 // Otherwise it is internal linkage for link time optimizer
81 lt = LTOInternalLinkage;
82 return lt;
83}
84
Devang Patelac953092008-01-15 23:52:34 +000085// MAP LLVM VisibilityType to LTO VisibilityType
86static LTOVisibilityTypes
87getLTOVisibilityType(GlobalValue *v)
88{
89 LTOVisibilityTypes vis;
90 if (v->hasHiddenVisibility())
91 vis = LTOHiddenVisibility;
92 else if (v->hasProtectedVisibility())
93 vis = LTOProtectedVisibility;
94 else
95 vis = LTODefaultVisibility;
96 return vis;
97}
98
Dan Gohmanf17a25c2007-07-18 16:29:46 +000099// Find exeternal symbols referenced by VALUE. This is a recursive function.
100static void
101findExternalRefs(Value *value, std::set<std::string> &references,
102 Mangler &mangler) {
103
104 if (GlobalValue *gv = dyn_cast<GlobalValue>(value)) {
105 LTOLinkageTypes lt = getLTOLinkageType(gv);
106 if (lt != LTOInternalLinkage && strncmp (gv->getName().c_str(), "llvm.", 5))
107 references.insert(mangler.getValueName(gv));
108 }
109
110 // GlobalValue, even with InternalLinkage type, may have operands with
111 // ExternalLinkage type. Do not ignore these operands.
112 if (Constant *c = dyn_cast<Constant>(value))
113 // Handle ConstantExpr, ConstantStruct, ConstantArry etc..
114 for (unsigned i = 0, e = c->getNumOperands(); i != e; ++i)
115 findExternalRefs(c->getOperand(i), references, mangler);
116}
117
118/// If Module with InputFilename is available then remove it from allModules
119/// and call delete on it.
120void
121LTO::removeModule (const std::string &InputFilename)
122{
123 NameToModuleMap::iterator pos = allModules.find(InputFilename.c_str());
124 if (pos == allModules.end())
125 return;
126
127 Module *m = pos->second;
128 allModules.erase(pos);
129 delete m;
130}
131
132/// InputFilename is a LLVM bitcode file. If Module with InputFilename is
133/// available then return it. Otherwise parseInputFilename.
134Module *
135LTO::getModule(const std::string &InputFilename)
136{
137 Module *m = NULL;
138
139 NameToModuleMap::iterator pos = allModules.find(InputFilename.c_str());
140 if (pos != allModules.end())
141 m = allModules[InputFilename.c_str()];
142 else {
143 if (MemoryBuffer *Buffer
144 = MemoryBuffer::getFile(&InputFilename[0], InputFilename.size())) {
145 m = ParseBitcodeFile(Buffer);
146 delete Buffer;
147 }
148 allModules[InputFilename.c_str()] = m;
149 }
150 return m;
151}
152
153/// InputFilename is a LLVM bitcode file. Reade this bitcode file and
154/// set corresponding target triplet string.
155void
156LTO::getTargetTriple(const std::string &InputFilename,
157 std::string &targetTriple)
158{
159 Module *m = getModule(InputFilename);
160 if (m)
161 targetTriple = m->getTargetTriple();
162}
163
164/// InputFilename is a LLVM bitcode file. Read it using bitcode reader.
165/// Collect global functions and symbol names in symbols vector.
166/// Collect external references in references vector.
167/// Return LTO_READ_SUCCESS if there is no error.
168enum LTOStatus
169LTO::readLLVMObjectFile(const std::string &InputFilename,
170 NameToSymbolMap &symbols,
171 std::set<std::string> &references)
172{
173 Module *m = getModule(InputFilename);
174 if (!m)
175 return LTO_READ_FAILURE;
176
177 // Collect Target info
178 getTarget(m);
179
180 if (!Target)
181 return LTO_READ_FAILURE;
182
183 // Use mangler to add GlobalPrefix to names to match linker names.
184 // FIXME : Instead of hard coding "-" use GlobalPrefix.
185 Mangler mangler(*m, Target->getTargetAsmInfo()->getGlobalPrefix());
186 modules.push_back(m);
187
188 for (Module::iterator f = m->begin(), e = m->end(); f != e; ++f) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000189 LTOLinkageTypes lt = getLTOLinkageType(f);
Devang Patelac953092008-01-15 23:52:34 +0000190 LTOVisibilityTypes vis = getLTOVisibilityType(f);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191 if (!f->isDeclaration() && lt != LTOInternalLinkage
192 && strncmp (f->getName().c_str(), "llvm.", 5)) {
193 int alignment = ( 16 > f->getAlignment() ? 16 : f->getAlignment());
Devang Patelac953092008-01-15 23:52:34 +0000194 LLVMSymbol *newSymbol = new LLVMSymbol(lt, vis, f, f->getName(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000195 mangler.getValueName(f),
196 Log2_32(alignment));
197 symbols[newSymbol->getMangledName()] = newSymbol;
198 allSymbols[newSymbol->getMangledName()] = newSymbol;
199 }
200
201 // Collect external symbols referenced by this function.
202 for (Function::iterator b = f->begin(), fe = f->end(); b != fe; ++b)
203 for (BasicBlock::iterator i = b->begin(), be = b->end();
Devang Patelac953092008-01-15 23:52:34 +0000204 i != be; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000205 for (unsigned count = 0, total = i->getNumOperands();
206 count != total; ++count)
207 findExternalRefs(i->getOperand(count), references, mangler);
Devang Patelac953092008-01-15 23:52:34 +0000208 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209 }
210
211 for (Module::global_iterator v = m->global_begin(), e = m->global_end();
212 v != e; ++v) {
213 LTOLinkageTypes lt = getLTOLinkageType(v);
Devang Patelac953092008-01-15 23:52:34 +0000214 LTOVisibilityTypes vis = getLTOVisibilityType(v);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000215 if (!v->isDeclaration() && lt != LTOInternalLinkage
216 && strncmp (v->getName().c_str(), "llvm.", 5)) {
217 const TargetData *TD = Target->getTargetData();
Devang Patelac953092008-01-15 23:52:34 +0000218 LLVMSymbol *newSymbol = new LLVMSymbol(lt, vis, v, v->getName(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219 mangler.getValueName(v),
220 TD->getPreferredAlignmentLog(v));
221 symbols[newSymbol->getMangledName()] = newSymbol;
222 allSymbols[newSymbol->getMangledName()] = newSymbol;
223
224 for (unsigned count = 0, total = v->getNumOperands();
225 count != total; ++count)
226 findExternalRefs(v->getOperand(count), references, mangler);
227
228 }
229 }
230
231 return LTO_READ_SUCCESS;
232}
233
234/// Get TargetMachine.
235/// Use module M to find appropriate Target.
236void
237LTO::getTarget (Module *M) {
238
239 if (Target)
240 return;
241
242 std::string Err;
Gordon Henriksen99e34ab2007-10-17 21:28:48 +0000243 const TargetMachineRegistry::entry* March =
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244 TargetMachineRegistry::getClosestStaticTargetForModule(*M, Err);
245
246 if (March == 0)
247 return;
248
249 // Create target
Devang Patel56870c92008-02-07 22:32:50 +0000250 SubtargetFeatures Features;
251 std::string FeatureStr;
252 std::string TargetTriple = M->getTargetTriple();
253
254 if (strncmp(TargetTriple.c_str(), "powerpc-apple-", 14) == 0)
255 Features.AddFeature("altivec", true);
256 else if (strncmp(TargetTriple.c_str(), "powerpc64-apple-", 16) == 0) {
257 Features.AddFeature("64bit", true);
258 Features.AddFeature("altivec", true);
259 }
260
261 FeatureStr = Features.getString();
262 Target = March->CtorFn(*M, FeatureStr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000263}
264
265/// Optimize module M using various IPO passes. Use exportList to
266/// internalize selected symbols. Target platform is selected
267/// based on information available to module M. No new target
268/// features are selected.
269enum LTOStatus
270LTO::optimize(Module *M, std::ostream &Out,
271 std::vector<const char *> &exportList)
272{
273 // Instantiate the pass manager to organize the passes.
274 PassManager Passes;
275
276 // Collect Target info
277 getTarget(M);
278
279 if (!Target)
280 return LTO_NO_TARGET;
Devang Patele3286082008-01-30 17:43:03 +0000281
282 // If target supports exception handling then enable it now.
283 if (Target->getTargetAsmInfo()->doesSupportExceptionHandling())
284 ExceptionHandling = true;
285
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000286 // Start off with a verification pass.
287 Passes.add(createVerifierPass());
288
289 // Add an appropriate TargetData instance for this module...
290 Passes.add(new TargetData(*Target->getTargetData()));
291
292 // Internalize symbols if export list is nonemty
293 if (!exportList.empty())
294 Passes.add(createInternalizePass(exportList));
295
296 // Now that we internalized some globals, see if we can hack on them!
297 Passes.add(createGlobalOptimizerPass());
298
299 // Linking modules together can lead to duplicated global constants, only
300 // keep one copy of each constant...
301 Passes.add(createConstantMergePass());
302
303 // If the -s command line option was specified, strip the symbols out of the
304 // resulting program to make it smaller. -s is a GLD option that we are
305 // supporting.
Dale Johannesene73bcbb2008-04-02 20:10:52 +0000306 Passes.add(createStripSymbolsPass());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000307
308 // Propagate constants at call sites into the functions they call.
309 Passes.add(createIPConstantPropagationPass());
310
311 // Remove unused arguments from functions...
312 Passes.add(createDeadArgEliminationPass());
313
314 Passes.add(createFunctionInliningPass()); // Inline small functions
315
316 Passes.add(createPruneEHPass()); // Remove dead EH info
317
318 Passes.add(createGlobalDCEPass()); // Remove dead functions
319
320 // If we didn't decide to inline a function, check to see if we can
321 // transform it to pass arguments by value instead of by reference.
322 Passes.add(createArgumentPromotionPass());
323
324 // The IPO passes may leave cruft around. Clean up after them.
325 Passes.add(createInstructionCombiningPass());
326
327 Passes.add(createScalarReplAggregatesPass()); // Break up allocas
328
329 // Run a few AA driven optimizations here and now, to cleanup the code.
330 Passes.add(createGlobalsModRefPass()); // IP alias analysis
331
332 Passes.add(createLICMPass()); // Hoist loop invariants
Owen Anderson590d7ae2008-04-21 07:51:07 +0000333 Passes.add(createGVNPass()); // Remove common subexprs
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000334 Passes.add(createDeadStoreEliminationPass()); // Nuke dead stores
335
336 // Cleanup and simplify the code after the scalar optimizations.
337 Passes.add(createInstructionCombiningPass());
338
339 // Delete basic blocks, which optimization passes may have killed...
340 Passes.add(createCFGSimplificationPass());
341
342 // Now that we have optimized the program, discard unreachable functions...
343 Passes.add(createGlobalDCEPass());
344
345 // Make sure everything is still good.
346 Passes.add(createVerifierPass());
347
348 FunctionPassManager *CodeGenPasses =
349 new FunctionPassManager(new ExistingModuleProvider(M));
350
351 CodeGenPasses->add(new TargetData(*Target->getTargetData()));
352
353 MachineCodeEmitter *MCE = 0;
354
355 switch (Target->addPassesToEmitFile(*CodeGenPasses, Out,
356 TargetMachine::AssemblyFile, true)) {
357 default:
358 case FileModel::Error:
359 return LTO_WRITE_FAILURE;
360 case FileModel::AsmFile:
361 break;
362 case FileModel::MachOFile:
363 MCE = AddMachOWriter(*CodeGenPasses, Out, *Target);
364 break;
365 case FileModel::ElfFile:
366 MCE = AddELFWriter(*CodeGenPasses, Out, *Target);
367 break;
368 }
369
370 if (Target->addPassesToEmitFileFinish(*CodeGenPasses, MCE, true))
371 return LTO_WRITE_FAILURE;
372
373 // Run our queue of passes all at once now, efficiently.
374 Passes.run(*M);
375
376 // Run the code generator, if present.
377 CodeGenPasses->doInitialization();
378 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) {
379 if (!I->isDeclaration())
380 CodeGenPasses->run(*I);
381 }
382 CodeGenPasses->doFinalization();
383
384 return LTO_OPT_SUCCESS;
385}
386
387///Link all modules together and optimize them using IPO. Generate
388/// native object file using OutputFilename
389/// Return appropriate LTOStatus.
390enum LTOStatus
391LTO::optimizeModules(const std::string &OutputFilename,
392 std::vector<const char *> &exportList,
393 std::string &targetTriple,
Devang Patelac953092008-01-15 23:52:34 +0000394 bool saveTemps, const char *FinalOutputFilename)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000395{
396 if (modules.empty())
397 return LTO_NO_WORK;
398
399 std::ios::openmode io_mode =
400 std::ios::out | std::ios::trunc | std::ios::binary;
401 std::string *errMsg = NULL;
402 Module *bigOne = modules[0];
403 Linker theLinker("LinkTimeOptimizer", bigOne, false);
404 for (unsigned i = 1, e = modules.size(); i != e; ++i)
405 if (theLinker.LinkModules(bigOne, modules[i], errMsg))
406 return LTO_MODULE_MERGE_FAILURE;
407 // all modules have been handed off to the linker.
408 modules.clear();
409
410 sys::Path FinalOutputPath(FinalOutputFilename);
411 FinalOutputPath.eraseSuffix();
412
Devang Patelac953092008-01-15 23:52:34 +0000413 switch(CGModel) {
414 case LTO_CGM_Dynamic:
415 Target->setRelocationModel(Reloc::PIC_);
416 break;
417 case LTO_CGM_DynamicNoPIC:
418 Target->setRelocationModel(Reloc::DynamicNoPIC);
419 break;
420 case LTO_CGM_Static:
421 Target->setRelocationModel(Reloc::Static);
422 break;
423 }
424
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000425 if (saveTemps) {
426 std::string tempFileName(FinalOutputPath.c_str());
427 tempFileName += "0.bc";
428 std::ofstream Out(tempFileName.c_str(), io_mode);
429 WriteBitcodeToFile(bigOne, Out);
430 }
431
432 // Strip leading underscore because it was added to match names
433 // seen by linker.
434 for (unsigned i = 0, e = exportList.size(); i != e; ++i) {
435 const char *name = exportList[i];
436 NameToSymbolMap::iterator itr = allSymbols.find(name);
437 if (itr != allSymbols.end())
438 exportList[i] = allSymbols[name]->getName();
439 }
440
441
442 std::string ErrMsg;
443 sys::Path TempDir = sys::Path::GetTemporaryDirectory(&ErrMsg);
444 if (TempDir.isEmpty()) {
445 cerr << "lto: " << ErrMsg << "\n";
446 return LTO_WRITE_FAILURE;
447 }
448 sys::Path tmpAsmFilePath(TempDir);
449 if (!tmpAsmFilePath.appendComponent("lto")) {
450 cerr << "lto: " << ErrMsg << "\n";
451 TempDir.eraseFromDisk(true);
452 return LTO_WRITE_FAILURE;
453 }
454 if (tmpAsmFilePath.createTemporaryFileOnDisk(true, &ErrMsg)) {
455 cerr << "lto: " << ErrMsg << "\n";
456 TempDir.eraseFromDisk(true);
457 return LTO_WRITE_FAILURE;
458 }
459 sys::RemoveFileOnSignal(tmpAsmFilePath);
460
461 std::ofstream asmFile(tmpAsmFilePath.c_str(), io_mode);
462 if (!asmFile.is_open() || asmFile.bad()) {
463 if (tmpAsmFilePath.exists()) {
464 tmpAsmFilePath.eraseFromDisk();
465 TempDir.eraseFromDisk(true);
466 }
467 return LTO_WRITE_FAILURE;
468 }
469
470 enum LTOStatus status = optimize(bigOne, asmFile, exportList);
471 asmFile.close();
472 if (status != LTO_OPT_SUCCESS) {
473 tmpAsmFilePath.eraseFromDisk();
474 TempDir.eraseFromDisk(true);
475 return status;
476 }
477
478 if (saveTemps) {
479 std::string tempFileName(FinalOutputPath.c_str());
480 tempFileName += "1.bc";
481 std::ofstream Out(tempFileName.c_str(), io_mode);
482 WriteBitcodeToFile(bigOne, Out);
483 }
484
485 targetTriple = bigOne->getTargetTriple();
486
487 // Run GCC to assemble and link the program into native code.
488 //
489 // Note:
490 // We can't just assemble and link the file with the system assembler
491 // and linker because we don't know where to put the _start symbol.
492 // GCC mysteriously knows how to do it.
493 const sys::Path gcc = sys::Program::FindProgramByName("gcc");
494 if (gcc.isEmpty()) {
495 tmpAsmFilePath.eraseFromDisk();
496 TempDir.eraseFromDisk(true);
497 return LTO_ASM_FAILURE;
498 }
499
500 std::vector<const char*> args;
501 args.push_back(gcc.c_str());
Devang Pateleb9964c2008-01-30 19:19:31 +0000502 if (strncmp(targetTriple.c_str(), "i686-apple-", 11) == 0) {
503 args.push_back("-arch");
504 args.push_back("i386");
505 }
506 if (strncmp(targetTriple.c_str(), "x86_64-apple-", 13) == 0) {
507 args.push_back("-arch");
508 args.push_back("x86_64");
509 }
510 if (strncmp(targetTriple.c_str(), "powerpc-apple-", 14) == 0) {
511 args.push_back("-arch");
512 args.push_back("ppc");
513 }
514 if (strncmp(targetTriple.c_str(), "powerpc64-apple-", 16) == 0) {
515 args.push_back("-arch");
516 args.push_back("ppc64");
517 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518 args.push_back("-c");
519 args.push_back("-x");
520 args.push_back("assembler");
521 args.push_back("-o");
522 args.push_back(OutputFilename.c_str());
523 args.push_back(tmpAsmFilePath.c_str());
524 args.push_back(0);
525
Devang Patel104e7092008-02-04 21:16:10 +0000526 if (sys::Program::ExecuteAndWait(gcc, &args[0], 0, 0, 0, 0, &ErrMsg)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527 cerr << "lto: " << ErrMsg << "\n";
528 return LTO_ASM_FAILURE;
529 }
530
531 tmpAsmFilePath.eraseFromDisk();
532 TempDir.eraseFromDisk(true);
533
534 return LTO_OPT_SUCCESS;
535}
536
537void LTO::printVersion() {
538 cl::PrintVersionMessage();
539}
540
541/// Unused pure-virtual destructor. Must remain empty.
542LinkTimeOptimizer::~LinkTimeOptimizer() {}
543
544/// Destruct LTO. Delete all modules, symbols and target.
545LTO::~LTO() {
546
547 for (std::vector<Module *>::iterator itr = modules.begin(), e = modules.end();
548 itr != e; ++itr)
549 delete *itr;
550
551 modules.clear();
552
553 for (NameToSymbolMap::iterator itr = allSymbols.begin(), e = allSymbols.end();
554 itr != e; ++itr)
555 delete itr->second;
556
557 allSymbols.clear();
558
559 delete Target;
560}