Lines Matching full:pipeline
1 //===--------------------- Pipeline.cpp -------------------------*- C++ -*-===//
11 /// pipeline of a hardware backend.
15 #include "llvm/MCA/Pipeline.h"
24 void Pipeline::addEventListener(HWEventListener *Listener) { in addEventListener()
31 bool Pipeline::hasWorkToProcess() { in hasWorkToProcess()
37 Expected<unsigned> Pipeline::run() { in run()
38 assert(!Stages.empty() && "Unexpected empty pipeline found!"); in run()
52 Error Pipeline::runCycle() { in runCycle()
86 void Pipeline::appendStage(std::unique_ptr<Stage> S) { in appendStage()
96 void Pipeline::notifyCycleBegin() { in notifyCycleBegin()
102 void Pipeline::notifyCycleEnd() { in notifyCycleEnd()