Search code examples
.netdelphifpuctrl

How can I set and restore FPU CTRL registers?


I can reset FPU's CTRL registers with this:

http://support.microsoft.com/kb/326219

But how can I save current registers, and restore them later?

It's from .net code..

What I'm doing, is from Delphi calling an .net dll as an COM module. Checking the Ctrl registers in delphi yield one value, checking with controlfp in the .net code gives another value. What I need, is in essential is to do this:

_controlfp(_CW_DEFAULT, 0xfffff); 

So my floatingpoint calculations in the .net code does not crash, but I want to restore the Ctrl registers when returning.

Maybe I don't? Maybe Delphi is resetting them when needed? I blogged about this problem here.


Solution

  • uses
       SysUtils;
    
    var
       SavedCW: Word;
    begin
       SavedCW := Get8087CW;
       try
         Set8087CW($027f);
         // Call .NET code here
       finally
         Set8087CW(SavedCW);
       end;
    end;