summaryrefslogtreecommitdiff
path: root/src/arch/arm/insts/macromem.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/arm/insts/macromem.hh')
-rw-r--r--src/arch/arm/insts/macromem.hh20
1 files changed, 18 insertions, 2 deletions
diff --git a/src/arch/arm/insts/macromem.hh b/src/arch/arm/insts/macromem.hh
index 436a5b4a3..25d0ab734 100644
--- a/src/arch/arm/insts/macromem.hh
+++ b/src/arch/arm/insts/macromem.hh
@@ -60,10 +60,26 @@ number_of_ones(int32_t val)
return ones;
}
+class MicroOp : public PredOp
+{
+ protected:
+ MicroOp(const char *mnem, ExtMachInst machInst, OpClass __opClass)
+ : PredOp(mnem, machInst, __opClass)
+ {
+ }
+
+ public:
+ void
+ setDelayedCommit()
+ {
+ flags[IsDelayedCommit] = true;
+ }
+};
+
/**
* Microops of the form IntRegA = IntRegB op Imm
*/
-class MicroIntOp : public PredOp
+class MicroIntOp : public MicroOp
{
protected:
RegIndex ura, urb;
@@ -71,7 +87,7 @@ class MicroIntOp : public PredOp
MicroIntOp(const char *mnem, ExtMachInst machInst, OpClass __opClass,
RegIndex _ura, RegIndex _urb, uint8_t _imm)
- : PredOp(mnem, machInst, __opClass),
+ : MicroOp(mnem, machInst, __opClass),
ura(_ura), urb(_urb), imm(_imm)
{
}