Searched refs:symbolIndex (Results 1 – 8 of 8) sorted by relevance
214 Symbol &getSymbol(uint32_t symbolIndex) const { in getSymbol() argument215 if (symbolIndex >= this->symbols.size()) in getSymbol()217 return *this->symbols[symbolIndex]; in getSymbol()
552 auto atomBySymbol = [&] (uint32_t symbolIndex, const lld::Atom **result) in convertRelocs()560 assert(symbolIndex >= numStabs && "Searched for stab via atomBySymbol?"); in convertRelocs()561 if (symbolIndex < numStabs+numLocal) { in convertRelocs()562 sym = &normalizedFile.localSymbols[symbolIndex-numStabs]; in convertRelocs()563 } else if (symbolIndex < numStabs+numLocal+numGlobal) { in convertRelocs()564 sym = &normalizedFile.globalSymbols[symbolIndex-numStabs-numLocal]; in convertRelocs()565 } else if (symbolIndex < numStabs+numLocal+numGlobal+numUndef) { in convertRelocs()566 sym = &normalizedFile.undefinedSymbols[symbolIndex-numStabs-numLocal- in convertRelocs()570 + Twine(symbolIndex) + ") out of range"); in convertRelocs()
129 typedef std::function<llvm::Error (uint32_t symbolIndex,
1564 int32_t symbolIndex,1603 int32_t symbolIndex,
157 Symbol *getSymbol(uint32_t symbolIndex) { in getSymbol() argument158 return symbols[symbolIndex]; in getSymbol()
701 UInt32 symbolIndex, in LookupSymbol() argument727 MoreAssertQ(symbolIndex < loaderSection->totalImportedSymbolCount); in LookupSymbol()737 symbolStringOffset = importSymbolTable[symbolIndex]; in LookupSymbol()