Home
last modified time | relevance | path

Searched refs:DebugObj (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp89 const ObjectFile &DebugObj = *DebugObjOwner.getBinary(); in notifyObjectLoaded() local
90 std::unique_ptr<DIContext> Context = DWARFContext::create(DebugObj); in notifyObjectLoaded()
93 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(DebugObj)) { in notifyObjectLoaded()
151 const ObjectFile &DebugObj = *DebugObjects[Key].getBinary(); in notifyFreeingObject() local
154 for (symbol_iterator I = DebugObj.symbol_begin(), in notifyFreeingObject()
155 E = DebugObj.symbol_end(); in notifyFreeingObject()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp104 const ObjectFile *DebugObj = DebugObjOwner.getBinary(); in notifyObjectLoaded() local
105 if (!DebugObj) in notifyObjectLoaded()
109 const void* ObjData = DebugObj->getData().data(); in notifyObjectLoaded()
110 std::unique_ptr<DIContext> Context = DWARFContext::create(*DebugObj); in notifyObjectLoaded()
114 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(*DebugObj)) { in notifyObjectLoaded()
201 const ObjectFile &DebugObj = *DebugObjects[Key].getBinary(); in notifyFreeingObject() local
202 const void* ObjData = DebugObj.getData().data(); in notifyFreeingObject()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/
H A DGDBRegistrationListener.cpp154 OwningBinary<ObjectFile> DebugObj = L.getObjectForDebug(Obj); in notifyObjectLoaded() local
157 if (!DebugObj.getBinary()) in notifyObjectLoaded()
160 const char *Buffer = DebugObj.getBinary()->getMemoryBufferRef().getBufferStart(); in notifyObjectLoaded()
161 size_t Size = DebugObj.getBinary()->getMemoryBufferRef().getBufferSize(); in notifyObjectLoaded()
176 RegisteredObjectInfo(Size, JITCodeEntry, std::move(DebugObj)); in notifyObjectLoaded()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp238 const ObjectFile &DebugObj = *DebugObjOwner.getBinary(); in notifyObjectLoaded() local
241 std::unique_ptr<DIContext> Context = DWARFContext::create(DebugObj); in notifyObjectLoaded()
244 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(DebugObj)) { in notifyObjectLoaded()
/freebsd-12.1/contrib/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp319 OwningBinary<ObjectFile> DebugObj; in printLineInfoForInput() local
334 DebugObj = LoadedObjInfo->getObjectForDebug(Obj); in printLineInfoForInput()
335 SymbolObj = DebugObj.getBinary(); in printLineInfoForInput()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp190 Expected<std::unique_ptr<ObjectFile>> DebugObj(nullptr); in createELFDebugObject() local
191 handleAllErrors(DebugObj.takeError()); in createELFDebugObject()
193 DebugObj = in createELFDebugObject()
196 DebugObj = in createELFDebugObject()
199 DebugObj = in createELFDebugObject()
202 DebugObj = in createELFDebugObject()
207 handleAllErrors(DebugObj.takeError()); in createELFDebugObject()
208 return OwningBinary<ObjectFile>(std::move(*DebugObj), std::move(Buffer)); in createELFDebugObject()