annotate run/a/asm_movshdup_01_A.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents 236f0d02b8b9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
983
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
1 // $HeadURL$
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
2 // $Date$
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
3 // $Author$
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
4
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
5 module dstress.run.a.asm_movshdup_01_A;
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
6
1002
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
7 version(D_InlineAsm_X86){
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
8 version = runTest;
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
9 }else version(D_InlineAsm_X86_64){
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
10 version = runTest;
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
11 }
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
12
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
13 version(runTest){
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
14 import addon.cpuinfo;
1044
03c97933de98 inline ASM review
thomask
parents: 1028
diff changeset
15
1002
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
16 int main(){
1265
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
17 float* a = (new float[4]).ptr;
1071
f9084d3862e8 pre 0.162 review
thomask
parents: 1044
diff changeset
18 a[0] = 1.0f;
f9084d3862e8 pre 0.162 review
thomask
parents: 1044
diff changeset
19 a[1] = -1.0f;
f9084d3862e8 pre 0.162 review
thomask
parents: 1044
diff changeset
20 a[2] = -2.0f;
f9084d3862e8 pre 0.162 review
thomask
parents: 1044
diff changeset
21 a[3] = 2.0f;
f9084d3862e8 pre 0.162 review
thomask
parents: 1044
diff changeset
22
1265
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
23 float* b = (new float[4]).ptr;
1044
03c97933de98 inline ASM review
thomask
parents: 1028
diff changeset
24
1265
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
25 static if(size_t.sizeof == 4){
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
26 asm{
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
27 mov EAX, a;
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
28 movups XMM0, [EAX];
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
29 movshdup XMM1, XMM0;
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
30 mov EAX, b;
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
31 movups [EAX], XMM1;
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
32 }
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
33 }else static if(size_t.sizeof == 8){
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
34 asm{
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
35 mov RAX, a;
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
36 movups XMM0, [RAX];
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
37 movshdup XMM1, XMM0;
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
38 mov RAX, b;
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
39 movups [RAX], XMM1;
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
40 }
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
41 }else{
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
42 static assert(0, "unhandled pointer size");
983
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
43 }
1044
03c97933de98 inline ASM review
thomask
parents: 1028
diff changeset
44
1028
26ae51190cc3 partial dmd-0.158 review
thomask
parents: 1002
diff changeset
45 if(a[1] != b[0]){
983
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
46 assert(0);
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
47 }
1028
26ae51190cc3 partial dmd-0.158 review
thomask
parents: 1002
diff changeset
48 if(a[1] != b[1]){
983
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
49 assert(0);
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
50 }
1028
26ae51190cc3 partial dmd-0.158 review
thomask
parents: 1002
diff changeset
51 if(a[3] != b[2]){
983
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
52 assert(0);
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
53 }
1028
26ae51190cc3 partial dmd-0.158 review
thomask
parents: 1002
diff changeset
54 if(a[3] != b[3]){
983
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
55 assert(0);
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
56 }
1044
03c97933de98 inline ASM review
thomask
parents: 1028
diff changeset
57
983
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
58 return 0;
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
59 }
1002
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
60 }else{
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
61 pragma(msg, "DSTRESS{XFAIL}: no inline ASM support");
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
62 static assert(0);
983
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
63 }