Home
last modified time | relevance | path

Searched refs:srcl (Results 1 – 2 of 2) sorted by relevance

/qemu/target/riscv/
H A Dop_helper.c98 target_ulong srcl, target_ulong srch) in helper_csrw_i128() argument
101 int128_make128(srcl, srch), in helper_csrw_i128()
110 target_ulong srcl, target_ulong srch, in helper_csrrw_i128() argument
115 int128_make128(srcl, srch), in helper_csrrw_i128()
/qemu/target/riscv/insn_trans/
H A Dtrans_rvi.c.inc432 TCGv srcl, TCGv srch, target_long imm)
436 tcg_gen_add2_tl(retl, reth, srcl, srch, imml, immh);
889 static bool do_csrw_i128(DisasContext *ctx, int rc, TCGv srcl, TCGv srch)
894 gen_helper_csrw_i128(tcg_env, csr, srcl, srch);
899 TCGv srcl, TCGv srch, TCGv maskl, TCGv maskh)
906 gen_helper_csrrw_i128(destl, tcg_env, csr, srcl, srch, maskl, maskh);
930 TCGv srcl = get_gpr(ctx, a->rs1, EXT_NONE);
938 return do_csrw_i128(ctx, a->csr, srcl, srch);
942 return do_csrrw_i128(ctx, a->rd, a->csr, srcl, srch, mask, mask);