Home
last modified time | relevance | path

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

/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/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/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()