target-microblaze: Replace DisasContext::env field with MicroBlazeCPU
This cleans up some mb_env_get_cpu() needed for cpu_abort(). Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
0dd106c5f0
commit
0063ebd6ac
@ -56,7 +56,7 @@ static TCGv env_res_val;
|
|||||||
|
|
||||||
/* This is the state at translation time. */
|
/* This is the state at translation time. */
|
||||||
typedef struct DisasContext {
|
typedef struct DisasContext {
|
||||||
CPUMBState *env;
|
MicroBlazeCPU *cpu;
|
||||||
target_ulong pc;
|
target_ulong pc;
|
||||||
|
|
||||||
/* Decoder. */
|
/* Decoder. */
|
||||||
@ -327,8 +327,8 @@ static void dec_pattern(DisasContext *dc)
|
|||||||
int l1;
|
int l1;
|
||||||
|
|
||||||
if ((dc->tb_flags & MSR_EE_FLAG)
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
||||||
&& (dc->env->pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
||||||
&& !((dc->env->pvr.regs[2] & PVR2_USE_PCMP_INSTR))) {
|
&& !((dc->cpu->env.pvr.regs[2] & PVR2_USE_PCMP_INSTR))) {
|
||||||
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
||||||
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
||||||
}
|
}
|
||||||
@ -370,7 +370,7 @@ static void dec_pattern(DisasContext *dc)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
cpu_abort(CPU(mb_env_get_cpu(dc->env)),
|
cpu_abort(CPU(dc->cpu),
|
||||||
"unsupported pattern insn opcode=%x\n", dc->opcode);
|
"unsupported pattern insn opcode=%x\n", dc->opcode);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -441,11 +441,10 @@ static inline void msr_write(DisasContext *dc, TCGv v)
|
|||||||
|
|
||||||
static void dec_msr(DisasContext *dc)
|
static void dec_msr(DisasContext *dc)
|
||||||
{
|
{
|
||||||
MicroBlazeCPU *cpu = mb_env_get_cpu(dc->env);
|
CPUState *cs = CPU(dc->cpu);
|
||||||
CPUState *cs = CPU(cpu);
|
|
||||||
TCGv t0, t1;
|
TCGv t0, t1;
|
||||||
unsigned int sr, to, rn;
|
unsigned int sr, to, rn;
|
||||||
int mem_index = cpu_mmu_index(dc->env);
|
int mem_index = cpu_mmu_index(&dc->cpu->env);
|
||||||
|
|
||||||
sr = dc->imm & ((1 << 14) - 1);
|
sr = dc->imm & ((1 << 14) - 1);
|
||||||
to = dc->imm & (1 << 14);
|
to = dc->imm & (1 << 14);
|
||||||
@ -460,7 +459,7 @@ static void dec_msr(DisasContext *dc)
|
|||||||
LOG_DIS("msr%s r%d imm=%x\n", clr ? "clr" : "set",
|
LOG_DIS("msr%s r%d imm=%x\n", clr ? "clr" : "set",
|
||||||
dc->rd, dc->imm);
|
dc->rd, dc->imm);
|
||||||
|
|
||||||
if (!(dc->env->pvr.regs[2] & PVR2_USE_MSR_INSTR)) {
|
if (!(dc->cpu->env.pvr.regs[2] & PVR2_USE_MSR_INSTR)) {
|
||||||
/* nop??? */
|
/* nop??? */
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -539,7 +538,7 @@ static void dec_msr(DisasContext *dc)
|
|||||||
tcg_gen_st_tl(cpu_R[dc->ra], cpu_env, offsetof(CPUMBState, shr));
|
tcg_gen_st_tl(cpu_R[dc->ra], cpu_env, offsetof(CPUMBState, shr));
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
cpu_abort(CPU(mb_env_get_cpu(dc->env)), "unknown mts reg %x\n", sr);
|
cpu_abort(CPU(dc->cpu), "unknown mts reg %x\n", sr);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -645,8 +644,8 @@ static void dec_mul(DisasContext *dc)
|
|||||||
unsigned int subcode;
|
unsigned int subcode;
|
||||||
|
|
||||||
if ((dc->tb_flags & MSR_EE_FLAG)
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
||||||
&& (dc->env->pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
||||||
&& !(dc->env->pvr.regs[0] & PVR0_USE_HW_MUL_MASK)) {
|
&& !(dc->cpu->env.pvr.regs[0] & PVR0_USE_HW_MUL_MASK)) {
|
||||||
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
||||||
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
||||||
return;
|
return;
|
||||||
@ -664,7 +663,7 @@ static void dec_mul(DisasContext *dc)
|
|||||||
|
|
||||||
/* mulh, mulhsu and mulhu are not available if C_USE_HW_MUL is < 2. */
|
/* mulh, mulhsu and mulhu are not available if C_USE_HW_MUL is < 2. */
|
||||||
if (subcode >= 1 && subcode <= 3
|
if (subcode >= 1 && subcode <= 3
|
||||||
&& !((dc->env->pvr.regs[2] & PVR2_USE_MUL64_MASK))) {
|
&& !((dc->cpu->env.pvr.regs[2] & PVR2_USE_MUL64_MASK))) {
|
||||||
/* nop??? */
|
/* nop??? */
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -686,7 +685,7 @@ static void dec_mul(DisasContext *dc)
|
|||||||
t_gen_mulu(d[0], cpu_R[dc->rd], cpu_R[dc->ra], cpu_R[dc->rb]);
|
t_gen_mulu(d[0], cpu_R[dc->rd], cpu_R[dc->ra], cpu_R[dc->rb]);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
cpu_abort(CPU(mb_env_get_cpu(dc->env)), "unknown MUL insn %x\n", subcode);
|
cpu_abort(CPU(dc->cpu), "unknown MUL insn %x\n", subcode);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
done:
|
done:
|
||||||
@ -702,8 +701,8 @@ static void dec_div(DisasContext *dc)
|
|||||||
u = dc->imm & 2;
|
u = dc->imm & 2;
|
||||||
LOG_DIS("div\n");
|
LOG_DIS("div\n");
|
||||||
|
|
||||||
if ((dc->env->pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
if ((dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
||||||
&& !((dc->env->pvr.regs[0] & PVR0_USE_DIV_MASK))) {
|
&& !((dc->cpu->env.pvr.regs[0] & PVR0_USE_DIV_MASK))) {
|
||||||
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
||||||
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
||||||
}
|
}
|
||||||
@ -724,8 +723,8 @@ static void dec_barrel(DisasContext *dc)
|
|||||||
unsigned int s, t;
|
unsigned int s, t;
|
||||||
|
|
||||||
if ((dc->tb_flags & MSR_EE_FLAG)
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
||||||
&& (dc->env->pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
||||||
&& !(dc->env->pvr.regs[0] & PVR0_USE_BARREL_MASK)) {
|
&& !(dc->cpu->env.pvr.regs[0] & PVR0_USE_BARREL_MASK)) {
|
||||||
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
||||||
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
||||||
return;
|
return;
|
||||||
@ -754,11 +753,10 @@ static void dec_barrel(DisasContext *dc)
|
|||||||
|
|
||||||
static void dec_bit(DisasContext *dc)
|
static void dec_bit(DisasContext *dc)
|
||||||
{
|
{
|
||||||
MicroBlazeCPU *cpu = mb_env_get_cpu(dc->env);
|
CPUState *cs = CPU(dc->cpu);
|
||||||
CPUState *cs = CPU(cpu);
|
|
||||||
TCGv t0;
|
TCGv t0;
|
||||||
unsigned int op;
|
unsigned int op;
|
||||||
int mem_index = cpu_mmu_index(dc->env);
|
int mem_index = cpu_mmu_index(&dc->cpu->env);
|
||||||
|
|
||||||
op = dc->ir & ((1 << 9) - 1);
|
op = dc->ir & ((1 << 9) - 1);
|
||||||
switch (op) {
|
switch (op) {
|
||||||
@ -823,12 +821,12 @@ static void dec_bit(DisasContext *dc)
|
|||||||
break;
|
break;
|
||||||
case 0xe0:
|
case 0xe0:
|
||||||
if ((dc->tb_flags & MSR_EE_FLAG)
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
||||||
&& (dc->env->pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
||||||
&& !((dc->env->pvr.regs[2] & PVR2_USE_PCMP_INSTR))) {
|
&& !((dc->cpu->env.pvr.regs[2] & PVR2_USE_PCMP_INSTR))) {
|
||||||
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
||||||
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
||||||
}
|
}
|
||||||
if (dc->env->pvr.regs[2] & PVR2_USE_PCMP_INSTR) {
|
if (dc->cpu->env.pvr.regs[2] & PVR2_USE_PCMP_INSTR) {
|
||||||
gen_helper_clz(cpu_R[dc->rd], cpu_R[dc->ra]);
|
gen_helper_clz(cpu_R[dc->rd], cpu_R[dc->ra]);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@ -937,7 +935,7 @@ static void dec_load(DisasContext *dc)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (size > 4 && (dc->tb_flags & MSR_EE_FLAG)
|
if (size > 4 && (dc->tb_flags & MSR_EE_FLAG)
|
||||||
&& (dc->env->pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)) {
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)) {
|
||||||
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
||||||
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
||||||
return;
|
return;
|
||||||
@ -995,7 +993,7 @@ static void dec_load(DisasContext *dc)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
cpu_abort(CPU(mb_env_get_cpu(dc->env)), "Invalid reverse size\n");
|
cpu_abort(CPU(dc->cpu), "Invalid reverse size\n");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1022,9 +1020,9 @@ static void dec_load(DisasContext *dc)
|
|||||||
* address and if that succeeds we write into the destination reg.
|
* address and if that succeeds we write into the destination reg.
|
||||||
*/
|
*/
|
||||||
v = tcg_temp_new();
|
v = tcg_temp_new();
|
||||||
tcg_gen_qemu_ld_tl(v, *addr, cpu_mmu_index(dc->env), mop);
|
tcg_gen_qemu_ld_tl(v, *addr, cpu_mmu_index(&dc->cpu->env), mop);
|
||||||
|
|
||||||
if ((dc->env->pvr.regs[2] & PVR2_UNALIGNED_EXC_MASK) && size > 1) {
|
if ((dc->cpu->env.pvr.regs[2] & PVR2_UNALIGNED_EXC_MASK) && size > 1) {
|
||||||
tcg_gen_movi_tl(cpu_SR[SR_PC], dc->pc);
|
tcg_gen_movi_tl(cpu_SR[SR_PC], dc->pc);
|
||||||
gen_helper_memalign(cpu_env, *addr, tcg_const_tl(dc->rd),
|
gen_helper_memalign(cpu_env, *addr, tcg_const_tl(dc->rd),
|
||||||
tcg_const_tl(0), tcg_const_tl(size - 1));
|
tcg_const_tl(0), tcg_const_tl(size - 1));
|
||||||
@ -1067,7 +1065,7 @@ static void dec_store(DisasContext *dc)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (size > 4 && (dc->tb_flags & MSR_EE_FLAG)
|
if (size > 4 && (dc->tb_flags & MSR_EE_FLAG)
|
||||||
&& (dc->env->pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)) {
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)) {
|
||||||
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
||||||
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
||||||
return;
|
return;
|
||||||
@ -1100,7 +1098,8 @@ static void dec_store(DisasContext *dc)
|
|||||||
this compare and the following write to be atomic. For user
|
this compare and the following write to be atomic. For user
|
||||||
emulation we need to add atomicity between threads. */
|
emulation we need to add atomicity between threads. */
|
||||||
tval = tcg_temp_new();
|
tval = tcg_temp_new();
|
||||||
tcg_gen_qemu_ld_tl(tval, swx_addr, cpu_mmu_index(dc->env), MO_TEUL);
|
tcg_gen_qemu_ld_tl(tval, swx_addr, cpu_mmu_index(&dc->cpu->env),
|
||||||
|
MO_TEUL);
|
||||||
tcg_gen_brcond_tl(TCG_COND_NE, env_res_val, tval, swx_skip);
|
tcg_gen_brcond_tl(TCG_COND_NE, env_res_val, tval, swx_skip);
|
||||||
write_carryi(dc, 0);
|
write_carryi(dc, 0);
|
||||||
tcg_temp_free(tval);
|
tcg_temp_free(tval);
|
||||||
@ -1146,14 +1145,14 @@ static void dec_store(DisasContext *dc)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
cpu_abort(CPU(mb_env_get_cpu(dc->env)), "Invalid reverse size\n");
|
cpu_abort(CPU(dc->cpu), "Invalid reverse size\n");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
tcg_gen_qemu_st_tl(cpu_R[dc->rd], *addr, cpu_mmu_index(dc->env), mop);
|
tcg_gen_qemu_st_tl(cpu_R[dc->rd], *addr, cpu_mmu_index(&dc->cpu->env), mop);
|
||||||
|
|
||||||
/* Verify alignment if needed. */
|
/* Verify alignment if needed. */
|
||||||
if ((dc->env->pvr.regs[2] & PVR2_UNALIGNED_EXC_MASK) && size > 1) {
|
if ((dc->cpu->env.pvr.regs[2] & PVR2_UNALIGNED_EXC_MASK) && size > 1) {
|
||||||
tcg_gen_movi_tl(cpu_SR[SR_PC], dc->pc);
|
tcg_gen_movi_tl(cpu_SR[SR_PC], dc->pc);
|
||||||
/* FIXME: if the alignment is wrong, we should restore the value
|
/* FIXME: if the alignment is wrong, we should restore the value
|
||||||
* in memory. One possible way to achieve this is to probe
|
* in memory. One possible way to achieve this is to probe
|
||||||
@ -1197,7 +1196,7 @@ static inline void eval_cc(DisasContext *dc, unsigned int cc,
|
|||||||
tcg_gen_setcond_tl(TCG_COND_GT, d, a, b);
|
tcg_gen_setcond_tl(TCG_COND_GT, d, a, b);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
cpu_abort(CPU(mb_env_get_cpu(dc->env)), "Unknown condition code %x.\n", cc);
|
cpu_abort(CPU(dc->cpu), "Unknown condition code %x.\n", cc);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1248,7 +1247,7 @@ static void dec_bcc(DisasContext *dc)
|
|||||||
static void dec_br(DisasContext *dc)
|
static void dec_br(DisasContext *dc)
|
||||||
{
|
{
|
||||||
unsigned int dslot, link, abs, mbar;
|
unsigned int dslot, link, abs, mbar;
|
||||||
int mem_index = cpu_mmu_index(dc->env);
|
int mem_index = cpu_mmu_index(&dc->cpu->env);
|
||||||
|
|
||||||
dslot = dc->ir & (1 << 20);
|
dslot = dc->ir & (1 << 20);
|
||||||
abs = dc->ir & (1 << 19);
|
abs = dc->ir & (1 << 19);
|
||||||
@ -1380,7 +1379,7 @@ static inline void do_rte(DisasContext *dc)
|
|||||||
static void dec_rts(DisasContext *dc)
|
static void dec_rts(DisasContext *dc)
|
||||||
{
|
{
|
||||||
unsigned int b_bit, i_bit, e_bit;
|
unsigned int b_bit, i_bit, e_bit;
|
||||||
int mem_index = cpu_mmu_index(dc->env);
|
int mem_index = cpu_mmu_index(&dc->cpu->env);
|
||||||
|
|
||||||
i_bit = dc->ir & (1 << 21);
|
i_bit = dc->ir & (1 << 21);
|
||||||
b_bit = dc->ir & (1 << 22);
|
b_bit = dc->ir & (1 << 22);
|
||||||
@ -1427,7 +1426,7 @@ static int dec_check_fpuv2(DisasContext *dc)
|
|||||||
{
|
{
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
r = dc->env->pvr.regs[2] & PVR2_USE_FPU2_MASK;
|
r = dc->cpu->env.pvr.regs[2] & PVR2_USE_FPU2_MASK;
|
||||||
|
|
||||||
if (!r && (dc->tb_flags & MSR_EE_FLAG)) {
|
if (!r && (dc->tb_flags & MSR_EE_FLAG)) {
|
||||||
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_FPU);
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_FPU);
|
||||||
@ -1441,8 +1440,8 @@ static void dec_fpu(DisasContext *dc)
|
|||||||
unsigned int fpu_insn;
|
unsigned int fpu_insn;
|
||||||
|
|
||||||
if ((dc->tb_flags & MSR_EE_FLAG)
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
||||||
&& (dc->env->pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
||||||
&& !((dc->env->pvr.regs[2] & PVR2_USE_FPU_MASK))) {
|
&& !((dc->cpu->env.pvr.regs[2] & PVR2_USE_FPU_MASK))) {
|
||||||
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
||||||
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
||||||
return;
|
return;
|
||||||
@ -1544,7 +1543,7 @@ static void dec_fpu(DisasContext *dc)
|
|||||||
static void dec_null(DisasContext *dc)
|
static void dec_null(DisasContext *dc)
|
||||||
{
|
{
|
||||||
if ((dc->tb_flags & MSR_EE_FLAG)
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
||||||
&& (dc->env->pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)) {
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)) {
|
||||||
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
||||||
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
||||||
return;
|
return;
|
||||||
@ -1556,7 +1555,7 @@ static void dec_null(DisasContext *dc)
|
|||||||
/* Insns connected to FSL or AXI stream attached devices. */
|
/* Insns connected to FSL or AXI stream attached devices. */
|
||||||
static void dec_stream(DisasContext *dc)
|
static void dec_stream(DisasContext *dc)
|
||||||
{
|
{
|
||||||
int mem_index = cpu_mmu_index(dc->env);
|
int mem_index = cpu_mmu_index(&dc->cpu->env);
|
||||||
TCGv_i32 t_id, t_ctrl;
|
TCGv_i32 t_id, t_ctrl;
|
||||||
int ctrl;
|
int ctrl;
|
||||||
|
|
||||||
@ -1632,8 +1631,8 @@ static inline void decode(DisasContext *dc, uint32_t ir)
|
|||||||
dc->nr_nops = 0;
|
dc->nr_nops = 0;
|
||||||
else {
|
else {
|
||||||
if ((dc->tb_flags & MSR_EE_FLAG)
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
||||||
&& (dc->env->pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
||||||
&& (dc->env->pvr.regs[2] & PVR2_OPCODE_0x0_ILL_MASK)) {
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_OPCODE_0x0_ILL_MASK)) {
|
||||||
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
||||||
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
||||||
return;
|
return;
|
||||||
@ -1642,7 +1641,7 @@ static inline void decode(DisasContext *dc, uint32_t ir)
|
|||||||
LOG_DIS("nr_nops=%d\t", dc->nr_nops);
|
LOG_DIS("nr_nops=%d\t", dc->nr_nops);
|
||||||
dc->nr_nops++;
|
dc->nr_nops++;
|
||||||
if (dc->nr_nops > 4) {
|
if (dc->nr_nops > 4) {
|
||||||
cpu_abort(CPU(mb_env_get_cpu(dc->env)), "fetching nop sequence\n");
|
cpu_abort(CPU(dc->cpu), "fetching nop sequence\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* bit 2 seems to indicate insn type. */
|
/* bit 2 seems to indicate insn type. */
|
||||||
@ -1696,7 +1695,7 @@ gen_intermediate_code_internal(MicroBlazeCPU *cpu, TranslationBlock *tb,
|
|||||||
int max_insns;
|
int max_insns;
|
||||||
|
|
||||||
pc_start = tb->pc;
|
pc_start = tb->pc;
|
||||||
dc->env = env;
|
dc->cpu = cpu;
|
||||||
dc->tb = tb;
|
dc->tb = tb;
|
||||||
org_flags = dc->synced_flags = dc->tb_flags = tb->flags;
|
org_flags = dc->synced_flags = dc->tb_flags = tb->flags;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user