Searched refs:FetchStage (Results 1 – 5 of 5) sorted by relevance
26 class FetchStage : public Stage {33 FetchStage(InstrBuilder &IB, SourceMgr &SM) : IB(IB), SM(SM) {} in FetchStage() function34 FetchStage(const FetchStage &Other) = delete;35 FetchStage &operator=(const FetchStage &Other) = delete;
20 bool FetchStage::hasWorkToComplete() const { return SM.hasNext(); } in hasWorkToComplete()22 bool FetchStage::execute(InstRef &IR) { in execute()32 void FetchStage::postExecute() { SM.updateNext(); } in postExecute()34 void FetchStage::cycleEnd() { in cycleEnd()
18 FetchStage.cpp
44 auto F = llvm::make_unique<FetchStage>(IB, SrcMgr); in createDefaultPipeline()
495 P->appendStage(llvm::make_unique<mca::FetchStage>(IB, S)); in main()