HomeSort by relevance Sort by last modified time
    Searched refs:RTDyld (Results 1 - 9 of 9) sorted by null

  /external/llvm/include/llvm/ExecutionEngine/
RuntimeDyld.h 66 LoadedObjectInfo(RuntimeDyldImpl &RTDyld, ObjSectionToIDMap ObjSecToIDMap)
67 : RTDyld(RTDyld), ObjSecToIDMap(ObjSecToIDMap) { }
78 RuntimeDyldImpl &RTDyld;
88 LoadedObjectInfoHelper(RuntimeDyldImpl &RTDyld,
90 : LoadedObjectInfo(RTDyld, std::move(ObjSecToIDMap)) {}
RuntimeDyldChecker.h 67 RuntimeDyldChecker(RuntimeDyld &RTDyld, MCDisassembler *Disassembler,
71 // \brief Get the associated RTDyld instance.
74 // \brief Get the associated RTDyld instance.
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldCheckerImpl.h 25 RuntimeDyldCheckerImpl(RuntimeDyld &RTDyld, MCDisassembler *Disassembler,
43 RuntimeDyldImpl &getRTDyld() const { return *RTDyld.Dyld; }
68 RuntimeDyld &RTDyld;
RuntimeDyldCOFF.cpp 31 LoadedCOFFObjectInfo(RuntimeDyldImpl &RTDyld, ObjSectionToIDMap ObjSecToIDMap)
32 : LoadedObjectInfoHelper(RTDyld, std::move(ObjSecToIDMap)) {}
RuntimeDyldChecker.cpp 21 #define DEBUG_TYPE "rtdyld"
678 RuntimeDyldCheckerImpl::RuntimeDyldCheckerImpl(RuntimeDyld &RTDyld,
682 : RTDyld(RTDyld), Disassembler(Disassembler), InstPrinter(InstPrinter),
684 RTDyld.Checker = this;
    [all...]
RuntimeDyldMachO.cpp 32 LoadedMachOObjectInfo(RuntimeDyldImpl &RTDyld,
34 : LoadedObjectInfoHelper(RTDyld, std::move(ObjSecToIDMap)) {}
RuntimeDyld.cpp 863 return RTDyld.Sections[I->second].getLoadAddress();
    [all...]
RuntimeDyldELF.cpp 109 LoadedELFObjectInfo(RuntimeDyldImpl &RTDyld, ObjSectionToIDMap ObjSecToIDMap)
110 : LoadedObjectInfoHelper(RTDyld, std::move(ObjSecToIDMap)) {}
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/Orc/
ObjectLinkingLayer.h 44 : RTDyld(llvm::make_unique<RuntimeDyld>(MemMgr, Resolver)),
46 RTDyld->setProcessAllSections(ProcessAllSections);
53 return RTDyld->loadObject(Obj);
57 return RTDyld->getSymbol(Name);
67 RTDyld->mapSectionAddress(LocalAddress, TargetAddr);
71 std::unique_ptr<RuntimeDyld> RTDyld;
111 RTDyld->resolveRelocations();
112 RTDyld->registerEHFrames();

Completed in 97 milliseconds