|
gem5
v21.0.1.0
|
Go to the source code of this file.
Functions | |
| TEST (BitfieldTest, Mask0Bits) | |
| TEST (BitfieldTest, Mask1Bit) | |
| TEST (BitfieldTest, Mask8Bits) | |
| TEST (BitfieldTest, Mask16Bits) | |
| TEST (BitfieldTest, Mask32Bits) | |
| TEST (BitfieldTest, MaskAllBits) | |
| TEST (BitfieldTest, MaskAllBitsGreaterThan64) | |
| TEST (BitfieldTest, MaskOneBit) | |
| TEST (BitfieldTest, MaskTwoBits) | |
| TEST (BitfieldTest, MaskThreeBits) | |
| TEST (BitfieldTest, MaskEntireRange) | |
| TEST (BitfieldTest, MaskOutsideOfRange) | |
| TEST (BitfieldTest, ExtractOneBit) | |
| TEST (BitfieldTest, Extract63rdBit) | |
| TEST (BitfieldTest, ExtractFirstBit) | |
| TEST (BitfieldTest, ExtractFirstBitFirstBitZero) | |
| TEST (BitfieldTest, ExtractThreeBits) | |
| TEST (BitfieldTest, MbitsStandardCase) | |
| TEST (BitfieldTest, MbitsEntireRange) | |
| TEST (BitfieldTest, SignExtendPositiveInput) | |
| TEST (BitfieldTest, SignExtendNegativeInput) | |
| TEST (BitfieldTest, SignExtendPositiveInputOutsideRange) | |
| TEST (BitfieldTest, SignExtendNegativeInputOutsideRange) | |
| TEST (BitfieldTest, InsertOneBitTo3) | |
| TEST (BitfieldTest, InsertOneBitTo18) | |
| TEST (BitfieldTest, InsertOneBitTo3LsbZero) | |
| TEST (BitfieldTest, InsertOneBitTo18LsbZero) | |
| TEST (BitfieldTest, InsertOnBitTo8LsbZero) | |
| TEST (BitfieldTest, InsertMultipleBits) | |
| TEST (BitfieldTest, InsertMultipleBitsOverwrite) | |
| TEST (BitfieldTest, ReverseBits8Bit) | |
| TEST (BitfieldTest, ReverseBits64Bit) | |
| TEST (BitfieldTest, FindMsb29) | |
| TEST (BitfieldTest, FindMsb63) | |
| TEST (BitfieldTest, FindMsbZero) | |
| TEST (BitfieldTest, FindLsb) | |
| TEST (BitfieldTest, FindLsbZero) | |
| TEST (BitfieldTest, PopCountNoBits) | |
| TEST (BitfieldTest, PopCountOneBit) | |
| TEST (BitfieldTest, PopCountManyBits) | |
| TEST (BitfieldTest, PopCountAllOnes) | |
| TEST (BitfieldTest, AlignToPowerOfTwo0) | |
| TEST (BitfieldTest, AlignToPowerOfTwo3) | |
| TEST (BitfieldTest, AlignToPowerOfTwo5) | |
| TEST (BitfieldTest, AlignToPowerOfTwo10) | |
| TEST (BitfieldTest, AlignToPowerOfTwo16) | |
| TEST (BitfieldTest, AlignToPowerOfTwo31) | |
| TEST (BitfieldTest, CountTrailingZeros32BitsNoTrailing) | |
| TEST (BitfieldTest, CountTrailingZeros32Bits) | |
| TEST (BitfieldTest, CountTrailingZeros64BitsNoTrailing) | |
| TEST (BitfieldTest, CountTrailingZeros64Bits) | |
| TEST (BitfieldTest, CountTrailingZero64AllZeros) | |
| TEST | ( | BitfieldTest | , |
| AlignToPowerOfTwo0 | |||
| ) |
Definition at line 325 of file bitfield.test.cc.
References alignToPowerOfTwo().
| TEST | ( | BitfieldTest | , |
| AlignToPowerOfTwo10 | |||
| ) |
Definition at line 340 of file bitfield.test.cc.
References alignToPowerOfTwo().
| TEST | ( | BitfieldTest | , |
| AlignToPowerOfTwo16 | |||
| ) |
Definition at line 345 of file bitfield.test.cc.
References alignToPowerOfTwo().
| TEST | ( | BitfieldTest | , |
| AlignToPowerOfTwo3 | |||
| ) |
Definition at line 330 of file bitfield.test.cc.
References alignToPowerOfTwo().
| TEST | ( | BitfieldTest | , |
| AlignToPowerOfTwo31 | |||
| ) |
Definition at line 350 of file bitfield.test.cc.
References alignToPowerOfTwo().
| TEST | ( | BitfieldTest | , |
| AlignToPowerOfTwo5 | |||
| ) |
Definition at line 335 of file bitfield.test.cc.
References alignToPowerOfTwo().
| TEST | ( | BitfieldTest | , |
| CountTrailingZero64AllZeros | |||
| ) |
Definition at line 385 of file bitfield.test.cc.
References ctz64().
| TEST | ( | BitfieldTest | , |
| CountTrailingZeros32Bits | |||
| ) |
Definition at line 367 of file bitfield.test.cc.
References ctz32().
| TEST | ( | BitfieldTest | , |
| CountTrailingZeros32BitsNoTrailing | |||
| ) |
Definition at line 361 of file bitfield.test.cc.
References ctz32().
| TEST | ( | BitfieldTest | , |
| CountTrailingZeros64Bits | |||
| ) |
Definition at line 379 of file bitfield.test.cc.
| TEST | ( | BitfieldTest | , |
| CountTrailingZeros64BitsNoTrailing | |||
| ) |
Definition at line 373 of file bitfield.test.cc.
References ctz64().
| TEST | ( | BitfieldTest | , |
| Extract63rdBit | |||
| ) |
Definition at line 124 of file bitfield.test.cc.
References bits(), ULL, and RiscvISA::x.
| TEST | ( | BitfieldTest | , |
| ExtractFirstBit | |||
| ) |
Definition at line 130 of file bitfield.test.cc.
References bits(), and RiscvISA::x.
| TEST | ( | BitfieldTest | , |
| ExtractFirstBitFirstBitZero | |||
| ) |
Definition at line 136 of file bitfield.test.cc.
References bits(), and RiscvISA::x.
| TEST | ( | BitfieldTest | , |
| ExtractOneBit | |||
| ) |
Definition at line 118 of file bitfield.test.cc.
References bits(), and RiscvISA::x.
| TEST | ( | BitfieldTest | , |
| ExtractThreeBits | |||
| ) |
Definition at line 142 of file bitfield.test.cc.
References bits(), and RiscvISA::x.
| TEST | ( | BitfieldTest | , |
| FindLsb | |||
| ) |
Definition at line 282 of file bitfield.test.cc.
References findLsbSet(), ULL, and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| FindLsbZero | |||
| ) |
Definition at line 288 of file bitfield.test.cc.
References findLsbSet().
| TEST | ( | BitfieldTest | , |
| FindMsb29 | |||
| ) |
Definition at line 264 of file bitfield.test.cc.
References findMsbSet(), and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| FindMsb63 | |||
| ) |
Definition at line 270 of file bitfield.test.cc.
References findMsbSet(), ULL, and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| FindMsbZero | |||
| ) |
Definition at line 277 of file bitfield.test.cc.
References findMsbSet().
| TEST | ( | BitfieldTest | , |
| InsertMultipleBits | |||
| ) |
Definition at line 234 of file bitfield.test.cc.
References bits(), insertBits(), ULL, and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| InsertMultipleBitsOverwrite | |||
| ) |
Definition at line 241 of file bitfield.test.cc.
References bits(), insertBits(), and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| InsertOnBitTo8LsbZero | |||
| ) |
Definition at line 227 of file bitfield.test.cc.
References bits(), insertBits(), and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| InsertOneBitTo18 | |||
| ) |
Definition at line 206 of file bitfield.test.cc.
References bits(), insertBits(), and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| InsertOneBitTo18LsbZero | |||
| ) |
Definition at line 220 of file bitfield.test.cc.
References bits(), insertBits(), and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| InsertOneBitTo3 | |||
| ) |
Definition at line 199 of file bitfield.test.cc.
References bits(), insertBits(), and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| InsertOneBitTo3LsbZero | |||
| ) |
Definition at line 213 of file bitfield.test.cc.
References bits(), insertBits(), and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| Mask0Bits | |||
| ) |
Definition at line 46 of file bitfield.test.cc.
References ArmISA::mask.
| TEST | ( | BitfieldTest | , |
| Mask16Bits | |||
| ) |
Definition at line 61 of file bitfield.test.cc.
References ArmISA::mask.
| TEST | ( | BitfieldTest | , |
| Mask1Bit | |||
| ) |
Definition at line 51 of file bitfield.test.cc.
References ArmISA::mask.
| TEST | ( | BitfieldTest | , |
| Mask32Bits | |||
| ) |
Definition at line 66 of file bitfield.test.cc.
References ArmISA::mask.
| TEST | ( | BitfieldTest | , |
| Mask8Bits | |||
| ) |
Definition at line 56 of file bitfield.test.cc.
References ArmISA::mask.
| TEST | ( | BitfieldTest | , |
| MaskAllBits | |||
| ) |
Definition at line 71 of file bitfield.test.cc.
References ArmISA::mask.
| TEST | ( | BitfieldTest | , |
| MaskAllBitsGreaterThan64 | |||
| ) |
Definition at line 76 of file bitfield.test.cc.
References ArmISA::mask.
| TEST | ( | BitfieldTest | , |
| MaskEntireRange | |||
| ) |
Definition at line 103 of file bitfield.test.cc.
References ArmISA::mask.
| TEST | ( | BitfieldTest | , |
| MaskOneBit | |||
| ) |
Definition at line 88 of file bitfield.test.cc.
References ArmISA::mask.
| TEST | ( | BitfieldTest | , |
| MaskOutsideOfRange | |||
| ) |
Definition at line 108 of file bitfield.test.cc.
References ArmISA::mask.
| TEST | ( | BitfieldTest | , |
| MaskThreeBits | |||
| ) |
Definition at line 98 of file bitfield.test.cc.
References ArmISA::mask.
| TEST | ( | BitfieldTest | , |
| MaskTwoBits | |||
| ) |
Definition at line 93 of file bitfield.test.cc.
References ArmISA::mask.
| TEST | ( | BitfieldTest | , |
| MbitsEntireRange | |||
| ) |
Definition at line 159 of file bitfield.test.cc.
References mbits(), ULL, and RiscvISA::x.
| TEST | ( | BitfieldTest | , |
| MbitsStandardCase | |||
| ) |
Definition at line 153 of file bitfield.test.cc.
References mbits(), and RiscvISA::x.
| TEST | ( | BitfieldTest | , |
| PopCountAllOnes | |||
| ) |
Definition at line 314 of file bitfield.test.cc.
References popCount(), and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| PopCountManyBits | |||
| ) |
Definition at line 308 of file bitfield.test.cc.
References popCount(), and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| PopCountNoBits | |||
| ) |
Definition at line 297 of file bitfield.test.cc.
References popCount().
| TEST | ( | BitfieldTest | , |
| PopCountOneBit | |||
| ) |
Definition at line 302 of file bitfield.test.cc.
References popCount(), and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| ReverseBits64Bit | |||
| ) |
Definition at line 255 of file bitfield.test.cc.
References reverseBits().
| TEST | ( | BitfieldTest | , |
| ReverseBits8Bit | |||
| ) |
Definition at line 249 of file bitfield.test.cc.
References reverseBits().
| TEST | ( | BitfieldTest | , |
| SignExtendNegativeInput | |||
| ) |
Definition at line 176 of file bitfield.test.cc.
References output(), and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| SignExtendNegativeInputOutsideRange | |||
| ) |
Definition at line 188 of file bitfield.test.cc.
References output(), and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| SignExtendPositiveInput | |||
| ) |
Definition at line 169 of file bitfield.test.cc.
References output(), and X86ISA::val.
| TEST | ( | BitfieldTest | , |
| SignExtendPositiveInputOutsideRange | |||
| ) |
Definition at line 183 of file bitfield.test.cc.