mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-27 12:16:07 +00:00
b51b62da45
* setup ALLEGREX * more setup * clo * fix * Implement SPECIAL_RS and SPECIAL_SA instructions * more table placeholders * Implement bshfl instructions * Rename to R4000Allegrex * Implement SPECIAL instructions * Add tests * Remove some duplicated tests * Implement SPECIAL3 instructions * fix bug in test * update * Implement COPz * Implement SPECIAL2 instructions * Implement COP1 * Yeet cop3 * som tests * bvf, bvfl, bvt, bvtl * fix bshfl prefix * need to implement the vfpu registers * implement vt_7? * R4000AllegrexVF -> R4000AllegrexVScalar * Add test suite to compare with the sn toolchain decoding * more vfpu test cases * forgor this * I can't decide how to name these registers * Prepare tables for all register types * Fix typo * Implement vector scalar register operands * Implement quad registers * Fix tests? * svl.q, svr.q * Implement a bunch of vfpu0 instructions * implement registers for `.t` and `.p` instructions * Implement VFPU1 instructions * bleh * VFPU1, VFPU3 and `vcmp.` * Fix wrong register type on some instructions * start vfpu3 * Implement VFPU3 instructions * start categorizing VFPU4 * Categorize VFPU5 * VFPU6 identification * Identify VFPU7 * COP2 is weird * organize COP2 a bit * Add test cases for VFPU4 FMT * VFPU4 FMT2 stuff * VFPU4 FMT3 stuff * VFPU5 stuff * VFPU6 stuff * VFPU7 stuff * Implement COP2 instructions * Implement vmov, vabs and vneg * VPFU4 FMT0 FMT0 FMT0 implemented * VFPU FMT0 FMT0 FMT2 * vnrcp, vnsin, vrexp2 * vrnds, vrndi, vrndf1, vrndf2 * Change tests a bit * vf2h, vh2f, vsbz, vlgb * vuc2ifs, vc2i, vus2i, vs2i, vi2uc, vi2c, vi2us, vi2s * vsrt1, vsrt2, vbfy1, vbfy2, vocp, vsocp, vfad, vavg * vsrt3, vsrt4, vsgn * vmfvc and vmtvc placeholders * vt4444, vt5551, vt5650 * vcst placeholder * vf2in * vf2iz * vf2iu, vf2id, vi2f * vcmovt, vcmovf * vwbn.s, viim.s, vfim.s * vpfxs, vpfxt, vpfxd, vnop, vsync, vflush * vmmov, vmidt, vmzero, vmone * vrot * vmmul, vhtfm2, vtfm2, vhtfm3, vtfm3, vhtfm4, vtfm4, vmscl, vcrsp, vqmul * Implement matrix operands * fix matrix operands * Fix `illegal` tests * hack out a way to check the test cases are assemblable * test-fixing: branches * fix more test cases * fix vmfvc and vmtvc * more test fixing * vdiv and fix operand R323 * more test fixing * Fix matrix operands * implement vcmp comparisons * fix vsync2 * vsqrt and vrndf1 fixes * Implement "constant" operand for `vcst` * Add missing operand of vf2in, vf2iz, vf2iu, vf2id, vi2f * Add missing vcmovt and vcmovf operands * Add missing vwbn operand * Tests cases for vmmul * Fix vtfm2 * Implement "transpose matrix register" * Add placeholders for the remaining missing operands * Implement viim operand * Implement vrot code operand * placeholders for rp and wp operands * test cases for vpfxs, vpfxt and vpfxd * Properly implement rpx, rpy, rpz and rpw * Properly implement wpx, wpy, wpz and wpw operands * Implement vfim * changelog * readme * some cleanup * Restructure some tables * more table restructure * fix tests * more table yeeting * more cleanup * more cleanup * reanming * moar * fmt
266 lines
7.5 KiB
C
266 lines
7.5 KiB
C
/* SPDX-FileCopyrightText: © 2024 Decompollaborate */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef EXPECTED_DISASM_UTILS_H
|
|
#define EXPECTED_DISASM_UTILS_H
|
|
#pragma once
|
|
|
|
#include "rabbitizer.h"
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
|
|
#ifdef NDEBUG
|
|
#error "Do not define NDEBUG"
|
|
#endif
|
|
#include <assert.h>
|
|
|
|
#define BOOL_STR(x) ((x) ? "true" : "false")
|
|
#define STR_STARTS_WITH(str, prefix) (strncmp((str), (prefix), strlen((prefix))) == 0)
|
|
|
|
#define LOG(...) \
|
|
do { \
|
|
fprintf(stderr, __VA_ARGS__); \
|
|
fprintf(stderr, " File: %s\n", __BASE_FILE__); \
|
|
} while (0)
|
|
|
|
#define LOG_END(...) \
|
|
do { \
|
|
fprintf(stderr, "%s: ", __BASE_FILE__); \
|
|
fprintf(stderr, __VA_ARGS__); \
|
|
} while (0)
|
|
|
|
#define LOG_ENTRY_DATA(entry, instr) \
|
|
do { \
|
|
fprintf(stderr, " InstrIdType: '%s'\n", RabInstrIdType_getName((instr)->instrIdType)); \
|
|
fprintf(stderr, " gnuMode: '%s'\n", BOOL_STR((entry)->gnuMode)); \
|
|
fprintf(stderr, "\n"); \
|
|
} while (0)
|
|
|
|
size_t strlen_null(const char *string) {
|
|
if (string == NULL) {
|
|
return 0;
|
|
}
|
|
return strlen(string);
|
|
}
|
|
|
|
int strcmp_null(const char *s0, const char *s1) {
|
|
if (s0 == s1) {
|
|
return 0;
|
|
}
|
|
|
|
if (s0 == NULL) {
|
|
return 1;
|
|
}
|
|
|
|
if (s1 == NULL) {
|
|
return -1;
|
|
}
|
|
|
|
return strcmp(s0, s1);
|
|
}
|
|
|
|
typedef struct TestEntry {
|
|
RabbitizerInstrCategory category;
|
|
uint32_t word;
|
|
const char *immOverride;
|
|
const char *expectedStr;
|
|
bool gnuMode;
|
|
} TestEntry;
|
|
|
|
#define TEST_ENTRY(cat, w, imm, expected, ...) \
|
|
{ .category = cat, .word = w, .immOverride = imm, .expectedStr = expected, .gnuMode = true, __VA_ARGS__ }
|
|
|
|
// Must be defined by the test
|
|
const TestEntry test_entries[];
|
|
size_t test_entries_len;
|
|
|
|
typedef struct InstrInitInfo {
|
|
void (*init)(RabbitizerInstruction *self, uint32_t word, uint32_t vram);
|
|
void (*processUniqueId)(RabbitizerInstruction *self);
|
|
void (*destroy)(RabbitizerInstruction *self);
|
|
} InstrInitInfo;
|
|
|
|
#define INIT_INFOS(catSuffix, plainSuffix) \
|
|
[RABBITIZER_INSTRCAT_##catSuffix] = { \
|
|
.init = RabbitizerInstruction##plainSuffix##_init, \
|
|
.processUniqueId = RabbitizerInstruction##plainSuffix##_processUniqueId, \
|
|
.destroy = RabbitizerInstruction##plainSuffix##_destroy, \
|
|
}
|
|
|
|
const InstrInitInfo initInfos[] = {
|
|
INIT_INFOS(CPU, ),
|
|
INIT_INFOS(RSP, Rsp),
|
|
INIT_INFOS(R3000GTE, R3000GTE),
|
|
INIT_INFOS(R4000ALLEGREX, R4000Allegrex),
|
|
INIT_INFOS(R5900, R5900),
|
|
};
|
|
|
|
static_assert(ARRAY_COUNT(initInfos) == RABBITIZER_INSTRCAT_MAX, "oy noy, the tests are borken");
|
|
|
|
void check_infos_validity(void) {
|
|
static bool checked = false;
|
|
size_t i;
|
|
|
|
if (checked) {
|
|
return;
|
|
}
|
|
|
|
for (i = 0; i < RABBITIZER_INSTRCAT_MAX; i++) {
|
|
const InstrInitInfo *info = &initInfos[i];
|
|
|
|
assert(info->init != NULL);
|
|
assert(info->processUniqueId != NULL);
|
|
assert(info->destroy != NULL);
|
|
}
|
|
|
|
checked = true;
|
|
}
|
|
|
|
int check_duplicated_entries(size_t entries_len, const TestEntry entries_arr[]) {
|
|
assert(entries_arr != NULL);
|
|
|
|
int errorCount = 0;
|
|
size_t i;
|
|
|
|
for (i = 0; i < entries_len; i++) {
|
|
size_t j;
|
|
|
|
for (j = i + 1; j < entries_len; j++) {
|
|
if ((entries_arr[i].word == entries_arr[j].word) &&
|
|
(strcmp_null(entries_arr[i].immOverride, entries_arr[j].immOverride) == 0)) {
|
|
if (entries_arr[i].gnuMode == entries_arr[j].gnuMode) {
|
|
LOG("Duplicated entry. Word: '0x%08X'. immOverride: '%s'\n", entries_arr[i].word,
|
|
entries_arr[i].immOverride);
|
|
errorCount++;
|
|
}
|
|
}
|
|
|
|
#if 0
|
|
if (strcmp_null(entries_arr[i].expectedStr, entries_arr[j].expectedStr) == 0) {
|
|
LOG("Duplicated expected entry. Word: '0x%08X'. immOverride: '%s'. expectedStr: '%s'\n", entries_arr[i].word,
|
|
entries_arr[i].immOverride, entries_arr[i].expectedStr);
|
|
errorCount++;
|
|
}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
return errorCount;
|
|
}
|
|
|
|
bool check_expected_output(const TestEntry *entry) {
|
|
assert(entry != NULL);
|
|
assert(entry->category < RABBITIZER_INSTRCAT_MAX);
|
|
|
|
bool expected = true;
|
|
RabbitizerInstruction instr;
|
|
char *buffer;
|
|
size_t bufferSize;
|
|
size_t immOverrideLength = strlen_null(entry->immOverride);
|
|
const InstrInitInfo *info = &initInfos[entry->category];
|
|
|
|
RabbitizerConfig_Cfg.toolchainTweaks.gnuMode = entry->gnuMode;
|
|
|
|
check_infos_validity();
|
|
|
|
info->init(&instr, entry->word, 0);
|
|
info->processUniqueId(&instr);
|
|
|
|
bufferSize = RabbitizerInstruction_getSizeForBuffer(&instr, immOverrideLength, 0);
|
|
buffer = malloc(bufferSize + 1);
|
|
assert(buffer != NULL);
|
|
|
|
RabbitizerInstruction_disassemble(&instr, buffer, entry->immOverride, immOverrideLength, 0);
|
|
|
|
if (entry->expectedStr == NULL) {
|
|
LOG("Word '0x%08X' doesn't have a expected str, got '%s'\n", entry->word, buffer);
|
|
LOG_ENTRY_DATA(entry, &instr);
|
|
expected = false;
|
|
} else if (strcmp(buffer, entry->expectedStr) != 0) {
|
|
LOG("Error on word '0x%08X'. Expected '%s', got '%s'\n", entry->word, entry->expectedStr, buffer);
|
|
LOG_ENTRY_DATA(entry, &instr);
|
|
expected = false;
|
|
}
|
|
|
|
free(buffer);
|
|
info->destroy(&instr);
|
|
|
|
return expected;
|
|
}
|
|
|
|
void print_expected(void) {
|
|
size_t i;
|
|
|
|
for (i = 0; i < test_entries_len; i++) {
|
|
const TestEntry *entry = &test_entries[i];
|
|
|
|
RabbitizerInstruction instr;
|
|
const InstrInitInfo *info = &initInfos[entry->category];
|
|
|
|
assert(entry->category < RABBITIZER_INSTRCAT_MAX);
|
|
|
|
RabbitizerConfig_Cfg.toolchainTweaks.gnuMode = entry->gnuMode;
|
|
|
|
info->init(&instr, entry->word, 0);
|
|
info->processUniqueId(&instr);
|
|
|
|
if (!STR_STARTS_WITH(entry->expectedStr, ".word ")) {
|
|
printf("%s\n", entry->expectedStr);
|
|
}
|
|
|
|
info->destroy(&instr);
|
|
}
|
|
}
|
|
|
|
bool process_argv(int argc, char *argv[]) {
|
|
bool ret = false;
|
|
int i;
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
const char *opt = argv[i];
|
|
|
|
if (strcmp(opt, "--print-expected") == 0) {
|
|
print_expected();
|
|
ret = true;
|
|
} else {
|
|
LOG_END("Unknown option: '%s'\n", opt);
|
|
ret = true;
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
#ifndef AVOID_DEF_MAIN
|
|
int main(int argc, char *argv[]) {
|
|
int errorCount;
|
|
size_t i;
|
|
|
|
if (process_argv(argc, argv)) {
|
|
return 0;
|
|
}
|
|
|
|
errorCount = check_duplicated_entries(test_entries_len, test_entries);
|
|
|
|
if (errorCount != 0) {
|
|
LOG_END("Found %i duplicated entries. Stopping\n", errorCount);
|
|
|
|
return errorCount;
|
|
}
|
|
|
|
for (i = 0; i < test_entries_len; i++) {
|
|
if (!check_expected_output(&test_entries[i])) {
|
|
errorCount++;
|
|
}
|
|
}
|
|
|
|
LOG_END("%i errors out of %zu entries. %.2f%% correct.\n\n", errorCount, test_entries_len, (double)((test_entries_len - errorCount) / (float)test_entries_len * 100.0f));
|
|
|
|
return errorCount;
|
|
}
|
|
#endif
|
|
|
|
#endif
|