-
Notifications
You must be signed in to change notification settings - Fork 281
Expand file tree
/
Copy pathregister.rs
More file actions
169 lines (150 loc) · 3.99 KB
/
register.rs
File metadata and controls
169 lines (150 loc) · 3.99 KB
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
use binaryninja::architecture::{self, CoreArchitecture, ImplicitRegisterExtend, RegisterId};
use binaryninja::low_level_il::LowLevelILRegisterKind;
use std::borrow::Cow;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum Register {
Pc,
Sp,
Sr,
Cg,
R4,
R5,
R6,
R7,
R8,
R9,
R10,
R11,
R12,
R13,
R14,
R15,
}
impl TryFrom<RegisterId> for Register {
type Error = ();
fn try_from(id: RegisterId) -> Result<Self, Self::Error> {
// TODO: we should return separate errors if the id is between 0x7fff_ffff and 0xffff_ffff
// vs outside of that range. Temporary registers have have the high bit set which we
// shouldn't get, unless there is a bug in core. An id that isn't within that range but we
// don't handle is a bug in the architecture.
match id.0 {
0 => Ok(Self::Pc),
1 => Ok(Self::Sp),
2 => Ok(Self::Sr),
3 => Ok(Self::Cg),
4 => Ok(Self::R4),
5 => Ok(Self::R5),
6 => Ok(Self::R6),
7 => Ok(Self::R7),
8 => Ok(Self::R8),
9 => Ok(Self::R9),
10 => Ok(Self::R10),
11 => Ok(Self::R11),
12 => Ok(Self::R12),
13 => Ok(Self::R13),
14 => Ok(Self::R14),
15 => Ok(Self::R15),
_ => Err(()),
}
}
}
// TODO: Get rid of this and lift all u32 vals to a proper register id.
impl TryFrom<u32> for Register {
type Error = ();
fn try_from(id: u32) -> Result<Self, Self::Error> {
Register::try_from(RegisterId(id))
}
}
impl architecture::Register for Register {
type InfoType = Self;
fn name(&self) -> Cow<'_, str> {
match self {
Self::Pc => "pc".into(),
Self::Sp => "sp".into(),
Self::Sr => "sr".into(),
Self::Cg => "cg".into(),
Self::R4
| Self::R5
| Self::R6
| Self::R7
| Self::R8
| Self::R9
| Self::R10
| Self::R11
| Self::R12
| Self::R13
| Self::R14
| Self::R15 => format!("r{}", self.id()).into(),
}
}
fn info(&self) -> Self::InfoType {
*self
}
fn id(&self) -> RegisterId {
match self {
Self::Pc => 0,
Self::Sp => 1,
Self::Sr => 2,
Self::Cg => 3,
Self::R4 => 4,
Self::R5 => 5,
Self::R6 => 6,
Self::R7 => 7,
Self::R8 => 8,
Self::R9 => 9,
Self::R10 => 10,
Self::R11 => 11,
Self::R12 => 12,
Self::R13 => 13,
Self::R14 => 14,
Self::R15 => 15,
}
.into()
}
fn from_id(_arch: &CoreArchitecture, id: RegisterId) -> Option<Self> {
id.try_into().ok()
}
fn registers_all(_: &CoreArchitecture) -> Vec<Self> {
vec![
Register::Pc,
Register::Sp,
Register::Sr,
Register::Cg,
Register::R4,
Register::R5,
Register::R6,
Register::R7,
Register::R8,
Register::R9,
Register::R10,
Register::R11,
Register::R12,
Register::R13,
Register::R14,
Register::R15,
]
}
fn stack_pointer_reg(_: &CoreArchitecture) -> Option<Self> {
Some(Register::Sp)
}
}
impl architecture::RegisterInfo for Register {
type RegType = Self;
fn parent(&self) -> Option<Self::RegType> {
None
}
fn size(&self) -> usize {
2
}
fn offset(&self) -> usize {
0
}
fn implicit_extend(&self) -> ImplicitRegisterExtend {
ImplicitRegisterExtend::NoExtend
}
}
impl From<Register> for LowLevelILRegisterKind<Register> {
fn from(register: Register) -> Self {
LowLevelILRegisterKind::Arch(register)
}
}