Home
last modified time | relevance | path

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

/external/llvm/lib/Object/
DSymbolSize.cpp51 auto Syms = E->symbols(); in computeSymbolSizes() local
52 if (Syms.begin() == Syms.end()) in computeSymbolSizes()
53 Syms = E->getDynamicSymbolIterators(); in computeSymbolSizes()
54 for (ELFSymbolRef Sym : Syms) in computeSymbolSizes()
/external/llvm/tools/yaml2obj/
Dyaml2elf.cpp129 std::vector<Elf_Sym> &Syms, unsigned SymbolBinding);
274 std::vector<Elf_Sym> Syms; in initSymtabSectionHeader() local
279 Syms.push_back(Sym); in initSymtabSectionHeader()
291 addSymbols(Doc.Symbols.Local, Syms, ELF::STB_LOCAL); in initSymtabSectionHeader()
292 addSymbols(Doc.Symbols.Global, Syms, ELF::STB_GLOBAL); in initSymtabSectionHeader()
293 addSymbols(Doc.Symbols.Weak, Syms, ELF::STB_WEAK); in initSymtabSectionHeader()
297 makeArrayRef(Syms)); in initSymtabSectionHeader()
298 SHeader.sh_size = arrayDataSize(makeArrayRef(Syms)); in initSymtabSectionHeader()
316 std::vector<Elf_Sym> &Syms, in addSymbols() argument
336 Syms.push_back(Symbol); in addSymbols()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DMachineModuleInfo.cpp183 std::vector<MCSymbol*> *Syms = Entry.Symbols.get<std::vector<MCSymbol*>*>(); in UpdateForDeletedBlock() local
185 for (unsigned i = 0, e = Syms->size(); i != e; ++i) { in UpdateForDeletedBlock()
186 MCSymbol *Sym = (*Syms)[i]; in UpdateForDeletedBlock()
198 delete Syms; in UpdateForDeletedBlock()
237 std::vector<MCSymbol*> *Syms =OldEntry.Symbols.get<std::vector<MCSymbol*>*>(); in UpdateForRAUWBlock() local
238 SymList->insert(SymList->end(), Syms->begin(), Syms->end()); in UpdateForRAUWBlock()
239 delete Syms; in UpdateForRAUWBlock()
/external/clang/lib/StaticAnalyzer/Checkers/
DExprInspectionChecker.cpp187 const MarkedSymbolsTy &Syms = State->get<MarkedSymbols>(); in checkDeadSymbols() local
188 for (auto I = Syms.begin(), E = Syms.end(); I != E; ++I) { in checkDeadSymbols()
/external/llvm/tools/dsymutil/
DMachOUtils.cpp180 unsigned Syms = 0; in transferSymbols() local
190 ++Syms; in transferSymbols()
197 ++Syms; in transferSymbols()
200 return Syms; in transferSymbols()
/external/abi-compliance-checker/modules/Internals/
DSysCheck.pm1556 my %Syms = ();
1573 $Syms{$LPath} = $Res->{$LName};
1574 push(@AllSyms, keys(%{$Syms{$LPath}}));
1585 foreach my $Symbol (keys(%{$Syms{$LPath}}))
1668 %Syms = ();
1731 my @Syms = keys(%{$SysLib_Symbols{$LPath}});
1732 next if($#Syms==-1);
1733 if($#Syms+1==keys(%{$DupSymbols{$LPath}})) {
/external/llvm/tools/llvm-readobj/
DELFDumper.cpp250 Elf_Sym_Range Syms(nullptr, nullptr); in printSymbolsHelper() local
253 Syms = dynamic_symbols(); in printSymbolsHelper()
261 Syms = Obj->symbols(DotSymtabSec); in printSymbolsHelper()
265 if (Syms.begin() == Syms.end()) in printSymbolsHelper()
268 for (const auto &Sym : Syms) in printSymbolsHelper()
269 ELFDumperStyle->printSymbol(Obj, &Sym, Syms.begin(), StrTable, IsDynamic); in printSymbolsHelper()
512 ListScope Syms(W, "Symbols"); in printVersionSymbolSection() local
1830 Elf_Sym_Range Syms = dynamic_symbols(); in printGnuHashTable() local
1831 unsigned NumSyms = std::distance(Syms.begin(), Syms.end()); in printGnuHashTable()
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1967 std::vector<MCSymbol*> Syms = MMI->getAddrLabelSymbolToEmit(BB); in EmitBasicBlockStart() local
1969 for (unsigned i = 0, e = Syms.size(); i != e; ++i) in EmitBasicBlockStart()
1970 OutStreamer.EmitLabel(Syms[i]); in EmitBasicBlockStart()