Home
last modified time | relevance | path

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

/freebsd-head/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
HDCOFFLinkGraphBuilder.cpp114 if (Expected<StringRef> SecNameOrErr = Obj.getSectionName(Sec)) in getCOFFSectionName() local
115 return *SecNameOrErr; in getCOFFSectionName()
134 if (Expected<StringRef> SecNameOrErr = Obj.getSectionName(*Sec)) in graphifySections() local
135 SectionName = *SecNameOrErr; in graphifySections()
/freebsd-head/contrib/llvm-project/llvm/tools/llvm-objdump/
HDMachODump.cpp1945 Expected<StringRef> SecNameOrErr = Section.getName(); in DumpSectionContents() local
1946 if (SecNameOrErr) in DumpSectionContents()
1947 SectName = *SecNameOrErr; in DumpSectionContents()
1949 consumeError(SecNameOrErr.takeError()); in DumpSectionContents()
2043 Expected<StringRef> SecNameOrErr = Section.getName(); in DumpInfoPlistSectionContents() local
2044 if (SecNameOrErr) in DumpInfoPlistSectionContents()
2045 SectName = *SecNameOrErr; in DumpInfoPlistSectionContents()
2047 consumeError(SecNameOrErr.takeError()); in DumpInfoPlistSectionContents()
3498 Expected<StringRef> SecNameOrErr = in get_pointer_64() local
3500 if (SecNameOrErr) in get_pointer_64()
[all …]
HDllvm-objdump.cpp411 Expected<StringRef> SecNameOrErr = S.getName(); in checkSectionFilter() local
412 if (!SecNameOrErr) { in checkSectionFilter()
413 consumeError(SecNameOrErr.takeError()); in checkSectionFilter()
416 StringRef SecName = *SecNameOrErr; in checkSectionFilter()
1243 Expected<StringRef> SecNameOrErr = Section.getName(); in addPltEntries() local
1244 if (!SecNameOrErr) { in addPltEntries()
1245 consumeError(SecNameOrErr.takeError()); in addPltEntries()
1248 Sections[*SecNameOrErr] = Section; in addPltEntries()
/freebsd-head/contrib/llvm-project/llvm/tools/llvm-readobj/
HDCOFFDumper.cpp1659 if (Expected<StringRef> SecNameOrErr = in printSymbol() local
1661 SectionName = *SecNameOrErr; in printSymbol()
HDELFDumper.cpp6509 if (Expected<StringRef> SecNameOrErr = in getPrintableSectionName() local
6511 Name = *SecNameOrErr; in getPrintableSectionName()
6514 ": " + toString(SecNameOrErr.takeError())); in getPrintableSectionName()