2023-10-05 18:37:58 +00:00
|
|
|
|
//
|
2023-10-12 17:54:51 +00:00
|
|
|
|
//
|
2023-10-05 18:37:58 +00:00
|
|
|
|
// PerformImplementation.hpp
|
|
|
|
|
// Clock Signal
|
|
|
|
|
//
|
|
|
|
|
// Created by Thomas Harte on 05/10/2023.
|
|
|
|
|
// Copyright © 2023 Thomas Harte. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#ifndef PerformImplementation_h
|
|
|
|
|
#define PerformImplementation_h
|
|
|
|
|
|
2023-10-05 19:49:07 +00:00
|
|
|
|
#include "../../../Numeric/Carry.hpp"
|
2023-10-06 02:27:52 +00:00
|
|
|
|
#include "../../../Numeric/RegisterSizes.hpp"
|
2023-10-06 17:22:35 +00:00
|
|
|
|
#include "../Interrupts.hpp"
|
2023-10-05 19:49:07 +00:00
|
|
|
|
|
2023-10-11 02:35:25 +00:00
|
|
|
|
#include <utility>
|
|
|
|
|
|
2023-10-05 18:37:58 +00:00
|
|
|
|
namespace InstructionSet::x86 {
|
|
|
|
|
|
2023-10-09 15:46:59 +00:00
|
|
|
|
template <Model model, typename IntT, typename InstructionT, typename RegistersT, typename MemoryT>
|
|
|
|
|
IntT *resolve(
|
|
|
|
|
InstructionT &instruction,
|
|
|
|
|
Source source,
|
|
|
|
|
DataPointer pointer,
|
|
|
|
|
RegistersT ®isters,
|
|
|
|
|
MemoryT &memory,
|
|
|
|
|
IntT *none = nullptr,
|
|
|
|
|
IntT *immediate = nullptr
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
template <Model model, Source source, typename IntT, typename InstructionT, typename RegistersT, typename MemoryT>
|
|
|
|
|
uint32_t address(
|
|
|
|
|
InstructionT &instruction,
|
|
|
|
|
DataPointer pointer,
|
|
|
|
|
RegistersT ®isters,
|
|
|
|
|
MemoryT &memory
|
|
|
|
|
) {
|
|
|
|
|
// TODO: non-word indexes and bases.
|
2023-10-09 15:49:38 +00:00
|
|
|
|
if constexpr (source == Source::DirectAddress) {
|
|
|
|
|
return instruction.offset();
|
|
|
|
|
}
|
2023-10-09 15:46:59 +00:00
|
|
|
|
|
2023-10-09 15:49:38 +00:00
|
|
|
|
uint32_t address;
|
|
|
|
|
uint16_t zero = 0;
|
|
|
|
|
address = *resolve<model, uint16_t>(instruction, pointer.index(), pointer, registers, memory, &zero);
|
|
|
|
|
if constexpr (is_32bit(model)) {
|
|
|
|
|
address <<= pointer.scale();
|
|
|
|
|
}
|
|
|
|
|
address += instruction.offset();
|
2023-10-09 15:46:59 +00:00
|
|
|
|
|
2023-10-09 15:49:38 +00:00
|
|
|
|
if constexpr (source == Source::IndirectNoBase) {
|
|
|
|
|
return address;
|
2023-10-09 15:46:59 +00:00
|
|
|
|
}
|
2023-10-09 15:49:38 +00:00
|
|
|
|
return address + *resolve<model, uint16_t>(instruction, pointer.base(), pointer, registers, memory);
|
2023-10-09 15:46:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-12 18:24:28 +00:00
|
|
|
|
template <Model model, typename IntT, typename InstructionT, typename RegistersT, typename MemoryT>
|
|
|
|
|
uint32_t address(
|
|
|
|
|
InstructionT &instruction,
|
|
|
|
|
DataPointer pointer,
|
|
|
|
|
RegistersT ®isters,
|
|
|
|
|
MemoryT &memory
|
|
|
|
|
) {
|
|
|
|
|
switch(pointer.source<false>()) {
|
|
|
|
|
default: return 0;
|
|
|
|
|
case Source::Indirect: return address<model, Source::Indirect, IntT>(instruction, pointer, registers, memory);
|
|
|
|
|
case Source::IndirectNoBase: return address<model, Source::IndirectNoBase, IntT>(instruction, pointer, registers, memory);
|
|
|
|
|
case Source::DirectAddress: return address<model, Source::DirectAddress, IntT>(instruction, pointer, registers, memory);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-09 15:46:59 +00:00
|
|
|
|
template <Model model, typename IntT, typename InstructionT, typename RegistersT, typename MemoryT>
|
|
|
|
|
IntT *resolve(
|
|
|
|
|
InstructionT &instruction,
|
|
|
|
|
Source source,
|
|
|
|
|
DataPointer pointer,
|
|
|
|
|
RegistersT ®isters,
|
|
|
|
|
MemoryT &memory,
|
|
|
|
|
IntT *none,
|
|
|
|
|
IntT *immediate
|
|
|
|
|
) {
|
|
|
|
|
// Rules:
|
|
|
|
|
//
|
|
|
|
|
// * if this is a memory access, set target_address and break;
|
|
|
|
|
// * otherwise return the appropriate value.
|
|
|
|
|
uint32_t target_address;
|
|
|
|
|
switch(source) {
|
|
|
|
|
case Source::eAX:
|
|
|
|
|
// Slightly contorted if chain here and below:
|
|
|
|
|
//
|
|
|
|
|
// (i) does the `constexpr` version of a `switch`; and
|
|
|
|
|
// (i) ensures .eax() etc aren't called on @c registers for 16-bit processors, so they need not implement 32-bit storage.
|
|
|
|
|
if constexpr (is_32bit(model) && std::is_same_v<IntT, uint32_t>) { return ®isters.eax(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint16_t>) { return ®isters.ax(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint8_t>) { return ®isters.al(); }
|
|
|
|
|
else { return nullptr; }
|
|
|
|
|
case Source::eCX:
|
|
|
|
|
if constexpr (is_32bit(model) && std::is_same_v<IntT, uint32_t>) { return ®isters.ecx(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint16_t>) { return ®isters.cx(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint8_t>) { return ®isters.cl(); }
|
|
|
|
|
else { return nullptr; }
|
|
|
|
|
case Source::eDX:
|
|
|
|
|
if constexpr (is_32bit(model) && std::is_same_v<IntT, uint32_t>) { return ®isters.edx(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint16_t>) { return ®isters.dx(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint8_t>) { return ®isters.dl(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint32_t>) { return nullptr; }
|
|
|
|
|
case Source::eBX:
|
|
|
|
|
if constexpr (is_32bit(model) && std::is_same_v<IntT, uint32_t>) { return ®isters.ebx(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint16_t>) { return ®isters.bx(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint8_t>) { return ®isters.bl(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint32_t>) { return nullptr; }
|
|
|
|
|
case Source::eSPorAH:
|
|
|
|
|
if constexpr (is_32bit(model) && std::is_same_v<IntT, uint32_t>) { return ®isters.esp(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint16_t>) { return ®isters.sp(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint8_t>) { return ®isters.ah(); }
|
|
|
|
|
else { return nullptr; }
|
|
|
|
|
case Source::eBPorCH:
|
|
|
|
|
if constexpr (is_32bit(model) && std::is_same_v<IntT, uint32_t>) { return ®isters.ebp(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint16_t>) { return ®isters.bp(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint8_t>) { return ®isters.ch(); }
|
|
|
|
|
else { return nullptr; }
|
|
|
|
|
case Source::eSIorDH:
|
|
|
|
|
if constexpr (is_32bit(model) && std::is_same_v<IntT, uint32_t>) { return ®isters.esi(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint16_t>) { return ®isters.si(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint8_t>) { return ®isters.dh(); }
|
|
|
|
|
else { return nullptr; }
|
|
|
|
|
case Source::eDIorBH:
|
|
|
|
|
if constexpr (is_32bit(model) && std::is_same_v<IntT, uint32_t>) { return ®isters.edi(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint16_t>) { return ®isters.di(); }
|
|
|
|
|
else if constexpr (std::is_same_v<IntT, uint8_t>) { return ®isters.bh(); }
|
|
|
|
|
else { return nullptr; }
|
|
|
|
|
|
|
|
|
|
case Source::ES: if constexpr (std::is_same_v<IntT, uint16_t>) return ®isters.es(); else return nullptr;
|
|
|
|
|
case Source::CS: if constexpr (std::is_same_v<IntT, uint16_t>) return ®isters.cs(); else return nullptr;
|
|
|
|
|
case Source::SS: if constexpr (std::is_same_v<IntT, uint16_t>) return ®isters.ss(); else return nullptr;
|
|
|
|
|
case Source::DS: if constexpr (std::is_same_v<IntT, uint16_t>) return ®isters.ds(); else return nullptr;
|
|
|
|
|
|
|
|
|
|
// 16-bit models don't have FS and GS.
|
|
|
|
|
case Source::FS: if constexpr (is_32bit(model) && std::is_same_v<IntT, uint16_t>) return ®isters.fs(); else return nullptr;
|
|
|
|
|
case Source::GS: if constexpr (is_32bit(model) && std::is_same_v<IntT, uint16_t>) return ®isters.gs(); else return nullptr;
|
|
|
|
|
|
|
|
|
|
case Source::Immediate:
|
|
|
|
|
*immediate = instruction.operand();
|
|
|
|
|
return immediate;
|
|
|
|
|
|
|
|
|
|
case Source::None: return none;
|
|
|
|
|
|
|
|
|
|
case Source::Indirect:
|
|
|
|
|
target_address = address<model, Source::Indirect, IntT>(instruction, pointer, registers, memory);
|
|
|
|
|
break;
|
|
|
|
|
case Source::IndirectNoBase:
|
|
|
|
|
target_address = address<model, Source::IndirectNoBase, IntT>(instruction, pointer, registers, memory);
|
|
|
|
|
break;
|
|
|
|
|
case Source::DirectAddress:
|
|
|
|
|
target_address = address<model, Source::DirectAddress, IntT>(instruction, pointer, registers, memory);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If execution has reached here then a memory fetch is required.
|
|
|
|
|
// Do it and exit.
|
|
|
|
|
const Source segment = pointer.segment(instruction.segment_override());
|
|
|
|
|
return &memory.template access<IntT>(segment, target_address);
|
|
|
|
|
};
|
|
|
|
|
|
2023-10-05 18:37:58 +00:00
|
|
|
|
namespace Primitive {
|
|
|
|
|
|
2023-10-06 15:10:54 +00:00
|
|
|
|
//
|
|
|
|
|
// Comments below on intended functioning of each operation come from the 1997 edition of the
|
|
|
|
|
// Intel Architecture Software Developer’s Manual; that year all such definitions still fitted within a
|
|
|
|
|
// single volume, Volume 2.
|
|
|
|
|
//
|
|
|
|
|
// Order Number 243191; e.g. https://www.ardent-tool.com/CPU/docs/Intel/IA/243191-002.pdf
|
|
|
|
|
//
|
|
|
|
|
|
2023-10-06 15:31:45 +00:00
|
|
|
|
inline void aaa(CPU::RegisterPair16 &ax, Status &status) { // P. 313
|
2023-10-05 18:37:58 +00:00
|
|
|
|
/*
|
|
|
|
|
IF ((AL AND 0FH) > 9) OR (AF = 1)
|
|
|
|
|
THEN
|
|
|
|
|
AL ← (AL + 6);
|
|
|
|
|
AH ← AH + 1;
|
|
|
|
|
AF ← 1;
|
|
|
|
|
CF ← 1;
|
|
|
|
|
ELSE
|
|
|
|
|
AF ← 0;
|
|
|
|
|
CF ← 0;
|
|
|
|
|
FI;
|
|
|
|
|
AL ← AL AND 0FH;
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The AF and CF flags are set to 1 if the adjustment results in a decimal carry;
|
|
|
|
|
otherwise they are cleared to 0. The OF, SF, ZF, and PF flags are undefined.
|
|
|
|
|
*/
|
2023-10-11 16:35:17 +00:00
|
|
|
|
if((ax.halves.low & 0x0f) > 9 || status.flag<Flag::AuxiliaryCarry>()) {
|
2023-10-05 18:37:58 +00:00
|
|
|
|
ax.halves.low += 6;
|
|
|
|
|
++ax.halves.high;
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Carry, Flag::AuxiliaryCarry>(1);
|
2023-10-05 18:37:58 +00:00
|
|
|
|
} else {
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Carry, Flag::AuxiliaryCarry>(0);
|
2023-10-05 18:37:58 +00:00
|
|
|
|
}
|
2023-10-06 02:27:52 +00:00
|
|
|
|
ax.halves.low &= 0x0f;
|
2023-10-05 18:37:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-06 15:11:29 +00:00
|
|
|
|
inline void aad(CPU::RegisterPair16 &ax, uint8_t imm, Status &status) {
|
2023-10-05 18:37:58 +00:00
|
|
|
|
/*
|
|
|
|
|
tempAL ← AL;
|
|
|
|
|
tempAH ← AH;
|
|
|
|
|
AL ← (tempAL + (tempAH * imm8)) AND FFH; (* imm8 is set to 0AH for the AAD mnemonic *)
|
|
|
|
|
AH ← 0
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The SF, ZF, and PF flags are set according to the result;
|
|
|
|
|
the OF, AF, and CF flags are undefined.
|
|
|
|
|
*/
|
|
|
|
|
ax.halves.low = ax.halves.low + (ax.halves.high * imm);
|
|
|
|
|
ax.halves.high = 0;
|
2023-10-11 15:15:59 +00:00
|
|
|
|
status.set_from<uint8_t, Flag::Zero, Flag::Sign, Flag::ParityOdd>(ax.halves.low);
|
2023-10-05 18:37:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-06 17:22:35 +00:00
|
|
|
|
template <typename FlowControllerT>
|
2023-10-11 20:01:09 +00:00
|
|
|
|
void aam(CPU::RegisterPair16 &ax, uint8_t imm, Status &status, FlowControllerT &flow_controller) {
|
2023-10-05 18:52:24 +00:00
|
|
|
|
/*
|
|
|
|
|
tempAL ← AL;
|
|
|
|
|
AH ← tempAL / imm8; (* imm8 is set to 0AH for the AAD mnemonic *)
|
|
|
|
|
AL ← tempAL MOD imm8;
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The SF, ZF, and PF flags are set according to the result.
|
|
|
|
|
The OF, AF, and CF flags are undefined.
|
|
|
|
|
*/
|
2023-10-06 15:43:18 +00:00
|
|
|
|
/*
|
|
|
|
|
If ... an immediate value of 0 is used, it will cause a #DE (divide error) exception.
|
|
|
|
|
*/
|
2023-10-06 17:22:35 +00:00
|
|
|
|
if(!imm) {
|
2023-10-10 14:34:18 +00:00
|
|
|
|
flow_controller.interrupt(Interrupt::DivideError);
|
2023-10-06 17:22:35 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-05 18:52:24 +00:00
|
|
|
|
ax.halves.high = ax.halves.low / imm;
|
|
|
|
|
ax.halves.low = ax.halves.low % imm;
|
2023-10-11 15:15:59 +00:00
|
|
|
|
status.set_from<uint8_t, Flag::Zero, Flag::Sign, Flag::ParityOdd>(ax.halves.low);
|
2023-10-05 18:52:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-06 15:11:29 +00:00
|
|
|
|
inline void aas(CPU::RegisterPair16 &ax, Status &status) {
|
2023-10-05 18:52:24 +00:00
|
|
|
|
/*
|
|
|
|
|
IF ((AL AND 0FH) > 9) OR (AF = 1)
|
|
|
|
|
THEN
|
|
|
|
|
AL ← AL – 6;
|
|
|
|
|
AH ← AH – 1;
|
|
|
|
|
AF ← 1;
|
|
|
|
|
CF ← 1;
|
|
|
|
|
ELSE
|
|
|
|
|
CF ← 0;
|
|
|
|
|
AF ← 0;
|
|
|
|
|
FI;
|
|
|
|
|
AL ← AL AND 0FH;
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The AF and CF flags are set to 1 if there is a decimal borrow;
|
|
|
|
|
otherwise, they are cleared to 0. The OF, SF, ZF, and PF flags are undefined.
|
|
|
|
|
*/
|
2023-10-11 16:35:17 +00:00
|
|
|
|
if((ax.halves.low & 0x0f) > 9 || status.flag<Flag::AuxiliaryCarry>()) {
|
2023-10-05 18:52:24 +00:00
|
|
|
|
ax.halves.low -= 6;
|
|
|
|
|
--ax.halves.high;
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Carry, Flag::AuxiliaryCarry>(1);
|
2023-10-05 18:52:24 +00:00
|
|
|
|
} else {
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Carry, Flag::AuxiliaryCarry>(0);
|
2023-10-05 18:52:24 +00:00
|
|
|
|
}
|
|
|
|
|
ax.halves.low &= 0x0f;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-09 18:27:02 +00:00
|
|
|
|
inline void daa(uint8_t &al, Status &status) {
|
|
|
|
|
/*
|
2023-10-09 18:42:32 +00:00
|
|
|
|
(as modified by https://www.felixcloutier.com/x86/daa ...)
|
|
|
|
|
|
|
|
|
|
old_AL ← AL;
|
|
|
|
|
old_CF ← CF;
|
|
|
|
|
CF ← 0;
|
|
|
|
|
|
2023-10-09 18:27:02 +00:00
|
|
|
|
IF (((AL AND 0FH) > 9) or AF = 1)
|
|
|
|
|
THEN
|
|
|
|
|
AL ← AL + 6;
|
2023-10-09 18:42:32 +00:00
|
|
|
|
CF ← old_CF OR CarryFromLastAddition; (* CF OR carry from AL ← AL + 6 *)
|
2023-10-09 18:27:02 +00:00
|
|
|
|
AF ← 1;
|
|
|
|
|
ELSE
|
|
|
|
|
AF ← 0;
|
|
|
|
|
FI;
|
2023-10-09 18:42:32 +00:00
|
|
|
|
IF ((old_AL > 99H) or old_CF = 1)
|
2023-10-09 18:27:02 +00:00
|
|
|
|
THEN
|
|
|
|
|
AL ← AL + 60H;
|
|
|
|
|
CF ← 1;
|
|
|
|
|
ELSE
|
|
|
|
|
CF ← 0;
|
|
|
|
|
FI;
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The CF and AF flags are set if the adjustment of the value results in a
|
|
|
|
|
decimal carry in either digit of the result (see the “Operation” section above).
|
|
|
|
|
The SF, ZF, and PF flags are set according to the result. The OF flag is undefined.
|
|
|
|
|
*/
|
2023-10-09 18:42:32 +00:00
|
|
|
|
const uint8_t old_al = al;
|
2023-10-11 16:35:17 +00:00
|
|
|
|
const auto old_carry = status.flag<Flag::Carry>();
|
|
|
|
|
status.set_from<Flag::Carry>(0);
|
2023-10-09 18:42:32 +00:00
|
|
|
|
|
2023-10-11 16:35:17 +00:00
|
|
|
|
if((al & 0x0f) > 0x09 || status.flag<Flag::AuxiliaryCarry>()) {
|
|
|
|
|
status.set_from<Flag::Carry>(old_carry | (al > 0xf9));
|
2023-10-09 18:27:02 +00:00
|
|
|
|
al += 0x06;
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::AuxiliaryCarry>(1);
|
2023-10-09 18:27:02 +00:00
|
|
|
|
} else {
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::AuxiliaryCarry>(0);
|
2023-10-09 18:27:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-09 18:42:32 +00:00
|
|
|
|
if(old_al > 0x99 || old_carry) {
|
2023-10-09 18:27:02 +00:00
|
|
|
|
al += 0x60;
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Carry>(1);
|
2023-10-09 18:27:02 +00:00
|
|
|
|
} else {
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Carry>(0);
|
2023-10-09 18:27:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-11 15:15:59 +00:00
|
|
|
|
status.set_from<uint8_t, Flag::Zero, Flag::Sign, Flag::ParityOdd>(al);
|
2023-10-09 18:27:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-09 18:47:39 +00:00
|
|
|
|
inline void das(uint8_t &al, Status &status) {
|
|
|
|
|
/*
|
|
|
|
|
(as modified by https://www.felixcloutier.com/x86/daa ...)
|
|
|
|
|
|
|
|
|
|
old_AL ← AL;
|
|
|
|
|
old_CF ← CF;
|
|
|
|
|
CF ← 0;
|
|
|
|
|
|
|
|
|
|
IF (((AL AND 0FH) > 9) or AF = 1)
|
|
|
|
|
THEN
|
|
|
|
|
AL ← AL - 6;
|
|
|
|
|
CF ← old_CF OR CarryFromLastAddition; (* CF OR borrow from AL ← AL - 6 *)
|
|
|
|
|
AF ← 1;
|
|
|
|
|
ELSE
|
|
|
|
|
AF ← 0;
|
|
|
|
|
FI;
|
|
|
|
|
IF ((old_AL > 99H) or old_CF = 1)
|
|
|
|
|
THEN
|
|
|
|
|
AL ← AL - 60H;
|
|
|
|
|
CF ← 1;
|
|
|
|
|
ELSE
|
|
|
|
|
CF ← 0;
|
|
|
|
|
FI;
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The CF and AF flags are set if the adjustment of the value results in a
|
|
|
|
|
decimal carry in either digit of the result (see the “Operation” section above).
|
|
|
|
|
The SF, ZF, and PF flags are set according to the result. The OF flag is undefined.
|
|
|
|
|
*/
|
|
|
|
|
const uint8_t old_al = al;
|
2023-10-11 16:35:17 +00:00
|
|
|
|
const auto old_carry = status.flag<Flag::Carry>();
|
|
|
|
|
status.set_from<Flag::Carry>(0);
|
2023-10-09 18:47:39 +00:00
|
|
|
|
|
2023-10-11 16:35:17 +00:00
|
|
|
|
if((al & 0x0f) > 0x09 || status.flag<Flag::AuxiliaryCarry>()) {
|
|
|
|
|
status.set_from<Flag::Carry>(old_carry | (al < 0x06));
|
2023-10-09 18:47:39 +00:00
|
|
|
|
al -= 0x06;
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::AuxiliaryCarry>(1);
|
2023-10-09 18:47:39 +00:00
|
|
|
|
} else {
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::AuxiliaryCarry>(0);
|
2023-10-09 18:47:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(old_al > 0x99 || old_carry) {
|
|
|
|
|
al -= 0x60;
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Carry>(1);
|
2023-10-09 18:47:39 +00:00
|
|
|
|
} else {
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Carry>(0);
|
2023-10-09 18:47:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-11 15:15:59 +00:00
|
|
|
|
status.set_from<uint8_t, Flag::Zero, Flag::Sign, Flag::ParityOdd>(al);
|
2023-10-09 18:47:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-11 02:43:06 +00:00
|
|
|
|
template <bool with_carry, typename IntT>
|
2023-10-05 19:49:07 +00:00
|
|
|
|
void add(IntT &destination, IntT source, Status &status) {
|
|
|
|
|
/*
|
2023-10-11 02:43:06 +00:00
|
|
|
|
DEST ← DEST + SRC [+ CF];
|
2023-10-05 19:49:07 +00:00
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The OF, SF, ZF, AF, CF, and PF flags are set according to the result.
|
|
|
|
|
*/
|
2023-10-11 02:43:06 +00:00
|
|
|
|
const IntT result = destination + source + (with_carry ? status.carry_bit<IntT>() : 0);
|
2023-10-05 19:49:07 +00:00
|
|
|
|
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Carry>(
|
|
|
|
|
Numeric::carried_out<true, Numeric::bit_size<IntT>() - 1>(destination, source, result));
|
|
|
|
|
status.set_from<Flag::AuxiliaryCarry>(
|
|
|
|
|
Numeric::carried_in<4>(destination, source, result));
|
|
|
|
|
status.set_from<Flag::Overflow>(
|
|
|
|
|
Numeric::overflow<true, IntT>(destination, source, result));
|
2023-10-05 19:49:07 +00:00
|
|
|
|
|
2023-10-11 15:15:59 +00:00
|
|
|
|
status.set_from<IntT, Flag::Zero, Flag::Sign, Flag::ParityOdd>(result);
|
|
|
|
|
|
2023-10-05 19:49:07 +00:00
|
|
|
|
destination = result;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-11 02:43:06 +00:00
|
|
|
|
template <bool with_borrow, bool write_back, typename IntT>
|
2023-10-09 20:21:04 +00:00
|
|
|
|
void sub(IntT &destination, IntT source, Status &status) {
|
|
|
|
|
/*
|
2023-10-11 02:43:06 +00:00
|
|
|
|
DEST ← DEST - (SRC [+ CF]);
|
2023-10-09 20:21:04 +00:00
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The OF, SF, ZF, AF, CF, and PF flags are set according to the result.
|
|
|
|
|
*/
|
2023-10-11 02:43:06 +00:00
|
|
|
|
const IntT result = destination - source - (with_borrow ? status.carry_bit<IntT>() : 0);
|
2023-10-09 20:21:04 +00:00
|
|
|
|
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Carry>(
|
|
|
|
|
Numeric::carried_out<false, Numeric::bit_size<IntT>() - 1>(destination, source, result));
|
|
|
|
|
status.set_from<Flag::AuxiliaryCarry>(
|
|
|
|
|
Numeric::carried_in<4>(destination, source, result));
|
|
|
|
|
status.set_from<Flag::Overflow>(
|
|
|
|
|
Numeric::overflow<false, IntT>(destination, source, result));
|
2023-10-09 20:21:04 +00:00
|
|
|
|
|
2023-10-11 15:15:59 +00:00
|
|
|
|
status.set_from<IntT, Flag::Zero, Flag::Sign, Flag::ParityOdd>(result);
|
|
|
|
|
|
2023-10-11 02:15:33 +00:00
|
|
|
|
if constexpr (write_back) {
|
|
|
|
|
destination = result;
|
|
|
|
|
}
|
2023-10-09 20:21:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-11 02:28:10 +00:00
|
|
|
|
template <typename IntT>
|
|
|
|
|
void test(IntT &destination, IntT source, Status &status) {
|
|
|
|
|
/*
|
|
|
|
|
TEMP ← SRC1 AND SRC2;
|
|
|
|
|
SF ← MSB(TEMP);
|
|
|
|
|
IF TEMP = 0
|
|
|
|
|
THEN ZF ← 0;
|
|
|
|
|
ELSE ZF ← 1;
|
|
|
|
|
FI:
|
|
|
|
|
PF ← BitwiseXNOR(TEMP[0:7]);
|
|
|
|
|
CF ← 0;
|
|
|
|
|
OF ← 0;
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The OF and CF flags are cleared to 0.
|
|
|
|
|
The SF, ZF, and PF flags are set according to the result (see the “Operation” section above).
|
|
|
|
|
The state of the AF flag is undefined.
|
|
|
|
|
*/
|
|
|
|
|
const IntT result = destination & source;
|
|
|
|
|
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Carry, Flag::Overflow>(0);
|
2023-10-11 15:15:59 +00:00
|
|
|
|
status.set_from<IntT, Flag::Zero, Flag::Sign, Flag::ParityOdd>(result);
|
2023-10-11 02:28:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-11 02:34:42 +00:00
|
|
|
|
template <typename IntT>
|
|
|
|
|
void xchg(IntT &destination, IntT &source) {
|
|
|
|
|
/*
|
|
|
|
|
TEMP ← DEST
|
|
|
|
|
DEST ← SRC
|
|
|
|
|
SRC ← TEMP
|
|
|
|
|
*/
|
|
|
|
|
std::swap(destination, source);
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-10 01:50:17 +00:00
|
|
|
|
template <typename IntT>
|
|
|
|
|
void mul(IntT &destination_high, IntT &destination_low, IntT source, Status &status) {
|
|
|
|
|
/*
|
|
|
|
|
IF byte operation
|
|
|
|
|
THEN
|
|
|
|
|
AX ← AL * SRC
|
|
|
|
|
ELSE (* word or doubleword operation *)
|
|
|
|
|
IF OperandSize = 16 THEN
|
|
|
|
|
DX:AX ← AX * SRC
|
|
|
|
|
ELSE (* OperandSize = 32 *)
|
|
|
|
|
EDX:EAX ← EAX * SRC
|
|
|
|
|
FI;
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The OF and CF flags are cleared to 0 if the upper half of the result is 0;
|
|
|
|
|
otherwise, they are set to 1. The SF, ZF, AF, and PF flags are undefined.
|
|
|
|
|
*/
|
|
|
|
|
destination_high = (destination_low * source) >> (8 * sizeof(IntT));
|
|
|
|
|
destination_low *= source;
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Overflow, Flag::Carry>(destination_high);
|
2023-10-10 01:50:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-10 02:12:15 +00:00
|
|
|
|
template <typename IntT>
|
|
|
|
|
void imul(IntT &destination_high, IntT &destination_low, IntT source, Status &status) {
|
|
|
|
|
/*
|
|
|
|
|
(as modified by https://www.felixcloutier.com/x86/daa ...)
|
|
|
|
|
|
|
|
|
|
IF (OperandSize = 8)
|
|
|
|
|
THEN
|
|
|
|
|
AX ← AL ∗ SRC (* signed multiplication *)
|
|
|
|
|
IF (AX = SignExtend(AL))
|
|
|
|
|
THEN CF = 0; OF = 0;
|
|
|
|
|
ELSE CF = 1; OF = 1;
|
|
|
|
|
FI;
|
|
|
|
|
ELSE IF OperandSize = 16
|
|
|
|
|
THEN
|
|
|
|
|
DX:AX ← AX ∗ SRC (* signed multiplication *)
|
|
|
|
|
IF (DX:AX = SignExtend(AX))
|
|
|
|
|
THEN CF = 0; OF = 0;
|
|
|
|
|
ELSE CF = 1; OF = 1;
|
|
|
|
|
FI;
|
|
|
|
|
ELSE (* OperandSize = 32 *)
|
|
|
|
|
EDX:EAX ← EAX ∗ SRC (* signed multiplication *)
|
|
|
|
|
IF (EDX:EAX = SignExtend(EAX))
|
|
|
|
|
THEN CF = 0; OF = 0;
|
|
|
|
|
ELSE CF = 1; OF = 1;
|
|
|
|
|
FI;
|
|
|
|
|
FI;
|
|
|
|
|
*/
|
|
|
|
|
using sIntT = typename std::make_signed<IntT>::type;
|
|
|
|
|
destination_high = (sIntT(destination_low) * sIntT(source)) >> (8 * sizeof(IntT));
|
|
|
|
|
destination_low = IntT(sIntT(destination_low) * sIntT(source));
|
|
|
|
|
|
2023-10-11 15:06:20 +00:00
|
|
|
|
const auto sign_extension = (destination_low & Numeric::top_bit<IntT>()) ? IntT(~0) : 0;
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Overflow, Flag::Carry>(destination_high != sign_extension);
|
2023-10-10 02:12:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-10 14:34:18 +00:00
|
|
|
|
template <typename IntT, typename FlowControllerT>
|
|
|
|
|
void div(IntT &destination_high, IntT &destination_low, IntT source, FlowControllerT &flow_controller) {
|
2023-10-10 19:57:33 +00:00
|
|
|
|
/*
|
|
|
|
|
IF SRC = 0
|
|
|
|
|
THEN #DE; (* divide error *)
|
|
|
|
|
FI;
|
|
|
|
|
IF OperandSize = 8 (* word/byte operation *)
|
|
|
|
|
THEN
|
|
|
|
|
temp ← AX / SRC;
|
|
|
|
|
IF temp > FFH
|
|
|
|
|
THEN #DE; (* divide error *) ;
|
|
|
|
|
ELSE
|
|
|
|
|
AL ← temp;
|
|
|
|
|
AH ← AX MOD SRC;
|
|
|
|
|
FI;
|
|
|
|
|
ELSE
|
|
|
|
|
IF OperandSize = 16 (* doubleword/word operation *)
|
|
|
|
|
THEN
|
|
|
|
|
temp ← DX:AX / SRC;
|
|
|
|
|
IF temp > FFFFH
|
|
|
|
|
THEN #DE; (* divide error *) ;
|
|
|
|
|
ELSE
|
|
|
|
|
AX ← temp;
|
|
|
|
|
DX ← DX:AX MOD SRC;
|
|
|
|
|
FI;
|
|
|
|
|
ELSE (* quadword/doubleword operation *)
|
|
|
|
|
temp ← EDX:EAX / SRC;
|
|
|
|
|
IF temp > FFFFFFFFH
|
|
|
|
|
THEN #DE; (* divide error *) ;
|
|
|
|
|
ELSE
|
|
|
|
|
EAX ← temp;
|
|
|
|
|
EDX ← EDX:EAX MOD SRC;
|
|
|
|
|
FI;
|
|
|
|
|
FI;
|
|
|
|
|
FI;
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The CF, OF, SF, ZF, AF, and PF flags are undefined.
|
|
|
|
|
*/
|
2023-10-10 14:34:18 +00:00
|
|
|
|
if(!source) {
|
|
|
|
|
flow_controller.interrupt(Interrupt::DivideError);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TEMPORARY HACK. Will not work with DWords.
|
|
|
|
|
const uint32_t dividend = (destination_high << (8 * sizeof(IntT))) + destination_low;
|
|
|
|
|
const auto result = dividend / source;
|
|
|
|
|
if(IntT(result) != result) {
|
|
|
|
|
flow_controller.interrupt(Interrupt::DivideError);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
destination_low = IntT(result);
|
|
|
|
|
destination_high = dividend % source;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename IntT, typename FlowControllerT>
|
|
|
|
|
void idiv(IntT &destination_high, IntT &destination_low, IntT source, FlowControllerT &flow_controller) {
|
2023-10-10 19:57:33 +00:00
|
|
|
|
/*
|
|
|
|
|
IF SRC = 0
|
|
|
|
|
THEN #DE; (* divide error *)
|
|
|
|
|
FI;
|
|
|
|
|
IF OperandSize = 8 (* word/byte operation *)
|
|
|
|
|
THEN
|
|
|
|
|
temp ← AX / SRC; (* signed division *)
|
|
|
|
|
IF (temp > 7FH) OR (temp < 80H) (* if a positive result is greater than 7FH or a negative result is less than 80H *)
|
|
|
|
|
THEN #DE; (* divide error *) ;
|
|
|
|
|
ELSE
|
|
|
|
|
AL ← temp;
|
|
|
|
|
AH ← AX MOD SRC;
|
|
|
|
|
FI;
|
|
|
|
|
ELSE
|
|
|
|
|
IF OperandSize = 16 (* doubleword/word operation *)
|
|
|
|
|
THEN
|
|
|
|
|
temp ← DX:AX / SRC; (* signed division *)
|
|
|
|
|
IF (temp > 7FFFH) OR (temp < 8000H) (* if a positive result is greater than 7FFFH or a negative result is less than 8000H *)
|
|
|
|
|
THEN #DE; (* divide error *) ;
|
|
|
|
|
ELSE
|
|
|
|
|
AX ← temp;
|
|
|
|
|
DX ← DX:AX MOD SRC;
|
|
|
|
|
FI;
|
|
|
|
|
ELSE (* quadword/doubleword operation *)
|
|
|
|
|
temp ← EDX:EAX / SRC; (* signed division *)
|
|
|
|
|
IF (temp > 7FFFFFFFH) OR (temp < 80000000H) (* if a positive result is greater than 7FFFFFFFH or a negative result is less than 80000000H *)
|
|
|
|
|
THEN #DE; (* divide error *) ;
|
|
|
|
|
ELSE
|
|
|
|
|
EAX ← temp;
|
|
|
|
|
EDX ← EDX:EAX MOD SRC;
|
|
|
|
|
FI;
|
|
|
|
|
FI;
|
|
|
|
|
FI;
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The CF, OF, SF, ZF, AF, and PF flags are undefined.
|
|
|
|
|
*/
|
2023-10-10 14:34:18 +00:00
|
|
|
|
if(!source) {
|
|
|
|
|
flow_controller.interrupt(Interrupt::DivideError);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TEMPORARY HACK. Will not work with DWords.
|
|
|
|
|
using sIntT = typename std::make_signed<IntT>::type;
|
|
|
|
|
const int32_t dividend = (sIntT(destination_high) << (8 * sizeof(IntT))) + destination_low;
|
|
|
|
|
const auto result = dividend / sIntT(source);
|
|
|
|
|
if(sIntT(result) != result) {
|
|
|
|
|
flow_controller.interrupt(Interrupt::DivideError);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
destination_low = IntT(result);
|
|
|
|
|
destination_high = dividend % sIntT(source);
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-10 19:57:33 +00:00
|
|
|
|
template <typename IntT>
|
|
|
|
|
void inc(IntT &destination, Status &status) {
|
|
|
|
|
/*
|
|
|
|
|
DEST ← DEST + 1;
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The CF flag is not affected.
|
|
|
|
|
The OF, SF, ZF, AF, and PF flags are set according to the result.
|
|
|
|
|
*/
|
|
|
|
|
++destination;
|
|
|
|
|
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Overflow>(destination == Numeric::top_bit<IntT>());
|
|
|
|
|
status.set_from<Flag::AuxiliaryCarry>(((destination - 1) ^ destination) & 0x10);
|
2023-10-11 15:15:59 +00:00
|
|
|
|
status.set_from<IntT, Flag::Zero, Flag::Sign, Flag::ParityOdd>(destination);
|
2023-10-10 19:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-10 20:27:06 +00:00
|
|
|
|
template <typename IntT, typename RegistersT, typename FlowControllerT>
|
2023-10-11 20:01:09 +00:00
|
|
|
|
void jump(bool condition, IntT displacement, RegistersT ®isters, FlowControllerT &flow_controller) {
|
2023-10-10 20:27:06 +00:00
|
|
|
|
/*
|
|
|
|
|
IF condition
|
|
|
|
|
THEN
|
|
|
|
|
EIP ← EIP + SignExtend(DEST);
|
|
|
|
|
IF OperandSize = 16
|
|
|
|
|
THEN
|
|
|
|
|
EIP ← EIP AND 0000FFFFH;
|
|
|
|
|
FI;
|
|
|
|
|
FI;
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// TODO: proper behaviour in 32-bit.
|
|
|
|
|
if(condition) {
|
|
|
|
|
flow_controller.jump(registers.ip() + displacement);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-10 19:57:33 +00:00
|
|
|
|
template <typename IntT>
|
|
|
|
|
void dec(IntT &destination, Status &status) {
|
|
|
|
|
/*
|
|
|
|
|
DEST ← DEST - 1;
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The CF flag is not affected.
|
|
|
|
|
The OF, SF, ZF, AF, and PF flags are set according to the result.
|
|
|
|
|
*/
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Overflow>(destination == Numeric::top_bit<IntT>());
|
2023-10-10 19:57:33 +00:00
|
|
|
|
|
|
|
|
|
--destination;
|
|
|
|
|
|
2023-10-11 15:15:59 +00:00
|
|
|
|
status.set_from<IntT, Flag::Zero, Flag::Sign, Flag::ParityOdd>(destination);
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::AuxiliaryCarry>(((destination + 1) ^ destination) & 0x10);
|
2023-10-10 19:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-09 02:18:40 +00:00
|
|
|
|
template <typename IntT>
|
|
|
|
|
void and_(IntT &destination, IntT source, Status &status) {
|
|
|
|
|
/*
|
|
|
|
|
DEST ← DEST AND SRC;
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The OF and CF flags are cleared; the SF, ZF, and PF flags are set according to the result.
|
|
|
|
|
The state of the AF flag is undefined.
|
|
|
|
|
*/
|
|
|
|
|
destination &= source;
|
|
|
|
|
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Overflow, Flag::Carry>(0);
|
2023-10-11 15:15:59 +00:00
|
|
|
|
status.set_from<IntT, Flag::Zero, Flag::Sign, Flag::ParityOdd>(destination);
|
2023-10-09 02:18:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-10 21:12:06 +00:00
|
|
|
|
template <typename IntT>
|
|
|
|
|
void or_(IntT &destination, IntT source, Status &status) {
|
|
|
|
|
/*
|
|
|
|
|
DEST ← DEST OR SRC;
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The OF and CF flags are cleared; the SF, ZF, and PF flags are set according to the result.
|
|
|
|
|
The state of the AF flag is undefined.
|
|
|
|
|
*/
|
|
|
|
|
destination |= source;
|
|
|
|
|
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Overflow, Flag::Carry>(0);
|
2023-10-11 15:15:59 +00:00
|
|
|
|
status.set_from<IntT, Flag::Zero, Flag::Sign, Flag::ParityOdd>(destination);
|
2023-10-10 21:12:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename IntT>
|
|
|
|
|
void xor_(IntT &destination, IntT source, Status &status) {
|
|
|
|
|
/*
|
|
|
|
|
DEST ← DEST XOR SRC;
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The OF and CF flags are cleared; the SF, ZF, and PF flags are set according to the result.
|
|
|
|
|
The state of the AF flag is undefined.
|
|
|
|
|
*/
|
|
|
|
|
destination ^= source;
|
|
|
|
|
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Overflow, Flag::Carry>(0);
|
2023-10-11 15:15:59 +00:00
|
|
|
|
status.set_from<IntT, Flag::Zero, Flag::Sign, Flag::ParityOdd>(destination);
|
2023-10-10 21:12:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-11 02:09:10 +00:00
|
|
|
|
template <typename IntT>
|
|
|
|
|
void neg(IntT &destination, Status &status) {
|
|
|
|
|
/*
|
|
|
|
|
IF DEST = 0
|
|
|
|
|
THEN CF ← 0
|
|
|
|
|
ELSE CF ← 1;
|
|
|
|
|
FI;
|
|
|
|
|
DEST ← –(DEST)
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
The CF flag cleared to 0 if the source operand is 0; otherwise it is set to 1.
|
|
|
|
|
The OF, SF, ZF, AF, and PF flags are set according to the result.
|
|
|
|
|
*/
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::AuxiliaryCarry>(Numeric::carried_in<4>(IntT(0), destination, IntT(-destination)));
|
2023-10-11 02:09:10 +00:00
|
|
|
|
|
|
|
|
|
destination = -destination;
|
|
|
|
|
|
2023-10-11 16:35:17 +00:00
|
|
|
|
status.set_from<Flag::Carry>(destination);
|
|
|
|
|
status.set_from<Flag::Overflow>(destination == Numeric::top_bit<IntT>());
|
2023-10-11 15:15:59 +00:00
|
|
|
|
status.set_from<IntT, Flag::Zero, Flag::Sign, Flag::ParityOdd>(destination);
|
2023-10-11 02:09:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename IntT>
|
|
|
|
|
void not_(IntT &destination) {
|
|
|
|
|
/*
|
|
|
|
|
DEST ← NOT DEST;
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
Flags affected: none.
|
|
|
|
|
*/
|
|
|
|
|
destination = ~destination;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-09 15:46:59 +00:00
|
|
|
|
template <typename IntT, typename RegistersT, typename FlowControllerT>
|
2023-10-11 20:01:09 +00:00
|
|
|
|
void call_relative(IntT offset, RegistersT ®isters, FlowControllerT &flow_controller) {
|
2023-10-09 15:46:59 +00:00
|
|
|
|
flow_controller.call(registers.ip() + offset);
|
2023-10-05 18:37:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-09 15:46:59 +00:00
|
|
|
|
template <typename IntT, typename FlowControllerT>
|
2023-10-11 20:01:09 +00:00
|
|
|
|
void call_absolute(IntT target, FlowControllerT &flow_controller) {
|
2023-10-09 15:46:59 +00:00
|
|
|
|
flow_controller.call(target);
|
|
|
|
|
}
|
2023-10-08 17:34:28 +00:00
|
|
|
|
|
2023-10-09 15:46:59 +00:00
|
|
|
|
template <Model model, typename InstructionT, typename FlowControllerT, typename RegistersT, typename MemoryT>
|
2023-10-09 15:59:38 +00:00
|
|
|
|
void call_far(InstructionT &instruction,
|
2023-10-09 15:46:59 +00:00
|
|
|
|
FlowControllerT &flow_controller,
|
|
|
|
|
RegistersT ®isters,
|
2023-10-12 18:24:28 +00:00
|
|
|
|
MemoryT &memory
|
|
|
|
|
) {
|
2023-10-09 15:46:59 +00:00
|
|
|
|
// TODO: eliminate 16-bit assumption below.
|
|
|
|
|
uint16_t source_address = 0;
|
2023-10-12 18:24:28 +00:00
|
|
|
|
const auto pointer = instruction.destination();
|
2023-10-09 15:46:59 +00:00
|
|
|
|
switch(pointer.template source<false>()) {
|
|
|
|
|
default:
|
|
|
|
|
case Source::Immediate: flow_controller.call(instruction.segment(), instruction.offset()); return;
|
2023-10-08 17:34:28 +00:00
|
|
|
|
|
2023-10-09 15:46:59 +00:00
|
|
|
|
case Source::Indirect:
|
|
|
|
|
source_address = address<model, Source::Indirect, uint16_t>(instruction, pointer, registers, memory);
|
|
|
|
|
break;
|
|
|
|
|
case Source::IndirectNoBase:
|
|
|
|
|
source_address = address<model, Source::IndirectNoBase, uint16_t>(instruction, pointer, registers, memory);
|
|
|
|
|
break;
|
2023-10-08 17:34:28 +00:00
|
|
|
|
case Source::DirectAddress:
|
2023-10-09 15:46:59 +00:00
|
|
|
|
source_address = address<model, Source::DirectAddress, uint16_t>(instruction, pointer, registers, memory);
|
2023-10-08 17:34:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-09 15:46:59 +00:00
|
|
|
|
const Source source_segment = pointer.segment(instruction.segment_override());
|
|
|
|
|
|
|
|
|
|
const uint16_t offset = memory.template access<uint16_t>(source_segment, source_address);
|
|
|
|
|
source_address += 2;
|
|
|
|
|
const uint16_t segment = memory.template access<uint16_t>(source_segment, source_address);
|
|
|
|
|
flow_controller.call(segment, offset);
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-12 18:24:28 +00:00
|
|
|
|
template <Model model, Source selector, typename InstructionT, typename MemoryT, typename RegistersT>
|
|
|
|
|
void ld(
|
|
|
|
|
InstructionT &instruction,
|
|
|
|
|
uint16_t &destination,
|
|
|
|
|
MemoryT &memory,
|
|
|
|
|
RegistersT ®isters
|
|
|
|
|
) {
|
|
|
|
|
const auto pointer = instruction.source();
|
|
|
|
|
auto source_address = address<model, uint16_t>(instruction, pointer, registers, memory);
|
|
|
|
|
const Source source_segment = pointer.segment(instruction.segment_override());
|
|
|
|
|
|
|
|
|
|
destination = memory.template access<uint16_t>(source_segment, source_address);
|
|
|
|
|
source_address += 2;
|
|
|
|
|
switch(selector) {
|
|
|
|
|
case Source::DS: registers.ds() = memory.template access<uint16_t>(source_segment, source_address); break;
|
|
|
|
|
case Source::ES: registers.es() = memory.template access<uint16_t>(source_segment, source_address); break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-12 18:31:25 +00:00
|
|
|
|
template <Model model, typename IntT, typename InstructionT, typename MemoryT, typename RegistersT>
|
|
|
|
|
void lea(
|
|
|
|
|
InstructionT &instruction,
|
|
|
|
|
IntT &destination,
|
|
|
|
|
MemoryT &memory,
|
|
|
|
|
RegistersT ®isters
|
|
|
|
|
) {
|
|
|
|
|
// TODO: address size.
|
|
|
|
|
destination = IntT(address<model, uint16_t>(instruction, instruction.source(), registers, memory));
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-12 19:34:46 +00:00
|
|
|
|
template <typename IntT>
|
|
|
|
|
void mov(IntT &destination, IntT source) {
|
|
|
|
|
destination = source;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-11 20:01:09 +00:00
|
|
|
|
template <typename FlowControllerT>
|
|
|
|
|
void int_(uint8_t vector, FlowControllerT &flow_controller) {
|
|
|
|
|
flow_controller.interrupt(vector);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename FlowControllerT>
|
|
|
|
|
void into(Status &status, FlowControllerT &flow_controller) {
|
|
|
|
|
if(status.flag<Flag::Overflow>()) {
|
|
|
|
|
flow_controller.interrupt(Interrupt::OnOverflow);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-12 17:54:51 +00:00
|
|
|
|
inline void sahf(uint8_t &ah, Status &status) {
|
|
|
|
|
/*
|
|
|
|
|
EFLAGS(SF:ZF:0:AF:0:PF:1:CF) ← AH;
|
|
|
|
|
*/
|
|
|
|
|
status.set_from<uint8_t, Flag::Sign>(ah);
|
|
|
|
|
status.set_from<Flag::Zero>(!(ah & 0x40));
|
|
|
|
|
status.set_from<Flag::AuxiliaryCarry>(ah & 0x10);
|
|
|
|
|
status.set_from<Flag::ParityOdd>(!(ah & 0x04));
|
|
|
|
|
status.set_from<Flag::Carry>(ah & 0x01);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline void lahf(uint8_t &ah, Status &status) {
|
|
|
|
|
/*
|
|
|
|
|
AH ← EFLAGS(SF:ZF:0:AF:0:PF:1:CF);
|
|
|
|
|
*/
|
|
|
|
|
ah =
|
|
|
|
|
(status.flag<Flag::Sign>() ? 0x80 : 0x00) |
|
|
|
|
|
(status.flag<Flag::Zero>() ? 0x40 : 0x00) |
|
|
|
|
|
(status.flag<Flag::AuxiliaryCarry>() ? 0x10 : 0x00) |
|
|
|
|
|
(status.flag<Flag::ParityOdd>() ? 0x00 : 0x04) |
|
|
|
|
|
0x02 |
|
|
|
|
|
(status.flag<Flag::Carry>() ? 0x01 : 0x00);
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-09 19:00:04 +00:00
|
|
|
|
template <typename IntT>
|
|
|
|
|
void cbw(IntT &ax) {
|
|
|
|
|
constexpr IntT test_bit = 1 << (sizeof(IntT) * 4 - 1);
|
|
|
|
|
constexpr IntT low_half = (1 << (sizeof(IntT) * 4)) - 1;
|
|
|
|
|
|
|
|
|
|
if(ax & test_bit) {
|
|
|
|
|
ax |= ~low_half;
|
|
|
|
|
} else {
|
|
|
|
|
ax &= low_half;
|
|
|
|
|
}
|
2023-10-09 15:59:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-09 18:54:14 +00:00
|
|
|
|
template <typename IntT>
|
2023-10-09 19:00:04 +00:00
|
|
|
|
void cwd(IntT &dx, IntT ax) {
|
2023-10-11 15:06:20 +00:00
|
|
|
|
dx = ax & Numeric::top_bit<IntT>() ? IntT(~0) : IntT(0);
|
2023-10-09 18:54:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-11 16:35:17 +00:00
|
|
|
|
// TODO: changes to the interrupt flag do quite a lot more in protected mode.
|
|
|
|
|
inline void clc(Status &status) { status.set_from<Flag::Carry>(0); }
|
|
|
|
|
inline void cld(Status &status) { status.set_from<Flag::Direction>(0); }
|
|
|
|
|
inline void cli(Status &status) { status.set_from<Flag::Interrupt>(0); }
|
|
|
|
|
inline void stc(Status &status) { status.set_from<Flag::Carry>(1); }
|
|
|
|
|
inline void std(Status &status) { status.set_from<Flag::Direction>(1); }
|
|
|
|
|
inline void sti(Status &status) { status.set_from<Flag::Interrupt>(1); }
|
|
|
|
|
inline void cmc(Status &status) { status.set_from<Flag::Carry>(!status.flag<Flag::Carry>()); }
|
2023-10-09 15:59:38 +00:00
|
|
|
|
|
2023-10-12 19:52:05 +00:00
|
|
|
|
inline void salc(uint8_t &al, const Status &status) {
|
|
|
|
|
al = status.flag<Flag::Carry>() ? 0xff : 0x00;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename IntT>
|
|
|
|
|
void setmo(IntT &destination, Status &status) {
|
|
|
|
|
destination = ~0;
|
|
|
|
|
status.set_from<Flag::Carry, Flag::AuxiliaryCarry, Flag::Overflow>(0);
|
|
|
|
|
status.set_from<IntT, Flag::Sign, Flag::Zero, Flag::ParityOdd>(destination);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename IntT>
|
|
|
|
|
void setmoc(IntT &destination, uint8_t cl, Status &status) {
|
|
|
|
|
if(cl) {
|
|
|
|
|
setmo(destination, status);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-09 15:46:59 +00:00
|
|
|
|
}
|
2023-10-08 17:34:28 +00:00
|
|
|
|
|
2023-10-05 18:37:58 +00:00
|
|
|
|
template <
|
|
|
|
|
Model model,
|
|
|
|
|
DataSize data_size,
|
2023-10-05 20:49:02 +00:00
|
|
|
|
typename InstructionT,
|
|
|
|
|
typename FlowControllerT,
|
|
|
|
|
typename RegistersT,
|
|
|
|
|
typename MemoryT,
|
|
|
|
|
typename IOT
|
2023-10-05 18:37:58 +00:00
|
|
|
|
> void perform(
|
2023-10-05 20:49:02 +00:00
|
|
|
|
const InstructionT &instruction,
|
2023-10-05 18:37:58 +00:00
|
|
|
|
Status &status,
|
2023-10-09 15:46:59 +00:00
|
|
|
|
FlowControllerT &flow_controller,
|
2023-10-05 20:49:02 +00:00
|
|
|
|
RegistersT ®isters,
|
2023-10-09 15:46:59 +00:00
|
|
|
|
MemoryT &memory,
|
2023-10-05 20:49:02 +00:00
|
|
|
|
[[maybe_unused]] IOT &io
|
2023-10-05 18:37:58 +00:00
|
|
|
|
) {
|
2023-10-05 20:49:02 +00:00
|
|
|
|
using IntT = typename DataSizeType<data_size>::type;
|
2023-10-05 21:06:00 +00:00
|
|
|
|
using AddressT = typename AddressT<is_32bit(model)>::type;
|
2023-10-05 20:49:02 +00:00
|
|
|
|
|
2023-10-06 02:27:52 +00:00
|
|
|
|
// Establish source() and destination() shorthand to fetch data if necessary.
|
2023-10-09 01:41:36 +00:00
|
|
|
|
IntT immediate;
|
2023-10-11 18:36:42 +00:00
|
|
|
|
const auto source = [&]() -> IntT& {
|
2023-10-09 15:46:59 +00:00
|
|
|
|
return *resolve<model, IntT>(
|
2023-10-09 01:41:36 +00:00
|
|
|
|
instruction,
|
|
|
|
|
instruction.source().template source<false>(),
|
|
|
|
|
instruction.source(),
|
|
|
|
|
registers,
|
|
|
|
|
memory,
|
|
|
|
|
nullptr,
|
|
|
|
|
&immediate);
|
|
|
|
|
};
|
2023-10-11 18:36:42 +00:00
|
|
|
|
const auto destination = [&]() -> IntT& {
|
2023-10-09 15:46:59 +00:00
|
|
|
|
return *resolve<model, IntT>(
|
2023-10-09 01:41:36 +00:00
|
|
|
|
instruction,
|
|
|
|
|
instruction.destination().template source<false>(),
|
|
|
|
|
instruction.destination(),
|
|
|
|
|
registers,
|
|
|
|
|
memory,
|
|
|
|
|
nullptr,
|
|
|
|
|
&immediate);
|
|
|
|
|
};
|
2023-10-05 20:49:02 +00:00
|
|
|
|
|
2023-10-11 19:08:04 +00:00
|
|
|
|
// Performs a displacement jump only if @c condition is true.
|
2023-10-11 18:36:42 +00:00
|
|
|
|
const auto jcc = [&](bool condition) {
|
|
|
|
|
Primitive::jump(
|
|
|
|
|
condition,
|
|
|
|
|
instruction.displacement(),
|
|
|
|
|
registers,
|
|
|
|
|
flow_controller);
|
|
|
|
|
};
|
|
|
|
|
|
2023-10-11 19:08:04 +00:00
|
|
|
|
// Some instructions use a pair of registers as an extended accumulator — DX:AX or EDX:EAX.
|
|
|
|
|
// The two following return the high and low parts of that pair; they also work in Byte mode to return AH:AL,
|
|
|
|
|
// i.e. AX split into high and low parts.
|
|
|
|
|
const auto pair_high = [&]() -> IntT& {
|
2023-10-11 18:36:42 +00:00
|
|
|
|
if constexpr (data_size == DataSize::Byte) return registers.ah();
|
|
|
|
|
else if constexpr (data_size == DataSize::Word) return registers.dx();
|
|
|
|
|
else if constexpr (data_size == DataSize::DWord) return registers.edx();
|
|
|
|
|
};
|
2023-10-11 19:08:04 +00:00
|
|
|
|
const auto pair_low = [&]() -> IntT& {
|
2023-10-11 18:36:42 +00:00
|
|
|
|
if constexpr (data_size == DataSize::Byte) return registers.al();
|
|
|
|
|
else if constexpr (data_size == DataSize::Word) return registers.ax();
|
|
|
|
|
else if constexpr (data_size == DataSize::DWord) return registers.eax();
|
|
|
|
|
};
|
|
|
|
|
|
2023-10-05 20:49:02 +00:00
|
|
|
|
// Guide to the below:
|
|
|
|
|
//
|
|
|
|
|
// * use hard-coded register names where appropriate;
|
|
|
|
|
// * return directly if there is definitely no possible write back to RAM;
|
|
|
|
|
// * otherwise use the source() and destination() lambdas, and break in order to allow a writeback if necessary.
|
|
|
|
|
switch(instruction.operation) {
|
2023-10-09 15:46:59 +00:00
|
|
|
|
default:
|
|
|
|
|
assert(false);
|
2023-10-06 02:27:52 +00:00
|
|
|
|
|
2023-10-06 17:22:35 +00:00
|
|
|
|
case Operation::AAA: Primitive::aaa(registers.axp(), status); return;
|
|
|
|
|
case Operation::AAD: Primitive::aad(registers.axp(), instruction.operand(), status); return;
|
|
|
|
|
case Operation::AAM: Primitive::aam(registers.axp(), instruction.operand(), status, flow_controller); return;
|
|
|
|
|
case Operation::AAS: Primitive::aas(registers.axp(), status); return;
|
2023-10-09 18:27:02 +00:00
|
|
|
|
case Operation::DAA: Primitive::daa(registers.al(), status); return;
|
2023-10-09 18:47:39 +00:00
|
|
|
|
case Operation::DAS: Primitive::das(registers.al(), status); return;
|
2023-10-05 20:49:02 +00:00
|
|
|
|
|
2023-10-11 19:08:04 +00:00
|
|
|
|
case Operation::CBW: Primitive::cbw(pair_low()); return;
|
|
|
|
|
case Operation::CWD: Primitive::cwd(pair_high(), pair_low()); return;
|
2023-10-09 18:54:14 +00:00
|
|
|
|
|
2023-10-09 19:03:01 +00:00
|
|
|
|
case Operation::ESC:
|
|
|
|
|
case Operation::NOP: return;
|
|
|
|
|
|
2023-10-09 20:21:04 +00:00
|
|
|
|
case Operation::HLT: flow_controller.halt(); return;
|
|
|
|
|
case Operation::WAIT: flow_controller.wait(); return;
|
|
|
|
|
|
2023-10-11 02:43:06 +00:00
|
|
|
|
case Operation::ADC: Primitive::add<true>(destination(), source(), status); break;
|
|
|
|
|
case Operation::ADD: Primitive::add<false>(destination(), source(), status); break;
|
|
|
|
|
case Operation::SBB: Primitive::sub<true, true>(destination(), source(), status); break;
|
|
|
|
|
case Operation::SUB: Primitive::sub<false, true>(destination(), source(), status); break;
|
|
|
|
|
case Operation::CMP: Primitive::sub<false, false>(destination(), source(), status); break;
|
|
|
|
|
case Operation::TEST: Primitive::test(destination(), source(), status); break;
|
2023-10-11 02:15:33 +00:00
|
|
|
|
|
2023-10-11 19:08:04 +00:00
|
|
|
|
case Operation::MUL: Primitive::mul(pair_high(), pair_low(), source(), status); return;
|
|
|
|
|
case Operation::IMUL_1: Primitive::imul(pair_high(), pair_low(), source(), status); return;
|
|
|
|
|
case Operation::DIV: Primitive::div(pair_high(), pair_low(), source(), flow_controller); return;
|
|
|
|
|
case Operation::IDIV: Primitive::idiv(pair_high(), pair_low(), source(), flow_controller); return;
|
2023-10-09 20:21:04 +00:00
|
|
|
|
|
2023-10-10 19:57:33 +00:00
|
|
|
|
case Operation::INC: Primitive::inc(destination(), status); break;
|
|
|
|
|
case Operation::DEC: Primitive::dec(destination(), status); break;
|
|
|
|
|
|
2023-10-09 15:59:38 +00:00
|
|
|
|
case Operation::AND: Primitive::and_(destination(), source(), status); break;
|
2023-10-10 21:12:06 +00:00
|
|
|
|
case Operation::OR: Primitive::or_(destination(), source(), status); break;
|
|
|
|
|
case Operation::XOR: Primitive::xor_(destination(), source(), status); break;
|
2023-10-11 02:09:10 +00:00
|
|
|
|
case Operation::NEG: Primitive::neg(source(), status); break;
|
|
|
|
|
case Operation::NOT: Primitive::not_(source()); break;
|
2023-10-09 15:46:59 +00:00
|
|
|
|
|
|
|
|
|
case Operation::CALLrel:
|
|
|
|
|
Primitive::call_relative(instruction.displacement(), registers, flow_controller);
|
|
|
|
|
return;
|
|
|
|
|
case Operation::CALLabs:
|
|
|
|
|
Primitive::call_absolute(destination(), flow_controller);
|
|
|
|
|
return;
|
|
|
|
|
case Operation::CALLfar:
|
|
|
|
|
Primitive::call_far<model>(instruction, flow_controller, registers, memory);
|
|
|
|
|
return;
|
2023-10-09 15:59:38 +00:00
|
|
|
|
|
2023-10-11 20:01:09 +00:00
|
|
|
|
case Operation::INT: Primitive::int_(instruction.operand(), flow_controller); return;
|
|
|
|
|
case Operation::INTO: Primitive::into(status, flow_controller); return;
|
|
|
|
|
|
2023-10-12 18:24:28 +00:00
|
|
|
|
case Operation::SAHF: Primitive::sahf(registers.ah(), status); return;
|
|
|
|
|
case Operation::LAHF: Primitive::lahf(registers.ah(), status); return;
|
|
|
|
|
|
|
|
|
|
case Operation::LDS: if constexpr (data_size == DataSize::Word) Primitive::ld<model, Source::DS>(instruction, destination(), memory, registers); return;
|
|
|
|
|
case Operation::LES: if constexpr (data_size == DataSize::Word) Primitive::ld<model, Source::ES>(instruction, destination(), memory, registers); return;
|
2023-10-12 17:54:51 +00:00
|
|
|
|
|
2023-10-12 18:31:25 +00:00
|
|
|
|
case Operation::LEA: Primitive::lea<model>(instruction, destination(), memory, registers); return;
|
2023-10-12 19:34:46 +00:00
|
|
|
|
case Operation::MOV: Primitive::mov(destination(), source()); return;
|
2023-10-12 18:31:25 +00:00
|
|
|
|
|
2023-10-11 18:36:42 +00:00
|
|
|
|
case Operation::JO: jcc(status.condition<Condition::Overflow>()); return;
|
|
|
|
|
case Operation::JNO: jcc(!status.condition<Condition::Overflow>()); return;
|
|
|
|
|
case Operation::JB: jcc(status.condition<Condition::Below>()); return;
|
|
|
|
|
case Operation::JNB: jcc(!status.condition<Condition::Below>()); return;
|
|
|
|
|
case Operation::JZ: jcc(status.condition<Condition::Zero>()); return;
|
|
|
|
|
case Operation::JNZ: jcc(!status.condition<Condition::Zero>()); return;
|
|
|
|
|
case Operation::JBE: jcc(status.condition<Condition::BelowOrEqual>()); return;
|
|
|
|
|
case Operation::JNBE: jcc(!status.condition<Condition::BelowOrEqual>()); return;
|
|
|
|
|
case Operation::JS: jcc(status.condition<Condition::Sign>()); return;
|
|
|
|
|
case Operation::JNS: jcc(!status.condition<Condition::Sign>()); return;
|
|
|
|
|
case Operation::JP: jcc(!status.condition<Condition::ParityOdd>()); return;
|
|
|
|
|
case Operation::JNP: jcc(status.condition<Condition::ParityOdd>()); return;
|
|
|
|
|
case Operation::JL: jcc(status.condition<Condition::Less>()); return;
|
|
|
|
|
case Operation::JNL: jcc(!status.condition<Condition::Less>()); return;
|
|
|
|
|
case Operation::JLE: jcc(status.condition<Condition::LessOrEqual>()); return;
|
|
|
|
|
case Operation::JNLE: jcc(!status.condition<Condition::LessOrEqual>()); return;
|
2023-10-10 20:27:06 +00:00
|
|
|
|
|
2023-10-09 15:59:38 +00:00
|
|
|
|
case Operation::CLC: Primitive::clc(status); return;
|
|
|
|
|
case Operation::CLD: Primitive::cld(status); return;
|
|
|
|
|
case Operation::CLI: Primitive::cli(status); return;
|
2023-10-10 02:16:37 +00:00
|
|
|
|
case Operation::STC: Primitive::stc(status); return;
|
|
|
|
|
case Operation::STD: Primitive::std(status); return;
|
|
|
|
|
case Operation::STI: Primitive::sti(status); return;
|
2023-10-09 15:59:38 +00:00
|
|
|
|
case Operation::CMC: Primitive::cmc(status); return;
|
2023-10-11 02:34:42 +00:00
|
|
|
|
|
|
|
|
|
case Operation::XCHG: Primitive::xchg(destination(), source()); return;
|
2023-10-12 19:52:05 +00:00
|
|
|
|
|
|
|
|
|
case Operation::SALC: Primitive::salc(registers.al(), status); return;
|
|
|
|
|
case Operation::SETMO:
|
|
|
|
|
if constexpr (model == Model::i8086) {
|
|
|
|
|
Primitive::setmo(destination(), status);
|
|
|
|
|
} else {
|
|
|
|
|
// TODO.
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
case Operation::SETMOC:
|
|
|
|
|
if constexpr (model == Model::i8086) {
|
|
|
|
|
Primitive::setmoc(destination(), registers.cl(), status);
|
|
|
|
|
} else {
|
|
|
|
|
// TODO.
|
|
|
|
|
}
|
|
|
|
|
return;
|
2023-10-05 18:37:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-05 20:49:02 +00:00
|
|
|
|
// Write to memory if required to complete this operation.
|
2023-10-09 02:11:05 +00:00
|
|
|
|
memory.template write_back<IntT>();
|
2023-10-05 18:37:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-05 20:49:02 +00:00
|
|
|
|
template <
|
2023-10-05 18:37:58 +00:00
|
|
|
|
Model model,
|
|
|
|
|
typename InstructionT,
|
|
|
|
|
typename FlowControllerT,
|
|
|
|
|
typename RegistersT,
|
|
|
|
|
typename MemoryT,
|
2023-10-05 20:49:02 +00:00
|
|
|
|
typename IOT
|
2023-10-05 18:37:58 +00:00
|
|
|
|
> void perform(
|
|
|
|
|
const InstructionT &instruction,
|
|
|
|
|
Status &status,
|
|
|
|
|
FlowControllerT &flow_controller,
|
|
|
|
|
RegistersT ®isters,
|
|
|
|
|
MemoryT &memory,
|
|
|
|
|
IOT &io
|
|
|
|
|
) {
|
2023-10-05 20:49:02 +00:00
|
|
|
|
// Dispatch to a function just like this that is specialised on data size.
|
|
|
|
|
// Fetching will occur in that specialised function, per the overlapping
|
|
|
|
|
// meaning of register names.
|
|
|
|
|
switch(instruction.operation_size()) {
|
|
|
|
|
case DataSize::Byte:
|
|
|
|
|
perform<model, DataSize::Byte>(instruction, status, flow_controller, registers, memory, io);
|
|
|
|
|
break;
|
|
|
|
|
case DataSize::Word:
|
|
|
|
|
perform<model, DataSize::Word>(instruction, status, flow_controller, registers, memory, io);
|
|
|
|
|
break;
|
|
|
|
|
case DataSize::DWord:
|
2023-10-10 01:50:17 +00:00
|
|
|
|
if constexpr (is_32bit(model)) {
|
|
|
|
|
perform<model, DataSize::DWord>(instruction, status, flow_controller, registers, memory, io);
|
|
|
|
|
}
|
2023-10-11 18:36:42 +00:00
|
|
|
|
[[fallthrough]];
|
2023-10-05 20:49:02 +00:00
|
|
|
|
case DataSize::None:
|
2023-10-11 18:36:42 +00:00
|
|
|
|
assert(false);
|
2023-10-05 20:49:02 +00:00
|
|
|
|
break;
|
2023-10-05 18:37:58 +00:00
|
|
|
|
}
|
2023-10-05 20:49:02 +00:00
|
|
|
|
}
|
2023-10-05 18:37:58 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* PerformImplementation_h */
|