Home
last modified time | relevance | path

Searched refs:Ndx (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp344 unsigned Ndx, const Elf_Shdr *SymTab,
1013 unsigned Ndx = Symbol.st_shndx; in getSymbolSectionIndex() local
1014 if (Ndx == SHN_XINDEX) in getSymbolSectionIndex()
1017 if (Ndx != SHN_UNDEF && Ndx < SHN_LORESERVE) in getSymbolSectionIndex()
1018 return Ndx; in getSymbolSectionIndex()
1029 Twine::utohexstr(Ndx) + " (" + Desc + ")"); in getSymbolSectionIndex()
1032 if (Ndx >= ELF::SHN_LOPROC && Ndx <= ELF::SHN_HIPROC) in getSymbolSectionIndex()
1033 return CreateErr("SHN_LOPROC", Ndx - ELF::SHN_LOPROC); in getSymbolSectionIndex()
1034 if (Ndx >= ELF::SHN_LOOS && Ndx <= ELF::SHN_HIOS) in getSymbolSectionIndex()
1035 return CreateErr("SHN_LOOS", Ndx - ELF::SHN_LOOS); in getSymbolSectionIndex()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h46 uint16_t Ndx; member
744 InsertEntry(Def.Ndx & ELF::VERSYM_VERSION, Def.Name, true); in loadVersionMap()
1097 VD.Ndx = D->vd_ndx; in getVersionDefinitions()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DELFDump.cpp419 OS << Def.Ndx << ' ' << format_hex(Def.Flags, 4) << ' ' in printSymbolVersion()
H A Dllvm-objdump.cpp2736 uint64_t Ndx; in printRelocations() local
2737 for (const SectionRef &Section : ToolSectionFilter(O, &Ndx)) { in printRelocations()
2745 "section (" + Twine(Ndx) + in printRelocations()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp147 bool addName(StringRef Name, unsigned Ndx) { in addName() argument
148 return Map.insert({Name, Ndx}).second; in addName()