Skip to content

Commit

Permalink
Implemented _xsaves, _xrstors.
Browse files Browse the repository at this point in the history
  • Loading branch information
can1357 committed Dec 2, 2021
1 parent 081ad6a commit fe984a8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,9 @@ constexpr std::pair<uint16_t, const char*> simple_instruction_list[] =
{ NN_vmxoff, "__vmxoff" },
{ NN_vmxon, "__vmxon" },
{ NN_invpcid, "_invpcid" },
{ NN_invlpga, "_invlpga" }
{ NN_invlpga, "_invlpga" },
{ NN_xsaves, "_xsaves" },
{ NN_xrstors, "_xrstors" }
// TODO: vmfunc.
};
hex::microcode_filter simple_instruction_lifter = [ ] ( codegen_t& cg )
Expand Down

0 comments on commit fe984a8

Please sign in to comment.