xxxxxxxxxx
module runnable;
import std.stdio;
alias writeInt = writeln!int;
struct MyStruct{int i;}
extern(D) void foo(MyStruct* s1, MyStruct* s2, MyStruct* s3, MyStruct* s4)
{
asm
{
naked;
mov RAX, RDI; // move s4 here since we call something...
push RDX; // save s2
push RSI; // save s3
push RAX; // save s4
mov RDI, MyStruct.i.offsetof[RCX]; // move s1.i in first param
call writeInt;
pop RAX; // restore...
pop RSI;
pop RDX;
push RSI; // save s3
push RAX; // save s4
mov RDI, MyStruct.i.offsetof[RDX]; // move s2.i in first param
call writeInt;
pop RAX; // restore
pop RSI;
push RAX; // save s4
mov RDI, MyStruct.i.offsetof[RSI]; // move s3.i in first param
call writeInt;
pop RAX; // restore
mov RDI, MyStruct.i.offsetof[RAX]; // move s4.i in first param
call writeInt;
ret;
}
}
void main()
{
MyStruct s1 = MyStruct(1);
MyStruct s2 = MyStruct(2);
MyStruct s3 = MyStruct(3);
MyStruct s4 = MyStruct(4);
foo(&s1, &s2, &s3, &s4);
}