mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 02:27:43 +00:00
UserspaceEmulator: Implement the SAR instruction
Let's try doing this with some inline assembly. We know we're running on an x86 target anyway. :^)
This commit is contained in:
parent
3899effb19
commit
04d58f54b3
2 changed files with 118 additions and 28 deletions
|
@ -652,15 +652,80 @@ void SoftCPU::ROR_RM8_CL(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::ROR_RM8_imm8(const X86::Instruction&) { TODO(); }
|
void SoftCPU::ROR_RM8_imm8(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::SAHF(const X86::Instruction&) { TODO(); }
|
void SoftCPU::SAHF(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::SALC(const X86::Instruction&) { TODO(); }
|
void SoftCPU::SALC(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::SAR_RM16_1(const X86::Instruction&) { TODO(); }
|
|
||||||
void SoftCPU::SAR_RM16_CL(const X86::Instruction&) { TODO(); }
|
template<typename T>
|
||||||
void SoftCPU::SAR_RM16_imm8(const X86::Instruction&) { TODO(); }
|
T SoftCPU::sar_impl(T data, u8 steps)
|
||||||
void SoftCPU::SAR_RM32_1(const X86::Instruction&) { TODO(); }
|
{
|
||||||
void SoftCPU::SAR_RM32_CL(const X86::Instruction&) { TODO(); }
|
if (steps == 0)
|
||||||
void SoftCPU::SAR_RM32_imm8(const X86::Instruction&) { TODO(); }
|
return data;
|
||||||
void SoftCPU::SAR_RM8_1(const X86::Instruction&) { TODO(); }
|
|
||||||
void SoftCPU::SAR_RM8_CL(const X86::Instruction&) { TODO(); }
|
u32 result = 0;
|
||||||
void SoftCPU::SAR_RM8_imm8(const X86::Instruction&) { TODO(); }
|
u32 new_flags = 0;
|
||||||
|
asm("sarl %%cl, %%eax\n"
|
||||||
|
"mov %%eax, %%ebx\n"
|
||||||
|
"pushf\n"
|
||||||
|
"pop %%eax\n"
|
||||||
|
: "=a"(new_flags), "=b"(result)
|
||||||
|
: "a"(data), "c"(steps));
|
||||||
|
|
||||||
|
set_flags_oszapc(new_flags);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
void SoftCPU::SAR_RM16_1(const X86::Instruction& insn)
|
||||||
|
{
|
||||||
|
auto data = insn.modrm().read16(*this, insn);
|
||||||
|
insn.modrm().write16(*this, insn, sar_impl(data, 1));
|
||||||
|
}
|
||||||
|
|
||||||
|
void SoftCPU::SAR_RM16_CL(const X86::Instruction& insn)
|
||||||
|
{
|
||||||
|
auto data = insn.modrm().read16(*this, insn);
|
||||||
|
insn.modrm().write16(*this, insn, sar_impl(data, cl()));
|
||||||
|
}
|
||||||
|
|
||||||
|
void SoftCPU::SAR_RM16_imm8(const X86::Instruction& insn)
|
||||||
|
{
|
||||||
|
auto data = insn.modrm().read16(*this, insn);
|
||||||
|
insn.modrm().write16(*this, insn, sar_impl(data, insn.imm8()));
|
||||||
|
}
|
||||||
|
|
||||||
|
void SoftCPU::SAR_RM32_1(const X86::Instruction& insn)
|
||||||
|
{
|
||||||
|
auto data = insn.modrm().read32(*this, insn);
|
||||||
|
insn.modrm().write32(*this, insn, sar_impl(data, 1));
|
||||||
|
}
|
||||||
|
|
||||||
|
void SoftCPU::SAR_RM32_CL(const X86::Instruction& insn)
|
||||||
|
{
|
||||||
|
auto data = insn.modrm().read32(*this, insn);
|
||||||
|
insn.modrm().write32(*this, insn, sar_impl(data, cl()));
|
||||||
|
}
|
||||||
|
|
||||||
|
void SoftCPU::SAR_RM32_imm8(const X86::Instruction& insn)
|
||||||
|
{
|
||||||
|
auto data = insn.modrm().read32(*this, insn);
|
||||||
|
insn.modrm().write32(*this, insn, sar_impl(data, insn.imm8()));
|
||||||
|
}
|
||||||
|
|
||||||
|
void SoftCPU::SAR_RM8_1(const X86::Instruction& insn)
|
||||||
|
{
|
||||||
|
auto data = insn.modrm().read8(*this, insn);
|
||||||
|
insn.modrm().write8(*this, insn, sar_impl(data, 1));
|
||||||
|
}
|
||||||
|
|
||||||
|
void SoftCPU::SAR_RM8_CL(const X86::Instruction& insn)
|
||||||
|
{
|
||||||
|
auto data = insn.modrm().read8(*this, insn);
|
||||||
|
insn.modrm().write8(*this, insn, sar_impl(data, cl()));
|
||||||
|
}
|
||||||
|
|
||||||
|
void SoftCPU::SAR_RM8_imm8(const X86::Instruction& insn)
|
||||||
|
{
|
||||||
|
auto data = insn.modrm().read8(*this, insn);
|
||||||
|
insn.modrm().write8(*this, insn, sar_impl(data, insn.imm8()));
|
||||||
|
}
|
||||||
|
|
||||||
void SoftCPU::SBB_AL_imm8(const X86::Instruction&) { TODO(); }
|
void SoftCPU::SBB_AL_imm8(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::SBB_AX_imm16(const X86::Instruction&) { TODO(); }
|
void SoftCPU::SBB_AX_imm16(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::SBB_EAX_imm32(const X86::Instruction&) { TODO(); }
|
void SoftCPU::SBB_EAX_imm32(const X86::Instruction&) { TODO(); }
|
||||||
|
|
|
@ -53,6 +53,20 @@ public:
|
||||||
explicit SoftCPU(Emulator&);
|
explicit SoftCPU(Emulator&);
|
||||||
void dump() const;
|
void dump() const;
|
||||||
|
|
||||||
|
struct Flags {
|
||||||
|
enum Flag {
|
||||||
|
CF = 0x0001,
|
||||||
|
PF = 0x0004,
|
||||||
|
AF = 0x0010,
|
||||||
|
ZF = 0x0040,
|
||||||
|
SF = 0x0080,
|
||||||
|
TF = 0x0100,
|
||||||
|
IF = 0x0200,
|
||||||
|
DF = 0x0400,
|
||||||
|
OF = 0x0800,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
void push32(u32);
|
void push32(u32);
|
||||||
u32 pop32();
|
u32 pop32();
|
||||||
|
|
||||||
|
@ -165,19 +179,27 @@ public:
|
||||||
void set_dl(u8 value) { gpr8(X86::RegisterDL) = value; }
|
void set_dl(u8 value) { gpr8(X86::RegisterDL) = value; }
|
||||||
void set_dh(u8 value) { gpr8(X86::RegisterDH) = value; }
|
void set_dh(u8 value) { gpr8(X86::RegisterDH) = value; }
|
||||||
|
|
||||||
bool of() const { return m_of; }
|
bool of() const { return m_eflags & Flags::OF; }
|
||||||
bool sf() const { return m_sf; }
|
bool sf() const { return m_eflags & Flags::SF; }
|
||||||
bool zf() const { return m_zf; }
|
bool zf() const { return m_eflags & Flags::ZF; }
|
||||||
bool af() const { return m_af; }
|
bool af() const { return m_eflags & Flags::AF; }
|
||||||
bool pf() const { return m_pf; }
|
bool pf() const { return m_eflags & Flags::PF; }
|
||||||
bool cf() const { return m_cf; }
|
bool cf() const { return m_eflags & Flags::CF; }
|
||||||
|
|
||||||
void set_of(bool value) { m_of = value; }
|
void set_flag(Flags::Flag flag, bool value)
|
||||||
void set_sf(bool value) { m_sf = value; }
|
{
|
||||||
void set_zf(bool value) { m_zf = value; }
|
if (value)
|
||||||
void set_af(bool value) { m_af = value; }
|
m_eflags |= flag;
|
||||||
void set_pf(bool value) { m_pf = value; }
|
else
|
||||||
void set_cf(bool value) { m_cf = value; }
|
m_eflags &= ~flag;
|
||||||
|
}
|
||||||
|
|
||||||
|
void set_of(bool value) { set_flag(Flags::OF, value); }
|
||||||
|
void set_sf(bool value) { set_flag(Flags::SF, value); }
|
||||||
|
void set_zf(bool value) { set_flag(Flags::ZF, value); }
|
||||||
|
void set_af(bool value) { set_flag(Flags::AF, value); }
|
||||||
|
void set_pf(bool value) { set_flag(Flags::PF, value); }
|
||||||
|
void set_cf(bool value) { set_flag(Flags::CF, value); }
|
||||||
|
|
||||||
u16 cs() const { return m_segment[(int)X86::SegmentRegister::CS]; }
|
u16 cs() const { return m_segment[(int)X86::SegmentRegister::CS]; }
|
||||||
u16 ds() const { return m_segment[(int)X86::SegmentRegister::DS]; }
|
u16 ds() const { return m_segment[(int)X86::SegmentRegister::DS]; }
|
||||||
|
@ -692,18 +714,21 @@ private:
|
||||||
template<typename Op>
|
template<typename Op>
|
||||||
void generic_reg8_RM8(Op, const X86::Instruction&);
|
void generic_reg8_RM8(Op, const X86::Instruction&);
|
||||||
|
|
||||||
|
template<typename T>
|
||||||
|
T sar_impl(T data, u8 steps);
|
||||||
|
|
||||||
|
void set_flags_oszapc(u32 new_flags)
|
||||||
|
{
|
||||||
|
m_eflags &= ~(Flags::OF | Flags::SF | Flags::ZF | Flags::AF | Flags::PF | Flags::CF);
|
||||||
|
m_eflags |= new_flags & (Flags::OF | Flags::SF | Flags::ZF | Flags::AF | Flags::PF | Flags::CF);
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Emulator& m_emulator;
|
Emulator& m_emulator;
|
||||||
|
|
||||||
PartAddressableRegister m_gpr[8];
|
PartAddressableRegister m_gpr[8];
|
||||||
u16 m_segment[8] { 0 };
|
u16 m_segment[8] { 0 };
|
||||||
|
u32 m_eflags { 0 };
|
||||||
bool m_of { false };
|
|
||||||
bool m_sf { false };
|
|
||||||
bool m_zf { false };
|
|
||||||
bool m_af { false };
|
|
||||||
bool m_pf { false };
|
|
||||||
bool m_cf { false };
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue