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 change it?

Using Microsoft Visual C++ 2008 Express Edition on an Intel Core Duo processor, the default setting for the precision control field is "01b", meaning double (53 bit) precision. I'm wondering -- why is the default not "11"b, or extended (64 bit) precision?

(I know I can change it using _controlfp.)

link|improve this question

75% accept rate
feedback

3 Answers

There was a bug in the Microsoft C runtime DLL (MSVCRT.DLL) where it would change the FPCW, which could change application behavior depending on the order of DLL loading.

So if you care about the FPCW setting, it is not only best practice to change it to your desired settings before execution, (even on a function call boundary), but also to change it back when you are done. (And if you call any functions or libaries, beware of callees who might change it and not be so considerate as to change it back for you!)

Also note: the FPCW is expensive to modify, but not very expensive to examine. So if there's a good chance it is already set the way you want, you can save a lot of time by checking it before modifying it.

link|improve this answer
@ArchaeaSW - do you have a KB or MS reference to this bug? I haven't been able to find anything relevant, and would like to know what version(s) have this bug. – holtavolt Apr 27 '11 at 15:43
hmm, I tried to dig it up and was not able to find it. The Web and Microsoft's KB process were still kind of new when that bug was discovered, though. FPCW still ranks as one of the worst thread-wide pieces of control state in the architecture. Much of the state in there (esp. round mode) should be encoded on a per-instruction basis. – ArchaeaSoftware May 26 '11 at 19:07
feedback

From a theoretical standpoint: probably the last thing that used it, or barring that, whatever Intel decided would be a good default.

From a practical standpoint: just set it to your desired precision before you begin work. Explicit defaults are usually better than implied defaults.

link|improve this answer
But I'm asking, if I'm the 'first thing that uses it', how did it get set to start with? Why would the default be 53 bit and not 64 bit? – Rick Regan Apr 2 '10 at 0:12
But you're not the first thing that uses it. There's probably BIOS code that's executing. – Broam Apr 5 '10 at 14:39
That's one thing I'm trying to find out -- where it's initialized. – Rick Regan Apr 5 '10 at 15:49
1  
Since he's using Visual C++, I bet he is on Windows, which means that MS rather than Intel is responsible for the default since it should be part of the startup configuration for new processes. The BIOS was used really long ago when a Windows process starts. – erikkallen Sep 28 '10 at 14:02
Depends on your definition of "first" :) – Broam Sep 28 '10 at 15:39
feedback

When the OS sets up a process (or thread) -- say, when your program launches, it is responsible for initializing the control registers to the default state (exactly what the default state is can vary somewhat from platform to platform). It is also responsible for saving and restoring state around context switches, so that your program doesn't bleed state into some other process that is also running on the system.

Beyond that, a compiler or a language runtime might modify the state before your code is executed.

So either: Windows' default FP state is 53 bit precision or VS2008 inserts code to set the processor to 53 bit precision by default. The Windows default process state should be documented in the ABI documentation for the platform.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.