blob: fc028a27c5d0e9374a06473bbf1475e43a19655d [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());
Daniel Dunbar8d0843d2010-08-11 00:11:17 +0000191 info.name = symbolName;
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000192 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());
Daniel Dunbar8d0843d2010-08-11 00:11:17 +0000223 info.name = symbolName;
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000224 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());
Daniel Dunbar8d0843d2010-08-11 00:11:17 +0000240 info.name = symbolName;
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000241 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
Bill Wendling563ef5e2010-09-27 18:05:19 +0000328 if (def->hasWeakLinkage() || def->hasLinkOnceLinkage() ||
329 def->hasLinkerPrivateWeakLinkage() ||
330 def->hasLinkerPrivateWeakDefAutoLinkage()) {
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000331 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;
Nick Kledzik77595fc2008-02-26 20:26:43 +0000357}
358
Devang Patelc2aec572008-07-16 18:06:52 +0000359void LTOModule::addAsmGlobalSymbol(const char *name) {
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000360 // only add new define if not already defined
Daniel Dunbarf4452c32010-08-11 00:11:19 +0000361 if (_defines.count(name))
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000362 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;
Devang Patelc2aec572008-07-16 18:06:52 +0000373}
Nick Kledzik77595fc2008-02-26 20:26:43 +0000374
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000375void LTOModule::addPotentialUndefinedSymbol(GlobalValue *decl,
376 Mangler &mangler) {
377 // ignore all llvm.* symbols
378 if (decl->getName().startswith("llvm."))
379 return;
Nick Kledzik3eb445f2009-06-01 20:33:09 +0000380
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000381 // ignore all aliases
382 if (isa<GlobalAlias>(decl))
383 return;
Nick Lewycky485ded02009-07-09 06:03:04 +0000384
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000385 std::string name = mangler.getNameWithPrefix(decl);
Rafael Espindola7431af02009-04-24 16:55:21 +0000386
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000387 // we already have the symbol
388 if (_undefines.find(name) != _undefines.end())
389 return;
Rafael Espindola7431af02009-04-24 16:55:21 +0000390
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000391 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;
Nick Kledzik77595fc2008-02-26 20:26:43 +0000399}
400
401
402
Nick Lewyckyd42b58b2009-07-26 22:16:39 +0000403// Find external symbols referenced by VALUE. This is a recursive function.
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000404void 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 }
Nick Kledzik77595fc2008-02-26 20:26:43 +0000414
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000415 // 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
424void LTOModule::lazyParseSymbols() {
Daniel Dunbare41d9002010-08-10 23:46:46 +0000425 if (_symbolsParsed)
426 return;
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000427
Daniel Dunbare41d9002010-08-10 23:46:46 +0000428 _symbolsParsed = true;
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000429
Daniel Dunbare41d9002010-08-10 23:46:46 +0000430 // Use mangler to add GlobalPrefix to names to match linker names.
431 MCContext Context(*_target->getMCAsmInfo());
432 Mangler mangler(Context, *_target->getTargetData());
Gabor Greif4136e7b2009-09-23 02:46:12 +0000433
Daniel Dunbare41d9002010-08-10 23:46:46 +0000434 // 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 }
Nick Kledzik77595fc2008-02-26 20:26:43 +0000441
Daniel Dunbare41d9002010-08-10 23:46:46 +0000442 // 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 }
Nick Kledzik77595fc2008-02-26 20:26:43 +0000450
Daniel Dunbare41d9002010-08-10 23:46:46 +0000451 // 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;
Nick Kledzik77595fc2008-02-26 20:26:43 +0000459
Daniel Dunbare41d9002010-08-10 23:46:46 +0000460 // 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;
Devang Patelc2aec572008-07-16 18:06:52 +0000464
Daniel Dunbare41d9002010-08-10 23:46:46 +0000465 // find end-of-line
466 std::string::size_type pend = inlineAsm.find_first_of('\n', pbegin);
467 if (pend == std::string::npos)
468 break;
Devang Patelc2aec572008-07-16 18:06:52 +0000469
Daniel Dunbare41d9002010-08-10 23:46:46 +0000470 asmSymbolName.assign(inlineAsm, pbegin, pend - pbegin);
471 addAsmGlobalSymbol(asmSymbolName.c_str());
Devang Patelc2aec572008-07-16 18:06:52 +0000472
Daniel Dunbare41d9002010-08-10 23:46:46 +0000473 // 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);
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000485 }
486 }
Nick Kledzikef194ed2008-02-27 22:25:36 +0000487}
488
489
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000490uint32_t LTOModule::getSymbolCount() {
491 lazyParseSymbols();
492 return _symbols.size();
Nick Kledzik77595fc2008-02-26 20:26:43 +0000493}
494
495
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000496lto_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);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000502}
503
Daniel Dunbarb06913d2010-08-10 23:46:39 +0000504const char *LTOModule::getSymbolName(uint32_t index) {
505 lazyParseSymbols();
506 if (index < _symbols.size())
507 return _symbols[index].name;
508 else
509 return NULL;
Nick Kledzik77595fc2008-02-26 20:26:43 +0000510}