Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/OProfileJIT/
DOProfileJITEventListener.cpp89 const ObjectFile &DebugObj = *DebugObjOwner.getBinary(); in NotifyObjectEmitted() local
90 std::unique_ptr<DIContext> Context = DWARFContext::create(DebugObj); in NotifyObjectEmitted()
93 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(DebugObj)) { in NotifyObjectEmitted()
151 const ObjectFile &DebugObj = *DebugObjects[Obj.getData().data()].getBinary(); in NotifyFreeingObject() local
154 for (symbol_iterator I = DebugObj.symbol_begin(), in NotifyFreeingObject()
155 E = DebugObj.symbol_end(); in NotifyFreeingObject()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/IntelJITEvents/
DIntelJITEventListener.cpp104 const ObjectFile *DebugObj = DebugObjOwner.getBinary(); in NotifyObjectEmitted() local
105 if (!DebugObj) in NotifyObjectEmitted()
109 const void* ObjData = DebugObj->getData().data(); in NotifyObjectEmitted()
110 std::unique_ptr<DIContext> Context = DWARFContext::create(*DebugObj); in NotifyObjectEmitted()
114 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(*DebugObj)) { in NotifyObjectEmitted()
201 const ObjectFile &DebugObj = *DebugObjects[Obj.getData().data()].getBinary(); in NotifyFreeingObject() local
202 const void* ObjData = DebugObj.getData().data(); in NotifyFreeingObject()
/external/llvm/lib/ExecutionEngine/OProfileJIT/
DOProfileJITEventListener.cpp86 const ObjectFile &DebugObj = *DebugObjOwner.getBinary(); in NotifyObjectEmitted() local
89 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(DebugObj)) { in NotifyObjectEmitted()
125 const ObjectFile &DebugObj = *DebugObjects[Obj.getData().data()].getBinary(); in NotifyFreeingObject() local
128 for (symbol_iterator I = DebugObj.symbol_begin(), in NotifyFreeingObject()
129 E = DebugObj.symbol_end(); in NotifyFreeingObject()
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
DIntelJITEventListener.cpp103 const ObjectFile &DebugObj = *DebugObjOwner.getBinary(); in NotifyObjectEmitted() local
106 const void* ObjData = DebugObj.getData().data(); in NotifyObjectEmitted()
107 DIContext* Context = new DWARFContextInMemory(DebugObj); in NotifyObjectEmitted()
111 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(DebugObj)) { in NotifyObjectEmitted()
198 const ObjectFile &DebugObj = *DebugObjects[Obj.getData().data()].getBinary(); in NotifyFreeingObject() local
199 const void* ObjData = DebugObj.getData().data(); in NotifyFreeingObject()
/external/llvm/lib/ExecutionEngine/
DGDBRegistrationListener.cpp163 OwningBinary<ObjectFile> DebugObj = L.getObjectForDebug(Object); in NotifyObjectEmitted() local
166 if (!DebugObj.getBinary()) in NotifyObjectEmitted()
169 const char *Buffer = DebugObj.getBinary()->getMemoryBufferRef().getBufferStart(); in NotifyObjectEmitted()
170 size_t Size = DebugObj.getBinary()->getMemoryBufferRef().getBufferSize(); in NotifyObjectEmitted()
188 std::move(DebugObj)); in NotifyObjectEmitted()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/
DGDBRegistrationListener.cpp154 OwningBinary<ObjectFile> DebugObj = L.getObjectForDebug(Object); in NotifyObjectEmitted() local
157 if (!DebugObj.getBinary()) in NotifyObjectEmitted()
160 const char *Buffer = DebugObj.getBinary()->getMemoryBufferRef().getBufferStart(); in NotifyObjectEmitted()
161 size_t Size = DebugObj.getBinary()->getMemoryBufferRef().getBufferSize(); in NotifyObjectEmitted()
179 std::move(DebugObj)); in NotifyObjectEmitted()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/PerfJITEvents/
DPerfJITEventListener.cpp237 const ObjectFile &DebugObj = *DebugObjOwner.getBinary(); in NotifyObjectEmitted() local
240 std::unique_ptr<DIContext> Context = DWARFContext::create(DebugObj); in NotifyObjectEmitted()
243 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(DebugObj)) { in NotifyObjectEmitted()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp314 OwningBinary<ObjectFile> DebugObj; in printLineInfoForInput() local
329 DebugObj = LoadedObjInfo->getObjectForDebug(Obj); in printLineInfoForInput()
330 SymbolObj = DebugObj.getBinary(); in printLineInfoForInput()
/external/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp308 OwningBinary<ObjectFile> DebugObj; in printLineInfoForInput() local
323 DebugObj = LoadedObjInfo->getObjectForDebug(Obj); in printLineInfoForInput()
324 SymbolObj = DebugObj.getBinary(); in printLineInfoForInput()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
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()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp152 std::unique_ptr<ObjectFile> DebugObj; in createELFDebugObject() local
155 DebugObj = createRTDyldELFObject<ELF32LE>(Buffer->getMemBufferRef(), Obj, L, in createELFDebugObject()
159 DebugObj = createRTDyldELFObject<ELF32BE>(Buffer->getMemBufferRef(), Obj, L, in createELFDebugObject()
163 DebugObj = createRTDyldELFObject<ELF64BE>(Buffer->getMemBufferRef(), Obj, L, in createELFDebugObject()
167 DebugObj = createRTDyldELFObject<ELF64LE>(Buffer->getMemBufferRef(), Obj, L, in createELFDebugObject()
174 return OwningBinary<ObjectFile>(std::move(DebugObj), std::move(Buffer)); in createELFDebugObject()