]>
Commit | Line | Data |
---|---|---|
17c0fa3d MW |
1 | /* |
2 | * LatticeMico32 main translation routines. | |
3 | * | |
4 | * Copyright (c) 2010 Michael Walle <[email protected]> | |
5 | * | |
6 | * This library is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU Lesser General Public | |
8 | * License as published by the Free Software Foundation; either | |
9 | * version 2 of the License, or (at your option) any later version. | |
10 | * | |
11 | * This library is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 | * Lesser General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU Lesser General Public | |
17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. | |
18 | */ | |
19 | ||
17c0fa3d | 20 | #include "cpu.h" |
76cad711 | 21 | #include "disas/disas.h" |
2ef6175a | 22 | #include "exec/helper-proto.h" |
17c0fa3d | 23 | #include "tcg-op.h" |
17c0fa3d | 24 | |
f08b6170 | 25 | #include "exec/cpu_ldst.h" |
0d09e41a | 26 | #include "hw/lm32/lm32_pic.h" |
17c0fa3d | 27 | |
2ef6175a | 28 | #include "exec/helper-gen.h" |
17c0fa3d MW |
29 | |
30 | #define DISAS_LM32 1 | |
31 | #if DISAS_LM32 | |
32 | # define LOG_DIS(...) qemu_log_mask(CPU_LOG_TB_IN_ASM, ## __VA_ARGS__) | |
33 | #else | |
34 | # define LOG_DIS(...) do { } while (0) | |
35 | #endif | |
36 | ||
37 | #define EXTRACT_FIELD(src, start, end) \ | |
38 | (((src) >> start) & ((1 << (end - start + 1)) - 1)) | |
39 | ||
40 | #define MEM_INDEX 0 | |
41 | ||
42 | static TCGv_ptr cpu_env; | |
43 | static TCGv cpu_R[32]; | |
44 | static TCGv cpu_pc; | |
45 | static TCGv cpu_ie; | |
46 | static TCGv cpu_icc; | |
47 | static TCGv cpu_dcc; | |
48 | static TCGv cpu_cc; | |
49 | static TCGv cpu_cfg; | |
50 | static TCGv cpu_eba; | |
51 | static TCGv cpu_dc; | |
52 | static TCGv cpu_deba; | |
53 | static TCGv cpu_bp[4]; | |
54 | static TCGv cpu_wp[4]; | |
55 | ||
022c62cb | 56 | #include "exec/gen-icount.h" |
17c0fa3d MW |
57 | |
58 | enum { | |
59 | OP_FMT_RI, | |
60 | OP_FMT_RR, | |
61 | OP_FMT_CR, | |
62 | OP_FMT_I | |
63 | }; | |
64 | ||
65 | /* This is the state at translation time. */ | |
66 | typedef struct DisasContext { | |
17c0fa3d MW |
67 | target_ulong pc; |
68 | ||
69 | /* Decoder. */ | |
70 | int format; | |
71 | uint32_t ir; | |
72 | uint8_t opcode; | |
73 | uint8_t r0, r1, r2, csr; | |
74 | uint16_t imm5; | |
75 | uint16_t imm16; | |
76 | uint32_t imm26; | |
77 | ||
78 | unsigned int delayed_branch; | |
79 | unsigned int tb_flags, synced_flags; /* tb dependent flags. */ | |
80 | int is_jmp; | |
81 | ||
17c0fa3d MW |
82 | struct TranslationBlock *tb; |
83 | int singlestep_enabled; | |
34f4aa83 MW |
84 | |
85 | uint32_t features; | |
86 | uint8_t num_breakpoints; | |
87 | uint8_t num_watchpoints; | |
17c0fa3d MW |
88 | } DisasContext; |
89 | ||
90 | static const char *regnames[] = { | |
91 | "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", | |
92 | "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15", | |
93 | "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23", | |
94 | "r24", "r25", "r26/gp", "r27/fp", "r28/sp", "r29/ra", | |
95 | "r30/ea", "r31/ba", "bp0", "bp1", "bp2", "bp3", "wp0", | |
96 | "wp1", "wp2", "wp3" | |
97 | }; | |
98 | ||
99 | static inline int zero_extend(unsigned int val, int width) | |
100 | { | |
101 | return val & ((1 << width) - 1); | |
102 | } | |
103 | ||
104 | static inline int sign_extend(unsigned int val, int width) | |
105 | { | |
106 | int sval; | |
107 | ||
108 | /* LSL. */ | |
109 | val <<= 32 - width; | |
110 | sval = val; | |
111 | /* ASR. */ | |
112 | sval >>= 32 - width; | |
113 | ||
114 | return sval; | |
115 | } | |
116 | ||
117 | static inline void t_gen_raise_exception(DisasContext *dc, uint32_t index) | |
118 | { | |
119 | TCGv_i32 tmp = tcg_const_i32(index); | |
120 | ||
32ac0ca2 | 121 | gen_helper_raise_exception(cpu_env, tmp); |
17c0fa3d MW |
122 | tcg_temp_free_i32(tmp); |
123 | } | |
124 | ||
667ff961 MW |
125 | static inline void t_gen_illegal_insn(DisasContext *dc) |
126 | { | |
127 | tcg_gen_movi_tl(cpu_pc, dc->pc); | |
128 | gen_helper_ill(cpu_env); | |
129 | } | |
130 | ||
17c0fa3d MW |
131 | static void gen_goto_tb(DisasContext *dc, int n, target_ulong dest) |
132 | { | |
133 | TranslationBlock *tb; | |
134 | ||
135 | tb = dc->tb; | |
136 | if ((tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK) && | |
137 | likely(!dc->singlestep_enabled)) { | |
138 | tcg_gen_goto_tb(n); | |
139 | tcg_gen_movi_tl(cpu_pc, dest); | |
8cfd0495 | 140 | tcg_gen_exit_tb((uintptr_t)tb + n); |
17c0fa3d MW |
141 | } else { |
142 | tcg_gen_movi_tl(cpu_pc, dest); | |
143 | if (dc->singlestep_enabled) { | |
144 | t_gen_raise_exception(dc, EXCP_DEBUG); | |
145 | } | |
146 | tcg_gen_exit_tb(0); | |
147 | } | |
148 | } | |
149 | ||
150 | static void dec_add(DisasContext *dc) | |
151 | { | |
152 | if (dc->format == OP_FMT_RI) { | |
153 | if (dc->r0 == R_R0) { | |
154 | if (dc->r1 == R_R0 && dc->imm16 == 0) { | |
155 | LOG_DIS("nop\n"); | |
156 | } else { | |
157 | LOG_DIS("mvi r%d, %d\n", dc->r1, sign_extend(dc->imm16, 16)); | |
158 | } | |
159 | } else { | |
160 | LOG_DIS("addi r%d, r%d, %d\n", dc->r1, dc->r0, | |
161 | sign_extend(dc->imm16, 16)); | |
162 | } | |
163 | } else { | |
164 | LOG_DIS("add r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
165 | } | |
166 | ||
167 | if (dc->format == OP_FMT_RI) { | |
168 | tcg_gen_addi_tl(cpu_R[dc->r1], cpu_R[dc->r0], | |
169 | sign_extend(dc->imm16, 16)); | |
170 | } else { | |
171 | tcg_gen_add_tl(cpu_R[dc->r2], cpu_R[dc->r0], cpu_R[dc->r1]); | |
172 | } | |
173 | } | |
174 | ||
175 | static void dec_and(DisasContext *dc) | |
176 | { | |
177 | if (dc->format == OP_FMT_RI) { | |
178 | LOG_DIS("andi r%d, r%d, %d\n", dc->r1, dc->r0, | |
179 | zero_extend(dc->imm16, 16)); | |
180 | } else { | |
181 | LOG_DIS("and r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
182 | } | |
183 | ||
184 | if (dc->format == OP_FMT_RI) { | |
185 | tcg_gen_andi_tl(cpu_R[dc->r1], cpu_R[dc->r0], | |
186 | zero_extend(dc->imm16, 16)); | |
187 | } else { | |
188 | if (dc->r0 == 0 && dc->r1 == 0 && dc->r2 == 0) { | |
189 | tcg_gen_movi_tl(cpu_pc, dc->pc + 4); | |
32ac0ca2 | 190 | gen_helper_hlt(cpu_env); |
17c0fa3d MW |
191 | } else { |
192 | tcg_gen_and_tl(cpu_R[dc->r2], cpu_R[dc->r0], cpu_R[dc->r1]); | |
193 | } | |
194 | } | |
195 | } | |
196 | ||
197 | static void dec_andhi(DisasContext *dc) | |
198 | { | |
199 | LOG_DIS("andhi r%d, r%d, %d\n", dc->r2, dc->r0, dc->imm16); | |
200 | ||
201 | tcg_gen_andi_tl(cpu_R[dc->r1], cpu_R[dc->r0], (dc->imm16 << 16)); | |
202 | } | |
203 | ||
204 | static void dec_b(DisasContext *dc) | |
205 | { | |
206 | if (dc->r0 == R_RA) { | |
207 | LOG_DIS("ret\n"); | |
208 | } else if (dc->r0 == R_EA) { | |
209 | LOG_DIS("eret\n"); | |
210 | } else if (dc->r0 == R_BA) { | |
211 | LOG_DIS("bret\n"); | |
212 | } else { | |
213 | LOG_DIS("b r%d\n", dc->r0); | |
214 | } | |
215 | ||
216 | /* restore IE.IE in case of an eret */ | |
217 | if (dc->r0 == R_EA) { | |
218 | TCGv t0 = tcg_temp_new(); | |
219 | int l1 = gen_new_label(); | |
220 | tcg_gen_andi_tl(t0, cpu_ie, IE_EIE); | |
221 | tcg_gen_ori_tl(cpu_ie, cpu_ie, IE_IE); | |
222 | tcg_gen_brcondi_tl(TCG_COND_EQ, t0, IE_EIE, l1); | |
223 | tcg_gen_andi_tl(cpu_ie, cpu_ie, ~IE_IE); | |
224 | gen_set_label(l1); | |
225 | tcg_temp_free(t0); | |
226 | } else if (dc->r0 == R_BA) { | |
227 | TCGv t0 = tcg_temp_new(); | |
228 | int l1 = gen_new_label(); | |
229 | tcg_gen_andi_tl(t0, cpu_ie, IE_BIE); | |
230 | tcg_gen_ori_tl(cpu_ie, cpu_ie, IE_IE); | |
231 | tcg_gen_brcondi_tl(TCG_COND_EQ, t0, IE_BIE, l1); | |
232 | tcg_gen_andi_tl(cpu_ie, cpu_ie, ~IE_IE); | |
233 | gen_set_label(l1); | |
234 | tcg_temp_free(t0); | |
235 | } | |
236 | tcg_gen_mov_tl(cpu_pc, cpu_R[dc->r0]); | |
237 | ||
238 | dc->is_jmp = DISAS_JUMP; | |
239 | } | |
240 | ||
241 | static void dec_bi(DisasContext *dc) | |
242 | { | |
243 | LOG_DIS("bi %d\n", sign_extend(dc->imm26 << 2, 26)); | |
244 | ||
245 | gen_goto_tb(dc, 0, dc->pc + (sign_extend(dc->imm26 << 2, 26))); | |
246 | ||
247 | dc->is_jmp = DISAS_TB_JUMP; | |
248 | } | |
249 | ||
250 | static inline void gen_cond_branch(DisasContext *dc, int cond) | |
251 | { | |
252 | int l1; | |
253 | ||
254 | l1 = gen_new_label(); | |
255 | tcg_gen_brcond_tl(cond, cpu_R[dc->r0], cpu_R[dc->r1], l1); | |
256 | gen_goto_tb(dc, 0, dc->pc + 4); | |
257 | gen_set_label(l1); | |
258 | gen_goto_tb(dc, 1, dc->pc + (sign_extend(dc->imm16 << 2, 16))); | |
259 | dc->is_jmp = DISAS_TB_JUMP; | |
260 | } | |
261 | ||
262 | static void dec_be(DisasContext *dc) | |
263 | { | |
264 | LOG_DIS("be r%d, r%d, %d\n", dc->r0, dc->r1, | |
265 | sign_extend(dc->imm16, 16) * 4); | |
266 | ||
267 | gen_cond_branch(dc, TCG_COND_EQ); | |
268 | } | |
269 | ||
270 | static void dec_bg(DisasContext *dc) | |
271 | { | |
272 | LOG_DIS("bg r%d, r%d, %d\n", dc->r0, dc->r1, | |
273 | sign_extend(dc->imm16, 16 * 4)); | |
274 | ||
275 | gen_cond_branch(dc, TCG_COND_GT); | |
276 | } | |
277 | ||
278 | static void dec_bge(DisasContext *dc) | |
279 | { | |
280 | LOG_DIS("bge r%d, r%d, %d\n", dc->r0, dc->r1, | |
281 | sign_extend(dc->imm16, 16) * 4); | |
282 | ||
283 | gen_cond_branch(dc, TCG_COND_GE); | |
284 | } | |
285 | ||
286 | static void dec_bgeu(DisasContext *dc) | |
287 | { | |
288 | LOG_DIS("bgeu r%d, r%d, %d\n", dc->r0, dc->r1, | |
289 | sign_extend(dc->imm16, 16) * 4); | |
290 | ||
291 | gen_cond_branch(dc, TCG_COND_GEU); | |
292 | } | |
293 | ||
294 | static void dec_bgu(DisasContext *dc) | |
295 | { | |
296 | LOG_DIS("bgu r%d, r%d, %d\n", dc->r0, dc->r1, | |
297 | sign_extend(dc->imm16, 16) * 4); | |
298 | ||
299 | gen_cond_branch(dc, TCG_COND_GTU); | |
300 | } | |
301 | ||
302 | static void dec_bne(DisasContext *dc) | |
303 | { | |
304 | LOG_DIS("bne r%d, r%d, %d\n", dc->r0, dc->r1, | |
305 | sign_extend(dc->imm16, 16) * 4); | |
306 | ||
307 | gen_cond_branch(dc, TCG_COND_NE); | |
308 | } | |
309 | ||
310 | static void dec_call(DisasContext *dc) | |
311 | { | |
312 | LOG_DIS("call r%d\n", dc->r0); | |
313 | ||
314 | tcg_gen_movi_tl(cpu_R[R_RA], dc->pc + 4); | |
315 | tcg_gen_mov_tl(cpu_pc, cpu_R[dc->r0]); | |
316 | ||
317 | dc->is_jmp = DISAS_JUMP; | |
318 | } | |
319 | ||
320 | static void dec_calli(DisasContext *dc) | |
321 | { | |
322 | LOG_DIS("calli %d\n", sign_extend(dc->imm26, 26) * 4); | |
323 | ||
324 | tcg_gen_movi_tl(cpu_R[R_RA], dc->pc + 4); | |
325 | gen_goto_tb(dc, 0, dc->pc + (sign_extend(dc->imm26 << 2, 26))); | |
326 | ||
327 | dc->is_jmp = DISAS_TB_JUMP; | |
328 | } | |
329 | ||
330 | static inline void gen_compare(DisasContext *dc, int cond) | |
331 | { | |
332 | int rX = (dc->format == OP_FMT_RR) ? dc->r2 : dc->r1; | |
333 | int rY = (dc->format == OP_FMT_RR) ? dc->r0 : dc->r0; | |
334 | int rZ = (dc->format == OP_FMT_RR) ? dc->r1 : -1; | |
df5eb7d2 | 335 | int i; |
17c0fa3d MW |
336 | |
337 | if (dc->format == OP_FMT_RI) { | |
df5eb7d2 MW |
338 | switch (cond) { |
339 | case TCG_COND_GEU: | |
340 | case TCG_COND_GTU: | |
341 | i = zero_extend(dc->imm16, 16); | |
342 | break; | |
343 | default: | |
344 | i = sign_extend(dc->imm16, 16); | |
345 | break; | |
346 | } | |
347 | ||
348 | tcg_gen_setcondi_tl(cond, cpu_R[rX], cpu_R[rY], i); | |
17c0fa3d MW |
349 | } else { |
350 | tcg_gen_setcond_tl(cond, cpu_R[rX], cpu_R[rY], cpu_R[rZ]); | |
351 | } | |
352 | } | |
353 | ||
354 | static void dec_cmpe(DisasContext *dc) | |
355 | { | |
356 | if (dc->format == OP_FMT_RI) { | |
357 | LOG_DIS("cmpei r%d, r%d, %d\n", dc->r0, dc->r1, | |
358 | sign_extend(dc->imm16, 16)); | |
359 | } else { | |
360 | LOG_DIS("cmpe r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
361 | } | |
362 | ||
363 | gen_compare(dc, TCG_COND_EQ); | |
364 | } | |
365 | ||
366 | static void dec_cmpg(DisasContext *dc) | |
367 | { | |
368 | if (dc->format == OP_FMT_RI) { | |
369 | LOG_DIS("cmpgi r%d, r%d, %d\n", dc->r0, dc->r1, | |
370 | sign_extend(dc->imm16, 16)); | |
371 | } else { | |
372 | LOG_DIS("cmpg r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
373 | } | |
374 | ||
375 | gen_compare(dc, TCG_COND_GT); | |
376 | } | |
377 | ||
378 | static void dec_cmpge(DisasContext *dc) | |
379 | { | |
380 | if (dc->format == OP_FMT_RI) { | |
381 | LOG_DIS("cmpgei r%d, r%d, %d\n", dc->r0, dc->r1, | |
382 | sign_extend(dc->imm16, 16)); | |
383 | } else { | |
384 | LOG_DIS("cmpge r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
385 | } | |
386 | ||
387 | gen_compare(dc, TCG_COND_GE); | |
388 | } | |
389 | ||
390 | static void dec_cmpgeu(DisasContext *dc) | |
391 | { | |
392 | if (dc->format == OP_FMT_RI) { | |
393 | LOG_DIS("cmpgeui r%d, r%d, %d\n", dc->r0, dc->r1, | |
df5eb7d2 | 394 | zero_extend(dc->imm16, 16)); |
17c0fa3d MW |
395 | } else { |
396 | LOG_DIS("cmpgeu r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
397 | } | |
398 | ||
399 | gen_compare(dc, TCG_COND_GEU); | |
400 | } | |
401 | ||
402 | static void dec_cmpgu(DisasContext *dc) | |
403 | { | |
404 | if (dc->format == OP_FMT_RI) { | |
405 | LOG_DIS("cmpgui r%d, r%d, %d\n", dc->r0, dc->r1, | |
df5eb7d2 | 406 | zero_extend(dc->imm16, 16)); |
17c0fa3d MW |
407 | } else { |
408 | LOG_DIS("cmpgu r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
409 | } | |
410 | ||
411 | gen_compare(dc, TCG_COND_GTU); | |
412 | } | |
413 | ||
414 | static void dec_cmpne(DisasContext *dc) | |
415 | { | |
416 | if (dc->format == OP_FMT_RI) { | |
417 | LOG_DIS("cmpnei r%d, r%d, %d\n", dc->r0, dc->r1, | |
418 | sign_extend(dc->imm16, 16)); | |
419 | } else { | |
420 | LOG_DIS("cmpne r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
421 | } | |
422 | ||
423 | gen_compare(dc, TCG_COND_NE); | |
424 | } | |
425 | ||
426 | static void dec_divu(DisasContext *dc) | |
427 | { | |
428 | int l1; | |
429 | ||
430 | LOG_DIS("divu r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
431 | ||
34f4aa83 | 432 | if (!(dc->features & LM32_FEATURE_DIVIDE)) { |
3604a76f | 433 | qemu_log_mask(LOG_GUEST_ERROR, "hardware divider is not available\n"); |
667ff961 | 434 | t_gen_illegal_insn(dc); |
3604a76f | 435 | return; |
17c0fa3d MW |
436 | } |
437 | ||
438 | l1 = gen_new_label(); | |
439 | tcg_gen_brcondi_tl(TCG_COND_NE, cpu_R[dc->r1], 0, l1); | |
440 | tcg_gen_movi_tl(cpu_pc, dc->pc); | |
441 | t_gen_raise_exception(dc, EXCP_DIVIDE_BY_ZERO); | |
442 | gen_set_label(l1); | |
443 | tcg_gen_divu_tl(cpu_R[dc->r2], cpu_R[dc->r0], cpu_R[dc->r1]); | |
444 | } | |
445 | ||
446 | static void dec_lb(DisasContext *dc) | |
447 | { | |
448 | TCGv t0; | |
449 | ||
450 | LOG_DIS("lb r%d, (r%d+%d)\n", dc->r1, dc->r0, dc->imm16); | |
451 | ||
452 | t0 = tcg_temp_new(); | |
453 | tcg_gen_addi_tl(t0, cpu_R[dc->r0], sign_extend(dc->imm16, 16)); | |
454 | tcg_gen_qemu_ld8s(cpu_R[dc->r1], t0, MEM_INDEX); | |
455 | tcg_temp_free(t0); | |
456 | } | |
457 | ||
458 | static void dec_lbu(DisasContext *dc) | |
459 | { | |
460 | TCGv t0; | |
461 | ||
462 | LOG_DIS("lbu r%d, (r%d+%d)\n", dc->r1, dc->r0, dc->imm16); | |
463 | ||
464 | t0 = tcg_temp_new(); | |
465 | tcg_gen_addi_tl(t0, cpu_R[dc->r0], sign_extend(dc->imm16, 16)); | |
466 | tcg_gen_qemu_ld8u(cpu_R[dc->r1], t0, MEM_INDEX); | |
467 | tcg_temp_free(t0); | |
468 | } | |
469 | ||
470 | static void dec_lh(DisasContext *dc) | |
471 | { | |
472 | TCGv t0; | |
473 | ||
474 | LOG_DIS("lh r%d, (r%d+%d)\n", dc->r1, dc->r0, dc->imm16); | |
475 | ||
476 | t0 = tcg_temp_new(); | |
477 | tcg_gen_addi_tl(t0, cpu_R[dc->r0], sign_extend(dc->imm16, 16)); | |
478 | tcg_gen_qemu_ld16s(cpu_R[dc->r1], t0, MEM_INDEX); | |
479 | tcg_temp_free(t0); | |
480 | } | |
481 | ||
482 | static void dec_lhu(DisasContext *dc) | |
483 | { | |
484 | TCGv t0; | |
485 | ||
486 | LOG_DIS("lhu r%d, (r%d+%d)\n", dc->r1, dc->r0, dc->imm16); | |
487 | ||
488 | t0 = tcg_temp_new(); | |
489 | tcg_gen_addi_tl(t0, cpu_R[dc->r0], sign_extend(dc->imm16, 16)); | |
490 | tcg_gen_qemu_ld16u(cpu_R[dc->r1], t0, MEM_INDEX); | |
491 | tcg_temp_free(t0); | |
492 | } | |
493 | ||
494 | static void dec_lw(DisasContext *dc) | |
495 | { | |
496 | TCGv t0; | |
497 | ||
498 | LOG_DIS("lw r%d, (r%d+%d)\n", dc->r1, dc->r0, sign_extend(dc->imm16, 16)); | |
499 | ||
500 | t0 = tcg_temp_new(); | |
501 | tcg_gen_addi_tl(t0, cpu_R[dc->r0], sign_extend(dc->imm16, 16)); | |
502 | tcg_gen_qemu_ld32s(cpu_R[dc->r1], t0, MEM_INDEX); | |
503 | tcg_temp_free(t0); | |
504 | } | |
505 | ||
506 | static void dec_modu(DisasContext *dc) | |
507 | { | |
508 | int l1; | |
509 | ||
510 | LOG_DIS("modu r%d, r%d, %d\n", dc->r2, dc->r0, dc->r1); | |
511 | ||
34f4aa83 | 512 | if (!(dc->features & LM32_FEATURE_DIVIDE)) { |
3604a76f | 513 | qemu_log_mask(LOG_GUEST_ERROR, "hardware divider is not available\n"); |
667ff961 | 514 | t_gen_illegal_insn(dc); |
3604a76f | 515 | return; |
17c0fa3d MW |
516 | } |
517 | ||
518 | l1 = gen_new_label(); | |
519 | tcg_gen_brcondi_tl(TCG_COND_NE, cpu_R[dc->r1], 0, l1); | |
520 | tcg_gen_movi_tl(cpu_pc, dc->pc); | |
521 | t_gen_raise_exception(dc, EXCP_DIVIDE_BY_ZERO); | |
522 | gen_set_label(l1); | |
523 | tcg_gen_remu_tl(cpu_R[dc->r2], cpu_R[dc->r0], cpu_R[dc->r1]); | |
524 | } | |
525 | ||
526 | static void dec_mul(DisasContext *dc) | |
527 | { | |
528 | if (dc->format == OP_FMT_RI) { | |
529 | LOG_DIS("muli r%d, r%d, %d\n", dc->r0, dc->r1, | |
530 | sign_extend(dc->imm16, 16)); | |
531 | } else { | |
532 | LOG_DIS("mul r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
533 | } | |
534 | ||
34f4aa83 | 535 | if (!(dc->features & LM32_FEATURE_MULTIPLY)) { |
3604a76f MW |
536 | qemu_log_mask(LOG_GUEST_ERROR, |
537 | "hardware multiplier is not available\n"); | |
667ff961 | 538 | t_gen_illegal_insn(dc); |
3604a76f | 539 | return; |
17c0fa3d MW |
540 | } |
541 | ||
542 | if (dc->format == OP_FMT_RI) { | |
543 | tcg_gen_muli_tl(cpu_R[dc->r1], cpu_R[dc->r0], | |
544 | sign_extend(dc->imm16, 16)); | |
545 | } else { | |
546 | tcg_gen_mul_tl(cpu_R[dc->r2], cpu_R[dc->r0], cpu_R[dc->r1]); | |
547 | } | |
548 | } | |
549 | ||
550 | static void dec_nor(DisasContext *dc) | |
551 | { | |
552 | if (dc->format == OP_FMT_RI) { | |
553 | LOG_DIS("nori r%d, r%d, %d\n", dc->r0, dc->r1, | |
554 | zero_extend(dc->imm16, 16)); | |
555 | } else { | |
556 | LOG_DIS("nor r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
557 | } | |
558 | ||
559 | if (dc->format == OP_FMT_RI) { | |
560 | TCGv t0 = tcg_temp_new(); | |
561 | tcg_gen_movi_tl(t0, zero_extend(dc->imm16, 16)); | |
562 | tcg_gen_nor_tl(cpu_R[dc->r1], cpu_R[dc->r0], t0); | |
563 | tcg_temp_free(t0); | |
564 | } else { | |
565 | tcg_gen_nor_tl(cpu_R[dc->r2], cpu_R[dc->r0], cpu_R[dc->r1]); | |
566 | } | |
567 | } | |
568 | ||
569 | static void dec_or(DisasContext *dc) | |
570 | { | |
571 | if (dc->format == OP_FMT_RI) { | |
572 | LOG_DIS("ori r%d, r%d, %d\n", dc->r1, dc->r0, | |
573 | zero_extend(dc->imm16, 16)); | |
574 | } else { | |
575 | if (dc->r1 == R_R0) { | |
576 | LOG_DIS("mv r%d, r%d\n", dc->r2, dc->r0); | |
577 | } else { | |
578 | LOG_DIS("or r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
579 | } | |
580 | } | |
581 | ||
582 | if (dc->format == OP_FMT_RI) { | |
583 | tcg_gen_ori_tl(cpu_R[dc->r1], cpu_R[dc->r0], | |
584 | zero_extend(dc->imm16, 16)); | |
585 | } else { | |
586 | tcg_gen_or_tl(cpu_R[dc->r2], cpu_R[dc->r0], cpu_R[dc->r1]); | |
587 | } | |
588 | } | |
589 | ||
590 | static void dec_orhi(DisasContext *dc) | |
591 | { | |
592 | if (dc->r0 == R_R0) { | |
593 | LOG_DIS("mvhi r%d, %d\n", dc->r1, dc->imm16); | |
594 | } else { | |
595 | LOG_DIS("orhi r%d, r%d, %d\n", dc->r1, dc->r0, dc->imm16); | |
596 | } | |
597 | ||
598 | tcg_gen_ori_tl(cpu_R[dc->r1], cpu_R[dc->r0], (dc->imm16 << 16)); | |
599 | } | |
600 | ||
fcda9863 | 601 | static void dec_scall(DisasContext *dc) |
17c0fa3d | 602 | { |
667ff961 MW |
603 | switch (dc->imm5) { |
604 | case 2: | |
17c0fa3d | 605 | LOG_DIS("break\n"); |
17c0fa3d MW |
606 | tcg_gen_movi_tl(cpu_pc, dc->pc); |
607 | t_gen_raise_exception(dc, EXCP_BREAKPOINT); | |
667ff961 MW |
608 | break; |
609 | case 7: | |
610 | LOG_DIS("scall\n"); | |
611 | tcg_gen_movi_tl(cpu_pc, dc->pc); | |
612 | t_gen_raise_exception(dc, EXCP_SYSTEMCALL); | |
613 | break; | |
614 | default: | |
615 | qemu_log_mask(LOG_GUEST_ERROR, "invalid opcode @0x%x", dc->pc); | |
616 | t_gen_illegal_insn(dc); | |
617 | break; | |
17c0fa3d MW |
618 | } |
619 | } | |
620 | ||
621 | static void dec_rcsr(DisasContext *dc) | |
622 | { | |
623 | LOG_DIS("rcsr r%d, %d\n", dc->r2, dc->csr); | |
624 | ||
625 | switch (dc->csr) { | |
626 | case CSR_IE: | |
627 | tcg_gen_mov_tl(cpu_R[dc->r2], cpu_ie); | |
628 | break; | |
629 | case CSR_IM: | |
32ac0ca2 | 630 | gen_helper_rcsr_im(cpu_R[dc->r2], cpu_env); |
17c0fa3d MW |
631 | break; |
632 | case CSR_IP: | |
32ac0ca2 | 633 | gen_helper_rcsr_ip(cpu_R[dc->r2], cpu_env); |
17c0fa3d MW |
634 | break; |
635 | case CSR_CC: | |
636 | tcg_gen_mov_tl(cpu_R[dc->r2], cpu_cc); | |
637 | break; | |
638 | case CSR_CFG: | |
639 | tcg_gen_mov_tl(cpu_R[dc->r2], cpu_cfg); | |
640 | break; | |
641 | case CSR_EBA: | |
642 | tcg_gen_mov_tl(cpu_R[dc->r2], cpu_eba); | |
643 | break; | |
644 | case CSR_DC: | |
645 | tcg_gen_mov_tl(cpu_R[dc->r2], cpu_dc); | |
646 | break; | |
647 | case CSR_DEBA: | |
648 | tcg_gen_mov_tl(cpu_R[dc->r2], cpu_deba); | |
649 | break; | |
650 | case CSR_JTX: | |
32ac0ca2 | 651 | gen_helper_rcsr_jtx(cpu_R[dc->r2], cpu_env); |
17c0fa3d MW |
652 | break; |
653 | case CSR_JRX: | |
32ac0ca2 | 654 | gen_helper_rcsr_jrx(cpu_R[dc->r2], cpu_env); |
17c0fa3d MW |
655 | break; |
656 | case CSR_ICC: | |
657 | case CSR_DCC: | |
658 | case CSR_BP0: | |
659 | case CSR_BP1: | |
660 | case CSR_BP2: | |
661 | case CSR_BP3: | |
662 | case CSR_WP0: | |
663 | case CSR_WP1: | |
664 | case CSR_WP2: | |
665 | case CSR_WP3: | |
3604a76f | 666 | qemu_log_mask(LOG_GUEST_ERROR, "invalid read access csr=%x\n", dc->csr); |
17c0fa3d MW |
667 | break; |
668 | default: | |
3604a76f | 669 | qemu_log_mask(LOG_GUEST_ERROR, "read_csr: unknown csr=%x\n", dc->csr); |
17c0fa3d MW |
670 | break; |
671 | } | |
672 | } | |
673 | ||
674 | static void dec_sb(DisasContext *dc) | |
675 | { | |
676 | TCGv t0; | |
677 | ||
678 | LOG_DIS("sb (r%d+%d), r%d\n", dc->r0, dc->imm16, dc->r1); | |
679 | ||
680 | t0 = tcg_temp_new(); | |
681 | tcg_gen_addi_tl(t0, cpu_R[dc->r0], sign_extend(dc->imm16, 16)); | |
682 | tcg_gen_qemu_st8(cpu_R[dc->r1], t0, MEM_INDEX); | |
683 | tcg_temp_free(t0); | |
684 | } | |
685 | ||
686 | static void dec_sextb(DisasContext *dc) | |
687 | { | |
688 | LOG_DIS("sextb r%d, r%d\n", dc->r2, dc->r0); | |
689 | ||
34f4aa83 | 690 | if (!(dc->features & LM32_FEATURE_SIGN_EXTEND)) { |
3604a76f MW |
691 | qemu_log_mask(LOG_GUEST_ERROR, |
692 | "hardware sign extender is not available\n"); | |
667ff961 | 693 | t_gen_illegal_insn(dc); |
3604a76f | 694 | return; |
17c0fa3d MW |
695 | } |
696 | ||
697 | tcg_gen_ext8s_tl(cpu_R[dc->r2], cpu_R[dc->r0]); | |
698 | } | |
699 | ||
700 | static void dec_sexth(DisasContext *dc) | |
701 | { | |
702 | LOG_DIS("sexth r%d, r%d\n", dc->r2, dc->r0); | |
703 | ||
34f4aa83 | 704 | if (!(dc->features & LM32_FEATURE_SIGN_EXTEND)) { |
3604a76f MW |
705 | qemu_log_mask(LOG_GUEST_ERROR, |
706 | "hardware sign extender is not available\n"); | |
667ff961 | 707 | t_gen_illegal_insn(dc); |
3604a76f | 708 | return; |
17c0fa3d MW |
709 | } |
710 | ||
711 | tcg_gen_ext16s_tl(cpu_R[dc->r2], cpu_R[dc->r0]); | |
712 | } | |
713 | ||
714 | static void dec_sh(DisasContext *dc) | |
715 | { | |
716 | TCGv t0; | |
717 | ||
718 | LOG_DIS("sh (r%d+%d), r%d\n", dc->r0, dc->imm16, dc->r1); | |
719 | ||
720 | t0 = tcg_temp_new(); | |
721 | tcg_gen_addi_tl(t0, cpu_R[dc->r0], sign_extend(dc->imm16, 16)); | |
722 | tcg_gen_qemu_st16(cpu_R[dc->r1], t0, MEM_INDEX); | |
723 | tcg_temp_free(t0); | |
724 | } | |
725 | ||
726 | static void dec_sl(DisasContext *dc) | |
727 | { | |
728 | if (dc->format == OP_FMT_RI) { | |
729 | LOG_DIS("sli r%d, r%d, %d\n", dc->r1, dc->r0, dc->imm5); | |
730 | } else { | |
731 | LOG_DIS("sl r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
732 | } | |
733 | ||
34f4aa83 | 734 | if (!(dc->features & LM32_FEATURE_SHIFT)) { |
3604a76f | 735 | qemu_log_mask(LOG_GUEST_ERROR, "hardware shifter is not available\n"); |
667ff961 | 736 | t_gen_illegal_insn(dc); |
3604a76f | 737 | return; |
17c0fa3d MW |
738 | } |
739 | ||
740 | if (dc->format == OP_FMT_RI) { | |
741 | tcg_gen_shli_tl(cpu_R[dc->r1], cpu_R[dc->r0], dc->imm5); | |
742 | } else { | |
743 | TCGv t0 = tcg_temp_new(); | |
744 | tcg_gen_andi_tl(t0, cpu_R[dc->r1], 0x1f); | |
745 | tcg_gen_shl_tl(cpu_R[dc->r2], cpu_R[dc->r0], t0); | |
746 | tcg_temp_free(t0); | |
747 | } | |
748 | } | |
749 | ||
750 | static void dec_sr(DisasContext *dc) | |
751 | { | |
752 | if (dc->format == OP_FMT_RI) { | |
753 | LOG_DIS("sri r%d, r%d, %d\n", dc->r1, dc->r0, dc->imm5); | |
754 | } else { | |
755 | LOG_DIS("sr r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
756 | } | |
757 | ||
667ff961 MW |
758 | /* The real CPU (w/o hardware shifter) only supports right shift by exactly |
759 | * one bit */ | |
17c0fa3d | 760 | if (dc->format == OP_FMT_RI) { |
667ff961 MW |
761 | if (!(dc->features & LM32_FEATURE_SHIFT) && (dc->imm5 != 1)) { |
762 | qemu_log_mask(LOG_GUEST_ERROR, | |
763 | "hardware shifter is not available\n"); | |
764 | t_gen_illegal_insn(dc); | |
765 | return; | |
766 | } | |
17c0fa3d MW |
767 | tcg_gen_sari_tl(cpu_R[dc->r1], cpu_R[dc->r0], dc->imm5); |
768 | } else { | |
667ff961 MW |
769 | int l1 = gen_new_label(); |
770 | int l2 = gen_new_label(); | |
771 | TCGv t0 = tcg_temp_local_new(); | |
17c0fa3d | 772 | tcg_gen_andi_tl(t0, cpu_R[dc->r1], 0x1f); |
667ff961 MW |
773 | |
774 | if (!(dc->features & LM32_FEATURE_SHIFT)) { | |
775 | tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 1, l1); | |
776 | t_gen_illegal_insn(dc); | |
777 | tcg_gen_br(l2); | |
778 | } | |
779 | ||
780 | gen_set_label(l1); | |
17c0fa3d | 781 | tcg_gen_sar_tl(cpu_R[dc->r2], cpu_R[dc->r0], t0); |
667ff961 MW |
782 | gen_set_label(l2); |
783 | ||
17c0fa3d MW |
784 | tcg_temp_free(t0); |
785 | } | |
786 | } | |
787 | ||
788 | static void dec_sru(DisasContext *dc) | |
789 | { | |
790 | if (dc->format == OP_FMT_RI) { | |
791 | LOG_DIS("srui r%d, r%d, %d\n", dc->r1, dc->r0, dc->imm5); | |
792 | } else { | |
793 | LOG_DIS("sru r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
794 | } | |
795 | ||
17c0fa3d | 796 | if (dc->format == OP_FMT_RI) { |
667ff961 MW |
797 | if (!(dc->features & LM32_FEATURE_SHIFT) && (dc->imm5 != 1)) { |
798 | qemu_log_mask(LOG_GUEST_ERROR, | |
799 | "hardware shifter is not available\n"); | |
800 | t_gen_illegal_insn(dc); | |
801 | return; | |
802 | } | |
17c0fa3d MW |
803 | tcg_gen_shri_tl(cpu_R[dc->r1], cpu_R[dc->r0], dc->imm5); |
804 | } else { | |
667ff961 MW |
805 | int l1 = gen_new_label(); |
806 | int l2 = gen_new_label(); | |
807 | TCGv t0 = tcg_temp_local_new(); | |
17c0fa3d | 808 | tcg_gen_andi_tl(t0, cpu_R[dc->r1], 0x1f); |
667ff961 MW |
809 | |
810 | if (!(dc->features & LM32_FEATURE_SHIFT)) { | |
811 | tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 1, l1); | |
812 | t_gen_illegal_insn(dc); | |
813 | tcg_gen_br(l2); | |
814 | } | |
815 | ||
816 | gen_set_label(l1); | |
17c0fa3d | 817 | tcg_gen_shr_tl(cpu_R[dc->r2], cpu_R[dc->r0], t0); |
667ff961 MW |
818 | gen_set_label(l2); |
819 | ||
17c0fa3d MW |
820 | tcg_temp_free(t0); |
821 | } | |
822 | } | |
823 | ||
824 | static void dec_sub(DisasContext *dc) | |
825 | { | |
826 | LOG_DIS("sub r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
827 | ||
828 | tcg_gen_sub_tl(cpu_R[dc->r2], cpu_R[dc->r0], cpu_R[dc->r1]); | |
829 | } | |
830 | ||
831 | static void dec_sw(DisasContext *dc) | |
832 | { | |
833 | TCGv t0; | |
834 | ||
835 | LOG_DIS("sw (r%d+%d), r%d\n", dc->r0, sign_extend(dc->imm16, 16), dc->r1); | |
836 | ||
837 | t0 = tcg_temp_new(); | |
838 | tcg_gen_addi_tl(t0, cpu_R[dc->r0], sign_extend(dc->imm16, 16)); | |
839 | tcg_gen_qemu_st32(cpu_R[dc->r1], t0, MEM_INDEX); | |
840 | tcg_temp_free(t0); | |
841 | } | |
842 | ||
843 | static void dec_user(DisasContext *dc) | |
844 | { | |
845 | LOG_DIS("user"); | |
846 | ||
3604a76f | 847 | qemu_log_mask(LOG_GUEST_ERROR, "user instruction undefined\n"); |
667ff961 | 848 | t_gen_illegal_insn(dc); |
17c0fa3d MW |
849 | } |
850 | ||
851 | static void dec_wcsr(DisasContext *dc) | |
852 | { | |
853 | int no; | |
854 | ||
855 | LOG_DIS("wcsr r%d, %d\n", dc->r1, dc->csr); | |
856 | ||
857 | switch (dc->csr) { | |
858 | case CSR_IE: | |
859 | tcg_gen_mov_tl(cpu_ie, cpu_R[dc->r1]); | |
860 | tcg_gen_movi_tl(cpu_pc, dc->pc + 4); | |
861 | dc->is_jmp = DISAS_UPDATE; | |
862 | break; | |
863 | case CSR_IM: | |
864 | /* mark as an io operation because it could cause an interrupt */ | |
865 | if (use_icount) { | |
866 | gen_io_start(); | |
867 | } | |
32ac0ca2 | 868 | gen_helper_wcsr_im(cpu_env, cpu_R[dc->r1]); |
17c0fa3d MW |
869 | tcg_gen_movi_tl(cpu_pc, dc->pc + 4); |
870 | if (use_icount) { | |
871 | gen_io_end(); | |
872 | } | |
873 | dc->is_jmp = DISAS_UPDATE; | |
874 | break; | |
875 | case CSR_IP: | |
876 | /* mark as an io operation because it could cause an interrupt */ | |
877 | if (use_icount) { | |
878 | gen_io_start(); | |
879 | } | |
32ac0ca2 | 880 | gen_helper_wcsr_ip(cpu_env, cpu_R[dc->r1]); |
17c0fa3d MW |
881 | tcg_gen_movi_tl(cpu_pc, dc->pc + 4); |
882 | if (use_icount) { | |
883 | gen_io_end(); | |
884 | } | |
885 | dc->is_jmp = DISAS_UPDATE; | |
886 | break; | |
887 | case CSR_ICC: | |
888 | /* TODO */ | |
889 | break; | |
890 | case CSR_DCC: | |
891 | /* TODO */ | |
892 | break; | |
893 | case CSR_EBA: | |
894 | tcg_gen_mov_tl(cpu_eba, cpu_R[dc->r1]); | |
895 | break; | |
896 | case CSR_DEBA: | |
897 | tcg_gen_mov_tl(cpu_deba, cpu_R[dc->r1]); | |
898 | break; | |
899 | case CSR_JTX: | |
32ac0ca2 | 900 | gen_helper_wcsr_jtx(cpu_env, cpu_R[dc->r1]); |
17c0fa3d MW |
901 | break; |
902 | case CSR_JRX: | |
32ac0ca2 | 903 | gen_helper_wcsr_jrx(cpu_env, cpu_R[dc->r1]); |
17c0fa3d MW |
904 | break; |
905 | case CSR_DC: | |
3dd3a2b9 | 906 | gen_helper_wcsr_dc(cpu_env, cpu_R[dc->r1]); |
17c0fa3d MW |
907 | break; |
908 | case CSR_BP0: | |
909 | case CSR_BP1: | |
910 | case CSR_BP2: | |
911 | case CSR_BP3: | |
912 | no = dc->csr - CSR_BP0; | |
34f4aa83 | 913 | if (dc->num_breakpoints <= no) { |
3604a76f MW |
914 | qemu_log_mask(LOG_GUEST_ERROR, |
915 | "breakpoint #%i is not available\n", no); | |
667ff961 | 916 | t_gen_illegal_insn(dc); |
3604a76f | 917 | break; |
17c0fa3d | 918 | } |
3dd3a2b9 | 919 | gen_helper_wcsr_bp(cpu_env, cpu_R[dc->r1], tcg_const_i32(no)); |
17c0fa3d MW |
920 | break; |
921 | case CSR_WP0: | |
922 | case CSR_WP1: | |
923 | case CSR_WP2: | |
924 | case CSR_WP3: | |
925 | no = dc->csr - CSR_WP0; | |
34f4aa83 | 926 | if (dc->num_watchpoints <= no) { |
3604a76f MW |
927 | qemu_log_mask(LOG_GUEST_ERROR, |
928 | "watchpoint #%i is not available\n", no); | |
667ff961 | 929 | t_gen_illegal_insn(dc); |
3604a76f | 930 | break; |
17c0fa3d | 931 | } |
3dd3a2b9 | 932 | gen_helper_wcsr_wp(cpu_env, cpu_R[dc->r1], tcg_const_i32(no)); |
17c0fa3d MW |
933 | break; |
934 | case CSR_CC: | |
935 | case CSR_CFG: | |
3604a76f MW |
936 | qemu_log_mask(LOG_GUEST_ERROR, "invalid write access csr=%x\n", |
937 | dc->csr); | |
17c0fa3d MW |
938 | break; |
939 | default: | |
3604a76f MW |
940 | qemu_log_mask(LOG_GUEST_ERROR, "write_csr: unknown csr=%x\n", |
941 | dc->csr); | |
17c0fa3d MW |
942 | break; |
943 | } | |
944 | } | |
945 | ||
946 | static void dec_xnor(DisasContext *dc) | |
947 | { | |
948 | if (dc->format == OP_FMT_RI) { | |
949 | LOG_DIS("xnori r%d, r%d, %d\n", dc->r0, dc->r1, | |
950 | zero_extend(dc->imm16, 16)); | |
951 | } else { | |
952 | if (dc->r1 == R_R0) { | |
953 | LOG_DIS("not r%d, r%d\n", dc->r2, dc->r0); | |
954 | } else { | |
955 | LOG_DIS("xnor r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
956 | } | |
957 | } | |
958 | ||
959 | if (dc->format == OP_FMT_RI) { | |
960 | tcg_gen_xori_tl(cpu_R[dc->r1], cpu_R[dc->r0], | |
961 | zero_extend(dc->imm16, 16)); | |
962 | tcg_gen_not_tl(cpu_R[dc->r1], cpu_R[dc->r1]); | |
963 | } else { | |
964 | tcg_gen_eqv_tl(cpu_R[dc->r2], cpu_R[dc->r0], cpu_R[dc->r1]); | |
965 | } | |
966 | } | |
967 | ||
968 | static void dec_xor(DisasContext *dc) | |
969 | { | |
970 | if (dc->format == OP_FMT_RI) { | |
971 | LOG_DIS("xori r%d, r%d, %d\n", dc->r0, dc->r1, | |
972 | zero_extend(dc->imm16, 16)); | |
973 | } else { | |
974 | LOG_DIS("xor r%d, r%d, r%d\n", dc->r2, dc->r0, dc->r1); | |
975 | } | |
976 | ||
977 | if (dc->format == OP_FMT_RI) { | |
978 | tcg_gen_xori_tl(cpu_R[dc->r1], cpu_R[dc->r0], | |
979 | zero_extend(dc->imm16, 16)); | |
980 | } else { | |
981 | tcg_gen_xor_tl(cpu_R[dc->r2], cpu_R[dc->r0], cpu_R[dc->r1]); | |
982 | } | |
983 | } | |
984 | ||
a5086f95 MW |
985 | static void dec_ill(DisasContext *dc) |
986 | { | |
3604a76f | 987 | qemu_log_mask(LOG_GUEST_ERROR, "invalid opcode 0x%02x\n", dc->opcode); |
667ff961 | 988 | t_gen_illegal_insn(dc); |
a5086f95 | 989 | } |
17c0fa3d | 990 | |
a5086f95 | 991 | typedef void (*DecoderInfo)(DisasContext *dc); |
17c0fa3d | 992 | static const DecoderInfo decinfo[] = { |
a5086f95 MW |
993 | dec_sru, dec_nor, dec_mul, dec_sh, dec_lb, dec_sr, dec_xor, dec_lh, |
994 | dec_and, dec_xnor, dec_lw, dec_lhu, dec_sb, dec_add, dec_or, dec_sl, | |
995 | dec_lbu, dec_be, dec_bg, dec_bge, dec_bgeu, dec_bgu, dec_sw, dec_bne, | |
996 | dec_andhi, dec_cmpe, dec_cmpg, dec_cmpge, dec_cmpgeu, dec_cmpgu, dec_orhi, | |
997 | dec_cmpne, | |
998 | dec_sru, dec_nor, dec_mul, dec_divu, dec_rcsr, dec_sr, dec_xor, dec_ill, | |
999 | dec_and, dec_xnor, dec_ill, dec_scall, dec_sextb, dec_add, dec_or, dec_sl, | |
1000 | dec_b, dec_modu, dec_sub, dec_user, dec_wcsr, dec_ill, dec_call, dec_sexth, | |
1001 | dec_bi, dec_cmpe, dec_cmpg, dec_cmpge, dec_cmpgeu, dec_cmpgu, dec_calli, | |
1002 | dec_cmpne | |
17c0fa3d MW |
1003 | }; |
1004 | ||
32ac0ca2 | 1005 | static inline void decode(DisasContext *dc, uint32_t ir) |
17c0fa3d | 1006 | { |
fdefe51c | 1007 | if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP | CPU_LOG_TB_OP_OPT))) { |
17c0fa3d MW |
1008 | tcg_gen_debug_insn_start(dc->pc); |
1009 | } | |
1010 | ||
32ac0ca2 | 1011 | dc->ir = ir; |
17c0fa3d MW |
1012 | LOG_DIS("%8.8x\t", dc->ir); |
1013 | ||
17c0fa3d MW |
1014 | dc->opcode = EXTRACT_FIELD(ir, 26, 31); |
1015 | ||
1016 | dc->imm5 = EXTRACT_FIELD(ir, 0, 4); | |
1017 | dc->imm16 = EXTRACT_FIELD(ir, 0, 15); | |
1018 | dc->imm26 = EXTRACT_FIELD(ir, 0, 25); | |
1019 | ||
1020 | dc->csr = EXTRACT_FIELD(ir, 21, 25); | |
1021 | dc->r0 = EXTRACT_FIELD(ir, 21, 25); | |
1022 | dc->r1 = EXTRACT_FIELD(ir, 16, 20); | |
1023 | dc->r2 = EXTRACT_FIELD(ir, 11, 15); | |
1024 | ||
1025 | /* bit 31 seems to indicate insn type. */ | |
1026 | if (ir & (1 << 31)) { | |
1027 | dc->format = OP_FMT_RR; | |
1028 | } else { | |
1029 | dc->format = OP_FMT_RI; | |
1030 | } | |
1031 | ||
a5086f95 MW |
1032 | assert(ARRAY_SIZE(decinfo) == 64); |
1033 | assert(dc->opcode < 64); | |
17c0fa3d | 1034 | |
a5086f95 | 1035 | decinfo[dc->opcode](dc); |
17c0fa3d MW |
1036 | } |
1037 | ||
6393c08d | 1038 | static void check_breakpoint(CPULM32State *env, DisasContext *dc) |
17c0fa3d | 1039 | { |
f0c3c505 | 1040 | CPUState *cs = CPU(lm32_env_get_cpu(env)); |
17c0fa3d MW |
1041 | CPUBreakpoint *bp; |
1042 | ||
f0c3c505 AF |
1043 | if (unlikely(!QTAILQ_EMPTY(&cs->breakpoints))) { |
1044 | QTAILQ_FOREACH(bp, &cs->breakpoints, entry) { | |
17c0fa3d MW |
1045 | if (bp->pc == dc->pc) { |
1046 | tcg_gen_movi_tl(cpu_pc, dc->pc); | |
1047 | t_gen_raise_exception(dc, EXCP_DEBUG); | |
1048 | dc->is_jmp = DISAS_UPDATE; | |
1049 | } | |
1050 | } | |
1051 | } | |
1052 | } | |
1053 | ||
1054 | /* generate intermediate code for basic block 'tb'. */ | |
28014bca | 1055 | static inline |
cd0db97e AF |
1056 | void gen_intermediate_code_internal(LM32CPU *cpu, |
1057 | TranslationBlock *tb, bool search_pc) | |
17c0fa3d | 1058 | { |
ed2803da | 1059 | CPUState *cs = CPU(cpu); |
cd0db97e | 1060 | CPULM32State *env = &cpu->env; |
17c0fa3d MW |
1061 | struct DisasContext ctx, *dc = &ctx; |
1062 | uint16_t *gen_opc_end; | |
1063 | uint32_t pc_start; | |
1064 | int j, lj; | |
1065 | uint32_t next_page_start; | |
1066 | int num_insns; | |
1067 | int max_insns; | |
1068 | ||
17c0fa3d | 1069 | pc_start = tb->pc; |
34f4aa83 MW |
1070 | dc->features = cpu->features; |
1071 | dc->num_breakpoints = cpu->num_breakpoints; | |
1072 | dc->num_watchpoints = cpu->num_watchpoints; | |
17c0fa3d MW |
1073 | dc->tb = tb; |
1074 | ||
92414b31 | 1075 | gen_opc_end = tcg_ctx.gen_opc_buf + OPC_MAX_SIZE; |
17c0fa3d MW |
1076 | |
1077 | dc->is_jmp = DISAS_NEXT; | |
1078 | dc->pc = pc_start; | |
ed2803da | 1079 | dc->singlestep_enabled = cs->singlestep_enabled; |
17c0fa3d MW |
1080 | |
1081 | if (pc_start & 3) { | |
3604a76f MW |
1082 | qemu_log_mask(LOG_GUEST_ERROR, |
1083 | "unaligned PC=%x. Ignoring lowest bits.\n", pc_start); | |
1084 | pc_start &= ~3; | |
17c0fa3d MW |
1085 | } |
1086 | ||
17c0fa3d MW |
1087 | next_page_start = (pc_start & TARGET_PAGE_MASK) + TARGET_PAGE_SIZE; |
1088 | lj = -1; | |
1089 | num_insns = 0; | |
1090 | max_insns = tb->cflags & CF_COUNT_MASK; | |
1091 | if (max_insns == 0) { | |
1092 | max_insns = CF_COUNT_MASK; | |
1093 | } | |
1094 | ||
806f352d | 1095 | gen_tb_start(); |
17c0fa3d MW |
1096 | do { |
1097 | check_breakpoint(env, dc); | |
1098 | ||
1099 | if (search_pc) { | |
92414b31 | 1100 | j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf; |
17c0fa3d MW |
1101 | if (lj < j) { |
1102 | lj++; | |
1103 | while (lj < j) { | |
ab1103de | 1104 | tcg_ctx.gen_opc_instr_start[lj++] = 0; |
17c0fa3d MW |
1105 | } |
1106 | } | |
25983cad | 1107 | tcg_ctx.gen_opc_pc[lj] = dc->pc; |
ab1103de | 1108 | tcg_ctx.gen_opc_instr_start[lj] = 1; |
c9c99c22 | 1109 | tcg_ctx.gen_opc_icount[lj] = num_insns; |
17c0fa3d MW |
1110 | } |
1111 | ||
1112 | /* Pretty disas. */ | |
1113 | LOG_DIS("%8.8x:\t", dc->pc); | |
1114 | ||
1115 | if (num_insns + 1 == max_insns && (tb->cflags & CF_LAST_IO)) { | |
1116 | gen_io_start(); | |
1117 | } | |
1118 | ||
32ac0ca2 | 1119 | decode(dc, cpu_ldl_code(env, dc->pc)); |
17c0fa3d MW |
1120 | dc->pc += 4; |
1121 | num_insns++; | |
1122 | ||
1123 | } while (!dc->is_jmp | |
efd7f486 | 1124 | && tcg_ctx.gen_opc_ptr < gen_opc_end |
ed2803da | 1125 | && !cs->singlestep_enabled |
17c0fa3d MW |
1126 | && !singlestep |
1127 | && (dc->pc < next_page_start) | |
1128 | && num_insns < max_insns); | |
1129 | ||
1130 | if (tb->cflags & CF_LAST_IO) { | |
1131 | gen_io_end(); | |
1132 | } | |
1133 | ||
ed2803da | 1134 | if (unlikely(cs->singlestep_enabled)) { |
17c0fa3d MW |
1135 | if (dc->is_jmp == DISAS_NEXT) { |
1136 | tcg_gen_movi_tl(cpu_pc, dc->pc); | |
1137 | } | |
1138 | t_gen_raise_exception(dc, EXCP_DEBUG); | |
1139 | } else { | |
1140 | switch (dc->is_jmp) { | |
1141 | case DISAS_NEXT: | |
1142 | gen_goto_tb(dc, 1, dc->pc); | |
1143 | break; | |
1144 | default: | |
1145 | case DISAS_JUMP: | |
1146 | case DISAS_UPDATE: | |
1147 | /* indicate that the hash table must be used | |
1148 | to find the next TB */ | |
1149 | tcg_gen_exit_tb(0); | |
1150 | break; | |
1151 | case DISAS_TB_JUMP: | |
1152 | /* nothing more to generate */ | |
1153 | break; | |
1154 | } | |
1155 | } | |
1156 | ||
806f352d | 1157 | gen_tb_end(tb, num_insns); |
efd7f486 | 1158 | *tcg_ctx.gen_opc_ptr = INDEX_op_end; |
17c0fa3d | 1159 | if (search_pc) { |
92414b31 | 1160 | j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf; |
17c0fa3d MW |
1161 | lj++; |
1162 | while (lj <= j) { | |
ab1103de | 1163 | tcg_ctx.gen_opc_instr_start[lj++] = 0; |
17c0fa3d MW |
1164 | } |
1165 | } else { | |
1166 | tb->size = dc->pc - pc_start; | |
1167 | tb->icount = num_insns; | |
1168 | } | |
1169 | ||
1170 | #ifdef DEBUG_DISAS | |
1171 | if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { | |
1172 | qemu_log("\n"); | |
f4359b9f | 1173 | log_target_disas(env, pc_start, dc->pc - pc_start, 0); |
dfa5294f | 1174 | qemu_log("\nisize=%d osize=%td\n", |
92414b31 EV |
1175 | dc->pc - pc_start, tcg_ctx.gen_opc_ptr - |
1176 | tcg_ctx.gen_opc_buf); | |
17c0fa3d MW |
1177 | } |
1178 | #endif | |
1179 | } | |
1180 | ||
6393c08d | 1181 | void gen_intermediate_code(CPULM32State *env, struct TranslationBlock *tb) |
17c0fa3d | 1182 | { |
cd0db97e | 1183 | gen_intermediate_code_internal(lm32_env_get_cpu(env), tb, false); |
17c0fa3d MW |
1184 | } |
1185 | ||
6393c08d | 1186 | void gen_intermediate_code_pc(CPULM32State *env, struct TranslationBlock *tb) |
17c0fa3d | 1187 | { |
cd0db97e | 1188 | gen_intermediate_code_internal(lm32_env_get_cpu(env), tb, true); |
17c0fa3d MW |
1189 | } |
1190 | ||
878096ee AF |
1191 | void lm32_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf, |
1192 | int flags) | |
17c0fa3d | 1193 | { |
878096ee AF |
1194 | LM32CPU *cpu = LM32_CPU(cs); |
1195 | CPULM32State *env = &cpu->env; | |
17c0fa3d MW |
1196 | int i; |
1197 | ||
1198 | if (!env || !f) { | |
1199 | return; | |
1200 | } | |
1201 | ||
1202 | cpu_fprintf(f, "IN: PC=%x %s\n", | |
1203 | env->pc, lookup_symbol(env->pc)); | |
1204 | ||
1205 | cpu_fprintf(f, "ie=%8.8x (IE=%x EIE=%x BIE=%x) im=%8.8x ip=%8.8x\n", | |
1206 | env->ie, | |
1207 | (env->ie & IE_IE) ? 1 : 0, | |
1208 | (env->ie & IE_EIE) ? 1 : 0, | |
1209 | (env->ie & IE_BIE) ? 1 : 0, | |
1210 | lm32_pic_get_im(env->pic_state), | |
1211 | lm32_pic_get_ip(env->pic_state)); | |
1212 | cpu_fprintf(f, "eba=%8.8x deba=%8.8x\n", | |
1213 | env->eba, | |
1214 | env->deba); | |
1215 | ||
1216 | for (i = 0; i < 32; i++) { | |
1217 | cpu_fprintf(f, "r%2.2d=%8.8x ", i, env->regs[i]); | |
1218 | if ((i + 1) % 4 == 0) { | |
1219 | cpu_fprintf(f, "\n"); | |
1220 | } | |
1221 | } | |
1222 | cpu_fprintf(f, "\n\n"); | |
1223 | } | |
1224 | ||
6393c08d | 1225 | void restore_state_to_opc(CPULM32State *env, TranslationBlock *tb, int pc_pos) |
17c0fa3d | 1226 | { |
25983cad | 1227 | env->pc = tcg_ctx.gen_opc_pc[pc_pos]; |
17c0fa3d MW |
1228 | } |
1229 | ||
1230 | void lm32_translate_init(void) | |
1231 | { | |
1232 | int i; | |
1233 | ||
1234 | cpu_env = tcg_global_reg_new_ptr(TCG_AREG0, "env"); | |
1235 | ||
1236 | for (i = 0; i < ARRAY_SIZE(cpu_R); i++) { | |
1237 | cpu_R[i] = tcg_global_mem_new(TCG_AREG0, | |
6393c08d | 1238 | offsetof(CPULM32State, regs[i]), |
17c0fa3d MW |
1239 | regnames[i]); |
1240 | } | |
1241 | ||
1242 | for (i = 0; i < ARRAY_SIZE(cpu_bp); i++) { | |
1243 | cpu_bp[i] = tcg_global_mem_new(TCG_AREG0, | |
6393c08d | 1244 | offsetof(CPULM32State, bp[i]), |
17c0fa3d MW |
1245 | regnames[32+i]); |
1246 | } | |
1247 | ||
1248 | for (i = 0; i < ARRAY_SIZE(cpu_wp); i++) { | |
1249 | cpu_wp[i] = tcg_global_mem_new(TCG_AREG0, | |
6393c08d | 1250 | offsetof(CPULM32State, wp[i]), |
17c0fa3d MW |
1251 | regnames[36+i]); |
1252 | } | |
1253 | ||
1254 | cpu_pc = tcg_global_mem_new(TCG_AREG0, | |
6393c08d | 1255 | offsetof(CPULM32State, pc), |
17c0fa3d MW |
1256 | "pc"); |
1257 | cpu_ie = tcg_global_mem_new(TCG_AREG0, | |
6393c08d | 1258 | offsetof(CPULM32State, ie), |
17c0fa3d MW |
1259 | "ie"); |
1260 | cpu_icc = tcg_global_mem_new(TCG_AREG0, | |
6393c08d | 1261 | offsetof(CPULM32State, icc), |
17c0fa3d MW |
1262 | "icc"); |
1263 | cpu_dcc = tcg_global_mem_new(TCG_AREG0, | |
6393c08d | 1264 | offsetof(CPULM32State, dcc), |
17c0fa3d MW |
1265 | "dcc"); |
1266 | cpu_cc = tcg_global_mem_new(TCG_AREG0, | |
6393c08d | 1267 | offsetof(CPULM32State, cc), |
17c0fa3d MW |
1268 | "cc"); |
1269 | cpu_cfg = tcg_global_mem_new(TCG_AREG0, | |
6393c08d | 1270 | offsetof(CPULM32State, cfg), |
17c0fa3d MW |
1271 | "cfg"); |
1272 | cpu_eba = tcg_global_mem_new(TCG_AREG0, | |
6393c08d | 1273 | offsetof(CPULM32State, eba), |
17c0fa3d MW |
1274 | "eba"); |
1275 | cpu_dc = tcg_global_mem_new(TCG_AREG0, | |
6393c08d | 1276 | offsetof(CPULM32State, dc), |
17c0fa3d MW |
1277 | "dc"); |
1278 | cpu_deba = tcg_global_mem_new(TCG_AREG0, | |
6393c08d | 1279 | offsetof(CPULM32State, deba), |
17c0fa3d MW |
1280 | "deba"); |
1281 | } | |
1282 |