Home
last modified time | relevance | path

Searched refs:SectionNameOrErr (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.cpp150 Expected<StringRef> SectionNameOrErr = Section.getName(); in mapVirtualAddress()
152 if (!SectionNameOrErr) in mapVirtualAddress()
153 consumeError(SectionNameOrErr.takeError()); in mapVirtualAddress()
155 Name = *SectionNameOrErr; in mapVirtualAddress()
182 Expected<StringRef> SectionNameOrErr = Section.getName(); in mapVirtualAddress() local
183 if (!SectionNameOrErr) { in mapVirtualAddress()
184 consumeError(SectionNameOrErr.takeError()); in mapVirtualAddress()
187 if (*SectionNameOrErr == ".text" || *SectionNameOrErr == "CODE" || in mapVirtualAddress()
188 *SectionNameOrErr == ".code") { in mapVirtualAddress()
205 Expected<StringRef> SectionNameOrErr = Section.getName(); in mapVirtualAddress()
[all …]
H A DLVCodeViewReader.cpp466 Expected<StringRef> SectionNameOrErr = Section.getName(); in loadPrecompiledObject()
467 if (!SectionNameOrErr) in loadPrecompiledObject()
468 return SectionNameOrErr.takeError(); in loadPrecompiledObject() local
469 if (*SectionNameOrErr == ".debug$P") { in loadPrecompiledObject()
863 Expected<StringRef> SectionNameOrErr = Section.getName(); in createScopes()
864 if (!SectionNameOrErr) in createScopes() local
865 return SectionNameOrErr.takeError(); in createScopes()
868 if (*SectionNameOrErr == ".debug$T" || *SectionNameOrErr == ".debug$P") in createScopes()
869 if (Error Err = traverseTypeSection(*SectionNameOrErr, Sectio in createScopes()
878 Expected<StringRef> SectionNameOrErr = Section.getName(); createScopes() local
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFObjectFile.h1014 Expected<StringRef> SectionNameOrErr = getSectionName(Sec); in isDebugSection() local
1015 if (!SectionNameOrErr) { in isDebugSection()
1017 consumeError(SectionNameOrErr.takeError()); in isDebugSection()
1020 StringRef SectionName = SectionNameOrErr.get(); in isDebugSection()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DCOFFObjectFile.cpp331 Expected<StringRef> SectionNameOrErr = getSectionName(Ref); in isDebugSection() local
332 if (!SectionNameOrErr) { in isDebugSection()
334 consumeError(SectionNameOrErr.takeError()); in isDebugSection()
337 StringRef SectionName = SectionNameOrErr.get(); in isDebugSection()
H A DMachOObjectFile.cpp2062 Expected<StringRef> SectionNameOrErr = getSectionName(Sec); in isDebugSection() local
2063 if (!SectionNameOrErr) { in isDebugSection()
2065 consumeError(SectionNameOrErr.takeError()); in isDebugSection()
2068 StringRef SectionName = SectionNameOrErr.get(); in isDebugSection()