Searched refs:FP64_EXP_BITS (Results 1 - 1 of 1) sorted by relevance

/gem5/src/arch/arm/insts/
H A Dfplib.cc73 #define FP64_EXP_BITS 11 macro
81 #define FP64_EXP_INF ((1ULL << FP64_EXP_BITS) - 1)
85 #define FP64_MANT_BITS (FP64_BITS - FP64_EXP_BITS - 1)
89 #define FP64_EXP(x) ((x) >> FP64_MANT_BITS & ((1ULL << FP64_EXP_BITS) - 1))
882 // The bottom FP64_EXP_BITS bits of mnt are orred together:
883 mnt = (4ULL << FP64_MANT_BITS | mnt >> (FP64_EXP_BITS - 1) |
884 ((mnt & ((1ULL << FP64_EXP_BITS) - 1)) != 0));
1384 return fp64_round(x_sgn, x_exp + FP64_EXP_BITS - 3, x_mnt << 1,
1489 x_exp = a_exp + b_exp - FP64_EXP_BIAS + 2 * FP64_EXP_BITS + 1;
1712 x_exp = a_exp + FP64_EXP_BITS;
[all...]

Completed in 15 milliseconds