view run/a/asm_pfrsqrtit1_01_B.d @ 984:9acd7becc753

added 3DNow! tests - all of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
author thomask
date Mon, 01 May 2006 14:38:44 +0000
parents
children f34b7d4a2db7
line wrap: on
line source

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

module dstress.run.a.asm_pfrsqrtit1_01_B;

int main(){
	version(D_InlineAsm_X86){
		const float[2] A = [4.0f, 0.5f];
		float[2] c;

		asm{
			movq MM1, A;
			pfrsqrt MM0, MM1;
			pfrsqit1 MM0, MM1;
			movq c, MM0;
		}

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

		return 0;
	}else{
		pragma(msg, "no Inline asm support");
		static assert(0);
	}
}