summaryrefslogtreecommitdiff
path: root/src/arch/mips/isa/operands.isa
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2010-12-08 10:45:14 -0800
committerGabe Black <gblack@eecs.umich.edu>2010-12-08 10:45:14 -0800
commitf26051eb1a5b8f3522acbb871133de66278fd517 (patch)
tree14b927d6d61bc4f2a36fccead9b0da13f2a7fb34 /src/arch/mips/isa/operands.isa
parent7f3f90f71d6993f8a712294e40fe8723bc3d7dbc (diff)
downloadgem5-f26051eb1a5b8f3522acbb871133de66278fd517.tar.xz
MIPS: Take advantage of new PCState syntax.
Diffstat (limited to 'src/arch/mips/isa/operands.isa')
-rw-r--r--src/arch/mips/isa/operands.isa4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/arch/mips/isa/operands.isa b/src/arch/mips/isa/operands.isa
index 1bb5ae5b3..792c7e2fa 100644
--- a/src/arch/mips/isa/operands.isa
+++ b/src/arch/mips/isa/operands.isa
@@ -151,5 +151,7 @@ def operands {{
'Mem': ('Mem', 'uw', None, ('IsMemRef', 'IsLoad', 'IsStore'), 4),
#Program Counter Operands
- 'PCS': ('PCState', 'uw', None, (None, None, 'IsControl'), 4)
+ 'PC': ('PCState', 'uw', 'pc', (None, None, 'IsControl'), 4),
+ 'NPC': ('PCState', 'uw', 'npc', (None, None, 'IsControl'), 4),
+ 'NNPC': ('PCState', 'uw', 'nnpc', (None, None, 'IsControl'), 4)
}};