Home
last modified time | relevance | path

Searched refs:FetchStage (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
DFetchStage.h26 class FetchStage : public Stage {
33 FetchStage(InstrBuilder &IB, SourceMgr &SM) : IB(IB), SM(SM) {} in FetchStage() function
34 FetchStage(const FetchStage &Other) = delete;
35 FetchStage &operator=(const FetchStage &Other) = delete;
DFetchStage.cpp20 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()
DCMakeLists.txt18 FetchStage.cpp
DContext.cpp44 auto F = llvm::make_unique<FetchStage>(IB, SrcMgr); in createDefaultPipeline()
Dllvm-mca.cpp495 P->appendStage(llvm::make_unique<mca::FetchStage>(IB, S)); in main()