blob: 49fa2c4b91002fea806812869c16482259ce641e [file] [log] [blame]
Chris Lattner5ef31a02010-03-12 18:44:54 +00001//===-- LTOModule.cpp - LLVM Link Time Optimizer --------------------------===//
Nick Kledzik77595fc2008-02-26 20:26:43 +00002//
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.
Daniel Dunbarb06913d2010-08-10 23:46:39 +00007//
Nick Kledzik77595fc2008-02-26 20:26:43 +00008//===----------------------------------------------------------------------===//
9//
Daniel Dunbarb06913d2010-08-10 23:46:39 +000010// This file implements the Link Time Optimization library. This library is
Nick Kledzik77595fc2008-02-26 20:26:43 +000011// intended to be used by linker to optimize code at link time.
12//
13//===----------------------------------------------------------------------===//
14
Nick Kledzikef194ed2008-02-27 22:25:36 +000015#include "LTOModule.h"
16
Nick Kledzik3eb445f2009-06-01 20:33:09 +000017#include "llvm/Constants.h"
Owen Anderson8b477ed2009-07-01 16:58:40 +000018#include "llvm/LLVMContext.h"
Nick Kledzik77595fc2008-02-26 20:26:43 +000019#include "llvm/Module.h"
Nick Kledzikef194ed2008-02-27 22:25:36 +000020#include "llvm/ADT/OwningPtr.h"
Viktor Kutuzove823db82009-11-18 20:20:05 +000021#include "llvm/ADT/Triple.h"
Nick Kledzik77595fc2008-02-26 20:26:43 +000022#include "llvm/Bitcode/ReaderWriter.h"
Nick Kledzik77595fc2008-02-26 20:26:43 +000023#include "llvm/Support/SystemUtils.h"
Nick Kledzik77595fc2008-02-26 20:26:43 +000024#include "llvm/Support/MemoryBuffer.h"
Nick Kledzikef194ed2008-02-27 22:25:36 +000025#include "llvm/Support/MathExtras.h"
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +000026#include "llvm/System/Host.h"
Nick Kledzik77595fc2008-02-26 20:26:43 +000027#include "llvm/System/Path.h"
Nick Kledzik90dcff72008-05-09 01:09:59 +000028#include "llvm/System/Process.h"
Chris Lattner45111d12010-01-16 21:57:06 +000029#include "llvm/Target/Mangler.h"
Bill Wendling604a8182008-06-18 06:35:30 +000030#include "llvm/Target/SubtargetFeature.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000031#include "llvm/MC/MCAsmInfo.h"
Chris Lattner5ef31a02010-03-12 18:44:54 +000032#include "llvm/MC/MCContext.h"
Daniel Dunbarff9834a2009-07-16 02:41:19 +000033#include "llvm/Target/TargetMachine.h"
34#include "llvm/Target/TargetRegistry.h"
Nick Lewyckyd42b58b2009-07-26 22:16:39 +000035#include "llvm/Target/TargetSelect.h"
Nick Kledzik77595fc2008-02-26 20:26:43 +000036
Nick Kledzik77595fc2008-02-26 20:26:43 +000037using namespace llvm;
38
Daniel Dunbarb06913d2010-08-10 23:46:39 +000039bool LTOModule::isBitcodeFile(const void *mem, size_t length) {
40 return llvm::sys::IdentifyFileType((char*)mem, length)
41 == llvm::sys::Bitcode_FileType;
Nick Kledzik77595fc2008-02-26 20:26:43 +000042}
43
Daniel Dunbarb06913d2010-08-10 23:46:39 +000044bool LTOModule::isBitcodeFile(const char *path) {
45 return llvm::sys::Path(path).isBitcodeFile();
Nick Kledzik77595fc2008-02-26 20:26:43 +000046}
47
Daniel Dunbarb06913d2010-08-10 23:46:39 +000048bool LTOModule::isBitcodeFileForTarget(const void *mem, size_t length,
49 const char *triplePrefix) {
50 MemoryBuffer *buffer = makeBuffer(mem, length);
51 if (!buffer)
Nick Kledzik3eb445f2009-06-01 20:33:09 +000052 return false;
Daniel Dunbarb06913d2010-08-10 23:46:39 +000053 return isTargetMatch(buffer, triplePrefix);
Nick Kledzik3eb445f2009-06-01 20:33:09 +000054}
55
Daniel Dunbarb06913d2010-08-10 23:46:39 +000056
57bool 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.
66bool 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
79LTOModule::LTOModule(Module *m, TargetMachine *t)
80 : _module(m), _target(t), _symbolsParsed(false)
Nick Kledzik3eb445f2009-06-01 20:33:09 +000081{
Daniel Dunbarb06913d2010-08-10 23:46:39 +000082}
83
84LTOModule *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.
96MemoryBuffer *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
107LTOModule *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
115LTOModule *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
142const char *LTOModule::getTargetTriple() {
143 return _module->getTargetTriple().c_str();
144}
145
146void LTOModule::setTargetTriple(const char *triple) {
147 _module->setTargetTriple(triple);
148}
149
150void 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 }
Nick Kledzik3eb445f2009-06-01 20:33:09 +0000161 }
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000162 }
Nick Kledzik3eb445f2009-06-01 20:33:09 +0000163}
164
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000165// Get string that data pointer points to.
166bool 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;
Nick Kledzik3eb445f2009-06-01 20:33:09 +0000175 }
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000176 }
Nick Kledzik3eb445f2009-06-01 20:33:09 +0000177 }
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000178 }
179 return false;
180}
181
182// Parse i386/ppc ObjC class data structure.
183void 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 = ::strdup(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 }
Nick Kledzik3eb445f2009-06-01 20:33:09 +0000211}
212
213
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000214// Parse i386/ppc ObjC category data structure.
215void 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
Nick Kledzik3eb445f2009-06-01 20:33:09 +0000218 std::string targetclassName;
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000219 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 = ::strdup(symbolName);
224 info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
225 // string is owned by _undefines
226 _undefines[info.name] = info;
227 }
Nick Kledzik3eb445f2009-06-01 20:33:09 +0000228 }
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000229 }
Nick Kledzik3eb445f2009-06-01 20:33:09 +0000230}
231
232
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000233// Parse i386/ppc ObjC class list data structure.
234void LTOModule::addObjCClassRef(GlobalVariable *clgv) {
235 std::string targetclassName;
236 if (objcClassNameFromExpression(clgv->getInitializer(), targetclassName)) {
Nick Kledzik77595fc2008-02-26 20:26:43 +0000237 NameAndAttributes info;
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000238 if (_undefines.find(targetclassName.c_str()) == _undefines.end()) {
239 const char *symbolName = ::strdup(targetclassName.c_str());
240 info.name = ::strdup(symbolName);
241 info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
242 // string is owned by _undefines
243 _undefines[info.name] = info;
244 }
245 }
246}
247
248
249void 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
303void 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 attr |= LTO_SYMBOL_DEFINITION_WEAK;
330 }
331 else if (def->hasCommonLinkage()) {
332 attr |= LTO_SYMBOL_DEFINITION_TENTATIVE;
333 }
334 else {
335 attr |= LTO_SYMBOL_DEFINITION_REGULAR;
336 }
337
338 // set scope part
339 if (def->hasHiddenVisibility())
340 attr |= LTO_SYMBOL_SCOPE_HIDDEN;
341 else if (def->hasProtectedVisibility())
342 attr |= LTO_SYMBOL_SCOPE_PROTECTED;
343 else if (def->hasExternalLinkage() || def->hasWeakLinkage()
344 || def->hasLinkOnceLinkage() || def->hasCommonLinkage())
345 attr |= LTO_SYMBOL_SCOPE_DEFAULT;
346 else
347 attr |= LTO_SYMBOL_SCOPE_INTERNAL;
348
349 // add to table of symbols
350 NameAndAttributes info;
351 info.name = symbolName;
352 info.attributes = (lto_symbol_attributes)attr;
353 _symbols.push_back(info);
354 _defines[info.name] = 1;
Nick Kledzik77595fc2008-02-26 20:26:43 +0000355}
356
Devang Patelc2aec572008-07-16 18:06:52 +0000357void LTOModule::addAsmGlobalSymbol(const char *name) {
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000358 // only add new define if not already defined
359 if (_defines.count(name) == 0)
360 return;
361
362 // string is owned by _defines
363 const char *symbolName = ::strdup(name);
364 uint32_t attr = LTO_SYMBOL_DEFINITION_REGULAR;
365 attr |= LTO_SYMBOL_SCOPE_DEFAULT;
366 NameAndAttributes info;
367 info.name = symbolName;
368 info.attributes = (lto_symbol_attributes)attr;
369 _symbols.push_back(info);
370 _defines[info.name] = 1;
Devang Patelc2aec572008-07-16 18:06:52 +0000371}
Nick Kledzik77595fc2008-02-26 20:26:43 +0000372
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000373void LTOModule::addPotentialUndefinedSymbol(GlobalValue *decl,
374 Mangler &mangler) {
375 // ignore all llvm.* symbols
376 if (decl->getName().startswith("llvm."))
377 return;
Nick Kledzik3eb445f2009-06-01 20:33:09 +0000378
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000379 // ignore all aliases
380 if (isa<GlobalAlias>(decl))
381 return;
Nick Lewycky485ded02009-07-09 06:03:04 +0000382
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000383 std::string name = mangler.getNameWithPrefix(decl);
Rafael Espindola7431af02009-04-24 16:55:21 +0000384
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000385 // we already have the symbol
386 if (_undefines.find(name) != _undefines.end())
387 return;
Rafael Espindola7431af02009-04-24 16:55:21 +0000388
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000389 NameAndAttributes info;
390 // string is owned by _undefines
391 info.name = ::strdup(name.c_str());
392 if (decl->hasExternalWeakLinkage())
393 info.attributes = LTO_SYMBOL_DEFINITION_WEAKUNDEF;
394 else
395 info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
396 _undefines[name] = info;
Nick Kledzik77595fc2008-02-26 20:26:43 +0000397}
398
399
400
Nick Lewyckyd42b58b2009-07-26 22:16:39 +0000401// Find external symbols referenced by VALUE. This is a recursive function.
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000402void LTOModule::findExternalRefs(Value *value, Mangler &mangler) {
403 if (GlobalValue *gv = dyn_cast<GlobalValue>(value)) {
404 if (!gv->hasExternalLinkage())
405 addPotentialUndefinedSymbol(gv, mangler);
406 // If this is a variable definition, do not recursively process
407 // initializer. It might contain a reference to this variable
408 // and cause an infinite loop. The initializer will be
409 // processed in addDefinedDataSymbol().
410 return;
411 }
Nick Kledzik77595fc2008-02-26 20:26:43 +0000412
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000413 // GlobalValue, even with InternalLinkage type, may have operands with
414 // ExternalLinkage type. Do not ignore these operands.
415 if (Constant *c = dyn_cast<Constant>(value)) {
416 // Handle ConstantExpr, ConstantStruct, ConstantArry etc.
417 for (unsigned i = 0, e = c->getNumOperands(); i != e; ++i)
418 findExternalRefs(c->getOperand(i), mangler);
419 }
420}
421
422void LTOModule::lazyParseSymbols() {
423 if (!_symbolsParsed) {
424 _symbolsParsed = true;
425
426 // Use mangler to add GlobalPrefix to names to match linker names.
427 MCContext Context(*_target->getMCAsmInfo());
428 Mangler mangler(Context, *_target->getTargetData());
429
430 // add functions
431 for (Module::iterator f = _module->begin(); f != _module->end(); ++f) {
432 if (f->isDeclaration())
433 addPotentialUndefinedSymbol(f, mangler);
434 else
435 addDefinedFunctionSymbol(f, mangler);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000436 }
Gabor Greif4136e7b2009-09-23 02:46:12 +0000437
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000438 // add data
439 for (Module::global_iterator v = _module->global_begin(),
440 e = _module->global_end(); v != e; ++v) {
441 if (v->isDeclaration())
442 addPotentialUndefinedSymbol(v, mangler);
443 else
444 addDefinedDataSymbol(v, mangler);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000445 }
Nick Kledzik77595fc2008-02-26 20:26:43 +0000446
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000447 // add asm globals
448 const std::string &inlineAsm = _module->getModuleInlineAsm();
449 const std::string glbl = ".globl";
450 std::string asmSymbolName;
451 std::string::size_type pos = inlineAsm.find(glbl, 0);
452 while (pos != std::string::npos) {
453 // eat .globl
454 pos = pos + 6;
Nick Kledzik77595fc2008-02-26 20:26:43 +0000455
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000456 // skip white space between .globl and symbol name
457 std::string::size_type pbegin = inlineAsm.find_first_not_of(' ', pos);
458 if (pbegin == std::string::npos)
459 break;
Nick Kledzik77595fc2008-02-26 20:26:43 +0000460
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000461 // find end-of-line
462 std::string::size_type pend = inlineAsm.find_first_of('\n', pbegin);
463 if (pend == std::string::npos)
464 break;
Devang Patelc2aec572008-07-16 18:06:52 +0000465
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000466 asmSymbolName.assign(inlineAsm, pbegin, pend - pbegin);
467 addAsmGlobalSymbol(asmSymbolName.c_str());
Devang Patelc2aec572008-07-16 18:06:52 +0000468
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000469 // search next .globl
470 pos = inlineAsm.find(glbl, pend);
471 }
Devang Patelc2aec572008-07-16 18:06:52 +0000472
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000473 // make symbols for all undefines
474 for (StringMap<NameAndAttributes>::iterator it=_undefines.begin();
475 it != _undefines.end(); ++it) {
476 // if this symbol also has a definition, then don't make an undefine
477 // because it is a tentative definition
478 if (_defines.count(it->getKey()) == 0) {
479 NameAndAttributes info = it->getValue();
480 _symbols.push_back(info);
481 }
482 }
483 }
Nick Kledzikef194ed2008-02-27 22:25:36 +0000484}
485
486
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000487uint32_t LTOModule::getSymbolCount() {
488 lazyParseSymbols();
489 return _symbols.size();
Nick Kledzik77595fc2008-02-26 20:26:43 +0000490}
491
492
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000493lto_symbol_attributes LTOModule::getSymbolAttributes(uint32_t index) {
494 lazyParseSymbols();
495 if (index < _symbols.size())
496 return _symbols[index].attributes;
497 else
498 return lto_symbol_attributes(0);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000499}
500
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000501const char *LTOModule::getSymbolName(uint32_t index) {
502 lazyParseSymbols();
503 if (index < _symbols.size())
504 return _symbols[index].name;
505 else
506 return NULL;
Nick Kledzik77595fc2008-02-26 20:26:43 +0000507}