-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.rs
147 lines (145 loc) · 5.19 KB
/
test.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
//! TestCriterion lines included in an assembly language program enable
//! automated testing of the program by the 6809 simulator
//!
//! Each result line contains an assertion of the form:
//! ```text
//! ;! <identifier-expression> = <value-expression>
//! ```
//! where:
//! ```text
//! identifier-expression evaluates to an ident
//! value-expression evaluates to a value
//! ident := register | address
//! value := constant | address
//! constant := '#' valexpr
//! address := valexpr
//! ```
//!
//! Bit-width rules when RHS is an address:
//!
//!| LHS | Result |
//!| --- | --- |
//!| 8-bit register | 8-bit comparison of register contents with address contents |
//!| 16-bit register | 16-bit comparison of register contents with address contents |
//!| address/label | 16-bit comparision of value at lhs address with value at rhs address |
//!
//! Examples:
//! - `;! a = #$55` Passes if register A contains the value 55 hex when the program is done
//! - `;! $100 = $101` Passes if address 100 (hex) contains the 8-bit value in address 0x101 when the program is done
//! - `;! d = %10000000` Passes if register D equals the 16-bit contents of address 0x80 when the program is done
//! - `;! label = other_label+12` Passes if 16-bit value at _label_ equals the 16-bit value at address _other_label+12_
//! - `;! label+1 = #10` Passes if byte at address _label+1_ equals value 10 (decimal)
//! - `;! label = a` Passes if byte at address _label_ equals value of register A
//! - `;! b = #'C` Passes if register B holds the value of ascii char 'C' (0x43)
//!
use pathid::get_filename_display_from_id;
use super::*;
#[derive(Debug)]
pub enum RegOrAddr {
Reg(registers::Name),
Addr(u16),
}
impl fmt::Display for RegOrAddr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
RegOrAddr::Reg(r) => write!(f, "{:?}", r),
RegOrAddr::Addr(a) => write!(f, "${:04X}", a),
}
}
}
#[derive(Debug)]
pub enum AddrOrVal {
Addr(u16),
Val(u8u16),
}
impl fmt::Display for AddrOrVal {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
AddrOrVal::Addr(a) => write!(f, "${:04X}", a),
AddrOrVal::Val(u) => write!(f, "#${}", u),
}
}
}
#[derive(Debug)]
pub struct TestCriterion {
pub src_file_id: usize,
pub src_line_num: usize,
pub lhs_src: String,
pub lhs: Option<RegOrAddr>, // A valid register, e.g. A, pc, or X (i.e. registers::Name::X)
// or a memory location, e.g. $0100 or a label
pub rhs_src: String,
pub rhs: Option<AddrOrVal>, // A constant, e.g. #$ff, or #0 or #%0110
// or an address, e.g. $0100 or a label
}
impl TestCriterion {
pub fn new(src_file_id: usize, src_line_num: usize, lhs_src: &str, rhs_src: &str) -> Self {
TestCriterion {
src_file_id,
src_line_num,
lhs_src: lhs_src.to_string(),
lhs: None,
rhs_src: rhs_src.to_string(),
rhs: None,
}
}
pub fn origin_string(&self) -> String {
format!(
"file: {}, line: {}",
get_filename_display_from_id(self.src_file_id),
self.src_line_num
)
}
pub fn eval(&self, core: &Core) -> Result<(), Error> {
let mut lhs_size = 1u16;
let lhs = self
.lhs
.as_ref()
.ok_or_else(|| general_err!("TestCriterion missing LHS"))?;
let rhs = self
.rhs
.as_ref()
.ok_or_else(|| general_err!("TestCriterion missing RHS"))?;
let lhs_val = match lhs {
RegOrAddr::Reg(reg) => {
lhs_size = registers::reg_size(*reg);
core.reg.get_register(*reg)
}
RegOrAddr::Addr(addr) => {
if let AddrOrVal::Val(val) = rhs {
lhs_size = val.size();
}
core._read_u8u16(memory::AccessType::Generic, *addr, lhs_size)?
}
};
let rhs_val = match rhs {
AddrOrVal::Addr(addr) => core._read_u8u16(memory::AccessType::Generic, *addr, lhs_size)?,
AddrOrVal::Val(val) => {
if lhs_size == 2 && val.size() == 1 {
u8u16::new(val.u8(), Some(0))
} else {
*val
}
}
};
if lhs_val == rhs_val {
Ok(())
} else {
Err(Error::new(
ErrorKind::Test,
Some(core.reg),
format!("{} ({}) != {} ({})", lhs, lhs_val, rhs, rhs_val).as_str(),
))
}
}
}
impl fmt::Display for TestCriterion {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let statement = format!("{} = {}", self.lhs_src, self.rhs_src,);
let actual = format!(
"({} = {})",
self.lhs.as_ref().map(|r| r.to_string()).unwrap_or("?".to_string()),
self.rhs.as_ref().map(|r| r.to_string()).unwrap_or("?".to_string())
);
write!(f, "{:20} {:16}", statement, actual,)
}
}