1 //===---------------------- RetireStage.h -----------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 /// This file defines the retire stage of a default instruction pipeline.
11 /// The RetireStage represents the process logic that interacts with the
12 /// simulated RetireControlUnit hardware.
14 //===----------------------------------------------------------------------===//
16 #ifndef LLVM_MCA_RETIRE_STAGE_H
17 #define LLVM_MCA_RETIRE_STAGE_H
19 #include "llvm/MCA/HardwareUnits/LSUnit.h"
20 #include "llvm/MCA/HardwareUnits/RegisterFile.h"
21 #include "llvm/MCA/HardwareUnits/RetireControlUnit.h"
22 #include "llvm/MCA/Stages/Stage.h"
27 class RetireStage final
: public Stage
{
28 // Owner will go away when we move listeners/eventing to the stages.
29 RetireControlUnit
&RCU
;
33 RetireStage(const RetireStage
&Other
) = delete;
34 RetireStage
&operator=(const RetireStage
&Other
) = delete;
37 RetireStage(RetireControlUnit
&R
, RegisterFile
&F
, LSUnitBase
&LS
)
38 : Stage(), RCU(R
), PRF(F
), LSU(LS
) {}
40 bool hasWorkToComplete() const override
{ return !RCU
.isEmpty(); }
41 Error
cycleStart() override
;
42 Error
execute(InstRef
&IR
) override
;
43 void notifyInstructionRetired(const InstRef
&IR
) const;
49 #endif // LLVM_MCA_RETIRE_STAGE_H