mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 08:10:31 +02:00
110 lines
2.4 KiB
PHP
110 lines
2.4 KiB
PHP
{
|
|
This file is part of the Free Pascal run time library.
|
|
Copyright (c) 1999-2004 by Florian Klaempfl
|
|
member of the Free Pascal development team
|
|
|
|
See the file COPYING.FPC, included in this distribution,
|
|
for details about the copyright.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
**********************************************************************}
|
|
|
|
{$ifndef WIN64}
|
|
{$define FPC_MATH_HAS_ARCTAN2}
|
|
function arctan2(y,x : float) : float;assembler;
|
|
asm
|
|
fldt y
|
|
fldt x
|
|
fpatan
|
|
fwait
|
|
end;
|
|
{$endif WIN64}
|
|
|
|
procedure SetSSECSR(w : dword);
|
|
var
|
|
_w : dword;
|
|
begin
|
|
_w:=w;
|
|
asm
|
|
ldmxcsr _w
|
|
end;
|
|
end;
|
|
|
|
|
|
function GetSSECSR : dword;
|
|
var
|
|
_w : dword;
|
|
begin
|
|
asm
|
|
stmxcsr _w
|
|
end;
|
|
result:=_w;
|
|
end;
|
|
|
|
|
|
function GetRoundMode: TFPURoundingMode;
|
|
begin
|
|
{$ifdef win64}
|
|
Result:=TFPURoundingMode((GetSSECSR shr 13) and $3);
|
|
{$else win64}
|
|
Result:=TFPURoundingMode((Get8087CW shr 10) and $3);
|
|
{$endif win64}
|
|
end;
|
|
|
|
function SetRoundMode(const RoundMode: TFPURoundingMode): TFPURoundingMode;
|
|
var
|
|
CtlWord: Word;
|
|
begin
|
|
CtlWord:=Get8087CW;
|
|
Set8087CW((CtlWord and $F3FF) or (Ord(RoundMode) shl 10));
|
|
SetSSECSR((((GetSSECSR shr 13) and $fffffffc) or dword(RoundMode)) shl 13);
|
|
Result:=GetRoundMode;
|
|
end;
|
|
|
|
function GetPrecisionMode: TFPUPrecisionMode;
|
|
begin
|
|
Result:=TFPUPrecisionMode((Get8087CW shr 8) and 3);
|
|
end;
|
|
|
|
function SetPrecisionMode(const Precision: TFPUPrecisionMode): TFPUPrecisionMode;
|
|
var
|
|
CtlWord: Word;
|
|
begin
|
|
CtlWord:=Get8087CW;
|
|
Set8087CW((CtlWord and $FCFF) or (Ord(Precision) shl 8));
|
|
Result:=TFPUPrecisionMode((CtlWord shr 8) and 3);
|
|
end;
|
|
|
|
function GetExceptionMask: TFPUExceptionMask;
|
|
begin
|
|
{$ifdef win64}
|
|
Result:=TFPUExceptionMask((GetSSECSR shr 7) and $1f);
|
|
{$else win64}
|
|
Result:=TFPUExceptionMask(dword(Get8087CW and $3F));
|
|
{$endif win64}
|
|
end;
|
|
|
|
function SetExceptionMask(const Mask: TFPUExceptionMask): TFPUExceptionMask;
|
|
var
|
|
CtlWord: Word;
|
|
begin
|
|
CtlWord:=Get8087CW;
|
|
Set8087CW((CtlWord and $FFC0) or Byte(Longint(Mask)));
|
|
SetSSECSR((((GetSSECSR shr 7) and $ffffffe0) or dword(Mask)) shl 7);
|
|
Result:=GetExceptionMask;
|
|
end;
|
|
|
|
|
|
procedure ClearExceptions(RaisePending: Boolean);assembler;
|
|
asm
|
|
cmpb $0,RaisePending
|
|
je .Lclear
|
|
fwait
|
|
.Lclear:
|
|
fnclex
|
|
end;
|
|
|