Home
last modified time | relevance | path

Searched refs:GroupSection (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.h42 class GroupSection; variable
84 virtual Error visit(const GroupSection &Sec) = 0;
101 virtual Error visit(GroupSection &Sec) = 0;
121 Error visit(const GroupSection &Sec) override = 0;
141 Error visit(const GroupSection &Sec) override;
165 Error visit(GroupSection &Sec) override;
188 Error visit(const GroupSection &Sec) override;
940 class GroupSection : public SectionBase {
955 explicit GroupSection(ArrayRef<uint8_t> Data) : Contents(Data) {} in GroupSection() function
1101 Error initGroupSection(GroupSection *GroupSec);
H A DELFObject.cpp139 template <class ELFT> Error ELFSectionSizer<ELFT>::visit(GroupSection &Sec) { in visit()
181 Error BinarySectionWriter::visit(const GroupSection &Sec) { in visit()
1078 void GroupSection::finalize() { in finalize()
1089 Error GroupSection::removeSectionReferences( in removeSectionReferences()
1105 Error GroupSection::removeSymbols(function_ref<bool(const Symbol &)> ToRemove) { in removeSymbols()
1114 void GroupSection::markSymbols() { in markSymbols()
1119 void GroupSection::replaceSectionReferences( in replaceSectionReferences()
1126 void GroupSection::onRemove() { in onRemove()
1198 Error ELFSectionWriter<ELFT>::visit(const GroupSection &Sec) { in visit()
1207 Error GroupSection::accept(SectionVisitor &Visitor) const { in accept()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp173 struct GroupSection { struct
331 std::vector<GroupSection> getGroups();
3758 template <class ELFT> std::vector<GroupSection> ELFDumper<ELFT>::getGroups() { in getGroups()
3782 std::vector<GroupSection> Ret; in getGroups()
3844 static DenseMap<uint64_t, const GroupSection *>
3845 mapSectionsToGroups(ArrayRef<GroupSection> Groups) { in mapSectionsToGroups()
3846 DenseMap<uint64_t, const GroupSection *> Ret; in mapSectionsToGroups()
3847 for (const GroupSection &G : Groups) in mapSectionsToGroups()
3854 std::vector<GroupSection> V = this->getGroups(); in printGroupSections()
3855 DenseMap<uint64_t, const GroupSection *> Map = mapSectionsToGroups(V); in printGroupSections()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h617 struct GroupSection : Section { struct
623 GroupSection() : Section(ChunkKind::Group) {} in GroupSection() argument
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp261 const ELFYAML::GroupSection &Group,
863 } else if (auto S = dyn_cast<ELFYAML::GroupSection>(Sec)) { in initSectionHeaders()
1383 const ELFYAML::GroupSection &Section, in writeSectionContent()
H A DELFYAML.cpp1508 static void groupSectionMapping(IO &IO, ELFYAML::GroupSection &Group) { in groupSectionMapping()
1670 Section.reset(new ELFYAML::GroupSection()); in mapping()
1671 groupSectionMapping(IO, *cast<ELFYAML::GroupSection>(Section.get())); in mapping()