view run/a/asm_pfrsqrt_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 61d7e32e70a8
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

module dstress.run.a.asm_pfrsqrt_01_A;

version(D_InlineAsm_X86){
	version = runTest;
}else version(D_InlineAsm_X86_64){
	version = runTest;
}

version(runTest){
	import addon.cpuinfo;

	int main(){
		have3DNow!()();

		float* a = (new float[2]).ptr;
		a[0] = 4.0f;
		a[1] = 3.3f;

		static if(size_t.sizeof == 4){
			asm{
				mov EAX, a;
				pfrsqrt MM0, [EAX];
				movq [EAX], MM0;
				emms;
			}
		}else static if(size_t.sizeof == 8){
			asm{
				mov RAX, a;
				pfrsqrt MM0, [RAX];
				movq [RAX], MM0;
				emms;
			}
		}else{
			static assert(0, "unhandled pointer size");
		}

		a[0] -= 0.5f;
		if(a[0] < 0.0f){
			a[0] = -a[0];
		}
		if(a[0] > float.epsilon * (1 << 11)){
			assert(0);
		}

		a[1] -= 0.5f;
		if(a[1] < 0.0f){
			a[1] = -a[1];
		}
		if(a[1] > float.epsilon * (1 << 11)){
			assert(0);
		}

		return 0;
	}
}else{
	pragma(msg, "DSTRESS{XFAIL}: no inline ASM support");
	static assert(0);
}