Deleted Added
full compact
23,24c23
< class TargetMachine;
< class TargetJITInfo;
---
> class JITEvent_EmittedFunctionDetails;
26a26,27
> class TargetJITInfo;
> class TargetMachine;
54a56
> std::vector<JITEventListener*> EventListeners;
159a162,171
> virtual void RegisterJITEventListener(JITEventListener *L);
> virtual void UnregisterJITEventListener(JITEventListener *L);
> /// These functions correspond to the methods on JITEventListener. They
> /// iterate over the registered listeners and call the corresponding method on
> /// each.
> void NotifyFunctionEmitted(
> const Function &F, void *Code, size_t Size,
> const JITEvent_EmittedFunctionDetails &Details);
> void NotifyFreeingMachineCode(const Function &F, void *OldPtr);
>
162d173
< void registerMachineCodeInfo(MachineCodeInfo *MCI);