|
LLVM
4.0.0
|
JITEventListener - Abstract interface for use by the JIT to notify clients about significant events during compilation. More...
#include <JITEventListener.h>
Public Types | |
| typedef JITEvent_EmittedFunctionDetails | EmittedFunctionDetails |
Public Member Functions | |
| JITEventListener ()=default | |
| virtual | ~JITEventListener ()=default |
| virtual void | NotifyObjectEmitted (const object::ObjectFile &Obj, const RuntimeDyld::LoadedObjectInfo &L) |
| NotifyObjectEmitted - Called after an object has been successfully emitted to memory. More... | |
| virtual void | NotifyFreeingObject (const object::ObjectFile &Obj) |
| NotifyFreeingObject - Called just before the memory associated with a previously emitted object is released. More... | |
Static Public Member Functions | |
| static JITEventListener * | createGDBRegistrationListener () |
| static JITEventListener * | createIntelJITEventListener () |
| static JITEventListener * | createIntelJITEventListener (IntelJITEventsWrapper *AlternativeImpl) |
| static JITEventListener * | createOProfileJITEventListener () |
| static JITEventListener * | createOProfileJITEventListener (OProfileWrapper *AlternativeImpl) |
JITEventListener - Abstract interface for use by the JIT to notify clients about significant events during compilation.
For example, to notify profilers and debuggers that need to know where functions have been emitted.
The default implementation of each method does nothing.
Definition at line 58 of file JITEventListener.h.
Definition at line 60 of file JITEventListener.h.
|
default |
|
virtualdefault |
|
static |
Definition at line 233 of file GDBRegistrationListener.cpp.
|
inlinestatic |
Definition at line 92 of file JITEventListener.h.
|
inlinestatic |
Definition at line 94 of file JITEventListener.h.
|
inlinestatic |
Definition at line 108 of file JITEventListener.h.
|
inlinestatic |
Definition at line 110 of file JITEventListener.h.
|
inlinevirtual |
NotifyFreeingObject - Called just before the memory associated with a previously emitted object is released.
Definition at line 79 of file JITEventListener.h.
|
inlinevirtual |
NotifyObjectEmitted - Called after an object has been successfully emitted to memory.
NotifyFunctionEmitted will not be called for individual functions in the object.
ELF-specific information The ObjectImage contains the generated object image with section headers updated to reflect the address at which sections were loaded and with relocations performed in-place on debug sections.
Definition at line 74 of file JITEventListener.h.
1.8.6