-
Notifications
You must be signed in to change notification settings - Fork 273
/
mips_load.ml
263 lines (239 loc) · 5.82 KB
/
mips_load.ml
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
open Mips.Std
(* LB rt, offset(base)
* Load Byte, MIPS32
* Page 243 *)
let lb cpu ops =
let rt = signed cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) byte;
]
(* LBE rt, offset(base)
* Load Byte EVA, MIPS32
* Page 245 *)
(* Not sure what to do here *)
let lbe cpu ops =
let rt = unsigned cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) byte;
]
(* LBU rt, offset(base)
* Load Byte Unsigned, MIPS32
* Page 246 *)
let lbu cpu ops =
let rt = unsigned cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) byte;
]
(* LBUE rt, offset(base)
* Load Byte Unsigned EVA, MIPS32
* Page 247 *)
let lbue cpu ops =
let rt = unsigned cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) byte;
]
(* LD rt, offset(base)
* Load Doubleword, MIPS64
* Page 248 *)
let ld cpu ops =
let rt = signed cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) doubleword;
]
(* TODO: LDL rt, offset(base) *)
(* TODO: LDR rt, offset(base) *)
(* LDPC rt, offset
* Load Doubleword PC-relative, MIPS64 Release 6
* Page 254 *)
let ldpc cpu ops =
let rt = signed cpu.reg ops.(0) in
let off = signed imm ops.(1) in
RTL.[
rt := cpu.load (cpu.cia + (off lsl unsigned const byte 3)) doubleword;
]
(* LH rt, offset(base)
* Load Halfword, MIPS32
* Page 258 *)
let lh cpu ops =
let rt = signed cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) halfword;
]
(* LHE rt, offset(base)
* Load Halfword EVA, MIPS32
* Page 259 *)
let lhe cpu ops =
let rt = signed cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) halfword;
]
(* LHU rt, offset(base)
* Load Halfword Unsigned, MIPS32
* Page 260 *)
let lhu cpu ops =
let rt = unsigned cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) halfword;
]
(* LHUE rt, offset(base)
* Load Halfword Unsigned EVA, MIPS32
* Page 261 *)
let lhue cpu ops =
let rt = unsigned cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) halfword;
]
(* LL rt, offset(base)
* Load Linked Word, MIPS32
* Page 262 *)
let ll cpu ops =
let rt = signed cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) word;
]
(* LLD rt, offset(base)
* Load Linked Doubleword, MIPS64
* Page 264 *)
let lld cpu ops =
let rt = signed cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) doubleword;
]
(* LLE rt, offset(base)
* Load Linked Word EVA, MIPS32
* Page 264 *)
let lle cpu ops =
let rt = signed cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) word;
]
(* LLX rt, offset(base)
* Load Linked Word Extended, MIPS32 Release 6
* Page 266 *)
let llx cpu ops =
let rt = signed cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) word;
]
(* LLDX rt, offset(base)
* Load Linked Doubleword Extended, MIPS64 Release 6
* Page 264 *)
let lldx cpu ops =
let rt = signed cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) doubleword;
]
(* LLXE rt, offset(base)
* Load Linked Word EVA Extended, MIPS32 Release 6
* Page 266 *)
let llxe cpu ops =
let rt = signed cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) word;
]
(* LW rt, offset(base)
* Load Word, MIPS32
* Page 281 *)
let lw cpu ops =
let rt = signed cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) word;
]
(* LWE rt, offset(base)
* Load Word EVA, MIPS32
* Page 285 *)
let lwe cpu ops =
let rt = signed cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) word;
]
(* TODO: LWL rt, offset(base) *)
(* TODO: LWLE rt, offset(base) *)
(* TODO: LWR rt, offset(base) *)
(* TODO: LWRE rt, offset(base) *)
(* LWPC rt, offset
* Load Word PC-relative, MIPS32 Release 6
* 293 *)
let lwpc cpu ops =
let rt = signed cpu.reg ops.(0) in
let off = signed imm ops.(1) in
RTL.[
rt := cpu.load (cpu.cia + (off lsl unsigned const byte 2)) word;
]
(* LWU rt, offset(base)
* Load Word Unsigned, MIPS64
* Page 301 *)
let lwu cpu ops =
let rt = unsigned cpu.reg ops.(0) in
let base = signed cpu.reg ops.(1) in
let off = signed imm ops.(2) in
RTL.[
rt := cpu.load (base + off) word;
]
(* LWUPC rt, offset(base)
* Load Word Unsigned PC-relative
* Page 302 *)
let lwupc cpu ops =
let rt = unsigned cpu.reg ops.(0) in
let off = signed imm ops.(1) in
RTL.[
rt := cpu.load (cpu.cia + (off lsl unsigned const byte 2)) word;
]
let () =
Bap_main.Extension.declare @@ fun _ctxt ->
"LB" >> lb;
"LBE" >> lbe;
"LBu" >> lbu;
"LBue" >> lbue;
"LD" >> ld;
"LDPC" >> ldpc;
"LH" >> lh;
"LHE" >> lhe;
"LHu" >> lhu;
"LHue" >> lhue;
"LL" >> ll;
"LLD" >> lld;
"LLE" >> lle;
"LLX" >> llx;
"LLDX" >> lldx;
"LLXE" >> llxe;
"LW" >> lw;
"LWE" >> lwe;
"LWPC" >> lwpc;
"LWu" >> lwu;
"LWupc" >> lwupc;
Ok ()