Searched refs:DebugObj (Results 1 – 5 of 5) sorted by relevance
/external/llvm/lib/ExecutionEngine/OProfileJIT/ |
D | OProfileJITEventListener.cpp | 85 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/ |
D | IntelJITEventListener.cpp | 101 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/ |
D | GDBRegistrationListener.cpp | 163 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/ |
D | llvm-rtdyld.cpp | 227 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/ |
D | RuntimeDyldELF.cpp | 157 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()
|