1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-28 08:29:34 +00:00
CLK/InstructionSets/68k/Decoder.hpp

103 lines
2.8 KiB
C++
Raw Normal View History

2022-04-11 19:00:55 +00:00
//
// Decoder.hpp
// Clock Signal
//
// Created by Thomas Harte on 10/04/2022.
// Copyright © 2022 Thomas Harte. All rights reserved.
//
#ifndef InstructionSets_M68k_Decoder_hpp
#define InstructionSets_M68k_Decoder_hpp
2022-04-11 19:00:55 +00:00
#include "Instruction.hpp"
#include "Model.hpp"
2022-04-11 19:00:55 +00:00
namespace InstructionSet {
namespace M68k {
/*!
A stateless decoder that can map from instruction words to preinstructions
(i.e. enough to know the operation and size, and either know the addressing mode
and registers or else know how many further extension words are needed).
*/
template <Model model> class Predecoder {
2022-04-11 19:00:55 +00:00
public:
Preinstruction decode(uint16_t instruction);
private:
// Page by page decoders; each gets a bit ad hoc so
// it is neater to separate them.
2022-04-12 12:16:29 +00:00
Preinstruction decode0(uint16_t instruction);
Preinstruction decode1(uint16_t instruction);
Preinstruction decode2(uint16_t instruction);
Preinstruction decode3(uint16_t instruction);
2022-04-12 11:49:08 +00:00
Preinstruction decode4(uint16_t instruction);
2022-04-12 12:16:29 +00:00
Preinstruction decode5(uint16_t instruction);
Preinstruction decode6(uint16_t instruction);
Preinstruction decode7(uint16_t instruction);
2022-04-11 20:32:57 +00:00
Preinstruction decode8(uint16_t instruction);
2022-04-12 12:16:29 +00:00
Preinstruction decode9(uint16_t instruction);
Preinstruction decodeA(uint16_t instruction);
2022-04-12 11:49:08 +00:00
Preinstruction decodeB(uint16_t instruction);
2022-04-11 19:00:55 +00:00
Preinstruction decodeC(uint16_t instruction);
2022-04-12 12:16:29 +00:00
Preinstruction decodeD(uint16_t instruction);
Preinstruction decodeE(uint16_t instruction);
Preinstruction decodeF(uint16_t instruction);
2022-04-11 19:00:55 +00:00
using OpT = uint8_t;
2022-04-11 19:00:55 +00:00
// Specific instruction decoders.
template <OpT operation, bool validate = true> Preinstruction decode(uint16_t instruction);
2022-04-19 13:44:02 +00:00
template <OpT operation, bool validate> Preinstruction validated(Preinstruction original);
template <uint8_t op> uint32_t invalid_operands();
// Extended operation list; collapses into a single byte enough information to
// know both the type of operation and how to decode the operands. Most of the
// time that's knowable from the Operation alone, hence the rather awkward
// extension of @c Operation.
enum ExtendedOperation: OpT {
MOVEMtoRl = uint8_t(Operation::Max) + 1, MOVEMtoRw,
MOVEMtoMl, MOVEMtoMw,
MOVEPtoRl, MOVEPtoRw,
MOVEPtoMl, MOVEPtoMw,
ADDQb, ADDQw, ADDQl,
ADDQAw, ADDQAl,
SUBQb, SUBQw, SUBQl,
SUBQAw, SUBQAl,
ADDIb, ADDIw, ADDIl,
ORIb, ORIw, ORIl,
SUBIb, SUBIw, SUBIl,
ANDIb, ANDIw, ANDIl,
EORIb, EORIw, EORIl,
CMPIb, CMPIw, CMPIl,
2022-04-15 19:33:54 +00:00
BTSTI, BCHGI, BCLRI, BSETI,
CMPMb, CMPMw, CMPMl,
MOVEq,
ADDtoMb, ADDtoMw, ADDtoMl,
ADDtoRb, ADDtoRw, ADDtoRl,
SUBtoMb, SUBtoMw, SUBtoMl,
SUBtoRb, SUBtoRw, SUBtoRl,
ANDtoMb, ANDtoMw, ANDtoMl,
ANDtoRb, ANDtoRw, ANDtoRl,
ORtoMb, ORtoMw, ORtoMl,
ORtoRb, ORtoRw, ORtoRl,
};
static constexpr Operation operation(OpT op);
2022-04-11 19:00:55 +00:00
};
}
}
#endif /* InstructionSets_M68k_Decoder_hpp */