1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:48:11 +00:00

LibX86: Support disassembling a few FPU opcodes better

This commit is contained in:
Nico Weber 2020-07-25 19:31:58 -04:00 committed by Andreas Kling
parent d8c8820ee9
commit f6db97b8a9
5 changed files with 126 additions and 6 deletions

View file

@ -1347,6 +1347,22 @@ void SoftCPU::ESCAPE(const X86::Instruction&)
TODO();
}
void SoftCPU::FADD_RM32(const X86::Instruction&) { TODO(); }
void SoftCPU::FMUL_RM32(const X86::Instruction&) { TODO(); }
void SoftCPU::FCOM_RM32(const X86::Instruction&) { TODO(); }
void SoftCPU::FCOMP_RM32(const X86::Instruction&) { TODO(); }
void SoftCPU::FSUB_RM32(const X86::Instruction&) { TODO(); }
void SoftCPU::FSUBR_RM32(const X86::Instruction&) { TODO(); }
void SoftCPU::FDIV_RM32(const X86::Instruction&) { TODO(); }
void SoftCPU::FDIVR_RM32(const X86::Instruction&) { TODO(); }
void SoftCPU::FADD_RM64(const X86::Instruction&) { TODO(); }
void SoftCPU::FMUL_RM64(const X86::Instruction&) { TODO(); }
void SoftCPU::FCOM_RM64(const X86::Instruction&) { TODO(); }
void SoftCPU::FCOMP_RM64(const X86::Instruction&) { TODO(); }
void SoftCPU::FSUB_RM64(const X86::Instruction&) { TODO(); }
void SoftCPU::FSUBR_RM64(const X86::Instruction&) { TODO(); }
void SoftCPU::FDIV_RM64(const X86::Instruction&) { TODO(); }
void SoftCPU::FDIVR_RM64(const X86::Instruction&) { TODO(); }
void SoftCPU::HLT(const X86::Instruction&) { TODO(); }
void SoftCPU::IDIV_RM16(const X86::Instruction& insn)