2022-04-11 19:00:55 +00:00
|
|
|
|
//
|
|
|
|
|
// Decoder.cpp
|
|
|
|
|
// Clock Signal
|
|
|
|
|
//
|
|
|
|
|
// Created by Thomas Harte on 10/04/2022.
|
|
|
|
|
// Copyright © 2022 Thomas Harte. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#include "Decoder.hpp"
|
|
|
|
|
|
2022-04-12 11:49:08 +00:00
|
|
|
|
#include <cassert>
|
|
|
|
|
|
2022-04-11 19:00:55 +00:00
|
|
|
|
using namespace InstructionSet::M68k;
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
2022-04-22 19:11:41 +00:00
|
|
|
|
constexpr AddressingMode extended_modes[] = {
|
|
|
|
|
AddressingMode::AbsoluteShort, // 1'000
|
|
|
|
|
AddressingMode::AbsoluteLong, // 1'001
|
|
|
|
|
AddressingMode::ProgramCounterIndirectWithDisplacement, // 1'010
|
|
|
|
|
AddressingMode::ProgramCounterIndirectWithIndex8bitDisplacement, // 1'011
|
|
|
|
|
AddressingMode::ImmediateData, // 1'100
|
|
|
|
|
AddressingMode::None, // [1'101]
|
|
|
|
|
AddressingMode::None, // [1'110]
|
|
|
|
|
AddressingMode::None, // [1'111]
|
|
|
|
|
};
|
|
|
|
|
|
2022-04-11 19:00:55 +00:00
|
|
|
|
/// @returns The @c AddressingMode given the specified mode and reg, subject to potential
|
|
|
|
|
/// aliasing on the '020+ as described above the @c AddressingMode enum.
|
2022-04-22 19:11:41 +00:00
|
|
|
|
constexpr AddressingMode combined_mode(int mode, int reg) {
|
|
|
|
|
assert(mode >= 0 && mode < 8);
|
|
|
|
|
assert(reg >= 0 && reg < 8);
|
|
|
|
|
|
|
|
|
|
// Look up mode, mapping invalid combinations to ::None, branchlessly.
|
|
|
|
|
const int use_reg = ((mode + 1) >> 3) & 1;
|
|
|
|
|
const AddressingMode modes[] = { AddressingMode(mode), extended_modes[reg] };
|
|
|
|
|
return modes[use_reg];
|
2022-04-11 19:00:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-24 14:43:06 +00:00
|
|
|
|
template <AddressingMode... T> struct Mask {
|
|
|
|
|
static constexpr uint32_t value = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template <AddressingMode F, AddressingMode... T> struct Mask<F, T...> {
|
|
|
|
|
static constexpr uint32_t value = uint32_t(1 << int(F)) | Mask<T...>::value;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static constexpr uint32_t NoOperand = Mask<AddressingMode::None>::value;
|
|
|
|
|
|
|
|
|
|
template <uint32_t first, uint32_t second> struct TwoOperandMask {
|
|
|
|
|
static constexpr uint32_t value = ((first << 16) & 0xffff0000) | (second & 0x0000ffff);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template <uint32_t first> struct OneOperandMask {
|
|
|
|
|
static constexpr uint32_t value = TwoOperandMask<first, NoOperand>::value;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct NoOperandMask {
|
|
|
|
|
static constexpr uint32_t value = OneOperandMask<NoOperand>::value;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
uint32_t operand_mask(Preinstruction instr) {
|
|
|
|
|
return uint32_t((0x1'0000 << int(instr.mode<0>())) | (0x0'0001 << int(instr.mode<1>())));
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-11 19:00:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// MARK: - Instruction decoders.
|
|
|
|
|
|
2022-04-13 13:29:12 +00:00
|
|
|
|
/// Maps from an ExtendedOperation to an Operation; in practice that means that anything
|
|
|
|
|
/// that already is an Operation is passed through, and other things are mapped down into
|
|
|
|
|
/// an operation that doesn't duplicate detail about the operands that can be held by a
|
|
|
|
|
/// Preinstruction in other ways — for example, ANDI and AND are both represented by
|
|
|
|
|
/// a Preinstruction with an operation of AND, the former just happens to specify an
|
|
|
|
|
/// immediate operand.
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
2022-04-16 00:33:59 +00:00
|
|
|
|
constexpr Operation Predecoder<model>::operation(OpT op) {
|
|
|
|
|
if(op < OpT(Operation::Max)) {
|
2022-04-12 20:17:30 +00:00
|
|
|
|
return Operation(op);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch(op) {
|
|
|
|
|
case MOVEMtoRl: case MOVEMtoMl: return Operation::MOVEMl;
|
|
|
|
|
case MOVEMtoRw: case MOVEMtoMw: return Operation::MOVEMw;
|
|
|
|
|
case MOVEPtoRl: case MOVEPtoMl: return Operation::MOVEPl;
|
|
|
|
|
case MOVEPtoRw: case MOVEPtoMw: return Operation::MOVEPw;
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
case ADDQb: return Operation::ADDb;
|
|
|
|
|
case ADDQw: return Operation::ADDw;
|
|
|
|
|
case ADDQl: return Operation::ADDl;
|
|
|
|
|
case ADDQAw: return Operation::ADDAw;
|
|
|
|
|
case ADDQAl: return Operation::ADDAl;
|
|
|
|
|
case SUBQb: return Operation::SUBb;
|
2022-04-18 13:08:49 +00:00
|
|
|
|
case SUBQw: return Operation::SUBw;
|
|
|
|
|
case SUBQl: return Operation::SUBl;
|
2022-04-15 13:40:37 +00:00
|
|
|
|
case SUBQAw: return Operation::SUBAw;
|
|
|
|
|
case SUBQAl: return Operation::SUBAl;
|
|
|
|
|
|
2022-04-15 19:33:54 +00:00
|
|
|
|
case BTSTI: return Operation::BTST;
|
|
|
|
|
case BCHGI: return Operation::BCHG;
|
|
|
|
|
case BCLRI: return Operation::BCLR;
|
|
|
|
|
case BSETI: return Operation::BSET;
|
2022-04-15 13:40:37 +00:00
|
|
|
|
|
2022-04-22 13:24:16 +00:00
|
|
|
|
case CMPMb: return Operation::CMPb;
|
|
|
|
|
case CMPMw: return Operation::CMPw;
|
|
|
|
|
case CMPMl: return Operation::CMPl;
|
|
|
|
|
|
2022-04-18 11:42:30 +00:00
|
|
|
|
#define ImmediateGroup(x) \
|
|
|
|
|
case x##Ib: return Operation::x##b; \
|
|
|
|
|
case x##Iw: return Operation::x##w; \
|
|
|
|
|
case x##Il: return Operation::x##l;
|
|
|
|
|
|
|
|
|
|
ImmediateGroup(ADD)
|
|
|
|
|
ImmediateGroup(SUB);
|
|
|
|
|
ImmediateGroup(OR);
|
|
|
|
|
ImmediateGroup(AND);
|
|
|
|
|
ImmediateGroup(EOR);
|
|
|
|
|
ImmediateGroup(CMP);
|
|
|
|
|
|
|
|
|
|
#undef ImmediateGroup
|
|
|
|
|
|
2022-04-23 00:37:09 +00:00
|
|
|
|
case ADDtoRb: case ADDtoMb: return Operation::ADDb;
|
|
|
|
|
case ADDtoRw: case ADDtoMw: return Operation::ADDw;
|
|
|
|
|
case ADDtoRl: case ADDtoMl: return Operation::ADDl;
|
|
|
|
|
|
|
|
|
|
case SUBtoRb: case SUBtoMb: return Operation::SUBb;
|
|
|
|
|
case SUBtoRw: case SUBtoMw: return Operation::SUBw;
|
|
|
|
|
case SUBtoRl: case SUBtoMl: return Operation::SUBl;
|
|
|
|
|
|
|
|
|
|
case ANDtoRb: case ANDtoMb: return Operation::ANDb;
|
|
|
|
|
case ANDtoRw: case ANDtoMw: return Operation::ANDw;
|
|
|
|
|
case ANDtoRl: case ANDtoMl: return Operation::ANDl;
|
|
|
|
|
|
|
|
|
|
case ORtoRb: case ORtoMb: return Operation::ORb;
|
|
|
|
|
case ORtoRw: case ORtoMw: return Operation::ORw;
|
|
|
|
|
case ORtoRl: case ORtoMl: return Operation::ORl;
|
|
|
|
|
|
2022-04-12 20:17:30 +00:00
|
|
|
|
default: break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Operation::Undefined;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-24 14:43:06 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
template <uint8_t op> uint32_t Predecoder<model>::invalid_operands() {
|
2022-04-24 18:47:14 +00:00
|
|
|
|
constexpr auto Dn = Mask< AddressingMode::DataRegisterDirect >::value;
|
|
|
|
|
constexpr auto An = Mask< AddressingMode::AddressRegisterDirect >::value;
|
|
|
|
|
constexpr auto Ind = Mask< AddressingMode::AddressRegisterIndirect >::value;
|
|
|
|
|
constexpr auto PostInc = Mask< AddressingMode::AddressRegisterIndirectWithPostincrement >::value;
|
|
|
|
|
constexpr auto PreDec = Mask< AddressingMode::AddressRegisterIndirectWithPredecrement >::value;
|
|
|
|
|
constexpr auto d16An = Mask< AddressingMode::AddressRegisterIndirectWithDisplacement >::value;
|
|
|
|
|
constexpr auto d8AnXn = Mask< AddressingMode::AddressRegisterIndirectWithIndex8bitDisplacement >::value;
|
|
|
|
|
constexpr auto XXXw = Mask< AddressingMode::AbsoluteShort >::value;
|
|
|
|
|
constexpr auto XXXl = Mask< AddressingMode::AbsoluteLong >::value;
|
|
|
|
|
constexpr auto d16PC = Mask< AddressingMode::ProgramCounterIndirectWithDisplacement >::value;
|
|
|
|
|
constexpr auto d8PCXn = Mask< AddressingMode::ProgramCounterIndirectWithIndex8bitDisplacement >::value;
|
|
|
|
|
constexpr auto Imm = Mask< AddressingMode::ImmediateData >::value;
|
|
|
|
|
constexpr auto Quick = Mask< AddressingMode::Quick >::value;
|
|
|
|
|
|
|
|
|
|
|
2022-04-24 14:43:06 +00:00
|
|
|
|
// A few recurring combinations; terminology is directly from
|
|
|
|
|
// the Programmers' Reference Manual.
|
|
|
|
|
|
|
|
|
|
//
|
2022-04-24 18:47:14 +00:00
|
|
|
|
// All modes: the complete set (other than Quick).
|
2022-04-24 14:43:06 +00:00
|
|
|
|
//
|
2022-04-24 18:47:14 +00:00
|
|
|
|
static constexpr auto AllModes = Dn | An | Ind | PostInc | PreDec | d16An | d8AnXn | XXXw | XXXl | d16PC | d8PCXn | Imm;
|
2022-04-24 19:12:18 +00:00
|
|
|
|
static constexpr auto AllModesNoAn = AllModes & ~An;
|
2022-04-24 14:43:06 +00:00
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Alterable addressing modes (with and without AddressRegisterDirect).
|
|
|
|
|
//
|
2022-04-24 18:47:14 +00:00
|
|
|
|
static constexpr auto AlterableAddressingModes = Dn | An | Ind | PostInc | PreDec | d16An | d8AnXn | XXXw | XXXl;
|
2022-04-24 19:12:18 +00:00
|
|
|
|
static constexpr auto AlterableAddressingModesNoAn = AlterableAddressingModes & ~An;
|
2022-04-24 14:43:06 +00:00
|
|
|
|
|
|
|
|
|
switch(op) {
|
|
|
|
|
default: return NoOperandMask::value;
|
|
|
|
|
|
|
|
|
|
case OpT(Operation::ABCD):
|
|
|
|
|
case OpT(Operation::ADDXb): case OpT(Operation::ADDXw): case OpT(Operation::ADDXl):
|
2022-04-24 18:47:14 +00:00
|
|
|
|
return ~TwoOperandMask<
|
|
|
|
|
Dn | PreDec,
|
|
|
|
|
Dn | PreDec
|
|
|
|
|
>::value;
|
2022-04-24 14:43:06 +00:00
|
|
|
|
|
|
|
|
|
case ADDtoRb:
|
2022-04-24 19:12:18 +00:00
|
|
|
|
case ANDtoRb: case ANDtoRw: case ANDtoRl:
|
2022-04-25 01:05:00 +00:00
|
|
|
|
case OpT(Operation::CHK):
|
|
|
|
|
case OpT(Operation::CMPb):
|
2022-04-24 14:43:06 +00:00
|
|
|
|
return ~TwoOperandMask<
|
2022-04-24 19:12:18 +00:00
|
|
|
|
AllModesNoAn,
|
2022-04-24 18:47:14 +00:00
|
|
|
|
Dn
|
|
|
|
|
>::value;
|
2022-04-24 14:43:06 +00:00
|
|
|
|
|
|
|
|
|
case ADDtoRw: case ADDtoRl:
|
2022-04-25 01:05:00 +00:00
|
|
|
|
case OpT(Operation::CMPw): case OpT(Operation::CMPl):
|
2022-04-24 14:43:06 +00:00
|
|
|
|
return ~TwoOperandMask<
|
2022-04-24 18:47:14 +00:00
|
|
|
|
AllModes,
|
|
|
|
|
Dn
|
|
|
|
|
>::value;
|
2022-04-24 14:43:06 +00:00
|
|
|
|
|
|
|
|
|
case ADDtoMb: case ADDtoMw: case ADDtoMl:
|
2022-04-24 19:12:18 +00:00
|
|
|
|
case ANDtoMb: case ANDtoMw: case ANDtoMl:
|
2022-04-24 18:47:14 +00:00
|
|
|
|
return ~TwoOperandMask<
|
|
|
|
|
Dn,
|
|
|
|
|
Ind | PostInc | PreDec | d16An | d8AnXn | XXXw | XXXl
|
|
|
|
|
>::value;
|
2022-04-24 14:43:06 +00:00
|
|
|
|
|
|
|
|
|
case OpT(Operation::ADDAw): case OpT(Operation::ADDAl):
|
|
|
|
|
return ~TwoOperandMask<
|
2022-04-24 18:47:14 +00:00
|
|
|
|
AllModes,
|
|
|
|
|
An
|
|
|
|
|
>::value;
|
2022-04-24 14:43:06 +00:00
|
|
|
|
|
|
|
|
|
case ADDIb: case ADDIl: case ADDIw:
|
2022-04-24 19:12:18 +00:00
|
|
|
|
case ANDIb: case ANDIl: case ANDIw:
|
2022-04-24 18:47:14 +00:00
|
|
|
|
return ~TwoOperandMask<
|
|
|
|
|
Imm,
|
2022-04-24 19:12:18 +00:00
|
|
|
|
AlterableAddressingModesNoAn
|
2022-04-24 14:43:06 +00:00
|
|
|
|
>::value;
|
|
|
|
|
|
|
|
|
|
case ADDQb:
|
2022-04-24 18:47:14 +00:00
|
|
|
|
return ~TwoOperandMask<
|
|
|
|
|
Quick,
|
2022-04-24 19:12:18 +00:00
|
|
|
|
AlterableAddressingModesNoAn
|
2022-04-24 14:43:06 +00:00
|
|
|
|
>::value;
|
|
|
|
|
|
|
|
|
|
case ADDQw: case ADDQl:
|
2022-04-24 18:47:14 +00:00
|
|
|
|
return ~TwoOperandMask<
|
|
|
|
|
Quick,
|
2022-04-24 14:43:06 +00:00
|
|
|
|
AlterableAddressingModes
|
|
|
|
|
>::value;
|
|
|
|
|
|
2022-04-24 19:12:18 +00:00
|
|
|
|
case OpT(Operation::ANDItoCCR):
|
2022-04-25 00:49:41 +00:00
|
|
|
|
case OpT(Operation::Bccw): case OpT(Operation::Bccl):
|
|
|
|
|
case OpT(Operation::BSRl): case OpT(Operation::BSRw):
|
2022-04-24 19:12:18 +00:00
|
|
|
|
return ~OneOperandMask<
|
|
|
|
|
Imm
|
|
|
|
|
>::value;
|
|
|
|
|
|
2022-04-24 23:53:54 +00:00
|
|
|
|
case OpT(Operation::ASLb): case OpT(Operation::ASLw): case OpT(Operation::ASLl):
|
|
|
|
|
case OpT(Operation::ASRb): case OpT(Operation::ASRw): case OpT(Operation::ASRl):
|
|
|
|
|
return ~TwoOperandMask<
|
|
|
|
|
Quick | Dn,
|
|
|
|
|
Dn
|
|
|
|
|
>::value;
|
|
|
|
|
|
|
|
|
|
case OpT(Operation::Bccb):
|
2022-04-25 00:49:41 +00:00
|
|
|
|
case OpT(Operation::BSRb):
|
2022-04-24 23:53:54 +00:00
|
|
|
|
return ~OneOperandMask<
|
|
|
|
|
Quick
|
|
|
|
|
>::value;
|
|
|
|
|
|
2022-04-24 23:58:10 +00:00
|
|
|
|
case OpT(Operation::BCHG):
|
|
|
|
|
case OpT(Operation::BCLR):
|
|
|
|
|
case OpT(Operation::BSET):
|
2022-04-24 23:53:54 +00:00
|
|
|
|
return ~TwoOperandMask<
|
|
|
|
|
Dn,
|
|
|
|
|
AlterableAddressingModesNoAn
|
|
|
|
|
>::value;
|
|
|
|
|
|
2022-04-24 23:58:10 +00:00
|
|
|
|
case BCHGI: case BCLRI: case BSETI:
|
2022-04-24 23:53:54 +00:00
|
|
|
|
return ~TwoOperandMask<
|
|
|
|
|
Imm,
|
|
|
|
|
AlterableAddressingModesNoAn
|
|
|
|
|
>::value;
|
|
|
|
|
|
2022-04-25 00:49:41 +00:00
|
|
|
|
case OpT(Operation::BTST):
|
|
|
|
|
return ~TwoOperandMask<
|
|
|
|
|
Dn,
|
|
|
|
|
AllModesNoAn
|
|
|
|
|
>::value;
|
|
|
|
|
|
|
|
|
|
case BTSTI:
|
|
|
|
|
return ~TwoOperandMask<
|
|
|
|
|
Imm,
|
|
|
|
|
Dn | Ind | PostInc | PreDec | d16An | d8AnXn | XXXw | XXXl | d16PC | d8PCXn
|
|
|
|
|
>::value;
|
|
|
|
|
|
2022-04-25 01:05:00 +00:00
|
|
|
|
case OpT(Operation::CLRb): case OpT(Operation::CLRw): case OpT(Operation::CLRl):
|
2022-04-24 14:43:06 +00:00
|
|
|
|
case OpT(Operation::NBCD):
|
2022-04-24 18:47:14 +00:00
|
|
|
|
return ~OneOperandMask<
|
2022-04-24 19:12:18 +00:00
|
|
|
|
AlterableAddressingModesNoAn
|
2022-04-24 18:47:14 +00:00
|
|
|
|
>::value;
|
2022-04-25 01:05:00 +00:00
|
|
|
|
|
|
|
|
|
case OpT(Operation::CMPAw): case OpT(Operation::CMPAl):
|
|
|
|
|
return ~TwoOperandMask<
|
|
|
|
|
AllModes,
|
|
|
|
|
An
|
|
|
|
|
>::value;
|
2022-04-24 14:43:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 18:36:36 +00:00
|
|
|
|
/// Provides a post-decoding validation step — primarily ensures that the prima facie addressing modes are supported by the operation.
|
2022-04-20 11:59:13 +00:00
|
|
|
|
// TODO: once complete and working, see how ugly it would be to incorpoate these tests into the main
|
|
|
|
|
// decoding switches.
|
2022-04-19 13:44:02 +00:00
|
|
|
|
template <Model model>
|
2022-04-19 13:59:02 +00:00
|
|
|
|
template <uint8_t op, bool validate> Preinstruction Predecoder<model>::validated(Preinstruction original) {
|
|
|
|
|
if constexpr (!validate) {
|
|
|
|
|
return original;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch(op) {
|
|
|
|
|
default: return original;
|
|
|
|
|
|
2022-04-24 19:12:18 +00:00
|
|
|
|
// All operations converted to the AND test.
|
2022-04-24 14:43:06 +00:00
|
|
|
|
case OpT(Operation::ABCD):
|
|
|
|
|
case OpT(Operation::ADDXb): case OpT(Operation::ADDXw): case OpT(Operation::ADDXl):
|
|
|
|
|
case ADDtoRb: case ADDtoRw: case ADDtoRl:
|
|
|
|
|
case ADDIb: case ADDIl: case ADDIw:
|
|
|
|
|
case ADDtoMb: case ADDtoMw: case ADDtoMl:
|
|
|
|
|
case OpT(Operation::ADDAw): case OpT(Operation::ADDAl):
|
|
|
|
|
case ADDQb: case ADDQw: case ADDQl:
|
2022-04-24 19:12:18 +00:00
|
|
|
|
case ANDtoRb: case ANDtoRw: case ANDtoRl:
|
|
|
|
|
case ANDtoMb: case ANDtoMw: case ANDtoMl:
|
|
|
|
|
case ANDIb: case ANDIl: case ANDIw:
|
|
|
|
|
case OpT(Operation::ANDItoCCR):
|
2022-04-24 23:53:54 +00:00
|
|
|
|
case OpT(Operation::ASLb): case OpT(Operation::ASLw): case OpT(Operation::ASLl):
|
|
|
|
|
case OpT(Operation::ASRb): case OpT(Operation::ASRw): case OpT(Operation::ASRl):
|
|
|
|
|
case OpT(Operation::Bccb): case OpT(Operation::Bccw): case OpT(Operation::Bccl):
|
|
|
|
|
case OpT(Operation::BCHG): case BCHGI:
|
|
|
|
|
case OpT(Operation::BCLR): case BCLRI:
|
2022-04-24 23:58:10 +00:00
|
|
|
|
case OpT(Operation::BSET): case BSETI:
|
2022-04-25 00:49:41 +00:00
|
|
|
|
case OpT(Operation::BSRb): case OpT(Operation::BSRw): case OpT(Operation::BSRl):
|
|
|
|
|
case OpT(Operation::BTST): case BTSTI:
|
2022-04-25 01:05:00 +00:00
|
|
|
|
case OpT(Operation::CHK):
|
|
|
|
|
case OpT(Operation::CLRb): case OpT(Operation::CLRw): case OpT(Operation::CLRl):
|
|
|
|
|
case OpT(Operation::CMPb): case OpT(Operation::CMPw): case OpT(Operation::CMPl):
|
|
|
|
|
case OpT(Operation::CMPAw): case OpT(Operation::CMPAl):
|
2022-04-24 14:43:06 +00:00
|
|
|
|
case OpT(Operation::NBCD): {
|
|
|
|
|
const auto invalid = invalid_operands<op>();
|
|
|
|
|
const auto observed = operand_mask(original);
|
|
|
|
|
return (observed & invalid) ? Preinstruction() : original;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-20 11:59:13 +00:00
|
|
|
|
case OpT(Operation::MOVEfromSR):
|
2022-04-22 18:33:43 +00:00
|
|
|
|
case OpT(Operation::TAS):
|
2022-04-19 13:59:02 +00:00
|
|
|
|
switch(original.mode<0>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithDisplacement:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithIndex8bitDisplacement:
|
|
|
|
|
case AddressingMode::ImmediateData:
|
2022-04-19 18:36:36 +00:00
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-20 11:59:13 +00:00
|
|
|
|
case OpT(Operation::MOVEtoCCR):
|
|
|
|
|
case OpT(Operation::MOVEtoSR):
|
|
|
|
|
switch(original.mode<0>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 18:36:36 +00:00
|
|
|
|
// The various immediates.
|
2022-04-22 00:14:52 +00:00
|
|
|
|
case EORIb: case EORIl: case EORIw:
|
|
|
|
|
case ORIb: case ORIl: case ORIw:
|
2022-04-19 20:27:20 +00:00
|
|
|
|
case SUBIb: case SUBIl: case SUBIw:
|
2022-04-19 18:36:36 +00:00
|
|
|
|
switch(original.mode<1>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
case AddressingMode::ImmediateData:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithDisplacement:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithIndex8bitDisplacement:
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-20 20:29:45 +00:00
|
|
|
|
case CMPIb: case CMPIl: case CMPIw:
|
|
|
|
|
switch(original.mode<1>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithDisplacement:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithIndex8bitDisplacement:
|
|
|
|
|
if constexpr (model >= Model::M68010) {
|
|
|
|
|
return original;
|
|
|
|
|
}
|
|
|
|
|
[[fallthrough]];
|
|
|
|
|
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
case AddressingMode::ImmediateData:
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 23:45:51 +00:00
|
|
|
|
// ADD, SUB, MOVE, MOVEA
|
2022-04-21 20:05:00 +00:00
|
|
|
|
case SUBQb: case SUBQw: case SUBQl:
|
2022-04-19 21:13:23 +00:00
|
|
|
|
case OpT(Operation::MOVEb): case OpT(Operation::MOVEw): case OpT(Operation::MOVEl):
|
2022-04-22 00:14:52 +00:00
|
|
|
|
case OpT(Operation::MOVEAw): case OpT(Operation::MOVEAl):
|
2022-04-22 00:36:04 +00:00
|
|
|
|
case OpT(Operation::EORb): case OpT(Operation::EORw): case OpT(Operation::EORl):
|
2022-04-22 13:24:16 +00:00
|
|
|
|
case OpT(Operation::ORb): case OpT(Operation::ORw): case OpT(Operation::ORl): {
|
2022-04-21 20:05:00 +00:00
|
|
|
|
// TODO: I'm going to need get-size-by-operation elsewhere; use that here when implemented.
|
|
|
|
|
constexpr bool is_byte =
|
2022-04-23 00:37:09 +00:00
|
|
|
|
op == OpT(Operation::MOVEb) || op == ADDQb || op == SUBQb || op == OpT(Operation::EORb);
|
2022-04-21 20:05:00 +00:00
|
|
|
|
|
2022-04-19 18:36:36 +00:00
|
|
|
|
switch(original.mode<0>()) {
|
|
|
|
|
default: break;
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
2022-04-21 20:05:00 +00:00
|
|
|
|
if constexpr (!is_byte) {
|
2022-04-19 18:36:36 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2022-04-19 21:13:23 +00:00
|
|
|
|
[[fallthrough]];
|
2022-04-19 18:36:36 +00:00
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 18:43:01 +00:00
|
|
|
|
switch(original.mode<1>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
|
2022-04-19 20:49:26 +00:00
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
2022-04-21 20:05:00 +00:00
|
|
|
|
if constexpr (!is_byte) {
|
2022-04-19 21:13:23 +00:00
|
|
|
|
return original;
|
|
|
|
|
}
|
|
|
|
|
[[fallthrough]];
|
2022-04-19 18:43:01 +00:00
|
|
|
|
case AddressingMode::ImmediateData:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithDisplacement:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithIndex8bitDisplacement:
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
2022-04-21 20:05:00 +00:00
|
|
|
|
}
|
2022-04-19 18:43:01 +00:00
|
|
|
|
|
2022-04-25 00:49:41 +00:00
|
|
|
|
case SUBtoRb: case SUBtoRw: case SUBtoRl: {
|
2022-04-23 00:37:09 +00:00
|
|
|
|
constexpr bool is_byte = op == ADDtoRb || op == SUBtoRb || op == SUBtoRb || op == ADDtoRb;
|
|
|
|
|
|
|
|
|
|
switch(original.mode<0>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
if constexpr (!is_byte) {
|
|
|
|
|
return original;
|
|
|
|
|
}
|
|
|
|
|
[[fallthrough]];
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-23 00:57:45 +00:00
|
|
|
|
case ORtoMb: case ORtoMw: case ORtoMl:
|
|
|
|
|
switch(original.mode<1>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
case AddressingMode::DataRegisterDirect:
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
case AddressingMode::ImmediateData:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithDisplacement:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithIndex8bitDisplacement:
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case ORtoRb: case ORtoRw: case ORtoRl:
|
|
|
|
|
switch(original.mode<0>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-24 14:43:06 +00:00
|
|
|
|
/*case ADDtoMb: case ADDtoMw: case ADDtoMl:*/
|
2022-04-23 00:57:45 +00:00
|
|
|
|
case SUBtoMb: case SUBtoMw: case SUBtoMl: {
|
2022-04-23 00:37:09 +00:00
|
|
|
|
// TODO: I'm going to need get-size-by-operation elsewhere; use that here when implemented.
|
2022-04-23 00:57:45 +00:00
|
|
|
|
constexpr bool is_byte = op == ADDtoMb || op == SUBtoMb;
|
2022-04-23 00:37:09 +00:00
|
|
|
|
|
|
|
|
|
switch(original.mode<0>()) {
|
|
|
|
|
default: break;
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
if constexpr (!is_byte) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
[[fallthrough]];
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch(original.mode<1>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::DataRegisterDirect:
|
|
|
|
|
// TODO: this is per the documentation, but is it true?
|
|
|
|
|
if constexpr (op == ANDtoMb || op == ANDtoMw || op == ANDtoMl || op == ORtoMb || op == ORtoMw || op == ORtoMl) {
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
if constexpr (!is_byte) {
|
|
|
|
|
return original;
|
|
|
|
|
}
|
|
|
|
|
[[fallthrough]];
|
|
|
|
|
case AddressingMode::ImmediateData:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithDisplacement:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithIndex8bitDisplacement:
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-22 13:24:16 +00:00
|
|
|
|
case OpT(Operation::NOTb): case OpT(Operation::NOTw): case OpT(Operation::NOTl):
|
|
|
|
|
switch(original.mode<0>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
case AddressingMode::ImmediateData:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithDisplacement:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithIndex8bitDisplacement:
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 20:27:20 +00:00
|
|
|
|
case OpT(Operation::SUBAw): case OpT(Operation::SUBAl):
|
2022-04-19 18:43:01 +00:00
|
|
|
|
switch(original.mode<0>()) {
|
|
|
|
|
default: break;
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 18:36:36 +00:00
|
|
|
|
switch(original.mode<1>()) {
|
2022-04-19 20:31:03 +00:00
|
|
|
|
default: return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::ImmediateData:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithDisplacement:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithIndex8bitDisplacement:
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-20 00:34:08 +00:00
|
|
|
|
// LEA, PEA
|
|
|
|
|
case OpT(Operation::LEA): case OpT(Operation::PEA):
|
2022-04-19 20:31:03 +00:00
|
|
|
|
switch(original.mode<0>()) {
|
2022-04-19 18:36:36 +00:00
|
|
|
|
default: return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::None:
|
2022-04-19 23:45:51 +00:00
|
|
|
|
case AddressingMode::DataRegisterDirect:
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
case AddressingMode::AddressRegisterIndirectWithPostincrement:
|
|
|
|
|
case AddressingMode::AddressRegisterIndirectWithPredecrement:
|
|
|
|
|
case AddressingMode::ImmediateData:
|
2022-04-19 13:59:02 +00:00
|
|
|
|
return Preinstruction();
|
2022-04-20 13:17:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-20 20:29:45 +00:00
|
|
|
|
case OpT(Operation::TSTb): case OpT(Operation::TSTw): case OpT(Operation::TSTl):
|
|
|
|
|
switch(original.mode<0>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
if constexpr (op == OpT(Operation::TSTb)) {
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
[[fallthrough]];
|
|
|
|
|
|
|
|
|
|
case AddressingMode::ImmediateData:
|
|
|
|
|
if constexpr (model < Model::M68020) {
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithDisplacement:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithIndex8bitDisplacement:
|
|
|
|
|
if constexpr (model >= Model::M68010) {
|
|
|
|
|
return original;
|
|
|
|
|
}
|
|
|
|
|
[[fallthrough]];
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-20 20:56:26 +00:00
|
|
|
|
case OpT(Operation::JSR): case OpT(Operation::JMP):
|
|
|
|
|
switch(original.mode<0>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::DataRegisterDirect:
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
case AddressingMode::AddressRegisterIndirectWithPostincrement:
|
|
|
|
|
case AddressingMode::AddressRegisterIndirectWithPredecrement:
|
|
|
|
|
case AddressingMode::ImmediateData:
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case OpT(Operation::Scc):
|
2022-04-21 00:19:56 +00:00
|
|
|
|
case OpT(Operation::NEGXb): case OpT(Operation::NEGXw): case OpT(Operation::NEGXl):
|
|
|
|
|
case OpT(Operation::NEGb): case OpT(Operation::NEGw): case OpT(Operation::NEGl):
|
2022-04-20 20:56:26 +00:00
|
|
|
|
switch(original.mode<0>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
case AddressingMode::ImmediateData:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithDisplacement:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithIndex8bitDisplacement:
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
2022-04-20 20:29:45 +00:00
|
|
|
|
}
|
2022-04-21 15:26:56 +00:00
|
|
|
|
|
|
|
|
|
case OpT(Operation::ASLm): case OpT(Operation::ASRm):
|
|
|
|
|
case OpT(Operation::LSLm): case OpT(Operation::LSRm):
|
|
|
|
|
case OpT(Operation::ROLm): case OpT(Operation::RORm):
|
|
|
|
|
case OpT(Operation::ROXLm): case OpT(Operation::ROXRm):
|
|
|
|
|
switch(original.mode<0>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::DataRegisterDirect:
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
case AddressingMode::ImmediateData:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithDisplacement:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithIndex8bitDisplacement:
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
2022-04-21 19:47:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case MOVEMtoMw: case MOVEMtoMl:
|
|
|
|
|
switch(original.mode<1>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::DataRegisterDirect:
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
case AddressingMode::AddressRegisterIndirectWithPostincrement:
|
|
|
|
|
case AddressingMode::ImmediateData:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithDisplacement:
|
|
|
|
|
case AddressingMode::ProgramCounterIndirectWithIndex8bitDisplacement:
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case MOVEMtoRw: case MOVEMtoRl:
|
|
|
|
|
switch(original.mode<0>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::DataRegisterDirect:
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
case AddressingMode::AddressRegisterIndirectWithPredecrement:
|
|
|
|
|
case AddressingMode::ImmediateData:
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
2022-04-21 15:26:56 +00:00
|
|
|
|
}
|
2022-04-22 13:47:16 +00:00
|
|
|
|
|
|
|
|
|
case OpT(Operation::DIVU): case OpT(Operation::DIVS):
|
|
|
|
|
case OpT(Operation::MULU): case OpT(Operation::MULS):
|
|
|
|
|
switch(original.mode<0>()) {
|
|
|
|
|
default: return original;
|
|
|
|
|
|
|
|
|
|
case AddressingMode::AddressRegisterDirect:
|
|
|
|
|
case AddressingMode::None:
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
2022-04-20 20:29:45 +00:00
|
|
|
|
}
|
2022-04-19 13:44:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
/// Decodes the fields within an instruction and constructs a `Preinstruction`, given that the operation has already been
|
|
|
|
|
/// decoded. Optionally applies validation
|
|
|
|
|
template <Model model>
|
|
|
|
|
template <uint8_t op, bool validate> Preinstruction Predecoder<model>::decode(uint16_t instruction) {
|
2022-04-11 19:00:55 +00:00
|
|
|
|
// Fields used pervasively below.
|
|
|
|
|
//
|
|
|
|
|
// Underlying assumption: the compiler will discard whatever of these
|
|
|
|
|
// isn't actually used.
|
|
|
|
|
const auto ea_register = instruction & 7;
|
|
|
|
|
const auto ea_mode = (instruction >> 3) & 7;
|
|
|
|
|
const auto opmode = (instruction >> 6) & 7;
|
|
|
|
|
const auto data_register = (instruction >> 9) & 7;
|
2022-04-15 20:01:33 +00:00
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
constexpr auto operation = Predecoder<model>::operation(op);
|
2022-04-11 19:00:55 +00:00
|
|
|
|
|
2022-04-12 20:17:30 +00:00
|
|
|
|
switch(op) {
|
2022-04-11 19:00:55 +00:00
|
|
|
|
|
|
|
|
|
//
|
2022-04-19 18:36:36 +00:00
|
|
|
|
// MARK: ABCD, SBCD, ADDX.
|
2022-04-11 19:00:55 +00:00
|
|
|
|
//
|
2022-04-18 12:00:43 +00:00
|
|
|
|
// b9–b11: Rx (destination)
|
|
|
|
|
// b0–b2: Ry (source)
|
|
|
|
|
// b3: 1 => operation is memory-to-memory; 0 => register-to-register.
|
|
|
|
|
//
|
2022-04-19 18:36:36 +00:00
|
|
|
|
case OpT(Operation::ABCD): case OpT(Operation::SBCD):
|
2022-04-19 20:27:20 +00:00
|
|
|
|
case OpT(Operation::ADDXb): case OpT(Operation::ADDXw): case OpT(Operation::ADDXl):
|
|
|
|
|
case OpT(Operation::SUBXb): case OpT(Operation::SUBXw): case OpT(Operation::SUBXl): {
|
2022-04-11 19:00:55 +00:00
|
|
|
|
const auto addressing_mode = (instruction & 8) ?
|
|
|
|
|
AddressingMode::AddressRegisterIndirectWithPredecrement : AddressingMode::DataRegisterDirect;
|
|
|
|
|
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
addressing_mode, ea_register,
|
|
|
|
|
addressing_mode, data_register));
|
2022-04-11 19:00:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// MARK: AND, OR, EOR.
|
|
|
|
|
//
|
2022-04-18 12:00:43 +00:00
|
|
|
|
// b9–b11: a register;
|
|
|
|
|
// b0–b2 and b3–b5: an effective address;
|
|
|
|
|
// b6–b8: an opmode, i.e. source + direction.
|
|
|
|
|
//
|
2022-04-11 19:00:55 +00:00
|
|
|
|
|
|
|
|
|
|
2022-04-23 00:37:09 +00:00
|
|
|
|
|
|
|
|
|
case ADDtoRb: case ADDtoRw: case ADDtoRl:
|
|
|
|
|
case SUBtoRb: case SUBtoRw: case SUBtoRl:
|
|
|
|
|
case ANDtoRb: case ANDtoRw: case ANDtoRl:
|
|
|
|
|
case ORtoRb: case ORtoRw: case ORtoRl:
|
2022-04-22 18:51:25 +00:00
|
|
|
|
case OpT(Operation::CMPb): case OpT(Operation::CMPw): case OpT(Operation::CMPl):
|
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
combined_mode(ea_mode, ea_register), ea_register,
|
|
|
|
|
AddressingMode::DataRegisterDirect, data_register));
|
|
|
|
|
|
2022-04-23 00:37:09 +00:00
|
|
|
|
case ADDtoMb: case ADDtoMw: case ADDtoMl:
|
|
|
|
|
case SUBtoMb: case SUBtoMw: case SUBtoMl:
|
|
|
|
|
case ANDtoMb: case ANDtoMw: case ANDtoMl:
|
|
|
|
|
case ORtoMb: case ORtoMw: case ORtoMl:
|
2022-04-22 18:51:25 +00:00
|
|
|
|
case OpT(Operation::EORb): case OpT(Operation::EORw): case OpT(Operation::EORl):
|
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
AddressingMode::DataRegisterDirect, data_register,
|
|
|
|
|
combined_mode(ea_mode, ea_register), ea_register));
|
|
|
|
|
|
|
|
|
|
case OpT(Operation::ADDAw): case OpT(Operation::ADDAl):
|
|
|
|
|
case OpT(Operation::SUBAw): case OpT(Operation::SUBAl):
|
|
|
|
|
case OpT(Operation::CMPAw): case OpT(Operation::CMPAl):
|
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
combined_mode(ea_mode, ea_register), ea_register,
|
|
|
|
|
AddressingMode::AddressRegisterDirect, data_register));
|
|
|
|
|
|
2022-04-15 19:33:54 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: EORI, ORI, ANDI, SUBI, ADDI, CMPI, B[TST/CHG/CLR/SET]I
|
|
|
|
|
//
|
2022-04-18 12:00:43 +00:00
|
|
|
|
// Implicitly: source is an immediate value;
|
|
|
|
|
// b0–b2 and b3–b5: destination effective address.
|
|
|
|
|
//
|
2022-04-15 19:33:54 +00:00
|
|
|
|
case EORIb: case EORIl: case EORIw:
|
|
|
|
|
case ORIb: case ORIl: case ORIw:
|
|
|
|
|
case ANDIb: case ANDIl: case ANDIw:
|
|
|
|
|
case SUBIb: case SUBIl: case SUBIw:
|
|
|
|
|
case ADDIb: case ADDIl: case ADDIw:
|
|
|
|
|
case CMPIb: case CMPIl: case CMPIw:
|
|
|
|
|
case BTSTI: case BCHGI:
|
|
|
|
|
case BCLRI: case BSETI:
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
AddressingMode::ImmediateData, 0,
|
|
|
|
|
combined_mode(ea_mode, ea_register), ea_register));
|
2022-04-15 19:33:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// MARK: BTST, BCLR, BCHG, BSET
|
|
|
|
|
//
|
2022-04-18 12:55:46 +00:00
|
|
|
|
// b0–b2 and b3–b5: destination effective address;
|
|
|
|
|
// b9–b11: source data register.
|
2022-04-18 12:00:43 +00:00
|
|
|
|
//
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case OpT(Operation::BTST): case OpT(Operation::BCLR):
|
|
|
|
|
case OpT(Operation::BCHG): case OpT(Operation::BSET):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
AddressingMode::DataRegisterDirect, data_register,
|
|
|
|
|
combined_mode(ea_mode, ea_register), ea_register));
|
2022-04-15 19:33:54 +00:00
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
//
|
2022-04-18 12:55:46 +00:00
|
|
|
|
// MARK: STOP, ANDItoCCR, ANDItoSR, EORItoCCR, EORItoSR, ORItoCCR, ORItoSR, Bccl, Bccw, BSRl, BSRw
|
2022-04-15 13:40:37 +00:00
|
|
|
|
//
|
2022-04-18 12:55:46 +00:00
|
|
|
|
// Operand is an immedate; destination/source (if any) is implied by the operation.
|
2022-04-18 12:00:43 +00:00
|
|
|
|
//
|
2022-04-18 12:29:10 +00:00
|
|
|
|
case OpT(Operation::STOP):
|
2022-04-18 12:55:46 +00:00
|
|
|
|
case OpT(Operation::Bccl): case OpT(Operation::Bccw):
|
|
|
|
|
case OpT(Operation::BSRl): case OpT(Operation::BSRw):
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case OpT(Operation::ORItoSR): case OpT(Operation::ORItoCCR):
|
|
|
|
|
case OpT(Operation::ANDItoSR): case OpT(Operation::ANDItoCCR):
|
|
|
|
|
case OpT(Operation::EORItoSR): case OpT(Operation::EORItoCCR):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
AddressingMode::ImmediateData, 0,
|
|
|
|
|
operation == Operation::ORItoSR || operation == Operation::ANDItoSR || operation == Operation::EORItoSR));
|
2022-04-15 13:40:37 +00:00
|
|
|
|
|
2022-04-18 12:00:43 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: CHK
|
|
|
|
|
//
|
|
|
|
|
// Implicitly: destination is a register;
|
|
|
|
|
// b0–b2 and b3–b5: source effective address.
|
|
|
|
|
//
|
|
|
|
|
case OpT(Operation::CHK):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
combined_mode(ea_mode, ea_register), ea_register,
|
|
|
|
|
AddressingMode::DataRegisterDirect, data_register));
|
2022-04-18 12:00:43 +00:00
|
|
|
|
|
2022-04-11 19:00:55 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: EXG.
|
|
|
|
|
//
|
2022-04-18 12:00:43 +00:00
|
|
|
|
// b0–b2: register Ry (data or address, address if exchange is address <-> data);
|
|
|
|
|
// b9–b11: register Rx (data or address, data if exchange is address <-> data);
|
|
|
|
|
// b3–b7: an opmode, indicating address/data registers.
|
|
|
|
|
//
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case OpT(Operation::EXG):
|
2022-04-11 19:00:55 +00:00
|
|
|
|
switch((instruction >> 3)&31) {
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: return Preinstruction();
|
2022-04-11 19:00:55 +00:00
|
|
|
|
|
2022-04-19 13:44:02 +00:00
|
|
|
|
case 0x08: return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
2022-04-22 18:33:43 +00:00
|
|
|
|
AddressingMode::DataRegisterDirect, data_register,
|
|
|
|
|
AddressingMode::DataRegisterDirect, ea_register));
|
2022-04-11 19:00:55 +00:00
|
|
|
|
|
2022-04-19 13:44:02 +00:00
|
|
|
|
case 0x09: return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
2022-04-22 18:33:43 +00:00
|
|
|
|
AddressingMode::AddressRegisterDirect, data_register,
|
|
|
|
|
AddressingMode::AddressRegisterDirect, ea_register));
|
2022-04-11 19:00:55 +00:00
|
|
|
|
|
2022-04-19 13:44:02 +00:00
|
|
|
|
case 0x11: return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
2022-04-22 18:33:43 +00:00
|
|
|
|
AddressingMode::DataRegisterDirect, data_register,
|
|
|
|
|
AddressingMode::AddressRegisterDirect, ea_register));
|
2022-04-11 19:00:55 +00:00
|
|
|
|
}
|
2022-04-22 18:51:25 +00:00
|
|
|
|
// TODO: remove conditional from in here.
|
2022-04-11 19:00:55 +00:00
|
|
|
|
|
|
|
|
|
//
|
2022-04-11 20:32:57 +00:00
|
|
|
|
// MARK: MULU, MULS, DIVU, DIVS.
|
2022-04-11 19:00:55 +00:00
|
|
|
|
//
|
2022-04-18 12:00:43 +00:00
|
|
|
|
// b9–b11: destination data register;
|
|
|
|
|
// b0–b2 and b3–b5: source effective address.
|
|
|
|
|
//
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case OpT(Operation::DIVU): case OpT(Operation::DIVS):
|
|
|
|
|
case OpT(Operation::MULU): case OpT(Operation::MULS):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
combined_mode(ea_mode, ea_register), ea_register,
|
|
|
|
|
AddressingMode::DataRegisterDirect, data_register));
|
2022-04-11 19:00:55 +00:00
|
|
|
|
|
2022-04-18 12:00:43 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: LEA
|
|
|
|
|
//
|
|
|
|
|
// b9–b11: destination address register;
|
|
|
|
|
// b0–b2 and b3–b5: source effective address.
|
|
|
|
|
//
|
2022-04-19 23:36:21 +00:00
|
|
|
|
case OpT(Operation::LEA):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
combined_mode(ea_mode, ea_register), ea_register,
|
|
|
|
|
AddressingMode::AddressRegisterDirect, data_register));
|
2022-04-18 12:00:43 +00:00
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: MOVEPtoRw, MOVEPtoRl
|
|
|
|
|
//
|
2022-04-18 12:00:43 +00:00
|
|
|
|
// b0–b2: an address register;
|
|
|
|
|
// b9–b11: a data register.
|
|
|
|
|
// [already decoded: b6–b8: an opmode, indicating size and direction]
|
|
|
|
|
//
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case OpT(MOVEPtoRw): case OpT(MOVEPtoRl):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
AddressingMode::AddressRegisterIndirectWithDisplacement, ea_register,
|
|
|
|
|
AddressingMode::DataRegisterDirect, data_register));
|
2022-04-12 18:54:11 +00:00
|
|
|
|
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case OpT(MOVEPtoMw): case OpT(MOVEPtoMl):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
AddressingMode::DataRegisterDirect, data_register,
|
|
|
|
|
AddressingMode::AddressRegisterIndirectWithDisplacement, ea_register));
|
2022-04-12 18:54:11 +00:00
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
//
|
2022-04-15 19:40:31 +00:00
|
|
|
|
// MARK: MOVE
|
2022-04-15 13:40:37 +00:00
|
|
|
|
//
|
2022-04-18 12:00:43 +00:00
|
|
|
|
// b0–b2 and b3–b5: source effective address;
|
|
|
|
|
// b6–b8 and b9–b11: destination effective address;
|
|
|
|
|
// [already decoded: b12–b13: size]
|
|
|
|
|
//
|
2022-04-19 21:13:23 +00:00
|
|
|
|
case OpT(Operation::MOVEb): case OpT(Operation::MOVEl): case OpT(Operation::MOVEw):
|
|
|
|
|
case OpT(Operation::MOVEAl): case OpT(Operation::MOVEAw):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
combined_mode(ea_mode, ea_register), ea_register,
|
2022-04-19 20:49:26 +00:00
|
|
|
|
combined_mode(opmode, data_register), data_register));
|
2022-04-15 19:40:31 +00:00
|
|
|
|
|
|
|
|
|
//
|
2022-04-18 12:29:10 +00:00
|
|
|
|
// MARK: RESET, NOP RTE, RTS, TRAPV, RTR
|
2022-04-15 19:40:31 +00:00
|
|
|
|
//
|
2022-04-18 12:00:43 +00:00
|
|
|
|
// No additional fields.
|
|
|
|
|
//
|
2022-04-18 12:29:10 +00:00
|
|
|
|
case OpT(Operation::RESET): case OpT(Operation::NOP):
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case OpT(Operation::RTE): case OpT(Operation::RTS): case OpT(Operation::TRAPV):
|
|
|
|
|
case OpT(Operation::RTR):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(Preinstruction(operation));
|
2022-04-15 13:40:37 +00:00
|
|
|
|
|
2022-04-15 20:01:33 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: NEGX, CLR, NEG, MOVEtoCCR, MOVEtoSR, NOT, NBCD, PEA, TST
|
|
|
|
|
//
|
2022-04-18 12:00:43 +00:00
|
|
|
|
// b0–b2 and b3–b5: effective address.
|
|
|
|
|
//
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case OpT(Operation::CLRb): case OpT(Operation::CLRw): case OpT(Operation::CLRl):
|
|
|
|
|
case OpT(Operation::JMP): case OpT(Operation::JSR):
|
|
|
|
|
case OpT(Operation::MOVEtoSR): case OpT(Operation::MOVEfromSR): case OpT(Operation::MOVEtoCCR):
|
|
|
|
|
case OpT(Operation::NBCD):
|
|
|
|
|
case OpT(Operation::NEGb): case OpT(Operation::NEGw): case OpT(Operation::NEGl):
|
|
|
|
|
case OpT(Operation::NEGXb): case OpT(Operation::NEGXw): case OpT(Operation::NEGXl):
|
|
|
|
|
case OpT(Operation::NOTb): case OpT(Operation::NOTw): case OpT(Operation::NOTl):
|
|
|
|
|
case OpT(Operation::PEA):
|
|
|
|
|
case OpT(Operation::TAS):
|
|
|
|
|
case OpT(Operation::TSTb): case OpT(Operation::TSTw): case OpT(Operation::TSTl):
|
2022-04-18 12:55:46 +00:00
|
|
|
|
case OpT(Operation::Scc):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
combined_mode(ea_mode, ea_register), ea_register));
|
2022-04-15 20:01:33 +00:00
|
|
|
|
|
2022-04-18 12:29:10 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: UNLINK, MOVEtoUSP, MOVEfromUSP
|
|
|
|
|
//
|
|
|
|
|
// b0–b2: an address register.
|
|
|
|
|
//
|
|
|
|
|
case OpT(Operation::UNLINK):
|
|
|
|
|
case OpT(Operation::MOVEfromUSP): case OpT(Operation::MOVEtoUSP):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
AddressingMode::AddressRegisterDirect, ea_register));
|
2022-04-18 12:29:10 +00:00
|
|
|
|
|
2022-04-18 12:55:46 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: DBcc
|
|
|
|
|
//
|
|
|
|
|
// b0–b2: a data register.
|
|
|
|
|
// Followed by an immediate value.
|
|
|
|
|
//
|
|
|
|
|
case OpT(Operation::DBcc):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
AddressingMode::DataRegisterDirect, ea_register,
|
|
|
|
|
AddressingMode::ImmediateData, 0));
|
2022-04-18 12:55:46 +00:00
|
|
|
|
|
2022-04-19 12:37:13 +00:00
|
|
|
|
//
|
2022-04-19 12:42:17 +00:00
|
|
|
|
// MARK: SWAP, EXTbtow, EXTwtol
|
2022-04-19 12:37:13 +00:00
|
|
|
|
//
|
|
|
|
|
// b0–b2: a data register.
|
|
|
|
|
//
|
|
|
|
|
case OpT(Operation::SWAP):
|
2022-04-19 12:42:17 +00:00
|
|
|
|
case OpT(Operation::EXTbtow): case OpT(Operation::EXTwtol):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
AddressingMode::DataRegisterDirect, ea_register));
|
2022-04-19 12:37:13 +00:00
|
|
|
|
|
2022-04-15 20:01:33 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: MOVEMtoMw, MOVEMtoMl, MOVEMtoRw, MOVEMtoRl
|
|
|
|
|
//
|
2022-04-18 12:00:43 +00:00
|
|
|
|
// b0–b2 and b3–b5: effective address.
|
|
|
|
|
// [already decoded: b10: direction]
|
|
|
|
|
//
|
2022-04-15 20:01:33 +00:00
|
|
|
|
case MOVEMtoMl: case MOVEMtoMw:
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
AddressingMode::ImmediateData, 0,
|
|
|
|
|
combined_mode(ea_mode, ea_register), ea_register));
|
2022-04-15 20:01:33 +00:00
|
|
|
|
|
|
|
|
|
case MOVEMtoRl: case MOVEMtoRw:
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
combined_mode(ea_mode, ea_register), ea_register,
|
|
|
|
|
AddressingMode::ImmediateData, 0));
|
2022-04-15 20:01:33 +00:00
|
|
|
|
|
2022-04-18 12:05:33 +00:00
|
|
|
|
//
|
2022-04-18 12:55:46 +00:00
|
|
|
|
// MARK: TRAP, BCCb, BSRb
|
2022-04-18 12:05:33 +00:00
|
|
|
|
//
|
|
|
|
|
// No further operands decoded, but note that one is somewhere in the opcode.
|
|
|
|
|
//
|
|
|
|
|
case OpT(Operation::TRAP):
|
2022-04-18 12:55:46 +00:00
|
|
|
|
case OpT(Operation::Bccb):
|
|
|
|
|
case OpT(Operation::BSRb):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
AddressingMode::Quick, 0));
|
2022-04-18 12:05:33 +00:00
|
|
|
|
|
2022-04-18 12:29:10 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: LINKw
|
|
|
|
|
//
|
2022-04-18 12:55:46 +00:00
|
|
|
|
// b0–b2: 'source' address register;
|
2022-04-18 12:29:10 +00:00
|
|
|
|
// Implicitly: 'destination' is an immediate.
|
|
|
|
|
//
|
|
|
|
|
case OpT(Operation::LINKw):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
AddressingMode::AddressRegisterDirect, ea_register,
|
|
|
|
|
AddressingMode::ImmediateData, 0));
|
2022-04-18 12:29:10 +00:00
|
|
|
|
|
2022-04-18 12:55:46 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: ADDQ, SUBQ
|
|
|
|
|
//
|
|
|
|
|
// b0–b2 and b3–5: a destination effective address;
|
|
|
|
|
// b9–b11: an immediate value, embedded in the opcode.
|
|
|
|
|
//
|
|
|
|
|
case ADDQb: case ADDQw: case ADDQl:
|
|
|
|
|
case SUBQb: case SUBQw: case SUBQl:
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
AddressingMode::Quick, 0,
|
|
|
|
|
combined_mode(ea_mode, ea_register), ea_register));
|
2022-04-18 12:55:46 +00:00
|
|
|
|
|
2022-04-18 13:12:45 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: MOVEq
|
|
|
|
|
//
|
|
|
|
|
// b9–b11: a destination register;
|
|
|
|
|
// b0–b7: a 'quick' value.
|
|
|
|
|
//
|
|
|
|
|
// TODO: does this need to be a separate instruction from MOVEl?
|
|
|
|
|
case OpT(Operation::MOVEq):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
AddressingMode::Quick, 0,
|
|
|
|
|
AddressingMode::DataRegisterDirect, data_register));
|
2022-04-18 13:12:45 +00:00
|
|
|
|
|
2022-04-18 18:41:26 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: ASR, LSR, ROXR, ROR, ASL, LSL, ROXL, ROL
|
|
|
|
|
//
|
|
|
|
|
// b0–b2: a register to shift (the source here, for consistency with the memory operations);
|
|
|
|
|
// b8: 0 => b9–b11 are a direct count of bits to shift; 1 => b9–b11 identify a register containing the shift count;
|
|
|
|
|
// b9–b11: either a quick value or a register.
|
|
|
|
|
case OpT(Operation::ASRb): case OpT(Operation::ASRw): case OpT(Operation::ASRl):
|
|
|
|
|
case OpT(Operation::LSRb): case OpT(Operation::LSRw): case OpT(Operation::LSRl):
|
|
|
|
|
case OpT(Operation::ROXRb): case OpT(Operation::ROXRw): case OpT(Operation::ROXRl):
|
|
|
|
|
case OpT(Operation::RORb): case OpT(Operation::RORw): case OpT(Operation::RORl):
|
|
|
|
|
case OpT(Operation::ASLb): case OpT(Operation::ASLw): case OpT(Operation::ASLl):
|
|
|
|
|
case OpT(Operation::LSLb): case OpT(Operation::LSLw): case OpT(Operation::LSLl):
|
|
|
|
|
case OpT(Operation::ROXLb): case OpT(Operation::ROXLw): case OpT(Operation::ROXLl):
|
|
|
|
|
case OpT(Operation::ROLb): case OpT(Operation::ROLw): case OpT(Operation::ROLl):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
2022-04-21 15:26:56 +00:00
|
|
|
|
(instruction & 0x20) ? AddressingMode::DataRegisterDirect : AddressingMode::Quick, data_register,
|
|
|
|
|
AddressingMode::DataRegisterDirect, ea_register));
|
2022-04-18 18:41:26 +00:00
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// MARK: ASRm, LSRm, ROXRm, RORm, ASLm, LSLm, ROXLm, ROLm
|
|
|
|
|
//
|
|
|
|
|
// b0–b2 and b3–5: an effective address.
|
|
|
|
|
//
|
|
|
|
|
case OpT(Operation::ASRm): case OpT(Operation::ASLm):
|
|
|
|
|
case OpT(Operation::LSRm): case OpT(Operation::LSLm):
|
|
|
|
|
case OpT(Operation::ROXRm): case OpT(Operation::ROXLm):
|
|
|
|
|
case OpT(Operation::RORm): case OpT(Operation::ROLm):
|
2022-04-19 13:44:02 +00:00
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
combined_mode(ea_mode, ea_register), ea_register));
|
2022-04-18 18:41:26 +00:00
|
|
|
|
|
2022-04-22 13:24:16 +00:00
|
|
|
|
case CMPMb: case CMPMw: case CMPMl:
|
|
|
|
|
return validated<op, validate>(
|
|
|
|
|
Preinstruction(operation,
|
|
|
|
|
AddressingMode::AddressRegisterIndirectWithPostincrement, ea_register,
|
|
|
|
|
AddressingMode::AddressRegisterIndirectWithPostincrement, data_register));
|
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: Impossible error case.
|
|
|
|
|
//
|
2022-04-12 11:49:08 +00:00
|
|
|
|
default:
|
|
|
|
|
// Should be unreachable.
|
|
|
|
|
assert(false);
|
2022-04-11 19:00:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// MARK: - Page decoders.
|
|
|
|
|
|
2022-04-16 00:33:59 +00:00
|
|
|
|
#define Decode(y) return decode<OpT(y)>(instruction)
|
2022-04-12 20:17:30 +00:00
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decode0(uint16_t instruction) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
using Op = Operation;
|
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
switch(instruction & 0xfff) {
|
2022-04-16 00:41:39 +00:00
|
|
|
|
case 0x03c: Decode(Op::ORItoCCR); // 4-155 (p259)
|
|
|
|
|
case 0x07c: Decode(Op::ORItoSR); // 6-27 (p481)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x23c: Decode(Op::ANDItoCCR); // 4-20 (p124)
|
2022-04-16 00:41:39 +00:00
|
|
|
|
case 0x27c: Decode(Op::ANDItoSR); // 6-2 (p456)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0xa3c: Decode(Op::EORItoCCR); // 4-104 (p208)
|
2022-04-16 00:41:39 +00:00
|
|
|
|
case 0xa7c: Decode(Op::EORItoSR); // 6-10 (p464)
|
2022-04-12 18:54:11 +00:00
|
|
|
|
|
|
|
|
|
default: break;
|
2022-04-12 12:36:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch(instruction & 0xfc0) {
|
|
|
|
|
// 4-153 (p257)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x000: Decode(ORIb);
|
|
|
|
|
case 0x040: Decode(ORIw);
|
|
|
|
|
case 0x080: Decode(ORIl);
|
2022-04-12 12:36:44 +00:00
|
|
|
|
|
|
|
|
|
// 4-18 (p122)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x200: Decode(ANDIb);
|
|
|
|
|
case 0x240: Decode(ANDIw);
|
|
|
|
|
case 0x280: Decode(ANDIl);
|
2022-04-12 12:36:44 +00:00
|
|
|
|
|
|
|
|
|
// 4-179 (p283)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x400: Decode(SUBIb);
|
|
|
|
|
case 0x440: Decode(SUBIw);
|
|
|
|
|
case 0x480: Decode(SUBIl);
|
2022-04-12 12:36:44 +00:00
|
|
|
|
|
|
|
|
|
// 4-9 (p113)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x600: Decode(ADDIb);
|
|
|
|
|
case 0x640: Decode(ADDIw);
|
|
|
|
|
case 0x680: Decode(ADDIl);
|
2022-04-12 12:36:44 +00:00
|
|
|
|
|
|
|
|
|
// 4-63 (p167)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x800: Decode(BTSTI);
|
2022-04-12 12:36:44 +00:00
|
|
|
|
|
|
|
|
|
// 4-29 (p133)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x840: Decode(BCHGI);
|
2022-04-12 12:36:44 +00:00
|
|
|
|
|
|
|
|
|
// 4-32 (p136)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x880: Decode(BCLRI);
|
2022-04-12 12:36:44 +00:00
|
|
|
|
|
|
|
|
|
// 4-58 (p162)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x8c0: Decode(BSETI);
|
2022-04-12 12:36:44 +00:00
|
|
|
|
|
|
|
|
|
// 4-102 (p206)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0xa00: Decode(EORIb);
|
|
|
|
|
case 0xa40: Decode(EORIw);
|
|
|
|
|
case 0xa80: Decode(EORIl);
|
2022-04-12 12:36:44 +00:00
|
|
|
|
|
|
|
|
|
// 4-79 (p183)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0xc00: Decode(CMPIb);
|
|
|
|
|
case 0xc40: Decode(CMPIw);
|
|
|
|
|
case 0xc80: Decode(CMPIl);
|
2022-04-12 12:36:44 +00:00
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-12 12:36:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch(instruction & 0x1f8) {
|
|
|
|
|
// 4-133 (p237)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x108: Decode(MOVEPtoRw);
|
|
|
|
|
case 0x148: Decode(MOVEPtoRl);
|
|
|
|
|
case 0x188: Decode(MOVEPtoMw);
|
|
|
|
|
case 0x1c8: Decode(MOVEPtoMl);
|
2022-04-12 12:36:44 +00:00
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-12 12:36:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-20 12:40:56 +00:00
|
|
|
|
switch(instruction & 0x1c0) {
|
|
|
|
|
case 0x100: Decode(Op::BTST); // 4-62 (p166)
|
|
|
|
|
case 0x180: Decode(Op::BCLR); // 4-31 (p135)
|
|
|
|
|
|
|
|
|
|
case 0x140: Decode(Op::BCHG); // 4-28 (p132)
|
|
|
|
|
case 0x1c0: Decode(Op::BSET); // 4-57 (p161)
|
|
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-12 12:16:29 +00:00
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decode1(uint16_t instruction) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
using Op = Operation;
|
|
|
|
|
|
2022-04-15 19:40:31 +00:00
|
|
|
|
// 4-116 (p220)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
Decode(Op::MOVEb);
|
2022-04-12 12:16:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decode2(uint16_t instruction) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
using Op = Operation;
|
|
|
|
|
|
2022-04-15 19:40:31 +00:00
|
|
|
|
// 4-116 (p220)
|
2022-04-19 21:13:23 +00:00
|
|
|
|
switch(instruction & 0x1c0) {
|
|
|
|
|
case 0x040: Decode(Op::MOVEAl);
|
|
|
|
|
default: Decode(Op::MOVEl);
|
|
|
|
|
}
|
2022-04-12 12:16:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decode3(uint16_t instruction) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
using Op = Operation;
|
|
|
|
|
|
2022-04-15 19:40:31 +00:00
|
|
|
|
// 4-116 (p220)
|
2022-04-19 21:13:23 +00:00
|
|
|
|
switch(instruction & 0x1c0) {
|
|
|
|
|
case 0x040: Decode(Op::MOVEAw);
|
|
|
|
|
default: Decode(Op::MOVEw);
|
|
|
|
|
}
|
|
|
|
|
// Decode(Op::MOVEw);
|
2022-04-12 12:16:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decode4(uint16_t instruction) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
using Op = Operation;
|
|
|
|
|
|
2022-04-12 11:49:08 +00:00
|
|
|
|
switch(instruction & 0xfff) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0xe70: Decode(Op::RESET); // 6-83 (p537)
|
|
|
|
|
case 0xe71: Decode(Op::NOP); // 4-147 (p251)
|
2022-04-18 12:29:10 +00:00
|
|
|
|
case 0xe72: Decode(Op::STOP); // 6-85 (p539)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0xe73: Decode(Op::RTE); // 6-84 (p538)
|
|
|
|
|
case 0xe75: Decode(Op::RTS); // 4-169 (p273)
|
|
|
|
|
case 0xe76: Decode(Op::TRAPV); // 4-191 (p295)
|
|
|
|
|
case 0xe77: Decode(Op::RTR); // 4-168 (p272)
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-12 11:49:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 12:00:52 +00:00
|
|
|
|
switch(instruction & 0xff8) {
|
2022-04-20 00:28:00 +00:00
|
|
|
|
case 0x840: Decode(Op::SWAP); // 4-185 (p289)
|
2022-04-19 12:00:52 +00:00
|
|
|
|
case 0x880: Decode(Op::EXTbtow); // 4-106 (p210)
|
|
|
|
|
case 0x8c0: Decode(Op::EXTwtol); // 4-106 (p210)
|
|
|
|
|
case 0xe50: Decode(Op::LINKw); // 4-111 (p215)
|
|
|
|
|
case 0xe58: Decode(Op::UNLINK); // 4-194 (p298)
|
|
|
|
|
case 0xe60: Decode(Op::MOVEtoUSP); // 6-21 (p475)
|
|
|
|
|
case 0xe68: Decode(Op::MOVEfromUSP); // 6-21 (p475)
|
|
|
|
|
default: break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch(instruction & 0xff0) {
|
|
|
|
|
case 0xe40: Decode(Op::TRAP); // 4-188 (p292)
|
|
|
|
|
default: break;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-12 11:49:08 +00:00
|
|
|
|
switch(instruction & 0xfc0) {
|
|
|
|
|
// 4-146 (p250)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x000: Decode(Op::NEGXb);
|
|
|
|
|
case 0x040: Decode(Op::NEGXw);
|
|
|
|
|
case 0x080: Decode(Op::NEGXl);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
|
|
|
|
// 6-17 (p471)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x0c0: Decode(Op::MOVEfromSR);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
|
|
|
|
// 4-73 (p177)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x200: Decode(Op::CLRb);
|
|
|
|
|
case 0x240: Decode(Op::CLRw);
|
|
|
|
|
case 0x280: Decode(Op::CLRl);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
2022-04-15 20:01:33 +00:00
|
|
|
|
// 4-144 (p247)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x400: Decode(Op::NEGb);
|
|
|
|
|
case 0x440: Decode(Op::NEGw);
|
|
|
|
|
case 0x480: Decode(Op::NEGl);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
|
|
|
|
// 4-123 (p227)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x4c0: Decode(Op::MOVEtoCCR);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
2022-04-15 20:01:33 +00:00
|
|
|
|
// 4-148 (p252)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x600: Decode(Op::NOTb);
|
|
|
|
|
case 0x640: Decode(Op::NOTw);
|
|
|
|
|
case 0x680: Decode(Op::NOTl);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
|
|
|
|
// 4-123 (p227)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x6c0: Decode(Op::MOVEtoSR);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
|
|
|
|
// 4-142 (p246)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x800: Decode(Op::NBCD);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
|
|
|
|
// 4-159 (p263)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x840: Decode(Op::PEA);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
|
|
|
|
// 4-128 (p232)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x880: Decode(MOVEMtoMw);
|
|
|
|
|
case 0x8c0: Decode(MOVEMtoMl);
|
|
|
|
|
case 0xc80: Decode(MOVEMtoRw);
|
|
|
|
|
case 0xcc0: Decode(MOVEMtoRl);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
|
|
|
|
// 4-192 (p296)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0xa00: Decode(Op::TSTb);
|
|
|
|
|
case 0xa40: Decode(Op::TSTw);
|
|
|
|
|
case 0xa80: Decode(Op::TSTl);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
|
|
|
|
// 4-186 (p290)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0xac0: Decode(Op::TAS);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
|
|
|
|
// 4-109 (p213)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0xe80: Decode(Op::JSR);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
|
|
|
|
// 4-108 (p212)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0xec0: Decode(Op::JMP);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-12 11:49:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch(instruction & 0x1c0) {
|
2022-04-19 23:36:21 +00:00
|
|
|
|
case 0x1c0: Decode(Op::LEA); // 4-110 (p214)
|
2022-04-16 00:41:39 +00:00
|
|
|
|
case 0x180: Decode(Op::CHK); // 4-69 (p173)
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-12 11:49:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decode5(uint16_t instruction) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
using Op = Operation;
|
|
|
|
|
|
2022-04-12 12:44:32 +00:00
|
|
|
|
switch(instruction & 0x1c0) {
|
|
|
|
|
// 4-11 (p115)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x000: Decode(ADDQb);
|
|
|
|
|
case 0x040: Decode(ADDQw);
|
|
|
|
|
case 0x080: Decode(ADDQl);
|
2022-04-12 12:44:32 +00:00
|
|
|
|
|
|
|
|
|
// 4-181 (p285)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x100: Decode(SUBQb);
|
|
|
|
|
case 0x140: Decode(SUBQw);
|
|
|
|
|
case 0x180: Decode(SUBQl);
|
2022-04-12 12:44:32 +00:00
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-12 12:44:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-18 12:55:46 +00:00
|
|
|
|
switch(instruction & 0x0f8) {
|
|
|
|
|
// 4-173 (p276)
|
|
|
|
|
case 0x0c0:
|
2022-04-18 13:04:17 +00:00
|
|
|
|
case 0x0d0: case 0x0d8:
|
2022-04-18 12:55:46 +00:00
|
|
|
|
case 0x0e0: case 0x0e8:
|
|
|
|
|
case 0x0f0: case 0x0f8: Decode(Op::Scc);
|
|
|
|
|
|
|
|
|
|
// 4-91 (p195)
|
|
|
|
|
case 0x0c8: Decode(Op::DBcc);
|
2022-04-12 12:44:32 +00:00
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-12 12:44:32 +00:00
|
|
|
|
}
|
2022-04-12 12:16:29 +00:00
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decode6(uint16_t instruction) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
using Op = Operation;
|
|
|
|
|
|
2022-04-18 12:55:46 +00:00
|
|
|
|
switch(instruction & 0xf00) {
|
|
|
|
|
// 4-59 (p163)
|
2022-04-21 20:24:34 +00:00
|
|
|
|
case 0x100:
|
2022-04-18 12:55:46 +00:00
|
|
|
|
switch(instruction & 0xff) {
|
|
|
|
|
case 0x00: Decode(Op::BSRw);
|
|
|
|
|
case 0xff:
|
2022-04-18 18:42:31 +00:00
|
|
|
|
if constexpr (model >= Model::M68020) {
|
2022-04-18 12:55:46 +00:00
|
|
|
|
Decode(Op::BSRl);
|
|
|
|
|
}
|
|
|
|
|
[[fallthrough]];
|
|
|
|
|
default: Decode(Op::BSRb);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 4-25 (p129) Bcc
|
|
|
|
|
// 4-55 (p159) BRA (i.e. Bcc with cc = always)
|
|
|
|
|
default:
|
|
|
|
|
switch(instruction & 0xff) {
|
|
|
|
|
case 0x00: Decode(Op::Bccw);
|
|
|
|
|
case 0xff:
|
2022-04-18 18:42:31 +00:00
|
|
|
|
if constexpr (model >= Model::M68020) {
|
2022-04-18 12:55:46 +00:00
|
|
|
|
Decode(Op::Bccl);
|
|
|
|
|
}
|
|
|
|
|
[[fallthrough]];
|
|
|
|
|
default: Decode(Op::Bccb);
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-12 12:16:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decode7(uint16_t instruction) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
using Op = Operation;
|
|
|
|
|
|
2022-04-12 12:44:32 +00:00
|
|
|
|
// 4-134 (p238)
|
2022-04-21 20:05:00 +00:00
|
|
|
|
if(!(instruction & 0x100)) {
|
|
|
|
|
Decode(Op::MOVEq);
|
|
|
|
|
} else {
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
2022-04-12 12:16:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decode8(uint16_t instruction) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
using Op = Operation;
|
|
|
|
|
|
2022-04-11 20:32:57 +00:00
|
|
|
|
// 4-171 (p275)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
if((instruction & 0x1f0) == 0x100) Decode(Op::SBCD);
|
2022-04-11 20:32:57 +00:00
|
|
|
|
|
|
|
|
|
switch(instruction & 0x1c0) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x0c0: Decode(Op::DIVU); // 4-97 (p201)
|
|
|
|
|
case 0x1c0: Decode(Op::DIVS); // 4-93 (p197)
|
2022-04-23 00:37:09 +00:00
|
|
|
|
|
|
|
|
|
// 4-150 (p254)
|
|
|
|
|
case 0x000: Decode(ORtoRb);
|
|
|
|
|
case 0x040: Decode(ORtoRw);
|
|
|
|
|
case 0x080: Decode(ORtoRl);
|
|
|
|
|
case 0x100: Decode(ORtoMb);
|
|
|
|
|
case 0x140: Decode(ORtoMw);
|
|
|
|
|
case 0x180: Decode(ORtoMl);
|
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-11 20:32:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decode9(uint16_t instruction) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
using Op = Operation;
|
|
|
|
|
|
2022-04-19 20:27:20 +00:00
|
|
|
|
switch(instruction & 0x1f0) {
|
|
|
|
|
// 4-184 (p288)
|
|
|
|
|
case 0x100: Decode(Op::SUBXb);
|
|
|
|
|
case 0x140: Decode(Op::SUBXw);
|
|
|
|
|
case 0x180: Decode(Op::SUBXl);
|
2022-04-12 12:57:40 +00:00
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-12 12:57:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch(instruction & 0x1c0) {
|
|
|
|
|
// 4-177 (p281)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x0c0: Decode(Op::SUBAw);
|
|
|
|
|
case 0x1c0: Decode(Op::SUBAl);
|
2022-04-12 12:57:40 +00:00
|
|
|
|
|
2022-04-19 20:27:20 +00:00
|
|
|
|
// 4-174 (p278)
|
2022-04-23 00:37:09 +00:00
|
|
|
|
case 0x000: Decode(SUBtoRb);
|
|
|
|
|
case 0x040: Decode(SUBtoRw);
|
|
|
|
|
case 0x080: Decode(SUBtoRl);
|
|
|
|
|
case 0x100: Decode(SUBtoMb);
|
|
|
|
|
case 0x140: Decode(SUBtoMw);
|
|
|
|
|
case 0x180: Decode(SUBtoMl);
|
2022-04-12 12:57:40 +00:00
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-12 12:57:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-12 12:16:29 +00:00
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decodeA(uint16_t) {
|
2022-04-12 12:16:29 +00:00
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decodeB(uint16_t instruction) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
using Op = Operation;
|
|
|
|
|
|
2022-04-22 13:24:16 +00:00
|
|
|
|
switch(instruction & 0x1f8) {
|
|
|
|
|
// 4-81 (p185)
|
|
|
|
|
case 0x108: Decode(CMPMb);
|
|
|
|
|
case 0x148: Decode(CMPMw);
|
|
|
|
|
case 0x188: Decode(CMPMl);
|
|
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-12 11:49:08 +00:00
|
|
|
|
switch(instruction & 0x1c0) {
|
2022-04-12 12:57:40 +00:00
|
|
|
|
// 4-75 (p179)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x000: Decode(Op::CMPb);
|
|
|
|
|
case 0x040: Decode(Op::CMPw);
|
|
|
|
|
case 0x080: Decode(Op::CMPl);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
|
|
|
|
// 4-77 (p181)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x0c0: Decode(Op::CMPAw);
|
|
|
|
|
case 0x1c0: Decode(Op::CMPAl);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
2022-04-22 00:14:52 +00:00
|
|
|
|
// 4-100 (p204)
|
2022-04-22 00:36:04 +00:00
|
|
|
|
case 0x100: Decode(Op::EORb);
|
|
|
|
|
case 0x140: Decode(Op::EORw);
|
|
|
|
|
case 0x180: Decode(Op::EORl);
|
|
|
|
|
|
2022-04-22 00:14:52 +00:00
|
|
|
|
default: break;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-12 11:49:08 +00:00
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decodeC(uint16_t instruction) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
using Op = Operation;
|
|
|
|
|
|
2022-04-22 00:14:52 +00:00
|
|
|
|
// 4-105 (p209)
|
|
|
|
|
switch(instruction & 0x1f8) {
|
|
|
|
|
case 0x140:
|
|
|
|
|
case 0x148:
|
|
|
|
|
case 0x188: Decode(Op::EXG);
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-12 13:08:46 +00:00
|
|
|
|
}
|
2022-04-11 19:00:55 +00:00
|
|
|
|
|
2022-04-22 00:14:52 +00:00
|
|
|
|
switch(instruction & 0x1f0) {
|
|
|
|
|
case 0x100: Decode(Op::ABCD); // 4-3 (p107)
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-11 19:00:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch(instruction & 0x1c0) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x0c0: Decode(Op::MULU); // 4-139 (p243)
|
|
|
|
|
case 0x1c0: Decode(Op::MULS); // 4-136 (p240)
|
2022-04-11 19:00:55 +00:00
|
|
|
|
|
2022-04-22 00:14:52 +00:00
|
|
|
|
// 4-15 (p119)
|
2022-04-23 00:37:09 +00:00
|
|
|
|
case 0x000: Decode(ANDtoRb);
|
|
|
|
|
case 0x040: Decode(ANDtoRw);
|
|
|
|
|
case 0x080: Decode(ANDtoRl);
|
|
|
|
|
case 0x100: Decode(ANDtoMb);
|
|
|
|
|
case 0x140: Decode(ANDtoMw);
|
|
|
|
|
case 0x180: Decode(ANDtoMl);
|
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-11 19:00:55 +00:00
|
|
|
|
}
|
2022-04-12 11:49:08 +00:00
|
|
|
|
|
2022-04-11 19:00:55 +00:00
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decodeD(uint16_t instruction) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
using Op = Operation;
|
|
|
|
|
|
2022-04-19 18:36:36 +00:00
|
|
|
|
switch(instruction & 0x1f0) {
|
|
|
|
|
// 4-14 (p118)
|
|
|
|
|
case 0x100: Decode(Op::ADDXb);
|
|
|
|
|
case 0x140: Decode(Op::ADDXw);
|
|
|
|
|
case 0x180: Decode(Op::ADDXl);
|
2022-04-12 12:57:40 +00:00
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-12 12:57:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch(instruction & 0x1c0) {
|
|
|
|
|
// 4-7 (p111)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x0c0: Decode(Op::ADDAw);
|
|
|
|
|
case 0x1c0: Decode(Op::ADDAl);
|
2022-04-12 12:57:40 +00:00
|
|
|
|
|
2022-04-19 18:36:36 +00:00
|
|
|
|
// 4-4 (p108)
|
2022-04-23 00:37:09 +00:00
|
|
|
|
case 0x000: Decode(ADDtoRb);
|
|
|
|
|
case 0x040: Decode(ADDtoRw);
|
|
|
|
|
case 0x080: Decode(ADDtoRl);
|
|
|
|
|
case 0x100: Decode(ADDtoMb);
|
|
|
|
|
case 0x140: Decode(ADDtoMw);
|
|
|
|
|
case 0x180: Decode(ADDtoMl);
|
2022-04-12 12:57:40 +00:00
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-12 12:57:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-12 12:16:29 +00:00
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decodeE(uint16_t instruction) {
|
2022-04-16 00:33:59 +00:00
|
|
|
|
using Op = Operation;
|
|
|
|
|
|
2022-04-21 15:26:56 +00:00
|
|
|
|
switch(instruction & 0xfc0) {
|
|
|
|
|
case 0x0c0: Decode(Op::ASRm); // 4-22 (p126)
|
|
|
|
|
case 0x1c0: Decode(Op::ASLm); // 4-22 (p126)
|
|
|
|
|
case 0x2c0: Decode(Op::LSRm); // 4-113 (p217)
|
|
|
|
|
case 0x3c0: Decode(Op::LSLm); // 4-113 (p217)
|
|
|
|
|
case 0x4c0: Decode(Op::ROXRm); // 4-163 (p267)
|
|
|
|
|
case 0x5c0: Decode(Op::ROXLm); // 4-163 (p267)
|
|
|
|
|
case 0x6c0: Decode(Op::RORm); // 4-160 (p264)
|
|
|
|
|
case 0x7c0: Decode(Op::ROLm); // 4-160 (p264)
|
|
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-12 13:04:40 +00:00
|
|
|
|
switch(instruction & 0x1d8) {
|
|
|
|
|
// 4-22 (p126)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x000: Decode(Op::ASRb);
|
|
|
|
|
case 0x040: Decode(Op::ASRw);
|
|
|
|
|
case 0x080: Decode(Op::ASRl);
|
2022-04-12 13:04:40 +00:00
|
|
|
|
|
|
|
|
|
// 4-113 (p217)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x008: Decode(Op::LSRb);
|
|
|
|
|
case 0x048: Decode(Op::LSRw);
|
|
|
|
|
case 0x088: Decode(Op::LSRl);
|
2022-04-12 13:04:40 +00:00
|
|
|
|
|
|
|
|
|
// 4-163 (p267)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x010: Decode(Op::ROXRb);
|
|
|
|
|
case 0x050: Decode(Op::ROXRw);
|
|
|
|
|
case 0x090: Decode(Op::ROXRl);
|
2022-04-12 13:04:40 +00:00
|
|
|
|
|
|
|
|
|
// 4-160 (p264)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x018: Decode(Op::RORb);
|
|
|
|
|
case 0x058: Decode(Op::RORw);
|
|
|
|
|
case 0x098: Decode(Op::RORl);
|
2022-04-12 13:04:40 +00:00
|
|
|
|
|
|
|
|
|
// 4-22 (p126)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x100: Decode(Op::ASLb);
|
|
|
|
|
case 0x140: Decode(Op::ASLw);
|
|
|
|
|
case 0x180: Decode(Op::ASLl);
|
2022-04-12 13:04:40 +00:00
|
|
|
|
|
|
|
|
|
// 4-113 (p217)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x108: Decode(Op::LSLb);
|
|
|
|
|
case 0x148: Decode(Op::LSLw);
|
|
|
|
|
case 0x188: Decode(Op::LSLl);
|
2022-04-12 13:04:40 +00:00
|
|
|
|
|
|
|
|
|
// 4-163 (p267)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x110: Decode(Op::ROXLb);
|
|
|
|
|
case 0x150: Decode(Op::ROXLw);
|
|
|
|
|
case 0x190: Decode(Op::ROXLl);
|
2022-04-12 13:04:40 +00:00
|
|
|
|
|
|
|
|
|
// 4-160 (p264)
|
2022-04-16 00:33:59 +00:00
|
|
|
|
case 0x118: Decode(Op::ROLb);
|
|
|
|
|
case 0x158: Decode(Op::ROLw);
|
|
|
|
|
case 0x198: Decode(Op::ROLl);
|
2022-04-12 13:04:40 +00:00
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-12 13:04:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-12 12:16:29 +00:00
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decodeF(uint16_t) {
|
2022-04-12 12:16:29 +00:00
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-16 00:33:59 +00:00
|
|
|
|
#undef Decode
|
2022-04-12 20:17:30 +00:00
|
|
|
|
|
2022-04-11 19:00:55 +00:00
|
|
|
|
// MARK: - Main decoder.
|
|
|
|
|
|
2022-04-15 13:40:37 +00:00
|
|
|
|
template <Model model>
|
|
|
|
|
Preinstruction Predecoder<model>::decode(uint16_t instruction) {
|
2022-04-11 19:00:55 +00:00
|
|
|
|
// Divide first based on line.
|
|
|
|
|
switch(instruction & 0xf000) {
|
2022-04-12 12:16:29 +00:00
|
|
|
|
case 0x0000: return decode0(instruction);
|
|
|
|
|
case 0x1000: return decode1(instruction);
|
|
|
|
|
case 0x2000: return decode2(instruction);
|
|
|
|
|
case 0x3000: return decode3(instruction);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
case 0x4000: return decode4(instruction);
|
2022-04-12 12:16:29 +00:00
|
|
|
|
case 0x5000: return decode5(instruction);
|
|
|
|
|
case 0x6000: return decode6(instruction);
|
|
|
|
|
case 0x7000: return decode7(instruction);
|
2022-04-11 20:32:57 +00:00
|
|
|
|
case 0x8000: return decode8(instruction);
|
2022-04-12 12:16:29 +00:00
|
|
|
|
case 0x9000: return decode9(instruction);
|
|
|
|
|
case 0xa000: return decodeA(instruction);
|
2022-04-12 11:49:08 +00:00
|
|
|
|
case 0xb000: return decodeB(instruction);
|
2022-04-11 19:00:55 +00:00
|
|
|
|
case 0xc000: return decodeC(instruction);
|
2022-04-12 12:16:29 +00:00
|
|
|
|
case 0xd000: return decodeD(instruction);
|
|
|
|
|
case 0xe000: return decodeE(instruction);
|
|
|
|
|
case 0xf000: return decodeF(instruction);
|
2022-04-11 19:00:55 +00:00
|
|
|
|
|
2022-04-12 18:54:11 +00:00
|
|
|
|
default: break;
|
2022-04-11 19:00:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Preinstruction();
|
|
|
|
|
}
|
2022-04-18 11:23:25 +00:00
|
|
|
|
|
|
|
|
|
template class InstructionSet::M68k::Predecoder<InstructionSet::M68k::Model::M68000>;
|
2022-04-18 18:42:31 +00:00
|
|
|
|
template class InstructionSet::M68k::Predecoder<InstructionSet::M68k::Model::M68010>;
|
|
|
|
|
template class InstructionSet::M68k::Predecoder<InstructionSet::M68k::Model::M68020>;
|
|
|
|
|
template class InstructionSet::M68k::Predecoder<InstructionSet::M68k::Model::M68030>;
|
|
|
|
|
template class InstructionSet::M68k::Predecoder<InstructionSet::M68k::Model::M68040>;
|