2022-03-18 21:24:12 +00:00
|
|
|
|
//
|
|
|
|
|
// DingusdevPowerPCTests.mm
|
|
|
|
|
// Clock Signal
|
|
|
|
|
//
|
|
|
|
|
// Created by Thomas Harte on 18/03/2022.
|
|
|
|
|
// Copyright 2022 Thomas Harte. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <XCTest/XCTest.h>
|
|
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
|
|
#include "../../../InstructionSets/PowerPC/Decoder.hpp"
|
|
|
|
|
|
2022-03-25 00:44:03 +00:00
|
|
|
|
using namespace InstructionSet::PowerPC;
|
2022-03-18 21:24:12 +00:00
|
|
|
|
|
|
|
|
|
@interface DingusdevPowerPCTests : XCTestCase
|
|
|
|
|
@end
|
|
|
|
|
|
2022-03-27 12:47:01 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
void AssertEqualOperationName(NSString *lhs, NSString *rhs) {
|
|
|
|
|
NSString *const lhsMapped = [lhs stringByReplacingOccurrencesOfString:@"_" withString:@"."];
|
|
|
|
|
NSString *const rhsMapped = [rhs stringByReplacingOccurrencesOfString:@"_" withString:@"."];
|
|
|
|
|
XCTAssertEqualObjects(lhsMapped, rhsMapped);
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-29 00:39:52 +00:00
|
|
|
|
void AssertEqualOperationNameOE(NSString *lhs, Instruction instruction, NSString *rhs) {
|
|
|
|
|
XCTAssert([lhs characterAtIndex:lhs.length - 1] == 'x');
|
|
|
|
|
lhs = [lhs substringToIndex:lhs.length - 1];
|
|
|
|
|
if(instruction.oe()) lhs = [lhs stringByAppendingString:@"o"];
|
|
|
|
|
if(instruction.rc()) lhs = [lhs stringByAppendingString:@"."];
|
|
|
|
|
XCTAssertEqualObjects(lhs, rhs);
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-30 16:40:57 +00:00
|
|
|
|
NSString *condition(uint32_t code) {
|
|
|
|
|
NSString *suffix;
|
|
|
|
|
switch(Condition(code & 3)) {
|
|
|
|
|
default: break;
|
|
|
|
|
case Condition::Negative: suffix = @"lt"; break;
|
|
|
|
|
case Condition::Positive: suffix = @"gt"; break;
|
|
|
|
|
case Condition::Zero: suffix = @"eq"; break;
|
|
|
|
|
case Condition::SummaryOverflow: suffix = @"so"; break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(code & ~3) {
|
|
|
|
|
return [NSString stringWithFormat:@"4*cr%d+%@", code >> 2, suffix];
|
|
|
|
|
} else {
|
|
|
|
|
return suffix;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-27 12:47:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-03-18 21:24:12 +00:00
|
|
|
|
@implementation DingusdevPowerPCTests
|
|
|
|
|
|
2022-03-26 00:31:47 +00:00
|
|
|
|
- (void)testABDInstruction:(Instruction)instruction columns:(NSArray<NSString *> *)columns testZero:(BOOL)testZero {
|
|
|
|
|
NSString *const rA = (instruction.rA() || !testZero) ? [NSString stringWithFormat:@"r%d", instruction.rA()] : @"0";
|
|
|
|
|
NSString *const rD = [NSString stringWithFormat:@"r%d", instruction.rD()];
|
|
|
|
|
XCTAssertEqualObjects(rD, columns[3]);
|
|
|
|
|
XCTAssertEqualObjects(rA, columns[4]);
|
2022-03-29 00:47:32 +00:00
|
|
|
|
|
|
|
|
|
if([columns count] > 5) {
|
|
|
|
|
NSString *const rB = [NSString stringWithFormat:@"r%d", instruction.rB()];
|
|
|
|
|
XCTAssertEqualObjects(rB, columns[5]);
|
|
|
|
|
}
|
2022-03-26 00:31:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-03-18 21:24:12 +00:00
|
|
|
|
- (void)testDecoding {
|
|
|
|
|
NSData *const testData =
|
|
|
|
|
[NSData dataWithContentsOfURL:
|
|
|
|
|
[[NSBundle bundleForClass:[self class]]
|
|
|
|
|
URLForResource:@"ppcdisasmtest"
|
|
|
|
|
withExtension:@"csv"
|
|
|
|
|
subdirectory:@"dingusdev PowerPC tests"]];
|
|
|
|
|
|
|
|
|
|
NSString *const wholeFile = [[NSString alloc] initWithData:testData encoding:NSUTF8StringEncoding];
|
|
|
|
|
NSArray<NSString *> *const lines = [wholeFile componentsSeparatedByString:@"\n"];
|
|
|
|
|
|
|
|
|
|
InstructionSet::PowerPC::Decoder decoder(InstructionSet::PowerPC::Model::MPC601);
|
|
|
|
|
for(NSString *const line in lines) {
|
|
|
|
|
// Ignore empty lines and comments.
|
|
|
|
|
if([line length] == 0) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if([line characterAtIndex:0] == '#') {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NSArray<NSString *> *const columns = [line componentsSeparatedByString:@","];
|
|
|
|
|
|
2022-03-25 00:44:03 +00:00
|
|
|
|
// Columns are 1: address; 2: opcode; 3–: specific to the instruction.
|
2022-03-18 21:24:12 +00:00
|
|
|
|
const uint32_t address = uint32_t(std::strtol([columns[0] UTF8String], 0, 16));
|
|
|
|
|
const uint32_t opcode = uint32_t(std::strtol([columns[1] UTF8String], 0, 16));
|
|
|
|
|
NSString *const operation = columns[2];
|
|
|
|
|
const auto instruction = decoder.decode(opcode);
|
|
|
|
|
|
2022-03-27 12:47:01 +00:00
|
|
|
|
NSLog(@"%@", line);
|
2022-03-18 21:24:12 +00:00
|
|
|
|
switch(instruction.operation) {
|
|
|
|
|
default:
|
2022-03-18 23:55:26 +00:00
|
|
|
|
NSAssert(FALSE, @"Didn't handle %@", line);
|
2022-03-18 21:24:12 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2022-03-30 16:40:57 +00:00
|
|
|
|
#define CRMod(x) \
|
|
|
|
|
case Operation::x: \
|
|
|
|
|
AssertEqualOperationName(operation, @#x); \
|
|
|
|
|
XCTAssertEqualObjects(columns[3], condition(instruction.crbD())); \
|
|
|
|
|
XCTAssertEqualObjects(columns[4], condition(instruction.crbA())); \
|
|
|
|
|
XCTAssertEqualObjects(columns[5], condition(instruction.crbB())); \
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
CRMod(crand);
|
|
|
|
|
CRMod(crandc);
|
|
|
|
|
CRMod(creqv);
|
|
|
|
|
CRMod(crnand);
|
|
|
|
|
CRMod(crnor);
|
|
|
|
|
CRMod(cror);
|
|
|
|
|
CRMod(crorc);
|
|
|
|
|
CRMod(crxor);
|
|
|
|
|
|
|
|
|
|
#undef CRMod
|
|
|
|
|
|
2022-03-30 00:48:43 +00:00
|
|
|
|
case Operation::mtcrf: {
|
|
|
|
|
AssertEqualOperationName(operation,
|
|
|
|
|
instruction.crm() != 0xff ? @"mtcrf" : @"mtcr");
|
|
|
|
|
|
|
|
|
|
NSString *const rS = [NSString stringWithFormat:@"r%d", instruction.rS()];
|
|
|
|
|
XCTAssertEqualObjects(rS, [columns lastObject]);
|
|
|
|
|
|
|
|
|
|
if(columns.count > 4) {
|
|
|
|
|
const auto crm = strtol([columns[3] UTF8String], NULL, 16);
|
|
|
|
|
XCTAssertEqual(crm, instruction.crm());
|
|
|
|
|
}
|
|
|
|
|
} break;
|
|
|
|
|
|
|
|
|
|
|
2022-03-27 12:47:01 +00:00
|
|
|
|
#define ArithImm(x) \
|
|
|
|
|
case Operation::x: { \
|
|
|
|
|
NSString *const rD = [NSString stringWithFormat:@"r%d", instruction.rD()]; \
|
|
|
|
|
NSString *const rA = [NSString stringWithFormat:@"r%d", instruction.rA()]; \
|
|
|
|
|
const auto simm = strtol([columns[5] UTF8String], NULL, 16); \
|
|
|
|
|
AssertEqualOperationName(operation, @#x); \
|
|
|
|
|
XCTAssertEqualObjects(columns[3], rD); \
|
|
|
|
|
XCTAssertEqualObjects(columns[4], rA); \
|
|
|
|
|
XCTAssertEqual(simm, instruction.simm()); \
|
|
|
|
|
} break;
|
|
|
|
|
|
|
|
|
|
ArithImm(mulli);
|
|
|
|
|
ArithImm(subfic);
|
|
|
|
|
ArithImm(addi);
|
|
|
|
|
ArithImm(addic);
|
|
|
|
|
ArithImm(addic_);
|
|
|
|
|
ArithImm(addis);
|
|
|
|
|
|
|
|
|
|
#undef ArithImm
|
|
|
|
|
|
2022-03-26 12:45:07 +00:00
|
|
|
|
#define ABCz(x) \
|
|
|
|
|
case Operation::x: \
|
2022-03-27 12:47:01 +00:00
|
|
|
|
AssertEqualOperationName(operation, @#x); \
|
2022-03-26 12:45:07 +00:00
|
|
|
|
[self testABDInstruction:instruction columns:columns testZero:YES]; \
|
2022-03-26 00:31:47 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2022-03-26 12:45:07 +00:00
|
|
|
|
ABCz(lwzx);
|
2022-03-27 12:47:01 +00:00
|
|
|
|
ABCz(lwzux);
|
2022-03-26 12:45:07 +00:00
|
|
|
|
ABCz(lbzx);
|
|
|
|
|
ABCz(lbzux);
|
2022-03-27 12:47:01 +00:00
|
|
|
|
ABCz(stwx);
|
|
|
|
|
ABCz(stwux);
|
|
|
|
|
ABCz(stbx);
|
|
|
|
|
ABCz(stbux);
|
|
|
|
|
ABCz(lhzx);
|
|
|
|
|
ABCz(lhzux);
|
|
|
|
|
ABCz(lhax);
|
|
|
|
|
ABCz(lhaux);
|
|
|
|
|
ABCz(sthx);
|
|
|
|
|
ABCz(sthux);
|
2022-03-26 12:45:07 +00:00
|
|
|
|
|
|
|
|
|
#undef ABCz
|
2022-03-26 00:23:21 +00:00
|
|
|
|
|
2022-03-29 00:18:41 +00:00
|
|
|
|
#define ABD(x) \
|
|
|
|
|
case Operation::x: \
|
2022-03-29 00:39:52 +00:00
|
|
|
|
AssertEqualOperationNameOE(@#x, instruction, operation); \
|
2022-03-29 00:18:41 +00:00
|
|
|
|
[self testABDInstruction:instruction columns:columns testZero:NO]; \
|
|
|
|
|
break;
|
|
|
|
|
|
2022-03-29 00:39:52 +00:00
|
|
|
|
ABD(subfcx);
|
|
|
|
|
ABD(subfx);
|
2022-03-29 00:47:32 +00:00
|
|
|
|
ABD(negx);
|
|
|
|
|
ABD(subfex);
|
|
|
|
|
ABD(subfzex);
|
|
|
|
|
ABD(subfmex);
|
|
|
|
|
ABD(dozx);
|
|
|
|
|
ABD(absx);
|
|
|
|
|
ABD(nabsx);
|
2022-03-30 00:48:43 +00:00
|
|
|
|
ABD(addx);
|
|
|
|
|
ABD(addcx);
|
|
|
|
|
ABD(addex);
|
|
|
|
|
ABD(addmex);
|
|
|
|
|
ABD(addzex);
|
|
|
|
|
ABD(mulhwx);
|
|
|
|
|
ABD(mulhwux);
|
|
|
|
|
ABD(mulx);
|
|
|
|
|
ABD(mullwx);
|
|
|
|
|
ABD(divx);
|
|
|
|
|
ABD(divsx);
|
|
|
|
|
ABD(divwux);
|
|
|
|
|
ABD(divwx);
|
2022-03-29 00:18:41 +00:00
|
|
|
|
|
|
|
|
|
#undef ABD
|
|
|
|
|
|
2022-03-25 12:41:57 +00:00
|
|
|
|
case Operation::bcx:
|
2022-03-25 10:25:06 +00:00
|
|
|
|
case Operation::bclrx:
|
2022-03-25 00:44:03 +00:00
|
|
|
|
case Operation::bcctrx: {
|
|
|
|
|
NSString *baseOperation = nil;
|
2022-03-25 12:41:57 +00:00
|
|
|
|
BOOL addConditionToOperand = NO;
|
2022-03-25 10:25:06 +00:00
|
|
|
|
|
2022-03-25 00:44:03 +00:00
|
|
|
|
switch(instruction.branch_options()) {
|
2022-03-25 12:41:57 +00:00
|
|
|
|
case BranchOption::Always: baseOperation = @"b"; break;
|
|
|
|
|
case BranchOption::Dec_Zero: baseOperation = @"bdz"; break;
|
2022-03-26 00:23:21 +00:00
|
|
|
|
case BranchOption::Dec_NotZero: baseOperation = @"bdnz"; break;
|
2022-03-25 12:41:57 +00:00
|
|
|
|
|
|
|
|
|
case BranchOption::Clear:
|
2022-03-25 00:44:03 +00:00
|
|
|
|
switch(Condition(instruction.bi() & 3)) {
|
|
|
|
|
default: break;
|
2022-03-25 10:25:06 +00:00
|
|
|
|
case Condition::Negative: baseOperation = @"bge"; break;
|
|
|
|
|
case Condition::Positive: baseOperation = @"ble"; break;
|
|
|
|
|
case Condition::Zero: baseOperation = @"bne"; break;
|
2022-03-25 00:44:03 +00:00
|
|
|
|
case Condition::SummaryOverflow:
|
2022-03-25 10:25:06 +00:00
|
|
|
|
baseOperation = @"bns";
|
2022-03-25 00:44:03 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2022-03-25 12:41:57 +00:00
|
|
|
|
case BranchOption::Dec_ZeroAndClear:
|
|
|
|
|
baseOperation = @"bdzf";
|
|
|
|
|
addConditionToOperand = YES;
|
|
|
|
|
break;
|
|
|
|
|
case BranchOption::Dec_NotZeroAndClear:
|
|
|
|
|
baseOperation = @"bdnzf";
|
|
|
|
|
addConditionToOperand = YES;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BranchOption::Set:
|
2022-03-25 00:44:03 +00:00
|
|
|
|
switch(Condition(instruction.bi() & 3)) {
|
|
|
|
|
default: break;
|
2022-03-25 10:25:06 +00:00
|
|
|
|
case Condition::Negative: baseOperation = @"blt"; break;
|
|
|
|
|
case Condition::Positive: baseOperation = @"bgt"; break;
|
|
|
|
|
case Condition::Zero: baseOperation = @"beq"; break;
|
2022-03-25 00:44:03 +00:00
|
|
|
|
case Condition::SummaryOverflow:
|
2022-03-25 10:25:06 +00:00
|
|
|
|
baseOperation = @"bso";
|
2022-03-25 00:44:03 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2022-03-25 12:41:57 +00:00
|
|
|
|
case BranchOption::Dec_ZeroAndSet:
|
|
|
|
|
baseOperation = @"bdzt";
|
|
|
|
|
addConditionToOperand = YES;
|
|
|
|
|
break;
|
|
|
|
|
case BranchOption::Dec_NotZeroAndSet:
|
|
|
|
|
baseOperation = @"bdnzt";
|
|
|
|
|
addConditionToOperand = YES;
|
|
|
|
|
break;
|
|
|
|
|
|
2022-03-25 00:44:03 +00:00
|
|
|
|
default: break;
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-25 12:41:57 +00:00
|
|
|
|
switch(instruction.operation) {
|
|
|
|
|
case Operation::bcctrx:
|
|
|
|
|
baseOperation = [baseOperation stringByAppendingString:@"ctr"];
|
|
|
|
|
break;
|
|
|
|
|
case Operation::bclrx:
|
|
|
|
|
baseOperation = [baseOperation stringByAppendingString:@"lr"];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case Operation::bcx: {
|
2022-03-26 00:10:08 +00:00
|
|
|
|
uint32_t decoded_destination;
|
|
|
|
|
if(instruction.aa()) {
|
|
|
|
|
decoded_destination = instruction.bd();
|
|
|
|
|
} else {
|
|
|
|
|
decoded_destination = instruction.bd() + address;
|
|
|
|
|
}
|
2022-03-25 12:41:57 +00:00
|
|
|
|
|
|
|
|
|
const uint32_t destination = uint32_t(std::strtol([[columns lastObject] UTF8String], 0, 16));
|
|
|
|
|
XCTAssertEqual(decoded_destination, destination);
|
|
|
|
|
} break;
|
|
|
|
|
|
|
|
|
|
default: break;
|
2022-03-25 10:25:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-03-25 00:44:03 +00:00
|
|
|
|
if(!baseOperation) {
|
|
|
|
|
NSAssert(FALSE, @"Didn't handle bi %d for bo %d, %@", instruction.bi() & 3, instruction.bo(), line);
|
|
|
|
|
} else {
|
|
|
|
|
if(instruction.lk()) {
|
|
|
|
|
baseOperation = [baseOperation stringByAppendingString:@"l"];
|
|
|
|
|
}
|
2022-03-26 00:10:08 +00:00
|
|
|
|
if(instruction.aa()) {
|
|
|
|
|
baseOperation = [baseOperation stringByAppendingString:@"a"];
|
|
|
|
|
}
|
2022-03-25 00:44:03 +00:00
|
|
|
|
if(instruction.branch_prediction_hint()) {
|
|
|
|
|
baseOperation = [baseOperation stringByAppendingString:@"+"];
|
|
|
|
|
}
|
2022-03-27 12:47:01 +00:00
|
|
|
|
AssertEqualOperationName(operation, baseOperation);
|
2022-03-25 00:44:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(instruction.bi() & ~3) {
|
2022-03-25 12:41:57 +00:00
|
|
|
|
NSString *expectedCR;
|
|
|
|
|
|
|
|
|
|
if(addConditionToOperand) {
|
|
|
|
|
NSString *suffix;
|
|
|
|
|
switch(Condition(instruction.bi() & 3)) {
|
|
|
|
|
default: break;
|
|
|
|
|
case Condition::Negative: suffix = @"lt"; break;
|
|
|
|
|
case Condition::Positive: suffix = @"gt"; break;
|
|
|
|
|
case Condition::Zero: suffix = @"eq"; break;
|
|
|
|
|
case Condition::SummaryOverflow: suffix = @"so"; break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
expectedCR = [NSString stringWithFormat:@"4*cr%d+%@", instruction.bi() >> 2, suffix];
|
|
|
|
|
} else {
|
|
|
|
|
expectedCR = [NSString stringWithFormat:@"cr%d", instruction.bi() >> 2];
|
|
|
|
|
}
|
2022-03-25 00:44:03 +00:00
|
|
|
|
XCTAssertEqualObjects(columns[3], expectedCR);
|
|
|
|
|
}
|
|
|
|
|
} break;
|
|
|
|
|
|
2022-03-18 23:55:26 +00:00
|
|
|
|
case Operation::bx: {
|
2022-03-18 21:24:12 +00:00
|
|
|
|
switch((instruction.aa() ? 2 : 0) | (instruction.lk() ? 1 : 0)) {
|
2022-03-27 12:47:01 +00:00
|
|
|
|
case 0: AssertEqualOperationName(operation, @"b"); break;
|
2022-03-30 00:48:43 +00:00
|
|
|
|
case 1: AssertEqualOperationName(operation, @"bl"); break;
|
|
|
|
|
case 2: AssertEqualOperationName(operation, @"ba"); break;
|
2022-03-27 12:47:01 +00:00
|
|
|
|
case 3: AssertEqualOperationName(operation, @"bla"); break;
|
2022-03-18 21:24:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-03-18 23:55:26 +00:00
|
|
|
|
const uint32_t destination = uint32_t(std::strtol([columns[3] UTF8String], 0, 16));
|
2022-03-18 21:24:12 +00:00
|
|
|
|
const uint32_t decoded_destination =
|
|
|
|
|
instruction.li() + (instruction.aa() ? 0 : address);
|
|
|
|
|
XCTAssertEqual(decoded_destination, destination);
|
|
|
|
|
} break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|