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=23 Percentage= 46.00

Skipped=27 Percentage= 54.00

Result type Cat. Count Percentage First date Last Date
Successfully run 23 46.0 2024/05/08 23:26:00 32 2024/05/09 00:34:00 25
i386 23 100.0 2024/05/08 23:26:00 32 2024/05/09 00:34:00 25
linux 22 95.7 2024/05/08 23:26:00 32 2024/05/09 00:34:00 25
win32 1 4.3 2024/05/08 23:57:00 23 2024/05/08 23:57:00 23
3.3.1 4 17.4 2024/05/08 23:35:00 28 2024/05/09 00:01:00 30
3.2.3 19 82.6 2024/05/08 23:26:00 32 2024/05/09 00:34:00 25
Skipping test because for other cpu 27 54.0 2024/05/08 22:24:00 37 2024/05/09 00:27:00 46
sparc 19 70.4 2024/05/08 23:24:00 38 2024/05/08 23:55:00 41
x86_64 4 14.8 2024/05/08 22:24:00 37 2024/05/09 00:13:00 0
powerpc64 3 11.1 2024/05/09 00:20:00 46 2024/05/09 00:27:00 46
aarch64 1 3.7 2024/05/09 00:13:00 32 2024/05/09 00:13:00 32
linux 4 14.8 2024/05/09 00:13:00 32 2024/05/09 00:27:00 46
solaris 19 70.4 2024/05/08 23:24:00 38 2024/05/08 23:55:00 41
win64 4 14.8 2024/05/08 22:24:00 37 2024/05/09 00:13:00 0
3.3.1 17 63.0 2024/05/08 23:14:00 21 2024/05/09 00:27:00 46
3.2.3 10 37.0 2024/05/08 22:24:00 37 2024/05/08 23:55:00 41

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.