view norun/a/asm_fxrstor_01.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 275d8482722d
children
line wrap: on
line source

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

module dstress.norun.a.asm_fxrstor_01;

int main(){
	version(D_InlineAsm_X86){
		ubyte[] data;
		data.length = 512+1;

		if(!((cast(size_t)data.ptr) % 16)){
			data = data[1 .. $];
		}

		asm{
			fxrstor data;
		}

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