diff options
Diffstat (limited to 'cpu/static_inst.hh')
-rw-r--r-- | cpu/static_inst.hh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpu/static_inst.hh b/cpu/static_inst.hh index 20116554e..550609ed7 100644 --- a/cpu/static_inst.hh +++ b/cpu/static_inst.hh @@ -40,12 +40,17 @@ // forward declarations struct AlphaSimpleImpl; +struct OzoneImpl; +struct SimpleImpl; class ExecContext; class DynInst; template <class Impl> class AlphaDynInst; +template <class Impl> +class OzoneDynInst; + class FastCPU; class SimpleCPU; class InorderCPU; @@ -121,6 +126,7 @@ class StaticInstBase : public RefCounted IsWriteBarrier, ///< Is a write barrier IsNonSpeculative, ///< Should not be executed speculatively + IsQuiesce, NumFlags }; @@ -208,6 +214,7 @@ class StaticInstBase : public RefCounted bool isMemBarrier() const { return flags[IsMemBarrier]; } bool isWriteBarrier() const { return flags[IsWriteBarrier]; } bool isNonSpeculative() const { return flags[IsNonSpeculative]; } + bool isQuiesce() const { return flags[IsQuiesce]; } //@} /// Operation class. Used to select appropriate function unit in issue. |