Searched refs:Verdef (Results 1 – 9 of 9) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/ |
| H A D | ELFDump.cpp | 332 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 D | elf2yaml.cpp | 1363 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 D | libelf_align.c | 81 [ELF_T_VDEF] = MALIGN(Verdef),
|
| H A D | elf_types.m4 | 58 `VDEF, Verdef',
|
| H A D | libelf_convert.m4 | 701 MAKE_VERSION_CONVERTERS(VDEF,Verdef,Verdaux,vd)
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/ |
| H A D | ELFYAML.h | 195 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 D | ELFTypes.h | 66 using Verdef = Elf_Verdef_Impl<ELFType<E, Is64>>; member 121 using Elf_Verdef = typename ELFT::Verdef; \
|
| /openbsd-src/gnu/llvm/lld/ELF/ |
| H A D | InputFiles.cpp | 1290 auto *curVerdef = reinterpret_cast<const typename ELFT::Verdef *>(verdef); in parseVerdefs() 1368 using Elf_Verdef = typename ELFT::Verdef; in parse()
|
| H A D | SyntheticSections.cpp | 3156 reinterpret_cast<const typename ELFT::Verdef *>(f->verdefs[i]); in finalizeContents()
|