diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2007-06-23 13:26:30 -0700 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2007-06-23 13:26:30 -0700 |
commit | 245b0bd9b94bfaaa188b7e945f91c0e4a9909cbe (patch) | |
tree | 7ca0de263839f60d35cd6cf0ca8c17d94c375209 /src/base | |
parent | 57ff2604e59647c6afe988767186f13c80c1aa16 (diff) | |
parent | ac19e0c5050219cbb0579a319fa3fab5cf92835d (diff) | |
download | gem5-245b0bd9b94bfaaa188b7e945f91c0e4a9909cbe.tar.xz |
Merge vm1.(none):/home/stever/bk/newmem-head
into vm1.(none):/home/stever/bk/newmem-cache2
src/base/traceflags.py:
Hand merge.
--HG--
extra : convert_revision : 9e7539eeab4220ed7a7237457a8f336f79216924
Diffstat (limited to 'src/base')
-rw-r--r-- | src/base/bitfield.hh | 30 | ||||
-rw-r--r-- | src/base/traceflags.py | 1 |
2 files changed, 31 insertions, 0 deletions
diff --git a/src/base/bitfield.hh b/src/base/bitfield.hh index 518bad6b8..70a46386e 100644 --- a/src/base/bitfield.hh +++ b/src/base/bitfield.hh @@ -59,6 +59,17 @@ bits(T val, int first, int last) } /** + * Extract the bit from this position from 'val' and right justify it. + */ +template <class T> +inline +T +bits(T val, int bit) +{ + return bits(val, bit, bit); +} + +/** * Mask off the given bits in place like bits() but without shifting. * msb = 63, lsb = 0 */ @@ -102,6 +113,17 @@ insertBits(T val, int first, int last, B bit_val) } /** + * Overloaded for access to only one bit in value + */ +template <class T, class B> +inline +T +insertBits(T val, int bit, B bit_val) +{ + return insertBits(val, bit, bit, bit_val); +} + +/** * A convenience function to replace bits first to last of val with bit_val * in place. */ @@ -113,6 +135,14 @@ replaceBits(T& val, int first, int last, B bit_val) val = insertBits(val, first, last, bit_val); } +/** Overloaded function to allow to access only 1 bit*/ +template <class T, class B> +inline +void +replaceBits(T& val, int bit, B bit_val) +{ + val = insertBits(val, bit, bit, bit_val); +} /** * Returns the bit position of the MSB that is set in the input */ diff --git a/src/base/traceflags.py b/src/base/traceflags.py index f4cf7dfd7..70fadb210 100644 --- a/src/base/traceflags.py +++ b/src/base/traceflags.py @@ -129,6 +129,7 @@ baseFlags = [ 'MemDepUnit', 'MemoryAccess', 'MemTest', + 'MipsPRA', 'O3CPU', 'OzoneCPU', 'OzoneLSQ', |