Home
last modified time | relevance | path

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

/external/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;
794 class GroupSection : public SectionBase {
806 explicit GroupSection(ArrayRef<uint8_t> Data) : Contents(Data) {} in GroupSection() function
950 Error initGroupSection(GroupSection *GroupSec);
DObject.cpp124 template <class ELFT> Error ELFSectionSizer<ELFT>::visit(GroupSection &Sec) { in visit()
166 Error BinarySectionWriter::visit(const GroupSection &Sec) { in visit()
1069 void GroupSection::finalize() { in finalize()
1074 Error GroupSection::removeSectionReferences( in removeSectionReferences()
1090 Error GroupSection::removeSymbols(function_ref<bool(const Symbol &)> ToRemove) { in removeSymbols()
1099 void GroupSection::markSymbols() { in markSymbols()
1104 void GroupSection::replaceSectionReferences( in replaceSectionReferences()
1111 void GroupSection::onRemove() { in onRemove()
1180 Error ELFSectionWriter<ELFT>::visit(const GroupSection &Sec) { in visit()
1189 Error GroupSection::accept(SectionVisitor &Visitor) const { in accept()
[all …]
/external/llvm-project/llvm/tools/llvm-readobj/
DELFDumper.cpp195 struct GroupSection { struct
806 std::vector<GroupSection> getGroups();
3567 template <class ELFT> std::vector<GroupSection> DumpStyle<ELFT>::getGroups() { in getGroups()
3591 std::vector<GroupSection> Ret; in getGroups()
3655 static DenseMap<uint64_t, const GroupSection *>
3656 mapSectionsToGroups(ArrayRef<GroupSection> Groups) { in mapSectionsToGroups()
3657 DenseMap<uint64_t, const GroupSection *> Ret; in mapSectionsToGroups()
3658 for (const GroupSection &G : Groups) in mapSectionsToGroups()
3665 std::vector<GroupSection> V = this->getGroups(); in printGroupSections()
3666 DenseMap<uint64_t, const GroupSection *> Map = mapSectionsToGroups(V); in printGroupSections()
[all …]
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DELFYAML.h512 struct GroupSection : Section { struct
518 GroupSection() : Section(ChunkKind::Group) {} in GroupSection() argument
/external/llvm-project/llvm/tools/obj2yaml/
Delf2yaml.cpp98 Expected<ELFYAML::GroupSection *> dumpGroupSection(const Elf_Shdr *Shdr);
1456 Expected<ELFYAML::GroupSection *>
1458 auto S = std::make_unique<ELFYAML::GroupSection>(); in dumpGroupSection()
/external/llvm-project/llvm/lib/ObjectYAML/
DELFYAML.cpp1229 static void groupSectionMapping(IO &IO, ELFYAML::GroupSection &Group) { in groupSectionMapping()
1356 Section.reset(new ELFYAML::GroupSection()); in mapping()
1357 groupSectionMapping(IO, *cast<ELFYAML::GroupSection>(Section.get())); in mapping()
DELFEmitter.cpp249 const ELFYAML::GroupSection &Group,
742 } else if (auto S = dyn_cast<ELFYAML::GroupSection>(Sec)) { in initSectionHeaders()
1276 const ELFYAML::GroupSection &Section, in writeSectionContent()