Test suite results for test file tbs/tb0269.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 "tbs/tb0269.pp" information:

t_id 496
t_cpu i386
t_adddate 2003/10/03
t_result 0
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=39 Percentage= 78.00

Skipped=11 Percentage= 22.00

Result type Cat. Count Percentage First date Last Date
Successfully run 39 78.0 2024/05/18 00:34:00 24 2024/05/18 01:32:00 24
i386 39 100.0 2024/05/18 00:34:00 24 2024/05/18 01:32:00 24
linux 39 100.0 2024/05/18 00:34:00 24 2024/05/18 01:32:00 24
3.3.1 17 43.6 2024/05/18 01:09:00 28 2024/05/18 01:32:00 24
3.2.3 22 56.4 2024/05/18 00:34:00 24 2024/05/18 01:31:00 26
Skipping test because for other cpu 11 22.0 2024/05/17 23:52:00 41 2024/05/18 01:32:00 15
sparc 1 9.1 2024/05/17 23:52:00 41 2024/05/17 23:52:00 41
x86_64 6 54.5 2024/05/18 00:34:00 30 2024/05/18 01:32:00 15
powerpc64 2 18.2 2024/05/18 01:09:00 101 2024/05/18 01:11:00 108
aarch64 2 18.2 2024/05/18 00:52:00 35 2024/05/18 01:29:00 34
linux 9 81.8 2024/05/18 00:52:00 35 2024/05/18 01:32:00 15
solaris 2 18.2 2024/05/17 23:52:00 41 2024/05/18 00:34:00 30
3.3.1 6 54.5 2024/05/18 00:52:00 35 2024/05/18 01:32:00 15
3.2.3 5 45.5 2024/05/17 23:52:00 41 2024/05/18 01:31:00 26

Source:

{ %CPU=i386}

{ Old file: tbs0313.pp }
{  }

  {$asmmode intel}
  TYPE
    TPoint3 = RECORD
      x,y,z:Single;
    END;

  OPERATOR + (CONST p1,p2:TPoint3) p : TPoint3; Assembler;
   ASM
     mov EBX,[p1]
     mov EDI,[p2]
     mov EDX,[p]
     movq MM0,[EBX]
     pfadd MM0,[EDI]
     movq [EDX],MM0
    { Now the correct way would be something like: }
     movd MM0,[EBX+8]  // [movd reg??,mem?? - invalid combination of opcod
     movd MM1,[EDI+8]  // and here, too
     pfadd MM0,MM1
     movd [EDX+8],MM0  // and here
     femms
   END;

begin
end.

Link to SVN view of tbs/tb0269.pp source.