| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeFunctionSymbol.cpp | 103 CVSymbolArray Syms = ModS->getSymbolArray(); in findInlineFramesByVA() local 109 auto Start = Syms.at(RecordOffset); in findInlineFramesByVA() 110 auto End = Syms.at(Sym.End); in findInlineFramesByVA() 128 End = Syms.at(IS.End); in findInlineFramesByVA() 133 Start = Syms.at(IS.End); in findInlineFramesByVA()
|
| H A D | SymbolCache.cpp | 353 CVSymbolArray Syms = ExpectedModS->getSymbolArray(); in findFunctionSymbolBySectOffset() local 356 for (auto I = Syms.begin(), E = Syms.end(); I != E; ++I) { in findFunctionSymbolBySectOffset() 374 I = Syms.at(PS.End); in findFunctionSymbolBySectOffset()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Object/ |
| H A D | SymbolSize.cpp | 54 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 D | IRSymtab.cpp | 86 std::vector<storage::Symbol> Syms; member 142 Mod.Begin = Syms.size(); in addModule() 143 Mod.End = Syms.size() + Msymtab.symbols().size(); in addModule() 212 Syms.emplace_back(); in addSymbol() 213 storage::Symbol &Sym = Syms.back(); in addSymbol() 343 writeRange(Hdr.Symbols, Syms); in build()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | OrcV2CBindings.cpp | 262 JITSymbolFlags Flags = toJITSymbolFlags(Syms[I].Sym.Flags); in toSymbolMap() 263 SM[OrcV2CAPIHelper::moveToSymbolStringPtr(unwrap(Syms[I].Name))] = in toSymbolMap() 264 JITEvaluatedSymbol(Syms[I].Sym.Address, Flags); in toSymbolMap() 362 const char *Name, void *Ctx, LLVMOrcCSymbolFlagsMapPairs Syms, in LLVMOrcCreateCustomMaterializationUnit() argument 370 toJITSymbolFlags(Syms[I].Flags); in LLVMOrcCreateCustomMaterializationUnit() 379 LLVMOrcAbsoluteSymbols(LLVMOrcCSymbolMapPairs Syms, size_t NumPairs) { in LLVMOrcAbsoluteSymbols() argument 380 SymbolMap SM = toSymbolMap(Syms, NumPairs); in LLVMOrcAbsoluteSymbols() 483 LLVMOrcCSymbolFlagsMapPairs Syms, size_t NumSyms) { in LLVMOrcMaterializationResponsibilityDefineMaterializing() argument 487 toJITSymbolFlags(Syms[I].Flags); in LLVMOrcMaterializationResponsibilityDefineMaterializing() 503 SymbolNameSet Syms; in LLVMOrcMaterializationResponsibilityDelegate() local [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | DbiModuleDescriptorBuilder.h | 41 explicit SymbolListWrapper(ArrayRef<uint8_t> Syms) in SymbolListWrapper() 42 : SymPtr(const_cast<uint8_t *>(Syms.data())), SymSize(Syms.size()), in SymbolListWrapper()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | SampleProf.cpp | 411 std::vector<StringRef> SortedList(Syms.begin(), Syms.end()); in write() 426 std::vector<StringRef> SortedList(Syms.begin(), Syms.end()); in dump()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/LTO/ |
| H A D | LTO.h | 413 void addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms, 425 addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms, 430 Error addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | SampleProf.h | 1016 Syms.insert(Name); 1019 Syms.insert(Name.copy(Allocator)); 1022 bool contains(StringRef Name) { return Syms.count(Name); } 1025 for (auto Sym : List.Syms) 1029 unsigned size() { return Syms.size(); } 1043 DenseSet<StringRef> Syms;
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | Orc.h | 566 const char *Name, void *Ctx, LLVMOrcCSymbolFlagsMapPairs Syms, 594 LLVMOrcAbsoluteSymbols(LLVMOrcCSymbolMapPairs Syms, size_t NumPairs);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | XCOFFObjectWriter.cpp | 83 SmallVector<Symbol, 1> Syms; member 419 Csect->Syms.emplace_back(XSym); in executePostLayoutBinding() 816 for (const auto &Sym : Csect.Syms) in writeSymbolTable() 926 for (auto &Sym : Csect.Syms) { in assignAddressesAndIndices()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | ELF.h | 373 Expected<uint32_t> getSectionIndex(const Elf_Sym &Sym, Elf_Sym_Range Syms, 432 ELFFile<ELFT>::getSectionIndex(const Elf_Sym &Sym, Elf_Sym_Range Syms, in getSectionIndex() argument 437 getExtendedSymbolTableIndex<ELFT>(Sym, &Sym - Syms.begin(), ShndxTable); in getSectionIndex() 1109 uint64_t Syms = SymTable.sh_size / sizeof(Elf_Sym); in getSHNDXTable() local 1110 if (V.size() != Syms) in getSHNDXTable() 1113 Twine(Syms)); in getSHNDXTable()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ExprInspectionChecker.cpp | 349 const MarkedSymbolsTy &Syms = State->get<MarkedSymbols>(); in checkDeadSymbols() local 351 for (auto I = Syms.begin(), E = Syms.end(); I != E; ++I) { in checkDeadSymbols()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | JITLink.cpp | 275 auto &Syms = BlockSymsI->second; in dump() local 276 for (auto *Sym : Syms) in dump()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/LTO/ |
| H A D | LTO.cpp | 533 void LTO::addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms, in addModuleToGlobalRes() argument 539 for (const InputFile::Symbol &Sym : Syms) { in addModuleToGlobalRes() 710 LTO::addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms, in addRegularLTO() argument 759 for (const InputFile::Symbol &Sym : Syms) { in addRegularLTO() 888 Error LTO::addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms, in addThinLTO() argument 896 for (const InputFile::Symbol &Sym : Syms) { in addThinLTO()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | ELFDumper.cpp | 492 Elf_Sym_Range Syms(nullptr, nullptr); in printSymbolsHelper() local 497 Syms = dynamic_symbols(); in printSymbolsHelper() 498 Entries = Syms.size(); in printSymbolsHelper() 509 Syms = *SymsOrErr; in printSymbolsHelper() 516 if (Syms.empty()) in printSymbolsHelper() 531 for (const Elf_Sym &Sym : Syms) in printSymbolsHelper() 532 printSymbol(Sym, &Sym - Syms.begin(), ShndxTable, StrTable, IsDynamic, in printSymbolsHelper() 6631 ArrayRef<Elf_Sym> Syms; in printVersionSymbolSection() local 6634 this->getVersionTable(*Sec, &Syms, &StrTable, &SymTabSec); in printVersionSymbolSection() 6640 if (StrTable.empty() || Syms.empty() || Syms.size() != VerTableOrErr->size()) in printVersionSymbolSection() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | ELFEmitter.cpp | 1028 std::vector<Elf_Sym> Syms = in initSymtabSectionHeader() local 1030 SHeader.sh_size = Syms.size() * sizeof(Elf_Sym); in initSymtabSectionHeader() 1031 CBA.write((const char *)Syms.data(), SHeader.sh_size); in initSymtabSectionHeader()
|