summaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorAndrew Bardsley <Andrew.Bardsley@arm.com>2014-05-09 18:58:47 -0400
committerAndrew Bardsley <Andrew.Bardsley@arm.com>2014-05-09 18:58:47 -0400
commitbf78299f04f0a99a72a4a2977777ee67877784cb (patch)
tree3383e056aaf54fd4707cab9b005556f2beeb58b8 /src/arch
parent8087d2622d4c7c55def5a0f2daec4be951f1929b (diff)
downloadgem5-bf78299f04f0a99a72a4a2977777ee67877784cb.tar.xz
cpu: Add flag name printing to StaticInst
This patch adds a the member function StaticInst::printFlags to allow all of an instruction's flags to be printed without using the individual is... member functions or resorting to exposing the 'flags' vector It also replaces the enum definition StaticInst::Flags with a Python-generated enumeration and adds to the enum generation mechanism in src/python/m5/params.py to allow Enums to be placed in namespaces other than Enums or, alternatively, in wrapper structs allowing them to be inherited by other classes (so populating that class's name-space with the enumeration element names).
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/insts/microop.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/insts/microop.hh b/src/arch/x86/insts/microop.hh
index e5248c9ce..1ebfdd33e 100644
--- a/src/arch/x86/insts/microop.hh
+++ b/src/arch/x86/insts/microop.hh
@@ -107,7 +107,7 @@ namespace X86ISA
// sized chunks, feed it those one at a time while oring them in.
for (int i = 0; i < Chunks; i++) {
unsigned shift = i * ChunkSize * 8;
- flags |= (std::bitset<NumFlags>(setFlags >> shift) << shift);
+ flags |= (std::bitset<Num_Flags>(setFlags >> shift) << shift);
}
}