qemu-e2k/target/e2k/translate/alc.c

1115 lines
30 KiB
C
Raw Normal View History

2020-11-11 20:03:51 +01:00
#include "qemu/osdep.h"
#include "qemu.h"
#include "exec/log.h"
#include "translate.h"
2020-12-01 13:00:12 +01:00
typedef struct {
TCGv_i32 tag;
TCGv_i64 value;
} Src64;
typedef struct {
TCGv_i32 tag;
TCGv_i32 value;
} Src32;
static inline void gen_reg_index(TCGv_i32 ret, uint8_t arg)
{
if (IS_BASED(arg)) {
e2k_gen_reg_index_from_bregi(ret, GET_BASED(arg));
} else if (IS_REGULAR(arg)) {
e2k_gen_reg_index_from_wregi(ret, GET_REGULAR(arg));
} else if (IS_GLOBAL(arg)) {
e2k_gen_reg_index_from_gregi(ret, GET_GLOBAL(arg));
2020-11-11 20:03:51 +01:00
} else {
2020-12-01 13:00:12 +01:00
e2k_gen_exception(E2K_EXCP_ILLOPN);
}
}
static inline void gen_reg_i64(DisasContext *ctx, Src64 *ret, uint8_t arg)
{
TCGv_i32 t0 = tcg_temp_new_i32();
gen_reg_index(t0, arg);
ret->tag = e2k_get_temp_i32(ctx);
ret->value = e2k_get_temp_i64(ctx);
e2k_gen_reg_tag_read_i32(ret->tag, t0);
e2k_gen_reg_read_i64(ret->value, t0);
tcg_temp_free_i32(t0);
}
static inline void gen_reg_i32(DisasContext *ctx, Src32 *ret, uint8_t arg)
{
TCGv_i32 t0 = tcg_temp_new_i32();
gen_reg_index(t0, arg);
ret->tag = e2k_get_temp_i32(ctx);
ret->value = e2k_get_temp_i32(ctx);
e2k_gen_reg_tag_read_i32(ret->tag, t0);
e2k_gen_reg_read_i32(ret->value, t0);
tcg_temp_free_i32(t0);
}
static inline void gen_literal_i64(DisasContext *ctx, Src64 *ret, uint8_t arg)
{
int i = GET_LIT(arg);
uint64_t lit = ctx->bundle.lts[i];
if (!ctx->bundle.lts_present[i]) {
e2k_gen_exception(E2K_EXCP_ILLOPN);
} else if (IS_LIT16_LO(arg) && i < 2) {
lit = ((int64_t) lit << 48) >> 48;
} else if (IS_LIT16_HI(arg) && i < 2) {
lit = ((int64_t) lit << 32) >> 48;
} else if (IS_LIT32(arg)) {
lit = ((int64_t) lit << 32) >> 32;
} else if (IS_LIT64(arg) && i < 3) {
if (!ctx->bundle.lts_present[i + 1]) {
e2k_tr_gen_exception(ctx, E2K_EXCP_ILLOPN);
}
lit |= (uint64_t) ctx->bundle.lts[i + 1] << 32;
} else {
e2k_tr_gen_exception(ctx, E2K_EXCP_ILLOPN);
}
ret->value = e2k_get_const_i64(ctx, lit);
}
static inline void gen_literal_i32(DisasContext *ctx, Src32 *ret, uint8_t arg)
{
int i = GET_LIT(arg);
int32_t lit = ctx->bundle.lts[i];
if (!ctx->bundle.lts_present[i]) {
e2k_gen_exception(E2K_EXCP_ILLOPN);
} else if (IS_LIT16_LO(arg) && i < 2) {
lit = (lit << 16) >> 16;
} else if (IS_LIT16_HI(arg) && i < 2) {
lit = lit >> 16;
} else if (IS_LIT32(arg)) {
// nop
} else if (IS_LIT64(arg) && i < 3) {
// FIXME: check CPU behavior in such situation
if (!ctx->bundle.lts_present[i + 1]) {
e2k_tr_gen_exception(ctx, E2K_EXCP_ILLOPN);
2020-11-11 20:03:51 +01:00
}
} else {
2020-12-01 13:00:12 +01:00
e2k_tr_gen_exception(ctx, E2K_EXCP_ILLOPN);
}
ret->value = e2k_get_const_i32(ctx, lit);
}
static inline Src64 get_src1_i64(DisasContext *ctx, int chan)
{
uint8_t arg = extract32(ctx->bundle.als[chan], 16, 8);
Src64 ret = { 0 };
if (IS_IMM5(arg)) {
ret.value = e2k_get_const_i64(ctx, GET_IMM5(arg));
} else {
gen_reg_i64(ctx, &ret, arg);
}
return ret;
}
static inline Src32 get_src1_i32(DisasContext *ctx, int chan)
{
uint8_t arg = extract32(ctx->bundle.als[chan], 16, 8);
Src32 ret = { 0 };
if (IS_IMM5(arg)) {
ret.value = e2k_get_const_i32(ctx, GET_IMM5(arg));
} else {
gen_reg_i32(ctx, &ret, arg);
2020-11-11 20:03:51 +01:00
}
2020-12-01 13:00:12 +01:00
return ret;
2020-11-11 20:03:51 +01:00
}
2020-12-01 13:00:12 +01:00
static inline Src64 get_src2_i64(DisasContext *ctx, int chan)
2020-11-11 20:03:51 +01:00
{
2020-12-01 13:00:12 +01:00
uint8_t arg = extract32(ctx->bundle.als[chan], 8, 8);
Src64 ret = { 0 };
if (IS_IMM4(arg)) {
ret.value = e2k_get_const_i64(ctx, GET_IMM4(arg));
} else if (IS_LIT(arg)) {
gen_literal_i64(ctx, &ret, arg);
2020-11-11 20:03:51 +01:00
} else {
2020-12-01 13:00:12 +01:00
gen_reg_i64(ctx, &ret, arg);
}
return ret;
}
static inline Src32 get_src2_i32(DisasContext *ctx, int chan)
{
uint8_t arg = extract32(ctx->bundle.als[chan], 8, 8);
Src32 ret = { 0 };
if (IS_IMM4(arg)) {
ret.tag = NULL;
ret.value = e2k_get_const_i32(ctx, GET_IMM4(arg));
} else if (IS_LIT(arg)) {
gen_literal_i32(ctx, &ret, arg);
2020-11-13 09:33:55 +01:00
} else {
2020-12-01 13:00:12 +01:00
gen_reg_i32(ctx, &ret, arg);
2020-11-13 09:33:55 +01:00
}
2020-12-01 13:00:12 +01:00
return ret;
}
static inline Src64 get_src4_i64(DisasContext *ctx, int chan)
{
uint8_t arg = extract32(ctx->bundle.als[chan], 0, 8);
Src64 ret = { 0 };
gen_reg_i64(ctx, &ret, arg);
return ret;
}
static inline Src32 get_src4_i32(DisasContext *ctx, int chan)
{
uint8_t arg = extract32(ctx->bundle.als[chan], 0, 8);
Src32 ret = { 0 };
gen_reg_i32(ctx, &ret, arg);
return ret;
}
static inline void set_al_result_reg64_tag(DisasContext *ctx, int chan,
TCGv_i64 value, TCGv_i32 tag)
{
uint8_t arg = extract32(ctx->bundle.als[chan], 0, 8);
AlResult *res = &ctx->al_results[chan];
// TODO: %ctpr, %tst, %tc, %tcd
if (arg == 0xdf) { /* %empty */
res->type = AL_RESULT_NONE;
res->reg.index = NULL;
res->reg.v64 = NULL;
res->reg.tag = NULL;
} else {
res->type = AL_RESULT_REG64;
res->reg.v64 = value;
res->reg.tag = tag;
res->reg.index = e2k_get_temp_i32(ctx);
gen_reg_index(res->reg.index, arg);
}
}
static inline void set_al_result_reg64(DisasContext *ctx, int chan,
TCGv_i64 value)
{
set_al_result_reg64_tag(ctx, chan, value, e2k_get_const_i32(ctx, 0));
}
static inline void set_al_result_reg32_tag(DisasContext *ctx, int chan,
TCGv_i32 value, TCGv_i32 tag)
{
uint8_t arg = extract32(ctx->bundle.als[chan], 0, 8);
AlResult *res = &ctx->al_results[chan];
// TODO: %ctpr, %tst, %tc, %tcd
if (arg == 0xdf) { /* %empty */
res->type = AL_RESULT_NONE;
res->reg.index = NULL;
res->reg.v32 = NULL;
res->reg.tag = NULL;
} else {
res->type = AL_RESULT_REG32;
res->reg.v32 = value;
res->reg.tag = tag;
res->reg.index = e2k_get_temp_i32(ctx);
gen_reg_index(res->reg.index, arg);
}
}
static inline void set_al_result_reg32(DisasContext *ctx, int chan,
TCGv_i32 value)
{
set_al_result_reg32_tag(ctx, chan, value, e2k_get_const_i32(ctx, 0));
}
static inline void set_al_result_preg(DisasContext *ctx, int chan, int index,
TCGv_i64 value)
{
AlResult *res = &ctx->al_results[chan];
res->type = AL_RESULT_PREG;
res->preg.index = index;
res->preg.value = value;
2020-11-13 09:33:55 +01:00
}
2020-11-12 22:46:57 +01:00
static inline void gen_andn_i32(TCGv_i32 ret, TCGv_i32 x, TCGv_i32 y)
{
TCGv_i32 t0 = tcg_temp_new_i32();
tcg_gen_and_i32(t0, x, y);
tcg_gen_not_i32(ret, t0);
tcg_temp_free_i32(t0);
}
static inline void gen_andn_i64(TCGv_i64 ret, TCGv_i64 x, TCGv_i64 y)
{
TCGv_i64 t0 = tcg_temp_new_i64();
tcg_gen_and_i64(t0, x, y);
tcg_gen_not_i64(ret, t0);
tcg_temp_free_i64(t0);
}
static inline void gen_orn_i32(TCGv_i32 ret, TCGv_i32 x, TCGv_i32 y)
{
TCGv_i32 t0 = tcg_temp_new_i32();
tcg_gen_or_i32(t0, x, y);
tcg_gen_not_i32(ret, t0);
tcg_temp_free_i32(t0);
}
static inline void gen_orn_i64(TCGv_i64 ret, TCGv_i64 x, TCGv_i64 y)
{
TCGv_i64 t0 = tcg_temp_new_i64();
tcg_gen_or_i64(t0, x, y);
tcg_gen_not_i64(ret, t0);
tcg_temp_free_i64(t0);
}
static inline void gen_xorn_i32(TCGv_i32 ret, TCGv_i32 x, TCGv_i32 y)
{
TCGv_i32 t0 = tcg_temp_new_i32();
tcg_gen_xor_i32(t0, x, y);
tcg_gen_not_i32(ret, t0);
tcg_temp_free_i32(t0);
}
static inline void gen_xorn_i64(TCGv_i64 ret, TCGv_i64 x, TCGv_i64 y)
{
TCGv_i64 t0 = tcg_temp_new_i64();
tcg_gen_xor_i64(t0, x, y);
tcg_gen_not_i64(ret, t0);
tcg_temp_free_i64(t0);
}
2020-11-24 08:30:01 +01:00
static inline void gen_getfield_i32(TCGv_i32 ret, TCGv_i32 src1,
TCGv_i32 shift, TCGv_i32 size, TCGv_i32 sign)
{
TCGv_i32 n32 = tcg_const_i32(32);
2020-11-25 20:30:23 +01:00
TCGv_i32 n1 = tcg_const_i32(1);
2020-11-24 08:30:01 +01:00
TCGv_i32 t0 = tcg_temp_new_i32();
TCGv_i32 t1 = tcg_temp_new_i32();
TCGv_i32 t2 = tcg_temp_new_i32();
TCGv_i32 t3 = tcg_temp_new_i32();
TCGv_i32 t4 = tcg_temp_new_i32();
TCGv_i32 t5 = tcg_temp_new_i32();
tcg_gen_add_i32(t0, shift, size);
tcg_gen_sub_i32(t1, n32, t0);
tcg_gen_add_i32(t2, shift, t1);
tcg_gen_shl_i32(t3, src1, t1);
tcg_gen_shr_i32(t4, t3, t2);
tcg_gen_sar_i32(t5, t3, t2);
2020-11-25 20:30:23 +01:00
tcg_gen_movcond_i32(TCG_COND_NE, ret, sign, n1, t4, t5);
2020-11-24 08:30:01 +01:00
tcg_temp_free_i32(t5);
tcg_temp_free_i32(t4);
tcg_temp_free_i32(t3);
tcg_temp_free_i32(t2);
tcg_temp_free_i32(t1);
tcg_temp_free_i32(t0);
2020-11-25 20:30:23 +01:00
tcg_temp_free_i32(n1);
2020-11-24 08:30:01 +01:00
tcg_temp_free_i32(n32);
}
static inline void gen_getfield_i64(TCGv_i64 ret, TCGv_i64 src1,
TCGv_i64 shift, TCGv_i64 size, TCGv_i64 sign)
{
TCGv_i64 n64 = tcg_const_i64(64);
2020-11-25 20:30:23 +01:00
TCGv_i64 n1 = tcg_const_i64(1);
2020-11-24 08:30:01 +01:00
TCGv_i64 t0 = tcg_temp_new_i64();
TCGv_i64 t1 = tcg_temp_new_i64();
TCGv_i64 t2 = tcg_temp_new_i64();
TCGv_i64 t3 = tcg_temp_new_i64();
TCGv_i64 t4 = tcg_temp_new_i64();
TCGv_i64 t5 = tcg_temp_new_i64();
tcg_gen_add_i64(t0, shift, size);
tcg_gen_sub_i64(t1, n64, t0);
tcg_gen_add_i64(t2, shift, t1);
tcg_gen_shl_i64(t3, src1, t1);
tcg_gen_shr_i64(t4, t3, t2);
tcg_gen_sar_i64(t5, t3, t2);
2020-11-25 20:30:23 +01:00
tcg_gen_movcond_i64(TCG_COND_NE, ret, sign, n1, t4, t5);
2020-11-24 08:30:01 +01:00
tcg_temp_free_i64(t5);
tcg_temp_free_i64(t4);
tcg_temp_free_i64(t3);
tcg_temp_free_i64(t2);
tcg_temp_free_i64(t1);
tcg_temp_free_i64(t0);
2020-11-25 20:30:23 +01:00
tcg_temp_free_i64(n1);
2020-11-24 08:30:01 +01:00
tcg_temp_free_i64(n64);
}
static inline void gen_getfs(TCGv_i32 ret, TCGv_i32 src1, TCGv_i32 src2)
{
TCGv_i32 shift = tcg_temp_new_i32();
TCGv_i32 size = tcg_temp_new_i32();
TCGv_i32 sign = tcg_temp_new_i32();
tcg_gen_extract_i32(shift, src2, 0, 5);
tcg_gen_extract_i32(size, src2, 6, 5);
2020-11-25 20:30:23 +01:00
tcg_gen_extract_i32(sign, src2, 12, 1);
2020-11-24 08:30:01 +01:00
gen_getfield_i32(ret, src1, shift, size, sign);
tcg_temp_free_i32(sign);
tcg_temp_free_i32(size);
tcg_temp_free_i32(shift);
}
static inline void gen_getfd(TCGv_i64 ret, TCGv_i64 src1, TCGv_i64 src2)
{
TCGv_i64 shift = tcg_temp_new_i64();
TCGv_i64 size = tcg_temp_new_i64();
TCGv_i64 sign = tcg_temp_new_i64();
tcg_gen_extract_i64(shift, src2, 0, 6);
tcg_gen_extract_i64(size, src2, 6, 6);
2020-11-25 20:30:23 +01:00
tcg_gen_extract_i64(sign, src2, 12, 1);
2020-11-24 08:30:01 +01:00
gen_getfield_i64(ret, src1, shift, size, sign);
tcg_temp_free_i64(sign);
tcg_temp_free_i64(size);
tcg_temp_free_i64(shift);
}
static TCGCond e2k_gen_cmp_op(unsigned int cmp_op)
{
switch(cmp_op) {
2020-11-24 21:50:33 +01:00
case 0: abort(); break;
case 1: return TCG_COND_LTU; break;
case 2: return TCG_COND_EQ; break;
case 3: return TCG_COND_LEU; break;
2020-11-24 21:50:33 +01:00
case 4: abort(); break;
case 5: abort(); break;
case 6: return TCG_COND_LT; break;
case 7: return TCG_COND_LE; break;
default: g_assert_not_reached(); break;
}
return TCG_COND_NEVER; /* unreachable */
}
2020-12-01 13:00:12 +01:00
static inline void gen_cmp_i32(TCGv_i32 ret, int opc,
TCGv_i32 src1, TCGv_i32 src2)
{
2020-12-01 13:00:12 +01:00
TCGCond cond = e2k_gen_cmp_op(opc);
tcg_gen_setcond_i32(cond, ret, src1, src2);
}
2020-12-01 13:00:12 +01:00
static inline void gen_cmp_i64(TCGv_i64 ret, int opc, TCGv_i64 src1,
TCGv_i64 src2)
{
2020-12-01 13:00:12 +01:00
TCGCond cond = e2k_gen_cmp_op(opc);
tcg_gen_setcond_i64(cond, ret, src1, src2);
}
2020-12-01 13:00:12 +01:00
static inline void gen_cmpand_i64(TCGv_i64 ret, int opc, TCGv_i64 src1,
TCGv_i64 src2)
{
TCGv_i64 t0 = tcg_temp_new_i64();
tcg_gen_and_i64(t0, src1, src2);
switch (opc) {
case 2: /* is zero */
tcg_gen_setcondi_i64(TCG_COND_EQ, ret, t0, 0);
break;
case 4: /* is negative */
tcg_gen_setcondi_i64(TCG_COND_LT, ret, t0, 0);
break;
case 5: { /* is odd and greater than 3 */
TCGv_i64 t1 = tcg_temp_new_i64();
TCGv_i64 t2 = tcg_temp_new_i64();
TCGv_i64 t3 = tcg_temp_new_i64();
tcg_gen_andi_i64(t1, t0, 1);
tcg_gen_setcondi_i64(TCG_COND_NE, t2, t1, 0);
tcg_gen_setcondi_i64(TCG_COND_GTU, t3, t0, 2);
tcg_gen_setcond_i64(TCG_COND_EQ, ret, t2, t3);
tcg_temp_free_i64(t3);
tcg_temp_free_i64(t2);
tcg_temp_free_i64(t1);
break;
}
case 7: /* signed less or equal 0 */
tcg_gen_setcondi_i64(TCG_COND_LE, ret, t0, 0);
break;
default:
2020-12-01 13:00:12 +01:00
e2k_gen_exception(E2K_EXCP_ILLOPC);
break;
}
tcg_temp_free_i64(t0);
}
2020-12-01 13:00:12 +01:00
static inline void gen_cmpand_i32(TCGv_i32 ret, int opc, TCGv_i32 src1,
TCGv_i32 src2)
{
TCGv_i32 t0 = tcg_temp_new_i32();
2020-12-01 13:00:12 +01:00
tcg_gen_and_i32(t0, src1, src2);
2020-12-01 13:00:12 +01:00
switch (opc) {
case 2: /* is zero */
tcg_gen_setcondi_i32(TCG_COND_EQ, ret, t0, 0);
break;
case 4: /* is negative */
tcg_gen_setcondi_i32(TCG_COND_LT, ret, t0, 0);
break;
case 5: { /* is odd and greater than 3 */
TCGv_i32 t1 = tcg_temp_new_i32();
TCGv_i32 t2 = tcg_temp_new_i32();
TCGv_i32 t3 = tcg_temp_new_i32();
tcg_gen_andi_i32(t1, t0, 1);
tcg_gen_setcondi_i32(TCG_COND_NE, t2, t1, 0);
tcg_gen_setcondi_i32(TCG_COND_GTU, t3, t0, 2);
tcg_gen_setcond_i32(TCG_COND_EQ, ret, t2, t3);
tcg_temp_free_i32(t3);
tcg_temp_free_i32(t2);
tcg_temp_free_i32(t1);
break;
}
case 7: /* signed less or equal 0 */
tcg_gen_setcondi_i32(TCG_COND_LE, ret, t0, 0);
break;
default:
e2k_gen_exception(E2K_EXCP_ILLOPC);
break;
}
2020-12-01 13:00:12 +01:00
tcg_temp_free_i32(t0);
}
/*
* ret[31:0] = x[31:0]
* ret[63:32] = y[63:32]
*/
static inline void gen_movehl_i64(TCGv_i64 ret, TCGv_i64 x, TCGv_i64 y)
{
TCGv_i32 lo = tcg_temp_new_i32();
TCGv_i32 hi = tcg_temp_new_i32();
tcg_gen_extrl_i64_i32(lo, x);
tcg_gen_extrh_i64_i32(hi, y);
tcg_gen_concat_i32_i64(ret, lo, hi);
tcg_temp_free_i32(hi);
tcg_temp_free_i32(lo);
}
static inline void gen_merge_i32(TCGv_i32 ret, TCGv_i32 x, TCGv_i32 y, TCGv_i32 cond)
2020-11-12 22:46:57 +01:00
{
TCGv_i32 one = tcg_const_i32(1);
tcg_gen_movcond_i32(TCG_COND_EQ, ret, cond, one, x, y);
tcg_temp_free_i32(one);
}
static inline void gen_merge_i64(TCGv_i64 ret, TCGv_i64 x, TCGv_i64 y, TCGv_i64 cond)
2020-11-12 22:46:57 +01:00
{
TCGv_i64 one = tcg_const_i64(1);
tcg_gen_movcond_i64(TCG_COND_EQ, ret, cond, one, x, y);
tcg_temp_free_i64(one);
}
static inline bool is_mrgc(uint16_t rlp, int chan)
{
int is_mrgc = GET_BIT(rlp, 15);
int cluster = GET_BIT(rlp, 14);
int alc_mask = GET_FIELD(rlp, 10, 3);
int alc = GET_BIT(alc_mask, chan % 3);
return is_mrgc && (cluster == (chan > 2)) && (alc != 0);
}
static uint16_t find_mrgc(DisasContext *dc, int chan)
{
unsigned int i;
for (i = 0; dc->bundle.cds_present[i]; i++) {
uint32_t cds = dc->bundle.cds[i];
uint16_t rlp0 = cds >> 16;
uint16_t rlp1 = cds & 0xffff;
if (is_mrgc(rlp0, chan)) {
return rlp0;
}
if (is_mrgc(rlp1, chan)) {
return rlp1;
}
}
return 0;
}
static inline bool is_cond(uint16_t rlp, int chan)
{
int is_mrgc = GET_BIT(rlp, 15);
int cluster = GET_BIT(rlp, 14);
int alc_mask = GET_FIELD(rlp, 10, 3);
int alc = GET_BIT(alc_mask, chan % 3);
return !is_mrgc && (cluster == (chan > 2)) && (alc != 0);
}
static uint16_t find_cond(DisasContext *ctx, int chan)
{
unsigned int i;
for (i = 0; ctx->bundle.cds_present[i]; i++) {
uint32_t cds = ctx->bundle.cds[i];
uint16_t rlp0 = cds >> 16;
uint16_t rlp1 = cds & 0xffff;
if (is_cond(rlp0, chan)) {
return rlp0;
}
if (is_cond(rlp1, chan)) {
return rlp1;
}
}
return 0;
}
2020-12-01 13:00:12 +01:00
static inline void gen_mrgc_i64(DisasContext *ctx, int chan, TCGv_i64 ret)
{
2020-12-01 13:00:12 +01:00
uint16_t rlp = find_mrgc(ctx, chan);
TCGv_i64 inv = tcg_const_i64(GET_BIT(rlp, 7 + chan % 3));
TCGv_i64 t0 = tcg_temp_new_i64();
TCGv_i64 t1 = tcg_temp_new_i64();
2020-12-01 13:00:12 +01:00
e2k_gen_cond_i64(ctx, t0, rlp & 0x7f);
tcg_gen_not_i64(t1, t0);
tcg_gen_movcond_i64(TCG_COND_EQ, ret, t0, inv, t0, t1);
tcg_temp_free_i64(t1);
tcg_temp_free_i64(t0);
2020-12-01 13:00:12 +01:00
tcg_temp_free_i64(inv);
}
static inline void gen_mrgc_i32(DisasContext *dc, int chan, TCGv_i32 ret)
{
TCGv_i64 t0 = tcg_temp_new_i64();
gen_mrgc_i64(dc, chan, t0);
tcg_gen_extrl_i64_i32(ret, t0);
tcg_temp_free(t0);
}
2020-12-01 13:00:12 +01:00
static inline void gen_rr_i64(DisasContext *ctx, int chan)
2020-11-13 09:33:55 +01:00
{
2020-12-01 13:00:12 +01:00
uint32_t als = ctx->bundle.als[chan];
uint8_t state_reg = extract32(als, 16, 8);
TCGv_i64 dst = e2k_get_temp_i64(ctx);
TCGv_i32 t0 = tcg_const_i32(state_reg);
2020-12-01 13:00:12 +01:00
gen_helper_state_reg_read_i64(dst, cpu_env, t0);
set_al_result_reg64(ctx, chan, dst);
tcg_temp_free_i32(t0);
2020-11-13 09:33:55 +01:00
}
2020-12-01 13:00:12 +01:00
static inline void gen_rr_i32(DisasContext *ctx, int chan)
2020-11-13 10:08:47 +01:00
{
2020-12-01 13:00:12 +01:00
uint32_t als = ctx->bundle.als[chan];
uint8_t state_reg = extract32(als, 16, 8);
TCGv_i32 dst = e2k_get_temp_i32(ctx);
TCGv_i32 t0 = tcg_const_i32(state_reg);
2020-12-01 13:00:12 +01:00
gen_helper_state_reg_read_i32(dst, cpu_env, t0);
set_al_result_reg32(ctx, chan, dst);
tcg_temp_free_i32(t0);
2020-11-13 10:08:47 +01:00
}
2020-11-13 09:33:55 +01:00
2020-12-01 13:00:12 +01:00
static inline void gen_rw_i64(DisasContext *ctx, int chan)
2020-11-13 10:08:47 +01:00
{
2020-12-01 13:00:12 +01:00
uint32_t als = ctx->bundle.als[chan];
Src64 s2 = get_src2_i64(ctx, chan);
TCGv_i32 t0 = tcg_const_i32(als & 0xff);
// TODO: check tags
gen_helper_state_reg_write_i64(cpu_env, t0, s2.value);
tcg_temp_free_i32(t0);
2020-11-13 10:08:47 +01:00
}
2020-12-01 13:00:12 +01:00
static inline void gen_rw_i32(DisasContext *ctx, int chan)
2020-11-13 10:08:47 +01:00
{
2020-12-01 13:00:12 +01:00
uint32_t als = ctx->bundle.als[chan];
Src32 s2 = get_src2_i32(ctx, chan);
TCGv_i32 t0 = tcg_const_i32(als & 0xff);
2020-11-13 10:08:47 +01:00
2020-12-01 13:00:12 +01:00
// TODO: check tags
gen_helper_state_reg_write_i32(cpu_env, t0, s2.value);
tcg_temp_free_i32(t0);
2020-11-13 10:08:47 +01:00
}
2020-12-01 13:00:12 +01:00
static void gen_getsp(DisasContext *ctx, int chan)
2020-11-13 10:08:47 +01:00
{
2020-12-01 13:00:12 +01:00
Src64 s2 = get_src2_i64(ctx, chan);
TCGv_i64 dst = e2k_get_temp_i64(ctx);
2020-11-13 10:08:47 +01:00
2020-12-01 13:00:12 +01:00
// TODO: check tags
gen_helper_getsp(dst, cpu_env, s2.value);
set_al_result_reg64(ctx, chan, dst);
2020-11-13 09:33:55 +01:00
}
2020-11-13 21:47:31 +01:00
/* FIXME: movtd: don't know what it does */
2020-12-01 13:00:12 +01:00
static void gen_movtd(DisasContext *ctx, int chan)
2020-11-13 21:47:31 +01:00
{
2020-12-01 13:00:12 +01:00
Src64 s2 = get_src2_i64(ctx, chan);
TCGv_i64 dst = e2k_get_temp_i64(ctx);
2020-11-13 21:47:31 +01:00
2020-12-01 13:00:12 +01:00
tcg_gen_mov_i64(dst, s2.value);
set_al_result_reg64(ctx, chan, dst);
2020-11-13 21:47:31 +01:00
}
2020-11-24 21:41:27 +01:00
static MemOp gen_mas(DisasContext *ctx, int chan, MemOp memop, TCGv_i64 addr)
{
uint8_t mas = ctx->mas[chan];
if ((mas & 0x7) == 7) {
// TODO: special mas
2020-11-28 08:44:53 +01:00
e2k_tr_gen_exception(ctx, E2K_EXCP_ILLOPC);
2020-11-24 21:41:27 +01:00
} else if (mas) {
int mod = extract8(mas, 0, 3);
// int dc = extract8(mas, 5, 2);
if (mod != 0) {
// TODO: mas modes
2020-11-28 08:44:53 +01:00
e2k_tr_gen_exception(ctx, E2K_EXCP_ILLOPC);
2020-11-24 21:41:27 +01:00
}
memop |= GET_BIT(mas, 3) ? MO_BE : MO_LE;
memop |= GET_BIT(mas, 4) ? MO_UNALN : MO_ALIGN;
} else {
memop |= MO_LE | MO_ALIGN;
}
return memop;
}
2020-12-01 13:00:12 +01:00
static void gen_ld(DisasContext *ctx, int chan, MemOp memop)
2020-11-13 10:36:34 +01:00
{
2020-12-01 13:00:12 +01:00
Src64 s1 = get_src1_i64(ctx, chan);
Src64 s2 = get_src2_i64(ctx, chan);
2020-11-13 10:36:34 +01:00
TCGv_i64 t0 = tcg_temp_new_i64();
2020-12-01 13:00:12 +01:00
TCGv_i64 dst = e2k_get_temp_i64(ctx);
2020-11-13 10:36:34 +01:00
2020-12-01 13:00:12 +01:00
// TODO: check tags
tcg_gen_add_i64(t0, s1.value, s2.value);
memop = gen_mas(ctx, chan, memop, t0);
tcg_gen_qemu_ld_i64(dst, t0, ctx->mmuidx, memop);
set_al_result_reg64(ctx, chan, dst);
2020-11-13 10:36:34 +01:00
tcg_temp_free_i64(t0);
}
2020-12-01 13:00:12 +01:00
static void gen_st(DisasContext *ctx, int chan, MemOp memop)
2020-11-13 10:50:26 +01:00
{
2020-12-01 13:00:12 +01:00
Src64 s1 = get_src1_i64(ctx, chan);
Src64 s2 = get_src2_i64(ctx, chan);
Src64 s4 = get_src4_i64(ctx, chan);
2020-11-13 10:50:26 +01:00
TCGv_i64 t0 = tcg_temp_new_i64();
2020-12-01 13:00:12 +01:00
// TODO: check tags
tcg_gen_add_i64(t0, s1.value, s2.value);
memop = gen_mas(ctx, chan, memop, t0);
tcg_gen_qemu_st_i64(s4.value, t0, ctx->mmuidx, memop);
2020-11-13 10:50:26 +01:00
tcg_temp_free_i64(t0);
}
2020-12-01 13:00:12 +01:00
static void gen_alopf1_i32(DisasContext *ctx, int chan,
2020-11-11 20:03:51 +01:00
void (*op)(TCGv_i32, TCGv_i32, TCGv_i32))
{
2020-12-01 13:00:12 +01:00
Src32 s1 = get_src1_i32(ctx, chan);
Src32 s2 = get_src2_i32(ctx, chan);
TCGv_i32 dst = e2k_get_temp_i32(ctx);
// TODO: check tags
(*op)(dst, s1.value, s2.value);
set_al_result_reg32(ctx, chan, dst);
}
2020-11-11 20:03:51 +01:00
2020-12-01 13:00:12 +01:00
static void gen_alopf1_i64(DisasContext *ctx, int chan,
void (*op)(TCGv_i64, TCGv_i64, TCGv_i64))
{
Src64 s1 = get_src1_i64(ctx, chan);
Src64 s2 = get_src2_i64(ctx, chan);
TCGv_i64 dst = e2k_get_temp_i64(ctx);
2020-11-11 20:03:51 +01:00
2020-12-01 13:00:12 +01:00
// TODO: check tags
(*op)(dst, s1.value, s2.value);
set_al_result_reg64(ctx, chan, dst);
2020-11-11 20:03:51 +01:00
}
2020-12-01 13:00:12 +01:00
static void gen_alopf1_cmp_i64(DisasContext *ctx, int chan,
void (*op)(TCGv_i64, int, TCGv_i64, TCGv_i64))
2020-11-11 20:03:51 +01:00
{
2020-12-01 13:00:12 +01:00
uint32_t als = ctx->bundle.als[chan];
int opc = extract32(als, 5, 3);
int idx = extract32(als, 0, 5);
Src64 s1 = get_src1_i64(ctx, chan);
Src64 s2 = get_src2_i64(ctx, chan);
TCGv_i64 dst = e2k_get_temp_i64(ctx);
2020-11-11 20:03:51 +01:00
2020-12-01 13:00:12 +01:00
// TODO: check tags
(*op)(dst, opc, s1.value, s2.value);
set_al_result_preg(ctx, chan, idx, dst);
2020-11-11 20:03:51 +01:00
}
2020-12-01 13:00:12 +01:00
static void gen_alopf1_cmp_i32(DisasContext *ctx, int chan,
void (*op)(TCGv_i32, int, TCGv_i32, TCGv_i32))
2020-11-11 20:03:51 +01:00
{
2020-12-01 13:00:12 +01:00
uint32_t als = ctx->bundle.als[chan];
int opc = extract32(als, 5, 3);
int idx = extract32(als, 0, 5);
Src32 s1 = get_src1_i32(ctx, chan);
Src32 s2 = get_src2_i32(ctx, chan);
TCGv_i64 dst = e2k_get_temp_i64(ctx);
TCGv_i32 t0 = tcg_temp_new_i32();
2020-11-12 22:46:57 +01:00
2020-12-01 13:00:12 +01:00
// TODO: check tags
(*op)(t0, opc, s1.value, s2.value);
tcg_gen_extu_i32_i64(dst, t0);
tcg_temp_free_i32(t0);
set_al_result_preg(ctx, chan, idx, dst);
2020-11-12 22:46:57 +01:00
}
2020-12-01 13:00:12 +01:00
static void gen_alopf1_mrgc_i32(DisasContext *ctx, int chan)
{
2020-12-01 13:00:12 +01:00
Src64 s1 = get_src1_i64(ctx, chan);
Src64 s2 = get_src2_i64(ctx, chan);
TCGv_i32 dst = e2k_get_temp_i32(ctx);
TCGv_i64 cond = tcg_temp_new_i64();
2020-12-01 13:00:12 +01:00
TCGv_i64 t0 = tcg_temp_new_i64();
2020-12-01 13:00:12 +01:00
// TODO: check tags
gen_mrgc_i64(ctx, chan, cond);
gen_merge_i64(t0, s1.value, s2.value, cond);
tcg_gen_extrl_i64_i32(dst, t0);
set_al_result_reg32(ctx, chan, dst);
tcg_temp_free_i64(t0);
2020-12-01 13:00:12 +01:00
tcg_temp_free_i64(cond);
}
2020-12-01 13:00:12 +01:00
static void gen_alopf1_mrgc_i64(DisasContext *ctx, int chan)
{
2020-12-01 13:00:12 +01:00
Src64 s1 = get_src1_i64(ctx, chan);
Src64 s2 = get_src2_i64(ctx, chan);
TCGv_i64 cond = tcg_temp_new_i64();
2020-12-01 13:00:12 +01:00
TCGv_i64 dst = e2k_get_temp_i64(ctx);
2020-12-01 13:00:12 +01:00
// TODO: check tags
gen_mrgc_i64(ctx, chan, cond);
gen_merge_i64(dst, s1.value, s2.value, cond);
set_al_result_reg64(ctx, chan, dst);
tcg_temp_free_i64(cond);
}
static void execute_alopf_simple(DisasContext *dc, int chan)
2020-11-12 22:46:57 +01:00
{
uint32_t als = dc->bundle.als[chan];
int opc = GET_FIELD(als, 24, 7);
2020-11-11 20:03:51 +01:00
switch(opc) {
2020-11-12 22:46:57 +01:00
case 0x00: /* ands */ gen_alopf1_i32(dc, chan, tcg_gen_and_i32); break;
case 0x01: /* andd */ gen_alopf1_i64(dc, chan, tcg_gen_and_i64); break;
case 0x02: /* andns */ gen_alopf1_i32(dc, chan, gen_andn_i32); break;
case 0x03: /* andnd */ gen_alopf1_i64(dc, chan, gen_andn_i64); break;
case 0x04: /* ors */ gen_alopf1_i32(dc, chan, tcg_gen_or_i32); break;
case 0x05: /* ord */ gen_alopf1_i64(dc, chan, tcg_gen_or_i64); break;
case 0x06: /* orns */ gen_alopf1_i32(dc, chan, gen_orn_i32); break;
case 0x07: /* ornd */ gen_alopf1_i64(dc, chan, gen_orn_i64); break;
case 0x08: /* xors */ gen_alopf1_i32(dc, chan, tcg_gen_xor_i32); break;
case 0x09: /* xord */ gen_alopf1_i64(dc, chan, tcg_gen_xor_i64); break;
case 0x0a: /* xorns */ gen_alopf1_i32(dc, chan, gen_xorn_i32); break;
case 0x0b: /* xornd */ gen_alopf1_i64(dc, chan, gen_xorn_i64); break;
case 0x0c: /* sxt */ gen_alopf1_i64(dc, chan, gen_helper_sxt); break;
case 0x0e: /* merges */ gen_alopf1_mrgc_i32(dc, chan); break;
case 0x0f: /* merged */ gen_alopf1_mrgc_i64(dc, chan); break;
2020-11-12 22:46:57 +01:00
case 0x10: /* adds */ gen_alopf1_i32(dc, chan, tcg_gen_add_i32); break;
case 0x11: /* addd */ gen_alopf1_i64(dc, chan, tcg_gen_add_i64); break;
case 0x12: /* subs */ gen_alopf1_i32(dc, chan, tcg_gen_sub_i32); break;
case 0x13: /* subd */ gen_alopf1_i64(dc, chan, tcg_gen_sub_i64); break;
case 0x14: /* scls */ gen_alopf1_i32(dc, chan, tcg_gen_rotl_i32); break;
case 0x15: /* scld */ gen_alopf1_i64(dc, chan, tcg_gen_rotl_i64); break;
case 0x16: /* scrs */ gen_alopf1_i32(dc, chan, tcg_gen_rotr_i32); break;
case 0x17: /* scrd */ gen_alopf1_i64(dc, chan, tcg_gen_rotr_i64); break;
case 0x18: /* shls */ gen_alopf1_i32(dc, chan, tcg_gen_shl_i32); break;
case 0x19: /* shld */ gen_alopf1_i64(dc, chan, tcg_gen_shl_i64); break;
case 0x1a: /* shrs */ gen_alopf1_i32(dc, chan, tcg_gen_shr_i32); break;
case 0x1b: /* shrd */ gen_alopf1_i64(dc, chan, tcg_gen_shr_i64); break;
case 0x1c: /* sars */ gen_alopf1_i32(dc, chan, tcg_gen_sar_i32); break;
case 0x1d: /* sard */ gen_alopf1_i64(dc, chan, tcg_gen_sar_i64); break;
2020-11-24 08:30:01 +01:00
case 0x1e: /* getfs */ gen_alopf1_i32(dc, chan, gen_getfs); break;
case 0x1f: /* getfd */ gen_alopf1_i64(dc, chan, gen_getfd); break;
case 0x20:
if (is_cmp_chan(chan)) {
2020-12-01 13:00:12 +01:00
gen_alopf1_cmp_i32(dc, chan, gen_cmp_i32); /* cmp{op}sb */
} else {
abort();
}
2020-11-23 16:26:34 +01:00
break;
case 0x21:
if (is_cmp_chan(chan)) {
2020-12-01 13:00:12 +01:00
gen_alopf1_cmp_i64(dc, chan, gen_cmp_i64); /* cmp{op}db */
} else {
abort();
}
break;
case 0x22:
if (is_cmp_chan(chan)) {
2020-12-01 13:00:12 +01:00
gen_alopf1_cmp_i32(dc, chan, gen_cmpand_i32); /* cmpand{op}sb */
} else {
abort();
}
break;
case 0x23:
if (is_cmp_chan(chan)) {
2020-12-01 13:00:12 +01:00
gen_alopf1_cmp_i64(dc, chan, gen_cmpand_i64); /* cmpand{op}db */
} else {
abort();
}
2020-11-11 20:03:51 +01:00
break;
2020-11-13 10:50:26 +01:00
case 0x24: { /* stb */
if (is_store_chan(chan)) {
2020-11-13 10:50:26 +01:00
gen_st(dc, chan, MO_UB);
} else {
2020-11-24 21:50:33 +01:00
abort();
2020-11-13 10:50:26 +01:00
}
break;
}
case 0x25: { /* sth */
if (is_store_chan(chan)) {
2020-11-24 21:41:27 +01:00
gen_st(dc, chan, MO_UW);
2020-11-13 10:50:26 +01:00
} else {
2020-11-24 21:50:33 +01:00
abort();
2020-11-13 10:50:26 +01:00
}
break;
}
case 0x26: { /* stw */
if (is_store_chan(chan)) {
2020-11-24 21:41:27 +01:00
gen_st(dc, chan, MO_UL);
2020-11-13 10:50:26 +01:00
} else {
2020-11-24 21:50:33 +01:00
abort();
2020-11-13 10:50:26 +01:00
}
break;
}
case 0x27: { /* std */
if (is_store_chan(chan)) {
2020-11-24 21:41:27 +01:00
gen_st(dc, chan, MO_Q);
2020-11-13 10:50:26 +01:00
} else {
2020-11-24 21:50:33 +01:00
abort();
2020-11-13 10:50:26 +01:00
}
break;
}
2020-11-25 18:55:35 +01:00
case 0x40:
if (is_div_chan(chan)) {
// FIXME: temp hack
TCGLabel *l0 = gen_new_label();
2020-12-01 13:00:12 +01:00
Src64 s2 = get_src2_i64(dc, chan);
tcg_gen_brcondi_i64(TCG_COND_NE, s2.value, 0, l0);
e2k_gen_exception(0);
gen_set_label(l0);
2020-11-25 18:55:35 +01:00
gen_alopf1_i32(dc, chan, tcg_gen_divu_i32);
} else {
abort();
}
break;
case 0x41:
if (is_div_chan(chan)) {
2020-11-25 18:55:35 +01:00
gen_alopf1_i64(dc, chan, tcg_gen_divu_i64);
} else {
abort();
}
break;
case 0x42:
if (is_div_chan(chan)) {
2020-11-25 18:55:35 +01:00
gen_alopf1_i32(dc, chan, tcg_gen_div_i32);
} else {
abort();
}
break;
case 0x43:
if (is_div_chan(chan)) {
2020-11-25 18:55:35 +01:00
gen_alopf1_i64(dc, chan, tcg_gen_div_i64);
} else {
abort();
}
2020-11-11 20:03:51 +01:00
break;
2020-11-13 21:47:31 +01:00
case 0x61:
if (chan == 2 || chan == 5) {
2020-11-24 21:50:33 +01:00
abort();
2020-11-13 21:47:31 +01:00
} else {
gen_movtd(dc, chan);
}
break;
2020-11-13 10:36:34 +01:00
case 0x64: { /* ldb */
if (is_load_chan(chan)) {
2020-11-13 10:36:34 +01:00
gen_ld(dc, chan, MO_UB);
} else {
abort();
2020-11-13 10:36:34 +01:00
}
break;
}
case 0x65: { /* ldh */
if (is_load_chan(chan)) {
2020-11-24 21:41:27 +01:00
gen_ld(dc, chan, MO_UW);
} else {
abort();
2020-11-13 10:36:34 +01:00
}
break;
}
case 0x66: { /* ldw */
if (is_load_chan(chan)) {
2020-11-24 21:41:27 +01:00
gen_ld(dc, chan, MO_UL);
} else {
abort();
2020-11-13 10:36:34 +01:00
}
break;
}
case 0x67: { /* ldd */
if (is_load_chan(chan)) {
2020-11-24 21:41:27 +01:00
gen_ld(dc, chan, MO_Q);
} else {
abort();
2020-11-13 10:36:34 +01:00
}
break;
}
2020-11-11 20:03:51 +01:00
default:
2020-11-28 08:44:53 +01:00
e2k_tr_gen_exception(dc, E2K_EXCP_ILLOPC);
2020-11-11 20:03:51 +01:00
break;
}
2020-11-12 22:46:57 +01:00
}
2020-11-11 20:03:51 +01:00
static void execute_ext1(DisasContext *dc, int chan)
2020-11-13 09:33:55 +01:00
{
uint8_t opc = GET_FIELD(dc->bundle.als[chan], 24, 7);
2020-11-13 09:33:55 +01:00
switch (opc) {
2020-11-13 10:08:47 +01:00
case 0x58: {
if (chan == 0 || chan == 3) {
gen_getsp(dc, chan);
}
/* TODO: exception */
break;
}
2020-12-01 13:00:12 +01:00
case 0x3c: /* rws */ gen_rw_i32(dc, chan); break; /* TODO: only channel 1 */
case 0x3d: /* rwd */ gen_rw_i64(dc, chan); break; /* TODO: only channel 1 */
case 0x3e: /* rrs */ gen_rr_i32(dc, chan); break; /* TODO: only channel 1 */
case 0x3f: /* rrd */ gen_rr_i64(dc, chan); break; /* TODO: only channel 1 */
2020-11-13 09:33:55 +01:00
default:
/* TODO: exception */
break;
}
}
2020-12-01 13:00:12 +01:00
void e2k_alc_execute(DisasContext *ctx, int chan)
2020-11-12 22:46:57 +01:00
{
const UnpackedBundle *bundle = &ctx->bundle;
uint16_t rlp = find_cond(ctx, chan);
TCGLabel *l0 = gen_new_label();
TCGv_i64 cond = NULL;
2020-11-12 22:46:57 +01:00
if (rlp != 0) {
TCGv_i64 t0 = tcg_temp_new_i64();
uint8_t psrc = GET_FIELD(rlp, 0, 7);
bool neg = GET_BIT(rlp, 7 + chan % 3);
e2k_gen_cond_i64(ctx, t0, psrc);
cond = e2k_get_temp_i64(ctx);
tcg_gen_xori_i64(cond, t0, neg);
tcg_gen_brcondi_i64(TCG_COND_EQ, cond, 0, l0);
tcg_temp_free_i64(t0);
}
switch(bundle->ales_present[chan]) {
2020-11-12 22:46:57 +01:00
case ALES_NONE:
execute_alopf_simple(ctx, chan);
2020-11-12 22:46:57 +01:00
break;
case ALES_ALLOCATED: // 2 or 5 channel
2020-11-28 08:44:53 +01:00
e2k_tr_gen_exception(ctx, E2K_EXCP_ILLOPC);
2020-11-12 22:46:57 +01:00
break;
2020-11-13 09:33:55 +01:00
case ALES_PRESENT: {
uint8_t opc = GET_FIELD(bundle->ales[chan], 8, 8);
2020-11-13 09:33:55 +01:00
switch (opc) {
case 0x01:
execute_ext1(ctx, chan);
2020-11-13 09:33:55 +01:00
break;
default:
2020-11-28 08:44:53 +01:00
e2k_tr_gen_exception(ctx, E2K_EXCP_ILLOPC);
2020-11-13 09:33:55 +01:00
break;
}
2020-11-12 22:46:57 +01:00
break;
2020-11-13 09:33:55 +01:00
}
2020-11-12 22:46:57 +01:00
default:
g_assert_not_reached();
break;
}
gen_set_label(l0);
2020-12-01 13:00:12 +01:00
ctx->al_cond[chan].is_set = rlp != 0;
ctx->al_cond[chan].value = cond;
}
void e2k_alc_commit(DisasContext *ctx)
{
unsigned int i;
for (i = 0; i < 6; i++) {
TCGLabel *l0;
AlResult *res = &ctx->al_results[i];
AlCond *cond = &ctx->al_cond[i];
if (!ctx->bundle.als_present[i]) {
continue;
}
if (res->type != AL_RESULT_NONE && cond->is_set) {
l0 = gen_new_label();
tcg_gen_brcondi_i64(TCG_COND_EQ, cond->value, 0, l0);
}
switch(res->type) {
case AL_RESULT_REG32:
e2k_gen_reg_tag_write_i32(res->reg.tag, res->reg.index);
e2k_gen_reg_write_i32(res->reg.v32, res->reg.index);
break;
case AL_RESULT_REG64:
e2k_gen_reg_tag_write_i64(res->reg.tag, res->reg.index);
e2k_gen_reg_write_i64(res->reg.v64, res->reg.index);
break;
case AL_RESULT_PREG:
// TODO: write predicate register tag
e2k_gen_store_preg(res->preg.index, res->preg.value);
break;
default:
break;
}
if (res->type != AL_RESULT_NONE && cond->is_set) {
gen_set_label(l0);
}
}
2020-11-11 20:03:51 +01:00
}