The "linker_private_weak*" linkages should set the LTO_SYMBOL_DEFINITION_WEAK
[oota-llvm.git] / tools / lto / LTOModule.cpp
1 //===-- LTOModule.cpp - LLVM Link Time Optimizer --------------------------===//
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 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 "LTOModule.h"
16
17 #include "llvm/Constants.h"
18 #include "llvm/LLVMContext.h"
19 #include "llvm/Module.h"
20 #include "llvm/ADT/OwningPtr.h"
21 #include "llvm/ADT/Triple.h"
22 #include "llvm/Bitcode/ReaderWriter.h"
23 #include "llvm/Support/SystemUtils.h"
24 #include "llvm/Support/MemoryBuffer.h"
25 #include "llvm/Support/MathExtras.h"
26 #include "llvm/System/Host.h"
27 #include "llvm/System/Path.h"
28 #include "llvm/System/Process.h"
29 #include "llvm/Target/Mangler.h"
30 #include "llvm/Target/SubtargetFeature.h"
31 #include "llvm/MC/MCAsmInfo.h"
32 #include "llvm/MC/MCContext.h"
33 #include "llvm/Target/TargetMachine.h"
34 #include "llvm/Target/TargetRegistry.h"
35 #include "llvm/Target/TargetSelect.h"
36
37 using namespace llvm;
38
39 bool LTOModule::isBitcodeFile(const void *mem, size_t length) {
40   return llvm::sys::IdentifyFileType((char*)mem, length)
41     == llvm::sys::Bitcode_FileType;
42 }
43
44 bool LTOModule::isBitcodeFile(const char *path) {
45   return llvm::sys::Path(path).isBitcodeFile();
46 }
47
48 bool LTOModule::isBitcodeFileForTarget(const void *mem, size_t length,
49                                        const char *triplePrefix) {
50   MemoryBuffer *buffer = makeBuffer(mem, length);
51   if (!buffer)
52     return false;
53   return isTargetMatch(buffer, triplePrefix);
54 }
55
56
57 bool LTOModule::isBitcodeFileForTarget(const char *path,
58                                        const char *triplePrefix) {
59   MemoryBuffer *buffer = MemoryBuffer::getFile(path);
60   if (buffer == NULL)
61     return false;
62   return isTargetMatch(buffer, triplePrefix);
63 }
64
65 // Takes ownership of buffer.
66 bool LTOModule::isTargetMatch(MemoryBuffer *buffer, const char *triplePrefix) {
67   OwningPtr<Module> m(getLazyBitcodeModule(buffer, getGlobalContext()));
68   // On success, m owns buffer and both are deleted at end of this method.
69   if (!m) {
70     delete buffer;
71     return false;
72   }
73   std::string actualTarget = m->getTargetTriple();
74   return (strncmp(actualTarget.c_str(), triplePrefix,
75                   strlen(triplePrefix)) == 0);
76 }
77
78
79 LTOModule::LTOModule(Module *m, TargetMachine *t)
80   : _module(m), _target(t), _symbolsParsed(false)
81 {
82 }
83
84 LTOModule *LTOModule::makeLTOModule(const char *path,
85                                     std::string &errMsg) {
86   OwningPtr<MemoryBuffer> buffer(MemoryBuffer::getFile(path, &errMsg));
87   if (!buffer)
88     return NULL;
89   return makeLTOModule(buffer.get(), errMsg);
90 }
91
92 /// makeBuffer - Create a MemoryBuffer from a memory range.  MemoryBuffer
93 /// requires the byte past end of the buffer to be a zero.  We might get lucky
94 /// and already be that way, otherwise make a copy.  Also if next byte is on a
95 /// different page, don't assume it is readable.
96 MemoryBuffer *LTOModule::makeBuffer(const void *mem, size_t length) {
97   const char *startPtr = (char*)mem;
98   const char *endPtr = startPtr+length;
99   if (((uintptr_t)endPtr & (sys::Process::GetPageSize()-1)) == 0 ||
100       *endPtr != 0)
101     return MemoryBuffer::getMemBufferCopy(StringRef(startPtr, length));
102
103   return MemoryBuffer::getMemBuffer(StringRef(startPtr, length));
104 }
105
106
107 LTOModule *LTOModule::makeLTOModule(const void *mem, size_t length,
108                                     std::string &errMsg) {
109   OwningPtr<MemoryBuffer> buffer(makeBuffer(mem, length));
110   if (!buffer)
111     return NULL;
112   return makeLTOModule(buffer.get(), errMsg);
113 }
114
115 LTOModule *LTOModule::makeLTOModule(MemoryBuffer *buffer,
116                                     std::string &errMsg) {
117   InitializeAllTargets();
118
119   // parse bitcode buffer
120   OwningPtr<Module> m(ParseBitcodeFile(buffer, getGlobalContext(), &errMsg));
121   if (!m)
122     return NULL;
123
124   std::string Triple = m->getTargetTriple();
125   if (Triple.empty())
126     Triple = sys::getHostTriple();
127
128   // find machine architecture for this module
129   const Target *march = TargetRegistry::lookupTarget(Triple, errMsg);
130   if (!march)
131     return NULL;
132
133   // construct LTModule, hand over ownership of module and target
134   SubtargetFeatures Features;
135   Features.getDefaultSubtargetFeatures("" /* cpu */, llvm::Triple(Triple));
136   std::string FeatureStr = Features.getString();
137   TargetMachine *target = march->createTargetMachine(Triple, FeatureStr);
138   return new LTOModule(m.take(), target);
139 }
140
141
142 const char *LTOModule::getTargetTriple() {
143   return _module->getTargetTriple().c_str();
144 }
145
146 void LTOModule::setTargetTriple(const char *triple) {
147   _module->setTargetTriple(triple);
148 }
149
150 void LTOModule::addDefinedFunctionSymbol(Function *f, Mangler &mangler) {
151   // add to list of defined symbols
152   addDefinedSymbol(f, mangler, true);
153
154   // add external symbols referenced by this function.
155   for (Function::iterator b = f->begin(); b != f->end(); ++b) {
156     for (BasicBlock::iterator i = b->begin(); i != b->end(); ++i) {
157       for (unsigned count = 0, total = i->getNumOperands();
158            count != total; ++count) {
159         findExternalRefs(i->getOperand(count), mangler);
160       }
161     }
162   }
163 }
164
165 // Get string that data pointer points to.
166 bool LTOModule::objcClassNameFromExpression(Constant *c, std::string &name) {
167   if (ConstantExpr *ce = dyn_cast<ConstantExpr>(c)) {
168     Constant *op = ce->getOperand(0);
169     if (GlobalVariable *gvn = dyn_cast<GlobalVariable>(op)) {
170       Constant *cn = gvn->getInitializer();
171       if (ConstantArray *ca = dyn_cast<ConstantArray>(cn)) {
172         if (ca->isCString()) {
173           name = ".objc_class_name_" + ca->getAsString();
174           return true;
175         }
176       }
177     }
178   }
179   return false;
180 }
181
182 // Parse i386/ppc ObjC class data structure.
183 void LTOModule::addObjCClass(GlobalVariable *clgv) {
184   if (ConstantStruct *c = dyn_cast<ConstantStruct>(clgv->getInitializer())) {
185     // second slot in __OBJC,__class is pointer to superclass name
186     std::string superclassName;
187     if (objcClassNameFromExpression(c->getOperand(1), superclassName)) {
188       NameAndAttributes info;
189       if (_undefines.find(superclassName.c_str()) == _undefines.end()) {
190         const char *symbolName = ::strdup(superclassName.c_str());
191         info.name = symbolName;
192         info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
193         // string is owned by _undefines
194         _undefines[info.name] = info;
195       }
196     }
197     // third slot in __OBJC,__class is pointer to class name
198     std::string className;
199     if (objcClassNameFromExpression(c->getOperand(2), className)) {
200       const char *symbolName = ::strdup(className.c_str());
201       NameAndAttributes info;
202       info.name = symbolName;
203       info.attributes = (lto_symbol_attributes)
204         (LTO_SYMBOL_PERMISSIONS_DATA |
205          LTO_SYMBOL_DEFINITION_REGULAR |
206          LTO_SYMBOL_SCOPE_DEFAULT);
207       _symbols.push_back(info);
208       _defines[info.name] = 1;
209     }
210   }
211 }
212
213
214 // Parse i386/ppc ObjC category data structure.
215 void LTOModule::addObjCCategory(GlobalVariable *clgv) {
216   if (ConstantStruct *c = dyn_cast<ConstantStruct>(clgv->getInitializer())) {
217     // second slot in __OBJC,__category is pointer to target class name
218     std::string targetclassName;
219     if (objcClassNameFromExpression(c->getOperand(1), targetclassName)) {
220       NameAndAttributes info;
221       if (_undefines.find(targetclassName.c_str()) == _undefines.end()) {
222         const char *symbolName = ::strdup(targetclassName.c_str());
223         info.name = symbolName;
224         info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
225         // string is owned by _undefines
226         _undefines[info.name] = info;
227       }
228     }
229   }
230 }
231
232
233 // Parse i386/ppc ObjC class list data structure.
234 void LTOModule::addObjCClassRef(GlobalVariable *clgv) {
235   std::string targetclassName;
236   if (objcClassNameFromExpression(clgv->getInitializer(), targetclassName)) {
237     NameAndAttributes info;
238     if (_undefines.find(targetclassName.c_str()) == _undefines.end()) {
239       const char *symbolName = ::strdup(targetclassName.c_str());
240       info.name = symbolName;
241       info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
242       // string is owned by _undefines
243       _undefines[info.name] = info;
244     }
245   }
246 }
247
248
249 void LTOModule::addDefinedDataSymbol(GlobalValue *v, Mangler &mangler) {
250   // Add to list of defined symbols.
251   addDefinedSymbol(v, mangler, false);
252
253   // Special case i386/ppc ObjC data structures in magic sections:
254   // The issue is that the old ObjC object format did some strange
255   // contortions to avoid real linker symbols.  For instance, the
256   // ObjC class data structure is allocated statically in the executable
257   // that defines that class.  That data structures contains a pointer to
258   // its superclass.  But instead of just initializing that part of the
259   // struct to the address of its superclass, and letting the static and
260   // dynamic linkers do the rest, the runtime works by having that field
261   // instead point to a C-string that is the name of the superclass.
262   // At runtime the objc initialization updates that pointer and sets
263   // it to point to the actual super class.  As far as the linker
264   // knows it is just a pointer to a string.  But then someone wanted the
265   // linker to issue errors at build time if the superclass was not found.
266   // So they figured out a way in mach-o object format to use an absolute
267   // symbols (.objc_class_name_Foo = 0) and a floating reference
268   // (.reference .objc_class_name_Bar) to cause the linker into erroring when
269   // a class was missing.
270   // The following synthesizes the implicit .objc_* symbols for the linker
271   // from the ObjC data structures generated by the front end.
272   if (v->hasSection() /* && isTargetDarwin */) {
273     // special case if this data blob is an ObjC class definition
274     if (v->getSection().compare(0, 15, "__OBJC,__class,") == 0) {
275       if (GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
276         addObjCClass(gv);
277       }
278     }
279
280     // special case if this data blob is an ObjC category definition
281     else if (v->getSection().compare(0, 18, "__OBJC,__category,") == 0) {
282       if (GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
283         addObjCCategory(gv);
284       }
285     }
286
287     // special case if this data blob is the list of referenced classes
288     else if (v->getSection().compare(0, 18, "__OBJC,__cls_refs,") == 0) {
289       if (GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
290         addObjCClassRef(gv);
291       }
292     }
293   }
294
295   // add external symbols referenced by this data.
296   for (unsigned count = 0, total = v->getNumOperands();
297        count != total; ++count) {
298     findExternalRefs(v->getOperand(count), mangler);
299   }
300 }
301
302
303 void LTOModule::addDefinedSymbol(GlobalValue *def, Mangler &mangler,
304                                  bool isFunction) {
305   // ignore all llvm.* symbols
306   if (def->getName().startswith("llvm."))
307     return;
308
309   // string is owned by _defines
310   const char *symbolName = ::strdup(mangler.getNameWithPrefix(def).c_str());
311
312   // set alignment part log2() can have rounding errors
313   uint32_t align = def->getAlignment();
314   uint32_t attr = align ? CountTrailingZeros_32(def->getAlignment()) : 0;
315
316   // set permissions part
317   if (isFunction)
318     attr |= LTO_SYMBOL_PERMISSIONS_CODE;
319   else {
320     GlobalVariable *gv = dyn_cast<GlobalVariable>(def);
321     if (gv && gv->isConstant())
322       attr |= LTO_SYMBOL_PERMISSIONS_RODATA;
323     else
324       attr |= LTO_SYMBOL_PERMISSIONS_DATA;
325   }
326
327   // set definition part
328   if (def->hasWeakLinkage() || def->hasLinkOnceLinkage() ||
329       def->hasLinkerPrivateWeakLinkage() ||
330       def->hasLinkerPrivateWeakDefAutoLinkage()) {
331     attr |= LTO_SYMBOL_DEFINITION_WEAK;
332   }
333   else if (def->hasCommonLinkage()) {
334     attr |= LTO_SYMBOL_DEFINITION_TENTATIVE;
335   }
336   else {
337     attr |= LTO_SYMBOL_DEFINITION_REGULAR;
338   }
339
340   // set scope part
341   if (def->hasHiddenVisibility())
342     attr |= LTO_SYMBOL_SCOPE_HIDDEN;
343   else if (def->hasProtectedVisibility())
344     attr |= LTO_SYMBOL_SCOPE_PROTECTED;
345   else if (def->hasExternalLinkage() || def->hasWeakLinkage()
346            || def->hasLinkOnceLinkage() || def->hasCommonLinkage())
347     attr |= LTO_SYMBOL_SCOPE_DEFAULT;
348   else
349     attr |= LTO_SYMBOL_SCOPE_INTERNAL;
350
351   // add to table of symbols
352   NameAndAttributes info;
353   info.name = symbolName;
354   info.attributes = (lto_symbol_attributes)attr;
355   _symbols.push_back(info);
356   _defines[info.name] = 1;
357 }
358
359 void LTOModule::addAsmGlobalSymbol(const char *name) {
360   // only add new define if not already defined
361   if (_defines.count(name))
362     return;
363
364   // string is owned by _defines
365   const char *symbolName = ::strdup(name);
366   uint32_t attr = LTO_SYMBOL_DEFINITION_REGULAR;
367   attr |= LTO_SYMBOL_SCOPE_DEFAULT;
368   NameAndAttributes info;
369   info.name = symbolName;
370   info.attributes = (lto_symbol_attributes)attr;
371   _symbols.push_back(info);
372   _defines[info.name] = 1;
373 }
374
375 void LTOModule::addPotentialUndefinedSymbol(GlobalValue *decl,
376                                             Mangler &mangler) {
377   // ignore all llvm.* symbols
378   if (decl->getName().startswith("llvm."))
379     return;
380
381   // ignore all aliases
382   if (isa<GlobalAlias>(decl))
383     return;
384
385   std::string name = mangler.getNameWithPrefix(decl);
386
387   // we already have the symbol
388   if (_undefines.find(name) != _undefines.end())
389     return;
390
391   NameAndAttributes info;
392   // string is owned by _undefines
393   info.name = ::strdup(name.c_str());
394   if (decl->hasExternalWeakLinkage())
395     info.attributes = LTO_SYMBOL_DEFINITION_WEAKUNDEF;
396   else
397     info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
398   _undefines[name] = info;
399 }
400
401
402
403 // Find external symbols referenced by VALUE. This is a recursive function.
404 void LTOModule::findExternalRefs(Value *value, Mangler &mangler) {
405   if (GlobalValue *gv = dyn_cast<GlobalValue>(value)) {
406     if (!gv->hasExternalLinkage())
407       addPotentialUndefinedSymbol(gv, mangler);
408     // If this is a variable definition, do not recursively process
409     // initializer.  It might contain a reference to this variable
410     // and cause an infinite loop.  The initializer will be
411     // processed in addDefinedDataSymbol().
412     return;
413   }
414
415   // GlobalValue, even with InternalLinkage type, may have operands with
416   // ExternalLinkage type. Do not ignore these operands.
417   if (Constant *c = dyn_cast<Constant>(value)) {
418     // Handle ConstantExpr, ConstantStruct, ConstantArry etc.
419     for (unsigned i = 0, e = c->getNumOperands(); i != e; ++i)
420       findExternalRefs(c->getOperand(i), mangler);
421   }
422 }
423
424 void LTOModule::lazyParseSymbols() {
425   if (_symbolsParsed)
426     return;
427
428   _symbolsParsed = true;
429
430   // Use mangler to add GlobalPrefix to names to match linker names.
431   MCContext Context(*_target->getMCAsmInfo());
432   Mangler mangler(Context, *_target->getTargetData());
433
434   // add functions
435   for (Module::iterator f = _module->begin(); f != _module->end(); ++f) {
436     if (f->isDeclaration())
437       addPotentialUndefinedSymbol(f, mangler);
438     else
439       addDefinedFunctionSymbol(f, mangler);
440   }
441
442   // add data
443   for (Module::global_iterator v = _module->global_begin(),
444          e = _module->global_end(); v !=  e; ++v) {
445     if (v->isDeclaration())
446       addPotentialUndefinedSymbol(v, mangler);
447     else
448       addDefinedDataSymbol(v, mangler);
449   }
450
451   // add asm globals
452   const std::string &inlineAsm = _module->getModuleInlineAsm();
453   const std::string glbl = ".globl";
454   std::string asmSymbolName;
455   std::string::size_type pos = inlineAsm.find(glbl, 0);
456   while (pos != std::string::npos) {
457     // eat .globl
458     pos = pos + 6;
459
460     // skip white space between .globl and symbol name
461     std::string::size_type pbegin = inlineAsm.find_first_not_of(' ', pos);
462     if (pbegin == std::string::npos)
463       break;
464
465     // find end-of-line
466     std::string::size_type pend = inlineAsm.find_first_of('\n', pbegin);
467     if (pend == std::string::npos)
468       break;
469
470     asmSymbolName.assign(inlineAsm, pbegin, pend - pbegin);
471     addAsmGlobalSymbol(asmSymbolName.c_str());
472
473     // search next .globl
474     pos = inlineAsm.find(glbl, pend);
475   }
476
477   // make symbols for all undefines
478   for (StringMap<NameAndAttributes>::iterator it=_undefines.begin();
479        it != _undefines.end(); ++it) {
480     // if this symbol also has a definition, then don't make an undefine
481     // because it is a tentative definition
482     if (_defines.count(it->getKey()) == 0) {
483       NameAndAttributes info = it->getValue();
484       _symbols.push_back(info);
485     }
486   }
487 }
488
489
490 uint32_t LTOModule::getSymbolCount() {
491   lazyParseSymbols();
492   return _symbols.size();
493 }
494
495
496 lto_symbol_attributes LTOModule::getSymbolAttributes(uint32_t index) {
497   lazyParseSymbols();
498   if (index < _symbols.size())
499     return _symbols[index].attributes;
500   else
501     return lto_symbol_attributes(0);
502 }
503
504 const char *LTOModule::getSymbolName(uint32_t index) {
505   lazyParseSymbols();
506   if (index < _symbols.size())
507     return _symbols[index].name;
508   else
509     return NULL;
510 }