2020-06-07 14:37:48 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import argparse
|
2023-08-01 02:30:26 +00:00
|
|
|
from pathlib import Path
|
|
|
|
|
2024-01-25 00:03:57 +00:00
|
|
|
import rabbitizer
|
|
|
|
import mapfile_parser
|
2020-06-07 14:37:48 +00:00
|
|
|
|
|
|
|
|
2023-08-01 02:30:26 +00:00
|
|
|
def decodeInstruction(bytesDiff: bytes, mapFile: mapfile_parser.MapFile) -> str:
|
|
|
|
word = (bytesDiff[0] << 24) | (bytesDiff[1] << 16) | (bytesDiff[2] << 8) | (bytesDiff[3] << 0)
|
|
|
|
instr = rabbitizer.Instruction(word)
|
|
|
|
immOverride = None
|
|
|
|
|
|
|
|
if instr.isJumpWithAddress():
|
|
|
|
# Instruction is a function call (jal)
|
|
|
|
|
|
|
|
# Get the embedded address of the function call
|
|
|
|
symAddress = instr.getInstrIndexAsVram()
|
|
|
|
|
|
|
|
# Search for the address in the mapfile
|
|
|
|
symInfo = mapFile.findSymbolByVramOrVrom(symAddress)
|
|
|
|
if symInfo is not None:
|
|
|
|
# Use the symbol from the mapfile instead of a raw value
|
|
|
|
immOverride = symInfo.symbol.name
|
|
|
|
|
|
|
|
return instr.disassemble(immOverride=immOverride, extraLJust=-20)
|
|
|
|
|
|
|
|
def firstDiffMain():
|
|
|
|
parser = argparse.ArgumentParser(description="Find the first difference(s) between the built ROM and the base ROM.")
|
|
|
|
|
|
|
|
parser.add_argument("-c", "--count", type=int, default=5, help="find up to this many instruction difference(s)")
|
2024-01-28 17:09:03 +00:00
|
|
|
parser.add_argument("-v", "--oot-version", help="Which version should be processed", default="gc-eu-mq-dbg")
|
2023-08-01 02:30:26 +00:00
|
|
|
parser.add_argument("-a", "--add-colons", action='store_true', help="Add colon between bytes" )
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
2024-01-28 17:09:03 +00:00
|
|
|
buildFolder = Path("build") / args.oot_version
|
2023-08-01 02:30:26 +00:00
|
|
|
|
2024-02-02 21:34:20 +00:00
|
|
|
BUILTROM = buildFolder / f"oot-{args.oot_version}.z64"
|
|
|
|
BUILTMAP = buildFolder / f"oot-{args.oot_version}.map"
|
2023-08-01 02:30:26 +00:00
|
|
|
|
2024-01-28 17:09:03 +00:00
|
|
|
EXPECTEDROM = Path(f"baseroms/{args.oot_version}/baserom-decompressed.z64")
|
2023-08-01 02:30:26 +00:00
|
|
|
EXPECTEDMAP = "expected" / BUILTMAP
|
|
|
|
|
|
|
|
mapfile_parser.frontends.first_diff.doFirstDiff(BUILTMAP, EXPECTEDMAP, BUILTROM, EXPECTEDROM, args.count, mismatchSize=True, addColons=args.add_colons, bytesConverterCallback=decodeInstruction)
|
2020-06-07 14:37:48 +00:00
|
|
|
|
2023-08-01 02:30:26 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
firstDiffMain()
|