1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-06 15:00:05 +00:00
CLK/OSBindings/Mac/Clock SignalTests/8088Tests.mm

197 lines
5.7 KiB
Plaintext
Raw Normal View History

2023-09-13 19:53:38 +00:00
//
// 8088Tests.m
// Clock SignalTests
//
// Created by Thomas Harte on 13/09/2023.
// Copyright © 2023 Thomas Harte. All rights reserved.
//
#import <XCTest/XCTest.h>
#include <array>
#include <cassert>
#include <iostream>
#include <sstream>
2023-09-13 19:53:38 +00:00
#include <fstream>
#include "NSData+dataWithContentsOfGZippedFile.h"
#include "../../../InstructionSets/x86/Decoder.hpp"
2023-09-13 19:53:38 +00:00
namespace {
// The tests themselves are not duplicated in this repository;
// provide their real path here.
constexpr char TestSuiteHome[] = "/Users/thomasharte/Projects/ProcessorTests/8088/v1";
2023-09-13 19:53:38 +00:00
}
@interface i8088Tests : XCTestCase
@end
@implementation i8088Tests
- (NSArray<NSString *> *)testFiles {
NSString *path = [NSString stringWithUTF8String:TestSuiteHome];
NSSet *allowList = nil;
// [[NSSet alloc] initWithArray:@[
// @"00.json.gz",
// ]];
2023-09-13 19:53:38 +00:00
NSArray<NSString *> *files = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:path error:nil];
files = [files filteredArrayUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(NSString* evaluatedObject, NSDictionary<NSString *,id> *) {
if(allowList && ![allowList containsObject:[evaluatedObject lastPathComponent]]) {
return NO;
}
2023-09-13 19:53:38 +00:00
return [evaluatedObject hasSuffix:@"json.gz"];
}]];
NSMutableArray<NSString *> *fullPaths = [[NSMutableArray alloc] init];
for(NSString *file in files) {
[fullPaths addObject:[path stringByAppendingPathComponent:file]];
}
return fullPaths;
}
- (bool)applyDecodingTest:(NSDictionary *)test {
using Decoder = InstructionSet::x86::Decoder<InstructionSet::x86::Model::i8086>;
Decoder decoder;
2023-09-13 20:45:39 +00:00
// Build a vector of the instruction; this makes manual step debugging easier.
NSArray<NSNumber *> *encoding = test[@"bytes"];
2023-09-13 20:45:39 +00:00
std::vector<uint8_t> data;
data.reserve(encoding.count);
for(NSNumber *number in encoding) {
2023-09-13 20:45:39 +00:00
data.push_back([number intValue]);
}
const auto decoded = decoder.decode(data.data(), data.size());
XCTAssert(
decoded.first == [encoding count],
"Wrong length of instruction decoded for %@ — decoded %d rather than %lu",
test[@"name"],
decoded.first,
(unsigned long)[encoding count]
);
auto log_hex = [&] {
2023-09-14 19:40:40 +00:00
NSMutableString *hexInstruction = [[NSMutableString alloc] init];
for(uint8_t byte: data) {
[hexInstruction appendFormat:@"%02x ", byte];
}
NSLog(@"Instruction was %@", hexInstruction);
};
if(decoded.first != [encoding count]) {
log_hex();
2023-09-14 19:40:40 +00:00
2023-09-13 20:45:39 +00:00
// Repeat the decoding, for ease of debugging.
Decoder straw_man;
straw_man.decode(data.data(), data.size());
return false;
}
2023-09-14 19:40:40 +00:00
// Form string version, compare.
std::string operation;
2023-09-17 20:29:04 +00:00
const bool is_byte_operation = decoded.second.operation_size() == InstructionSet::x86::DataSize::Byte;
using Repetition = InstructionSet::x86::Repetition;
switch(decoded.second.repetition()) {
case Repetition::None: break;
case Repetition::RepE: operation += "repe "; break;
case Repetition::RepNE: operation += "repne "; break;
}
int operands = 0;
2023-09-17 20:29:04 +00:00
using Operation = InstructionSet::x86::Operation;
switch(decoded.second.operation) {
case Operation::SUB: operation += "sub"; operands = 2; break;
2023-09-17 20:29:04 +00:00
case Operation::CMP: operation += "cmp"; operands = 2; break;
case Operation::CMPS:
operation += is_byte_operation? "cmpsb" : "cmpsw";
break;
default: break;
}
2023-09-17 20:29:04 +00:00
auto to_string = [is_byte_operation] (InstructionSet::x86::DataPointer pointer, const auto &instruction) -> std::string {
std::string operand;
using Source = InstructionSet::x86::Source;
const Source source = pointer.source();
switch(source) {
// to_string handles all direct register names correctly.
default: return InstructionSet::x86::to_string(source, instruction.operation_size());
case Source::Immediate:
return (std::stringstream() << std::setfill('0') << std::setw(4) << std::uppercase << std::hex << instruction.operand() << 'h').str();
case Source::Indirect:
return (std::stringstream() <<
'[' <<
InstructionSet::x86::to_string(pointer.index(), data_size(instruction.address_size())) << '+' <<
InstructionSet::x86::to_string(pointer.base(), data_size(instruction.address_size())) << '+' <<
std::setfill('0') << std::setw(4) << std::uppercase << std::hex << instruction.offset() << 'h' <<
']'
).str();
}
return operand;
};
if(operands > 1) {
operation += " ";
operation += to_string(decoded.second.destination(), decoded.second);
operation += ",";
}
if(operands > 0) {
operation += " ";
operation += to_string(decoded.second.source(), decoded.second);
}
2023-09-17 20:29:04 +00:00
if(!operands) {
// These tests always leave a space after the operation.
operation += " ";
}
const NSString *objcOperation = [NSString stringWithUTF8String:operation.c_str()];
XCTAssertEqualObjects(objcOperation, test[@"name"]);
2023-09-17 20:29:04 +00:00
if(![objcOperation isEqualToString:test[@"name"]]) {
log_hex();
// Repeat operand conversions, for debugging.
to_string(decoded.second.destination(), decoded.second);
to_string(decoded.second.source(), decoded.second);
2023-09-17 20:29:04 +00:00
return false;
}
return true;
}
2023-09-13 19:53:38 +00:00
- (void)testDecoding {
NSMutableSet<NSString *> *failures = [[NSMutableSet alloc] init];
NSArray<NSString *> *testFiles = [self testFiles];
for(NSString *file in testFiles) {
2023-09-13 19:53:38 +00:00
NSData *data = [NSData dataWithContentsOfGZippedFile:file];
NSArray<NSDictionary *> *testsInFile = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
2023-09-13 20:09:58 +00:00
NSUInteger successes = 0;
for(NSDictionary *test in testsInFile) {
// A single failure per instruction is fine.
if(![self applyDecodingTest:test]) {
[failures addObject:file];
break;
}
2023-09-13 20:09:58 +00:00
++successes;
}
if(successes != [testsInFile count]) {
NSLog(@"Failed after %ld successes", successes);
}
2023-09-13 19:53:38 +00:00
}
2023-09-14 16:29:49 +00:00
NSLog(@"%ld failures out of %ld tests: %@", failures.count, testFiles.count, [[failures allObjects] sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)]);
2023-09-13 19:53:38 +00:00
}
@end