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

/gem5/src/arch/arm/insts/
H A Dvfp.cc230 val = bitsToFp(qnan, junk);
232 val = bitsToFp(fpToBits(op1) | qnan, junk);
237 val = bitsToFp(fpToBits(val) & bitMask, junk);
263 val = bitsToFp(qnan, junk);
265 val = bitsToFp(fpToBits(op1) | qnan, junk);
267 val = bitsToFp(fpToBits(op2) | qnan, junk);
276 val = bitsToFp(fpToBits(val) & bitMask, junk);
297 if ((single && (val == bitsToFp(0x00800000, junk) ||
298 val == bitsToFp(0x80800000, junk))) ||
299 (!single && (val == bitsToFp(UL
[all...]
H A Dvfp.hh111 static inline float bitsToFp(uint64_t, float);
112 static inline double bitsToFp(uint64_t, double);
123 op = bitsToFp(fpToBits(op) & bitMask, junk);
180 bitsToFp(uint64_t bits, float junk) function in namespace:ArmISA
192 bitsToFp(uint64_t bits, double junk) function in namespace:ArmISA
242 return bitsToFp((uint64_t)low | ((uint64_t)high << 32), junk);
603 result = bitsToFp(fpToBits(result) & ~bitMask, op1);
815 return bitsToFp((uint64_t)low | ((uint64_t)high << 32), junk);

Completed in 11 milliseconds