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.cpp1688 else if (Section.VerneedV) in writeSectionContent()
1689 SHeader.sh_info = Section.VerneedV->size(); in writeSectionContent()
1691 if (!Section.VerneedV) in writeSectionContent()
1695 for (size_t I = 0; I < Section.VerneedV->size(); ++I) { in writeSectionContent()
1696 const ELFYAML::VerneedEntry &VE = (*Section.VerneedV)[I]; in writeSectionContent()
1701 if (I == Section.VerneedV->size() - 1) in writeSectionContent()
1726 SHeader.sh_size = Section.VerneedV->size() * sizeof(Elf_Verneed) + in writeSectionContent()
2015 if (VerNeed->VerneedV) { in finalizeStrings()
2016 for (const ELFYAML::VerneedEntry &VE : *VerNeed->VerneedV) { in finalizeStrings()
H A DELFYAML.cpp1462 IO.mapOptional("Dependencies", Section.VerneedV); in sectionMapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h489 std::optional<std::vector<VerneedEntry>> VerneedV; member
495 return {{"Dependencies", VerneedV.has_value()}}; in getEntries()