Searched refs:SectionIDOrErr (Results 1 – 3 of 3) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyld.cpp | 335 if (auto SectionIDOrErr = in loadObjectImpl() local 337 SectionID = *SectionIDOrErr; in loadObjectImpl() 339 return SectionIDOrErr.takeError(); in loadObjectImpl() 378 if (auto SectionIDOrErr = findOrEmitSection(Obj, *RelocatedSection, IsCode, in loadObjectImpl() local 380 SectionID = *SectionIDOrErr; in loadObjectImpl() 382 return SectionIDOrErr.takeError(); in loadObjectImpl() 435 if (auto SectionIDOrErr = in loadObjectImpl() local 437 LLVM_DEBUG(dbgs() << "\tSectionID: " << (*SectionIDOrErr) << "\n"); in loadObjectImpl() 439 return SectionIDOrErr.takeError(); in loadObjectImpl() 918 if (auto SectionIDOrErr = emitSection(Obj, Section, IsCode)) in findOrEmitSection() local [all …]
|
H A D | RuntimeDyldMachO.cpp | 128 if (auto SectionIDOrErr = findOrEmitSection(Obj, Sec, IsCode, in getRelocationValueRef() local 130 Value.SectionID = *SectionIDOrErr; in getRelocationValueRef() 132 return SectionIDOrErr.takeError(); in getRelocationValueRef()
|
H A D | RuntimeDyldELF.cpp | 649 if (auto SectionIDOrErr = in findPPC64TOCSection() local 651 Rel.SectionID = *SectionIDOrErr; in findPPC64TOCSection() 653 return SectionIDOrErr.takeError(); in findPPC64TOCSection() 733 if (auto SectionIDOrErr = findOrEmitSection(Obj, *TSI, IsCode, in findOPDEntrySection() local 735 Rel.SectionID = *SectionIDOrErr; in findOPDEntrySection() 737 return SectionIDOrErr.takeError(); in findOPDEntrySection() 1239 if (auto SectionIDOrErr = findOrEmitSection(Obj, (*si), isCode, in processRelocationRef() local 1241 Value.SectionID = *SectionIDOrErr; in processRelocationRef() 1243 return SectionIDOrErr.takeError(); in processRelocationRef()
|