Test suite results for test file test/tfpu3.pp

Test run data :

Free Pascal Compiler Test Suite Results

View Test suite results

Please specify search criteria:
File:
Operating system:
Processor:
Version
Date
Submitter
Machine
Comment
Limit
Cond
Category
Only failed tests
Hide skipped tests
List all tests

Test file "test/tfpu3.pp" information:

t_id 40
t_cpu i386
t_adddate 2003/10/03
t_result 0
t_knownrunerror 0
t_note Note: this test requires that nasm assembler is installed

Detailed test run results:

Record count: 50

Total = 50

OK=5 Percentage= 10.00

Skipped=45 Percentage= 90.00

Result type Cat. Count Percentage First date Last Date
Successfully run 5 10.0 2024/06/02 06:41:00 172 2024/06/02 07:53:00 69
i386 5 100.0 2024/06/02 06:41:00 172 2024/06/02 07:53:00 69
linux 4 80.0 2024/06/02 06:41:00 172 2024/06/02 07:24:00 42
go32v2 1 20.0 2024/06/02 07:53:00 69 2024/06/02 07:53:00 69
3.3.1 3 60.0 2024/06/02 06:51:00 236 2024/06/02 07:53:00 69
3.2.3 2 40.0 2024/06/02 06:41:00 172 2024/06/02 06:52:00 176
Skipping test because for other cpu 45 90.0 2024/06/02 05:33:00 33 2024/06/02 08:02:00 148
m68k 4 8.9 2024/06/02 06:49:00 58 2024/06/02 07:38:00 58
sparc 4 8.9 2024/06/02 06:46:00 68 2024/06/02 07:48:00 74
powerpc 3 6.7 2024/06/02 07:14:00 181 2024/06/02 07:58:00 246
arm 3 6.7 2024/06/02 06:45:00 59 2024/06/02 07:18:00 40
x86_64 3 6.7 2024/06/02 05:33:00 33 2024/06/02 07:19:00 104
powerpc64 6 13.3 2024/06/02 06:44:00 70 2024/06/02 07:35:00 71
mips 4 8.9 2024/06/02 06:58:00 154 2024/06/02 07:45:00 246
mipsel 3 6.7 2024/06/02 06:21:00 148 2024/06/02 07:13:00 148
aarch64 10 22.2 2024/06/02 06:09:00 30 2024/06/02 08:02:00 37
sparc64 2 4.4 2024/06/02 07:14:00 164 2024/06/02 08:02:00 148
riscv64 1 2.2 2024/06/02 07:42:00 31 2024/06/02 07:42:00 31
loongarch64 2 4.4 2024/06/02 06:56:00 34 2024/06/02 07:32:00 38
linux 38 84.4 2024/06/02 06:21:00 148 2024/06/02 08:02:00 148
solaris 2 4.4 2024/06/02 05:33:00 33 2024/06/02 06:54:00 39
darwin 5 11.1 2024/06/02 06:09:00 30 2024/06/02 07:14:00 47
3.3.1 22 48.9 2024/06/02 05:33:00 33 2024/06/02 07:58:00 246
3.2.3 23 51.1 2024/06/02 06:21:00 148 2024/06/02 08:02:00 148

Source:

{ %CPU=i386 }
{ %NOTE= this test requires that nasm assembler is installed }
{ testfdiv variant with NASM output forced }
{$ifdef go32v2}
{$output_format nasmcoff}
{$endif}
{$ifdef win32}
{$output_format nasmwin32}
{$endif}
{$ifdef Unix}
{$output_format nasmelf}
{$endif}
{ This test program deals with the
  the delicate problem of
  non commutative FPU instruction
  where the destination register
  is ST(1) to ST(7)

    Whereas Intel interprets
      fdiv st(1),st
    as
      st(1):=st(1) / st
    The ATT read
      fdiv %st,%st(1)
    as
      st(1):=st/st(1)
    Should be tested with
    different output styles :
    for go32v2
      -Aas -Acoff and -Anasmcoff
    for win32
      -Aas -Apecoff and -Anasmwin32
    for linux
      -Aas and -Anasmelf
    }

program  test_nasm_div;


var
  x,y,z : double;

begin
  x:=4;
  y:=2;
  Writeln('4/2=',x/y:0:2);
  if x/y <> 2.0 then
    Halt(1);
{$asmmode att}
  asm
    fldl y
    fldl x
    fdivp %st,%st(1)
    fstpl z
  end;
  Writeln('ATT result of 4/2=',z:0:2);
  if z <> 2.0 then
    Halt(1);
  asm
    fldl y
    fldl x
    fdiv %st(1),%st
    fstpl z
    fstp %st
  end;
  Writeln('ATT result of 4/2=',z:0:2);
  if z <> 2.0 then
    Halt(1);
  asm
    fldl y
    fldl x
    fdiv %st,%st(1)
    fstp %st
    fstpl z
  end;
  Writeln('ATT result of 4/2=',z:0:2);
  if z <> 2.0 then
    Halt(1);
  asm
    fldl y
    fldl x
    fadd
    fstpl z
  end;
  Writeln('ATT result of 4+2=',z:0:2);
  if z <> 6.0 then
    Halt(1);
{$asmmode intel}
  asm
    fld x
    fld y
    fdivp  st(1),st
    fstp z
  end;
  Writeln('Intel result of 4/2=',z:0:2);
  if z <> 2.0 then
    Halt(1);
  asm
    fld y
    fld x
    fdiv  st,st(1)
    fstp z
    fstp st
  end;
  Writeln('Intel result of 4/2=',z:0:2);
  if z <> 2.0 then
    Halt(1);
  asm
    fld y
    fld x
    fadd
    fstp z
  end;
  Writeln('Intel result of 4+2=',z:0:2);
  if z <> 6.0 then
    Halt(1);

  Writeln('All tests completed successfully!');
end.

Link to SVN view of test/tfpu3.pp source.