This repository has been archived on 2024-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
rustboyadvance-ng/src/debugger/mod.rs

291 lines
9.2 KiB
Rust
Raw Normal View History

2019-06-25 19:31:45 +01:00
use rustyline::error::ReadlineError;
use rustyline::Editor;
use colored::*;
use super::arm7tdmi::cpu;
use super::sysbus::SysBus;
mod parser;
use parser::{parse_expr, Expr, Value};
2019-06-25 19:31:45 +01:00
2019-06-27 10:55:28 +01:00
mod command;
use command::Command;
2019-06-25 19:31:45 +01:00
#[derive(Debug, PartialEq)]
pub enum DebuggerError {
ParsingError(String),
CpuError(cpu::CpuError),
InvalidCommand(String),
InvalidArgument(String),
InvalidCommandFormat(String),
2019-06-25 19:31:45 +01:00
}
impl From<cpu::CpuError> for DebuggerError {
fn from(e: cpu::CpuError) -> DebuggerError {
DebuggerError::CpuError(e)
}
}
type DebuggerResult<T> = Result<T, DebuggerError>;
#[derive(Debug)]
pub struct Debugger {
2019-06-27 10:55:28 +01:00
pub cpu: cpu::Core,
pub sysbus: SysBus,
running: bool,
breakpoints: Vec<u32>,
2019-06-27 10:55:28 +01:00
pub previous_command: Option<Command>,
}
impl Debugger {
pub fn new(cpu: cpu::Core, sysbus: SysBus) -> Debugger {
Debugger {
cpu: cpu,
sysbus: sysbus,
breakpoints: Vec::new(),
running: false,
2019-06-27 10:55:28 +01:00
previous_command: None,
}
}
2019-06-27 10:55:28 +01:00
pub fn check_breakpoint(&self) -> Option<u32> {
let pc = self.cpu.get_reg(15);
for bp in &self.breakpoints {
if *bp == pc {
return Some(pc);
}
}
2019-06-27 10:55:28 +01:00
None
}
2019-06-27 10:55:28 +01:00
pub fn delete_breakpoint(&mut self, addr: u32) {
self.breakpoints.retain(|&a| a != addr);
}
fn decode_reg(&self, s: &str) -> DebuggerResult<usize> {
let reg_names = vec![
2019-06-27 10:55:28 +01:00
"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", "fp", "ip", "sp",
"lr", "pc",
];
match reg_names.into_iter().position(|r| r == s) {
Some(index) => Ok(index),
2019-06-27 10:55:28 +01:00
None => Err(DebuggerError::InvalidArgument(format!(
"{:?} is not a register name",
s
))),
}
}
fn val_reg(&self, arg: &Value) -> DebuggerResult<usize> {
match arg {
2019-06-27 10:55:28 +01:00
Value::Name(reg) => self.decode_reg(&reg),
v => Err(DebuggerError::InvalidArgument(format!(
"expected a number, got {:?}",
v
))),
}
}
fn val_number(&self, arg: &Value) -> DebuggerResult<u32> {
match arg {
Value::Num(n) => Ok(*n),
2019-06-27 10:55:28 +01:00
v => Err(DebuggerError::InvalidArgument(format!(
"expected a number, got {:?}",
v
))),
}
}
fn val_address(&self, arg: &Value) -> DebuggerResult<u32> {
match arg {
Value::Num(n) => Ok(*n),
Value::Name(reg) => {
let reg = self.decode_reg(&reg)?;
Ok(self.cpu.get_reg(reg))
}
2019-06-27 10:55:28 +01:00
v => Err(DebuggerError::InvalidArgument(format!(
"addr: expected a number or register, got {:?}",
v
))),
}
}
fn eval_command(&self, command: Value, args: Vec<Value>) -> DebuggerResult<Command> {
let command = match command {
Value::Name(command) => command,
_ => {
return Err(DebuggerError::InvalidCommand("expected a name".to_string()));
}
};
match command.as_ref() {
"i" | "info" => Ok(Command::Info),
"s" | "step" => Ok(Command::SingleStep),
"c" | "continue" => Ok(Command::Continue),
2019-06-27 10:55:28 +01:00
"x" | "hexdump" => {
let (addr, n) = match args.len() {
2 => {
let addr = self.val_address(&args[0])?;
let n = self.val_number(&args[1])?;
(addr, n as usize)
}
1 => {
let addr = self.val_address(&args[0])?;
(addr, 0x100)
}
0 => {
if let Some(Command::HexDump(addr, n)) = self.previous_command {
(addr + (4 * n as u32), 0x100)
} else {
(self.cpu.get_reg(15), 0x100)
}
}
_ => {
return Err(DebuggerError::InvalidCommandFormat(
"xxd [addr] [n]".to_string(),
))
}
};
Ok(Command::HexDump(addr, n))
}
"d" | "disass" => {
let (addr, n) = match args.len() {
2 => {
let addr = self.val_address(&args[0])?;
let n = self.val_number(&args[1])?;
(addr, n as usize)
}
1 => {
let addr = self.val_address(&args[0])?;
(addr, 10)
}
2019-06-26 22:41:54 +01:00
0 => {
if let Some(Command::Disass(addr, n)) = self.previous_command {
(addr + (4 * n as u32), 10)
} else {
(self.cpu.get_reg(15), 10)
}
}
_ => {
return Err(DebuggerError::InvalidCommandFormat(
"disass [addr] [n]".to_string(),
))
}
};
Ok(Command::Disass(addr, n))
}
"b" | "break" => {
if args.len() != 1 {
Err(DebuggerError::InvalidCommandFormat(
2019-06-27 10:55:28 +01:00
"break <addr>".to_string(),
))
} else {
2019-06-27 10:55:28 +01:00
let addr = self.val_address(&args[0])?;
Ok(Command::AddBreakpoint(addr))
}
}
2019-06-27 10:55:28 +01:00
"bd" | "breakdel" => match args.len() {
0 => Ok(Command::ClearBreakpoints),
1 => {
let addr = self.val_address(&args[0])?;
Ok(Command::DelBreakpoint(addr))
}
_ => Err(DebuggerError::InvalidCommandFormat(String::from(
"breakdel [addr]",
))),
},
"bl" => Ok(Command::ListBreakpoints),
"q" | "quit" => Ok(Command::Quit),
"r" | "reset" => Ok(Command::Reset),
_ => Err(DebuggerError::InvalidCommand(command)),
}
}
fn eval_assignment(&mut self, lvalue: Value, rvalue: Value) -> DebuggerResult<()> {
let lvalue = self.val_reg(&lvalue)?;
let rvalue = self.val_address(&rvalue)?;
self.cpu.set_reg(lvalue, rvalue);
Ok(())
}
fn eval_expr(&mut self, expr: Expr) {
match expr {
Expr::Command(c, a) => match self.eval_command(c, a) {
2019-06-26 22:41:54 +01:00
Ok(cmd) => {
self.previous_command = Some(cmd.clone());
cmd.run(self)
2019-06-27 10:55:28 +01:00
}
Err(DebuggerError::InvalidCommand(c)) => {
println!("{}: {:?}", "invalid command".red(), c)
}
Err(DebuggerError::InvalidArgument(m)) => {
println!("{}: {}", "invalid argument".red(), m)
}
Err(DebuggerError::InvalidCommandFormat(m)) => {
println!("help: {}", m.bright_yellow())
}
Err(e) => println!("{} {:?}", "failed to build command".red(), e),
},
Expr::Assignment(lvalue, rvalue) => match self.eval_assignment(lvalue, rvalue) {
2019-06-27 10:55:28 +01:00
Err(DebuggerError::InvalidArgument(m)) => {
println!("{}: {}", "assignment error".red(), m)
}
_ => (),
},
Expr::Empty => println!("Got empty expr"),
}
}
fn stop(&mut self) {
self.running = false;
}
2019-06-25 19:31:45 +01:00
pub fn repl(&mut self) -> DebuggerResult<()> {
2019-06-27 10:55:28 +01:00
println!("Welcome to rustboyadvance-NG debugger 😎!\n");
2019-06-25 19:31:45 +01:00
self.running = true;
let mut rl = Editor::<()>::new();
2019-06-26 22:22:41 +01:00
rl.load_history(".rustboyadvance_history");
2019-06-25 19:31:45 +01:00
while self.running {
let readline = rl.readline(&format!("({}) >> ", "rustboyadvance-dbg".cyan()));
match readline {
Ok(line) => {
if line.is_empty() {
2019-06-26 22:41:54 +01:00
self.previous_command = None;
continue;
2019-06-25 19:31:45 +01:00
}
2019-06-26 22:22:41 +01:00
rl.add_history_entry(line.as_str());
let expr = parse_expr(&line);
match expr {
Ok(expr) => self.eval_expr(expr),
Err(DebuggerError::ParsingError(msg)) => println!("Parsing error: {}", msg),
_ => (),
2019-06-25 19:31:45 +01:00
}
}
Err(ReadlineError::Interrupted) => {
println!("CTRL-C");
break;
}
Err(ReadlineError::Eof) => {
println!("CTRL-D");
break;
}
Err(err) => {
println!("Error: {:?}", err);
break;
}
}
}
2019-06-26 22:22:41 +01:00
rl.save_history(".rustboyadvance_history").unwrap();
2019-06-25 19:31:45 +01:00
Ok(())
}
}