Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DDebugObjectManagerPlugin.cpp252 std::unique_ptr<ELFDebugObject> DebugObj( in CreateArchType() local
286 << DebugObj->Buffer->getBufferIdentifier() in CreateArchType()
291 return std::move(DebugObj); in CreateArchType()
407 if (*DebugObj != nullptr) in notifyMaterializing()
408 PendingObjs[&MR] = std::move(*DebugObj); in notifyMaterializing()
410 ES.reportError(DebugObj.takeError()); in notifyMaterializing()
423 DebugObject &DebugObj = *It->second; in modifyPassConfig() local
424 if (DebugObj.has(Requirement::ReportFinalSectionLoadAddresses)) { in modifyPassConfig()
426 [&DebugObj](LinkGraph &Graph) -> Error { in modifyPassConfig()
490 for (std::unique_ptr<DebugObject> &DebugObj : SrcIt->second) in notifyTransferringResources()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp88 const ObjectFile &DebugObj = *DebugObjOwner.getBinary(); in notifyObjectLoaded() local
89 std::unique_ptr<DIContext> Context = DWARFContext::create(DebugObj); in notifyObjectLoaded()
92 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(DebugObj)) { in notifyObjectLoaded()
150 const ObjectFile &DebugObj = *DebugObjects[Key].getBinary(); in notifyFreeingObject() local
153 for (symbol_iterator I = DebugObj.symbol_begin(), in notifyFreeingObject()
154 E = DebugObj.symbol_end(); in notifyFreeingObject()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DGDBRegistrationListener.cpp160 OwningBinary<ObjectFile> DebugObj = L.getObjectForDebug(Obj); in notifyObjectLoaded() local
163 if (!DebugObj.getBinary()) in notifyObjectLoaded()
166 const char *Buffer = DebugObj.getBinary()->getMemoryBufferRef().getBufferStart(); in notifyObjectLoaded()
167 size_t Size = DebugObj.getBinary()->getMemoryBufferRef().getBufferSize(); in notifyObjectLoaded()
182 RegisteredObjectInfo(Size, JITCodeEntry, std::move(DebugObj)); in notifyObjectLoaded()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp231 const ObjectFile *DebugObj = DebugObjOwner.getBinary(); in notifyObjectLoaded() local
232 if (!DebugObj) in notifyObjectLoaded()
236 const void *ObjData = DebugObj->getData().data(); in notifyObjectLoaded()
237 std::unique_ptr<DIContext> Context = DWARFContext::create(*DebugObj); in notifyObjectLoaded()
242 computeSymbolSizes(*DebugObj)) { in notifyObjectLoaded()
354 const ObjectFile &DebugObj = *DebugObjects[Key].getBinary(); in notifyFreeingObject() local
355 const void *ObjData = DebugObj.getData().data(); in notifyFreeingObject()
/freebsd-13.1/contrib/llvm-project/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-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp186 Expected<std::unique_ptr<ObjectFile>> DebugObj(nullptr); in createELFDebugObject() local
187 handleAllErrors(DebugObj.takeError()); in createELFDebugObject()
189 DebugObj = in createELFDebugObject()
192 DebugObj = in createELFDebugObject()
195 DebugObj = in createELFDebugObject()
198 DebugObj = in createELFDebugObject()
203 handleAllErrors(DebugObj.takeError()); in createELFDebugObject()
204 return OwningBinary<ObjectFile>(std::move(*DebugObj), std::move(Buffer)); in createELFDebugObject()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp395 OwningBinary<ObjectFile> DebugObj; in printLineInfoForInput() local
410 DebugObj = LoadedObjInfo->getObjectForDebug(Obj); in printLineInfoForInput()
411 SymbolObj = DebugObj.getBinary(); in printLineInfoForInput()