diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2010-06-02 12:58:00 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2010-06-02 12:58:00 -0500 |
commit | 330d9d4dbc8f57479f5db7ead66af5652f853145 (patch) | |
tree | a3a9558308a355bcd76b84579022235b583d064d | |
parent | a59d219989ec048c16b5bcb14272b1eb09a1cde7 (diff) | |
download | gem5-330d9d4dbc8f57479f5db7ead66af5652f853145.tar.xz |
ARM: Add a bitfield for setting the regular, inst bits of an ExtMachInst.
-rw-r--r-- | src/arch/arm/types.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/arch/arm/types.hh b/src/arch/arm/types.hh index 456d65ce0..adc90ba5d 100644 --- a/src/arch/arm/types.hh +++ b/src/arch/arm/types.hh @@ -59,6 +59,8 @@ namespace ArmISA Bitfield<33> sevenAndFour; Bitfield<32> isMisc; + uint32_t instBits; + // All the different types of opcode fields. Bitfield<27, 25> encoding; Bitfield<25> useImm; |