diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-07-05 16:52:15 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-07-05 16:52:15 -0700 |
commit | 63a934d152024c093dc02cc94ad6b29607615af4 (patch) | |
tree | 796b6cd7a1c2cfa6d5a3c532409c4802df7ab755 /src/arch/power | |
parent | f16179eb213acdbf4d86a1a50a1facc56c9e660d (diff) | |
download | gem5-63a934d152024c093dc02cc94ad6b29607615af4.tar.xz |
ISA parser: Define operand types with a ctype directly.
Diffstat (limited to 'src/arch/power')
-rw-r--r-- | src/arch/power/isa/operands.isa | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/arch/power/isa/operands.isa b/src/arch/power/isa/operands.isa index 8e13a13d7..fa481825f 100644 --- a/src/arch/power/isa/operands.isa +++ b/src/arch/power/isa/operands.isa @@ -29,16 +29,16 @@ // Authors: Timothy M. Jones def operand_types {{ - 'sb' : ('signed int', 8), - 'ub' : ('unsigned int', 8), - 'sh' : ('signed int', 16), - 'uh' : ('unsigned int', 16), - 'sw' : ('signed int', 32), - 'uw' : ('unsigned int', 32), - 'sq' : ('signed int', 64), - 'uq' : ('unsigned int', 64), - 'sf' : ('float', 32), - 'df' : ('float', 64) + 'sb' : 'int8_t', + 'ub' : 'uint8_t', + 'sh' : 'int16_t', + 'uh' : 'uint16_t', + 'sw' : 'int32_t', + 'uw' : 'uint32_t', + 'sq' : 'int64_t', + 'uq' : 'uint64_t', + 'sf' : 'float', + 'df' : 'double' }}; def operands {{ |