Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/OProfileJIT/
DOProfileJITEventListener.cpp85 const ObjectFile &DebugObj = *DebugObjOwner.getBinary(); in NotifyObjectEmitted() local
88 for (symbol_iterator I = DebugObj.symbol_begin(), E = DebugObj.symbol_end(); in NotifyObjectEmitted()
122 const ObjectFile &DebugObj = *DebugObjects[Obj.getData().data()].getBinary(); in NotifyFreeingObject() local
125 for (symbol_iterator I = DebugObj.symbol_begin(), in NotifyFreeingObject()
126 E = DebugObj.symbol_end(); in NotifyFreeingObject()
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
DIntelJITEventListener.cpp101 const ObjectFile &DebugObj = *DebugObjOwner.getBinary(); in NotifyObjectEmitted() local
104 const void* ObjData = DebugObj.getData().data(); in NotifyObjectEmitted()
105 DIContext* Context = DIContext::getDWARFContext(DebugObj); in NotifyObjectEmitted()
109 for (symbol_iterator I = DebugObj.symbol_begin(), in NotifyObjectEmitted()
110 E = DebugObj.symbol_end(); in NotifyObjectEmitted()
191 const ObjectFile &DebugObj = *DebugObjects[Obj.getData().data()].getBinary(); in NotifyFreeingObject() local
192 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/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp227 OwningBinary<ObjectFile> DebugObj = LoadedObjInfo->getObjectForDebug(Obj); in printLineInfoForInput() local
230 DIContext::getDWARFContext(*DebugObj.getBinary())); in printLineInfoForInput()
233 for (object::symbol_iterator I = DebugObj.getBinary()->symbol_begin(), in printLineInfoForInput()
234 E = DebugObj.getBinary()->symbol_end(); in printLineInfoForInput()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp157 std::unique_ptr<ObjectFile> DebugObj; in createELFDebugObject() local
160 DebugObj = createRTDyldELFObject<ELF32LE>(Buffer->getMemBufferRef(), L, ec); in createELFDebugObject()
163 DebugObj = createRTDyldELFObject<ELF32BE>(Buffer->getMemBufferRef(), L, ec); in createELFDebugObject()
166 DebugObj = createRTDyldELFObject<ELF64BE>(Buffer->getMemBufferRef(), L, ec); in createELFDebugObject()
169 DebugObj = createRTDyldELFObject<ELF64LE>(Buffer->getMemBufferRef(), L, ec); in createELFDebugObject()
175 return OwningBinary<ObjectFile>(std::move(DebugObj), std::move(Buffer)); in createELFDebugObject()