Home
last modified time | relevance | path

Searched refs:Syms (Results 1 – 19 of 19) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeFunctionSymbol.cpp107 CVSymbolArray Syms = ModS->getSymbolArray(); in findInlineFramesByVA() local
113 auto Start = Syms.at(RecordOffset); in findInlineFramesByVA()
114 auto End = Syms.at(Sym.End); in findInlineFramesByVA()
132 End = Syms.at(IS.End); in findInlineFramesByVA()
137 Start = Syms.at(IS.End); in findInlineFramesByVA()
H A DSymbolCache.cpp358 CVSymbolArray Syms = ExpectedModS->getSymbolArray(); in findFunctionSymbolBySectOffset() local
361 for (auto I = Syms.begin(), E = Syms.end(); I != E; ++I) { in findFunctionSymbolBySectOffset()
379 I = Syms.at(PS.End); in findFunctionSymbolBySectOffset()
/freebsd/contrib/llvm-project/llvm/tools/lli/
H A DForwardingMemoryManager.h108 if (auto Syms = DylibMgr.lookup(H, R)) { in findSymbol() local
109 if (Syms->size() != 1) in findSymbol()
112 return JITSymbol(Syms->front().getAddress().getValue(), in findSymbol()
113 Syms->front().getFlags()); in findSymbol()
115 return Syms.takeError(); in findSymbol()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DSymbolSize.cpp54 auto Syms = E->symbols(); in computeSymbolSizes() local
55 if (Syms.empty()) in computeSymbolSizes()
56 Syms = E->getDynamicSymbolIterators(); in computeSymbolSizes()
57 for (ELFSymbolRef Sym : Syms) in computeSymbolSizes()
H A DIRSymtab.cpp93 std::vector<storage::Symbol> Syms; member
149 Mod.Begin = Syms.size(); in addModule()
150 Mod.End = Syms.size() + Msymtab.symbols().size(); in addModule()
231 Syms.emplace_back(); in addSymbol()
232 storage::Symbol &Sym = Syms.back(); in addSymbol()
369 writeRange(Hdr.Symbols, Syms); in build()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiModuleDescriptorBuilder.h39 explicit SymbolListWrapper(ArrayRef<uint8_t> Syms) in SymbolListWrapper()
40 : SymPtr(const_cast<uint8_t *>(Syms.data())), SymSize(Syms.size()), in SymbolListWrapper()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DOrcV2CBindings.cpp161 static SymbolMap toSymbolMap(LLVMOrcCSymbolMapPairs Syms, size_t NumPairs) { in toSymbolMap() argument
164 JITSymbolFlags Flags = toJITSymbolFlags(Syms[I].Sym.Flags); in toSymbolMap()
165 SM[unwrap(Syms[I].Name).moveToSymbolStringPtr()] = { in toSymbolMap()
166 ExecutorAddr(Syms[I].Sym.Address), Flags}; in toSymbolMap()
425 const char *Name, void *Ctx, LLVMOrcCSymbolFlagsMapPairs Syms, in LLVMOrcCreateCustomMaterializationUnit() argument
432 SFM[unwrap(Syms[I].Name).moveToSymbolStringPtr()] = in LLVMOrcCreateCustomMaterializationUnit()
433 toJITSymbolFlags(Syms[I].Flags); in LLVMOrcCreateCustomMaterializationUnit()
442 LLVMOrcAbsoluteSymbols(LLVMOrcCSymbolMapPairs Syms, size_t NumPairs) { in LLVMOrcAbsoluteSymbols() argument
443 SymbolMap SM = toSymbolMap(Syms, NumPairs); in LLVMOrcAbsoluteSymbols()
555 LLVMOrcCSymbolFlagsMapPairs Syms, size_t NumSyms) { in LLVMOrcMaterializationResponsibilityDefineMaterializing() argument
[all …]
H A DCore.cpp90 for (auto &[JD, Syms] : *this->Symbols) in FailedToMaterialize()
95 for (auto &[JD, Syms] : *Symbols) in ~FailedToMaterialize()
274 for (auto &[JD, Syms] : QueryRegistrations) in detach()
275 JD->detachQueryHelper(*this, Syms); in detach()
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h413 void addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms,
425 addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
430 Error addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProf.cpp407 std::vector<StringRef> SortedList(Syms.begin(), Syms.end()); in write()
422 std::vector<StringRef> SortedList(Syms.begin(), Syms.end()); in dump()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DOrc.h664 const char *Name, void *Ctx, LLVMOrcCSymbolFlagsMapPairs Syms,
692 LLVMOrcAbsoluteSymbols(LLVMOrcCSymbolMapPairs Syms, size_t NumPairs);
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h1519 Syms.insert(Name);
1522 Syms.insert(Name.copy(Allocator));
1525 bool contains(StringRef Name) { return Syms.count(Name); }
1528 for (auto Sym : List.Syms)
1532 unsigned size() { return Syms.size(); }
1546 DenseSet<StringRef> Syms;
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h481 Expected<uint32_t> getSectionIndex(const Elf_Sym &Sym, Elf_Sym_Range Syms,
559 ELFFile<ELFT>::getSectionIndex(const Elf_Sym &Sym, Elf_Sym_Range Syms, in getSectionIndex() argument
564 getExtendedSymbolTableIndex<ELFT>(Sym, &Sym - Syms.begin(), ShndxTable); in getSectionIndex()
1270 uint64_t Syms = SymTable.sh_size / sizeof(Elf_Sym); in getSHNDXTable() local
1271 if (V.size() != Syms) in getSHNDXTable()
1274 Twine(Syms)); in getSHNDXTable()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp618 void LTO::addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms, in addModuleToGlobalRes() argument
625 for (const InputFile::Symbol &Sym : Syms) { in addModuleToGlobalRes()
818 LTO::addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms, in addRegularLTO() argument
876 for (const InputFile::Symbol &Sym : Syms) { in addRegularLTO()
1010 Error LTO::addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms, in addThinLTO() argument
1014 for (const InputFile::Symbol &Sym : Syms) { in addThinLTO()
1035 for (const InputFile::Symbol &Sym : Syms) { in addThinLTO()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLink.cpp296 auto &Syms = BlockSymsI->second; in dump() local
297 for (auto *Sym : Syms) in dump()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp519 Elf_Sym_Range Syms(nullptr, nullptr); in getSymtabAndStrtab() local
530 Syms = *SymsOrErr; in getSymtabAndStrtab()
534 return {Syms, StrTable}; in getSymtabAndStrtab()
542 Elf_Sym_Range Syms(nullptr, nullptr); in printSymbolsHelper() local
547 Syms = dynamic_symbols(); in printSymbolsHelper()
548 Entries = Syms.size(); in printSymbolsHelper()
550 std::tie(Syms, StrTable) = getSymtabAndStrtab(); in printSymbolsHelper()
553 if (Syms.empty()) in printSymbolsHelper()
559 llvm::any_of(Syms, [](const Elf_Sym &S) { return S.st_other & ~0x3; }); in printSymbolsHelper()
568 for (const Elf_Sym &Sym : Syms) in printSymbolsHelper()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DXCOFFObjectWriter.cpp88 SmallVector<Symbol, 1> Syms; member
628 Csect->Syms.emplace_back(XSym); in executePostLayoutBinding()
1229 for (const auto &Sym : Csect.Syms) in writeSymbolTable()
1478 for (auto &Sym : Csect.Syms) { in assignAddressesAndIndices()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1035 std::vector<Elf_Sym> Syms = in initSymtabSectionHeader() local
1037 SHeader.sh_size = Syms.size() * sizeof(Elf_Sym); in initSymtabSectionHeader()
1038 CBA.write((const char *)Syms.data(), SHeader.sh_size); in initSymtabSectionHeader()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1598 auto EmitForMD = [&](const MDNode &MD, ArrayRef<const MCSymbol *> Syms, in emitPCSections()
1620 const MCSymbol *Prev = Syms.front(); in emitPCSections()
1621 for (const MCSymbol *Sym : Syms) { in emitPCSections()