]> Git Repo - qemu.git/blame - target/riscv/translate.c
target/riscv: cpu: Set reset vector based on the configured property value
[qemu.git] / target / riscv / translate.c
CommitLineData
55c2a12c
MC
1/*
2 * RISC-V emulation for qemu: main translation routines.
3 *
4 * Copyright (c) 2016-2017 Sagar Karandikar, [email protected]
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2 or later, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19#include "qemu/osdep.h"
20#include "qemu/log.h"
21#include "cpu.h"
dcb32f1d 22#include "tcg/tcg-op.h"
55c2a12c
MC
23#include "disas/disas.h"
24#include "exec/cpu_ldst.h"
25#include "exec/exec-all.h"
26#include "exec/helper-proto.h"
27#include "exec/helper-gen.h"
28
b2e32021 29#include "exec/translator.h"
55c2a12c
MC
30#include "exec/log.h"
31
32#include "instmap.h"
33
34/* global register indices */
ad9e5aa2 35static TCGv cpu_gpr[32], cpu_pc, cpu_vl;
55c2a12c
MC
36static TCGv_i64 cpu_fpr[32]; /* assume F and D extensions */
37static TCGv load_res;
38static TCGv load_val;
39
40#include "exec/gen-icount.h"
41
42typedef struct DisasContext {
0114db1c
EC
43 DisasContextBase base;
44 /* pc_succ_insn points to the instruction following base.pc_next */
45 target_ulong pc_succ_insn;
d75377bf 46 target_ulong priv_ver;
45b4dc8b
AF
47 bool virt_enabled;
48 uint32_t opcode;
83a71719 49 uint32_t mstatus_fs;
db9f3fd6 50 uint32_t misa;
55c2a12c 51 uint32_t mem_idx;
55c2a12c
MC
52 /* Remember the rounding mode encoded in the previous fp instruction,
53 which we have already installed into env->fp_status. Or -1 for
54 no previous fp instruction. Note that we exit the TB when writing
55 to any system register, which includes CSR_FRM, so we do not have
56 to reset this known value. */
57 int frm;
50fba816 58 bool ext_ifencei;
2b7168fc
LZ
59 /* vector extension */
60 bool vill;
61 uint8_t lmul;
62 uint8_t sew;
63 uint16_t vlen;
751538d5 64 uint16_t mlen;
2b7168fc 65 bool vl_eq_vlmax;
55c2a12c
MC
66} DisasContext;
67
bce8a342 68#ifdef TARGET_RISCV64
55c2a12c
MC
69/* convert riscv funct3 to qemu memop for load/store */
70static const int tcg_memop_lookup[8] = {
71 [0 ... 7] = -1,
72 [0] = MO_SB,
73 [1] = MO_TESW,
74 [2] = MO_TESL,
f480f6e8 75 [3] = MO_TEQ,
55c2a12c
MC
76 [4] = MO_UB,
77 [5] = MO_TEUW,
55c2a12c 78 [6] = MO_TEUL,
55c2a12c 79};
bce8a342 80#endif
55c2a12c
MC
81
82#ifdef TARGET_RISCV64
83#define CASE_OP_32_64(X) case X: case glue(X, W)
84#else
85#define CASE_OP_32_64(X) case X
86#endif
87
db9f3fd6
MC
88static inline bool has_ext(DisasContext *ctx, uint32_t ext)
89{
90 return ctx->misa & ext;
d36a86d0
RH
91}
92
93/*
94 * RISC-V requires NaN-boxing of narrower width floating point values.
95 * This applies when a 32-bit value is assigned to a 64-bit FP register.
96 * For consistency and simplicity, we nanbox results even when the RVD
97 * extension is not present.
98 */
99static void gen_nanbox_s(TCGv_i64 out, TCGv_i64 in)
100{
101 tcg_gen_ori_i64(out, in, MAKE_64BIT_MASK(32, 32));
ffe70e4d
RH
102}
103
104/*
105 * A narrow n-bit operation, where n < FLEN, checks that input operands
106 * are correctly Nan-boxed, i.e., all upper FLEN - n bits are 1.
107 * If so, the least-significant bits of the input are used, otherwise the
108 * input value is treated as an n-bit canonical NaN (v2.2 section 9.2).
109 *
110 * Here, the result is always nan-boxed, even the canonical nan.
111 */
112static void gen_check_nanbox_s(TCGv_i64 out, TCGv_i64 in)
113{
114 TCGv_i64 t_max = tcg_const_i64(0xffffffff00000000ull);
115 TCGv_i64 t_nan = tcg_const_i64(0xffffffff7fc00000ull);
116
117 tcg_gen_movcond_i64(TCG_COND_GEU, out, in, t_max, in, t_nan);
118 tcg_temp_free_i64(t_max);
119 tcg_temp_free_i64(t_nan);
db9f3fd6
MC
120}
121
55c2a12c
MC
122static void generate_exception(DisasContext *ctx, int excp)
123{
0114db1c 124 tcg_gen_movi_tl(cpu_pc, ctx->base.pc_next);
55c2a12c
MC
125 TCGv_i32 helper_tmp = tcg_const_i32(excp);
126 gen_helper_raise_exception(cpu_env, helper_tmp);
127 tcg_temp_free_i32(helper_tmp);
0114db1c 128 ctx->base.is_jmp = DISAS_NORETURN;
55c2a12c
MC
129}
130
131static void generate_exception_mbadaddr(DisasContext *ctx, int excp)
132{
0114db1c 133 tcg_gen_movi_tl(cpu_pc, ctx->base.pc_next);
55c2a12c
MC
134 tcg_gen_st_tl(cpu_pc, cpu_env, offsetof(CPURISCVState, badaddr));
135 TCGv_i32 helper_tmp = tcg_const_i32(excp);
136 gen_helper_raise_exception(cpu_env, helper_tmp);
137 tcg_temp_free_i32(helper_tmp);
0114db1c 138 ctx->base.is_jmp = DISAS_NORETURN;
55c2a12c
MC
139}
140
141static void gen_exception_debug(void)
142{
143 TCGv_i32 helper_tmp = tcg_const_i32(EXCP_DEBUG);
144 gen_helper_raise_exception(cpu_env, helper_tmp);
145 tcg_temp_free_i32(helper_tmp);
146}
147
6e2716d8
FC
148/* Wrapper around tcg_gen_exit_tb that handles single stepping */
149static void exit_tb(DisasContext *ctx)
150{
151 if (ctx->base.singlestep_enabled) {
152 gen_exception_debug();
153 } else {
154 tcg_gen_exit_tb(NULL, 0);
155 }
156}
157
158/* Wrapper around tcg_gen_lookup_and_goto_ptr that handles single stepping */
159static void lookup_and_goto_ptr(DisasContext *ctx)
160{
161 if (ctx->base.singlestep_enabled) {
162 gen_exception_debug();
163 } else {
164 tcg_gen_lookup_and_goto_ptr();
165 }
166}
167
55c2a12c
MC
168static void gen_exception_illegal(DisasContext *ctx)
169{
170 generate_exception(ctx, RISCV_EXCP_ILLEGAL_INST);
171}
172
173static void gen_exception_inst_addr_mis(DisasContext *ctx)
174{
175 generate_exception_mbadaddr(ctx, RISCV_EXCP_INST_ADDR_MIS);
176}
177
178static inline bool use_goto_tb(DisasContext *ctx, target_ulong dest)
179{
0114db1c 180 if (unlikely(ctx->base.singlestep_enabled)) {
55c2a12c
MC
181 return false;
182 }
183
184#ifndef CONFIG_USER_ONLY
0114db1c 185 return (ctx->base.tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK);
55c2a12c
MC
186#else
187 return true;
188#endif
189}
190
191static void gen_goto_tb(DisasContext *ctx, int n, target_ulong dest)
192{
193 if (use_goto_tb(ctx, dest)) {
194 /* chaining is only allowed when the jump is to the same page */
195 tcg_gen_goto_tb(n);
196 tcg_gen_movi_tl(cpu_pc, dest);
6e2716d8
FC
197
198 /* No need to check for single stepping here as use_goto_tb() will
199 * return false in case of single stepping.
200 */
07ea28b4 201 tcg_gen_exit_tb(ctx->base.tb, n);
55c2a12c
MC
202 } else {
203 tcg_gen_movi_tl(cpu_pc, dest);
6e2716d8 204 lookup_and_goto_ptr(ctx);
55c2a12c
MC
205 }
206}
207
208/* Wrapper for getting reg values - need to check of reg is zero since
209 * cpu_gpr[0] is not actually allocated
210 */
211static inline void gen_get_gpr(TCGv t, int reg_num)
212{
213 if (reg_num == 0) {
214 tcg_gen_movi_tl(t, 0);
215 } else {
216 tcg_gen_mov_tl(t, cpu_gpr[reg_num]);
217 }
218}
219
220/* Wrapper for setting reg values - need to check of reg is zero since
221 * cpu_gpr[0] is not actually allocated. this is more for safety purposes,
222 * since we usually avoid calling the OP_TYPE_gen function if we see a write to
223 * $zero
224 */
225static inline void gen_set_gpr(int reg_num_dst, TCGv t)
226{
227 if (reg_num_dst != 0) {
228 tcg_gen_mov_tl(cpu_gpr[reg_num_dst], t);
229 }
230}
231
232static void gen_mulhsu(TCGv ret, TCGv arg1, TCGv arg2)
233{
234 TCGv rl = tcg_temp_new();
235 TCGv rh = tcg_temp_new();
236
237 tcg_gen_mulu2_tl(rl, rh, arg1, arg2);
238 /* fix up for one negative */
239 tcg_gen_sari_tl(rl, arg1, TARGET_LONG_BITS - 1);
240 tcg_gen_and_tl(rl, rl, arg2);
241 tcg_gen_sub_tl(ret, rh, rl);
242
243 tcg_temp_free(rl);
244 tcg_temp_free(rh);
245}
246
12887016 247static void gen_div(TCGv ret, TCGv source1, TCGv source2)
55c2a12c 248{
12887016
BK
249 TCGv cond1, cond2, zeroreg, resultopt1;
250 /*
251 * Handle by altering args to tcg_gen_div to produce req'd results:
252 * For overflow: want source1 in source1 and 1 in source2
253 * For div by zero: want -1 in source1 and 1 in source2 -> -1 result
254 */
255 cond1 = tcg_temp_new();
256 cond2 = tcg_temp_new();
257 zeroreg = tcg_const_tl(0);
258 resultopt1 = tcg_temp_new();
259
260 tcg_gen_movi_tl(resultopt1, (target_ulong)-1);
261 tcg_gen_setcondi_tl(TCG_COND_EQ, cond2, source2, (target_ulong)(~0L));
262 tcg_gen_setcondi_tl(TCG_COND_EQ, cond1, source1,
263 ((target_ulong)1) << (TARGET_LONG_BITS - 1));
264 tcg_gen_and_tl(cond1, cond1, cond2); /* cond1 = overflow */
265 tcg_gen_setcondi_tl(TCG_COND_EQ, cond2, source2, 0); /* cond2 = div 0 */
266 /* if div by zero, set source1 to -1, otherwise don't change */
267 tcg_gen_movcond_tl(TCG_COND_EQ, source1, cond2, zeroreg, source1,
268 resultopt1);
269 /* if overflow or div by zero, set source2 to 1, else don't change */
270 tcg_gen_or_tl(cond1, cond1, cond2);
271 tcg_gen_movi_tl(resultopt1, (target_ulong)1);
272 tcg_gen_movcond_tl(TCG_COND_EQ, source2, cond1, zeroreg, source2,
273 resultopt1);
274 tcg_gen_div_tl(ret, source1, source2);
275
276 tcg_temp_free(cond1);
277 tcg_temp_free(cond2);
278 tcg_temp_free(zeroreg);
279 tcg_temp_free(resultopt1);
280}
55c2a12c 281
12887016
BK
282static void gen_divu(TCGv ret, TCGv source1, TCGv source2)
283{
284 TCGv cond1, zeroreg, resultopt1;
285 cond1 = tcg_temp_new();
286
287 zeroreg = tcg_const_tl(0);
288 resultopt1 = tcg_temp_new();
289
290 tcg_gen_setcondi_tl(TCG_COND_EQ, cond1, source2, 0);
291 tcg_gen_movi_tl(resultopt1, (target_ulong)-1);
292 tcg_gen_movcond_tl(TCG_COND_EQ, source1, cond1, zeroreg, source1,
293 resultopt1);
294 tcg_gen_movi_tl(resultopt1, (target_ulong)1);
295 tcg_gen_movcond_tl(TCG_COND_EQ, source2, cond1, zeroreg, source2,
296 resultopt1);
297 tcg_gen_divu_tl(ret, source1, source2);
298
299 tcg_temp_free(cond1);
300 tcg_temp_free(zeroreg);
301 tcg_temp_free(resultopt1);
302}
55c2a12c 303
12887016
BK
304static void gen_rem(TCGv ret, TCGv source1, TCGv source2)
305{
306 TCGv cond1, cond2, zeroreg, resultopt1;
307
308 cond1 = tcg_temp_new();
309 cond2 = tcg_temp_new();
310 zeroreg = tcg_const_tl(0);
311 resultopt1 = tcg_temp_new();
312
313 tcg_gen_movi_tl(resultopt1, 1L);
314 tcg_gen_setcondi_tl(TCG_COND_EQ, cond2, source2, (target_ulong)-1);
315 tcg_gen_setcondi_tl(TCG_COND_EQ, cond1, source1,
316 (target_ulong)1 << (TARGET_LONG_BITS - 1));
317 tcg_gen_and_tl(cond2, cond1, cond2); /* cond1 = overflow */
318 tcg_gen_setcondi_tl(TCG_COND_EQ, cond1, source2, 0); /* cond2 = div 0 */
319 /* if overflow or div by zero, set source2 to 1, else don't change */
320 tcg_gen_or_tl(cond2, cond1, cond2);
321 tcg_gen_movcond_tl(TCG_COND_EQ, source2, cond2, zeroreg, source2,
322 resultopt1);
323 tcg_gen_rem_tl(resultopt1, source1, source2);
324 /* if div by zero, just return the original dividend */
325 tcg_gen_movcond_tl(TCG_COND_EQ, ret, cond1, zeroreg, resultopt1,
326 source1);
327
328 tcg_temp_free(cond1);
329 tcg_temp_free(cond2);
330 tcg_temp_free(zeroreg);
331 tcg_temp_free(resultopt1);
332}
55c2a12c 333
12887016
BK
334static void gen_remu(TCGv ret, TCGv source1, TCGv source2)
335{
336 TCGv cond1, zeroreg, resultopt1;
337 cond1 = tcg_temp_new();
338 zeroreg = tcg_const_tl(0);
339 resultopt1 = tcg_temp_new();
340
341 tcg_gen_movi_tl(resultopt1, (target_ulong)1);
342 tcg_gen_setcondi_tl(TCG_COND_EQ, cond1, source2, 0);
343 tcg_gen_movcond_tl(TCG_COND_EQ, source2, cond1, zeroreg, source2,
344 resultopt1);
345 tcg_gen_remu_tl(resultopt1, source1, source2);
346 /* if div by zero, just return the original dividend */
347 tcg_gen_movcond_tl(TCG_COND_EQ, ret, cond1, zeroreg, resultopt1,
348 source1);
349
350 tcg_temp_free(cond1);
351 tcg_temp_free(zeroreg);
352 tcg_temp_free(resultopt1);
55c2a12c
MC
353}
354
db9f3fd6 355static void gen_jal(DisasContext *ctx, int rd, target_ulong imm)
55c2a12c
MC
356{
357 target_ulong next_pc;
358
359 /* check misaligned: */
0114db1c 360 next_pc = ctx->base.pc_next + imm;
db9f3fd6 361 if (!has_ext(ctx, RVC)) {
55c2a12c
MC
362 if ((next_pc & 0x3) != 0) {
363 gen_exception_inst_addr_mis(ctx);
364 return;
365 }
366 }
367 if (rd != 0) {
0114db1c 368 tcg_gen_movi_tl(cpu_gpr[rd], ctx->pc_succ_insn);
55c2a12c
MC
369 }
370
0114db1c
EC
371 gen_goto_tb(ctx, 0, ctx->base.pc_next + imm); /* must use this for safety */
372 ctx->base.is_jmp = DISAS_NORETURN;
55c2a12c
MC
373}
374
98898b20
BK
375#ifdef TARGET_RISCV64
376static void gen_load_c(DisasContext *ctx, uint32_t opc, int rd, int rs1,
55c2a12c
MC
377 target_long imm)
378{
379 TCGv t0 = tcg_temp_new();
380 TCGv t1 = tcg_temp_new();
381 gen_get_gpr(t0, rs1);
382 tcg_gen_addi_tl(t0, t0, imm);
383 int memop = tcg_memop_lookup[(opc >> 12) & 0x7];
384
385 if (memop < 0) {
386 gen_exception_illegal(ctx);
387 return;
388 }
389
390 tcg_gen_qemu_ld_tl(t1, t0, ctx->mem_idx, memop);
391 gen_set_gpr(rd, t1);
392 tcg_temp_free(t0);
393 tcg_temp_free(t1);
394}
395
bce8a342 396static void gen_store_c(DisasContext *ctx, uint32_t opc, int rs1, int rs2,
55c2a12c
MC
397 target_long imm)
398{
399 TCGv t0 = tcg_temp_new();
400 TCGv dat = tcg_temp_new();
401 gen_get_gpr(t0, rs1);
402 tcg_gen_addi_tl(t0, t0, imm);
403 gen_get_gpr(dat, rs2);
404 int memop = tcg_memop_lookup[(opc >> 12) & 0x7];
405
406 if (memop < 0) {
407 gen_exception_illegal(ctx);
408 return;
409 }
410
411 tcg_gen_qemu_st_tl(dat, t0, ctx->mem_idx, memop);
412 tcg_temp_free(t0);
413 tcg_temp_free(dat);
414}
bce8a342 415#endif
55c2a12c 416
533b8f88
RH
417#ifndef CONFIG_USER_ONLY
418/* The states of mstatus_fs are:
419 * 0 = disabled, 1 = initial, 2 = clean, 3 = dirty
420 * We will have already diagnosed disabled state,
421 * and need to turn initial/clean into dirty.
422 */
423static void mark_fs_dirty(DisasContext *ctx)
424{
425 TCGv tmp;
426 if (ctx->mstatus_fs == MSTATUS_FS) {
427 return;
428 }
429 /* Remember the state change for the rest of the TB. */
430 ctx->mstatus_fs = MSTATUS_FS;
431
432 tmp = tcg_temp_new();
433 tcg_gen_ld_tl(tmp, cpu_env, offsetof(CPURISCVState, mstatus));
82f01467 434 tcg_gen_ori_tl(tmp, tmp, MSTATUS_FS | MSTATUS_SD);
533b8f88 435 tcg_gen_st_tl(tmp, cpu_env, offsetof(CPURISCVState, mstatus));
45b4dc8b
AF
436
437 if (ctx->virt_enabled) {
438 tcg_gen_ld_tl(tmp, cpu_env, offsetof(CPURISCVState, mstatus_hs));
439 tcg_gen_ori_tl(tmp, tmp, MSTATUS_FS | MSTATUS_SD);
440 tcg_gen_st_tl(tmp, cpu_env, offsetof(CPURISCVState, mstatus_hs));
441 }
533b8f88
RH
442 tcg_temp_free(tmp);
443}
444#else
445static inline void mark_fs_dirty(DisasContext *ctx) { }
446#endif
447
97b0be81 448#if !defined(TARGET_RISCV64)
55c2a12c
MC
449static void gen_fp_load(DisasContext *ctx, uint32_t opc, int rd,
450 int rs1, target_long imm)
451{
452 TCGv t0;
453
83a71719 454 if (ctx->mstatus_fs == 0) {
55c2a12c
MC
455 gen_exception_illegal(ctx);
456 return;
457 }
458
459 t0 = tcg_temp_new();
460 gen_get_gpr(t0, rs1);
461 tcg_gen_addi_tl(t0, t0, imm);
462
463 switch (opc) {
464 case OPC_RISC_FLW:
d77c3401
MC
465 if (!has_ext(ctx, RVF)) {
466 goto do_illegal;
467 }
55c2a12c
MC
468 tcg_gen_qemu_ld_i64(cpu_fpr[rd], t0, ctx->mem_idx, MO_TEUL);
469 /* RISC-V requires NaN-boxing of narrower width floating point values */
470 tcg_gen_ori_i64(cpu_fpr[rd], cpu_fpr[rd], 0xffffffff00000000ULL);
471 break;
472 case OPC_RISC_FLD:
d77c3401
MC
473 if (!has_ext(ctx, RVD)) {
474 goto do_illegal;
475 }
55c2a12c
MC
476 tcg_gen_qemu_ld_i64(cpu_fpr[rd], t0, ctx->mem_idx, MO_TEQ);
477 break;
d77c3401 478 do_illegal:
55c2a12c
MC
479 default:
480 gen_exception_illegal(ctx);
481 break;
482 }
483 tcg_temp_free(t0);
533b8f88
RH
484
485 mark_fs_dirty(ctx);
55c2a12c
MC
486}
487
488static void gen_fp_store(DisasContext *ctx, uint32_t opc, int rs1,
489 int rs2, target_long imm)
490{
491 TCGv t0;
492
83a71719 493 if (ctx->mstatus_fs == 0) {
55c2a12c
MC
494 gen_exception_illegal(ctx);
495 return;
496 }
497
498 t0 = tcg_temp_new();
499 gen_get_gpr(t0, rs1);
500 tcg_gen_addi_tl(t0, t0, imm);
501
502 switch (opc) {
503 case OPC_RISC_FSW:
d77c3401
MC
504 if (!has_ext(ctx, RVF)) {
505 goto do_illegal;
506 }
55c2a12c
MC
507 tcg_gen_qemu_st_i64(cpu_fpr[rs2], t0, ctx->mem_idx, MO_TEUL);
508 break;
509 case OPC_RISC_FSD:
d77c3401
MC
510 if (!has_ext(ctx, RVD)) {
511 goto do_illegal;
512 }
55c2a12c
MC
513 tcg_gen_qemu_st_i64(cpu_fpr[rs2], t0, ctx->mem_idx, MO_TEQ);
514 break;
d77c3401 515 do_illegal:
55c2a12c
MC
516 default:
517 gen_exception_illegal(ctx);
518 break;
519 }
520
521 tcg_temp_free(t0);
522}
97b0be81 523#endif
55c2a12c 524
55c2a12c
MC
525static void gen_set_rm(DisasContext *ctx, int rm)
526{
527 TCGv_i32 t0;
528
529 if (ctx->frm == rm) {
530 return;
531 }
532 ctx->frm = rm;
533 t0 = tcg_const_i32(rm);
534 gen_helper_set_rounding_mode(cpu_env, t0);
535 tcg_temp_free_i32(t0);
536}
537
25139bf7 538static void decode_RV32_64C0(DisasContext *ctx, uint16_t opcode)
55c2a12c 539{
25139bf7
AB
540 uint8_t funct3 = extract16(opcode, 13, 3);
541 uint8_t rd_rs2 = GET_C_RS2S(opcode);
542 uint8_t rs1s = GET_C_RS1S(opcode);
55c2a12c
MC
543
544 switch (funct3) {
55c2a12c
MC
545 case 3:
546#if defined(TARGET_RISCV64)
547 /* C.LD(RV64/128) -> ld rd', offset[7:3](rs1')*/
98898b20 548 gen_load_c(ctx, OPC_RISC_LD, rd_rs2, rs1s,
25139bf7 549 GET_C_LD_IMM(opcode));
55c2a12c
MC
550#else
551 /* C.FLW (RV32) -> flw rd', offset[6:2](rs1')*/
552 gen_fp_load(ctx, OPC_RISC_FLW, rd_rs2, rs1s,
25139bf7 553 GET_C_LW_IMM(opcode));
55c2a12c
MC
554#endif
555 break;
55c2a12c
MC
556 case 7:
557#if defined(TARGET_RISCV64)
558 /* C.SD (RV64/128) -> sd rs2', offset[7:3](rs1')*/
bce8a342 559 gen_store_c(ctx, OPC_RISC_SD, rs1s, rd_rs2,
25139bf7 560 GET_C_LD_IMM(opcode));
55c2a12c
MC
561#else
562 /* C.FSW (RV32) -> fsw rs2', offset[6:2](rs1')*/
563 gen_fp_store(ctx, OPC_RISC_FSW, rs1s, rd_rs2,
25139bf7 564 GET_C_LW_IMM(opcode));
55c2a12c
MC
565#endif
566 break;
567 }
568}
569
25139bf7 570static void decode_RV32_64C(DisasContext *ctx, uint16_t opcode)
55c2a12c 571{
25139bf7 572 uint8_t op = extract16(opcode, 0, 2);
55c2a12c
MC
573
574 switch (op) {
575 case 0:
25139bf7 576 decode_RV32_64C0(ctx, opcode);
55c2a12c 577 break;
55c2a12c
MC
578 }
579}
580
751538d5
LZ
581static int ex_plus_1(DisasContext *ctx, int nf)
582{
583 return nf + 1;
584}
585
2a53cff4 586#define EX_SH(amount) \
451e4ffd 587 static int ex_shift_##amount(DisasContext *ctx, int imm) \
2a53cff4
BK
588 { \
589 return imm << amount; \
590 }
3cca75a6 591EX_SH(1)
e98d9140
BK
592EX_SH(2)
593EX_SH(3)
07b001c6 594EX_SH(4)
2a53cff4
BK
595EX_SH(12)
596
d2e2c1e4
BK
597#define REQUIRE_EXT(ctx, ext) do { \
598 if (!has_ext(ctx, ext)) { \
599 return false; \
600 } \
601} while (0)
602
451e4ffd 603static int ex_rvc_register(DisasContext *ctx, int reg)
e98d9140
BK
604{
605 return 8 + reg;
606}
607
6cafec92
RH
608static int ex_rvc_shifti(DisasContext *ctx, int imm)
609{
610 /* For RV128 a shamt of 0 means a shift by 64. */
611 return imm ? imm : 64;
612}
613
2a53cff4 614/* Include the auto-generated decoder for 32 bit insn */
abff1abf 615#include "decode-insn32.c.inc"
7a50d3e2 616
598aa116
RH
617static bool gen_arith_imm_fn(DisasContext *ctx, arg_i *a,
618 void (*func)(TCGv, TCGv, target_long))
619{
620 TCGv source1;
621 source1 = tcg_temp_new();
622
623 gen_get_gpr(source1, a->rs1);
624
625 (*func)(source1, source1, a->imm);
626
627 gen_set_gpr(a->rd, source1);
628 tcg_temp_free(source1);
629 return true;
630}
631
632static bool gen_arith_imm_tl(DisasContext *ctx, arg_i *a,
633 void (*func)(TCGv, TCGv, TCGv))
7a50d3e2
BK
634{
635 TCGv source1, source2;
636 source1 = tcg_temp_new();
637 source2 = tcg_temp_new();
638
639 gen_get_gpr(source1, a->rs1);
640 tcg_gen_movi_tl(source2, a->imm);
641
642 (*func)(source1, source1, source2);
643
644 gen_set_gpr(a->rd, source1);
645 tcg_temp_free(source1);
646 tcg_temp_free(source2);
647 return true;
648}
649
650#ifdef TARGET_RISCV64
651static void gen_addw(TCGv ret, TCGv arg1, TCGv arg2)
652{
653 tcg_gen_add_tl(ret, arg1, arg2);
654 tcg_gen_ext32s_tl(ret, ret);
655}
f2ab1728
BK
656
657static void gen_subw(TCGv ret, TCGv arg1, TCGv arg2)
658{
659 tcg_gen_sub_tl(ret, arg1, arg2);
660 tcg_gen_ext32s_tl(ret, ret);
661}
662
12887016
BK
663static void gen_mulw(TCGv ret, TCGv arg1, TCGv arg2)
664{
665 tcg_gen_mul_tl(ret, arg1, arg2);
666 tcg_gen_ext32s_tl(ret, ret);
667}
668
669static bool gen_arith_div_w(DisasContext *ctx, arg_r *a,
670 void(*func)(TCGv, TCGv, TCGv))
671{
672 TCGv source1, source2;
673 source1 = tcg_temp_new();
674 source2 = tcg_temp_new();
675
676 gen_get_gpr(source1, a->rs1);
677 gen_get_gpr(source2, a->rs2);
678 tcg_gen_ext32s_tl(source1, source1);
679 tcg_gen_ext32s_tl(source2, source2);
680
681 (*func)(source1, source1, source2);
682
683 tcg_gen_ext32s_tl(source1, source1);
684 gen_set_gpr(a->rd, source1);
685 tcg_temp_free(source1);
686 tcg_temp_free(source2);
687 return true;
688}
689
f17e02cd
PD
690static bool gen_arith_div_uw(DisasContext *ctx, arg_r *a,
691 void(*func)(TCGv, TCGv, TCGv))
692{
693 TCGv source1, source2;
694 source1 = tcg_temp_new();
695 source2 = tcg_temp_new();
696
697 gen_get_gpr(source1, a->rs1);
698 gen_get_gpr(source2, a->rs2);
699 tcg_gen_ext32u_tl(source1, source1);
700 tcg_gen_ext32u_tl(source2, source2);
701
702 (*func)(source1, source1, source2);
703
704 tcg_gen_ext32s_tl(source1, source1);
705 gen_set_gpr(a->rd, source1);
706 tcg_temp_free(source1);
707 tcg_temp_free(source2);
708 return true;
709}
710
7a50d3e2
BK
711#endif
712
8dc9e8a8
BK
713static bool gen_arith(DisasContext *ctx, arg_r *a,
714 void(*func)(TCGv, TCGv, TCGv))
f2ab1728
BK
715{
716 TCGv source1, source2;
717 source1 = tcg_temp_new();
718 source2 = tcg_temp_new();
719
720 gen_get_gpr(source1, a->rs1);
721 gen_get_gpr(source2, a->rs2);
722
723 (*func)(source1, source1, source2);
724
725 gen_set_gpr(a->rd, source1);
726 tcg_temp_free(source1);
727 tcg_temp_free(source2);
728 return true;
729}
730
34446e84
BK
731static bool gen_shift(DisasContext *ctx, arg_r *a,
732 void(*func)(TCGv, TCGv, TCGv))
733{
734 TCGv source1 = tcg_temp_new();
735 TCGv source2 = tcg_temp_new();
736
737 gen_get_gpr(source1, a->rs1);
738 gen_get_gpr(source2, a->rs2);
739
740 tcg_gen_andi_tl(source2, source2, TARGET_LONG_BITS - 1);
741 (*func)(source1, source1, source2);
742
743 gen_set_gpr(a->rd, source1);
744 tcg_temp_free(source1);
745 tcg_temp_free(source2);
746 return true;
747}
748
2a53cff4 749/* Include insn module translation function */
139c1837
PB
750#include "insn_trans/trans_rvi.c.inc"
751#include "insn_trans/trans_rvm.c.inc"
752#include "insn_trans/trans_rva.c.inc"
753#include "insn_trans/trans_rvf.c.inc"
754#include "insn_trans/trans_rvd.c.inc"
755#include "insn_trans/trans_rvh.c.inc"
756#include "insn_trans/trans_rvv.c.inc"
757#include "insn_trans/trans_privileged.c.inc"
2a53cff4 758
59a3a1c0 759/* Include the auto-generated decoder for 16 bit insn */
abff1abf 760#include "decode-insn16.c.inc"
e98d9140 761
25139bf7 762static void decode_opc(CPURISCVState *env, DisasContext *ctx, uint16_t opcode)
55c2a12c
MC
763{
764 /* check for compressed insn */
25139bf7 765 if (extract16(opcode, 0, 2) != 3) {
db9f3fd6 766 if (!has_ext(ctx, RVC)) {
55c2a12c
MC
767 gen_exception_illegal(ctx);
768 } else {
0114db1c 769 ctx->pc_succ_insn = ctx->base.pc_next + 2;
25139bf7 770 if (!decode_insn16(ctx, opcode)) {
e98d9140 771 /* fall back to old decoder */
25139bf7 772 decode_RV32_64C(ctx, opcode);
e98d9140 773 }
55c2a12c
MC
774 }
775 } else {
25139bf7
AB
776 uint32_t opcode32 = opcode;
777 opcode32 = deposit32(opcode32, 16, 16,
778 translator_lduw(env, ctx->base.pc_next + 2));
0114db1c 779 ctx->pc_succ_insn = ctx->base.pc_next + 4;
25139bf7 780 if (!decode_insn32(ctx, opcode32)) {
25e6ca30 781 gen_exception_illegal(ctx);
2a53cff4 782 }
55c2a12c
MC
783 }
784}
785
5b4f1d2d 786static void riscv_tr_init_disas_context(DisasContextBase *dcbase, CPUState *cs)
55c2a12c 787{
5b4f1d2d 788 DisasContext *ctx = container_of(dcbase, DisasContext, base);
d75377bf 789 CPURISCVState *env = cs->env_ptr;
50fba816 790 RISCVCPU *cpu = RISCV_CPU(cs);
2b7168fc 791 uint32_t tb_flags = ctx->base.tb->flags;
55c2a12c 792
5b4f1d2d 793 ctx->pc_succ_insn = ctx->base.pc_first;
2b7168fc
LZ
794 ctx->mem_idx = tb_flags & TB_FLAGS_MMU_MASK;
795 ctx->mstatus_fs = tb_flags & TB_FLAGS_MSTATUS_FS;
d75377bf 796 ctx->priv_ver = env->priv_ver;
45b4dc8b 797#if !defined(CONFIG_USER_ONLY)
ae84dd0a
AF
798 if (riscv_has_ext(env, RVH)) {
799 ctx->virt_enabled = riscv_cpu_virt_enabled(env);
ae84dd0a
AF
800 } else {
801 ctx->virt_enabled = false;
802 }
45b4dc8b
AF
803#else
804 ctx->virt_enabled = false;
805#endif
db9f3fd6 806 ctx->misa = env->misa;
5b4f1d2d 807 ctx->frm = -1; /* unknown rounding mode */
50fba816 808 ctx->ext_ifencei = cpu->cfg.ext_ifencei;
2b7168fc
LZ
809 ctx->vlen = cpu->cfg.vlen;
810 ctx->vill = FIELD_EX32(tb_flags, TB_FLAGS, VILL);
811 ctx->sew = FIELD_EX32(tb_flags, TB_FLAGS, SEW);
812 ctx->lmul = FIELD_EX32(tb_flags, TB_FLAGS, LMUL);
751538d5 813 ctx->mlen = 1 << (ctx->sew + 3 - ctx->lmul);
2b7168fc 814 ctx->vl_eq_vlmax = FIELD_EX32(tb_flags, TB_FLAGS, VL_EQ_VLMAX);
5b4f1d2d 815}
55c2a12c 816
5b4f1d2d
EC
817static void riscv_tr_tb_start(DisasContextBase *db, CPUState *cpu)
818{
819}
55c2a12c 820
5b4f1d2d
EC
821static void riscv_tr_insn_start(DisasContextBase *dcbase, CPUState *cpu)
822{
823 DisasContext *ctx = container_of(dcbase, DisasContext, base);
824
825 tcg_gen_insn_start(ctx->base.pc_next);
826}
827
828static bool riscv_tr_breakpoint_check(DisasContextBase *dcbase, CPUState *cpu,
829 const CPUBreakpoint *bp)
830{
831 DisasContext *ctx = container_of(dcbase, DisasContext, base);
832
833 tcg_gen_movi_tl(cpu_pc, ctx->base.pc_next);
834 ctx->base.is_jmp = DISAS_NORETURN;
835 gen_exception_debug();
836 /* The address covered by the breakpoint must be included in
837 [tb->pc, tb->pc + tb->size) in order to for it to be
838 properly cleared -- thus we increment the PC here so that
839 the logic setting tb->size below does the right thing. */
840 ctx->base.pc_next += 4;
841 return true;
842}
843
5b4f1d2d
EC
844static void riscv_tr_translate_insn(DisasContextBase *dcbase, CPUState *cpu)
845{
846 DisasContext *ctx = container_of(dcbase, DisasContext, base);
847 CPURISCVState *env = cpu->env_ptr;
25139bf7 848 uint16_t opcode16 = translator_lduw(env, ctx->base.pc_next);
55c2a12c 849
25139bf7 850 decode_opc(env, ctx, opcode16);
5b4f1d2d
EC
851 ctx->base.pc_next = ctx->pc_succ_insn;
852
853 if (ctx->base.is_jmp == DISAS_NEXT) {
854 target_ulong page_start;
855
856 page_start = ctx->base.pc_first & TARGET_PAGE_MASK;
857 if (ctx->base.pc_next - page_start >= TARGET_PAGE_SIZE) {
858 ctx->base.is_jmp = DISAS_TOO_MANY;
55c2a12c 859 }
55c2a12c 860 }
5b4f1d2d
EC
861}
862
863static void riscv_tr_tb_stop(DisasContextBase *dcbase, CPUState *cpu)
864{
865 DisasContext *ctx = container_of(dcbase, DisasContext, base);
866
867 switch (ctx->base.is_jmp) {
b2e32021 868 case DISAS_TOO_MANY:
ccf08e40 869 gen_goto_tb(ctx, 0, ctx->base.pc_next);
55c2a12c 870 break;
b2e32021 871 case DISAS_NORETURN:
55c2a12c 872 break;
b2e32021
EC
873 default:
874 g_assert_not_reached();
55c2a12c 875 }
5b4f1d2d
EC
876}
877
878static void riscv_tr_disas_log(const DisasContextBase *dcbase, CPUState *cpu)
879{
35f69039
AF
880#ifndef CONFIG_USER_ONLY
881 RISCVCPU *rvcpu = RISCV_CPU(cpu);
882 CPURISCVState *env = &rvcpu->env;
883#endif
884
5b4f1d2d 885 qemu_log("IN: %s\n", lookup_symbol(dcbase->pc_first));
35f69039
AF
886#ifndef CONFIG_USER_ONLY
887 qemu_log("Priv: "TARGET_FMT_ld"; Virt: "TARGET_FMT_ld"\n", env->priv, env->virt);
888#endif
5b4f1d2d
EC
889 log_target_disas(cpu, dcbase->pc_first, dcbase->tb->size);
890}
891
892static const TranslatorOps riscv_tr_ops = {
893 .init_disas_context = riscv_tr_init_disas_context,
894 .tb_start = riscv_tr_tb_start,
895 .insn_start = riscv_tr_insn_start,
896 .breakpoint_check = riscv_tr_breakpoint_check,
897 .translate_insn = riscv_tr_translate_insn,
898 .tb_stop = riscv_tr_tb_stop,
899 .disas_log = riscv_tr_disas_log,
900};
901
8b86d6d2 902void gen_intermediate_code(CPUState *cs, TranslationBlock *tb, int max_insns)
5b4f1d2d
EC
903{
904 DisasContext ctx;
905
8b86d6d2 906 translator_loop(&riscv_tr_ops, &ctx.base, cs, tb, max_insns);
55c2a12c
MC
907}
908
909void riscv_translate_init(void)
910{
911 int i;
912
913 /* cpu_gpr[0] is a placeholder for the zero register. Do not use it. */
914 /* Use the gen_set_gpr and gen_get_gpr helper functions when accessing */
915 /* registers, unless you specifically block reads/writes to reg 0 */
916 cpu_gpr[0] = NULL;
917
918 for (i = 1; i < 32; i++) {
919 cpu_gpr[i] = tcg_global_mem_new(cpu_env,
920 offsetof(CPURISCVState, gpr[i]), riscv_int_regnames[i]);
921 }
922
923 for (i = 0; i < 32; i++) {
924 cpu_fpr[i] = tcg_global_mem_new_i64(cpu_env,
925 offsetof(CPURISCVState, fpr[i]), riscv_fpr_regnames[i]);
926 }
927
928 cpu_pc = tcg_global_mem_new(cpu_env, offsetof(CPURISCVState, pc), "pc");
ad9e5aa2 929 cpu_vl = tcg_global_mem_new(cpu_env, offsetof(CPURISCVState, vl), "vl");
55c2a12c
MC
930 load_res = tcg_global_mem_new(cpu_env, offsetof(CPURISCVState, load_res),
931 "load_res");
932 load_val = tcg_global_mem_new(cpu_env, offsetof(CPURISCVState, load_val),
933 "load_val");
934}
This page took 0.323477 seconds and 4 git commands to generate.