Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DDebugObjectManagerPlugin.cpp257 std::unique_ptr<ELFDebugObject> DebugObj( in CreateArchType() local
262 Expected<ELFFile<ELFT>> ObjRef = ELFFile<ELFT>::create(DebugObj->getBuffer()); in CreateArchType()
277 DebugObj->setFlags(HasDebugSections); in CreateArchType()
287 if (Error Err = DebugObj->recordSection(*Name, std::move(Wrapped))) in CreateArchType()
291 return std::move(DebugObj); in CreateArchType()
410 if (auto DebugObj = createDebugObjectFromBuffer(ES, G, Ctx, ObjBuffer)) { in notifyMaterializing() local
412 if (*DebugObj == nullptr) in notifyMaterializing()
414 if (RequireDebugSections && !(**DebugObj).hasFlags(HasDebugSections)) { in notifyMaterializing()
419 PendingObjs[&MR] = std::move(*DebugObj); in notifyMaterializing()
421 ES.reportError(DebugObj.takeError()); in notifyMaterializing()
[all …]
/freebsd/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/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DGDBRegistrationListener.cpp168 OwningBinary<ObjectFile> DebugObj = L.getObjectForDebug(Obj); in notifyObjectLoaded() local
171 if (!DebugObj.getBinary()) in notifyObjectLoaded()
174 const char *Buffer = DebugObj.getBinary()->getMemoryBufferRef().getBufferStart(); in notifyObjectLoaded()
175 size_t Size = DebugObj.getBinary()->getMemoryBufferRef().getBufferSize(); in notifyObjectLoaded()
190 RegisteredObjectInfo(Size, JITCodeEntry, std::move(DebugObj)); in notifyObjectLoaded()
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp240 const ObjectFile &DebugObj = *DebugObjOwner.getBinary(); in notifyObjectLoaded() local
243 std::unique_ptr<DIContext> Context = DWARFContext::create(DebugObj); in notifyObjectLoaded()
246 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(DebugObj)) { in notifyObjectLoaded()
/freebsd/contrib/llvm-project/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()
/freebsd/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()