Searched refs:HWInstructionEvent (Results 1 – 19 of 19) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/ |
D | HWEventListener.h | 27 class HWInstructionEvent { 51 HWInstructionEvent(unsigned type, const InstRef &Inst) in HWInstructionEvent() function 61 class HWInstructionIssuedEvent : public HWInstructionEvent { 66 : HWInstructionEvent(HWInstructionEvent::Issued, IR), UsedResources(UR) {} in HWInstructionIssuedEvent() 71 class HWInstructionDispatchedEvent : public HWInstructionEvent { 74 : HWInstructionEvent(HWInstructionEvent::Dispatched, IR), in HWInstructionDispatchedEvent() 81 class HWInstructionRetiredEvent : public HWInstructionEvent { 84 : HWInstructionEvent(HWInstructionEvent::Retired, IR), in HWInstructionRetiredEvent() 123 virtual void onEvent(const HWInstructionEvent &Event) {} in onEvent()
|
D | ExecuteStage.cpp | 157 notifyEvent<HWInstructionEvent>( in notifyInstructionExecuted() 158 HWInstructionEvent(HWInstructionEvent::Executed, IR)); in notifyInstructionExecuted() 164 notifyEvent<HWInstructionEvent>( in notifyInstructionReady() 165 HWInstructionEvent(HWInstructionEvent::Ready, IR)); in notifyInstructionReady() 185 notifyEvent<HWInstructionEvent>(HWInstructionIssuedEvent(IR, Used)); in notifyInstructionIssued()
|
D | TimelineView.cpp | 37 void TimelineView::onEvent(const HWInstructionEvent &Event) { in onEvent() 42 case HWInstructionEvent::Retired: { in onEvent() 58 case HWInstructionEvent::Ready: in onEvent() 61 case HWInstructionEvent::Issued: in onEvent() 64 case HWInstructionEvent::Executed: in onEvent() 67 case HWInstructionEvent::Dispatched: in onEvent()
|
D | RegisterFileStatistics.cpp | 42 void RegisterFileStatistics::onEvent(const HWInstructionEvent &Event) { in onEvent() 46 case HWInstructionEvent::Retired: { in onEvent() 52 case HWInstructionEvent::Dispatched: { in onEvent()
|
D | RetireControlUnitStatistics.cpp | 22 void RetireControlUnitStatistics::onEvent(const HWInstructionEvent &Event) { in onEvent() 23 if (Event.Type == HWInstructionEvent::Retired) in onEvent()
|
D | DispatchStatistics.cpp | 28 void DispatchStatistics::onEvent(const HWInstructionEvent &Event) { in onEvent() 29 if (Event.Type == HWInstructionEvent::Dispatched) in onEvent()
|
D | SummaryView.cpp | 35 void SummaryView::onEvent(const HWInstructionEvent &Event) { in onEvent() 38 if (Event.Type != HWInstructionEvent::Dispatched) in onEvent()
|
D | SchedulerStatistics.cpp | 22 void SchedulerStatistics::onEvent(const HWInstructionEvent &Event) { in onEvent() 23 if (Event.Type == HWInstructionEvent::Issued) in onEvent()
|
D | ResourcePressureView.cpp | 43 void ResourcePressureView::onEvent(const HWInstructionEvent &Event) { in onEvent() 45 if (Event.Type != HWInstructionEvent::Issued) in onEvent()
|
D | RegisterFileStatistics.h | 61 void onEvent(const HWInstructionEvent &Event) override;
|
D | RetireControlUnitStatistics.h | 50 void onEvent(const HWInstructionEvent &Event) override;
|
D | SummaryView.h | 70 void onEvent(const HWInstructionEvent &Event) override;
|
D | Pipeline.h | 26 class HWInstructionEvent; variable
|
D | DispatchStatistics.h | 71 void onEvent(const HWInstructionEvent &Event) override;
|
D | RetireStage.cpp | 54 notifyEvent<HWInstructionEvent>(HWInstructionRetiredEvent(IR, FreedRegs)); in notifyInstructionRetired()
|
D | ResourcePressureView.h | 99 void onEvent(const HWInstructionEvent &Event) override;
|
D | SchedulerStatistics.h | 70 void onEvent(const HWInstructionEvent &Event) override;
|
D | TimelineView.h | 177 void onEvent(const HWInstructionEvent &Event) override;
|
D | DispatchStage.cpp | 33 notifyEvent<HWInstructionEvent>(HWInstructionDispatchedEvent(IR, UsedRegs)); in notifyInstructionDispatched()
|