Go to the documentation of this file.
29 #ifndef __BASE_CONDCODE_HH__
30 #define __BASE_CONDCODE_HH__
87 return ((~(dest >>
shift) & 1) +
88 ((src1 >>
shift) & 1) +
89 ((src2 >>
shift) & 1)) & 0x2;
101 return ((src1 ^ ~src2) & (src1 ^ dest)) & (1ULL <<
shift);
126 dest ^= (dest >> 32);
127 dest ^= (dest >> 16);
159 #endif // __BASE_CONDCODE_HH__
constexpr uint64_t mask(unsigned nbits)
Generate a 64-bit mask of 'nbits' 1s, right justified.
static bool findOverflow(int width, uint64_t dest, uint64_t src1, uint64_t src2)
Calculate the overflow flag from an addition.
static bool findZero(int width, uint64_t dest)
Calculate the zero flag.
static bool findCarry(int width, uint64_t dest, uint64_t src1, uint64_t src2)
Calculate the carry flag from an addition.
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
static bool findParity(int width, uint64_t dest)
Calculate the parity of a value.
static bool findNegative(int width, uint64_t dest)
Calculate the negative flag.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Generated on Wed Jul 13 2022 10:39:13 for gem5 by doxygen 1.8.17