Home
last modified time | relevance | path

Searched refs:LinkSection (Results 1 – 4 of 4) sorted by relevance

/external/llvm/tools/obj2yaml/
Delf2yaml.cpp245 ErrorOr<const Elf_Shdr *> LinkSection = Obj.getSection(Shdr->sh_link); in dumpCommonSection() local
246 if (std::error_code EC = LinkSection.getError()) in dumpCommonSection()
248 NameOrErr = Obj.getSectionName(*LinkSection); in dumpCommonSection()
/external/llvm-project/llvm/tools/llvm-objcopy/ELF/
DObject.cpp1058 if (ToRemove(LinkSection)) { in removeSectionReferences()
1063 LinkSection->Name.data(), this->Name.data()); in removeSectionReferences()
1064 LinkSection = nullptr; in removeSectionReferences()
1128 LinkSection = *Sec; in initialize()
1130 if (LinkSection->Type == ELF::SHT_SYMTAB) in initialize()
1131 LinkSection = nullptr; in initialize()
1136 void Section::finalize() { this->Link = LinkSection ? LinkSection->Index : 0; } in finalize()
DObject.h481 SectionBase *LinkSection = nullptr; variable
/external/llvm-project/llvm/tools/obj2yaml/
Delf2yaml.cpp773 auto LinkSection = Obj.getSection(Shdr->sh_link); in dumpCommonSection() local
774 if (!LinkSection) in dumpCommonSection()
777 "': " + toString(LinkSection.takeError()), in dumpCommonSection()
780 NameOrErr = getUniquedSectionName(*LinkSection); in dumpCommonSection()