Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DDebugObjectManagerPlugin.cpp265 std::unique_ptr<ELFDebugObject> DebugObj( in CreateArchType() local
270 Expected<ELFFile<ELFT>> ObjRef = ELFFile<ELFT>::create(DebugObj->getBuffer()); in CreateArchType()
296 if (Error Err = DebugObj->recordSection(*Name, std::move(Wrapped))) in CreateArchType()
302 << DebugObj->Buffer->getBufferIdentifier() in CreateArchType()
307 return std::move(DebugObj); in CreateArchType()
419 if (auto DebugObj = createDebugObjectFromBuffer(ES, G, Ctx, ObjBuffer)) { in notifyMaterializing() local
421 if (*DebugObj != nullptr) in notifyMaterializing()
422 PendingObjs[&MR] = std::move(*DebugObj); in notifyMaterializing()
424 ES.reportError(DebugObj.takeError()); in notifyMaterializing()
437 DebugObject &DebugObj = *It->second; in modifyPassConfig() local
[all …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/
H A DGDBRegistrationListener.cpp169 OwningBinary<ObjectFile> DebugObj = L.getObjectForDebug(Obj); in notifyObjectLoaded() local
172 if (!DebugObj.getBinary()) in notifyObjectLoaded()
175 const char *Buffer = DebugObj.getBinary()->getMemoryBufferRef().getBufferStart(); in notifyObjectLoaded()
176 size_t Size = DebugObj.getBinary()->getMemoryBufferRef().getBufferSize(); in notifyObjectLoaded()
191 RegisteredObjectInfo(Size, JITCodeEntry, std::move(DebugObj)); in notifyObjectLoaded()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp232 const ObjectFile *DebugObj = DebugObjOwner.getBinary(); in notifyObjectLoaded() local
233 if (!DebugObj) in notifyObjectLoaded()
237 const void *ObjData = DebugObj->getData().data(); in notifyObjectLoaded()
238 std::unique_ptr<DIContext> Context = DWARFContext::create(*DebugObj); in notifyObjectLoaded()
243 computeSymbolSizes(*DebugObj)) { in notifyObjectLoaded()
355 const ObjectFile &DebugObj = *DebugObjects[Key].getBinary(); in notifyFreeingObject() local
356 const void *ObjData = DebugObj.getData().data(); in notifyFreeingObject()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp237 const ObjectFile &DebugObj = *DebugObjOwner.getBinary(); in notifyObjectLoaded() local
240 std::unique_ptr<DIContext> Context = DWARFContext::create(DebugObj); in notifyObjectLoaded()
243 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(DebugObj)) { in notifyObjectLoaded()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp443 OwningBinary<ObjectFile> DebugObj; in printLineInfoForInput() local
458 DebugObj = LoadedObjInfo->getObjectForDebug(Obj); in printLineInfoForInput()
459 SymbolObj = DebugObj.getBinary(); in printLineInfoForInput()