annotate run/a/asm_movss_01_C.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_movss_01_C;
1002
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
6 version(D_InlineAsm_X86){
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
7 version = runTest;
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
8 }else version(D_InlineAsm_X86_64){
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
9 version = runTest;
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
10 }
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
11
1002
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
12 version(runTest){
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
13 import addon.cpuinfo;
1044
03c97933de98 inline ASM review
thomask
parents: 1002
diff changeset
14
1002
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
15 int main(){
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
16 haveSSE!()();
1044
03c97933de98 inline ASM review
thomask
parents: 1002
diff changeset
17
1265
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
18 float* a = (new float[4]).ptr;
1071
f9084d3862e8 pre 0.162 review
thomask
parents: 1044
diff changeset
19 a[0] = 1.0f;
f9084d3862e8 pre 0.162 review
thomask
parents: 1044
diff changeset
20 a[1] = 2.0f;
f9084d3862e8 pre 0.162 review
thomask
parents: 1044
diff changeset
21 a[2] = 3.0f;
f9084d3862e8 pre 0.162 review
thomask
parents: 1044
diff changeset
22 a[3] = 4.0f;
f9084d3862e8 pre 0.162 review
thomask
parents: 1044
diff changeset
23
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
24 float b;
1044
03c97933de98 inline ASM review
thomask
parents: 1002
diff changeset
25
1265
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
26 static if(size_t.sizeof == 4){
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
27 asm{
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
28 mov EAX, a;
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
29 movups XMM0, [EAX];
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
30 movss b, XMM0;
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
31 }
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
32 }else static if(size_t.sizeof == 8){
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
33 asm{
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
34 mov RAX, a;
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
35 movups XMM0, [RAX];
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
36 movss b, XMM0;
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
37 }
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
38 }else{
236f0d02b8b9 32<->64 iasm fixes
thomask
parents: 1071
diff changeset
39 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
40 }
1044
03c97933de98 inline ASM review
thomask
parents: 1002
diff changeset
41
1071
f9084d3862e8 pre 0.162 review
thomask
parents: 1044
diff changeset
42 if(b != a[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
43 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
44 }
642e3fea11a9 extended SSE tests - most of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
thomask
parents:
diff changeset
45
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 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
47 }
1002
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
48 }else{
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
49 pragma(msg, "DSTRESS{XFAIL}: no inline ASM support");
a7310ceac844 inline ASM review
thomask
parents: 983
diff changeset
50 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
51 }