mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:47:35 +00:00
LibX86: Support disassembling a few FPU opcodes better
This commit is contained in:
parent
d8c8820ee9
commit
f6db97b8a9
5 changed files with 126 additions and 6 deletions
|
@ -156,6 +156,22 @@ public:
|
|||
virtual void ENTER16(const Instruction&) = 0;
|
||||
virtual void ENTER32(const Instruction&) = 0;
|
||||
virtual void ESCAPE(const Instruction&) = 0;
|
||||
virtual void FADD_RM32(const Instruction&) = 0;
|
||||
virtual void FMUL_RM32(const Instruction&) = 0;
|
||||
virtual void FCOM_RM32(const Instruction&) = 0;
|
||||
virtual void FCOMP_RM32(const Instruction&) = 0;
|
||||
virtual void FSUB_RM32(const Instruction&) = 0;
|
||||
virtual void FSUBR_RM32(const Instruction&) = 0;
|
||||
virtual void FDIV_RM32(const Instruction&) = 0;
|
||||
virtual void FDIVR_RM32(const Instruction&) = 0;
|
||||
virtual void FADD_RM64(const Instruction&) = 0;
|
||||
virtual void FMUL_RM64(const Instruction&) = 0;
|
||||
virtual void FCOM_RM64(const Instruction&) = 0;
|
||||
virtual void FCOMP_RM64(const Instruction&) = 0;
|
||||
virtual void FSUB_RM64(const Instruction&) = 0;
|
||||
virtual void FSUBR_RM64(const Instruction&) = 0;
|
||||
virtual void FDIV_RM64(const Instruction&) = 0;
|
||||
virtual void FDIVR_RM64(const Instruction&) = 0;
|
||||
virtual void HLT(const Instruction&) = 0;
|
||||
virtual void IDIV_RM16(const Instruction&) = 0;
|
||||
virtual void IDIV_RM32(const Instruction&) = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue