From eeb6a088b8b4c8f1becc37b9f83d9d49d16cff7e Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 19 May 2022 15:49:42 -0400 Subject: [PATCH] Add a tag to avoid duplication. --- .../InstructionOperandFlags.hpp | 2 +- InstructionSets/M68k/Instruction.hpp | 2 +- .../Implementation/68000Mk2Implementation.hpp | 45 +++++++------------ 3 files changed, 17 insertions(+), 32 deletions(-) diff --git a/InstructionSets/M68k/Implementation/InstructionOperandFlags.hpp b/InstructionSets/M68k/Implementation/InstructionOperandFlags.hpp index 2d42cafd0..da99031f5 100644 --- a/InstructionSets/M68k/Implementation/InstructionOperandFlags.hpp +++ b/InstructionSets/M68k/Implementation/InstructionOperandFlags.hpp @@ -12,7 +12,7 @@ namespace InstructionSet { namespace M68k { -template uint8_t operand_flags(Operation r_operation) { +template constexpr uint8_t operand_flags(Operation r_operation) { switch((t_operation != Operation::Undefined) ? t_operation : r_operation) { default: assert(false); diff --git a/InstructionSets/M68k/Instruction.hpp b/InstructionSets/M68k/Instruction.hpp index b9b8e99a2..314729f8d 100644 --- a/InstructionSets/M68k/Instruction.hpp +++ b/InstructionSets/M68k/Instruction.hpp @@ -166,7 +166,7 @@ static constexpr uint8_t StoreOp2 = (1 << 3); Unusual bus sequences, such as TAS or MOVEM, are not described here. */ template -uint8_t operand_flags(Operation r_operation = Operation::Undefined); +constexpr uint8_t operand_flags(Operation r_operation = Operation::Undefined); /// Lists the various condition codes used by the 680x0. enum class Condition { diff --git a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp index 5a78924ba..519ba8cdd 100644 --- a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp +++ b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp @@ -280,6 +280,15 @@ void Processor() == \ + InstructionSet::M68k::operand_flags() && \ + InstructionSet::M68k::operand_size() == \ + InstructionSet::M68k::operand_size() \ + ); + switch(instruction_.operation) { StdCASE(NBCD, { if(instruction_.mode(0) == Mode::DataRegisterDirect) { @@ -304,27 +313,9 @@ void Processor