-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathload_store.c
More file actions
319 lines (276 loc) · 6.86 KB
/
load_store.c
File metadata and controls
319 lines (276 loc) · 6.86 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
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include "inst.h"
#include "aluop.h"
#include "mem.h"
#include "reg.h"
#include "env.h"
#include "utils.h"
uint32_t decode_imm_shift(uint32_t type, uint32_t imm5)
{
switch (type) {
case 0:
return imm5;
case 1:
case 2:
if (imm5 == 0)
return 32;
else
return imm5;
case 3:
if (imm5 == 0)
return 1;
else
return imm5;
default:
derror("undefined shift type, %s\n", __FUNCTION__);
exit(1);
}
}
const char *shift_type(uint32_t type, uint32_t imm5)
{
static const char *t[] = {
"lsl", "lsr", "asr", "ror", "rrx"
};
if (type == 0 && imm5 == 0)
return "";
if (type == 3) {
if (imm5 == 0)
return t[4];
else
return t[3];
}
return t[type];
}
void do_lazy_flags(struct Reg_CPSR *cpsr, uint32_t val, uint32_t type, uint32_t imm5)
{
uint64_t ff, result, val64;
uint32_t sh;
result = 0;
sh = imm5;
val64 = val;
switch (type) {
case 0: /* lsl */
result = val64 << sh;
result >>= 32;
if (result & 0x01)
cpsr->C = 1;
break;
case 1: /* lsr */
result = val >> sh;
break;
case 2: /* asr */
if (getbit(val, BIT31) == 1) { /* negative */
ff = 0xffffffff00000000LL;
result = (ff | val) >> sh;
} else
result = val >> sh;
break;
case 3:
if (imm5) { /* ror */
uint64_t tmpb;
ff = val;
ff <<= 32;
ff >>= sh;
val >>= sh;
tmpb = ff & 0xffffffff;
result = val | tmpb;
} else { /* rrx */
result = (val >> 1) | (cpsr->C << 31);
}
break;
default: derror("undefined shift instruction\n");
exit(1);
break;
}
cpsr->N = getbit(result, BIT31);
cpsr->Z = (result == 0 ? 1 : 0);
}
uint32_t shift(struct CPUState *env, uint32_t val, uint32_t type, uint32_t imm5, int update)
{
uint64_t ff;
uint32_t sh, result;
result = 0;
sh = imm5;
if (sh == 0)
return val;
switch (type) {
case 0: /* lsl */
result = val << sh;
break;
case 1: /* lsr */
result = val >> sh;
break;
case 2: /* asr */
if (getbit(val, BIT31) == 1) { /* negative */
ff = 0xffffffff00000000LL;
result = (ff | val) >> sh;
} else
result = val >> sh;
break;
case 3:
if (imm5) { /* ror */
uint64_t tmpb;
ff = val;
ff <<= 32;
ff >>= sh;
val >>= sh;
tmpb = ff & 0xffffffff;
result = val | tmpb;
} else { /* rrx */
result = (val >> 1) | (env->cpsr.C << 31);
}
break;
default: derror("undefined shift instruction\n");
exit(1);
break;
}
if (update) {
do_lazy_flags(&env->cpsr, val, type, imm5);
}
return result;
}
uint32_t shift_C(struct CPUState *env, uint32_t val, uint32_t type, uint32_t imm5, uint32_t *carry)
{
struct CPUState tmp_cpu = *env;
uint32_t result = shift(env, val, type, imm5, TRUE);
*carry = env->cpsr.C;
*env = tmp_cpu;
return result;
}
/* P = 0 ldr r0, [r1], #18 ; 會更改到 r1
* P = 1 ldr r0, [r1, #18] ; 根據 W
* U = 0 減
* U = 1 加
* W = 1 ldr r0, [r1, #18]!
* L = 1 load
* L = 0 store
* Rm != r15
*/
int ldst_imm(struct CPUState *env, uint32_t inst)
{
uint32_t P, U, B, W, L, rn, rt;
uint32_t imm12;
uint32_t offset_addr = 0, address, data;
P = getbit(inst, BIT24);
U = getbit(inst, BIT23);
B = getbit(inst, BIT22);
W = getbit(inst, BIT21);
L = getbit(inst, BIT20);
rn = getrn(inst);
rt = getrd(inst);
imm12 = getimm12(inst);
if (U)
offset_addr += get_reg(env, rn) + imm12;
else
offset_addr += get_reg(env, rn) - imm12;
if (P)
address = offset_addr;
else
address = get_reg(env, rn);
if (L) {
if (B)
data = get_mem_byte(env, address);
else
data = get_mem(env, address);
set_reg(env, rt, data);
} else {
if (B)
set_mem_byte(env, address, get_reg(env, rt));
else
set_mem(env, address, get_reg(env, rt));
}
if ((W || !P) && rn != REG_PC)
set_reg(env, rn, offset_addr);
return 0;
}
int ldst_reg(struct CPUState *env, uint32_t inst)
{
uint32_t P, U, B, W, L, rn, rt, rm;
uint32_t imm5, type;
uint32_t addr, offset_addr, data;
P = getbit(inst, BIT24);
U = getbit(inst, BIT23);
B = getbit(inst, BIT22);
W = getbit(inst, BIT21);
L = getbit(inst, BIT20);
rn = getrn(inst);
rt = getrd(inst);
rm = getrm(inst);
imm5 = getimm5(inst);
type = gettype(inst);
offset_addr = shift(env, get_reg(env, rm), type, imm5, 0);
if (U)
offset_addr += get_mem(env, get_reg(env, rn) + offset_addr);
else
offset_addr -= get_mem(env, get_reg(env, rn) - offset_addr);
if (P)
addr = offset_addr;
else
addr = get_reg(env, rn);
data = get_mem(env, get_reg(env, rt));
if (B)
set_mem_byte(env, addr, data);
else
set_mem(env, addr, data);
if (W)
set_reg(env, rn, offset_addr);
return 0;
}
static inline uint32_t op_add(uint32_t addr)
{
return addr + 4;
}
static inline uint32_t op_sub(uint32_t addr)
{
return addr - 4;
}
static inline uint32_t cal_addr(uint32_t addr, uint32_t (*op)(uint32_t))
{
return op(addr);
}
static inline uint32_t null_func(uint32_t addr, uint32_t (*op)(uint32_t))
{
/* Do nothing */
op = op;
return addr;
}
int multi_ldst(struct CPUState *env, uint32_t inst)
{
uint32_t P, U, S, W, L, rn, reglist;
uint32_t addr, i;
uint32_t (*op)(uint32_t);
uint32_t (*prefix_func)(uint32_t addr, uint32_t (*op)(uint32_t)) = null_func;
uint32_t (*postfix_func)(uint32_t addr, uint32_t (*op)(uint32_t)) = null_func;
P = getbit(inst, BIT24);
U = getbit(inst, BIT23);
S = getbit(inst, BIT22);
W = getbit(inst, BIT21);
L = getbit(inst, BIT20);
rn = getrn(inst);
reglist = (inst & 0x0ffff);
addr = get_reg(env, rn);
if (U)
op = op_add;
else
op = op_sub;
if (P)
prefix_func = cal_addr;
else
postfix_func = cal_addr;
for (i = 0; i < 16; ++i) {
if (reglist & 0x01) {
addr = prefix_func(addr, op);
if (L)
set_reg(env, i, get_mem(env, addr));
else
set_mem(env, addr, get_reg(env, i));
addr = postfix_func(addr, op);
}
reglist >>= 1;
}
if (W && !S) /* FIXME: must check */
set_reg(env, rn, addr);
return 0;
}