diff options
author | Korey Sewell <ksewell@umich.edu> | 2006-02-14 22:43:26 -0500 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2006-02-14 22:43:26 -0500 |
commit | aee1bf58734c2146eb048dc4833881886ce68cf8 (patch) | |
tree | 8cee41171ac3cd4d95f5c4a258a9bdd31428c0c2 /arch/mips/isa/operands.isa | |
parent | 7826fcd09dfb265adae82f99d09944fe67f0fb5a (diff) | |
parent | 23bbec6a3445b4382f8c6ff8ea49fd818f960330 (diff) | |
download | gem5-aee1bf58734c2146eb048dc4833881886ce68cf8.tar.xz |
Merge zizzer:/bk/multiarch
into zazzer.eecs.umich.edu:/z/ksewell/research/m5-sim/m5-multiarch
--HG--
extra : convert_revision : 5b0a3dd1a52ca9b29ea4a1c505a7435bfd6110fe
Diffstat (limited to 'arch/mips/isa/operands.isa')
-rw-r--r-- | arch/mips/isa/operands.isa | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/isa/operands.isa b/arch/mips/isa/operands.isa index c8e08a436..cf6f10e0b 100644 --- a/arch/mips/isa/operands.isa +++ b/arch/mips/isa/operands.isa @@ -5,8 +5,8 @@ def operand_types {{ 'uhw' : ('unsigned int', 16), 'sw' : ('signed int', 32), 'uw' : ('unsigned int', 32), - 'sdw' : ('signed int', 64), - 'udw' : ('unsigned int', 64), + 'sd' : ('signed int', 64), + 'ud' : ('unsigned int', 64), 'sf' : ('float', 32), 'df' : ('float', 64), 'qf' : ('float', 128) @@ -24,7 +24,7 @@ def operands {{ 'Fs': ('FloatReg', 'sf', 'FS', 'IsFloating', 2), 'Ft': ('FloatReg', 'sf', 'FT', 'IsFloating', 3), - 'Mem': ('Mem', 'udw', None, ('IsMemRef', 'IsLoad', 'IsStore'), 4) + 'Mem': ('Mem', 'ud', None, ('IsMemRef', 'IsLoad', 'IsStore'), 4) #'NPC': ('NPC', 'uq', None, ( None, None, 'IsControl' ), 4), #'Runiq': ('ControlReg', 'uq', 'Uniq', None, 1), |