Tagged Questions
4
votes
3answers
865 views
MSVC win32: convert extended precision float (80-bit) to double (64-bit)
What is the most portable and "right" way to do conversion from extended precision float (80-bit value, also known as "long double" in some compilers) to double (64-bit) in MSVC win32/win64?
MSVC ...
4
votes
6answers
518 views
strange results of simple floating point operations - bad FPU internal state?
I have a software project in which I sometimes get strange results from small, simple floating point operations. I assume there is something I have missed, and would like some tips about how to debug ...
3
votes
2answers
299 views
Why is FLD1 loading NaN instead?
I have a one-liner C function that is just return value * pow(1.+rate, -delay); - it discounts a future value to a present value. The interesting part of the disassembly is
0x080555b9 : neg ...
2
votes
1answer
845 views
Fast float to int conversion and floating point precision on ARM (iPhone 3GS/4)
I read (http://www.stereopsis.com/FPU.html) mentioned in (http://stackoverflow.com/questions/78619/what-is-the-fastest-way-to-convert-float-to-int-on-x86). Does anyone know if the slow simple cast ...
2
votes
3answers
1k views
Floating point rounding when truncating
This is probably a question for an x86 FPU expert:
I am trying to write a function which generates a random floating point value in the range [min,max]. The problem is that my generator algorithm ...
1
vote
2answers
591 views
iPhone 4 and iPad 2: Advantages of fixed point arithmetic over floating point
I've heard that the iPhone 4 and the iPad have a fpu called the VFP that in some way optimizes floating point arithmetic, even allowing SIMD (though whether GCC takes advantage of that is doubtful). ...
1
vote
3answers
444 views
What Determines the Default Setting of the x87 FPU Control Word?
What determines the default setting of the x87 FPU control word -- specifically, the precision control field? Does the compiler set it based on the target processor? Is there a compiler option to ...
0
votes
2answers
235 views
Scope of MXCSR control register?
I'm wondering what is the lifetime of the value stored in the MXCSR control register (including FTZ and DAZ config for denormal floating-point numbers): is it in the scope of the thread, or is it ...