From e5c1621382ab8bf83294bd95dfe08a879add91ce Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 20 May 2022 07:02:02 -0400 Subject: [PATCH] Add missing `fallthrough`, patterns for all ADDs and SUBs. --- .../68000ComparativeTests.mm | 5 +- .../Implementation/68000Mk2Implementation.hpp | 113 ++++++++++++++++-- .../Implementation/68000Mk2Storage.hpp | 4 + 3 files changed, 113 insertions(+), 9 deletions(-) diff --git a/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm b/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm index 098e26b10..50ad7a535 100644 --- a/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm +++ b/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm @@ -156,10 +156,13 @@ struct TestProcessor: public CPU::MC68000Mk2::BusHandler { // To limit tests run to a subset of files and/or of tests, uncomment and fill in below. _fileSet = [NSSet setWithArray:@[ - @"add_sub.json", +// @"addq_subq.json", // Below this line are passing tests. @"abcd_sbcd.json", + @"add_sub.json", + @"addi_subi_cmpi.json", + @"addx_subx.json", @"eor_and_or.json", @"nbcd.json", @"ext.json"]]; diff --git a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp index ff5e570f9..2dc73b281 100644 --- a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp +++ b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp @@ -75,7 +75,8 @@ enum ExecutionState: int { MOVEwRegisterDirect, MOVEwAddressRegisterIndirectWithPostincrement, - SABCD_PreDec, + TwoOp_Predec_bw, + TwoOp_Predec_l, CHK, CHK_no_trap, @@ -359,7 +360,8 @@ void Processor() && \ InstructionSet::M68k::operand_size() == \ InstructionSet::M68k::operand_size() \ - ); + ); \ + [[fallthrough]]; switch(instruction_.operation) { StdCASE(NBCD, { @@ -435,11 +437,73 @@ void Processor( instruction_, operand_[0], operand_[1], status_, *static_cast(this)); - SetupDataAccess(0, Microcycle::SelectByte); + SetupDataAccess(0, select_flag_); + Access(operand_[1].low); // nw + MoveToState(Decode); + + BeginState(TwoOp_Predec_l): + IdleBus(1); // n + + SetupDataAccess(Microcycle::Read, Microcycle::SelectWord); + + SetDataAddress(registers_[8 + instruction_.reg(0)].l); + registers_[8 + instruction_.reg(0)].l -= 2; + Access(operand_[0].low); // nr + + registers_[8 + instruction_.reg(0)].l -= 2; + Access(operand_[0].high); // nR + + SetDataAddress(registers_[8 + instruction_.reg(1)].l); + registers_[8 + instruction_.reg(1)].l -= 2; + Access(operand_[1].low); // nr + + registers_[8 + instruction_.reg(1)].l -= 2; + Access(operand_[1].high); // nR + + InstructionSet::M68k::perform( + instruction_, operand_[0], operand_[1], status_, *static_cast(this)); + + SetupDataAccess(0, Microcycle::SelectWord); + + registers_[8 + instruction_.reg(1)].l += 2; Access(operand_[1].low); // nw + Prefetch(); // np + + registers_[8 + instruction_.reg(1)].l -= 2; + Access(operand_[1].high); // nW MoveToState(Decode); BeginState(CHK): diff --git a/Processors/68000Mk2/Implementation/68000Mk2Storage.hpp b/Processors/68000Mk2/Implementation/68000Mk2Storage.hpp index b24dc693d..63014787b 100644 --- a/Processors/68000Mk2/Implementation/68000Mk2Storage.hpp +++ b/Processors/68000Mk2/Implementation/68000Mk2Storage.hpp @@ -95,6 +95,10 @@ struct ProcessorBase: public InstructionSet::M68k::NullFlowController { { 2, 2, 2, 2, 2, 2, 2, 2, } }; + /// Used by some dedicated read-modify-write perform patterns to + /// determine the size of the bus operation. + Microcycle::OperationT select_flag_ = 0; + template void did_mulu(IntT) {} template void did_muls(IntT) {} inline void did_chk(bool, bool);