Home
last modified time | relevance | path

Searched refs:onEvent (Results 1 – 18 of 18) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/
HDHWEventListener.h164 virtual void onEvent(const HWInstructionEvent &Event) {} in onEvent() function
165 virtual void onEvent(const HWStallEvent &Event) {} in onEvent() function
166 virtual void onEvent(const HWPressureEvent &Event) {} in onEvent() function
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/
HDDispatchStatistics.h69 void onEvent(const HWStallEvent &Event) override;
71 void onEvent(const HWInstructionEvent &Event) override;
HDDispatchStatistics.cpp21 void DispatchStatistics::onEvent(const HWStallEvent &Event) { in onEvent() function in llvm::mca::DispatchStatistics
26 void DispatchStatistics::onEvent(const HWInstructionEvent &Event) { in onEvent() function in llvm::mca::DispatchStatistics
HDBottleneckAnalysis.h329 void onEvent(const HWStallEvent &Event) override { SeenStallCycles = true; } in onEvent() function
330 void onEvent(const HWPressureEvent &Event) override;
331 void onEvent(const HWInstructionEvent &Event) override;
HDRetireControlUnitStatistics.h52 void onEvent(const HWInstructionEvent &Event) override;
HDRegisterFileStatistics.h74 void onEvent(const HWInstructionEvent &Event) override;
HDSummaryView.h73 void onEvent(const HWInstructionEvent &Event) override;
HDResourcePressureView.h94 void onEvent(const HWInstructionEvent &Event) override;
HDSchedulerStatistics.h76 void onEvent(const HWInstructionEvent &Event) override;
HDTimelineView.h174 void onEvent(const HWInstructionEvent &Event) override;
HDRetireControlUnitStatistics.cpp31 void RetireControlUnitStatistics::onEvent(const HWInstructionEvent &Event) { in onEvent() function in llvm::mca::RetireControlUnitStatistics
HDSummaryView.cpp40 void SummaryView::onEvent(const HWInstructionEvent &Event) { in onEvent() function in llvm::mca::SummaryView
HDRegisterFileStatistics.cpp77 void RegisterFileStatistics::onEvent(const HWInstructionEvent &Event) { in onEvent() function in llvm::mca::RegisterFileStatistics
HDSchedulerStatistics.cpp44 void SchedulerStatistics::onEvent(const HWInstructionEvent &Event) { in onEvent() function in llvm::mca::SchedulerStatistics
HDResourcePressureView.cpp44 void ResourcePressureView::onEvent(const HWInstructionEvent &Event) { in onEvent() function in llvm::mca::ResourcePressureView
HDBottleneckAnalysis.cpp497 void BottleneckAnalysis::onEvent(const HWInstructionEvent &Event) { in onEvent() function in llvm::mca::BottleneckAnalysis
548 void BottleneckAnalysis::onEvent(const HWPressureEvent &Event) { in onEvent() function in llvm::mca::BottleneckAnalysis
HDTimelineView.cpp59 void TimelineView::onEvent(const HWInstructionEvent &Event) { in onEvent() function in llvm::mca::TimelineView
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Stages/
HDStage.h81 Listener->onEvent(Event); in notifyEvent()