Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #357 from shuffle2/master
Revert "x64FPURoundMode: always set x87 precision"
  • Loading branch information
shuffle2 committed May 11, 2014
2 parents 004af61 + 700c135 commit 2983ae2
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions Source/Core/Common/x64FPURoundMode.cpp
Expand Up @@ -34,6 +34,10 @@ namespace FPURoundMode

void SetPrecisionMode(PrecisionMode mode)
{
#ifdef _M_X86_32
// sets the floating-point lib to 53-bit
// PowerPC has a 53bit floating pipeline only
// eg: sscanf is very sensitive
#ifdef _WIN32
_control87(_PC_53, MCW_PC);
#else
Expand All @@ -43,10 +47,14 @@ namespace FPURoundMode
2 << 8, // 53 bits
3 << 8, // 64 bits
};
unsigned short cw;
asm ("fnstcw %0" : "=m" (cw));
cw = (cw & ~PRECISION_MASK) | precision_table[mode];
asm ("fldcw %0" : : "m" (cw));
unsigned short _mode;
asm ("fstcw %0" : "=m" (_mode));
_mode = (_mode & ~PRECISION_MASK) | precision_table[mode];
asm ("fldcw %0" : : "m" (_mode));
#endif
#else
//x64 doesn't need this - fpu is done with SSE
//but still - set any useful sse options here
#endif
}

Expand Down

0 comments on commit 2983ae2

Please sign in to comment.