38 #ifndef __ARCH_ARM_INSTS_VFP_HH__ 39 #define __ARCH_ARM_INSTS_VFP_HH__ 64 flags[StaticInst::IsMicroop] =
true;
67 flags[StaticInst::IsMicroop] =
68 flags[StaticInst::IsFirstMicroop] =
true;
71 flags[StaticInst::IsMicroop] =
72 flags[StaticInst::IsLastMicroop] =
true;
78 flags[StaticInst::IsDelayedCommit] =
true;
109 static inline float bitsToFp(uint64_t,
float);
110 static inline double bitsToFp(uint64_t,
double);
111 static inline uint32_t
fpToBits(
float);
112 static inline uint64_t
fpToBits(
double);
114 template <
class fpType>
120 uint64_t bitMask =
ULL(0x1) << (
sizeof(fpType) * 8 - 1);
127 template <
class fpType>
133 return flush1 || flush2;
136 template <
class fpType>
145 template <
class fpType>
153 static inline uint32_t
165 static inline uint64_t
201 template <
class fpType>
205 const bool single = (
sizeof(fpType) ==
sizeof(
float));
206 const uint64_t qnan =
207 single ? 0x7fc00000 :
ULL(0x7ff8000000000000);
208 return std::isnan(val) && ((
fpToBits(val) & qnan) != qnan);
216 template <
class fpType>
217 fpType
fixDest(FPSCR fpscr, fpType
val, fpType op1);
219 template <
class fpType>
220 fpType
fixDest(FPSCR fpscr, fpType
val, fpType op1, fpType op2);
222 template <
class fpType>
223 fpType
fixDivDest(FPSCR fpscr, fpType
val, fpType op1, fpType op2);
228 uint16_t
vcvtFpSFpH(FPSCR &fpscr,
bool flush,
bool defaultNan,
230 uint16_t
vcvtFpDFpH(FPSCR &fpscr,
bool flush,
bool defaultNan,
233 float vcvtFpHFpS(FPSCR &fpscr,
bool defaultNan,
bool ahp, uint16_t
op);
234 double vcvtFpHFpD(FPSCR &fpscr,
bool defaultNan,
bool ahp, uint16_t
op);
240 return bitsToFp((uint64_t)low | ((uint64_t)high << 32), junk);
243 static inline uint32_t
249 static inline uint32_t
258 feraiseexcept(exceptions);
261 template <
typename T>
268 bool roundAwayFix =
false;
271 rmode = fegetround();
294 panic(
"Unsupported roundMode %d\n", roundMode);
297 __asm__ __volatile__(
"" :
"=m" (rmode) :
"m" (rmode));
299 val = val * pow(2.0, imm);
300 __asm__ __volatile__(
"" :
"=m" (val) :
"m" (val));
303 __asm__ __volatile__(
"" :
"=m" (val) :
"m" (val));
306 __asm__ __volatile__(
"" :
"=m" (val) :
"m" (val));
311 if (fpType == FP_SUBNORMAL || fpType == FP_NAN) {
312 if (fpType == FP_NAN) {
316 }
else if (origVal != val) {
319 if (origVal - val > 0.5)
321 else if (val - origVal > 0.5)
330 volatile T error =
val;
333 if ( (error > 0.5) ||
334 ((error == 0.5) && (val >= 0)) )
349 __asm__ __volatile__(
"" :
"=m" (val) :
"m" (val));
352 bool outOfRange =
false;
353 int64_t result = (int64_t) val;
358 finalVal = (int16_t)val;
359 }
else if (width == 32) {
360 finalVal =(int32_t)val;
361 }
else if (width == 64) {
364 panic(
"Unsupported width %d\n", width);
368 int64_t minVal = ~
mask(width-1);
369 if ((
double)val < minVal) {
373 int64_t maxVal =
mask(width-1);
374 if ((
double)val > maxVal) {
379 bool isNeg = val < 0;
380 finalVal = result &
mask(width);
384 outOfRange = ((uint64_t) result >> (width - 1)) !=
385 (isNeg ?
mask(64-width+1) : 0);
391 outOfRange |= val < result;
393 finalVal = 1
LL << (width-1);
396 outOfRange |= val > result;
398 finalVal =
mask(width-1);
411 if ((
double)val < 0) {
418 uint64_t result = ((uint64_t) val) &
mask(width);
435 int64_t val, uint8_t width, uint8_t imm);
438 uint64_t val, uint8_t width, uint8_t imm);
440 int64_t val, uint8_t width, uint8_t imm);
457 return (idx % 32) < 8;
464 OpClass __opClass,
bool _wide) :
465 PredMacroOp(mnem, _machInst, __opClass), wide(_wide)
474 template <
typename T>
481 template <
typename T>
524 template <
typename T>
531 template <
typename T>
538 const bool single = (
sizeof(T) ==
sizeof(
float));
554 if ((inf1 && zero2) || (zero1 && inf2)) {
565 template <
typename T>
584 template <
typename T>
591 if (
sizeof(T) ==
sizeof(
float))
592 result = fmaf(op1, op2, addend);
594 result = fma(op1, op2, addend);
597 if (std::isnan(result) && !std::isnan(op1) &&
598 !std::isnan(op2) && !std::isnan(addend))
600 uint64_t bitMask =
ULL(0x1) << ((
sizeof(T) * 8) - 1);
606 template <
typename T>
613 if (rVal != a && !std::isnan(a))
618 template <
typename T>
622 const bool single = (
sizeof(T) ==
sizeof(
float));
623 const uint64_t qnan = single ? 0x7fc00000 :
ULL(0x7ff8000000000000);
626 return ((
fpToBits(a) & qnan) == qnan) ?
b :
a;
628 return ((
fpToBits(b) & qnan) == qnan) ?
a :
b;
635 template <
typename T>
643 return fpMaxNum<T>(
a,
b);
646 template <
typename T>
650 const bool single = (
sizeof(T) ==
sizeof(
float));
651 const uint64_t qnan = single ? 0x7fc00000 :
ULL(0x7ff8000000000000);
654 return ((
fpToBits(a) & qnan) == qnan) ?
b :
a;
656 return ((
fpToBits(b) & qnan) == qnan) ?
a :
b;
663 template <
typename T>
671 return fpMinNum<T>(
a,
b);
674 template <
typename T>
683 if ((fpClassA == FP_ZERO && fpClassB == FP_INFINITE) ||
684 (fpClassA == FP_INFINITE && fpClassB == FP_ZERO)) {
689 if (fpClassAxB == FP_SUBNORMAL) {
693 return (3.0 - (a * b)) / 2.0;
696 template <
typename T>
705 if ((fpClassA == FP_ZERO && fpClassB == FP_INFINITE) ||
706 (fpClassA == FP_INFINITE && fpClassB == FP_ZERO)) {
711 if (fpClassAxB == FP_SUBNORMAL) {
715 return 2.0 - (a *
b);
727 if ((fpClassA == FP_ZERO && fpClassB == FP_INFINITE) ||
728 (fpClassA == FP_INFINITE && fpClassB == FP_ZERO)) {
733 if (fpClassAxB == FP_SUBNORMAL) {
737 return (3.0 - (a * b)) / 2.0;
748 if ((fpClassA == FP_ZERO && fpClassB == FP_INFINITE) ||
749 (fpClassA == FP_INFINITE && fpClassB == FP_ZERO)) {
754 if (fpClassAxB == FP_SUBNORMAL) {
758 return 2.0 - (a *
b);
761 template <
typename T>
767 if (a - val == 0.5) {
768 if ( (((
int) a) & 1) == 0 ) val += 1.0;
770 else if (a - val == -0.5) {
771 if ( (((
int) a) & 1) == 0 ) val -= 1.0;
782 PredOp(mnem, _machInst, __opClass)
786 doOp(
float op1,
float op2)
const 788 panic(
"Unimplemented version of doOp called.\n");
794 panic(
"Unimplemented version of doOp called.\n");
798 doOp(
double op1,
double op2)
const 800 panic(
"Unimplemented version of doOp called.\n");
806 panic(
"Unimplemented version of doOp called.\n");
810 dbl(uint32_t low, uint32_t high)
const 813 return bitsToFp((uint64_t)low | ((uint64_t)high << 32), junk);
828 template <
class fpType>
830 processNans(FPSCR &fpscr,
bool &done,
bool defaultNan,
831 fpType op1, fpType op2)
const;
833 template <
class fpType>
835 ternaryOp(FPSCR &fpscr, fpType op1, fpType op2, fpType op3,
836 fpType (*func)(fpType, fpType, fpType),
837 bool flush,
bool defaultNan, uint32_t
rMode)
const;
839 template <
class fpType>
841 binaryOp(FPSCR &fpscr, fpType op1, fpType op2,
842 fpType (*func)(fpType, fpType),
843 bool flush,
bool defaultNan, uint32_t rMode)
const;
845 template <
class fpType>
847 unaryOp(FPSCR &fpscr, fpType op1,
848 fpType (*func)(fpType),
849 bool flush, uint32_t rMode)
const;
854 if (
flags[IsLastMicroop]) {
856 }
else if (
flags[IsMicroop]) {
867 return unaryOp(fpscr,x,sqrtf,fpscr.fz,fpscr.rMode);
875 return unaryOp(fpscr,x,sqrt,fpscr.fz,fpscr.rMode);
890 FpOp(mnem, _machInst, __opClass),
891 op1(_op1), op2(_op2), condCode(_condCode), defCc(_defCc)
907 FpOp(mnem, _machInst, __opClass),
908 dest(_dest), op1(_op1), op2(_op2), condCode(_condCode)
924 FpOp(mnem, _machInst, __opClass), dest(_dest), op1(_op1)
942 FpOp(mnem, _machInst, __opClass), dest(_dest), imm(_imm)
961 FpOp(mnem, _machInst, __opClass), dest(_dest), op1(_op1), imm(_imm)
980 FpOp(mnem, _machInst, __opClass), dest(_dest), op1(_op1), op2(_op2)
1001 FpOp(mnem, _machInst, __opClass), dest(_dest), op1(_op1), op2(_op2),
1022 FpOp(mnem, _machInst, __opClass), dest(_dest), op1(_op1), op2(_op2),
1044 FpOp(mnem, _machInst, __opClass),
1045 dest(_dest), op1(_op1), op2(_op2), imm(_imm)
1056 #endif //__ARCH_ARM_INSTS_VFP_HH__ #define panic(...)
This implements a cprintf based panic() function.
double fixFpSFpDDest(FPSCR fpscr, float val)
static float bitsToFp(uint64_t, float)
fpType fixDivDest(bool flush, bool defaultNan, fpType val, fpType op1, fpType op2)
static float fpDivS(float a, float b)
double dbl(uint32_t low, uint32_t high) const
uint32_t dblLow(double val) const
static T fpRIntX(T a, FPSCR &fpscr)
static T fpRSqrts(T a, T b)
uint32_t unsignedRecipEstimate(uint32_t op)
static double fpAddD(double a, double b)
#define LL(N)
int64_t constant
static void vfpFlushToZero(FPSCR &fpscr, fpType &op)
Bitfield< 21, 20 > stride
float fixFpDFpSDest(FPSCR fpscr, double val)
bool fpclassify(T src0, uint32_t src1)
Base class for predicated integer operations.
static double makeDouble(uint32_t low, uint32_t high)
static T fpMaxNum(T a, T b)
static float fpRecpsS(float a, float b)
uint16_t vcvtFpDFpH(FPSCR &fpscr, bool flush, bool defaultNan, uint32_t rMode, bool ahp, double op)
static uint32_t lowFromDouble(double val)
FpRegRegRegRegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2, IntRegIndex _op3, VfpMicroMode mode=VfpNotAMicroop)
double vcvtFpHFpD(FPSCR &fpscr, bool defaultNan, bool ahp, uint16_t op)
double fpSqrt(FPSCR fpscr, double x) const
static T fpMinNum(T a, T b)
uint16_t vcvtFpSFpH(FPSCR &fpscr, bool flush, bool defaultNan, uint32_t rMode, bool ahp, float op)
FpCondSelOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2, ConditionCode _condCode)
FPSCR fpStandardFPSCRValue(const FPSCR &fpscr)
uint64_t vfpFpToFixed(T val, bool isSigned, uint8_t width, uint8_t imm, bool useRmode=true, VfpRoundingMode roundMode=VfpRoundZero, bool aarch64=false)
FpRegRegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, VfpMicroMode mode=VfpNotAMicroop)
uint32_t unsignedRSqrtEstimate(uint32_t op)
static double fpSubD(double a, double b)
float fprSqrtEstimate(FPSCR &fpscr, float op)
virtual float doOp(float op1, float op2) const
static double fpMulD(double a, double b)
std::bitset< Num_Flags > flags
Flag values for this instruction.
VfpMacroOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, bool _wide)
static uint32_t fpToBits(float)
virtual float doOp(float op1) const
static bool inScalarBank(IntRegIndex idx)
static float fpRSqrtsS(float a, float b)
static void setFPExceptions(int exceptions)
void finishVfp(FPSCR &fpscr, VfpSavedState state, bool flush, FPSCR mask)
static T fpMulAdd(T op1, T op2, T addend)
virtual double doOp(double op1) const
float fpSqrt(FPSCR fpscr, float x) const
static float fpMulS(float a, float b)
double vfpUFixedToFpD(bool flush, bool defaultNan, uint64_t val, uint8_t width, uint8_t imm)
virtual double doOp(double op1, double op2) const
static float fpSubS(float a, float b)
static T fpMulX(T a, T b)
FpRegRegRegCondOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2, ConditionCode _cond, VfpMicroMode mode=VfpNotAMicroop)
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
#define ULL(N)
uint64_t constant
static double fpDivD(double a, double b)
FpOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
static bool isSnan(fpType val)
double vfpSFixedToFpD(bool flush, bool defaultNan, int64_t val, uint8_t width, uint8_t imm)
FpRegRegRegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2, VfpMicroMode mode=VfpNotAMicroop)
void nextIdxs(IntRegIndex &dest, IntRegIndex &op1, IntRegIndex &op2)
fpType fixDest(bool flush, bool defaultNan, fpType val, fpType op1)
Base class for predicated macro-operations.
int signbit(uint64_t src, int sz)
FpRegRegRegImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2, uint64_t _imm, VfpMicroMode mode=VfpNotAMicroop)
float fpRecipEstimate(FPSCR &fpscr, float op)
VfpSavedState prepFpState(uint32_t rMode)
FpCondCompRegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _op1, IntRegIndex _op2, ConditionCode _condCode, uint8_t _defCc)
static float fpAddS(float a, float b)
float vcvtFpHFpS(FPSCR &fpscr, bool defaultNan, bool ahp, uint16_t op)
static void setVfpMicroFlags(VfpMicroMode mode, T &flags)
TheISA::ExtMachInst ExtMachInst
Binary extended machine instruction type.
std::string generateDisassembly(Addr pc, const Loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
static const uint32_t FpscrExcMask
static uint32_t highFromDouble(double val)
uint32_t dblHi(double val) const
float vfpUFixedToFpS(bool flush, bool defaultNan, uint64_t val, uint8_t width, uint8_t imm)
T bits(T val, int first, int last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it...
FpRegImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, uint64_t _imm, VfpMicroMode mode=VfpNotAMicroop)
void advancePC(PCState &pcState) const
static T fpRecps(T a, T b)
GenericISA::DelaySlotPCState< MachInst > PCState
FpRegRegImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, uint64_t _imm, VfpMicroMode mode=VfpNotAMicroop)
float vfpSFixedToFpS(bool flush, bool defaultNan, int64_t val, uint8_t width, uint8_t imm)
IntRegIndex addStride(IntRegIndex idx, unsigned stride)