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.cpp95 std::vector<storage::Symbol> Syms; member
151 Mod.Begin = Syms.size(); in addModule()
152 Mod.End = Syms.size() + Msymtab.symbols().size(); in addModule()
226 Syms.emplace_back(); in addSymbol()
227 storage::Symbol &Sym = Syms.back(); in addSymbol()
363 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.cpp157 SM[unwrap(Syms[I].Name).moveToSymbolStringPtr()] = { in toSymbolMap()
158 ExecutorAddr(Syms[I].Sym.Address), Flags}; in toSymbolMap()
424 SFM[unwrap(Syms[I].Name).moveToSymbolStringPtr()] = in LLVMOrcCreateCustomMaterializationUnit()
425 toJITSymbolFlags(Syms[I].Flags); in LLVMOrcCreateCustomMaterializationUnit()
435 SymbolMap SM = toSymbolMap(Syms, NumPairs); in LLVMOrcAbsoluteSymbols()
537 LLVMOrcCSymbolFlagsMapPairs Syms, size_t NumSyms) { in LLVMOrcMaterializationResponsibilityDefineMaterializing() argument
540 SFM[unwrap(Syms[I].Name).moveToSymbolStringPtr()] = in LLVMOrcMaterializationResponsibilityDefineMaterializing()
541 toJITSymbolFlags(Syms[I].Flags); in LLVMOrcMaterializationResponsibilityDefineMaterializing()
557 SymbolNameSet Syms; in LLVMOrcMaterializationResponsibilityDelegate() local
559 Syms.insert(unwrap(Symbols[I]).moveToSymbolStringPtr()); in LLVMOrcMaterializationResponsibilityDelegate()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h411 void addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms,
423 addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
428 Error addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProf.cpp391 std::vector<StringRef> SortedList(Syms.begin(), Syms.end()); in write()
406 std::vector<StringRef> SortedList(Syms.begin(), Syms.end()); in dump()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h1512 Syms.insert(Name);
1515 Syms.insert(Name.copy(Allocator));
1518 bool contains(StringRef Name) { return Syms.count(Name); }
1521 for (auto Sym : List.Syms)
1525 unsigned size() { return Syms.size(); }
1539 DenseSet<StringRef> Syms;
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DOrc.h655 const char *Name, void *Ctx, LLVMOrcCSymbolFlagsMapPairs Syms,
683 LLVMOrcAbsoluteSymbols(LLVMOrcCSymbolMapPairs Syms, size_t NumPairs);
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h433 Expected<uint32_t> getSectionIndex(const Elf_Sym &Sym, Elf_Sym_Range Syms,
511 ELFFile<ELFT>::getSectionIndex(const Elf_Sym &Sym, Elf_Sym_Range Syms, in getSectionIndex() argument
516 getExtendedSymbolTableIndex<ELFT>(Sym, &Sym - Syms.begin(), ShndxTable); in getSectionIndex()
1222 uint64_t Syms = SymTable.sh_size / sizeof(Elf_Sym); in getSHNDXTable() local
1223 if (V.size() != Syms) in getSHNDXTable()
1226 Twine(Syms)); in getSHNDXTable()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp604 void LTO::addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms, in addModuleToGlobalRes() argument
611 for (const InputFile::Symbol &Sym : Syms) { in addModuleToGlobalRes()
804 LTO::addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms, in addRegularLTO() argument
862 for (const InputFile::Symbol &Sym : Syms) { in addRegularLTO()
996 Error LTO::addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms, in addThinLTO() argument
1000 for (const InputFile::Symbol &Sym : Syms) { in addThinLTO()
1021 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/clang/lib/StaticAnalyzer/Checkers/
H A DExprInspectionChecker.cpp390 const MarkedSymbolsTy &Syms = State->get<MarkedSymbols>(); in checkDeadSymbols() local
392 for (SymbolRef Sym : Syms) { in checkDeadSymbols()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DXCOFFObjectWriter.cpp89 SmallVector<Symbol, 1> Syms; member
620 Csect->Syms.emplace_back(XSym); in executePostLayoutBinding()
1167 for (const auto &Sym : Csect.Syms) in writeSymbolTable()
1416 for (auto &Sym : Csect.Syms) { in assignAddressesAndIndices()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp517 Elf_Sym_Range Syms(nullptr, nullptr); in printSymbolsHelper() local
522 Syms = dynamic_symbols(); in printSymbolsHelper()
523 Entries = Syms.size(); in printSymbolsHelper()
534 Syms = *SymsOrErr; in printSymbolsHelper()
541 if (Syms.empty()) in printSymbolsHelper()
556 for (const Elf_Sym &Sym : Syms) in printSymbolsHelper()
557 printSymbol(Sym, &Sym - Syms.begin(), ShndxTable, StrTable, IsDynamic, in printSymbolsHelper()
7341 ArrayRef<Elf_Sym> Syms; in printVersionSymbolSection() local
7344 this->getVersionTable(*Sec, &Syms, &StrTable, &SymTabSec); in printVersionSymbolSection()
7350 if (StrTable.empty() || Syms.empty() || Syms.size() != VerTableOrErr->size()) in printVersionSymbolSection()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1029 std::vector<Elf_Sym> Syms = in initSymtabSectionHeader() local
1031 SHeader.sh_size = Syms.size() * sizeof(Elf_Sym); in initSymtabSectionHeader()
1032 CBA.write((const char *)Syms.data(), SHeader.sh_size); in initSymtabSectionHeader()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1588 auto EmitForMD = [&](const MDNode &MD, ArrayRef<const MCSymbol *> Syms, in emitPCSections()
1610 const MCSymbol *Prev = Syms.front(); in emitPCSections()
1611 for (const MCSymbol *Sym : Syms) { in emitPCSections()