You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, Is that x86_emulate_instruction can emulate all instructions? I want to emulate some call instruction,but I don't know how to do it,Do you have any information about this problem,Thanks.
The text was updated successfully, but these errors were encountered:
I'm not knowledgable about the kvm part, but an emulator is complicated piece of software to implement and will always be incomplete.
Althought, the call instruction is very common and should be implemented I believe.
@wangbaba523, the KVM emulator cannot emulate any instruction, but those instructions that cannot be emulated can be transparently single-stepped. Just track the execute access and allow the access to happen (when you handle the memory access event). If the instruction cannot be emulated, the vCPU will be single-stepped.
Hello, Is that x86_emulate_instruction can emulate all instructions? I want to emulate some call instruction,but I don't know how to do it,Do you have any information about this problem,Thanks.
The text was updated successfully, but these errors were encountered: