29 #ifndef __BASE_CONDCODE_HH__ 30 #define __BASE_CONDCODE_HH__ 81 int shift = width - 1;
82 return ((~(dest >> shift) & 1) +
83 ((src1 >> shift) & 1) +
84 ((src2 >> shift) & 1)) & 0x2;
93 int shift = width - 1;
94 return ((src1 ^ ~src2) & (src1 ^ dest)) & (1
ULL <<
shift);
117 dest ^= (dest >> 32);
118 dest ^= (dest >> 16);
132 return bits(dest, width - 1);
141 return !(dest &
mask(width));
144 #endif // __BASE_CONDCODE_HH__ static bool findCarry(int width, uint64_t dest, uint64_t src1, uint64_t src2)
Calculate the carry flag from an addition.
static bool findNegative(int width, uint64_t dest)
Calculate the negative flag.
#define ULL(N)
uint64_t constant
static bool findOverflow(int width, uint64_t dest, uint64_t src1, uint64_t src2)
Calculate the overflow flag from an addition.
static bool findParity(int width, uint64_t dest)
Calculate the parity of a value.
T bits(T val, int first, int last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it...
static bool findZero(int width, uint64_t dest)
Calculate the zero flag.