//===-- OProfileJITEventListener.cpp - Tell OProfile about JITted code ----===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file defines a JITEventListener object that uses OProfileWrapper to tell // oprofile about JITted functions, including source line information. // //===----------------------------------------------------------------------===// #include "llvm/CodeGen/MachineFunction.h" #include "llvm/Config/config.h" #include "llvm/ExecutionEngine/JITEventListener.h" #include "llvm/ExecutionEngine/OProfileWrapper.h" #include "llvm/ExecutionEngine/RuntimeDyld.h" #include "llvm/IR/DebugInfo.h" #include "llvm/IR/Function.h" #include "llvm/Object/ObjectFile.h" #include "llvm/Object/SymbolSize.h" #include "llvm/Support/Debug.h" #include "llvm/Support/Errno.h" #include "llvm/Support/raw_ostream.h" #include #include using namespace llvm; using namespace llvm::object; #define DEBUG_TYPE "oprofile-jit-event-listener" namespace { class OProfileJITEventListener : public JITEventListener { std::unique_ptr Wrapper; void initialize(); std::map> DebugObjects; public: OProfileJITEventListener(std::unique_ptr LibraryWrapper) : Wrapper(std::move(LibraryWrapper)) { initialize(); } ~OProfileJITEventListener(); void NotifyObjectEmitted(const ObjectFile &Obj, const RuntimeDyld::LoadedObjectInfo &L) override; void NotifyFreeingObject(const ObjectFile &Obj) override; }; void OProfileJITEventListener::initialize() { if (!Wrapper->op_open_agent()) { const std::string err_str = sys::StrError(); DEBUG(dbgs() << "Failed to connect to OProfile agent: " << err_str << "\n"); } else { DEBUG(dbgs() << "Connected to OProfile agent.\n"); } } OProfileJITEventListener::~OProfileJITEventListener() { if (Wrapper->isAgentAvailable()) { if (Wrapper->op_close_agent() == -1) { const std::string err_str = sys::StrError(); DEBUG(dbgs() << "Failed to disconnect from OProfile agent: " << err_str << "\n"); } else { DEBUG(dbgs() << "Disconnected from OProfile agent.\n"); } } } void OProfileJITEventListener::NotifyObjectEmitted( const ObjectFile &Obj, const RuntimeDyld::LoadedObjectInfo &L) { if (!Wrapper->isAgentAvailable()) { return; } OwningBinary DebugObjOwner = L.getObjectForDebug(Obj); const ObjectFile &DebugObj = *DebugObjOwner.getBinary(); // Use symbol info to iterate functions in the object. for (const std::pair &P : computeSymbolSizes(DebugObj)) { SymbolRef Sym = P.first; if (!Sym.getType() || *Sym.getType() != SymbolRef::ST_Function) continue; Expected NameOrErr = Sym.getName(); if (!NameOrErr) continue; StringRef Name = *NameOrErr; Expected AddrOrErr = Sym.getAddress(); if (!AddrOrErr) continue; uint64_t Addr = *AddrOrErr; uint64_t Size = P.second; if (Wrapper->op_write_native_code(Name.data(), Addr, (void *)Addr, Size) == -1) { DEBUG(dbgs() << "Failed to tell OProfile about native function " << Name << " at [" << (void *)Addr << "-" << ((char *)Addr + Size) << "]\n"); continue; } // TODO: support line number info (similar to IntelJITEventListener.cpp) } DebugObjects[Obj.getData().data()] = std::move(DebugObjOwner); } void OProfileJITEventListener::NotifyFreeingObject(const ObjectFile &Obj) { if (Wrapper->isAgentAvailable()) { // If there was no agent registered when the original object was loaded then // we won't have created a debug object for it, so bail out. if (DebugObjects.find(Obj.getData().data()) == DebugObjects.end()) return; const ObjectFile &DebugObj = *DebugObjects[Obj.getData().data()].getBinary(); // Use symbol info to iterate functions in the object. for (symbol_iterator I = DebugObj.symbol_begin(), E = DebugObj.symbol_end(); I != E; ++I) { if (I->getType() && *I->getType() == SymbolRef::ST_Function) { Expected AddrOrErr = I->getAddress(); if (!AddrOrErr) continue; uint64_t Addr = *AddrOrErr; if (Wrapper->op_unload_native_code(Addr) == -1) { DEBUG(dbgs() << "Failed to tell OProfile about unload of native function at " << (void*)Addr << "\n"); continue; } } } } DebugObjects.erase(Obj.getData().data()); } } // anonymous namespace. namespace llvm { JITEventListener *JITEventListener::createOProfileJITEventListener() { return new OProfileJITEventListener(llvm::make_unique()); } } // namespace llvm