2016-03-30 20:07:55 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "debugger.h"
|
|
|
|
#include "memory.h"
|
|
|
|
#include "z80_cpu.h"
|
|
|
|
#include "gb.h"
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
enum {
|
|
|
|
LVALUE_MEMORY,
|
|
|
|
LVALUE_REG16,
|
|
|
|
LVALUE_REG_H,
|
|
|
|
LVALUE_REG_L,
|
|
|
|
} kind;
|
|
|
|
union {
|
2016-06-18 17:29:11 +00:00
|
|
|
uint16_t *register_address;
|
|
|
|
uint16_t memory_address;
|
2016-03-30 20:07:55 +00:00
|
|
|
};
|
|
|
|
} lvalue_t;
|
|
|
|
|
2016-07-01 15:24:21 +00:00
|
|
|
struct GB_breakpoint_s {
|
|
|
|
uint16_t addr;
|
|
|
|
char *condition;
|
|
|
|
};
|
|
|
|
|
2016-07-06 21:29:25 +00:00
|
|
|
#define GB_WATCHPOINT_R (1)
|
|
|
|
#define GB_WATCHPOINT_W (2)
|
|
|
|
|
|
|
|
struct GB_watchpoint_s {
|
|
|
|
uint16_t addr;
|
|
|
|
char *condition;
|
|
|
|
uint8_t flags;
|
|
|
|
};
|
|
|
|
|
2016-07-13 20:00:50 +00:00
|
|
|
|
|
|
|
static const char *value_to_string(GB_gameboy_t *gb, uint16_t value, bool prefer_name)
|
|
|
|
{
|
|
|
|
static __thread char output[256];
|
|
|
|
const GB_bank_symbol_t *symbol = GB_debugger_find_symbol(gb, value);
|
|
|
|
|
|
|
|
if (symbol && (value - symbol->addr > 0x1000 || symbol->addr == 0) ) {
|
|
|
|
symbol = NULL;
|
|
|
|
}
|
|
|
|
|
2016-07-13 20:07:36 +00:00
|
|
|
/* Avoid overflow */
|
|
|
|
if (strlen(symbol->name) > 240) {
|
|
|
|
symbol = NULL;
|
|
|
|
}
|
|
|
|
|
2016-07-13 20:00:50 +00:00
|
|
|
if (!symbol) {
|
|
|
|
sprintf(output, "$%04x", value);
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (symbol->addr == value) {
|
|
|
|
if (prefer_name) {
|
|
|
|
sprintf(output, "%s ($%04x)", symbol->name, value);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sprintf(output, "$%04x (%s)", value, symbol->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
if (prefer_name) {
|
|
|
|
sprintf(output, "%s+$%03x ($%04x)", symbol->name, value - symbol->addr, value);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sprintf(output, "$%04x (%s+$%03x)", value, symbol->name, value - symbol->addr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
static uint16_t read_lvalue(GB_gameboy_t *gb, lvalue_t lvalue)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
|
|
|
/* Not used until we add support for operators like += */
|
|
|
|
switch (lvalue.kind) {
|
|
|
|
case LVALUE_MEMORY:
|
2016-06-18 17:29:11 +00:00
|
|
|
return GB_read_memory(gb, lvalue.memory_address);
|
2016-03-30 20:07:55 +00:00
|
|
|
|
|
|
|
case LVALUE_REG16:
|
|
|
|
return *lvalue.register_address;
|
|
|
|
|
|
|
|
case LVALUE_REG_L:
|
|
|
|
return *lvalue.register_address & 0x00FF;
|
|
|
|
|
|
|
|
case LVALUE_REG_H:
|
|
|
|
return *lvalue.register_address >> 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
static void write_lvalue(GB_gameboy_t *gb, lvalue_t lvalue, uint16_t value)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
|
|
|
switch (lvalue.kind) {
|
|
|
|
case LVALUE_MEMORY:
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_write_memory(gb, lvalue.memory_address, value);
|
2016-03-30 20:07:55 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
case LVALUE_REG16:
|
|
|
|
*lvalue.register_address = value;
|
|
|
|
return;
|
|
|
|
|
|
|
|
case LVALUE_REG_L:
|
|
|
|
*lvalue.register_address &= 0xFF00;
|
|
|
|
*lvalue.register_address |= value & 0xFF;
|
|
|
|
return;
|
|
|
|
|
|
|
|
case LVALUE_REG_H:
|
|
|
|
*lvalue.register_address &= 0x00FF;
|
|
|
|
*lvalue.register_address |= value << 8;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
static uint16_t add(uint16_t a, uint16_t b) {return a + b;};
|
|
|
|
static uint16_t sub(uint16_t a, uint16_t b) {return a - b;};
|
|
|
|
static uint16_t mul(uint16_t a, uint16_t b) {return a * b;};
|
|
|
|
static uint16_t _div(uint16_t a, uint16_t b) {
|
2016-03-30 20:07:55 +00:00
|
|
|
if (b == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return a / b;
|
|
|
|
};
|
2016-06-18 17:29:11 +00:00
|
|
|
static uint16_t mod(uint16_t a, uint16_t b) {
|
2016-03-30 20:07:55 +00:00
|
|
|
if (b == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return a % b;
|
|
|
|
};
|
2016-06-18 17:29:11 +00:00
|
|
|
static uint16_t and(uint16_t a, uint16_t b) {return a & b;};
|
|
|
|
static uint16_t or(uint16_t a, uint16_t b) {return a | b;};
|
|
|
|
static uint16_t xor(uint16_t a, uint16_t b) {return a ^ b;};
|
|
|
|
static uint16_t shleft(uint16_t a, uint16_t b) {return a << b;};
|
|
|
|
static uint16_t shright(uint16_t a, uint16_t b) {return a >> b;};
|
|
|
|
static uint16_t assign(GB_gameboy_t *gb, lvalue_t a, uint16_t b)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
|
|
|
write_lvalue(gb, a, b);
|
|
|
|
return read_lvalue(gb, a);
|
|
|
|
}
|
|
|
|
|
2016-07-01 10:12:04 +00:00
|
|
|
static uint16_t bool_and(uint16_t a, uint16_t b) {return a && b;};
|
|
|
|
static uint16_t bool_or(uint16_t a, uint16_t b) {return a || b;};
|
|
|
|
static uint16_t equals(uint16_t a, uint16_t b) {return a == b;};
|
2016-07-06 21:29:25 +00:00
|
|
|
static uint16_t different(uint16_t a, uint16_t b) {return a != b;};
|
2016-07-01 10:12:04 +00:00
|
|
|
static uint16_t lower(uint16_t a, uint16_t b) {return a < b;};
|
|
|
|
static uint16_t greater(uint16_t a, uint16_t b) {return a > b;};
|
|
|
|
static uint16_t lower_equals(uint16_t a, uint16_t b) {return a <= b;};
|
|
|
|
static uint16_t greater_equals(uint16_t a, uint16_t b) {return a >= b;};
|
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
static struct {
|
|
|
|
const char *string;
|
|
|
|
char priority;
|
2016-06-18 17:29:11 +00:00
|
|
|
uint16_t (*operator)(uint16_t, uint16_t);
|
|
|
|
uint16_t (*lvalue_operator)(GB_gameboy_t *, lvalue_t, uint16_t);
|
2016-03-30 20:07:55 +00:00
|
|
|
} operators[] =
|
|
|
|
{
|
|
|
|
// Yes. This is not C-like. But it makes much more sense.
|
|
|
|
// Deal with it.
|
|
|
|
{"+", 0, add},
|
|
|
|
{"-", 0, sub},
|
2016-07-01 10:12:04 +00:00
|
|
|
{"||", 0, bool_or},
|
2016-03-30 20:07:55 +00:00
|
|
|
{"|", 0, or},
|
|
|
|
{"*", 1, mul},
|
|
|
|
{"/", 1, _div},
|
|
|
|
{"%", 1, mod},
|
2016-07-01 10:12:04 +00:00
|
|
|
{"&&", 1, bool_and},
|
2016-03-30 20:07:55 +00:00
|
|
|
{"&", 1, and},
|
|
|
|
{"^", 1, xor},
|
|
|
|
{"<<", 2, shleft},
|
2016-07-01 10:12:04 +00:00
|
|
|
{"<=", 3, lower_equals},
|
|
|
|
{"<", 3, lower},
|
2016-03-30 20:07:55 +00:00
|
|
|
{">>", 2, shright},
|
2016-07-01 10:12:04 +00:00
|
|
|
{">=", 3, greater_equals},
|
|
|
|
{">", 3, greater},
|
|
|
|
{"==", 3, equals},
|
|
|
|
{"=", 4, NULL, assign},
|
2016-07-06 21:29:25 +00:00
|
|
|
{"!=", 3, different},
|
2016-03-30 20:07:55 +00:00
|
|
|
};
|
|
|
|
|
2016-07-06 21:29:25 +00:00
|
|
|
uint16_t debugger_evaluate(GB_gameboy_t *gb, const char *string,
|
|
|
|
unsigned int length, bool *error,
|
|
|
|
uint16_t *watchpoint_address, uint8_t *watchpoint_new_value);
|
2016-03-30 20:07:55 +00:00
|
|
|
|
2016-07-06 21:29:25 +00:00
|
|
|
static lvalue_t debugger_evaluate_lvalue(GB_gameboy_t *gb, const char *string,
|
|
|
|
unsigned int length, bool *error,
|
|
|
|
uint16_t *watchpoint_address, uint8_t *watchpoint_new_value)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
|
|
|
*error = false;
|
|
|
|
// Strip whitespace
|
|
|
|
while (length && (string[0] == ' ' || string[0] == '\n' || string[0] == '\r' || string[0] == '\t')) {
|
|
|
|
string++;
|
|
|
|
length--;
|
|
|
|
}
|
|
|
|
while (length && (string[length-1] == ' ' || string[length-1] == '\n' || string[length-1] == '\r' || string[length-1] == '\t')) {
|
|
|
|
length--;
|
|
|
|
}
|
|
|
|
if (length == 0)
|
|
|
|
{
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Expected expression.\n");
|
2016-03-30 20:07:55 +00:00
|
|
|
*error = true;
|
|
|
|
return (lvalue_t){0,};
|
|
|
|
}
|
|
|
|
if (string[0] == '(' && string[length - 1] == ')') {
|
|
|
|
// Attempt to strip parentheses
|
|
|
|
signed int depth = 0;
|
|
|
|
for (int i = 0; i < length; i++) {
|
|
|
|
if (string[i] == '(') depth++;
|
|
|
|
if (depth == 0) {
|
|
|
|
// First and last are not matching
|
|
|
|
depth = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (string[i] == ')') depth--;
|
|
|
|
}
|
2016-07-06 21:29:25 +00:00
|
|
|
if (depth == 0) return debugger_evaluate_lvalue(gb, string + 1, length - 2, error, watchpoint_address, watchpoint_new_value);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
else if (string[0] == '[' && string[length - 1] == ']') {
|
|
|
|
// Attempt to strip square parentheses (memory dereference)
|
|
|
|
signed int depth = 0;
|
|
|
|
for (int i = 0; i < length; i++) {
|
|
|
|
if (string[i] == '[') depth++;
|
|
|
|
if (depth == 0) {
|
|
|
|
// First and last are not matching
|
|
|
|
depth = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (string[i] == ']') depth--;
|
|
|
|
}
|
|
|
|
if (depth == 0) {
|
2016-07-06 21:29:25 +00:00
|
|
|
return (lvalue_t){LVALUE_MEMORY, .memory_address = debugger_evaluate(gb, string + 1, length - 2, error, watchpoint_address, watchpoint_new_value)};
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Registers
|
2016-07-12 20:30:18 +00:00
|
|
|
if (string[0] != '$' && (string[0] < '0' || string[0] > '9')) {
|
|
|
|
if (length == 1) {
|
|
|
|
switch (string[0]) {
|
2016-03-30 20:07:55 +00:00
|
|
|
case 'a': return (lvalue_t){LVALUE_REG_H, .register_address = &gb->registers[GB_REGISTER_AF]};
|
|
|
|
case 'f': return (lvalue_t){LVALUE_REG_L, .register_address = &gb->registers[GB_REGISTER_AF]};
|
|
|
|
case 'b': return (lvalue_t){LVALUE_REG_H, .register_address = &gb->registers[GB_REGISTER_BC]};
|
|
|
|
case 'c': return (lvalue_t){LVALUE_REG_L, .register_address = &gb->registers[GB_REGISTER_BC]};
|
|
|
|
case 'd': return (lvalue_t){LVALUE_REG_H, .register_address = &gb->registers[GB_REGISTER_DE]};
|
|
|
|
case 'e': return (lvalue_t){LVALUE_REG_L, .register_address = &gb->registers[GB_REGISTER_DE]};
|
|
|
|
case 'h': return (lvalue_t){LVALUE_REG_H, .register_address = &gb->registers[GB_REGISTER_HL]};
|
|
|
|
case 'l': return (lvalue_t){LVALUE_REG_L, .register_address = &gb->registers[GB_REGISTER_HL]};
|
|
|
|
}
|
|
|
|
}
|
2016-07-12 20:30:18 +00:00
|
|
|
else if (length == 2) {
|
|
|
|
switch (string[0]) {
|
|
|
|
case 'a': if (string[1] == 'f') return (lvalue_t){LVALUE_REG16, .register_address = &gb->registers[GB_REGISTER_AF]};
|
|
|
|
case 'b': if (string[1] == 'c') return (lvalue_t){LVALUE_REG16, .register_address = &gb->registers[GB_REGISTER_BC]};
|
|
|
|
case 'd': if (string[1] == 'e') return (lvalue_t){LVALUE_REG16, .register_address = &gb->registers[GB_REGISTER_DE]};
|
|
|
|
case 'h': if (string[1] == 'l') return (lvalue_t){LVALUE_REG16, .register_address = &gb->registers[GB_REGISTER_HL]};
|
|
|
|
case 's': if (string[1] == 'p') return (lvalue_t){LVALUE_REG16, .register_address = &gb->registers[GB_REGISTER_SP]};
|
|
|
|
case 'p': if (string[1] == 'c') return (lvalue_t){LVALUE_REG16, .register_address = &gb->pc};
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Unknown register: %.*s\n", length, string);
|
2016-03-30 20:07:55 +00:00
|
|
|
*error = true;
|
|
|
|
return (lvalue_t){0,};
|
|
|
|
}
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Expression is not an lvalue: %.*s\n", length, string);
|
2016-03-30 20:07:55 +00:00
|
|
|
*error = true;
|
|
|
|
return (lvalue_t){0,};
|
|
|
|
}
|
|
|
|
|
2016-07-06 21:29:25 +00:00
|
|
|
uint16_t debugger_evaluate(GB_gameboy_t *gb, const char *string,
|
|
|
|
unsigned int length, bool *error,
|
|
|
|
uint16_t *watchpoint_address, uint8_t *watchpoint_new_value)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
|
|
|
*error = false;
|
|
|
|
// Strip whitespace
|
|
|
|
while (length && (string[0] == ' ' || string[0] == '\n' || string[0] == '\r' || string[0] == '\t')) {
|
|
|
|
string++;
|
|
|
|
length--;
|
|
|
|
}
|
|
|
|
while (length && (string[length-1] == ' ' || string[length-1] == '\n' || string[length-1] == '\r' || string[length-1] == '\t')) {
|
|
|
|
length--;
|
|
|
|
}
|
|
|
|
if (length == 0)
|
|
|
|
{
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Expected expression.\n");
|
2016-03-30 20:07:55 +00:00
|
|
|
*error = true;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (string[0] == '(' && string[length - 1] == ')') {
|
|
|
|
// Attempt to strip parentheses
|
|
|
|
signed int depth = 0;
|
|
|
|
for (int i = 0; i < length; i++) {
|
|
|
|
if (string[i] == '(') depth++;
|
|
|
|
if (depth == 0) {
|
|
|
|
// First and last are not matching
|
|
|
|
depth = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (string[i] == ')') depth--;
|
|
|
|
}
|
2016-07-06 21:29:25 +00:00
|
|
|
if (depth == 0) return debugger_evaluate(gb, string + 1, length - 2, error, watchpoint_address, watchpoint_new_value);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
else if (string[0] == '[' && string[length - 1] == ']') {
|
|
|
|
// Attempt to strip square parentheses (memory dereference)
|
|
|
|
signed int depth = 0;
|
|
|
|
for (int i = 0; i < length; i++) {
|
|
|
|
if (string[i] == '[') depth++;
|
|
|
|
if (depth == 0) {
|
|
|
|
// First and last are not matching
|
|
|
|
depth = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (string[i] == ']') depth--;
|
|
|
|
}
|
2016-07-06 21:29:25 +00:00
|
|
|
if (depth == 0) return GB_read_memory(gb, debugger_evaluate(gb, string + 1, length - 2, error, watchpoint_address, watchpoint_new_value));
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
// Search for lowest priority operator
|
|
|
|
signed int depth = 0;
|
|
|
|
unsigned int operator_index = -1;
|
|
|
|
unsigned int operator_pos = 0;
|
|
|
|
for (int i = 0; i < length; i++) {
|
|
|
|
if (string[i] == '(') depth++;
|
|
|
|
else if (string[i] == ')') depth--;
|
|
|
|
else if (string[i] == '[') depth++;
|
|
|
|
else if (string[i] == ']') depth--;
|
|
|
|
else if (depth == 0) {
|
|
|
|
for (int j = 0; j < sizeof(operators) / sizeof(operators[0]); j++) {
|
|
|
|
if (strlen(operators[j].string) > length - i) continue; // Operator too big.
|
|
|
|
// Priority higher than what we already have.
|
|
|
|
if (operator_index != -1 && operators[operator_index].priority > operators[j].priority) continue;
|
2016-07-01 10:12:04 +00:00
|
|
|
unsigned long operator_length = strlen(operators[j].string);
|
|
|
|
if (memcmp(string + i, operators[j].string, operator_length) == 0) {
|
2016-03-30 20:07:55 +00:00
|
|
|
// Found an operator!
|
|
|
|
operator_pos = i;
|
|
|
|
operator_index = j;
|
2016-07-01 10:12:04 +00:00
|
|
|
/* for supporting = vs ==, etc*/
|
|
|
|
i += operator_length - 1;
|
|
|
|
break;
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (operator_index != -1) {
|
|
|
|
unsigned int right_start = (unsigned int)(operator_pos + strlen(operators[operator_index].string));
|
2016-07-06 21:29:25 +00:00
|
|
|
uint16_t right = debugger_evaluate(gb, string + right_start, length - right_start, error, watchpoint_address, watchpoint_new_value);
|
2016-03-30 20:07:55 +00:00
|
|
|
if (*error) return -1;
|
|
|
|
if (operators[operator_index].lvalue_operator) {
|
2016-07-06 21:29:25 +00:00
|
|
|
lvalue_t left = debugger_evaluate_lvalue(gb, string, operator_pos, error, watchpoint_address, watchpoint_new_value);
|
2016-03-30 20:07:55 +00:00
|
|
|
if (*error) return -1;
|
|
|
|
return operators[operator_index].lvalue_operator(gb, left, right);
|
|
|
|
}
|
2016-07-06 21:29:25 +00:00
|
|
|
uint16_t left = debugger_evaluate(gb, string, operator_pos, error, watchpoint_address, watchpoint_new_value);
|
2016-03-30 20:07:55 +00:00
|
|
|
if (*error) return -1;
|
|
|
|
return operators[operator_index].operator(left, right);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not an expression - must be a register or a literal
|
|
|
|
|
|
|
|
// Registers
|
2016-07-12 20:30:18 +00:00
|
|
|
if (string[0] != '$' && (string[0] < '0' || string[0] > '9')) {
|
|
|
|
if (length == 1) {
|
|
|
|
switch (string[0]) {
|
2016-03-30 20:07:55 +00:00
|
|
|
case 'a': return gb->registers[GB_REGISTER_AF] >> 8;
|
|
|
|
case 'f': return gb->registers[GB_REGISTER_AF] & 0xFF;
|
|
|
|
case 'b': return gb->registers[GB_REGISTER_BC] >> 8;
|
|
|
|
case 'c': return gb->registers[GB_REGISTER_BC] & 0xFF;
|
|
|
|
case 'd': return gb->registers[GB_REGISTER_DE] >> 8;
|
|
|
|
case 'e': return gb->registers[GB_REGISTER_DE] & 0xFF;
|
|
|
|
case 'h': return gb->registers[GB_REGISTER_HL] >> 8;
|
|
|
|
case 'l': return gb->registers[GB_REGISTER_HL] & 0xFF;
|
|
|
|
}
|
|
|
|
}
|
2016-07-12 20:30:18 +00:00
|
|
|
else if (length == 2) {
|
|
|
|
switch (string[0]) {
|
|
|
|
case 'a': if (string[1] == 'f') return gb->registers[GB_REGISTER_AF];
|
|
|
|
case 'b': if (string[1] == 'c') return gb->registers[GB_REGISTER_BC];
|
|
|
|
case 'd': if (string[1] == 'e') return gb->registers[GB_REGISTER_DE];
|
|
|
|
case 'h': if (string[1] == 'l') return gb->registers[GB_REGISTER_HL];
|
|
|
|
case 's': if (string[1] == 'p') return gb->registers[GB_REGISTER_SP];
|
|
|
|
case 'p': if (string[1] == 'c') return gb->pc;
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
}
|
2016-07-12 20:30:18 +00:00
|
|
|
else if (length == 3) {
|
|
|
|
if (watchpoint_address && memcmp(string, "old", 3) == 0) {
|
2016-07-06 21:29:25 +00:00
|
|
|
return GB_read_memory(gb, *watchpoint_address);
|
|
|
|
}
|
|
|
|
|
2016-07-12 20:30:18 +00:00
|
|
|
if (watchpoint_new_value && memcmp(string, "new", 3) == 0) {
|
2016-07-06 21:29:25 +00:00
|
|
|
return *watchpoint_new_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* $new is identical to $old in read conditions */
|
2016-07-12 20:30:18 +00:00
|
|
|
if (watchpoint_address && memcmp(string, "new", 3) == 0) {
|
2016-07-06 21:29:25 +00:00
|
|
|
return GB_read_memory(gb, *watchpoint_address);
|
|
|
|
}
|
|
|
|
}
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Unknown register: %.*s\n", length, string);
|
2016-03-30 20:07:55 +00:00
|
|
|
*error = true;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *end;
|
2016-07-12 20:30:18 +00:00
|
|
|
int base = 10;
|
|
|
|
if (string[0] == '$') {
|
|
|
|
string++;
|
|
|
|
base = 16;
|
|
|
|
length--;
|
|
|
|
}
|
|
|
|
uint16_t literal = (uint16_t) (strtol(string, &end, base));
|
2016-03-30 20:07:55 +00:00
|
|
|
if (end != string + length) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Failed to parse: %.*s\n", length, string);
|
2016-03-30 20:07:55 +00:00
|
|
|
*error = true;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return literal;
|
|
|
|
}
|
|
|
|
|
2016-04-05 22:43:35 +00:00
|
|
|
typedef bool debugger_command_imp_t(GB_gameboy_t *gb, char *arguments);
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
const char *command;
|
2016-06-18 17:29:11 +00:00
|
|
|
uint8_t min_length;
|
2016-04-05 22:43:35 +00:00
|
|
|
debugger_command_imp_t *implementation;
|
|
|
|
const char *help_string; // Null if should not appear in help
|
|
|
|
} debugger_command_t;
|
|
|
|
|
|
|
|
static const char *lstrip(const char *str)
|
|
|
|
{
|
|
|
|
while (*str == ' ' || *str == '\t') {
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool cont(GB_gameboy_t *gb, char *arguments)
|
|
|
|
{
|
|
|
|
if (strlen(lstrip(arguments))) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Usage: continue\n");
|
2016-04-05 22:43:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
gb->debug_stopped = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool next(GB_gameboy_t *gb, char *arguments)
|
|
|
|
{
|
|
|
|
if (strlen(lstrip(arguments))) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Usage: next\n");
|
2016-04-05 22:43:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
gb->debug_stopped = false;
|
|
|
|
gb->debug_next_command = true;
|
|
|
|
gb->debug_call_depth = 0;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool step(GB_gameboy_t *gb, char *arguments)
|
|
|
|
{
|
|
|
|
if (strlen(lstrip(arguments))) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Usage: step\n");
|
2016-04-05 22:43:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool finish(GB_gameboy_t *gb, char *arguments)
|
|
|
|
{
|
|
|
|
if (strlen(lstrip(arguments))) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Usage: finish\n");
|
2016-04-05 22:43:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
gb->debug_stopped = false;
|
|
|
|
gb->debug_fin_command = true;
|
|
|
|
gb->debug_call_depth = 0;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-04-10 20:22:54 +00:00
|
|
|
static bool stack_leak_detection(GB_gameboy_t *gb, char *arguments)
|
|
|
|
{
|
|
|
|
if (strlen(lstrip(arguments))) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Usage: sld\n");
|
2016-04-10 20:22:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
gb->debug_stopped = false;
|
|
|
|
gb->stack_leak_detection = true;
|
|
|
|
gb->debug_call_depth = 0;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-04-05 22:43:35 +00:00
|
|
|
static bool registers(GB_gameboy_t *gb, char *arguments)
|
|
|
|
{
|
|
|
|
if (strlen(lstrip(arguments))) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Usage: registers\n");
|
2016-04-05 22:43:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "AF = $%04x\n", gb->registers[GB_REGISTER_AF]); /* AF can't really be an address */
|
|
|
|
GB_log(gb, "BC = %s\n", value_to_string(gb, gb->registers[GB_REGISTER_BC], false));
|
|
|
|
GB_log(gb, "DE = %s\n", value_to_string(gb, gb->registers[GB_REGISTER_DE], false));
|
|
|
|
GB_log(gb, "HL = %s\n", value_to_string(gb, gb->registers[GB_REGISTER_HL], false));
|
|
|
|
GB_log(gb, "SP = %s\n", value_to_string(gb, gb->registers[GB_REGISTER_SP], false));
|
|
|
|
GB_log(gb, "PC = %s\n", value_to_string(gb, gb->pc, false));
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "TIMA = %d/%u\n", gb->io_registers[GB_IO_TIMA], gb->tima_cycles);
|
|
|
|
GB_log(gb, "Display Controller: LY = %d/%u\n", gb->io_registers[GB_IO_LY], gb->display_cycles % 456);
|
2016-04-05 22:43:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-04-06 21:25:41 +00:00
|
|
|
/* Find the index of the closest breakpoint equal or greater to addr */
|
2016-06-18 17:29:11 +00:00
|
|
|
static uint16_t find_breakpoint(GB_gameboy_t *gb, uint16_t addr)
|
2016-04-06 21:25:41 +00:00
|
|
|
{
|
|
|
|
if (!gb->breakpoints) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int min = 0;
|
|
|
|
int max = gb->n_breakpoints;
|
|
|
|
while (min < max) {
|
2016-06-18 17:29:11 +00:00
|
|
|
uint16_t pivot = (min + max) / 2;
|
2016-07-01 15:24:21 +00:00
|
|
|
if (gb->breakpoints[pivot].addr == addr) return pivot;
|
|
|
|
if (gb->breakpoints[pivot].addr > addr) {
|
2016-04-06 21:25:41 +00:00
|
|
|
max = pivot - 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
min = pivot + 1;
|
|
|
|
}
|
|
|
|
}
|
2016-06-18 17:29:11 +00:00
|
|
|
return (uint16_t) min;
|
2016-04-06 21:25:41 +00:00
|
|
|
}
|
|
|
|
|
2016-04-05 22:43:35 +00:00
|
|
|
static bool breakpoint(GB_gameboy_t *gb, char *arguments)
|
|
|
|
{
|
|
|
|
if (strlen(lstrip(arguments)) == 0) {
|
2016-07-01 15:24:21 +00:00
|
|
|
GB_log(gb, "Usage: breakpoint <expression>[ if <condition expression>]\n");
|
2016-04-05 22:43:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-07-01 15:24:21 +00:00
|
|
|
char *condition = NULL;
|
|
|
|
if ((condition = strstr(arguments, " if "))) {
|
|
|
|
*condition = 0;
|
|
|
|
condition += strlen(" if ");
|
|
|
|
/* Verify condition is sane (Todo: This might have side effects!) */
|
|
|
|
bool error;
|
2016-07-06 21:29:25 +00:00
|
|
|
debugger_evaluate(gb, condition, (unsigned int)strlen(condition), &error, NULL, NULL);
|
2016-07-01 15:24:21 +00:00
|
|
|
if (error) return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-04-05 22:43:35 +00:00
|
|
|
bool error;
|
2016-07-06 21:29:25 +00:00
|
|
|
uint16_t result = debugger_evaluate(gb, arguments, (unsigned int)strlen(arguments), &error, NULL, NULL);
|
2016-04-06 21:25:41 +00:00
|
|
|
|
|
|
|
if (error) return true;
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
uint16_t index = find_breakpoint(gb, result);
|
2016-07-01 15:24:21 +00:00
|
|
|
if (index < gb->n_breakpoints && gb->breakpoints[index].addr == result) {
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "Breakpoint already set at %s\n", value_to_string(gb, result, true));
|
2016-07-01 15:24:21 +00:00
|
|
|
if (!gb->breakpoints[index].condition && condition) {
|
|
|
|
GB_log(gb, "Added condition to breakpoint\n");
|
|
|
|
gb->breakpoints[index].condition = strdup(condition);
|
|
|
|
}
|
|
|
|
else if (gb->breakpoints[index].condition && condition) {
|
|
|
|
GB_log(gb, "Replaced breakpoint condition\n");
|
|
|
|
free(gb->breakpoints[index].condition);
|
|
|
|
gb->breakpoints[index].condition = strdup(condition);
|
|
|
|
}
|
|
|
|
else if (gb->breakpoints[index].condition && !condition) {
|
|
|
|
GB_log(gb, "Removed breakpoint condition\n");
|
|
|
|
free(gb->breakpoints[index].condition);
|
|
|
|
gb->breakpoints[index].condition = NULL;
|
|
|
|
}
|
2016-04-06 21:25:41 +00:00
|
|
|
return true;
|
2016-04-05 22:43:35 +00:00
|
|
|
}
|
2016-04-06 21:25:41 +00:00
|
|
|
|
2016-06-10 15:03:12 +00:00
|
|
|
gb->breakpoints = realloc(gb->breakpoints, (gb->n_breakpoints + 1) * sizeof(gb->breakpoints[0]));
|
2016-04-06 21:25:41 +00:00
|
|
|
memmove(&gb->breakpoints[index + 1], &gb->breakpoints[index], (gb->n_breakpoints - index) * sizeof(gb->breakpoints[0]));
|
2016-07-01 15:24:21 +00:00
|
|
|
gb->breakpoints[index].addr = result;
|
|
|
|
if (condition) {
|
|
|
|
gb->breakpoints[index].condition = strdup(condition);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
gb->breakpoints[index].condition = NULL;
|
|
|
|
}
|
2016-04-06 21:25:41 +00:00
|
|
|
gb->n_breakpoints++;
|
|
|
|
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "Breakpoint set at %s\n", value_to_string(gb, result, true));
|
2016-04-05 22:43:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-04-06 21:25:41 +00:00
|
|
|
static bool delete(GB_gameboy_t *gb, char *arguments)
|
|
|
|
{
|
|
|
|
if (strlen(lstrip(arguments)) == 0) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Delete all breakpoints? ");
|
2016-04-06 21:25:41 +00:00
|
|
|
char *answer = gb->input_callback(gb);
|
|
|
|
if (answer[0] == 'Y' || answer[0] == 'y') {
|
2016-07-01 15:24:21 +00:00
|
|
|
for (unsigned i = gb->n_breakpoints; i--;) {
|
|
|
|
if (gb->breakpoints[i].condition) {
|
|
|
|
free(gb->breakpoints[i].condition);
|
|
|
|
}
|
|
|
|
}
|
2016-04-06 21:25:41 +00:00
|
|
|
free(gb->breakpoints);
|
|
|
|
gb->breakpoints = NULL;
|
|
|
|
gb->n_breakpoints = 0;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool error;
|
2016-07-06 21:29:25 +00:00
|
|
|
uint16_t result = debugger_evaluate(gb, arguments, (unsigned int)strlen(arguments), &error, NULL, NULL);
|
2016-04-06 21:25:41 +00:00
|
|
|
|
|
|
|
if (error) return true;
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
uint16_t index = find_breakpoint(gb, result);
|
2016-07-01 15:24:21 +00:00
|
|
|
if (index >= gb->n_breakpoints || gb->breakpoints[index].addr != result) {
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "No breakpoint set at %s\n", value_to_string(gb, result, true));
|
2016-04-06 21:25:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-07-01 15:24:21 +00:00
|
|
|
if (gb->breakpoints[index].condition) {
|
|
|
|
free(gb->breakpoints[index].condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
memmove(&gb->breakpoints[index], &gb->breakpoints[index + 1], (gb->n_breakpoints - index - 1) * sizeof(gb->breakpoints[0]));
|
2016-04-06 21:25:41 +00:00
|
|
|
gb->n_breakpoints--;
|
2016-06-10 15:03:12 +00:00
|
|
|
gb->breakpoints = realloc(gb->breakpoints, gb->n_breakpoints * sizeof(gb->breakpoints[0]));
|
2016-04-06 21:25:41 +00:00
|
|
|
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "Breakpoint removed from %s\n", value_to_string(gb, result, true));
|
2016-04-06 21:25:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-07-06 21:29:25 +00:00
|
|
|
/* Find the index of the closest watchpoint equal or greater to addr */
|
|
|
|
static uint16_t find_watchpoint(GB_gameboy_t *gb, uint16_t addr)
|
|
|
|
{
|
|
|
|
if (!gb->watchpoints) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int min = 0;
|
|
|
|
int max = gb->n_watchpoints;
|
|
|
|
while (min < max) {
|
|
|
|
uint16_t pivot = (min + max) / 2;
|
|
|
|
if (gb->watchpoints[pivot].addr == addr) return pivot;
|
|
|
|
if (gb->watchpoints[pivot].addr > addr) {
|
|
|
|
max = pivot - 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
min = pivot + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (uint16_t) min;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool watch(GB_gameboy_t *gb, char *arguments)
|
|
|
|
{
|
|
|
|
if (strlen(lstrip(arguments)) == 0) {
|
|
|
|
print_usage:
|
|
|
|
GB_log(gb, "Usage: watch (r|w|rw) <expression>[ if <condition expression>]\n");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t flags = 0;
|
|
|
|
while (*arguments != ' ' && *arguments) {
|
|
|
|
switch (*arguments) {
|
|
|
|
case 'r':
|
|
|
|
flags |= GB_WATCHPOINT_R;
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
flags |= GB_WATCHPOINT_W;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto print_usage;
|
|
|
|
}
|
|
|
|
arguments++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!flags) {
|
|
|
|
goto print_usage;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *condition = NULL;
|
|
|
|
if ((condition = strstr(arguments, " if "))) {
|
|
|
|
*condition = 0;
|
|
|
|
condition += strlen(" if ");
|
|
|
|
/* Verify condition is sane (Todo: This might have side effects!) */
|
|
|
|
bool error;
|
|
|
|
/* To make $new and $old legal */
|
|
|
|
uint16_t dummy = 0;
|
|
|
|
uint8_t dummy2 = 0;
|
|
|
|
debugger_evaluate(gb, condition, (unsigned int)strlen(condition), &error, &dummy, &dummy2);
|
|
|
|
if (error) return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool error;
|
|
|
|
uint16_t result = debugger_evaluate(gb, arguments, (unsigned int)strlen(arguments), &error, NULL, NULL);
|
|
|
|
|
|
|
|
if (error) return true;
|
|
|
|
|
|
|
|
uint16_t index = find_watchpoint(gb, result);
|
|
|
|
if (index < gb->n_watchpoints && gb->watchpoints[index].addr == result) {
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "Watchpoint already set at %s\n", value_to_string(gb, result, true));
|
2016-07-06 21:29:25 +00:00
|
|
|
if (!gb->watchpoints[index].flags != flags) {
|
|
|
|
GB_log(gb, "Modified watchpoint type\n");
|
|
|
|
gb->watchpoints[index].flags = flags;
|
|
|
|
}
|
|
|
|
if (!gb->watchpoints[index].condition && condition) {
|
|
|
|
GB_log(gb, "Added condition to watchpoint\n");
|
|
|
|
gb->watchpoints[index].condition = strdup(condition);
|
|
|
|
}
|
|
|
|
else if (gb->watchpoints[index].condition && condition) {
|
|
|
|
GB_log(gb, "Replaced watchpoint condition\n");
|
|
|
|
free(gb->watchpoints[index].condition);
|
|
|
|
gb->watchpoints[index].condition = strdup(condition);
|
|
|
|
}
|
|
|
|
else if (gb->watchpoints[index].condition && !condition) {
|
|
|
|
GB_log(gb, "Removed watchpoint condition\n");
|
|
|
|
free(gb->watchpoints[index].condition);
|
|
|
|
gb->watchpoints[index].condition = NULL;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
gb->watchpoints = realloc(gb->watchpoints, (gb->n_watchpoints + 1) * sizeof(gb->watchpoints[0]));
|
|
|
|
memmove(&gb->watchpoints[index + 1], &gb->watchpoints[index], (gb->n_watchpoints - index) * sizeof(gb->watchpoints[0]));
|
|
|
|
gb->watchpoints[index].addr = result;
|
|
|
|
gb->watchpoints[index].flags = flags;
|
|
|
|
if (condition) {
|
|
|
|
gb->watchpoints[index].condition = strdup(condition);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
gb->watchpoints[index].condition = NULL;
|
|
|
|
}
|
|
|
|
gb->n_watchpoints++;
|
|
|
|
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "Watchpoint set at %s\n", value_to_string(gb, result, true));
|
2016-07-06 21:29:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool unwatch(GB_gameboy_t *gb, char *arguments)
|
|
|
|
{
|
|
|
|
if (strlen(lstrip(arguments)) == 0) {
|
|
|
|
GB_log(gb, "Delete all watchpoints? ");
|
|
|
|
char *answer = gb->input_callback(gb);
|
|
|
|
if (answer[0] == 'Y' || answer[0] == 'y') {
|
|
|
|
for (unsigned i = gb->n_watchpoints; i--;) {
|
|
|
|
if (gb->watchpoints[i].condition) {
|
|
|
|
free(gb->watchpoints[i].condition);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(gb->watchpoints);
|
|
|
|
gb->watchpoints = NULL;
|
|
|
|
gb->n_watchpoints = 0;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool error;
|
|
|
|
uint16_t result = debugger_evaluate(gb, arguments, (unsigned int)strlen(arguments), &error, NULL, NULL);
|
|
|
|
|
|
|
|
if (error) return true;
|
|
|
|
|
|
|
|
uint16_t index = find_watchpoint(gb, result);
|
|
|
|
if (index >= gb->n_watchpoints || gb->watchpoints[index].addr != result) {
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "No watchpoint set at %s\n", value_to_string(gb, result, true));
|
2016-07-06 21:29:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gb->watchpoints[index].condition) {
|
|
|
|
free(gb->watchpoints[index].condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
memmove(&gb->watchpoints[index], &gb->watchpoints[index + 1], (gb->n_watchpoints - index - 1) * sizeof(gb->watchpoints[0]));
|
|
|
|
gb->n_watchpoints--;
|
|
|
|
gb->watchpoints = realloc(gb->watchpoints, gb->n_watchpoints* sizeof(gb->watchpoints[0]));
|
|
|
|
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "Watchpoint removed from %s\n", value_to_string(gb, result, true));
|
2016-07-06 21:29:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-04-06 21:25:41 +00:00
|
|
|
static bool list(GB_gameboy_t *gb, char *arguments)
|
|
|
|
{
|
|
|
|
if (strlen(lstrip(arguments))) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Usage: list\n");
|
2016-04-06 21:25:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gb->n_breakpoints == 0) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "No breakpoints set.\n");
|
2016-04-06 21:25:41 +00:00
|
|
|
}
|
2016-07-06 21:29:25 +00:00
|
|
|
else {
|
|
|
|
GB_log(gb, "%d breakpoint(s) set:\n", gb->n_breakpoints);
|
|
|
|
for (uint16_t i = 0; i < gb->n_breakpoints; i++) {
|
|
|
|
if (gb->breakpoints[i].condition) {
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, " %d. %s (Condition: %s)\n", i + 1,
|
|
|
|
value_to_string(gb, gb->breakpoints[i].addr, true),
|
|
|
|
gb->breakpoints[i].condition);
|
2016-07-06 21:29:25 +00:00
|
|
|
}
|
|
|
|
else {
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, " %d. %s\n", i + 1, value_to_string(gb, gb->breakpoints[i].addr, true));
|
2016-07-06 21:29:25 +00:00
|
|
|
}
|
2016-07-01 15:24:21 +00:00
|
|
|
}
|
2016-07-06 21:29:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (gb->n_watchpoints == 0) {
|
|
|
|
GB_log(gb, "No watchpoints set.\n");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
GB_log(gb, "%d watchpoint(s) set:\n", gb->n_watchpoints);
|
|
|
|
for (uint16_t i = 0; i < gb->n_watchpoints; i++) {
|
|
|
|
if (gb->watchpoints[i].condition) {
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, " %d. %s (%c%c, Condition: %s)\n", i + 1, value_to_string(gb, gb->watchpoints[i].addr, true),
|
|
|
|
(gb->watchpoints[i].flags & GB_WATCHPOINT_R)? 'r' : '-',
|
|
|
|
(gb->watchpoints[i].flags & GB_WATCHPOINT_W)? 'w' : '-',
|
|
|
|
gb->watchpoints[i].condition);
|
2016-07-06 21:29:25 +00:00
|
|
|
}
|
|
|
|
else {
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, " %d. %s (%c%c)\n", i + 1, value_to_string(gb, gb->watchpoints[i].addr, true),
|
|
|
|
(gb->watchpoints[i].flags & GB_WATCHPOINT_R)? 'r' : '-',
|
|
|
|
(gb->watchpoints[i].flags & GB_WATCHPOINT_W)? 'w' : '-');
|
2016-07-06 21:29:25 +00:00
|
|
|
}
|
2016-07-01 15:24:21 +00:00
|
|
|
}
|
2016-04-06 21:25:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
static bool should_break(GB_gameboy_t *gb, uint16_t addr)
|
2016-04-06 21:25:41 +00:00
|
|
|
{
|
2016-06-18 17:29:11 +00:00
|
|
|
uint16_t index = find_breakpoint(gb, addr);
|
2016-07-01 15:24:21 +00:00
|
|
|
if (index < gb->n_breakpoints && gb->breakpoints[index].addr == addr) {
|
|
|
|
if (!gb->breakpoints[index].condition) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
bool error;
|
|
|
|
bool condition = debugger_evaluate(gb, gb->breakpoints[index].condition,
|
2016-07-06 21:29:25 +00:00
|
|
|
(unsigned int)strlen(gb->breakpoints[index].condition), &error, NULL, NULL);
|
2016-07-01 15:24:21 +00:00
|
|
|
if (error) {
|
|
|
|
/* Should never happen */
|
|
|
|
GB_log(gb, "An internal error has occured\n");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return condition;
|
2016-04-06 21:25:41 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-04-05 22:43:35 +00:00
|
|
|
static bool print(GB_gameboy_t *gb, char *arguments)
|
|
|
|
{
|
|
|
|
if (strlen(lstrip(arguments)) == 0) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Usage: print <expression>\n");
|
2016-04-05 22:43:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool error;
|
2016-07-06 21:29:25 +00:00
|
|
|
uint16_t result = debugger_evaluate(gb, arguments, (unsigned int)strlen(arguments), &error, NULL, NULL);
|
2016-04-05 22:43:35 +00:00
|
|
|
if (!error) {
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "=%s\n", value_to_string(gb, result, false));
|
2016-04-05 22:43:35 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool examine(GB_gameboy_t *gb, char *arguments)
|
|
|
|
{
|
|
|
|
if (strlen(lstrip(arguments)) == 0) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Usage: examine <expression>\n");
|
2016-04-05 22:43:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool error;
|
2016-07-06 21:29:25 +00:00
|
|
|
uint16_t addr = debugger_evaluate(gb, arguments, (unsigned int)strlen(arguments), &error, NULL, NULL);
|
2016-04-05 22:43:35 +00:00
|
|
|
if (!error) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "%4x: ", addr);
|
2016-04-05 22:43:35 +00:00
|
|
|
for (int i = 0; i < 16; i++) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "%02x ", GB_read_memory(gb, addr + i));
|
2016-04-05 22:43:35 +00:00
|
|
|
}
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "\n");
|
2016-04-05 22:43:35 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-04-08 23:00:10 +00:00
|
|
|
static bool mbc(GB_gameboy_t *gb, char *arguments)
|
|
|
|
{
|
|
|
|
if (strlen(lstrip(arguments))) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Usage: mbc\n");
|
2016-04-08 23:00:10 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const GB_cartridge_t *cartridge = gb->cartridge_type;
|
|
|
|
|
|
|
|
if (cartridge->has_ram) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Cartrdige includes%s RAM: %x\n", cartridge->has_battery? " battery-backed": "", gb->mbc_ram_size);
|
2016-04-08 23:00:10 +00:00
|
|
|
}
|
|
|
|
else {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "No cartridge RAM\n");
|
2016-04-08 23:00:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cartridge->mbc_type) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "MBC%d\n", cartridge->mbc_type);
|
|
|
|
GB_log(gb, "Current mapped ROM bank: %x\n", gb->mbc_rom_bank);
|
2016-04-08 23:00:10 +00:00
|
|
|
if (cartridge->has_ram) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Current mapped RAM bank: %x\n", gb->mbc_ram_bank);
|
|
|
|
GB_log(gb, "RAM is curently %s\n", gb->mbc_ram_enable? "enabled" : "disabled");
|
2016-04-08 23:00:10 +00:00
|
|
|
}
|
2016-07-09 16:25:13 +00:00
|
|
|
if (cartridge->mbc_type == GB_MBC1 && gb->mbc1_wiring == GB_STANDARD_MBC1_WIRING) {
|
2016-07-09 14:34:55 +00:00
|
|
|
GB_log(gb, "MBC1 banking mode is %s\n", gb->mbc1.mode == 1 ? "RAM" : "ROM");
|
2016-04-08 23:00:10 +00:00
|
|
|
}
|
2016-07-09 16:25:13 +00:00
|
|
|
if (cartridge->mbc_type == GB_MBC1 && gb->mbc1_wiring == GB_MBC1M_WIRING) {
|
|
|
|
GB_log(gb, "MBC1 uses MBC1M wiring. \n");
|
|
|
|
GB_log(gb, "Current mapped ROM0 bank: %x\n", gb->mbc_rom0_bank);
|
|
|
|
GB_log(gb, "MBC1 multicart banking mode is %s\n", gb->mbc1.mode == 1 ? "enabled" : "disabled");
|
|
|
|
}
|
2016-04-08 23:00:10 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "No MBC\n");
|
2016-04-08 23:00:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cartridge->has_rumble) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Cart contains a rumble pak\n");
|
2016-04-08 23:00:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cartridge->has_rtc) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Cart contains a real time clock\n");
|
2016-04-08 23:00:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-04-05 22:43:35 +00:00
|
|
|
static bool help(GB_gameboy_t *gb, char *arguments);
|
|
|
|
static const debugger_command_t commands[] = {
|
|
|
|
{"continue", 1, cont, "Continue running until next stop"},
|
|
|
|
{"next", 1, next, "Run the next instruction, skipping over function calls"},
|
|
|
|
{"step", 1, step, "Run the next instruction, stepping into function calls"},
|
|
|
|
{"finish", 1, finish, "Run until the current function returns"},
|
2016-04-10 20:22:54 +00:00
|
|
|
{"sld", 3, stack_leak_detection, "Run until the current function returns, or a stack leak is detected (Experimental)"},
|
2016-04-05 22:43:35 +00:00
|
|
|
{"registers", 1, registers, "Print values of processor registers and other important registers"},
|
2016-04-08 23:00:10 +00:00
|
|
|
{"cartridge", 2, mbc, "Displays information about the MBC and cartridge"},
|
|
|
|
{"mbc", 3, mbc, NULL},
|
2016-07-01 15:24:21 +00:00
|
|
|
{"breakpoint", 1, breakpoint, "Add a new breakpoint at the specified address/expression. Can also modify the condition of existing breakpoints."},
|
2016-04-06 21:25:41 +00:00
|
|
|
{"delete", 2, delete, "Delete a breakpoint by its address, or all breakpoints"},
|
2016-07-06 21:29:25 +00:00
|
|
|
{"watch", 1, watch, "Add a new watchpoint at the specified address/expression. Can also modify the condition and type of existing watchpoints."},
|
|
|
|
{"unwatch", 3, unwatch, "Delete a watchpoint by its address, or all watchpoints"},
|
|
|
|
{"list", 1, list, "List all set breakpoints and watchpoints"},
|
2016-04-05 22:43:35 +00:00
|
|
|
{"print", 1, print, "Evaluate and print an expression"},
|
|
|
|
{"eval", 2, print, NULL},
|
|
|
|
{"examine", 2, examine, "Examine values at address"},
|
|
|
|
{"x", 1, examine, NULL},
|
|
|
|
{"help", 1, help, "List available commands"},
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool help(GB_gameboy_t *gb, char *arguments)
|
|
|
|
{
|
|
|
|
/* Todo: command specific help */
|
|
|
|
const debugger_command_t *command = commands;
|
|
|
|
for (size_t i = sizeof(commands) / sizeof(*command); i--; command++) {
|
|
|
|
if (command->help_string) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_attributed_log(gb, GB_LOG_BOLD, "%s", command->command);
|
|
|
|
GB_log(gb, ": %s\n", command->help_string);
|
2016-04-05 22:43:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const debugger_command_t *find_command(const char *string)
|
|
|
|
{
|
|
|
|
const debugger_command_t *command = commands;
|
|
|
|
size_t length = strlen(string);
|
|
|
|
for (size_t i = sizeof(commands) / sizeof(*command); i--; command++) {
|
|
|
|
if (command->min_length > length) continue;
|
|
|
|
if (memcmp(command->command, string, length) == 0) { /* Is a substring? */
|
|
|
|
return command;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
void GB_debugger_call_hook(GB_gameboy_t *gb)
|
2016-04-10 19:24:53 +00:00
|
|
|
{
|
|
|
|
/* Called just after the CPU calls a function/enters an interrupt/etc... */
|
2016-04-10 20:22:54 +00:00
|
|
|
|
|
|
|
if (gb->stack_leak_detection) {
|
|
|
|
if (gb->debug_call_depth >= sizeof(gb->sp_for_call_depth) / sizeof(gb->sp_for_call_depth[0])) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Potential stack overflow detected (Functions nest too much). \n");
|
2016-04-10 20:22:54 +00:00
|
|
|
gb->debug_stopped = true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
gb->sp_for_call_depth[gb->debug_call_depth] = gb->registers[GB_REGISTER_SP];
|
|
|
|
gb->addr_for_call_depth[gb->debug_call_depth] = gb->pc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-10 19:24:53 +00:00
|
|
|
gb->debug_call_depth++;
|
|
|
|
}
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
void GB_debugger_ret_hook(GB_gameboy_t *gb)
|
2016-04-10 19:24:53 +00:00
|
|
|
{
|
|
|
|
/* Called just before the CPU runs ret/reti */
|
2016-04-10 20:22:54 +00:00
|
|
|
|
2016-04-10 19:24:53 +00:00
|
|
|
gb->debug_call_depth--;
|
2016-04-10 20:22:54 +00:00
|
|
|
|
|
|
|
if (gb->stack_leak_detection) {
|
|
|
|
if (gb->debug_call_depth < 0) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "Function finished without a stack leak.\n");
|
2016-04-10 20:22:54 +00:00
|
|
|
gb->debug_stopped = true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (gb->registers[GB_REGISTER_SP] != gb->sp_for_call_depth[gb->debug_call_depth]) {
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "Stack leak detected for function %s!\n", value_to_string(gb, gb->addr_for_call_depth[gb->debug_call_depth], true));
|
2016-07-12 20:30:18 +00:00
|
|
|
GB_log(gb, "SP is $%04x, should be $%04x.\n", gb->registers[GB_REGISTER_SP],
|
2016-04-10 20:22:54 +00:00
|
|
|
gb->sp_for_call_depth[gb->debug_call_depth]);
|
|
|
|
gb->debug_stopped = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-10 19:24:53 +00:00
|
|
|
}
|
|
|
|
|
2016-07-06 21:29:25 +00:00
|
|
|
void GB_debugger_test_write_watchpoint(GB_gameboy_t *gb, uint16_t addr, uint8_t value)
|
|
|
|
{
|
2016-07-09 11:37:11 +00:00
|
|
|
uint16_t index = find_watchpoint(gb, addr);
|
2016-07-06 21:29:25 +00:00
|
|
|
if (index < gb->n_watchpoints && gb->watchpoints[index].addr == addr) {
|
|
|
|
if (!(gb->watchpoints[index].flags & GB_WATCHPOINT_W)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!gb->watchpoints[index].condition) {
|
|
|
|
gb->debug_stopped = true;
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "Watchpoint: [%s] = $%02x\n", value_to_string(gb, addr, true), value);
|
2016-07-06 21:29:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
bool error;
|
|
|
|
bool condition = debugger_evaluate(gb, gb->watchpoints[index].condition,
|
|
|
|
(unsigned int)strlen(gb->watchpoints[index].condition), &error, &addr, &value);
|
|
|
|
if (error) {
|
|
|
|
/* Should never happen */
|
|
|
|
GB_log(gb, "An internal error has occured\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (condition) {
|
|
|
|
gb->debug_stopped = true;
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "Watchpoint: [%s] = $%02x\n", value_to_string(gb, addr, true), value);
|
2016-07-06 21:29:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GB_debugger_test_read_watchpoint(GB_gameboy_t *gb, uint16_t addr)
|
|
|
|
{
|
|
|
|
uint16_t index = find_breakpoint(gb, addr);
|
|
|
|
if (index < gb->n_watchpoints && gb->watchpoints[index].addr == addr) {
|
|
|
|
if (!(gb->watchpoints[index].flags & GB_WATCHPOINT_R)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!gb->watchpoints[index].condition) {
|
|
|
|
gb->debug_stopped = true;
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "Watchpoint: [%s]\n", value_to_string(gb, addr, true));
|
2016-07-06 21:29:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
bool error;
|
|
|
|
bool condition = debugger_evaluate(gb, gb->watchpoints[index].condition,
|
|
|
|
(unsigned int)strlen(gb->watchpoints[index].condition), &error, &addr, NULL);
|
|
|
|
if (error) {
|
|
|
|
/* Should never happen */
|
|
|
|
GB_log(gb, "An internal error has occured\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (condition) {
|
|
|
|
gb->debug_stopped = true;
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "Watchpoint: [%s]\n", value_to_string(gb, addr, true));
|
2016-07-06 21:29:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
void GB_debugger_run(GB_gameboy_t *gb)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
|
|
|
char *input = NULL;
|
2016-04-02 16:06:43 +00:00
|
|
|
if (gb->debug_next_command && gb->debug_call_depth <= 0) {
|
2016-03-30 20:07:55 +00:00
|
|
|
gb->debug_stopped = true;
|
|
|
|
}
|
|
|
|
if (gb->debug_fin_command && gb->debug_call_depth == -1) {
|
|
|
|
gb->debug_stopped = true;
|
|
|
|
}
|
|
|
|
if (gb->debug_stopped) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_cpu_disassemble(gb, gb->pc, 5);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
next_command:
|
|
|
|
if (input) {
|
|
|
|
free(input);
|
|
|
|
}
|
2016-04-06 21:25:41 +00:00
|
|
|
if (!gb->debug_stopped && should_break(gb, gb->pc)) {
|
2016-03-30 20:07:55 +00:00
|
|
|
gb->debug_stopped = true;
|
2016-07-13 20:00:50 +00:00
|
|
|
GB_log(gb, "Breakpoint: PC = %s\n", value_to_string(gb, gb->pc, true));
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_cpu_disassemble(gb, gb->pc, 5);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
if (gb->debug_stopped) {
|
|
|
|
gb->debug_next_command = false;
|
|
|
|
gb->debug_fin_command = false;
|
2016-04-10 20:22:54 +00:00
|
|
|
gb->stack_leak_detection = false;
|
2016-03-30 20:07:55 +00:00
|
|
|
input = gb->input_callback(gb);
|
2016-04-07 22:53:21 +00:00
|
|
|
if (!input[0]) {
|
|
|
|
goto next_command;
|
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
|
2016-04-05 22:43:35 +00:00
|
|
|
char *command_string = input;
|
|
|
|
char *arguments = strchr(input, ' ');
|
|
|
|
if (arguments) {
|
|
|
|
/* Actually "split" the string. */
|
|
|
|
arguments[0] = 0;
|
|
|
|
arguments++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
arguments = "";
|
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
|
2016-04-05 22:43:35 +00:00
|
|
|
const debugger_command_t *command = find_command(command_string);
|
|
|
|
if (command) {
|
|
|
|
if (command->implementation(gb, arguments)) {
|
2016-03-30 20:07:55 +00:00
|
|
|
goto next_command;
|
2016-04-05 22:43:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_log(gb, "%s: no such command.\n", command_string);
|
2016-04-05 22:43:35 +00:00
|
|
|
goto next_command;
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
2016-04-05 22:43:35 +00:00
|
|
|
|
|
|
|
/* Split to arguments and command */
|
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
free(input);
|
|
|
|
}
|
2016-07-13 20:00:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GB_debugger_load_symbol_file(GB_gameboy_t *gb, const char *path)
|
|
|
|
{
|
|
|
|
FILE *f = fopen(path, "r");
|
|
|
|
if (!f) return;
|
|
|
|
|
|
|
|
char *line = NULL;
|
|
|
|
size_t size = 0;
|
|
|
|
size_t length = 0;
|
|
|
|
while ((length = getline(&line, &size, f)) != -1) {
|
|
|
|
for (unsigned i = 0; i < length; i++) {
|
|
|
|
if (line[i] == ';' || line[i] == '\n' || line[i] == '\r') {
|
|
|
|
line[i] = 0;
|
|
|
|
length = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (length == 0) continue;
|
|
|
|
|
|
|
|
unsigned int bank, address;
|
|
|
|
char symbol[length];
|
|
|
|
|
|
|
|
if (sscanf(line, "%02x:%04x %s", &bank, &address, symbol) == 3) {
|
|
|
|
if (!gb->bank_symbols[bank]) {
|
|
|
|
gb->bank_symbols[bank] = GB_map_alloc();
|
|
|
|
}
|
|
|
|
GB_map_add_symbol(gb->bank_symbols[bank], address, symbol);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(line);
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
const GB_bank_symbol_t *GB_debugger_find_symbol(GB_gameboy_t *gb, uint16_t addr)
|
|
|
|
{
|
|
|
|
unsigned char bank = 0;
|
|
|
|
if (addr < 0x4000) {
|
|
|
|
bank = gb->mbc_rom0_bank;
|
|
|
|
}
|
|
|
|
else if (addr < 0x8000) {
|
|
|
|
bank = gb->mbc_rom_bank;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (addr < 0xD000) {
|
|
|
|
bank = 0;
|
|
|
|
}
|
|
|
|
else if (addr < 0xE000) {
|
|
|
|
bank = gb->cgb_ram_bank;
|
|
|
|
}
|
|
|
|
|
|
|
|
const GB_bank_symbol_t *symbol = GB_map_find_symbol(gb->bank_symbols[bank], addr);
|
|
|
|
if (symbol) return symbol;
|
|
|
|
if (bank != 0) GB_map_find_symbol(gb->bank_symbols[0], addr); /* Maybe the symbol incorrectly uses bank 0? */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *GB_debugger_name_for_address(GB_gameboy_t *gb, uint16_t addr)
|
|
|
|
{
|
|
|
|
const GB_bank_symbol_t *symbol = GB_debugger_find_symbol(gb, addr);
|
|
|
|
if (symbol && symbol->addr == addr) return symbol->name;
|
|
|
|
return NULL;
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|