Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
DObject.h42 class GroupSection; variable
84 virtual Error visit(const GroupSection &Sec) = 0;
101 virtual Error visit(GroupSection &Sec) = 0;
121 virtual Error visit(const GroupSection &Sec) override = 0;
141 Error visit(const GroupSection &Sec) override;
165 Error visit(GroupSection &Sec) override;
185 Error visit(const GroupSection &Sec) override;
797 class GroupSection : public SectionBase {
809 explicit GroupSection(ArrayRef<uint8_t> Data) : Contents(Data) {} in GroupSection() function
953 Error initGroupSection(GroupSection *GroupSec);
DObject.cpp123 template <class ELFT> Error ELFSectionSizer<ELFT>::visit(GroupSection &Sec) { in visit()
165 Error BinarySectionWriter::visit(const GroupSection &Sec) { in visit()
1069 void GroupSection::finalize() { in finalize()
1080 Error GroupSection::removeSectionReferences( in removeSectionReferences()
1096 Error GroupSection::removeSymbols(function_ref<bool(const Symbol &)> ToRemove) { in removeSymbols()
1105 void GroupSection::markSymbols() { in markSymbols()
1110 void GroupSection::replaceSectionReferences( in replaceSectionReferences()
1117 void GroupSection::onRemove() { in onRemove()
1187 Error ELFSectionWriter<ELFT>::visit(const GroupSection &Sec) { in visit()
1196 Error GroupSection::accept(SectionVisitor &Visitor) const { in accept()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
DELFDumper.cpp164 struct GroupSection { struct
299 std::vector<GroupSection> getGroups();
3295 template <class ELFT> std::vector<GroupSection> ELFDumper<ELFT>::getGroups() { in getGroups()
3319 std::vector<GroupSection> Ret; in getGroups()
3381 static DenseMap<uint64_t, const GroupSection *>
3382 mapSectionsToGroups(ArrayRef<GroupSection> Groups) { in mapSectionsToGroups()
3383 DenseMap<uint64_t, const GroupSection *> Ret; in mapSectionsToGroups()
3384 for (const GroupSection &G : Groups) in mapSectionsToGroups()
3391 std::vector<GroupSection> V = this->getGroups(); in printGroupSections()
3392 DenseMap<uint64_t, const GroupSection *> Map = mapSectionsToGroups(V); in printGroupSections()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
DELFYAML.h571 struct GroupSection : Section { struct
577 GroupSection() : Section(ChunkKind::Group) {} in GroupSection() argument
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
DELFYAML.cpp1354 static void groupSectionMapping(IO &IO, ELFYAML::GroupSection &Group) { in groupSectionMapping()
1515 Section.reset(new ELFYAML::GroupSection()); in mapping()
1516 groupSectionMapping(IO, *cast<ELFYAML::GroupSection>(Section.get())); in mapping()
DELFEmitter.cpp256 const ELFYAML::GroupSection &Group,
863 } else if (auto S = dyn_cast<ELFYAML::GroupSection>(Sec)) { in initSectionHeaders()
1341 const ELFYAML::GroupSection &Section, in writeSectionContent()