2 * Xilinx MicroBlaze emulation for qemu: main translation routines.
4 * Copyright (c) 2009 Edgar E. Iglesias.
5 * Copyright (c) 2009-2012 PetaLogix Qld Pty Ltd.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
22 #include "disas/disas.h"
25 #include "microblaze-decode.h"
33 #if DISAS_MB && !SIM_COMPAT
34 # define LOG_DIS(...) qemu_log_mask(CPU_LOG_TB_IN_ASM, ## __VA_ARGS__)
36 # define LOG_DIS(...) do { } while (0)
41 #define EXTRACT_FIELD(src, start, end) \
42 (((src) >> start) & ((1 << (end - start + 1)) - 1))
44 static TCGv env_debug
;
45 static TCGv_ptr cpu_env
;
46 static TCGv cpu_R
[32];
47 static TCGv cpu_SR
[18];
49 static TCGv env_btaken
;
50 static TCGv env_btarget
;
51 static TCGv env_iflags
;
52 static TCGv env_res_addr
;
53 static TCGv env_res_val
;
55 #include "exec/gen-icount.h"
57 /* This is the state at translation time. */
58 typedef struct DisasContext
{
69 unsigned int cpustate_changed
;
70 unsigned int delayed_branch
;
71 unsigned int tb_flags
, synced_flags
; /* tb dependent flags. */
72 unsigned int clear_imm
;
77 #define JMP_DIRECT_CC 2
78 #define JMP_INDIRECT 3
82 int abort_at_next_insn
;
84 struct TranslationBlock
*tb
;
85 int singlestep_enabled
;
88 static const char *regnames
[] =
90 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
91 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
92 "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
93 "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31",
96 static const char *special_regnames
[] =
98 "rpc", "rmsr", "sr2", "sr3", "sr4", "sr5", "sr6", "sr7",
99 "sr8", "sr9", "sr10", "sr11", "sr12", "sr13", "sr14", "sr15",
100 "sr16", "sr17", "sr18"
103 /* Sign extend at translation time. */
104 static inline int sign_extend(unsigned int val
, unsigned int width
)
116 static inline void t_sync_flags(DisasContext
*dc
)
118 /* Synch the tb dependent flags between translator and runtime. */
119 if (dc
->tb_flags
!= dc
->synced_flags
) {
120 tcg_gen_movi_tl(env_iflags
, dc
->tb_flags
);
121 dc
->synced_flags
= dc
->tb_flags
;
125 static inline void t_gen_raise_exception(DisasContext
*dc
, uint32_t index
)
127 TCGv_i32 tmp
= tcg_const_i32(index
);
130 tcg_gen_movi_tl(cpu_SR
[SR_PC
], dc
->pc
);
131 gen_helper_raise_exception(cpu_env
, tmp
);
132 tcg_temp_free_i32(tmp
);
133 dc
->is_jmp
= DISAS_UPDATE
;
136 static void gen_goto_tb(DisasContext
*dc
, int n
, target_ulong dest
)
138 TranslationBlock
*tb
;
140 if ((tb
->pc
& TARGET_PAGE_MASK
) == (dest
& TARGET_PAGE_MASK
)) {
142 tcg_gen_movi_tl(cpu_SR
[SR_PC
], dest
);
143 tcg_gen_exit_tb((uintptr_t)tb
+ n
);
145 tcg_gen_movi_tl(cpu_SR
[SR_PC
], dest
);
150 static void read_carry(DisasContext
*dc
, TCGv d
)
152 tcg_gen_shri_tl(d
, cpu_SR
[SR_MSR
], 31);
156 * write_carry sets the carry bits in MSR based on bit 0 of v.
157 * v[31:1] are ignored.
159 static void write_carry(DisasContext
*dc
, TCGv v
)
161 TCGv t0
= tcg_temp_new();
162 tcg_gen_shli_tl(t0
, v
, 31);
163 tcg_gen_sari_tl(t0
, t0
, 31);
164 tcg_gen_andi_tl(t0
, t0
, (MSR_C
| MSR_CC
));
165 tcg_gen_andi_tl(cpu_SR
[SR_MSR
], cpu_SR
[SR_MSR
],
167 tcg_gen_or_tl(cpu_SR
[SR_MSR
], cpu_SR
[SR_MSR
], t0
);
171 static void write_carryi(DisasContext
*dc
, bool carry
)
173 TCGv t0
= tcg_temp_new();
174 tcg_gen_movi_tl(t0
, carry
);
179 /* True if ALU operand b is a small immediate that may deserve
181 static inline int dec_alu_op_b_is_small_imm(DisasContext
*dc
)
183 /* Immediate insn without the imm prefix ? */
184 return dc
->type_b
&& !(dc
->tb_flags
& IMM_FLAG
);
187 static inline TCGv
*dec_alu_op_b(DisasContext
*dc
)
190 if (dc
->tb_flags
& IMM_FLAG
)
191 tcg_gen_ori_tl(env_imm
, env_imm
, dc
->imm
);
193 tcg_gen_movi_tl(env_imm
, (int32_t)((int16_t)dc
->imm
));
196 return &cpu_R
[dc
->rb
];
199 static void dec_add(DisasContext
*dc
)
207 LOG_DIS("add%s%s%s r%d r%d r%d\n",
208 dc
->type_b
? "i" : "", k
? "k" : "", c
? "c" : "",
209 dc
->rd
, dc
->ra
, dc
->rb
);
211 /* Take care of the easy cases first. */
213 /* k - keep carry, no need to update MSR. */
214 /* If rd == r0, it's a nop. */
216 tcg_gen_add_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], *(dec_alu_op_b(dc
)));
219 /* c - Add carry into the result. */
223 tcg_gen_add_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->rd
], cf
);
230 /* From now on, we can assume k is zero. So we need to update MSR. */
236 tcg_gen_movi_tl(cf
, 0);
240 TCGv ncf
= tcg_temp_new();
241 gen_helper_carry(ncf
, cpu_R
[dc
->ra
], *(dec_alu_op_b(dc
)), cf
);
242 tcg_gen_add_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], *(dec_alu_op_b(dc
)));
243 tcg_gen_add_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->rd
], cf
);
244 write_carry(dc
, ncf
);
247 gen_helper_carry(cf
, cpu_R
[dc
->ra
], *(dec_alu_op_b(dc
)), cf
);
253 static void dec_sub(DisasContext
*dc
)
255 unsigned int u
, cmp
, k
, c
;
261 cmp
= (dc
->imm
& 1) && (!dc
->type_b
) && k
;
264 LOG_DIS("cmp%s r%d, r%d ir=%x\n", u
? "u" : "", dc
->rd
, dc
->ra
, dc
->ir
);
267 gen_helper_cmpu(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], cpu_R
[dc
->rb
]);
269 gen_helper_cmp(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], cpu_R
[dc
->rb
]);
274 LOG_DIS("sub%s%s r%d, r%d r%d\n",
275 k
? "k" : "", c
? "c" : "", dc
->rd
, dc
->ra
, dc
->rb
);
277 /* Take care of the easy cases first. */
279 /* k - keep carry, no need to update MSR. */
280 /* If rd == r0, it's a nop. */
282 tcg_gen_sub_tl(cpu_R
[dc
->rd
], *(dec_alu_op_b(dc
)), cpu_R
[dc
->ra
]);
285 /* c - Add carry into the result. */
289 tcg_gen_add_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->rd
], cf
);
296 /* From now on, we can assume k is zero. So we need to update MSR. */
297 /* Extract carry. And complement a into na. */
303 tcg_gen_movi_tl(cf
, 1);
306 /* d = b + ~a + c. carry defaults to 1. */
307 tcg_gen_not_tl(na
, cpu_R
[dc
->ra
]);
310 TCGv ncf
= tcg_temp_new();
311 gen_helper_carry(ncf
, na
, *(dec_alu_op_b(dc
)), cf
);
312 tcg_gen_add_tl(cpu_R
[dc
->rd
], na
, *(dec_alu_op_b(dc
)));
313 tcg_gen_add_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->rd
], cf
);
314 write_carry(dc
, ncf
);
317 gen_helper_carry(cf
, na
, *(dec_alu_op_b(dc
)), cf
);
324 static void dec_pattern(DisasContext
*dc
)
329 if ((dc
->tb_flags
& MSR_EE_FLAG
)
330 && (dc
->cpu
->env
.pvr
.regs
[2] & PVR2_ILL_OPCODE_EXC_MASK
)
331 && !((dc
->cpu
->env
.pvr
.regs
[2] & PVR2_USE_PCMP_INSTR
))) {
332 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_ILLEGAL_OP
);
333 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
336 mode
= dc
->opcode
& 3;
340 LOG_DIS("pcmpbf r%d r%d r%d\n", dc
->rd
, dc
->ra
, dc
->rb
);
342 gen_helper_pcmpbf(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], cpu_R
[dc
->rb
]);
345 LOG_DIS("pcmpeq r%d r%d r%d\n", dc
->rd
, dc
->ra
, dc
->rb
);
347 TCGv t0
= tcg_temp_local_new();
348 l1
= gen_new_label();
349 tcg_gen_movi_tl(t0
, 1);
350 tcg_gen_brcond_tl(TCG_COND_EQ
,
351 cpu_R
[dc
->ra
], cpu_R
[dc
->rb
], l1
);
352 tcg_gen_movi_tl(t0
, 0);
354 tcg_gen_mov_tl(cpu_R
[dc
->rd
], t0
);
359 LOG_DIS("pcmpne r%d r%d r%d\n", dc
->rd
, dc
->ra
, dc
->rb
);
360 l1
= gen_new_label();
362 TCGv t0
= tcg_temp_local_new();
363 tcg_gen_movi_tl(t0
, 1);
364 tcg_gen_brcond_tl(TCG_COND_NE
,
365 cpu_R
[dc
->ra
], cpu_R
[dc
->rb
], l1
);
366 tcg_gen_movi_tl(t0
, 0);
368 tcg_gen_mov_tl(cpu_R
[dc
->rd
], t0
);
373 cpu_abort(CPU(dc
->cpu
),
374 "unsupported pattern insn opcode=%x\n", dc
->opcode
);
379 static void dec_and(DisasContext
*dc
)
383 if (!dc
->type_b
&& (dc
->imm
& (1 << 10))) {
388 not = dc
->opcode
& (1 << 1);
389 LOG_DIS("and%s\n", not ? "n" : "");
395 tcg_gen_andc_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], *(dec_alu_op_b(dc
)));
397 tcg_gen_and_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], *(dec_alu_op_b(dc
)));
400 static void dec_or(DisasContext
*dc
)
402 if (!dc
->type_b
&& (dc
->imm
& (1 << 10))) {
407 LOG_DIS("or r%d r%d r%d imm=%x\n", dc
->rd
, dc
->ra
, dc
->rb
, dc
->imm
);
409 tcg_gen_or_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], *(dec_alu_op_b(dc
)));
412 static void dec_xor(DisasContext
*dc
)
414 if (!dc
->type_b
&& (dc
->imm
& (1 << 10))) {
419 LOG_DIS("xor r%d\n", dc
->rd
);
421 tcg_gen_xor_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], *(dec_alu_op_b(dc
)));
424 static inline void msr_read(DisasContext
*dc
, TCGv d
)
426 tcg_gen_mov_tl(d
, cpu_SR
[SR_MSR
]);
429 static inline void msr_write(DisasContext
*dc
, TCGv v
)
434 dc
->cpustate_changed
= 1;
435 /* PVR bit is not writable. */
436 tcg_gen_andi_tl(t
, v
, ~MSR_PVR
);
437 tcg_gen_andi_tl(cpu_SR
[SR_MSR
], cpu_SR
[SR_MSR
], MSR_PVR
);
438 tcg_gen_or_tl(cpu_SR
[SR_MSR
], cpu_SR
[SR_MSR
], v
);
442 static void dec_msr(DisasContext
*dc
)
444 CPUState
*cs
= CPU(dc
->cpu
);
446 unsigned int sr
, to
, rn
;
447 int mem_index
= cpu_mmu_index(&dc
->cpu
->env
);
449 sr
= dc
->imm
& ((1 << 14) - 1);
450 to
= dc
->imm
& (1 << 14);
453 dc
->cpustate_changed
= 1;
455 /* msrclr and msrset. */
456 if (!(dc
->imm
& (1 << 15))) {
457 unsigned int clr
= dc
->ir
& (1 << 16);
459 LOG_DIS("msr%s r%d imm=%x\n", clr
? "clr" : "set",
462 if (!(dc
->cpu
->env
.pvr
.regs
[2] & PVR2_USE_MSR_INSTR
)) {
467 if ((dc
->tb_flags
& MSR_EE_FLAG
)
468 && mem_index
== MMU_USER_IDX
&& (dc
->imm
!= 4 && dc
->imm
!= 0)) {
469 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_PRIVINSN
);
470 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
475 msr_read(dc
, cpu_R
[dc
->rd
]);
480 tcg_gen_mov_tl(t1
, *(dec_alu_op_b(dc
)));
483 tcg_gen_not_tl(t1
, t1
);
484 tcg_gen_and_tl(t0
, t0
, t1
);
486 tcg_gen_or_tl(t0
, t0
, t1
);
490 tcg_gen_movi_tl(cpu_SR
[SR_PC
], dc
->pc
+ 4);
491 dc
->is_jmp
= DISAS_UPDATE
;
496 if ((dc
->tb_flags
& MSR_EE_FLAG
)
497 && mem_index
== MMU_USER_IDX
) {
498 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_PRIVINSN
);
499 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
504 #if !defined(CONFIG_USER_ONLY)
505 /* Catch read/writes to the mmu block. */
506 if ((sr
& ~0xff) == 0x1000) {
508 LOG_DIS("m%ss sr%d r%d imm=%x\n", to
? "t" : "f", sr
, dc
->ra
, dc
->imm
);
510 gen_helper_mmu_write(cpu_env
, tcg_const_tl(sr
), cpu_R
[dc
->ra
]);
512 gen_helper_mmu_read(cpu_R
[dc
->rd
], cpu_env
, tcg_const_tl(sr
));
518 LOG_DIS("m%ss sr%x r%d imm=%x\n", to
? "t" : "f", sr
, dc
->ra
, dc
->imm
);
523 msr_write(dc
, cpu_R
[dc
->ra
]);
526 tcg_gen_mov_tl(cpu_SR
[SR_EAR
], cpu_R
[dc
->ra
]);
529 tcg_gen_mov_tl(cpu_SR
[SR_ESR
], cpu_R
[dc
->ra
]);
532 tcg_gen_andi_tl(cpu_SR
[SR_FSR
], cpu_R
[dc
->ra
], 31);
535 tcg_gen_st_tl(cpu_R
[dc
->ra
], cpu_env
, offsetof(CPUMBState
, slr
));
538 tcg_gen_st_tl(cpu_R
[dc
->ra
], cpu_env
, offsetof(CPUMBState
, shr
));
541 cpu_abort(CPU(dc
->cpu
), "unknown mts reg %x\n", sr
);
545 LOG_DIS("m%ss r%d sr%x imm=%x\n", to
? "t" : "f", dc
->rd
, sr
, dc
->imm
);
549 tcg_gen_movi_tl(cpu_R
[dc
->rd
], dc
->pc
);
552 msr_read(dc
, cpu_R
[dc
->rd
]);
555 tcg_gen_mov_tl(cpu_R
[dc
->rd
], cpu_SR
[SR_EAR
]);
558 tcg_gen_mov_tl(cpu_R
[dc
->rd
], cpu_SR
[SR_ESR
]);
561 tcg_gen_mov_tl(cpu_R
[dc
->rd
], cpu_SR
[SR_FSR
]);
564 tcg_gen_mov_tl(cpu_R
[dc
->rd
], cpu_SR
[SR_BTR
]);
567 tcg_gen_ld_tl(cpu_R
[dc
->rd
], cpu_env
, offsetof(CPUMBState
, slr
));
570 tcg_gen_ld_tl(cpu_R
[dc
->rd
], cpu_env
, offsetof(CPUMBState
, shr
));
586 tcg_gen_ld_tl(cpu_R
[dc
->rd
],
587 cpu_env
, offsetof(CPUMBState
, pvr
.regs
[rn
]));
590 cpu_abort(cs
, "unknown mfs reg %x\n", sr
);
596 tcg_gen_movi_tl(cpu_R
[0], 0);
600 /* 64-bit signed mul, lower result in d and upper in d2. */
601 static void t_gen_muls(TCGv d
, TCGv d2
, TCGv a
, TCGv b
)
605 t0
= tcg_temp_new_i64();
606 t1
= tcg_temp_new_i64();
608 tcg_gen_ext_i32_i64(t0
, a
);
609 tcg_gen_ext_i32_i64(t1
, b
);
610 tcg_gen_mul_i64(t0
, t0
, t1
);
612 tcg_gen_trunc_i64_i32(d
, t0
);
613 tcg_gen_shri_i64(t0
, t0
, 32);
614 tcg_gen_trunc_i64_i32(d2
, t0
);
616 tcg_temp_free_i64(t0
);
617 tcg_temp_free_i64(t1
);
620 /* 64-bit unsigned muls, lower result in d and upper in d2. */
621 static void t_gen_mulu(TCGv d
, TCGv d2
, TCGv a
, TCGv b
)
625 t0
= tcg_temp_new_i64();
626 t1
= tcg_temp_new_i64();
628 tcg_gen_extu_i32_i64(t0
, a
);
629 tcg_gen_extu_i32_i64(t1
, b
);
630 tcg_gen_mul_i64(t0
, t0
, t1
);
632 tcg_gen_trunc_i64_i32(d
, t0
);
633 tcg_gen_shri_i64(t0
, t0
, 32);
634 tcg_gen_trunc_i64_i32(d2
, t0
);
636 tcg_temp_free_i64(t0
);
637 tcg_temp_free_i64(t1
);
640 /* Multiplier unit. */
641 static void dec_mul(DisasContext
*dc
)
644 unsigned int subcode
;
646 if ((dc
->tb_flags
& MSR_EE_FLAG
)
647 && (dc
->cpu
->env
.pvr
.regs
[2] & PVR2_ILL_OPCODE_EXC_MASK
)
648 && !(dc
->cpu
->env
.pvr
.regs
[0] & PVR0_USE_HW_MUL_MASK
)) {
649 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_ILLEGAL_OP
);
650 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
654 subcode
= dc
->imm
& 3;
655 d
[0] = tcg_temp_new();
656 d
[1] = tcg_temp_new();
659 LOG_DIS("muli r%d r%d %x\n", dc
->rd
, dc
->ra
, dc
->imm
);
660 t_gen_mulu(cpu_R
[dc
->rd
], d
[1], cpu_R
[dc
->ra
], *(dec_alu_op_b(dc
)));
664 /* mulh, mulhsu and mulhu are not available if C_USE_HW_MUL is < 2. */
665 if (subcode
>= 1 && subcode
<= 3
666 && !((dc
->cpu
->env
.pvr
.regs
[2] & PVR2_USE_MUL64_MASK
))) {
672 LOG_DIS("mul r%d r%d r%d\n", dc
->rd
, dc
->ra
, dc
->rb
);
673 t_gen_mulu(cpu_R
[dc
->rd
], d
[1], cpu_R
[dc
->ra
], cpu_R
[dc
->rb
]);
676 LOG_DIS("mulh r%d r%d r%d\n", dc
->rd
, dc
->ra
, dc
->rb
);
677 t_gen_muls(d
[0], cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], cpu_R
[dc
->rb
]);
680 LOG_DIS("mulhsu r%d r%d r%d\n", dc
->rd
, dc
->ra
, dc
->rb
);
681 t_gen_muls(d
[0], cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], cpu_R
[dc
->rb
]);
684 LOG_DIS("mulhu r%d r%d r%d\n", dc
->rd
, dc
->ra
, dc
->rb
);
685 t_gen_mulu(d
[0], cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], cpu_R
[dc
->rb
]);
688 cpu_abort(CPU(dc
->cpu
), "unknown MUL insn %x\n", subcode
);
697 static void dec_div(DisasContext
*dc
)
704 if ((dc
->cpu
->env
.pvr
.regs
[2] & PVR2_ILL_OPCODE_EXC_MASK
)
705 && !((dc
->cpu
->env
.pvr
.regs
[0] & PVR0_USE_DIV_MASK
))) {
706 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_ILLEGAL_OP
);
707 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
711 gen_helper_divu(cpu_R
[dc
->rd
], cpu_env
, *(dec_alu_op_b(dc
)),
714 gen_helper_divs(cpu_R
[dc
->rd
], cpu_env
, *(dec_alu_op_b(dc
)),
717 tcg_gen_movi_tl(cpu_R
[dc
->rd
], 0);
720 static void dec_barrel(DisasContext
*dc
)
725 if ((dc
->tb_flags
& MSR_EE_FLAG
)
726 && (dc
->cpu
->env
.pvr
.regs
[2] & PVR2_ILL_OPCODE_EXC_MASK
)
727 && !(dc
->cpu
->env
.pvr
.regs
[0] & PVR0_USE_BARREL_MASK
)) {
728 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_ILLEGAL_OP
);
729 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
733 s
= dc
->imm
& (1 << 10);
734 t
= dc
->imm
& (1 << 9);
736 LOG_DIS("bs%s%s r%d r%d r%d\n",
737 s
? "l" : "r", t
? "a" : "l", dc
->rd
, dc
->ra
, dc
->rb
);
741 tcg_gen_mov_tl(t0
, *(dec_alu_op_b(dc
)));
742 tcg_gen_andi_tl(t0
, t0
, 31);
745 tcg_gen_shl_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], t0
);
748 tcg_gen_sar_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], t0
);
750 tcg_gen_shr_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], t0
);
754 static void dec_bit(DisasContext
*dc
)
756 CPUState
*cs
= CPU(dc
->cpu
);
759 int mem_index
= cpu_mmu_index(&dc
->cpu
->env
);
761 op
= dc
->ir
& ((1 << 9) - 1);
767 LOG_DIS("src r%d r%d\n", dc
->rd
, dc
->ra
);
768 tcg_gen_andi_tl(t0
, cpu_SR
[SR_MSR
], MSR_CC
);
769 write_carry(dc
, cpu_R
[dc
->ra
]);
771 tcg_gen_shri_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], 1);
772 tcg_gen_or_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->rd
], t0
);
780 LOG_DIS("srl r%d r%d\n", dc
->rd
, dc
->ra
);
782 /* Update carry. Note that write carry only looks at the LSB. */
783 write_carry(dc
, cpu_R
[dc
->ra
]);
786 tcg_gen_shri_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], 1);
788 tcg_gen_sari_tl(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], 1);
792 LOG_DIS("ext8s r%d r%d\n", dc
->rd
, dc
->ra
);
793 tcg_gen_ext8s_i32(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
]);
796 LOG_DIS("ext16s r%d r%d\n", dc
->rd
, dc
->ra
);
797 tcg_gen_ext16s_i32(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
]);
804 LOG_DIS("wdc r%d\n", dc
->ra
);
805 if ((dc
->tb_flags
& MSR_EE_FLAG
)
806 && mem_index
== MMU_USER_IDX
) {
807 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_PRIVINSN
);
808 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
814 LOG_DIS("wic r%d\n", dc
->ra
);
815 if ((dc
->tb_flags
& MSR_EE_FLAG
)
816 && mem_index
== MMU_USER_IDX
) {
817 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_PRIVINSN
);
818 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
823 if ((dc
->tb_flags
& MSR_EE_FLAG
)
824 && (dc
->cpu
->env
.pvr
.regs
[2] & PVR2_ILL_OPCODE_EXC_MASK
)
825 && !((dc
->cpu
->env
.pvr
.regs
[2] & PVR2_USE_PCMP_INSTR
))) {
826 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_ILLEGAL_OP
);
827 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
829 if (dc
->cpu
->env
.pvr
.regs
[2] & PVR2_USE_PCMP_INSTR
) {
830 gen_helper_clz(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
]);
835 LOG_DIS("swapb r%d r%d\n", dc
->rd
, dc
->ra
);
836 tcg_gen_bswap32_i32(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
]);
840 LOG_DIS("swaph r%d r%d\n", dc
->rd
, dc
->ra
);
841 tcg_gen_rotri_i32(cpu_R
[dc
->rd
], cpu_R
[dc
->ra
], 16);
844 cpu_abort(cs
, "unknown bit oc=%x op=%x rd=%d ra=%d rb=%d\n",
845 dc
->pc
, op
, dc
->rd
, dc
->ra
, dc
->rb
);
850 static inline void sync_jmpstate(DisasContext
*dc
)
852 if (dc
->jmp
== JMP_DIRECT
|| dc
->jmp
== JMP_DIRECT_CC
) {
853 if (dc
->jmp
== JMP_DIRECT
) {
854 tcg_gen_movi_tl(env_btaken
, 1);
856 dc
->jmp
= JMP_INDIRECT
;
857 tcg_gen_movi_tl(env_btarget
, dc
->jmp_pc
);
861 static void dec_imm(DisasContext
*dc
)
863 LOG_DIS("imm %x\n", dc
->imm
<< 16);
864 tcg_gen_movi_tl(env_imm
, (dc
->imm
<< 16));
865 dc
->tb_flags
|= IMM_FLAG
;
869 static inline TCGv
*compute_ldst_addr(DisasContext
*dc
, TCGv
*t
)
871 unsigned int extimm
= dc
->tb_flags
& IMM_FLAG
;
872 /* Should be set to one if r1 is used by loadstores. */
875 /* All load/stores use ra. */
880 /* Treat the common cases first. */
882 /* If any of the regs is r0, return a ptr to the other. */
884 return &cpu_R
[dc
->rb
];
885 } else if (dc
->rb
== 0) {
886 return &cpu_R
[dc
->ra
];
894 tcg_gen_add_tl(*t
, cpu_R
[dc
->ra
], cpu_R
[dc
->rb
]);
897 gen_helper_stackprot(cpu_env
, *t
);
904 return &cpu_R
[dc
->ra
];
907 tcg_gen_movi_tl(*t
, (int32_t)((int16_t)dc
->imm
));
908 tcg_gen_add_tl(*t
, cpu_R
[dc
->ra
], *t
);
911 tcg_gen_add_tl(*t
, cpu_R
[dc
->ra
], *(dec_alu_op_b(dc
)));
915 gen_helper_stackprot(cpu_env
, *t
);
920 static void dec_load(DisasContext
*dc
)
923 unsigned int size
, rev
= 0, ex
= 0;
926 mop
= dc
->opcode
& 3;
929 rev
= (dc
->ir
>> 9) & 1;
930 ex
= (dc
->ir
>> 10) & 1;
937 if (size
> 4 && (dc
->tb_flags
& MSR_EE_FLAG
)
938 && (dc
->cpu
->env
.pvr
.regs
[2] & PVR2_ILL_OPCODE_EXC_MASK
)) {
939 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_ILLEGAL_OP
);
940 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
944 LOG_DIS("l%d%s%s%s\n", size
, dc
->type_b
? "i" : "", rev
? "r" : "",
948 addr
= compute_ldst_addr(dc
, &t
);
951 * When doing reverse accesses we need to do two things.
953 * 1. Reverse the address wrt endianness.
954 * 2. Byteswap the data lanes on the way back into the CPU core.
956 if (rev
&& size
!= 4) {
957 /* Endian reverse the address. t is addr. */
965 TCGv low
= tcg_temp_new();
967 /* Force addr into the temp. */
970 tcg_gen_mov_tl(t
, *addr
);
974 tcg_gen_andi_tl(low
, t
, 3);
975 tcg_gen_sub_tl(low
, tcg_const_tl(3), low
);
976 tcg_gen_andi_tl(t
, t
, ~3);
977 tcg_gen_or_tl(t
, t
, low
);
978 tcg_gen_mov_tl(env_imm
, t
);
986 /* Force addr into the temp. */
989 tcg_gen_xori_tl(t
, *addr
, 2);
992 tcg_gen_xori_tl(t
, t
, 2);
996 cpu_abort(CPU(dc
->cpu
), "Invalid reverse size\n");
1001 /* lwx does not throw unaligned access errors, so force alignment */
1003 /* Force addr into the temp. */
1006 tcg_gen_mov_tl(t
, *addr
);
1009 tcg_gen_andi_tl(t
, t
, ~3);
1012 /* If we get a fault on a dslot, the jmpstate better be in sync. */
1015 /* Verify alignment if needed. */
1017 * Microblaze gives MMU faults priority over faults due to
1018 * unaligned addresses. That's why we speculatively do the load
1019 * into v. If the load succeeds, we verify alignment of the
1020 * address and if that succeeds we write into the destination reg.
1023 tcg_gen_qemu_ld_tl(v
, *addr
, cpu_mmu_index(&dc
->cpu
->env
), mop
);
1025 if ((dc
->cpu
->env
.pvr
.regs
[2] & PVR2_UNALIGNED_EXC_MASK
) && size
> 1) {
1026 tcg_gen_movi_tl(cpu_SR
[SR_PC
], dc
->pc
);
1027 gen_helper_memalign(cpu_env
, *addr
, tcg_const_tl(dc
->rd
),
1028 tcg_const_tl(0), tcg_const_tl(size
- 1));
1032 tcg_gen_mov_tl(env_res_addr
, *addr
);
1033 tcg_gen_mov_tl(env_res_val
, v
);
1036 tcg_gen_mov_tl(cpu_R
[dc
->rd
], v
);
1041 /* no support for for AXI exclusive so always clear C */
1042 write_carryi(dc
, 0);
1049 static void dec_store(DisasContext
*dc
)
1051 TCGv t
, *addr
, swx_addr
;
1053 unsigned int size
, rev
= 0, ex
= 0;
1056 mop
= dc
->opcode
& 3;
1059 rev
= (dc
->ir
>> 9) & 1;
1060 ex
= (dc
->ir
>> 10) & 1;
1067 if (size
> 4 && (dc
->tb_flags
& MSR_EE_FLAG
)
1068 && (dc
->cpu
->env
.pvr
.regs
[2] & PVR2_ILL_OPCODE_EXC_MASK
)) {
1069 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_ILLEGAL_OP
);
1070 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
1074 LOG_DIS("s%d%s%s%s\n", size
, dc
->type_b
? "i" : "", rev
? "r" : "",
1077 /* If we get a fault on a dslot, the jmpstate better be in sync. */
1079 addr
= compute_ldst_addr(dc
, &t
);
1081 swx_addr
= tcg_temp_local_new();
1085 /* Force addr into the swx_addr. */
1086 tcg_gen_mov_tl(swx_addr
, *addr
);
1088 /* swx does not throw unaligned access errors, so force alignment */
1089 tcg_gen_andi_tl(swx_addr
, swx_addr
, ~3);
1091 write_carryi(dc
, 1);
1092 swx_skip
= gen_new_label();
1093 tcg_gen_brcond_tl(TCG_COND_NE
, env_res_addr
, swx_addr
, swx_skip
);
1095 /* Compare the value loaded at lwx with current contents of
1096 the reserved location.
1097 FIXME: This only works for system emulation where we can expect
1098 this compare and the following write to be atomic. For user
1099 emulation we need to add atomicity between threads. */
1100 tval
= tcg_temp_new();
1101 tcg_gen_qemu_ld_tl(tval
, swx_addr
, cpu_mmu_index(&dc
->cpu
->env
),
1103 tcg_gen_brcond_tl(TCG_COND_NE
, env_res_val
, tval
, swx_skip
);
1104 write_carryi(dc
, 0);
1105 tcg_temp_free(tval
);
1108 if (rev
&& size
!= 4) {
1109 /* Endian reverse the address. t is addr. */
1117 TCGv low
= tcg_temp_new();
1119 /* Force addr into the temp. */
1122 tcg_gen_mov_tl(t
, *addr
);
1126 tcg_gen_andi_tl(low
, t
, 3);
1127 tcg_gen_sub_tl(low
, tcg_const_tl(3), low
);
1128 tcg_gen_andi_tl(t
, t
, ~3);
1129 tcg_gen_or_tl(t
, t
, low
);
1130 tcg_gen_mov_tl(env_imm
, t
);
1138 /* Force addr into the temp. */
1141 tcg_gen_xori_tl(t
, *addr
, 2);
1144 tcg_gen_xori_tl(t
, t
, 2);
1148 cpu_abort(CPU(dc
->cpu
), "Invalid reverse size\n");
1152 tcg_gen_qemu_st_tl(cpu_R
[dc
->rd
], *addr
, cpu_mmu_index(&dc
->cpu
->env
), mop
);
1154 /* Verify alignment if needed. */
1155 if ((dc
->cpu
->env
.pvr
.regs
[2] & PVR2_UNALIGNED_EXC_MASK
) && size
> 1) {
1156 tcg_gen_movi_tl(cpu_SR
[SR_PC
], dc
->pc
);
1157 /* FIXME: if the alignment is wrong, we should restore the value
1158 * in memory. One possible way to achieve this is to probe
1159 * the MMU prior to the memaccess, thay way we could put
1160 * the alignment checks in between the probe and the mem
1163 gen_helper_memalign(cpu_env
, *addr
, tcg_const_tl(dc
->rd
),
1164 tcg_const_tl(1), tcg_const_tl(size
- 1));
1168 gen_set_label(swx_skip
);
1170 tcg_temp_free(swx_addr
);
1176 static inline void eval_cc(DisasContext
*dc
, unsigned int cc
,
1177 TCGv d
, TCGv a
, TCGv b
)
1181 tcg_gen_setcond_tl(TCG_COND_EQ
, d
, a
, b
);
1184 tcg_gen_setcond_tl(TCG_COND_NE
, d
, a
, b
);
1187 tcg_gen_setcond_tl(TCG_COND_LT
, d
, a
, b
);
1190 tcg_gen_setcond_tl(TCG_COND_LE
, d
, a
, b
);
1193 tcg_gen_setcond_tl(TCG_COND_GE
, d
, a
, b
);
1196 tcg_gen_setcond_tl(TCG_COND_GT
, d
, a
, b
);
1199 cpu_abort(CPU(dc
->cpu
), "Unknown condition code %x.\n", cc
);
1204 static void eval_cond_jmp(DisasContext
*dc
, TCGv pc_true
, TCGv pc_false
)
1208 l1
= gen_new_label();
1209 /* Conditional jmp. */
1210 tcg_gen_mov_tl(cpu_SR
[SR_PC
], pc_false
);
1211 tcg_gen_brcondi_tl(TCG_COND_EQ
, env_btaken
, 0, l1
);
1212 tcg_gen_mov_tl(cpu_SR
[SR_PC
], pc_true
);
1216 static void dec_bcc(DisasContext
*dc
)
1221 cc
= EXTRACT_FIELD(dc
->ir
, 21, 23);
1222 dslot
= dc
->ir
& (1 << 25);
1223 LOG_DIS("bcc%s r%d %x\n", dslot
? "d" : "", dc
->ra
, dc
->imm
);
1225 dc
->delayed_branch
= 1;
1227 dc
->delayed_branch
= 2;
1228 dc
->tb_flags
|= D_FLAG
;
1229 tcg_gen_st_tl(tcg_const_tl(dc
->type_b
&& (dc
->tb_flags
& IMM_FLAG
)),
1230 cpu_env
, offsetof(CPUMBState
, bimm
));
1233 if (dec_alu_op_b_is_small_imm(dc
)) {
1234 int32_t offset
= (int32_t)((int16_t)dc
->imm
); /* sign-extend. */
1236 tcg_gen_movi_tl(env_btarget
, dc
->pc
+ offset
);
1237 dc
->jmp
= JMP_DIRECT_CC
;
1238 dc
->jmp_pc
= dc
->pc
+ offset
;
1240 dc
->jmp
= JMP_INDIRECT
;
1241 tcg_gen_movi_tl(env_btarget
, dc
->pc
);
1242 tcg_gen_add_tl(env_btarget
, env_btarget
, *(dec_alu_op_b(dc
)));
1244 eval_cc(dc
, cc
, env_btaken
, cpu_R
[dc
->ra
], tcg_const_tl(0));
1247 static void dec_br(DisasContext
*dc
)
1249 unsigned int dslot
, link
, abs
, mbar
;
1250 int mem_index
= cpu_mmu_index(&dc
->cpu
->env
);
1252 dslot
= dc
->ir
& (1 << 20);
1253 abs
= dc
->ir
& (1 << 19);
1254 link
= dc
->ir
& (1 << 18);
1256 /* Memory barrier. */
1257 mbar
= (dc
->ir
>> 16) & 31;
1258 if (mbar
== 2 && dc
->imm
== 4) {
1259 /* mbar IMM & 16 decodes to sleep. */
1261 TCGv_i32 tmp_hlt
= tcg_const_i32(EXCP_HLT
);
1262 TCGv_i32 tmp_1
= tcg_const_i32(1);
1267 tcg_gen_st_i32(tmp_1
, cpu_env
,
1268 -offsetof(MicroBlazeCPU
, env
)
1269 +offsetof(CPUState
, halted
));
1270 tcg_gen_movi_tl(cpu_SR
[SR_PC
], dc
->pc
+ 4);
1271 gen_helper_raise_exception(cpu_env
, tmp_hlt
);
1272 tcg_temp_free_i32(tmp_hlt
);
1273 tcg_temp_free_i32(tmp_1
);
1276 LOG_DIS("mbar %d\n", dc
->rd
);
1278 dc
->cpustate_changed
= 1;
1282 LOG_DIS("br%s%s%s%s imm=%x\n",
1283 abs
? "a" : "", link
? "l" : "",
1284 dc
->type_b
? "i" : "", dslot
? "d" : "",
1287 dc
->delayed_branch
= 1;
1289 dc
->delayed_branch
= 2;
1290 dc
->tb_flags
|= D_FLAG
;
1291 tcg_gen_st_tl(tcg_const_tl(dc
->type_b
&& (dc
->tb_flags
& IMM_FLAG
)),
1292 cpu_env
, offsetof(CPUMBState
, bimm
));
1295 tcg_gen_movi_tl(cpu_R
[dc
->rd
], dc
->pc
);
1297 dc
->jmp
= JMP_INDIRECT
;
1299 tcg_gen_movi_tl(env_btaken
, 1);
1300 tcg_gen_mov_tl(env_btarget
, *(dec_alu_op_b(dc
)));
1301 if (link
&& !dslot
) {
1302 if (!(dc
->tb_flags
& IMM_FLAG
) && (dc
->imm
== 8 || dc
->imm
== 0x18))
1303 t_gen_raise_exception(dc
, EXCP_BREAK
);
1305 if ((dc
->tb_flags
& MSR_EE_FLAG
) && mem_index
== MMU_USER_IDX
) {
1306 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_PRIVINSN
);
1307 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
1311 t_gen_raise_exception(dc
, EXCP_DEBUG
);
1315 if (dec_alu_op_b_is_small_imm(dc
)) {
1316 dc
->jmp
= JMP_DIRECT
;
1317 dc
->jmp_pc
= dc
->pc
+ (int32_t)((int16_t)dc
->imm
);
1319 tcg_gen_movi_tl(env_btaken
, 1);
1320 tcg_gen_movi_tl(env_btarget
, dc
->pc
);
1321 tcg_gen_add_tl(env_btarget
, env_btarget
, *(dec_alu_op_b(dc
)));
1326 static inline void do_rti(DisasContext
*dc
)
1329 t0
= tcg_temp_new();
1330 t1
= tcg_temp_new();
1331 tcg_gen_shri_tl(t0
, cpu_SR
[SR_MSR
], 1);
1332 tcg_gen_ori_tl(t1
, cpu_SR
[SR_MSR
], MSR_IE
);
1333 tcg_gen_andi_tl(t0
, t0
, (MSR_VM
| MSR_UM
));
1335 tcg_gen_andi_tl(t1
, t1
, ~(MSR_VM
| MSR_UM
));
1336 tcg_gen_or_tl(t1
, t1
, t0
);
1340 dc
->tb_flags
&= ~DRTI_FLAG
;
1343 static inline void do_rtb(DisasContext
*dc
)
1346 t0
= tcg_temp_new();
1347 t1
= tcg_temp_new();
1348 tcg_gen_andi_tl(t1
, cpu_SR
[SR_MSR
], ~MSR_BIP
);
1349 tcg_gen_shri_tl(t0
, t1
, 1);
1350 tcg_gen_andi_tl(t0
, t0
, (MSR_VM
| MSR_UM
));
1352 tcg_gen_andi_tl(t1
, t1
, ~(MSR_VM
| MSR_UM
));
1353 tcg_gen_or_tl(t1
, t1
, t0
);
1357 dc
->tb_flags
&= ~DRTB_FLAG
;
1360 static inline void do_rte(DisasContext
*dc
)
1363 t0
= tcg_temp_new();
1364 t1
= tcg_temp_new();
1366 tcg_gen_ori_tl(t1
, cpu_SR
[SR_MSR
], MSR_EE
);
1367 tcg_gen_andi_tl(t1
, t1
, ~MSR_EIP
);
1368 tcg_gen_shri_tl(t0
, t1
, 1);
1369 tcg_gen_andi_tl(t0
, t0
, (MSR_VM
| MSR_UM
));
1371 tcg_gen_andi_tl(t1
, t1
, ~(MSR_VM
| MSR_UM
));
1372 tcg_gen_or_tl(t1
, t1
, t0
);
1376 dc
->tb_flags
&= ~DRTE_FLAG
;
1379 static void dec_rts(DisasContext
*dc
)
1381 unsigned int b_bit
, i_bit
, e_bit
;
1382 int mem_index
= cpu_mmu_index(&dc
->cpu
->env
);
1384 i_bit
= dc
->ir
& (1 << 21);
1385 b_bit
= dc
->ir
& (1 << 22);
1386 e_bit
= dc
->ir
& (1 << 23);
1388 dc
->delayed_branch
= 2;
1389 dc
->tb_flags
|= D_FLAG
;
1390 tcg_gen_st_tl(tcg_const_tl(dc
->type_b
&& (dc
->tb_flags
& IMM_FLAG
)),
1391 cpu_env
, offsetof(CPUMBState
, bimm
));
1394 LOG_DIS("rtid ir=%x\n", dc
->ir
);
1395 if ((dc
->tb_flags
& MSR_EE_FLAG
)
1396 && mem_index
== MMU_USER_IDX
) {
1397 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_PRIVINSN
);
1398 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
1400 dc
->tb_flags
|= DRTI_FLAG
;
1402 LOG_DIS("rtbd ir=%x\n", dc
->ir
);
1403 if ((dc
->tb_flags
& MSR_EE_FLAG
)
1404 && mem_index
== MMU_USER_IDX
) {
1405 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_PRIVINSN
);
1406 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
1408 dc
->tb_flags
|= DRTB_FLAG
;
1410 LOG_DIS("rted ir=%x\n", dc
->ir
);
1411 if ((dc
->tb_flags
& MSR_EE_FLAG
)
1412 && mem_index
== MMU_USER_IDX
) {
1413 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_PRIVINSN
);
1414 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
1416 dc
->tb_flags
|= DRTE_FLAG
;
1418 LOG_DIS("rts ir=%x\n", dc
->ir
);
1420 dc
->jmp
= JMP_INDIRECT
;
1421 tcg_gen_movi_tl(env_btaken
, 1);
1422 tcg_gen_add_tl(env_btarget
, cpu_R
[dc
->ra
], *(dec_alu_op_b(dc
)));
1425 static int dec_check_fpuv2(DisasContext
*dc
)
1429 r
= dc
->cpu
->env
.pvr
.regs
[2] & PVR2_USE_FPU2_MASK
;
1431 if (!r
&& (dc
->tb_flags
& MSR_EE_FLAG
)) {
1432 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_FPU
);
1433 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
1438 static void dec_fpu(DisasContext
*dc
)
1440 unsigned int fpu_insn
;
1442 if ((dc
->tb_flags
& MSR_EE_FLAG
)
1443 && (dc
->cpu
->env
.pvr
.regs
[2] & PVR2_ILL_OPCODE_EXC_MASK
)
1444 && !((dc
->cpu
->env
.pvr
.regs
[2] & PVR2_USE_FPU_MASK
))) {
1445 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_ILLEGAL_OP
);
1446 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
1450 fpu_insn
= (dc
->ir
>> 7) & 7;
1454 gen_helper_fadd(cpu_R
[dc
->rd
], cpu_env
, cpu_R
[dc
->ra
],
1459 gen_helper_frsub(cpu_R
[dc
->rd
], cpu_env
, cpu_R
[dc
->ra
],
1464 gen_helper_fmul(cpu_R
[dc
->rd
], cpu_env
, cpu_R
[dc
->ra
],
1469 gen_helper_fdiv(cpu_R
[dc
->rd
], cpu_env
, cpu_R
[dc
->ra
],
1474 switch ((dc
->ir
>> 4) & 7) {
1476 gen_helper_fcmp_un(cpu_R
[dc
->rd
], cpu_env
,
1477 cpu_R
[dc
->ra
], cpu_R
[dc
->rb
]);
1480 gen_helper_fcmp_lt(cpu_R
[dc
->rd
], cpu_env
,
1481 cpu_R
[dc
->ra
], cpu_R
[dc
->rb
]);
1484 gen_helper_fcmp_eq(cpu_R
[dc
->rd
], cpu_env
,
1485 cpu_R
[dc
->ra
], cpu_R
[dc
->rb
]);
1488 gen_helper_fcmp_le(cpu_R
[dc
->rd
], cpu_env
,
1489 cpu_R
[dc
->ra
], cpu_R
[dc
->rb
]);
1492 gen_helper_fcmp_gt(cpu_R
[dc
->rd
], cpu_env
,
1493 cpu_R
[dc
->ra
], cpu_R
[dc
->rb
]);
1496 gen_helper_fcmp_ne(cpu_R
[dc
->rd
], cpu_env
,
1497 cpu_R
[dc
->ra
], cpu_R
[dc
->rb
]);
1500 gen_helper_fcmp_ge(cpu_R
[dc
->rd
], cpu_env
,
1501 cpu_R
[dc
->ra
], cpu_R
[dc
->rb
]);
1504 qemu_log_mask(LOG_UNIMP
,
1505 "unimplemented fcmp fpu_insn=%x pc=%x"
1507 fpu_insn
, dc
->pc
, dc
->opcode
);
1508 dc
->abort_at_next_insn
= 1;
1514 if (!dec_check_fpuv2(dc
)) {
1517 gen_helper_flt(cpu_R
[dc
->rd
], cpu_env
, cpu_R
[dc
->ra
]);
1521 if (!dec_check_fpuv2(dc
)) {
1524 gen_helper_fint(cpu_R
[dc
->rd
], cpu_env
, cpu_R
[dc
->ra
]);
1528 if (!dec_check_fpuv2(dc
)) {
1531 gen_helper_fsqrt(cpu_R
[dc
->rd
], cpu_env
, cpu_R
[dc
->ra
]);
1535 qemu_log_mask(LOG_UNIMP
, "unimplemented FPU insn fpu_insn=%x pc=%x"
1537 fpu_insn
, dc
->pc
, dc
->opcode
);
1538 dc
->abort_at_next_insn
= 1;
1543 static void dec_null(DisasContext
*dc
)
1545 if ((dc
->tb_flags
& MSR_EE_FLAG
)
1546 && (dc
->cpu
->env
.pvr
.regs
[2] & PVR2_ILL_OPCODE_EXC_MASK
)) {
1547 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_ILLEGAL_OP
);
1548 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
1551 qemu_log ("unknown insn pc=%x opc=%x\n", dc
->pc
, dc
->opcode
);
1552 dc
->abort_at_next_insn
= 1;
1555 /* Insns connected to FSL or AXI stream attached devices. */
1556 static void dec_stream(DisasContext
*dc
)
1558 int mem_index
= cpu_mmu_index(&dc
->cpu
->env
);
1559 TCGv_i32 t_id
, t_ctrl
;
1562 LOG_DIS("%s%s imm=%x\n", dc
->rd
? "get" : "put",
1563 dc
->type_b
? "" : "d", dc
->imm
);
1565 if ((dc
->tb_flags
& MSR_EE_FLAG
) && (mem_index
== MMU_USER_IDX
)) {
1566 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_PRIVINSN
);
1567 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
1571 t_id
= tcg_temp_new();
1573 tcg_gen_movi_tl(t_id
, dc
->imm
& 0xf);
1574 ctrl
= dc
->imm
>> 10;
1576 tcg_gen_andi_tl(t_id
, cpu_R
[dc
->rb
], 0xf);
1577 ctrl
= dc
->imm
>> 5;
1580 t_ctrl
= tcg_const_tl(ctrl
);
1583 gen_helper_put(t_id
, t_ctrl
, cpu_R
[dc
->ra
]);
1585 gen_helper_get(cpu_R
[dc
->rd
], t_id
, t_ctrl
);
1587 tcg_temp_free(t_id
);
1588 tcg_temp_free(t_ctrl
);
1591 static struct decoder_info
{
1596 void (*dec
)(DisasContext
*dc
);
1604 {DEC_BARREL
, dec_barrel
},
1606 {DEC_ST
, dec_store
},
1615 {DEC_STREAM
, dec_stream
},
1619 static inline void decode(DisasContext
*dc
, uint32_t ir
)
1623 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP
| CPU_LOG_TB_OP_OPT
))) {
1624 tcg_gen_debug_insn_start(dc
->pc
);
1628 LOG_DIS("%8.8x\t", dc
->ir
);
1633 if ((dc
->tb_flags
& MSR_EE_FLAG
)
1634 && (dc
->cpu
->env
.pvr
.regs
[2] & PVR2_ILL_OPCODE_EXC_MASK
)
1635 && (dc
->cpu
->env
.pvr
.regs
[2] & PVR2_OPCODE_0x0_ILL_MASK
)) {
1636 tcg_gen_movi_tl(cpu_SR
[SR_ESR
], ESR_EC_ILLEGAL_OP
);
1637 t_gen_raise_exception(dc
, EXCP_HW_EXCP
);
1641 LOG_DIS("nr_nops=%d\t", dc
->nr_nops
);
1643 if (dc
->nr_nops
> 4) {
1644 cpu_abort(CPU(dc
->cpu
), "fetching nop sequence\n");
1647 /* bit 2 seems to indicate insn type. */
1648 dc
->type_b
= ir
& (1 << 29);
1650 dc
->opcode
= EXTRACT_FIELD(ir
, 26, 31);
1651 dc
->rd
= EXTRACT_FIELD(ir
, 21, 25);
1652 dc
->ra
= EXTRACT_FIELD(ir
, 16, 20);
1653 dc
->rb
= EXTRACT_FIELD(ir
, 11, 15);
1654 dc
->imm
= EXTRACT_FIELD(ir
, 0, 15);
1656 /* Large switch for all insns. */
1657 for (i
= 0; i
< ARRAY_SIZE(decinfo
); i
++) {
1658 if ((dc
->opcode
& decinfo
[i
].mask
) == decinfo
[i
].bits
) {
1665 static void check_breakpoint(CPUMBState
*env
, DisasContext
*dc
)
1667 CPUState
*cs
= CPU(mb_env_get_cpu(env
));
1670 if (unlikely(!QTAILQ_EMPTY(&cs
->breakpoints
))) {
1671 QTAILQ_FOREACH(bp
, &cs
->breakpoints
, entry
) {
1672 if (bp
->pc
== dc
->pc
) {
1673 t_gen_raise_exception(dc
, EXCP_DEBUG
);
1674 dc
->is_jmp
= DISAS_UPDATE
;
1680 /* generate intermediate code for basic block 'tb'. */
1682 gen_intermediate_code_internal(MicroBlazeCPU
*cpu
, TranslationBlock
*tb
,
1685 CPUState
*cs
= CPU(cpu
);
1686 CPUMBState
*env
= &cpu
->env
;
1687 uint16_t *gen_opc_end
;
1690 struct DisasContext ctx
;
1691 struct DisasContext
*dc
= &ctx
;
1692 uint32_t next_page_start
, org_flags
;
1700 org_flags
= dc
->synced_flags
= dc
->tb_flags
= tb
->flags
;
1702 gen_opc_end
= tcg_ctx
.gen_opc_buf
+ OPC_MAX_SIZE
;
1704 dc
->is_jmp
= DISAS_NEXT
;
1706 dc
->delayed_branch
= !!(dc
->tb_flags
& D_FLAG
);
1707 if (dc
->delayed_branch
) {
1708 dc
->jmp
= JMP_INDIRECT
;
1711 dc
->singlestep_enabled
= cs
->singlestep_enabled
;
1712 dc
->cpustate_changed
= 0;
1713 dc
->abort_at_next_insn
= 0;
1717 cpu_abort(cs
, "Microblaze: unaligned PC=%x\n", pc_start
);
1720 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM
)) {
1722 qemu_log("--------------\n");
1723 log_cpu_state(CPU(cpu
), 0);
1727 next_page_start
= (pc_start
& TARGET_PAGE_MASK
) + TARGET_PAGE_SIZE
;
1730 max_insns
= tb
->cflags
& CF_COUNT_MASK
;
1732 max_insns
= CF_COUNT_MASK
;
1738 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM
)) {
1739 tcg_gen_movi_tl(cpu_SR
[SR_PC
], dc
->pc
);
1743 check_breakpoint(env
, dc
);
1746 j
= tcg_ctx
.gen_opc_ptr
- tcg_ctx
.gen_opc_buf
;
1750 tcg_ctx
.gen_opc_instr_start
[lj
++] = 0;
1752 tcg_ctx
.gen_opc_pc
[lj
] = dc
->pc
;
1753 tcg_ctx
.gen_opc_instr_start
[lj
] = 1;
1754 tcg_ctx
.gen_opc_icount
[lj
] = num_insns
;
1758 LOG_DIS("%8.8x:\t", dc
->pc
);
1760 if (num_insns
+ 1 == max_insns
&& (tb
->cflags
& CF_LAST_IO
))
1764 decode(dc
, cpu_ldl_code(env
, dc
->pc
));
1766 dc
->tb_flags
&= ~IMM_FLAG
;
1770 if (dc
->delayed_branch
) {
1771 dc
->delayed_branch
--;
1772 if (!dc
->delayed_branch
) {
1773 if (dc
->tb_flags
& DRTI_FLAG
)
1775 if (dc
->tb_flags
& DRTB_FLAG
)
1777 if (dc
->tb_flags
& DRTE_FLAG
)
1779 /* Clear the delay slot flag. */
1780 dc
->tb_flags
&= ~D_FLAG
;
1781 /* If it is a direct jump, try direct chaining. */
1782 if (dc
->jmp
== JMP_INDIRECT
) {
1783 eval_cond_jmp(dc
, env_btarget
, tcg_const_tl(dc
->pc
));
1784 dc
->is_jmp
= DISAS_JUMP
;
1785 } else if (dc
->jmp
== JMP_DIRECT
) {
1787 gen_goto_tb(dc
, 0, dc
->jmp_pc
);
1788 dc
->is_jmp
= DISAS_TB_JUMP
;
1789 } else if (dc
->jmp
== JMP_DIRECT_CC
) {
1793 l1
= gen_new_label();
1794 /* Conditional jmp. */
1795 tcg_gen_brcondi_tl(TCG_COND_NE
, env_btaken
, 0, l1
);
1796 gen_goto_tb(dc
, 1, dc
->pc
);
1798 gen_goto_tb(dc
, 0, dc
->jmp_pc
);
1800 dc
->is_jmp
= DISAS_TB_JUMP
;
1805 if (cs
->singlestep_enabled
) {
1808 } while (!dc
->is_jmp
&& !dc
->cpustate_changed
1809 && tcg_ctx
.gen_opc_ptr
< gen_opc_end
1811 && (dc
->pc
< next_page_start
)
1812 && num_insns
< max_insns
);
1815 if (dc
->jmp
== JMP_DIRECT
|| dc
->jmp
== JMP_DIRECT_CC
) {
1816 if (dc
->tb_flags
& D_FLAG
) {
1817 dc
->is_jmp
= DISAS_UPDATE
;
1818 tcg_gen_movi_tl(cpu_SR
[SR_PC
], npc
);
1824 if (tb
->cflags
& CF_LAST_IO
)
1826 /* Force an update if the per-tb cpu state has changed. */
1827 if (dc
->is_jmp
== DISAS_NEXT
1828 && (dc
->cpustate_changed
|| org_flags
!= dc
->tb_flags
)) {
1829 dc
->is_jmp
= DISAS_UPDATE
;
1830 tcg_gen_movi_tl(cpu_SR
[SR_PC
], npc
);
1834 if (unlikely(cs
->singlestep_enabled
)) {
1835 TCGv_i32 tmp
= tcg_const_i32(EXCP_DEBUG
);
1837 if (dc
->is_jmp
!= DISAS_JUMP
) {
1838 tcg_gen_movi_tl(cpu_SR
[SR_PC
], npc
);
1840 gen_helper_raise_exception(cpu_env
, tmp
);
1841 tcg_temp_free_i32(tmp
);
1843 switch(dc
->is_jmp
) {
1845 gen_goto_tb(dc
, 1, npc
);
1850 /* indicate that the hash table must be used
1851 to find the next TB */
1855 /* nothing more to generate */
1859 gen_tb_end(tb
, num_insns
);
1860 *tcg_ctx
.gen_opc_ptr
= INDEX_op_end
;
1862 j
= tcg_ctx
.gen_opc_ptr
- tcg_ctx
.gen_opc_buf
;
1865 tcg_ctx
.gen_opc_instr_start
[lj
++] = 0;
1867 tb
->size
= dc
->pc
- pc_start
;
1868 tb
->icount
= num_insns
;
1873 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM
)) {
1876 log_target_disas(env
, pc_start
, dc
->pc
- pc_start
, 0);
1878 qemu_log("\nisize=%d osize=%td\n",
1879 dc
->pc
- pc_start
, tcg_ctx
.gen_opc_ptr
-
1880 tcg_ctx
.gen_opc_buf
);
1884 assert(!dc
->abort_at_next_insn
);
1887 void gen_intermediate_code (CPUMBState
*env
, struct TranslationBlock
*tb
)
1889 gen_intermediate_code_internal(mb_env_get_cpu(env
), tb
, false);
1892 void gen_intermediate_code_pc (CPUMBState
*env
, struct TranslationBlock
*tb
)
1894 gen_intermediate_code_internal(mb_env_get_cpu(env
), tb
, true);
1897 void mb_cpu_dump_state(CPUState
*cs
, FILE *f
, fprintf_function cpu_fprintf
,
1900 MicroBlazeCPU
*cpu
= MICROBLAZE_CPU(cs
);
1901 CPUMBState
*env
= &cpu
->env
;
1907 cpu_fprintf(f
, "IN: PC=%x %s\n",
1908 env
->sregs
[SR_PC
], lookup_symbol(env
->sregs
[SR_PC
]));
1909 cpu_fprintf(f
, "rmsr=%x resr=%x rear=%x debug=%x imm=%x iflags=%x fsr=%x\n",
1910 env
->sregs
[SR_MSR
], env
->sregs
[SR_ESR
], env
->sregs
[SR_EAR
],
1911 env
->debug
, env
->imm
, env
->iflags
, env
->sregs
[SR_FSR
]);
1912 cpu_fprintf(f
, "btaken=%d btarget=%x mode=%s(saved=%s) eip=%d ie=%d\n",
1913 env
->btaken
, env
->btarget
,
1914 (env
->sregs
[SR_MSR
] & MSR_UM
) ? "user" : "kernel",
1915 (env
->sregs
[SR_MSR
] & MSR_UMS
) ? "user" : "kernel",
1916 (env
->sregs
[SR_MSR
] & MSR_EIP
),
1917 (env
->sregs
[SR_MSR
] & MSR_IE
));
1919 for (i
= 0; i
< 32; i
++) {
1920 cpu_fprintf(f
, "r%2.2d=%8.8x ", i
, env
->regs
[i
]);
1921 if ((i
+ 1) % 4 == 0)
1922 cpu_fprintf(f
, "\n");
1924 cpu_fprintf(f
, "\n\n");
1927 MicroBlazeCPU
*cpu_mb_init(const char *cpu_model
)
1931 cpu
= MICROBLAZE_CPU(object_new(TYPE_MICROBLAZE_CPU
));
1933 object_property_set_bool(OBJECT(cpu
), true, "realized", NULL
);
1938 void mb_tcg_init(void)
1942 cpu_env
= tcg_global_reg_new_ptr(TCG_AREG0
, "env");
1944 env_debug
= tcg_global_mem_new(TCG_AREG0
,
1945 offsetof(CPUMBState
, debug
),
1947 env_iflags
= tcg_global_mem_new(TCG_AREG0
,
1948 offsetof(CPUMBState
, iflags
),
1950 env_imm
= tcg_global_mem_new(TCG_AREG0
,
1951 offsetof(CPUMBState
, imm
),
1953 env_btarget
= tcg_global_mem_new(TCG_AREG0
,
1954 offsetof(CPUMBState
, btarget
),
1956 env_btaken
= tcg_global_mem_new(TCG_AREG0
,
1957 offsetof(CPUMBState
, btaken
),
1959 env_res_addr
= tcg_global_mem_new(TCG_AREG0
,
1960 offsetof(CPUMBState
, res_addr
),
1962 env_res_val
= tcg_global_mem_new(TCG_AREG0
,
1963 offsetof(CPUMBState
, res_val
),
1965 for (i
= 0; i
< ARRAY_SIZE(cpu_R
); i
++) {
1966 cpu_R
[i
] = tcg_global_mem_new(TCG_AREG0
,
1967 offsetof(CPUMBState
, regs
[i
]),
1970 for (i
= 0; i
< ARRAY_SIZE(cpu_SR
); i
++) {
1971 cpu_SR
[i
] = tcg_global_mem_new(TCG_AREG0
,
1972 offsetof(CPUMBState
, sregs
[i
]),
1973 special_regnames
[i
]);
1977 void restore_state_to_opc(CPUMBState
*env
, TranslationBlock
*tb
, int pc_pos
)
1979 env
->sregs
[SR_PC
] = tcg_ctx
.gen_opc_pc
[pc_pos
];