2
0
Эх сурвалжийг харах

remove obsolete failed tests

git-svn-id: branches/tg74/avx1@22660 -
tg74 13 жил өмнө
parent
commit
590e803ed9

+ 0 - 8
.gitattributes

@@ -10410,20 +10410,12 @@ tests/test/tarrconstr2.pp svneol=native#text/pascal
 tests/test/tarrconstr3.pp svneol=native#text/pascal
 tests/test/tarrconstr4.pp svneol=native#text/pascal
 tests/test/tasm1.pp svneol=native#text/plain
-tests/test/tasm10.pp svneol=native#text/plain
-tests/test/tasm11.pp svneol=native#text/plain
-tests/test/tasm12.pp svneol=native#text/plain
-tests/test/tasm13.pp svneol=native#text/plain
-tests/test/tasm14.pp svneol=native#text/plain
-tests/test/tasm15.pp svneol=native#text/plain
 tests/test/tasm2.pp svneol=native#text/plain
 tests/test/tasm3.pp svneol=native#text/plain
 tests/test/tasm4.pp svneol=native#text/plain
 tests/test/tasm5.pp svneol=native#text/plain
 tests/test/tasm6.pp svneol=native#text/plain
 tests/test/tasm7.pp svneol=native#text/plain
-tests/test/tasm8.pp svneol=native#text/plain
-tests/test/tasm9.pp svneol=native#text/plain
 tests/test/tasmread.pp svneol=native#text/plain
 tests/test/tasout.pp svneol=native#text/plain
 tests/test/tassignmentoperator1.pp svneol=native#text/pascal

+ 0 - 12
tests/test/tasm10.pp

@@ -1,12 +0,0 @@
-{ %CPU=x86_64 }
-{ %fail }
-
-// in 64-bit mode is needed exact size of memory operand (32- or 64 bit)
-{$asmmode intel}
-procedure test; assembler; nostackframe;
-asm
-   vcvtsi2sd  xmm0, xmm0, [RAX]
-end;
-
-begin
-end.

+ 0 - 12
tests/test/tasm11.pp

@@ -1,12 +0,0 @@
-{ %CPU=i386,x86_64 }
-{ %fail }
-
-// need exact size of memory operand (128- or 256 bit)
-{$asmmode intel}
-procedure test; assembler; nostackframe;
-asm
-   vcvtpd2dq  xmm0, [RAX]
-end;
-
-begin
-end.

+ 0 - 12
tests/test/tasm12.pp

@@ -1,12 +0,0 @@
-{ %CPU=i386,x86_64 }
-{ %fail }
-
-// need exact size of memory operand (128- or 256 bit)
-{$asmmode intel}
-procedure test; assembler; nostackframe;
-asm
-   vcvtpd2ps  xmm0, [RAX]
-end;
-
-begin
-end.

+ 0 - 12
tests/test/tasm13.pp

@@ -1,12 +0,0 @@
-{ %CPU=i386,x86_64 }
-{ %fail }
-
-// need exact size of memory operand (128- or 256 bit)
-{$asmmode intel}
-procedure test; assembler; nostackframe;
-asm
-   vcvttpd2dq  xmm0, [RAX]
-end;
-
-begin
-end.

+ 0 - 57
tests/test/tasm14.pp

@@ -1,57 +0,0 @@
-{ %CPU=x86_64 }
-
-// (Almost) every of these instructions use a high register and thus generate REX.
-{$asmmode intel}
-procedure avxtest; assembler; nostackframe;
-asm
-    VADDPD         XMM0, XMM1, [RAX] + $100
-    VADDPD         YMM2, YMM3, [RAX] + $100
-
-    VBLENDPD       XMM2, XMM5, XMM7, $02
-    VBLENDPD       YMM2, YMM5, YMM7, $0F
-
-    VBLENDVPS      XMM2, XMM5, XMM7, XMM4
-    VBLENDVPS      YMM0, YMM1, YMM2, YMM5
-
-    VBROADCASTSD   YMM0, [RAX]
-
-    VPEXTRB         EAX, XMM0, $00
-
-    VPINSRD        XMM7, XMM1, EAX, $03
-
-    VZEROALL
-
-end;
-
-
-const
-  avxtest_expected : array[0..59] of byte = (
-  $C5,$F1,$58,$80,$00,$01,$00,$00,
-  $C5,$E5,$58,$90,$00,$01,$00,$00,
-  $C4,$E3,$51,$0D,$D7,$02,
-  $C4,$E3,$55,$0D,$D7,$0F,
-  $C4,$E3,$51,$4A,$D7,$40,
-  $C4,$E3,$75,$4A,$C2,$50,
-  $C4,$E2,$7D,$19,$00,
-  $C4,$E3,$79,$14,$C0,$00,
-  $C4,$E3,$71,$22,$F8,$03,
-  $C5,$FC,$77);
-
-
-
-procedure check(const id: string; const expected: array of byte; p: pointer);
-var
-  i : longint;
-begin
-  for i:=0 to high(expected) do
-    if expected[i]<>pbyte(p)[i] then
-      begin
-        writeln(id, ' mismatch at offset $',hexstr(i,4), ', expected=$',hexstr(expected[i],2),' actual=$',hexstr(pbyte(p)[i],2));
-        halt(1);
-      end;
-end;
-
-begin
-  check('generic', avxtest_expected, @avxtest);
-  writeln('ok');
-end.

+ 0 - 12
tests/test/tasm15.pp

@@ -1,12 +0,0 @@
-{ %CPU=x86_64 }
-{ %fail }
-
-// in 64-bit mode is needed exact size of memory operand (32- or 64 bit)
-{$asmmode intel}
-procedure test; assembler; nostackframe;
-asm
-   cvtsi2ss  xmm0, [RAX]
-end;
-
-begin
-end.

+ 0 - 12
tests/test/tasm8.pp

@@ -1,12 +0,0 @@
-{ %CPU=x86_64 }
-{ %fail }
-
-// in 64-bit mode is needed exact size of memory operand (32- or 64 bit)
-{$asmmode intel}
-procedure test; assembler; nostackframe;
-asm
-   cvtsi2sd  xmm0, [RAX]
-end;
-
-begin
-end.

+ 0 - 12
tests/test/tasm9.pp

@@ -1,12 +0,0 @@
-{ %CPU=x86_64 }
-{ %fail }
-
-// in 64-bit mode is needed exact size of memory operand (32- or 64 bit)
-{$asmmode intel}
-procedure test; assembler; nostackframe;
-asm
-   vcvtsi2ss  xmm0, xmm0, [RAX]
-end;
-
-begin
-end.