16#include "llvm/Config/config.h"
34#define DEBUG_TYPE "oprofile-jit-event-listener"
39 std::unique_ptr<OProfileWrapper>
Wrapper;
42 std::map<ObjectKey, OwningBinary<ObjectFile>> DebugObjects;
45 OProfileJITEventListener(std::unique_ptr<OProfileWrapper> LibraryWrapper)
46 :
Wrapper(std::move(LibraryWrapper)) {
50 ~OProfileJITEventListener();
58void OProfileJITEventListener::initialize() {
59 if (!
Wrapper->op_open_agent()) {
61 LLVM_DEBUG(
dbgs() <<
"Failed to connect to OProfile agent: " << err_str
68OProfileJITEventListener::~OProfileJITEventListener() {
69 if (
Wrapper->isAgentAvailable()) {
70 if (
Wrapper->op_close_agent() == -1) {
80void OProfileJITEventListener::notifyObjectLoaded(
83 if (!
Wrapper->isAgentAvailable()) {
109 LLVM_DEBUG(
dbgs() <<
"Failed to tell OProfile about native function "
110 <<
Name <<
" at [" << (
void *)
Addr <<
"-"
117 size_t num_entries = Lines.size();
118 struct debug_line_info *debug_line;
119 debug_line = (
struct debug_line_info *)calloc(
120 num_entries,
sizeof(
struct debug_line_info));
122 for (
auto& It : Lines) {
123 debug_line[i].vma = (
unsigned long)It.first;
124 debug_line[i].lineno = It.second.Line;
125 debug_line[i].filename =
126 const_cast<char *
>(Lines.front().second.FileName.c_str());
130 if (
Wrapper->op_write_debug_line_info((
void *)
Addr, num_entries,
132 LLVM_DEBUG(
dbgs() <<
"Failed to tell OProfiler about debug object at ["
139 DebugObjects[Key] = std::move(DebugObjOwner);
142void OProfileJITEventListener::notifyFreeingObject(ObjectKey Key) {
143 if (
Wrapper->isAgentAvailable()) {
147 if (DebugObjects.find(Key) == DebugObjects.end())
150 const ObjectFile &DebugObj = *DebugObjects[Key].getBinary();
165 <<
"Failed to tell OProfile about unload of native function at "
166 << (
void *)
Addr <<
"\n");
173 DebugObjects.erase(Key);
180 return new OProfileJITEventListener(std::make_unique<OProfileWrapper>());
amdgpu aa AMDGPU Address space based Alias Analysis Wrapper
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static void initialize(TargetLibraryInfoImpl &TLI, const Triple &T, ArrayRef< StringLiteral > StandardNames)
Initialize the set of available library functions based on the specified target triple.
static std::unique_ptr< DWARFContext > create(const object::ObjectFile &Obj, ProcessDebugRelocations RelocAction=ProcessDebugRelocations::Process, const LoadedObjectInfo *L=nullptr, std::string DWPName="", std::function< void(Error)> RecoverableErrorHandler=WithColor::defaultErrorHandler, std::function< void(Error)> WarningHandler=WithColor::defaultWarningHandler, bool ThreadSafe=false)
Tagged union holding either a T or a Error.
JITEventListener - Abstract interface for use by the JIT to notify clients about significant events d...
virtual void notifyFreeingObject(ObjectKey K)
notifyFreeingObject - Called just before the memory associated with a previously emitted object is re...
virtual void notifyObjectLoaded(ObjectKey K, const object::ObjectFile &Obj, const RuntimeDyld::LoadedObjectInfo &L)
notifyObjectLoaded - Called after an object has had its sections allocated and addresses assigned to ...
static JITEventListener * createOProfileJITEventListener()
Information about the loaded object.
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
This class is the base class for all object file types.
This is a value type class that represents a single symbol in the list of symbols in the object file.
virtual basic_symbol_iterator symbol_begin() const =0
virtual basic_symbol_iterator symbol_end() const =0
LLVMJITEventListenerRef LLVMCreateOProfileJITEventListener(void)
struct LLVMOpaqueJITEventListener * LLVMJITEventListenerRef
std::vector< std::pair< SymbolRef, uint64_t > > computeSymbolSizes(const ObjectFile &O)
std::string StrError()
Returns a string representation of the errno value, using whatever thread-safe variant of strerror() ...
This is an optimization pass for GlobalISel generic memory operations.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVMAttributeRef wrap(Attribute Attr)