mips,cpu: Get rid of the IsERET StaticInst flag.

This is set by MIPS but doesn't have an accessor in StaticInst, and
isn't used by anything.

Change-Id: Ie28d2df134dcf264bca17c9c66dd32515a240492
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/33738
Maintainer: Gabe Black <gabeblack@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
This commit is contained in:
Gabe Black
2020-08-30 01:32:43 -07:00
parent 340a16ac1c
commit d64465c024
2 changed files with 2 additions and 3 deletions

View File

@@ -719,7 +719,7 @@ decode OPCODE_HI default Unknown::unknown() {
LLFlag = 0;
Status = status;
SRSCtl = srsCtl;
}}, IsReturn, IsSerializing, IsERET);
}}, IsReturn, IsSerializing);
0x1F: deret({{
DebugReg debug = Debug;
@@ -732,7 +732,7 @@ decode OPCODE_HI default Unknown::unknown() {
// Undefined;
}
Debug = debug;
}}, IsReturn, IsSerializing, IsERET);
}}, IsReturn, IsSerializing);
}
format CP0TLB {
0x01: tlbr({{

View File

@@ -85,7 +85,6 @@ class StaticInstFlags(Enum):
'IsMemBarrier', # Is a memory barrier
'IsWriteBarrier', # Is a write barrier
'IsReadBarrier', # Is a read barrier
'IsERET', # <- Causes the IFU to stall (MIPS ISA)
'IsNonSpeculative', # Should not be executed speculatively
'IsQuiesce', # Is a quiesce instruction