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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp88 const ObjectFile &DebugObj = *DebugObjOwner.getBinary(); local
89 std::unique_ptr<DIContext> Context = DWARFContext::create(DebugObj);
92 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(DebugObj)) {
150 const ObjectFile &DebugObj = *DebugObjects[Key].getBinary(); local
153 for (symbol_iterator I = DebugObj.symbol_begin(),
154 E = DebugObj.symbol_end();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DGDBRegistrationListener.cpp153 OwningBinary<ObjectFile> DebugObj = L.getObjectForDebug(Obj); local
156 if (!DebugObj.getBinary())
159 const char *Buffer = DebugObj.getBinary()->getMemoryBufferRef().getBufferStart();
160 size_t Size = DebugObj.getBinary()->getMemoryBufferRef().getBufferSize();
175 RegisteredObjectInfo(Size, JITCodeEntry, std::move(DebugObj));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp103 const ObjectFile *DebugObj = DebugObjOwner.getBinary(); local
104 if (!DebugObj)
108 const void* ObjData = DebugObj->getData().data();
109 std::unique_ptr<DIContext> Context = DWARFContext::create(*DebugObj);
113 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(*DebugObj)) {
212 const ObjectFile &DebugObj = *DebugObjects[Key].getBinary(); local
213 const void* ObjData = DebugObj.getData().data();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp238 const ObjectFile &DebugObj = *DebugObjOwner.getBinary(); local
241 std::unique_ptr<DIContext> Context = DWARFContext::create(DebugObj);
244 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(DebugObj)) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp193 Expected<std::unique_ptr<ObjectFile>> DebugObj(nullptr);
194 handleAllErrors(DebugObj.takeError());
196 DebugObj =
199 DebugObj =
202 DebugObj =
205 DebugObj =
210 handleAllErrors(DebugObj.takeError());
211 return OwningBinary<ObjectFile>(std::move(*DebugObj), std::move(Buffer));
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp393 OwningBinary<ObjectFile> DebugObj; local
408 DebugObj = LoadedObjInfo->getObjectForDebug(Obj);
409 SymbolObj = DebugObj.getBinary();

Completed in 171 milliseconds