From 1ab831f5713aa4a465521ac48448316ccec2d536 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 25 May 2022 13:17:01 -0400 Subject: [PATCH] Add the option to log a list of all untested instructions. --- .../68000ComparativeTests.mm | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm b/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm index 6e2bec4b2..94c6cddce 100644 --- a/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm +++ b/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm @@ -18,6 +18,7 @@ //#define USE_EXECUTOR //#define MAKE_SUGGESTIONS +//#define LOG_UNTESTED namespace { @@ -127,6 +128,7 @@ struct TestProcessor: public CPU::MC68000Mk2::BusHandler { NSMutableSet *_failures; NSMutableArray *_failingOpcodes; NSMutableDictionary *> *_suggestedCorrections; + NSMutableSet *_testedOpcodes; InstructionSet::M68k::Predecoder _decoder; @@ -150,6 +152,10 @@ struct TestProcessor: public CPU::MC68000Mk2::BusHandler { _failures = [[NSMutableSet alloc] init]; _failingOpcodes = [[NSMutableArray alloc] init]; + // This will simply accumulate a list of all tested opcodes, in order to report + // on those that are missing. + _testedOpcodes = [[NSMutableSet alloc] init]; + #ifdef MAKE_SUGGESTIONS _suggestedCorrections = [[NSMutableDictionary alloc] init]; #endif @@ -190,6 +196,25 @@ struct TestProcessor: public CPU::MC68000Mk2::BusHandler { } } } + +#ifdef LOG_UNTESTED + // Output a list of untested opcodes. + NSMutableArray *untested = [[NSMutableArray alloc] init]; + for(int opcode = 0; opcode < 65536; opcode++) { + const auto instruction = _decoder.decode(uint16_t(opcode)); + + if(instruction.operation == InstructionSet::M68k::Operation::Undefined) { + continue; + } + if([_testedOpcodes containsObject:@(opcode)]) { + continue; + } + + [untested addObject:[NSString stringWithFormat:@"%04x %s", opcode, instruction.to_string(uint16_t(opcode)).c_str()]]; + } + + NSLog(@"Untested: %@", untested); +#endif } - (void)testJSONAtURL:(NSURL *)url { @@ -213,6 +238,20 @@ struct TestProcessor: public CPU::MC68000Mk2::BusHandler { // Compare against a test set if one has been supplied. if(_testSet && ![_testSet containsObject:name]) continue; + // Pull out the opcode and record it. + NSArray *const initialMemory = test[@"initial memory"]; + uint16_t opcode = 0; + NSEnumerator *enumerator = [initialMemory objectEnumerator]; + while(true) { + NSNumber *const address = [enumerator nextObject]; + NSNumber *const value = [enumerator nextObject]; + + if(!address || !value) break; + if(address.integerValue == 0x100) opcode |= value.integerValue << 8; + if(address.integerValue == 0x101) opcode |= value.integerValue; + } + [_testedOpcodes addObject:@(opcode)]; + #ifdef USE_EXECUTOR [self testOperationExecutor:test name:name]; #else