mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 14:35:34 +00:00
target/arm: Implement SVE Stack Allocation Group
This commit is contained in:
parent
45a09e2f25
commit
bf97c44a2b
|
@ -84,6 +84,9 @@
|
||||||
@rdn_pg_ra_rm ........ esz:2 . rm:5 ... pg:3 ra:5 rd:5 \
|
@rdn_pg_ra_rm ........ esz:2 . rm:5 ... pg:3 ra:5 rd:5 \
|
||||||
&rprrr_esz rn=%reg_movprfx
|
&rprrr_esz rn=%reg_movprfx
|
||||||
|
|
||||||
|
# Two register operands with a 6-bit signed immediate.
|
||||||
|
@rd_rn_i6 ........ ... rn:5 ..... imm:s6 rd:5 &rri
|
||||||
|
|
||||||
# Two register operand, one immediate operand, with predicate,
|
# Two register operand, one immediate operand, with predicate,
|
||||||
# element size encoded as TSZHL. User must fill in imm.
|
# element size encoded as TSZHL. User must fill in imm.
|
||||||
@rdn_pg_tszimm ........ .. ... ... ... pg:3 ..... rd:5 \
|
@rdn_pg_tszimm ........ .. ... ... ... pg:3 ..... rd:5 \
|
||||||
|
@ -238,6 +241,15 @@ INDEX_ri 00000100 esz:2 1 imm:s5 010001 rn:5 rd:5
|
||||||
# SVE index generation (register start, register increment)
|
# SVE index generation (register start, register increment)
|
||||||
INDEX_rr 00000100 .. 1 ..... 010011 ..... ..... @rd_rn_rm
|
INDEX_rr 00000100 .. 1 ..... 010011 ..... ..... @rd_rn_rm
|
||||||
|
|
||||||
|
### SVE Stack Allocation Group
|
||||||
|
|
||||||
|
# SVE stack frame adjustment
|
||||||
|
ADDVL 00000100 001 ..... 01010 ...... ..... @rd_rn_i6
|
||||||
|
ADDPL 00000100 011 ..... 01010 ...... ..... @rd_rn_i6
|
||||||
|
|
||||||
|
# SVE stack frame size
|
||||||
|
RDVL 00000100 101 11111 01010 imm:s6 rd:5
|
||||||
|
|
||||||
### SVE Predicate Logical Operations Group
|
### SVE Predicate Logical Operations Group
|
||||||
|
|
||||||
# SVE predicate logical operations
|
# SVE predicate logical operations
|
||||||
|
|
|
@ -796,6 +796,36 @@ static bool trans_INDEX_rr(DisasContext *s, arg_INDEX_rr *a, uint32_t insn)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
*** SVE Stack Allocation Group
|
||||||
|
*/
|
||||||
|
|
||||||
|
static bool trans_ADDVL(DisasContext *s, arg_ADDVL *a, uint32_t insn)
|
||||||
|
{
|
||||||
|
TCGContext *tcg_ctx = s->uc->tcg_ctx;
|
||||||
|
TCGv_i64 rd = cpu_reg_sp(s, a->rd);
|
||||||
|
TCGv_i64 rn = cpu_reg_sp(s, a->rn);
|
||||||
|
tcg_gen_addi_i64(tcg_ctx, rd, rn, a->imm * vec_full_reg_size(s));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool trans_ADDPL(DisasContext *s, arg_ADDPL *a, uint32_t insn)
|
||||||
|
{
|
||||||
|
TCGContext *tcg_ctx = s->uc->tcg_ctx;
|
||||||
|
TCGv_i64 rd = cpu_reg_sp(s, a->rd);
|
||||||
|
TCGv_i64 rn = cpu_reg_sp(s, a->rn);
|
||||||
|
tcg_gen_addi_i64(tcg_ctx, rd, rn, a->imm * pred_full_reg_size(s));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool trans_RDVL(DisasContext *s, arg_RDVL *a, uint32_t insn)
|
||||||
|
{
|
||||||
|
TCGContext *tcg_ctx = s->uc->tcg_ctx;
|
||||||
|
TCGv_i64 reg = cpu_reg(s, a->rd);
|
||||||
|
tcg_gen_movi_i64(tcg_ctx, reg, a->imm * vec_full_reg_size(s));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*** SVE Predicate Logical Operations Group
|
*** SVE Predicate Logical Operations Group
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue