Lines Matching refs:roundData
72 struct roundingData roundData; in PerformFLT() local
74 roundData.mode = SetRoundingMode(opcode); in PerformFLT()
75 roundData.precision = SetRoundingPrecision(opcode); in PerformFLT()
76 roundData.exception = 0; in PerformFLT()
82 fpa11->fpreg[getFn(opcode)].fSingle = int32_to_float32(&roundData, readRegister(getRd(opcode))); in PerformFLT()
106 if (roundData.exception) in PerformFLT()
107 float_raise(roundData.exception); in PerformFLT()
116 struct roundingData roundData; in PerformFIX() local
118 roundData.mode = SetRoundingMode(opcode); in PerformFIX()
119 roundData.precision = SetRoundingPrecision(opcode); in PerformFIX()
120 roundData.exception = 0; in PerformFIX()
125 writeRegister(getRd(opcode), float32_to_int32(&roundData, fpa11->fpreg[Fn].fSingle)); in PerformFIX()
131 writeRegister(getRd(opcode), float64_to_int32(&roundData, fpa11->fpreg[Fn].fDouble)); in PerformFIX()
138 writeRegister(getRd(opcode), floatx80_to_int32(&roundData, fpa11->fpreg[Fn].fExtended)); in PerformFIX()
147 if (roundData.exception) in PerformFIX()
148 float_raise(roundData.exception); in PerformFIX()