Home
last modified time | relevance | path

Searched refs:loadObject (Results 1 – 14 of 14) sorted by relevance

/openbsd/src/gnu/llvm/llvm/docs/
DMCJITDesignAndImplementation.rst84 class) and calls the RuntimeDyldImpl::loadObject method to perform that
89 RuntimeDyldImpl::loadObject begins by creating an ObjectImage instance
95 RuntimeDyldImpl::loadObject then iterates through the symbols in the
101 Next, RuntimeDyldImpl::loadObject iterates through the sections in the
110 When RuntimeDyldImpl::loadObject returns, all of the code and data
117 relocations when loadObject completes. However, this shouldn't be
/openbsd/src/gnu/llvm/llvm/tools/dsymutil/
DDwarfLinkerForBinary.h199 ErrorOr<const object::ObjectFile &> loadObject(const DebugMapObject &Obj,
201 ErrorOr<DWARFFile &> loadObject(const DebugMapObject &Obj,
DDwarfLinkerForBinary.cpp180 DwarfLinkerForBinary::loadObject(const DebugMapObject &Obj, in loadObject() function in llvm::dsymutil::DwarfLinkerForBinary
268 DwarfLinkerForBinary::loadObject(const DebugMapObject &Obj, in loadObject() function in llvm::dsymutil::DwarfLinkerForBinary
271 auto ErrorOrObj = loadObject(Obj, DebugMap.getTriple()); in loadObject()
598 if (auto ErrorOrObj = loadObject(Obj, DebugMap, RL)) { in link()
710 if (auto ErrorOrObj = loadObject(*Obj, Map, RL)) in link()
/openbsd/src/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldCOFF.h30 loadObject(const object::ObjectFile &Obj) override;
DRuntimeDyldCOFF.cpp66 RuntimeDyldCOFF::loadObject(const object::ObjectFile &O) { in loadObject() function in llvm::RuntimeDyldCOFF
DRuntimeDyldMachO.h130 loadObject(const object::ObjectFile &O) override;
DRuntimeDyldELF.h220 loadObject(const object::ObjectFile &O) override;
DRuntimeDyld.cpp1347 RuntimeDyld::loadObject(const ObjectFile &Obj) { in loadObject() function in llvm::RuntimeDyld
1369 auto LoadedObjInfo = Dyld->loadObject(Obj); in loadObject()
1460 auto Info = RTDyld.loadObject(*O.getBinary()); in jitLinkForORC()
DRuntimeDyldMachO.cpp370 RuntimeDyldMachO::loadObject(const object::ObjectFile &O) { in loadObject() function in llvm::RuntimeDyldMachO
DRuntimeDyldImpl.h466 loadObject(const object::ObjectFile &Obj) = 0;
DRuntimeDyldELF.cpp248 RuntimeDyldELF::loadObject(const object::ObjectFile &O) { in loadObject() function in llvm::RuntimeDyldELF
/openbsd/src/gnu/llvm/llvm/include/llvm/ExecutionEngine/
DRuntimeDyld.h199 std::unique_ptr<LoadedObjectInfo> loadObject(const object::ObjectFile &O);
/openbsd/src/gnu/llvm/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp449 Dyld.loadObject(Obj); in printLineInfoForInput()
580 Dyld.loadObject(Obj); in executeInput()
986 Dyld.loadObject(Obj); in linkAndVerify()
/openbsd/src/gnu/llvm/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp120 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> L = Dyld.loadObject(*Obj); in addObjectFile()
225 Dyld.loadObject(*LoadedObject.get()); in generateCodeForModule()