2022-05-09 13:24:35 +00:00
|
|
|
//
|
|
|
|
// InstructionOperandSize.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 09/05/2022.
|
|
|
|
// Copyright © 2022 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2024-01-17 04:34:46 +00:00
|
|
|
#pragma once
|
2022-05-09 13:24:35 +00:00
|
|
|
|
2023-05-10 21:02:18 +00:00
|
|
|
namespace InstructionSet::M68k {
|
2022-05-09 13:24:35 +00:00
|
|
|
|
2022-05-19 14:27:51 +00:00
|
|
|
template <Operation t_operation>
|
|
|
|
constexpr DataSize operand_size(Operation r_operation) {
|
|
|
|
switch((t_operation == Operation::Undefined) ? r_operation : t_operation) {
|
2022-05-09 13:24:35 +00:00
|
|
|
// These are given a value arbitrarily, to
|
|
|
|
// complete the switch statement.
|
|
|
|
case Operation::Undefined:
|
|
|
|
case Operation::NOP:
|
|
|
|
case Operation::STOP:
|
|
|
|
case Operation::RESET:
|
|
|
|
case Operation::RTE: case Operation::RTR:
|
2022-10-27 13:39:00 +00:00
|
|
|
case Operation::RTD:
|
2022-05-09 13:24:35 +00:00
|
|
|
case Operation::TRAP:
|
|
|
|
case Operation::TRAPV:
|
2022-10-25 16:20:40 +00:00
|
|
|
case Operation::TRAPcc:
|
2022-10-27 13:39:00 +00:00
|
|
|
case Operation::BKPT:
|
2022-05-09 13:24:35 +00:00
|
|
|
|
|
|
|
case Operation::ABCD: case Operation::SBCD:
|
|
|
|
case Operation::NBCD:
|
|
|
|
case Operation::ADDb: case Operation::ADDXb:
|
|
|
|
case Operation::SUBb: case Operation::SUBXb:
|
|
|
|
case Operation::MOVEb:
|
2022-10-27 13:39:00 +00:00
|
|
|
case Operation::MOVESb:
|
|
|
|
case Operation::MOVEfromCCR:
|
2022-05-09 13:24:35 +00:00
|
|
|
case Operation::ORItoCCR:
|
|
|
|
case Operation::ANDItoCCR:
|
|
|
|
case Operation::EORItoCCR:
|
|
|
|
case Operation::BTST: case Operation::BCLR:
|
|
|
|
case Operation::BCHG: case Operation::BSET:
|
|
|
|
case Operation::CMPb: case Operation::TSTb:
|
|
|
|
case Operation::Bccb: case Operation::BSRb:
|
|
|
|
case Operation::CLRb:
|
|
|
|
case Operation::Scc:
|
|
|
|
case Operation::NEGXb: case Operation::NEGb:
|
|
|
|
case Operation::ASLb: case Operation::ASRb:
|
|
|
|
case Operation::LSLb: case Operation::LSRb:
|
|
|
|
case Operation::ROLb: case Operation::RORb:
|
|
|
|
case Operation::ROXLb: case Operation::ROXRb:
|
|
|
|
case Operation::ANDb: case Operation::EORb:
|
|
|
|
case Operation::NOTb: case Operation::ORb:
|
|
|
|
case Operation::TAS:
|
|
|
|
return DataSize::Byte;
|
|
|
|
|
|
|
|
case Operation::ADDw: case Operation::ADDAw:
|
|
|
|
case Operation::ADDXw: case Operation::SUBw:
|
|
|
|
case Operation::SUBAw: case Operation::SUBXw:
|
|
|
|
case Operation::MOVEw: case Operation::MOVEAw:
|
2022-10-27 13:39:00 +00:00
|
|
|
case Operation::MOVESw:
|
2022-05-09 13:24:35 +00:00
|
|
|
case Operation::ORItoSR:
|
|
|
|
case Operation::ANDItoSR:
|
|
|
|
case Operation::EORItoSR:
|
|
|
|
case Operation::MOVEtoSR:
|
|
|
|
case Operation::MOVEfromSR:
|
2022-10-27 13:39:00 +00:00
|
|
|
case Operation::MOVEtoCCR: // TODO: is this true?
|
2022-05-09 13:24:35 +00:00
|
|
|
case Operation::CMPw: case Operation::CMPAw:
|
|
|
|
case Operation::TSTw:
|
|
|
|
case Operation::DBcc:
|
|
|
|
case Operation::Bccw: case Operation::BSRw:
|
|
|
|
case Operation::CLRw:
|
|
|
|
case Operation::NEGXw: case Operation::NEGw:
|
|
|
|
case Operation::ASLw: case Operation::ASLm:
|
|
|
|
case Operation::ASRw: case Operation::ASRm:
|
|
|
|
case Operation::LSLw: case Operation::LSLm:
|
|
|
|
case Operation::LSRw: case Operation::LSRm:
|
|
|
|
case Operation::ROLw: case Operation::ROLm:
|
|
|
|
case Operation::RORw: case Operation::RORm:
|
|
|
|
case Operation::ROXLw: case Operation::ROXLm:
|
|
|
|
case Operation::ROXRw: case Operation::ROXRm:
|
|
|
|
case Operation::MOVEMtoRw:
|
|
|
|
case Operation::MOVEMtoRl:
|
|
|
|
case Operation::MOVEMtoMw:
|
|
|
|
case Operation::MOVEMtoMl:
|
|
|
|
case Operation::MOVEPw:
|
|
|
|
case Operation::ANDw: case Operation::EORw:
|
|
|
|
case Operation::NOTw: case Operation::ORw:
|
2022-10-22 19:20:30 +00:00
|
|
|
case Operation::DIVUw: case Operation::DIVSw:
|
|
|
|
case Operation::MULUw: case Operation::MULSw:
|
2022-05-09 13:24:35 +00:00
|
|
|
case Operation::EXTbtow:
|
|
|
|
case Operation::LINKw:
|
2022-10-22 19:20:30 +00:00
|
|
|
case Operation::CHKw:
|
2022-05-09 13:24:35 +00:00
|
|
|
return DataSize::Word;
|
|
|
|
|
|
|
|
case Operation::ADDl: case Operation::ADDAl:
|
|
|
|
case Operation::ADDXl: case Operation::SUBl:
|
|
|
|
case Operation::SUBAl: case Operation::SUBXl:
|
|
|
|
case Operation::MOVEl: case Operation::MOVEAl:
|
2022-10-27 13:39:00 +00:00
|
|
|
case Operation::MOVESl:
|
2022-05-09 13:24:35 +00:00
|
|
|
case Operation::LEA: case Operation::PEA:
|
|
|
|
case Operation::EXG: case Operation::SWAP:
|
|
|
|
case Operation::MOVEtoUSP:
|
|
|
|
case Operation::MOVEfromUSP:
|
2022-10-27 13:39:00 +00:00
|
|
|
case Operation::MOVEtoC:
|
|
|
|
case Operation::MOVEfromC:
|
2022-05-09 13:24:35 +00:00
|
|
|
case Operation::CMPl: case Operation::CMPAl:
|
|
|
|
case Operation::TSTl:
|
|
|
|
case Operation::JMP: case Operation::JSR:
|
|
|
|
case Operation::RTS:
|
|
|
|
case Operation::Bccl: case Operation::BSRl:
|
|
|
|
case Operation::CLRl:
|
|
|
|
case Operation::NEGXl: case Operation::NEGl:
|
|
|
|
case Operation::ASLl: case Operation::ASRl:
|
|
|
|
case Operation::LSLl: case Operation::LSRl:
|
|
|
|
case Operation::ROLl: case Operation::RORl:
|
|
|
|
case Operation::ROXLl: case Operation::ROXRl:
|
|
|
|
case Operation::MOVEPl:
|
|
|
|
case Operation::ANDl: case Operation::EORl:
|
|
|
|
case Operation::NOTl: case Operation::ORl:
|
|
|
|
case Operation::EXTwtol:
|
|
|
|
case Operation::UNLINK:
|
|
|
|
return DataSize::LongWord;
|
2022-10-21 19:28:29 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
// 68020 TODO.
|
|
|
|
return DataSize::Byte;
|
2022-05-09 13:24:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|