I have a 32 bit Windows application, written primarily in Delphi, which performs floating point numerical simulations using the 8087 FPU. I have recently added the ability to link in external Python code using the Python API through python2x.dll. This recent change has led to some very strange behaviour.

The application has a batch mode of operation where it performs multiple simulations in parallel to take advantage of multi-core architectures. As soon as Python code has been executed in the process, I start to see changes to the 8087 control word on different threads. I've checked this very carefully and I have observed the control word having changed even in a thread which has never called into the Python DLL.

I know this sounds fantastical, but, as I have discovered, there are mechanisms for this behaviour to manifest. I have learnt about signals. I first hypothesised that the Python DLL was setting process wide signal handlers (by calling signal()) and these signal handlers were responsible for changing the control word. For example, a thread, unrelated to the Python code, could perhaps cause SIGFPE and that may, in turn, modify the control word.

I have rather come to the conclusion that signal() is not the mechanism. I arranged to execute the Python code at startup. Then I set of the signal handlers back to SIG_DFL. Then I started the simulations. But still the control word changes occurred.

My question (finally) is whether anyone knows of another mechanism by which the control word could be changed in such a manner. I'm looking for interrupts, APCs etc., I think!

Update

The control word is being changed to 0x037F which is the Intel default value. This differs from the MSVC/Windows default of 0x027F. I hypothesise that something is calling FPINIT.

I also discovered Py_InitializeEx which allows the caller to stop Python setting signal handlers. The control word changes occur even if I use this approach to initialisation so I'm even more convinced that is not the mechanism.

link|improve this question

1  
I wonder if there're any callbacks or Asynchronous Procedure Calls (APCs) or something like that happening and changing the state. Just a hypothesis, never seen it actually happen. – Alex Oct 7 '11 at 13:17
Interrupts must not adversely affect the FPU state. That would break everything. And I do not expect Python to do anything in the kernel space to mess interrupt handling as it's just a piece of user-mode code, not a kernel-mode driver. – Alex Oct 7 '11 at 13:26
1  
if you are using any graphical output API for the simulations, they can also fiddle with the FPU control (DirectX is notorious for this) – Necrolis Oct 7 '11 at 13:32
1  
@DavidHeffernan: See if this leads anywhere: opening-windows.com/techart_windows_vista_apc_internals.htm – Alex Oct 7 '11 at 20:38
2  
Assuming the problem continues to happen even after you've stopped explicitly executing Python code, perhaps you could make all the code in the Python DLL non-executable so that an exception will occur as soon as any of the code runs? With any luck the call stack from the exception will give you more information about under what circumstances Python is hijacking your threads and maybe a hint about why. – Harry Johnston Oct 7 '11 at 22:42
show 16 more comments
feedback

3 Answers

For example, a DllMain call with DLL_THREAD_ATTACH flag, see msdn

Update

I have found a link to similar problem - DLL Load "Poisons" FPU Control Word for New Threads. But yes, it is about the threads created after Dll load.

link|improve this answer
That doesn't quite explain it because the control word changes long after the thread has been created. DLL_THREAD_ATTACH would explain a control word change at the very beginning of the thread's life. Have I understood your point correctly? – David Heffernan Oct 7 '11 at 13:36
DllMain is also called when you call LoadLibrary. Not sure that the calls are done per thread though - never had such a problem. – Serg Oct 7 '11 at 13:41
feedback

If I remember correctly, that's Delphi's problem. There are some discussions of the issue here and here. I remember bumping into it when trying to write some VST plugins in Delphi.

link|improve this answer
It's not Delphi's problem. I fully understand that when calling into external code that expects the Intel/Windows default control word, I need to set that (and restore it on return) for code that omits to do so. The problem is that code in my thread has the control word changed behind its back. – David Heffernan Oct 7 '11 at 13:34
1  
There is SafeLoadLibrary in the RTL which does exactly this. Not using it is the problem ;) – mjn Oct 7 '11 at 15:38
1  
@mjn The control word is being changed independent of any LoadLibrary calls. When dealing with control word incompatibilities between modules it is insufficient to use just LoadLibrary. You have to patrol every crossing of a module boundary. Every single call into another module is a potential pitfall. So using SafeLoadLibrary doesn't get you very far. – David Heffernan Oct 7 '11 at 16:15
1  
@David now I do understand - every DLL call can do bad things to the CW. Too bad we can not refactor away all global variables in the CPU :) – mjn Oct 7 '11 at 16:27
feedback

I have seen a case like this where the printer driver of the default printer changed the control word in my back. When I changed the default printer, the problem went away. To circumvent this problem I set the control word to the default value at approriate places with:

_control87(_CW_DEFAULT, _CW_DEFAULT);

I have also seen the same problem on all machines of a customer that had Norton Security 2011 installed, but the problem went away with the fix for the printer driver, so I'm not really sure if Norton was really the cause.

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.