Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Delf2yaml.cpp327 auto LinkSection = Obj.getSection(Shdr->sh_link); in dumpCommonSection() local
328 if (LinkSection.takeError()) in dumpCommonSection()
329 return errorToErrorCode(LinkSection.takeError()); in dumpCommonSection()
330 NameOrErr = getUniquedSectionName(*LinkSection); in dumpCommonSection()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
DObject.cpp455 if (LinkSection == Sec) { in removeSectionReferences()
456 error("Section " + LinkSection->Name + in removeSectionReferences()
484 LinkSection = in initialize()
487 if (LinkSection->Type == ELF::SHT_SYMTAB) in initialize()
488 LinkSection = nullptr; in initialize()
492 void Section::finalize() { this->Link = LinkSection ? LinkSection->Index : 0; } in finalize()
DObject.h311 SectionBase *LinkSection = nullptr; variable
/external/llvm/tools/obj2yaml/
Delf2yaml.cpp242 ErrorOr<const Elf_Shdr *> LinkSection = Obj.getSection(Shdr->sh_link); in dumpCommonSection() local
243 if (std::error_code EC = LinkSection.getError()) in dumpCommonSection()
245 NameOrErr = Obj.getSectionName(*LinkSection); in dumpCommonSection()