Home
last modified time | relevance | path

Searched refs:Verdef (Results 1 – 9 of 9) sorted by relevance

/openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/
H A DELFDump.cpp332 auto *Verdef = reinterpret_cast<const typename ELFT::Verdef *>(Buf); in printSymbolVersionDefinition() local
334 << format("0x%02" PRIx16 " ", (uint16_t)Verdef->vd_flags) in printSymbolVersionDefinition()
335 << format("0x%08" PRIx32 " ", (uint32_t)Verdef->vd_hash); in printSymbolVersionDefinition()
337 const uint8_t *BufAux = Buf + Verdef->vd_aux; in printSymbolVersionDefinition()
347 Buf = Verdef->vd_next ? Buf + Verdef->vd_next : nullptr; in printSymbolVersionDefinition()
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Delf2yaml.cpp1363 const Elf_Verdef *Verdef = reinterpret_cast<const Elf_Verdef *>(Buf); in dumpVerdefSection() local
1365 if (Verdef->vd_version != 1) in dumpVerdefSection()
1368 Twine(Verdef->vd_version)); in dumpVerdefSection()
1370 if (Verdef->vd_flags != 0) in dumpVerdefSection()
1371 Entry.Flags = Verdef->vd_flags; in dumpVerdefSection()
1373 if (Verdef->vd_ndx != 0) in dumpVerdefSection()
1374 Entry.VersionNdx = Verdef->vd_ndx; in dumpVerdefSection()
1376 if (Verdef->vd_hash != 0) in dumpVerdefSection()
1377 Entry.Hash = Verdef->vd_hash; in dumpVerdefSection()
1379 const uint8_t *BufAux = Buf + Verdef->vd_aux; in dumpVerdefSection()
[all …]
/openbsd-src/lib/libelf/
H A Dlibelf_align.c81 [ELF_T_VDEF] = MALIGN(Verdef),
H A Delf_types.m458 `VDEF, Verdef',
H A Dlibelf_convert.m4701 MAKE_VERSION_CONVERTERS(VDEF,Verdef,Verdaux,vd)
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h195 Verdef, enumerator
566 VerdefSection() : Section(ChunkKind::Verdef) {} in VerdefSection()
572 static bool classof(const Chunk *S) { return S->Kind == ChunkKind::Verdef; } in classof()
/openbsd-src/gnu/llvm/llvm/include/llvm/Object/
H A DELFTypes.h66 using Verdef = Elf_Verdef_Impl<ELFType<E, Is64>>; member
121 using Elf_Verdef = typename ELFT::Verdef; \
/openbsd-src/gnu/llvm/lld/ELF/
H A DInputFiles.cpp1290 auto *curVerdef = reinterpret_cast<const typename ELFT::Verdef *>(verdef); in parseVerdefs()
1368 using Elf_Verdef = typename ELFT::Verdef; in parse()
H A DSyntheticSections.cpp3156 reinterpret_cast<const typename ELFT::Verdef *>(f->verdefs[i]); in finalizeContents()