Home
last modified time | relevance | path

Searched refs:SecInfo (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldChecker.cpp792 auto SecInfo = GetSectionInfo(FileName, SectionName); in getSectionAddr() local
793 if (!SecInfo) { in getSectionAddr()
797 logAllUnhandledErrors(SecInfo.takeError(), ErrMsgStream, in getSectionAddr()
809 if (SecInfo->isZeroFill()) in getSectionAddr()
812 Addr = pointerToJITTargetAddress(SecInfo->getContent().data()); in getSectionAddr()
814 Addr = SecInfo->getTargetAddress(); in getSectionAddr()
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldChecker.cpp803 auto SecInfo = GetSectionInfo(FileName, SectionName); in getSectionAddr() local
804 if (!SecInfo) { in getSectionAddr()
808 logAllUnhandledErrors(SecInfo.takeError(), ErrMsgStream, in getSectionAddr()
820 if (SecInfo->isZeroFill()) in getSectionAddr()
823 Addr = pointerToJITTargetAddress(SecInfo->getContent().data()); in getSectionAddr()
825 Addr = SecInfo->getTargetAddress(); in getSectionAddr()
/external/llvm-project/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp868 RuntimeDyldChecker::MemoryRegionInfo SecInfo; in linkAndVerify() local
869 SecInfo.setTargetAddress(Dyld.getSectionLoadAddress(*SectionID)); in linkAndVerify()
870 SecInfo.setContent(Dyld.getSectionContent(*SectionID)); in linkAndVerify()
871 return SecInfo; in linkAndVerify()