aboutsummaryrefslogtreecommitdiff
path: root/tools/llvm-mca
diff options
context:
space:
mode:
authorMatt Davis <Matthew.Davis@sony.com>2018-07-12 22:59:53 +0000
committerMatt Davis <Matthew.Davis@sony.com>2018-07-12 22:59:53 +0000
commit5c43c4ce5f126cfea39bec1d7ce42612340cdf49 (patch)
tree6dc4226b20c86c8f5237605e9a1245869228ca6b /tools/llvm-mca
parentb9bc17351ee1bcf34b1c63555f3c262bcbb0e7ce (diff)
[llvm-mca] Add cycleBegin/cycleEnd callbacks to mca::Stage.
Summary: This patch clears up some of the semantics within the Stage class. Now, preExecute can be called multiple times per simulated cycle. Previously preExecute was only called once per cycle, and postExecute could have been called multiple times. Now, cycleStart/cycleEnd are called only once per simulated cycle. preExecute/postExecute can be called multiple times per cycle. This occurs because multiple execution events can occur during a single cycle. When stages are executed (Pipeline::runCycle), the postExecute hook will be called only if all Stages return a success from their 'execute' callback. Reviewers: andreadb, courbet, RKSimon Reviewed By: andreadb Subscribers: tschuett, gbedwell, llvm-commits Differential Revision: https://reviews.llvm.org/D49250 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@336959 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-mca')
-rw-r--r--tools/llvm-mca/DispatchStage.cpp2
-rw-r--r--tools/llvm-mca/DispatchStage.h2
-rw-r--r--tools/llvm-mca/ExecuteStage.cpp2
-rw-r--r--tools/llvm-mca/ExecuteStage.h2
-rw-r--r--tools/llvm-mca/FetchStage.cpp7
-rw-r--r--tools/llvm-mca/FetchStage.h1
-rw-r--r--tools/llvm-mca/Pipeline.cpp16
-rw-r--r--tools/llvm-mca/Pipeline.h1
-rw-r--r--tools/llvm-mca/RetireStage.cpp2
-rw-r--r--tools/llvm-mca/RetireStage.h2
-rw-r--r--tools/llvm-mca/Stage.h16
11 files changed, 40 insertions, 13 deletions
diff --git a/tools/llvm-mca/DispatchStage.cpp b/tools/llvm-mca/DispatchStage.cpp
index 99cf8e077d1..ad10fbe73e8 100644
--- a/tools/llvm-mca/DispatchStage.cpp
+++ b/tools/llvm-mca/DispatchStage.cpp
@@ -129,7 +129,7 @@ void DispatchStage::dispatch(InstRef IR) {
notifyInstructionDispatched(IR, RegisterFiles);
}
-void DispatchStage::preExecute(const InstRef &IR) {
+void DispatchStage::cycleStart() {
AvailableEntries = CarryOver >= DispatchWidth ? 0 : DispatchWidth - CarryOver;
CarryOver = CarryOver >= DispatchWidth ? CarryOver - DispatchWidth : 0U;
}
diff --git a/tools/llvm-mca/DispatchStage.h b/tools/llvm-mca/DispatchStage.h
index 65ac2bc7314..f21789a29c5 100644
--- a/tools/llvm-mca/DispatchStage.h
+++ b/tools/llvm-mca/DispatchStage.h
@@ -93,7 +93,7 @@ public:
// The retire stage, which controls the RCU, might have items to complete but
// RetireStage::hasWorkToComplete will check for that case.
virtual bool hasWorkToComplete() const override final { return false; }
- virtual void preExecute(const InstRef &IR) override final;
+ virtual void cycleStart() override final;
virtual bool execute(InstRef &IR) override final;
void notifyDispatchStall(const InstRef &IR, unsigned EventType);
diff --git a/tools/llvm-mca/ExecuteStage.cpp b/tools/llvm-mca/ExecuteStage.cpp
index f2e458dcabd..40957c26695 100644
--- a/tools/llvm-mca/ExecuteStage.cpp
+++ b/tools/llvm-mca/ExecuteStage.cpp
@@ -89,7 +89,7 @@ void ExecuteStage::issueReadyInstructions() {
// Notifications are issued to this stage's listeners when instructions are
// moved between the HWS's queues. In particular, when an instruction becomes
// ready or executed.
-void ExecuteStage::preExecute(const InstRef &Unused) {
+void ExecuteStage::cycleStart() {
reclaimSchedulerResources();
updateSchedulerQueues();
issueReadyInstructions();
diff --git a/tools/llvm-mca/ExecuteStage.h b/tools/llvm-mca/ExecuteStage.h
index 622fa0f983a..4914a9373e7 100644
--- a/tools/llvm-mca/ExecuteStage.h
+++ b/tools/llvm-mca/ExecuteStage.h
@@ -45,7 +45,7 @@ public:
// execute(), so it is never left in a 'to-be-processed' state.
virtual bool hasWorkToComplete() const override final { return false; }
- virtual void preExecute(const InstRef &IR) override final;
+ virtual void cycleStart() override final;
virtual bool execute(InstRef &IR) override final;
void
diff --git a/tools/llvm-mca/FetchStage.cpp b/tools/llvm-mca/FetchStage.cpp
index 4ea1c6b0fe3..654f1778f85 100644
--- a/tools/llvm-mca/FetchStage.cpp
+++ b/tools/llvm-mca/FetchStage.cpp
@@ -29,15 +29,18 @@ bool FetchStage::execute(InstRef &IR) {
return true;
}
-void FetchStage::postExecute(const InstRef &IR) {
+void FetchStage::postExecute(const InstRef &IR) { SM.updateNext(); }
+
+void FetchStage::cycleEnd() {
// Find the first instruction which hasn't been retired.
const InstMap::iterator It =
llvm::find_if(Instructions, [](const InstMap::value_type &KeyValuePair) {
return !KeyValuePair.second->isRetired();
});
+
+ // Erase instructions up to the first that hasn't been retired.
if (It != Instructions.begin())
Instructions.erase(Instructions.begin(), It);
- SM.updateNext();
}
} // namespace mca
diff --git a/tools/llvm-mca/FetchStage.h b/tools/llvm-mca/FetchStage.h
index 4c70b7f2bc6..c824b3221e5 100644
--- a/tools/llvm-mca/FetchStage.h
+++ b/tools/llvm-mca/FetchStage.h
@@ -37,6 +37,7 @@ public:
bool hasWorkToComplete() const override final;
bool execute(InstRef &IR) override final;
void postExecute(const InstRef &IR) override final;
+ void cycleEnd() override final;
};
} // namespace mca
diff --git a/tools/llvm-mca/Pipeline.cpp b/tools/llvm-mca/Pipeline.cpp
index 716c43b7d02..ebaacb27a9f 100644
--- a/tools/llvm-mca/Pipeline.cpp
+++ b/tools/llvm-mca/Pipeline.cpp
@@ -47,6 +47,11 @@ bool Pipeline::executeStages(InstRef &IR) {
return true;
}
+void Pipeline::preExecuteStages(const InstRef &IR) {
+ for (const std::unique_ptr<Stage> &S : Stages)
+ S->preExecute(IR);
+}
+
void Pipeline::postExecuteStages(const InstRef &IR) {
for (const std::unique_ptr<Stage> &S : Stages)
S->postExecute(IR);
@@ -63,12 +68,19 @@ void Pipeline::runCycle(unsigned Cycle) {
// Update the stages before we do any processing for this cycle.
InstRef IR;
for (auto &S : Stages)
- S->preExecute(IR);
+ S->cycleStart();
// Continue executing this cycle until any stage claims it cannot make
// progress.
- while (executeStages(IR))
+ while (true) {
+ preExecuteStages(IR);
+ if (!executeStages(IR))
+ break;
postExecuteStages(IR);
+ }
+
+ for (auto &S : Stages)
+ S->cycleEnd();
notifyCycleEnd(Cycle);
}
diff --git a/tools/llvm-mca/Pipeline.h b/tools/llvm-mca/Pipeline.h
index 660c431a476..888d9c9d368 100644
--- a/tools/llvm-mca/Pipeline.h
+++ b/tools/llvm-mca/Pipeline.h
@@ -59,6 +59,7 @@ class Pipeline {
std::set<HWEventListener *> Listeners;
unsigned Cycles;
+ void preExecuteStages(const InstRef &IR);
bool executeStages(InstRef &IR);
void postExecuteStages(const InstRef &IR);
bool hasWorkToProcess();
diff --git a/tools/llvm-mca/RetireStage.cpp b/tools/llvm-mca/RetireStage.cpp
index b4dcc286035..a708c982cd3 100644
--- a/tools/llvm-mca/RetireStage.cpp
+++ b/tools/llvm-mca/RetireStage.cpp
@@ -24,7 +24,7 @@ using namespace llvm;
namespace mca {
-void RetireStage::preExecute(const InstRef &IR) {
+void RetireStage::cycleStart() {
if (RCU.isEmpty())
return;
diff --git a/tools/llvm-mca/RetireStage.h b/tools/llvm-mca/RetireStage.h
index c91e7e2c218..8cf672d92c6 100644
--- a/tools/llvm-mca/RetireStage.h
+++ b/tools/llvm-mca/RetireStage.h
@@ -37,7 +37,7 @@ public:
virtual bool hasWorkToComplete() const override final {
return !RCU.isEmpty();
}
- virtual void preExecute(const InstRef &IR) override final;
+ virtual void cycleStart() override final;
virtual bool execute(InstRef &IR) override final { return true; }
void notifyInstructionRetired(const InstRef &IR);
void onInstructionExecuted(unsigned TokenID);
diff --git a/tools/llvm-mca/Stage.h b/tools/llvm-mca/Stage.h
index 80d4906ec9b..28216627634 100644
--- a/tools/llvm-mca/Stage.h
+++ b/tools/llvm-mca/Stage.h
@@ -41,15 +41,25 @@ public:
/// retire.
virtual bool hasWorkToComplete() const = 0;
- /// Called as a setup phase to prepare for the main stage execution.
+ /// Called once at the start of each cycle. This can be used as a setup
+ /// phase to prepare for the executions during the cycle.
+ virtual void cycleStart() {}
+
+ /// Called once at the end of each cycle.
+ virtual void cycleEnd() {}
+
+ /// Called prior to executing the list of stages.
+ /// This can be called multiple times per cycle.
virtual void preExecute(const InstRef &IR) {}
- /// Called as a cleanup and finalization phase after main stage execution.
+ /// Called as a cleanup and finalization phase after each execution.
+ /// This will only be called if all stages return a success from their
+ /// execute callback. This can be called multiple times per cycle.
virtual void postExecute(const InstRef &IR) {}
/// The primary action that this stage performs.
/// Returning false prevents successor stages from having their 'execute'
- /// routine called.
+ /// routine called. This can be called multiple times during a single cycle.
virtual bool execute(InstRef &IR) = 0;
/// Add a listener to receive callbacks during the execution of this stage.