123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664 |
- /*
- * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include "SoftCPU.h"
- #include "Emulator.h"
- #include <AK/Assertions.h>
- #include <stdio.h>
- #include <string.h>
- namespace UserspaceEmulator {
- template<typename T>
- struct TypeDoubler {
- };
- template<>
- struct TypeDoubler<u8> {
- typedef u16 type;
- };
- template<>
- struct TypeDoubler<u16> {
- typedef u32 type;
- };
- template<>
- struct TypeDoubler<u32> {
- typedef u64 type;
- };
- template<>
- struct TypeDoubler<i8> {
- typedef i16 type;
- };
- template<>
- struct TypeDoubler<i16> {
- typedef i32 type;
- };
- template<>
- struct TypeDoubler<i32> {
- typedef i64 type;
- };
- SoftCPU::SoftCPU(Emulator& emulator)
- : m_emulator(emulator)
- {
- memset(m_gpr, 0, sizeof(m_gpr));
- m_segment[(int)X86::SegmentRegister::CS] = 0x18;
- m_segment[(int)X86::SegmentRegister::DS] = 0x20;
- m_segment[(int)X86::SegmentRegister::ES] = 0x20;
- m_segment[(int)X86::SegmentRegister::SS] = 0x20;
- }
- void SoftCPU::dump() const
- {
- printf("eax=%08x ebx=%08x ecx=%08x edx=%08x ", eax(), ebx(), ecx(), edx());
- printf("ebp=%08x esp=%08x esi=%08x edi=%08x ", ebp(), esp(), esi(), edi());
- printf("o=%u s=%u z=%u a=%u p=%u c=%u\n", of(), sf(), zf(), af(), pf(), cf());
- }
- u32 SoftCPU::read_memory32(X86::LogicalAddress address)
- {
- ASSERT(address.selector() == 0x20);
- auto value = m_emulator.mmu().read32(address.offset());
- printf("\033[36;1mread_memory32: @%08x -> %08x\033[0m\n", address.offset(), value);
- return value;
- }
- void SoftCPU::write_memory32(X86::LogicalAddress address, u32 value)
- {
- ASSERT(address.selector() == 0x20);
- printf("\033[35;1mwrite_memory32: @%08x <- %08x\033[0m\n", address.offset(), value);
- m_emulator.mmu().write32(address.offset(), value);
- }
- void SoftCPU::push32(u32 value)
- {
- set_esp(esp() - sizeof(value));
- write_memory32({ ss(), esp() }, value);
- }
- u32 SoftCPU::pop32()
- {
- auto value = read_memory32({ ss(), esp() });
- set_esp(esp() + sizeof(value));
- return value;
- }
- template<typename Destination, typename Source>
- static typename TypeDoubler<Destination>::type op_xor(SoftCPU& cpu, Destination& dest, const Source& src)
- {
- auto result = dest ^ src;
- cpu.set_zf(dest == 0);
- cpu.set_sf(dest & 0x80000000);
- // FIXME: set_pf
- cpu.set_of(false);
- cpu.set_cf(false);
- return result;
- }
- template<typename Op>
- void SoftCPU::generic_RM32_reg32(Op op, const X86::Instruction& insn)
- {
- auto dest = insn.modrm().read32(*this, insn);
- auto src = gpr32(insn.reg32());
- auto result = op(*this, dest, src);
- insn.modrm().write32(*this, insn, result);
- }
- template<typename Op>
- void SoftCPU::generic_RM32_imm32(Op op, const X86::Instruction& insn)
- {
- auto dest = insn.modrm().read32(*this, insn);
- auto src = insn.imm32();
- auto result = op(*this, dest, src);
- insn.modrm().write32(*this, insn, result);
- }
- template<typename Op>
- void SoftCPU::generic_RM32_imm8(Op op, const X86::Instruction& insn)
- {
- auto dest = insn.modrm().read32(*this, insn);
- auto src = insn.imm8();
- auto result = op(*this, dest, src);
- insn.modrm().write32(*this, insn, result);
- }
- void SoftCPU::AAA(const X86::Instruction&) { TODO(); }
- void SoftCPU::AAD(const X86::Instruction&) { TODO(); }
- void SoftCPU::AAM(const X86::Instruction&) { TODO(); }
- void SoftCPU::AAS(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADC_AL_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADC_AX_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADC_EAX_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADC_RM16_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADC_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADC_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADC_RM32_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADC_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADC_RM32_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADC_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADC_RM8_reg8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADC_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADC_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADC_reg8_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADD_AL_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADD_AX_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADD_EAX_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADD_RM16_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADD_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADD_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADD_RM32_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADD_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADD_RM32_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADD_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADD_RM8_reg8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADD_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADD_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::ADD_reg8_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::AND_AL_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::AND_AX_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::AND_EAX_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::AND_RM16_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::AND_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::AND_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::AND_RM32_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::AND_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::AND_RM32_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::AND_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::AND_RM8_reg8(const X86::Instruction&) { TODO(); }
- void SoftCPU::AND_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::AND_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::AND_reg8_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ARPL(const X86::Instruction&) { TODO(); }
- void SoftCPU::BOUND(const X86::Instruction&) { TODO(); }
- void SoftCPU::BSF_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::BSF_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::BSR_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::BSR_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::BSWAP_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::BTC_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::BTC_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::BTC_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::BTC_RM32_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::BTR_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::BTR_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::BTR_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::BTR_RM32_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::BTS_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::BTS_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::BTS_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::BTS_RM32_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::BT_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::BT_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::BT_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::BT_RM32_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::CALL_FAR_mem16(const X86::Instruction&) { TODO(); }
- void SoftCPU::CALL_FAR_mem32(const X86::Instruction&) { TODO(); }
- void SoftCPU::CALL_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::CALL_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::CALL_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::CALL_imm16_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::CALL_imm16_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::CALL_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::CBW(const X86::Instruction&) { TODO(); }
- void SoftCPU::CDQ(const X86::Instruction&) { TODO(); }
- void SoftCPU::CLC(const X86::Instruction&) { TODO(); }
- void SoftCPU::CLD(const X86::Instruction&) { TODO(); }
- void SoftCPU::CLI(const X86::Instruction&) { TODO(); }
- void SoftCPU::CLTS(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMC(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMOVcc_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMOVcc_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMPSB(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMPSD(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMPSW(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMPXCHG_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMPXCHG_RM32_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMPXCHG_RM8_reg8(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMP_AL_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMP_AX_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMP_EAX_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMP_RM16_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMP_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMP_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMP_RM32_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMP_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMP_RM32_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMP_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMP_RM8_reg8(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMP_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMP_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::CMP_reg8_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::CPUID(const X86::Instruction&) { TODO(); }
- void SoftCPU::CWD(const X86::Instruction&) { TODO(); }
- void SoftCPU::CWDE(const X86::Instruction&) { TODO(); }
- void SoftCPU::DAA(const X86::Instruction&) { TODO(); }
- void SoftCPU::DAS(const X86::Instruction&) { TODO(); }
- void SoftCPU::DEC_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::DEC_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::DEC_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::DEC_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::DEC_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::DIV_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::DIV_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::DIV_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ENTER16(const X86::Instruction&) { TODO(); }
- void SoftCPU::ENTER32(const X86::Instruction&) { TODO(); }
- void SoftCPU::ESCAPE(const X86::Instruction&) { TODO(); }
- void SoftCPU::HLT(const X86::Instruction&) { TODO(); }
- void SoftCPU::IDIV_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::IDIV_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::IDIV_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::IMUL_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::IMUL_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::IMUL_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::IMUL_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::IMUL_reg16_RM16_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::IMUL_reg16_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::IMUL_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::IMUL_reg32_RM32_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::IMUL_reg32_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::INC_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::INC_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::INC_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::INC_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::INC_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::INSB(const X86::Instruction&) { TODO(); }
- void SoftCPU::INSD(const X86::Instruction&) { TODO(); }
- void SoftCPU::INSW(const X86::Instruction&) { TODO(); }
- void SoftCPU::INT3(const X86::Instruction&) { TODO(); }
- void SoftCPU::INTO(const X86::Instruction&) { TODO(); }
- void SoftCPU::INT_imm8(const X86::Instruction& insn)
- {
- ASSERT(insn.imm8() == 0x82);
- set_eax(m_emulator.virt_syscall(eax(), edx(), ecx(), ebx()));
- }
- void SoftCPU::INVLPG(const X86::Instruction&) { TODO(); }
- void SoftCPU::IN_AL_DX(const X86::Instruction&) { TODO(); }
- void SoftCPU::IN_AL_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::IN_AX_DX(const X86::Instruction&) { TODO(); }
- void SoftCPU::IN_AX_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::IN_EAX_DX(const X86::Instruction&) { TODO(); }
- void SoftCPU::IN_EAX_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::IRET(const X86::Instruction&) { TODO(); }
- void SoftCPU::JCXZ_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::JMP_FAR_mem16(const X86::Instruction&) { TODO(); }
- void SoftCPU::JMP_FAR_mem32(const X86::Instruction&) { TODO(); }
- void SoftCPU::JMP_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::JMP_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::JMP_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::JMP_imm16_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::JMP_imm16_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::JMP_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::JMP_short_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::Jcc_NEAR_imm(const X86::Instruction&) { TODO(); }
- void SoftCPU::Jcc_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::LAHF(const X86::Instruction&) { TODO(); }
- void SoftCPU::LAR_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::LAR_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::LDS_reg16_mem16(const X86::Instruction&) { TODO(); }
- void SoftCPU::LDS_reg32_mem32(const X86::Instruction&) { TODO(); }
- void SoftCPU::LEAVE16(const X86::Instruction&) { TODO(); }
- void SoftCPU::LEAVE32(const X86::Instruction&) { TODO(); }
- void SoftCPU::LEA_reg16_mem16(const X86::Instruction&) { TODO(); }
- void SoftCPU::LEA_reg32_mem32(const X86::Instruction&) { TODO(); }
- void SoftCPU::LES_reg16_mem16(const X86::Instruction&) { TODO(); }
- void SoftCPU::LES_reg32_mem32(const X86::Instruction&) { TODO(); }
- void SoftCPU::LFS_reg16_mem16(const X86::Instruction&) { TODO(); }
- void SoftCPU::LFS_reg32_mem32(const X86::Instruction&) { TODO(); }
- void SoftCPU::LGDT(const X86::Instruction&) { TODO(); }
- void SoftCPU::LGS_reg16_mem16(const X86::Instruction&) { TODO(); }
- void SoftCPU::LGS_reg32_mem32(const X86::Instruction&) { TODO(); }
- void SoftCPU::LIDT(const X86::Instruction&) { TODO(); }
- void SoftCPU::LLDT_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::LMSW_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::LODSB(const X86::Instruction&) { TODO(); }
- void SoftCPU::LODSD(const X86::Instruction&) { TODO(); }
- void SoftCPU::LODSW(const X86::Instruction&) { TODO(); }
- void SoftCPU::LOOPNZ_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::LOOPZ_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::LOOP_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::LSL_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::LSL_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::LSS_reg16_mem16(const X86::Instruction&) { TODO(); }
- void SoftCPU::LSS_reg32_mem32(const X86::Instruction&) { TODO(); }
- void SoftCPU::LTR_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOVSB(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOVSD(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOVSW(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOVSX_reg16_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOVSX_reg32_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOVSX_reg32_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOVZX_reg16_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOVZX_reg32_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOVZX_reg32_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_AL_moff8(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_AX_moff16(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_CR_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_DR_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_EAX_moff32(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_RM16_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_RM16_seg(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_RM32_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_RM32_reg32(const X86::Instruction& insn)
- {
- ASSERT(insn.modrm().is_register());
- gpr32(insn.modrm().reg32()) = gpr32(insn.reg32());
- }
- void SoftCPU::MOV_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_RM8_reg8(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_moff16_AX(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_moff32_EAX(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_moff8_AL(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_reg16_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_reg32_CR(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_reg32_DR(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_reg32_imm32(const X86::Instruction& insn)
- {
- gpr32(insn.reg32()) = insn.imm32();
- }
- void SoftCPU::MOV_reg8_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_reg8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_seg_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOV_seg_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::MUL_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::MUL_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::MUL_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::NEG_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::NEG_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::NEG_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::NOP(const X86::Instruction&) { TODO(); }
- void SoftCPU::NOT_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::NOT_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::NOT_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::OR_AL_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::OR_AX_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::OR_EAX_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::OR_RM16_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::OR_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::OR_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::OR_RM32_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::OR_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::OR_RM32_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::OR_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::OR_RM8_reg8(const X86::Instruction&) { TODO(); }
- void SoftCPU::OR_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::OR_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::OR_reg8_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::OUTSB(const X86::Instruction&) { TODO(); }
- void SoftCPU::OUTSD(const X86::Instruction&) { TODO(); }
- void SoftCPU::OUTSW(const X86::Instruction&) { TODO(); }
- void SoftCPU::OUT_DX_AL(const X86::Instruction&) { TODO(); }
- void SoftCPU::OUT_DX_AX(const X86::Instruction&) { TODO(); }
- void SoftCPU::OUT_DX_EAX(const X86::Instruction&) { TODO(); }
- void SoftCPU::OUT_imm8_AL(const X86::Instruction&) { TODO(); }
- void SoftCPU::OUT_imm8_AX(const X86::Instruction&) { TODO(); }
- void SoftCPU::OUT_imm8_EAX(const X86::Instruction&) { TODO(); }
- void SoftCPU::PADDB_mm1_mm2m64(const X86::Instruction&) { TODO(); }
- void SoftCPU::PADDW_mm1_mm2m64(const X86::Instruction&) { TODO(); }
- void SoftCPU::PADDD_mm1_mm2m64(const X86::Instruction&) { TODO(); }
- void SoftCPU::POPA(const X86::Instruction&) { TODO(); }
- void SoftCPU::POPAD(const X86::Instruction&) { TODO(); }
- void SoftCPU::POPF(const X86::Instruction&) { TODO(); }
- void SoftCPU::POPFD(const X86::Instruction&) { TODO(); }
- void SoftCPU::POP_DS(const X86::Instruction&) { TODO(); }
- void SoftCPU::POP_ES(const X86::Instruction&) { TODO(); }
- void SoftCPU::POP_FS(const X86::Instruction&) { TODO(); }
- void SoftCPU::POP_GS(const X86::Instruction&) { TODO(); }
- void SoftCPU::POP_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::POP_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::POP_SS(const X86::Instruction&) { TODO(); }
- void SoftCPU::POP_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::POP_reg32(const X86::Instruction& insn)
- {
- gpr32(insn.reg32()) = pop32();
- }
- void SoftCPU::PUSHA(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSHAD(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSHF(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSHFD(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSH_CS(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSH_DS(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSH_ES(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSH_FS(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSH_GS(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSH_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSH_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSH_SP_8086_80186(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSH_SS(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSH_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSH_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSH_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSH_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::PUSH_reg32(const X86::Instruction& insn)
- {
- push32(gpr32(insn.reg32()));
- }
- void SoftCPU::RCL_RM16_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCL_RM16_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCL_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCL_RM32_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCL_RM32_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCL_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCL_RM8_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCL_RM8_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCL_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCR_RM16_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCR_RM16_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCR_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCR_RM32_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCR_RM32_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCR_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCR_RM8_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCR_RM8_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::RCR_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::RDTSC(const X86::Instruction&) { TODO(); }
- void SoftCPU::RET(const X86::Instruction&) { TODO(); }
- void SoftCPU::RETF(const X86::Instruction&) { TODO(); }
- void SoftCPU::RETF_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::RET_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROL_RM16_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROL_RM16_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROL_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROL_RM32_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROL_RM32_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROL_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROL_RM8_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROL_RM8_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROL_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROR_RM16_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROR_RM16_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROR_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROR_RM32_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROR_RM32_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROR_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROR_RM8_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROR_RM8_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::ROR_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SAHF(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(); }
- void SoftCPU::SAR_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SAR_RM32_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::SAR_RM32_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::SAR_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SAR_RM8_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::SAR_RM8_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::SAR_RM8_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_EAX_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::SBB_RM16_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::SBB_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SBB_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::SBB_RM32_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::SBB_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SBB_RM32_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::SBB_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SBB_RM8_reg8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SBB_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::SBB_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::SBB_reg8_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SCASB(const X86::Instruction&) { TODO(); }
- void SoftCPU::SCASD(const X86::Instruction&) { TODO(); }
- void SoftCPU::SCASW(const X86::Instruction&) { TODO(); }
- void SoftCPU::SETcc_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SGDT(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHLD_RM16_reg16_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHLD_RM16_reg16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHLD_RM32_reg32_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHLD_RM32_reg32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHL_RM16_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHL_RM16_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHL_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHL_RM32_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHL_RM32_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHL_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHL_RM8_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHL_RM8_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHL_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHRD_RM16_reg16_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHRD_RM16_reg16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHRD_RM32_reg32_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHRD_RM32_reg32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHR_RM16_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHR_RM16_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHR_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHR_RM32_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHR_RM32_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHR_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHR_RM8_1(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHR_RM8_CL(const X86::Instruction&) { TODO(); }
- void SoftCPU::SHR_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SIDT(const X86::Instruction&) { TODO(); }
- void SoftCPU::SLDT_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::SMSW_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::STC(const X86::Instruction&) { TODO(); }
- void SoftCPU::STD(const X86::Instruction&) { TODO(); }
- void SoftCPU::STI(const X86::Instruction&) { TODO(); }
- void SoftCPU::STOSB(const X86::Instruction&) { TODO(); }
- void SoftCPU::STOSD(const X86::Instruction&) { TODO(); }
- void SoftCPU::STOSW(const X86::Instruction&) { TODO(); }
- void SoftCPU::STR_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::SUB_AL_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SUB_AX_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::SUB_EAX_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::SUB_RM16_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::SUB_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SUB_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::SUB_RM32_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::SUB_RM32_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SUB_RM32_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::SUB_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SUB_RM8_reg8(const X86::Instruction&) { TODO(); }
- void SoftCPU::SUB_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::SUB_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::SUB_reg8_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::TEST_AL_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::TEST_AX_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::TEST_EAX_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::TEST_RM16_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::TEST_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::TEST_RM32_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::TEST_RM32_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::TEST_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::TEST_RM8_reg8(const X86::Instruction&) { TODO(); }
- void SoftCPU::UD0(const X86::Instruction&) { TODO(); }
- void SoftCPU::UD1(const X86::Instruction&) { TODO(); }
- void SoftCPU::UD2(const X86::Instruction&) { TODO(); }
- void SoftCPU::VERR_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::VERW_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::WAIT(const X86::Instruction&) { TODO(); }
- void SoftCPU::WBINVD(const X86::Instruction&) { TODO(); }
- void SoftCPU::XADD_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::XADD_RM32_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::XADD_RM8_reg8(const X86::Instruction&) { TODO(); }
- void SoftCPU::XCHG_AX_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::XCHG_EAX_reg32(const X86::Instruction&) { TODO(); }
- void SoftCPU::XCHG_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::XCHG_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::XCHG_reg8_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::XLAT(const X86::Instruction&) { TODO(); }
- void SoftCPU::XOR_AL_imm8(const X86::Instruction&)
- {
- TODO();
- }
- void SoftCPU::XOR_AX_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::XOR_EAX_imm32(const X86::Instruction&) { TODO(); }
- void SoftCPU::XOR_RM16_imm16(const X86::Instruction&) { TODO(); }
- void SoftCPU::XOR_RM16_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::XOR_RM16_reg16(const X86::Instruction&) { TODO(); }
- void SoftCPU::XOR_RM32_imm32(const X86::Instruction& insn)
- {
- generic_RM32_imm32(op_xor<u32, u32>, insn);
- }
- void SoftCPU::XOR_RM32_imm8(const X86::Instruction& insn)
- {
- generic_RM32_imm8(op_xor<u32, u8>, insn);
- }
- void SoftCPU::XOR_RM32_reg32(const X86::Instruction& insn)
- {
- generic_RM32_reg32(op_xor<u32, u32>, insn);
- }
- void SoftCPU::XOR_RM8_imm8(const X86::Instruction&) { TODO(); }
- void SoftCPU::XOR_RM8_reg8(const X86::Instruction&) { TODO(); }
- void SoftCPU::XOR_reg16_RM16(const X86::Instruction&) { TODO(); }
- void SoftCPU::XOR_reg32_RM32(const X86::Instruction&) { TODO(); }
- void SoftCPU::XOR_reg8_RM8(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOVQ_mm1_mm2m64(const X86::Instruction&) { TODO(); }
- void SoftCPU::EMMS(const X86::Instruction&) { TODO(); }
- void SoftCPU::MOVQ_mm1_m64_mm2(const X86::Instruction&) { TODO(); }
- void SoftCPU::wrap_0xC0(const X86::Instruction&) { TODO(); }
- void SoftCPU::wrap_0xC1_16(const X86::Instruction&) { TODO(); }
- void SoftCPU::wrap_0xC1_32(const X86::Instruction&) { TODO(); }
- void SoftCPU::wrap_0xD0(const X86::Instruction&) { TODO(); }
- void SoftCPU::wrap_0xD1_16(const X86::Instruction&) { TODO(); }
- void SoftCPU::wrap_0xD1_32(const X86::Instruction&) { TODO(); }
- void SoftCPU::wrap_0xD2(const X86::Instruction&) { TODO(); }
- void SoftCPU::wrap_0xD3_16(const X86::Instruction&) { TODO(); }
- void SoftCPU::wrap_0xD3_32(const X86::Instruction&) { TODO(); }
- }
|