mirror of
https://github.com/RGBCube/serenity
synced 2025-05-26 01:45:06 +00:00
UserspaceEmulator: Remove some FPU debug spam
This commit is contained in:
parent
a031c6c754
commit
ca85ecc032
1 changed files with 0 additions and 2 deletions
|
@ -1781,7 +1781,6 @@ void SoftCPU::FSUBR_RM64(const X86::Instruction& insn)
|
||||||
// FIXME: Respect shadow values
|
// FIXME: Respect shadow values
|
||||||
auto f64 = bit_cast<double>(new_f64.value());
|
auto f64 = bit_cast<double>(new_f64.value());
|
||||||
fpu_set(0, f64 - fpu_get(0));
|
fpu_set(0, f64 - fpu_get(0));
|
||||||
dbg() << "fsub.64: " << (double)fpu_get(0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void SoftCPU::FDIV_RM64(const X86::Instruction& insn)
|
void SoftCPU::FDIV_RM64(const X86::Instruction& insn)
|
||||||
|
@ -1957,7 +1956,6 @@ void SoftCPU::FCOMIP(const X86::Instruction& insn)
|
||||||
void SoftCPU::FISTP_RM64(const X86::Instruction& insn)
|
void SoftCPU::FISTP_RM64(const X86::Instruction& insn)
|
||||||
{
|
{
|
||||||
ASSERT(!insn.modrm().is_register());
|
ASSERT(!insn.modrm().is_register());
|
||||||
dbg() << "fistp64";
|
|
||||||
auto f = fpu_pop();
|
auto f = fpu_pop();
|
||||||
// FIXME: Respect rounding mode in m_fpu_cw.
|
// FIXME: Respect rounding mode in m_fpu_cw.
|
||||||
auto i64 = static_cast<int64_t>(f);
|
auto i64 = static_cast<int64_t>(f);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue