view run/a/asm_pop_01_B.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 03c97933de98
children
line wrap: on
line source

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

module dstress.run.a.asm_pop_01_B;

version(D_InlineAsm_X86){
	version = runTest;
}

version(runTest){
	int main(){
		uint a = 0x12AB_34CD;
		uint b = 0;
		size_t p1, p2, p3;

		static if(size_t.sizeof == 4){
			asm{
				mov p1, ESP;
				push a;
				mov p2, ESP;
				pop b;
				mov p3, ESP;
			}
		}else{
			pragma(msg, "DSTRESS{ERROR}: unhandled size of void pointer");
			static assert(0);
		}

		if(p1 != p3){
			assert(0);
		}
		if(p1-4 != p2){
			assert(0);
		}
		if(b != 0x12AB_34CD){
			assert(0);
		}

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