mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibX86: Support disassembling a few FPU opcodes better
This commit is contained in:
committed by
Andreas Kling
parent
d8c8820ee9
commit
f6db97b8a9
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user