* implemented SysResetFPU for arm-wince.

* set softfloat_exception_mask in SetExceptionMask for ARM.

git-svn-id: trunk@6035 -
This commit is contained in:
yury 2007-01-17 23:58:19 +00:00
parent b6dbf981c9
commit 458abdef3e
3 changed files with 17 additions and 5 deletions

View File

@ -29,6 +29,20 @@ begin
{$endif}
end;
{$ifdef wince}
function _controlfp(new: DWORD; mask: DWORD): DWORD; cdecl; external 'coredll';
{$define FPC_SYSTEM_HAS_SYSRESETFPU}
Procedure SysResetFPU;{$ifdef SYSTEMINLINE}inline;{$endif}
begin
softfloat_exception_flags:=0;
softfloat_exception_mask:=float_flag_underflow or float_flag_inexact or float_flag_denormal;
{ Enable FPU exceptions, but disable INEXACT, UNDERFLOW, DENORMAL }
{ FPU precision 64 bit, rounding to nearest, affine infinity }
_controlfp($000C0003, $030F031F);
end;
{$endif wince}
{****************************************************************************
stack frame related stuff
****************************************************************************}

View File

@ -126,6 +126,7 @@ begin
c:=c or _EM_INEXACT;
c:=_controlfp(c, _MCW_EM);
Result:=ConvertExceptionMask(c);
softfloat_exception_mask:=dword(Mask);
end;
procedure ClearExceptions(RaisePending: Boolean =true);
@ -308,6 +309,7 @@ function SetExceptionMask(const Mask: TFPUExceptionMask): TFPUExceptionMask;
cw:=cw or _FPU_MASK_PM;
FPU_SetCW(cw);
softfloat_exception_mask:=dword(Mask);
end;

View File

@ -1452,7 +1452,6 @@ begin
xorl %eax,%eax
movw %ss,%ax
movl %eax,_SS
call SysResetFPU
xorl %ebp,%ebp
call PASCALMAIN
popl %ebp
@ -1725,7 +1724,6 @@ end;
function _getstdfilex(fd: integer): pointer; cdecl; external 'coredll';
function _fileno(fd: pointer): THandle; cdecl; external 'coredll';
function _controlfp(new: DWORD; mask: DWORD): DWORD; cdecl; external 'coredll';
procedure SysInitStdIO;
begin
@ -1779,11 +1777,9 @@ begin
end;
initialization
SysResetFPU;
StackLength := CheckInitialStkLen(InitialStkLen);
StackBottom := StackTop - StackLength;
{ Enable FPU exceptions, but disable INEXACT, UNDERFLOW, DENORMAL }
{ FPU precision 64 bit, rounding to nearest, affine infinity }
_controlfp($000C0003, $030F031F);
{ some misc stuff }
hprevinst:=0;
if not IsLibrary then