From: Gabe Black Date: Wed, 2 Jun 2010 17:58:00 +0000 (-0500) Subject: ARM: Add a bitfield for setting the regular, inst bits of an ExtMachInst. X-Git-Tag: stable_2012_02_02~1395 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=330d9d4dbc8f57479f5db7ead66af5652f853145;p=gem5.git ARM: Add a bitfield for setting the regular, inst bits of an ExtMachInst. --- 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;