Maybe this is worth worth feature request for adding thiscall convention to future fpc?

P.S. and
Code:
  Asm
    mov myself, ECX;
End;
should be
Code:
{$ifndef cpu64}
  Asm
    mov myself, ECX;
  End['ecx'];
{$endif}