Need to correctly figure out current calling convention depending on debuggee's bitness
Closed this issue · 3 comments
10110111 commented
Subj.
10110111 commented
Done for syscalls, usual function calls remain.
10110111 commented
In fact, it's not quite right for syscalls. The calling convention depends on mechanism: for sysenter
it's a bit different from int 0x80
, which is very different from syscall
. And both latter ways work on x86-64.
10110111 commented
Done upstream.