Searched refs:Syms (Results 1 - 12 of 12) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DSymbolSize.cpp44 auto Syms = E->symbols(); local
45 if (Syms.begin() == Syms.end())
46 Syms = E->getDynamicSymbolIterators();
47 for (ELFSymbolRef Sym : Syms)
H A DIRSymtab.cpp86 std::vector<storage::Symbol> Syms; member in struct:__anon2305::Builder
129 Mod.Begin = Syms.size();
130 Mod.End = Syms.size() + Msymtab.symbols().size();
198 Syms.emplace_back();
199 storage::Symbol &Sym = Syms.back();
329 writeRange(Hdr.Symbols, Syms);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProf.cpp219 SortedList.insert(SortedList.begin(), Syms.begin(), Syms.end());
235 SortedList.insert(SortedList.begin(), Syms.begin(), Syms.end());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiModuleDescriptorBuilder.cpp158 for (ArrayRef<uint8_t> Syms : Symbols) {
159 if (auto EC = SymbolWriter.writeBytes(Syms))
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h650 Syms.insert(Name);
653 Syms.insert(Name.copy(Allocator));
656 bool contains(StringRef Name) { return Syms.count(Name); }
659 for (auto Sym : List.Syms)
663 unsigned size() { return Syms.size(); }
677 DenseSet<StringRef> Syms; member in class:llvm::sampleprof::ProfileSymbolList
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h400 void addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms,
412 addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
417 Error addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DExprInspectionChecker.cpp264 const MarkedSymbolsTy &Syms = State->get<MarkedSymbols>(); local
266 for (auto I = Syms.begin(), E = Syms.end(); I != E; ++I) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DXCOFFObjectWriter.cpp71 SmallVector<Symbol, 1> Syms; member in struct:__anon1942::ControlSection
331 // into csect's Syms.
339 WrapperMap[ContainingCsect]->Syms.emplace_back(XSym);
573 for (const auto &Sym : Csect.Syms)
628 for (auto &Sym : Csect.Syms) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h281 Expected<uint32_t> getSectionIndex(const Elf_Sym *Sym, Elf_Sym_Range Syms,
336 ELFFile<ELFT>::getSectionIndex(const Elf_Sym *Sym, Elf_Sym_Range Syms, argument
341 Sym, Syms.begin(), ShndxTable);
649 uint64_t Syms = SymTable.sh_size / sizeof(Elf_Sym);
650 if (V.size() != Syms)
653 Twine(Syms));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp513 void LTO::addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms, argument
519 for (const InputFile::Symbol &Sym : Syms) {
684 LTO::addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms, argument
712 // In this function we need IR GlobalValues matching the symbols in Syms
732 for (const InputFile::Symbol &Sym : Syms) {
828 Error LTO::addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms, argument
836 for (const InputFile::Symbol &Sym : Syms) {
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp646 Elf_Sym_Range Syms(nullptr, nullptr);
650 Syms = dynamic_symbols();
659 Syms = unwrapOrError(ObjF->getFileName(), Obj->symbols(DotSymtabSec));
664 if (Syms.begin() == Syms.end())
669 bool NonVisibilityBitsUsed = llvm::find_if(Syms, [](const Elf_Sym &S) {
671 }) != Syms.end();
675 for (const auto &Sym : Syms)
676 ELFDumperStyle->printSymbol(Obj, &Sym, Syms.begin(), StrTable, IsDynamic,
1096 Elf_Sym_Range Syms local
2501 Elf_Sym_Range Syms = dynamic_symbols(); local
5909 ArrayRef<Elf_Sym> Syms; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp637 std::vector<Elf_Sym> Syms = local
639 writeArrayData(OS, makeArrayRef(Syms));
640 SHeader.sh_size = arrayDataSize(makeArrayRef(Syms));

Completed in 300 milliseconds