0

I am searching for info about how many values can be considered as part of current fpu state (I mean the values on which floating point code calculations depend on) I know that it would be 3 modes of precission, 4 modes of rounding, about 5 bit flags related to fpu exceptions but what else more? tnx

grunge fightr
  • 1,360
  • 2
  • 19
  • 38

2 Answers2

2

Check the Intel manuals, chapter 8.

Joachim Rohde
  • 5,915
  • 2
  • 29
  • 46
0

See the documentation of _controlfp() or _control87(). Those are the functions to change the fpu flags. For example on MSDN: https://msdn.microsoft.com/en-us/library/c9676k6h.aspx

marc40000
  • 3,167
  • 9
  • 41
  • 63