// // ARMDecoderTests.m // Clock Signal // // Created by Thomas Harte on 16/02/2024. // Copyright 2024 Thomas Harte. All rights reserved. // #import #include "../../../InstructionSets/ARM/Executor.hpp" #include "CSROMFetcher.hpp" #include "NSData+dataWithContentsOfGZippedFile.h" #include using namespace InstructionSet::ARM; namespace { struct Memory { std::vector rom; template bool write(uint32_t address, IntT source, Mode mode, bool trans) { (void)mode; (void)trans; printf("W of %08x to %08x [%lu]\n", source, address, sizeof(IntT)); if(has_moved_rom_ && address < ram_.size()) { *reinterpret_cast(&ram_[address]) = source; } return true; } template bool read(uint32_t address, IntT &source, Mode mode, bool trans) { (void)mode; (void)trans; if(address >= 0x3800000) { has_moved_rom_ = true; source = *reinterpret_cast(&rom[address - 0x3800000]); } else if(!has_moved_rom_) { // TODO: this is true only very transiently. source = *reinterpret_cast(&rom[address]); } else if(address < ram_.size()) { source = *reinterpret_cast(&ram_[address]); } else { source = 0; printf("Unknown read from %08x [%lu]\n", address, sizeof(IntT)); } return true; } private: bool has_moved_rom_ = false; std::array ram_{}; }; } @interface ARMDecoderTests : XCTestCase @end @implementation ARMDecoderTests - (void)testBarrelShifterLogicalLeft { uint32_t value; uint32_t carry; // Test a shift by 1 into carry. value = 0x8000'0000; shift(value, 1, carry); XCTAssertEqual(value, 0); XCTAssertNotEqual(carry, 0); // Test a shift by 18 into carry. value = 0x0000'4001; shift(value, 18, carry); XCTAssertEqual(value, 0x4'0000); XCTAssertNotEqual(carry, 0); // Test a shift by 17, not generating carry. value = 0x0000'4001; shift(value, 17, carry); XCTAssertEqual(value, 0x8002'0000); XCTAssertEqual(carry, 0); } - (void)testBarrelShifterLogicalRight { uint32_t value; uint32_t carry; // Test successive shifts by 4; one generating carry and one not. value = 0x12345678; shift(value, 4, carry); XCTAssertEqual(value, 0x1234567); XCTAssertNotEqual(carry, 0); shift(value, 4, carry); XCTAssertEqual(value, 0x123456); XCTAssertEqual(carry, 0); // Test shift by 1. value = 0x8003001; shift(value, 1, carry); XCTAssertEqual(value, 0x4001800); XCTAssertNotEqual(carry, 0); // Test a shift by greater than 32. value = 0xffff'ffff; shift(value, 33, carry); XCTAssertEqual(value, 0); XCTAssertEqual(carry, 0); // Test shifts by 32: result is always 0, carry is whatever was in bit 31. value = 0xffff'ffff; shift(value, 32, carry); XCTAssertEqual(value, 0); XCTAssertNotEqual(carry, 0); value = 0x7fff'ffff; shift(value, 32, carry); XCTAssertEqual(value, 0); XCTAssertEqual(carry, 0); // Test that a logical right shift by 0 is the same as a shift by 32. value = 0xffff'ffff; shift(value, 0, carry); XCTAssertEqual(value, 0); XCTAssertNotEqual(carry, 0); } - (void)testBarrelShifterArithmeticRight { uint32_t value; uint32_t carry; // Test a short negative shift. value = 0x8000'0030; shift(value, 1, carry); XCTAssertEqual(value, 0xc000'0018); XCTAssertEqual(carry, 0); // Test a medium negative shift without carry. value = 0xffff'0000; shift(value, 11, carry); XCTAssertEqual(value, 0xffff'ffe0); XCTAssertEqual(carry, 0); // Test a medium negative shift with carry. value = 0xffc0'0000; shift(value, 23, carry); XCTAssertEqual(value, 0xffff'ffff); XCTAssertNotEqual(carry, 0); // Test a long negative shift. value = 0x8000'0000; shift(value, 32, carry); XCTAssertEqual(value, 0xffff'ffff); XCTAssertNotEqual(carry, 0); // Test a positive shift. value = 0x0123'0031; shift(value, 3, carry); XCTAssertEqual(value, 0x24'6006); XCTAssertEqual(carry, 0); } - (void)testBarrelShifterRotateRight { uint32_t value; uint32_t carry; // Test a short rotate by one hex digit. value = 0xabcd'1234; shift(value, 4, carry); XCTAssertEqual(value, 0x4abc'd123); XCTAssertEqual(carry, 0); // Test a longer rotate, with carry. value = 0xa5f9'6342; shift(value, 17, carry); XCTAssertEqual(value, 0xb1a1'52fc); XCTAssertNotEqual(carry, 0); // Test a rotate by 32 without carry. value = 0x385f'7dce; shift(value, 32, carry); XCTAssertEqual(value, 0x385f'7dce); XCTAssertEqual(carry, 0); // Test a rotate by 32 with carry. value = 0xfecd'ba12; shift(value, 32, carry); XCTAssertEqual(value, 0xfecd'ba12); XCTAssertNotEqual(carry, 0); // Test a rotate through carry, carry not set. value = 0x123f'abcf; carry = 0; shift(value, 0, carry); XCTAssertEqual(value, 0x091f'd5e7); XCTAssertNotEqual(carry, 0); // Test a rotate through carry, carry set. value = 0x123f'abce; carry = 1; shift(value, 0, carry); XCTAssertEqual(value, 0x891f'd5e7); XCTAssertEqual(carry, 0); } - (void)testRegisterModes { Registers r; // Set all user mode registers to their indices. r.set_mode(Mode::User); for(int c = 0; c < 15; c++) { r[c] = c; } // Set FIQ registers. r.set_mode(Mode::FIQ); for(int c = 8; c < 15; c++) { r[c] = c | 0x100; } // Set IRQ registers. r.set_mode(Mode::IRQ); for(int c = 13; c < 15; c++) { r[c] = c | 0x200; } // Set supervisor registers. r.set_mode(Mode::FIQ); r.set_mode(Mode::User); r.set_mode(Mode::Supervisor); for(int c = 13; c < 15; c++) { r[c] = c | 0x300; } // Check all results. r.set_mode(Mode::User); r.set_mode(Mode::FIQ); for(int c = 0; c < 8; c++) { XCTAssertEqual(r[c], c); } for(int c = 8; c < 15; c++) { XCTAssertEqual(r[c], c | 0x100); } r.set_mode(Mode::FIQ); r.set_mode(Mode::IRQ); r.set_mode(Mode::User); r.set_mode(Mode::FIQ); r.set_mode(Mode::Supervisor); for(int c = 0; c < 13; c++) { XCTAssertEqual(r[c], c); } for(int c = 13; c < 15; c++) { XCTAssertEqual(r[c], c | 0x300); } r.set_mode(Mode::FIQ); r.set_mode(Mode::User); for(int c = 0; c < 15; c++) { XCTAssertEqual(r[c], c); } r.set_mode(Mode::Supervisor); r.set_mode(Mode::IRQ); for(int c = 0; c < 13; c++) { XCTAssertEqual(r[c], c); } for(int c = 13; c < 15; c++) { XCTAssertEqual(r[c], c | 0x200); } } - (void)testMessy { NSData *const tests = [NSData dataWithContentsOfGZippedFile: [[NSBundle bundleForClass:[self class]] pathForResource:@"test" ofType:@"txt.gz" inDirectory:@"Messy ARM"] ]; const std::string text((char *)tests.bytes); std::istringstream input(text); input >> std::hex; uint32_t instruction; while(!input.eof()) { std::string label; input >> label; if(label == "**") { input >> instruction; continue; } if(label == "Before:" || label == "After:") { // Read register state. uint32_t regs[17]; for(int c = 0; c < 17; c++) { input >> regs[c]; } if(label == "Before:") { // This is the start of a new test. } else { // Execute test and compare. } continue; } uint32_t address; uint32_t value; input >> address >> value; if(label == "r.b") { // Capture a byte read for provision. continue; } if(label == "r.w") { // Capture a word read for provision. continue; } if(label == "w.b") { // Capture a byte write for comparison. continue; } if(label == "w.w") { // Capture a word write for comparison. continue; } } XCTAssertNotNil(tests); } // TODO: turn the below into a trace-driven test case. - (void)testROM319 { constexpr ROM::Name rom_name = ROM::Name::AcornRISCOS319; ROM::Request request(rom_name); const auto roms = CSROMFetcher()(request); auto executor = std::make_unique>(); executor->bus.rom = roms.find(rom_name)->second; for(int c = 0; c < 1000; c++) { uint32_t instruction; executor->bus.read(executor->pc(), instruction, executor->registers().mode(), false); if(instruction == 0xe33ff343) { printf(""); } printf("%08x: %08x [", executor->pc(), instruction); for(int c = 0; c < 15; c++) { printf("r%d:%08x ", c, executor->registers()[c]); } printf("psr:%08x]\n", executor->registers().status()); execute(instruction, *executor); } } @end