gem5
v21.1.0.2
|
Go to the source code of this file.
Functions | |
TEST (FlagsTest, ConstructorZero) | |
Test default zero-initialized constructor. More... | |
TEST (FlagsTest, ConstructorSingle) | |
Test constructor with a single-bit initial value. More... | |
TEST (FlagsTest, ConstructorMulti) | |
Test constructor with an initial multi-bit value. More... | |
TEST (FlagsTest, TypeAssignment) | |
Test assignment of variable of underlying type. More... | |
TEST (FlagsTest, TypeAssignmentOverwrite) | |
Test assignment of variable of underlying type, overwriting an initial value. More... | |
TEST (FlagsTest, FlagsAssignment) | |
Test assignment of other Flags. More... | |
TEST (FlagsTest, FlagsAssignmentOverwrite) | |
Test assignment of other Flags, overwriting an initial value. More... | |
TEST (FlagsTest, IsSetValue) | |
Test isSet for multiple bits set. More... | |
TEST (FlagsTest, IsSetType) | |
Test isSet comparing against another flag. More... | |
TEST (FlagsTest, AllSetMatch) | |
Test allSet comparing against another flag. More... | |
TEST (FlagsTest, NoneSetMatch) | |
Test noneSet comparing against another flag. More... | |
TEST (FlagsTest, Clear) | |
Test if no bits are set after a full clear. More... | |
TEST (FlagsTest, ClearMatch) | |
Test clearing specific bits. More... | |
TEST (FlagsTest, SetOverlapping) | |
Test setting with a few overlapping bits. More... | |
TEST (FlagsTest, ConditionalSet) | |
Test conditional set. More... | |
TEST (FlagsTest, ReplaceOverlapping) | |
Test replacing a masked selection of bits. More... | |
TEST | ( | FlagsTest | , |
AllSetMatch | |||
) |
Test allSet comparing against another flag.
Definition at line 127 of file flags.test.cc.
References gem5::Flags< T >::allSet().
TEST | ( | FlagsTest | , |
Clear | |||
) |
Test if no bits are set after a full clear.
Definition at line 149 of file flags.test.cc.
References gem5::Flags< T >::clear().
TEST | ( | FlagsTest | , |
ClearMatch | |||
) |
Test clearing specific bits.
Definition at line 158 of file flags.test.cc.
References gem5::Flags< T >::clear(), and gem5::Flags< T >::isSet().
TEST | ( | FlagsTest | , |
ConditionalSet | |||
) |
Test conditional set.
If true the selected bits are set; otherwise, they are cleared.
Definition at line 182 of file flags.test.cc.
References gem5::Flags< T >::set().
TEST | ( | FlagsTest | , |
ConstructorMulti | |||
) |
Test constructor with an initial multi-bit value.
Definition at line 54 of file flags.test.cc.
TEST | ( | FlagsTest | , |
ConstructorSingle | |||
) |
Test constructor with a single-bit initial value.
Definition at line 46 of file flags.test.cc.
TEST | ( | FlagsTest | , |
ConstructorZero | |||
) |
Test default zero-initialized constructor.
Definition at line 39 of file flags.test.cc.
TEST | ( | FlagsTest | , |
FlagsAssignment | |||
) |
Test assignment of other Flags.
Definition at line 84 of file flags.test.cc.
TEST | ( | FlagsTest | , |
FlagsAssignmentOverwrite | |||
) |
Test assignment of other Flags, overwriting an initial value.
Definition at line 94 of file flags.test.cc.
TEST | ( | FlagsTest | , |
IsSetType | |||
) |
Test isSet comparing against another flag.
Definition at line 116 of file flags.test.cc.
References gem5::Flags< T >::isSet().
TEST | ( | FlagsTest | , |
IsSetValue | |||
) |
Test isSet for multiple bits set.
Definition at line 105 of file flags.test.cc.
References gem5::Flags< T >::isSet().
TEST | ( | FlagsTest | , |
NoneSetMatch | |||
) |
Test noneSet comparing against another flag.
Definition at line 137 of file flags.test.cc.
References gem5::Flags< T >::noneSet().
TEST | ( | FlagsTest | , |
ReplaceOverlapping | |||
) |
Test replacing a masked selection of bits.
This means that bits of the original value that match the mask will be replaced by the bits of the new value that match the mask.
Definition at line 201 of file flags.test.cc.
References gem5::mask(), and gem5::Flags< T >::replace().
TEST | ( | FlagsTest | , |
SetOverlapping | |||
) |
Test setting with a few overlapping bits.
Definition at line 169 of file flags.test.cc.
References gem5::Flags< T >::set().
TEST | ( | FlagsTest | , |
TypeAssignment | |||
) |
Test assignment of variable of underlying type.
Definition at line 62 of file flags.test.cc.
TEST | ( | FlagsTest | , |
TypeAssignmentOverwrite | |||
) |
Test assignment of variable of underlying type, overwriting an initial value.
Definition at line 74 of file flags.test.cc.