Home
last modified time | relevance | path

Searched refs:VerneedV (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1692 else if (Section.VerneedV) in writeSectionContent()
1693 SHeader.sh_info = Section.VerneedV->size(); in writeSectionContent()
1695 if (!Section.VerneedV) in writeSectionContent()
1699 for (size_t I = 0; I < Section.VerneedV->size(); ++I) { in writeSectionContent()
1700 const ELFYAML::VerneedEntry &VE = (*Section.VerneedV)[I]; in writeSectionContent()
1705 if (I == Section.VerneedV->size() - 1) in writeSectionContent()
1730 SHeader.sh_size = Section.VerneedV->size() * sizeof(Elf_Verneed) + in writeSectionContent()
2042 if (VerNeed->VerneedV) { in finalizeStrings()
2043 for (const ELFYAML::VerneedEntry &VE : *VerNeed->VerneedV) { in finalizeStrings()
H A DELFYAML.cpp1494 IO.mapOptional("Dependencies", Section.VerneedV); in sectionMapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h504 std::optional<std::vector<VerneedEntry>> VerneedV; member
510 return {{"Dependencies", VerneedV.has_value()}}; in getEntries()