We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vmx_exit_handler( uint64_t vcpuid, void* vcpuctx, const char* data, uint32_t length, const void** out, uint32_t* out_length ) { print_guest_state("Guest: %s%s", ...); }
print_guest_state("Guest: %s%s", ...); --> ... lea rcx, [rip + rel32] call print_guest_state
vmx_exit_handler --> ... int3 int3 ----------Prolog------------- mov [rsp + 8], rcx
The text was updated successfully, but these errors were encountered:
No branches or pull requests
vmx_exit_handler(
uint64_t vcpuid, void* vcpuctx,
const char* data, uint32_t length,
const void** out, uint32_t* out_length )
{
print_guest_state("Guest: %s%s", ...);
}
print_guest_state("Guest: %s%s", ...);
-->
...
lea rcx, [rip + rel32]
call print_guest_state
vmx_exit_handler
-->
...
int3
int3
----------Prolog-------------
mov [rsp + 8], rcx
The text was updated successfully, but these errors were encountered: