2009-05-20 19:37:39 +02:00
|
|
|
/*
|
|
|
|
* Xilinx MicroBlaze emulation for qemu: main translation routines.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009 Edgar E. Iglesias.
|
2012-04-12 06:30:30 +02:00
|
|
|
* Copyright (c) 2009-2012 PetaLogix Qld Pty Ltd.
|
2009-05-20 19:37:39 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-07-16 22:47:01 +02:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2009-05-20 19:37:39 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-26 19:05:31 +01:00
|
|
|
#include "qemu/osdep.h"
|
2009-05-20 19:37:39 +02:00
|
|
|
#include "cpu.h"
|
2012-10-24 11:12:21 +02:00
|
|
|
#include "disas/disas.h"
|
2009-05-20 19:37:39 +02:00
|
|
|
#include "tcg-op.h"
|
2014-04-08 07:31:41 +02:00
|
|
|
#include "exec/helper-proto.h"
|
2009-05-20 19:37:39 +02:00
|
|
|
#include "microblaze-decode.h"
|
2014-03-28 19:42:10 +01:00
|
|
|
#include "exec/cpu_ldst.h"
|
2014-04-08 07:31:41 +02:00
|
|
|
#include "exec/helper-gen.h"
|
2009-05-20 19:37:39 +02:00
|
|
|
|
2014-05-30 14:12:25 +02:00
|
|
|
#include "trace-tcg.h"
|
2016-01-07 14:55:28 +01:00
|
|
|
#include "exec/log.h"
|
2014-05-30 14:12:25 +02:00
|
|
|
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
#define SIM_COMPAT 0
|
|
|
|
#define DISAS_GNU 1
|
|
|
|
#define DISAS_MB 1
|
|
|
|
#if DISAS_MB && !SIM_COMPAT
|
|
|
|
# define LOG_DIS(...) qemu_log_mask(CPU_LOG_TB_IN_ASM, ## __VA_ARGS__)
|
|
|
|
#else
|
|
|
|
# define LOG_DIS(...) do { } while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define D(x)
|
|
|
|
|
|
|
|
#define EXTRACT_FIELD(src, start, end) \
|
|
|
|
(((src) >> start) & ((1 << (end - start + 1)) - 1))
|
|
|
|
|
|
|
|
static TCGv env_debug;
|
2016-02-25 17:43:15 +01:00
|
|
|
static TCGv_env cpu_env;
|
2009-05-20 19:37:39 +02:00
|
|
|
static TCGv cpu_R[32];
|
|
|
|
static TCGv cpu_SR[18];
|
|
|
|
static TCGv env_imm;
|
|
|
|
static TCGv env_btaken;
|
|
|
|
static TCGv env_btarget;
|
|
|
|
static TCGv env_iflags;
|
2013-10-23 16:44:08 +02:00
|
|
|
static TCGv env_res_addr;
|
2013-10-23 16:54:31 +02:00
|
|
|
static TCGv env_res_val;
|
2009-05-20 19:37:39 +02:00
|
|
|
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/gen-icount.h"
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
/* This is the state at translation time. */
|
|
|
|
typedef struct DisasContext {
|
2013-09-03 20:02:48 +02:00
|
|
|
MicroBlazeCPU *cpu;
|
2010-07-25 00:09:41 +02:00
|
|
|
target_ulong pc;
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
/* Decoder. */
|
|
|
|
int type_b;
|
|
|
|
uint32_t ir;
|
|
|
|
uint8_t opcode;
|
|
|
|
uint8_t rd, ra, rb;
|
|
|
|
uint16_t imm;
|
|
|
|
|
|
|
|
unsigned int cpustate_changed;
|
|
|
|
unsigned int delayed_branch;
|
|
|
|
unsigned int tb_flags, synced_flags; /* tb dependent flags. */
|
|
|
|
unsigned int clear_imm;
|
|
|
|
int is_jmp;
|
|
|
|
|
2011-01-14 12:30:26 +01:00
|
|
|
#define JMP_NOJMP 0
|
|
|
|
#define JMP_DIRECT 1
|
|
|
|
#define JMP_DIRECT_CC 2
|
|
|
|
#define JMP_INDIRECT 3
|
2009-05-20 19:37:39 +02:00
|
|
|
unsigned int jmp;
|
|
|
|
uint32_t jmp_pc;
|
|
|
|
|
|
|
|
int abort_at_next_insn;
|
|
|
|
int nr_nops;
|
|
|
|
struct TranslationBlock *tb;
|
|
|
|
int singlestep_enabled;
|
|
|
|
} DisasContext;
|
|
|
|
|
2009-09-23 01:19:02 +02:00
|
|
|
static const char *regnames[] =
|
2009-05-20 19:37:39 +02:00
|
|
|
{
|
|
|
|
"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
|
|
|
|
"r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
|
|
|
|
"r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
|
|
|
|
"r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31",
|
|
|
|
};
|
|
|
|
|
2009-09-23 01:19:02 +02:00
|
|
|
static const char *special_regnames[] =
|
2009-05-20 19:37:39 +02:00
|
|
|
{
|
|
|
|
"rpc", "rmsr", "sr2", "sr3", "sr4", "sr5", "sr6", "sr7",
|
|
|
|
"sr8", "sr9", "sr10", "sr11", "sr12", "sr13", "sr14", "sr15",
|
|
|
|
"sr16", "sr17", "sr18"
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline void t_sync_flags(DisasContext *dc)
|
|
|
|
{
|
2011-11-22 11:06:21 +01:00
|
|
|
/* Synch the tb dependent flags between translator and runtime. */
|
2009-05-20 19:37:39 +02:00
|
|
|
if (dc->tb_flags != dc->synced_flags) {
|
|
|
|
tcg_gen_movi_tl(env_iflags, dc->tb_flags);
|
|
|
|
dc->synced_flags = dc->tb_flags;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void t_gen_raise_exception(DisasContext *dc, uint32_t index)
|
|
|
|
{
|
|
|
|
TCGv_i32 tmp = tcg_const_i32(index);
|
|
|
|
|
|
|
|
t_sync_flags(dc);
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_PC], dc->pc);
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_raise_exception(cpu_env, tmp);
|
2009-05-20 19:37:39 +02:00
|
|
|
tcg_temp_free_i32(tmp);
|
|
|
|
dc->is_jmp = DISAS_UPDATE;
|
|
|
|
}
|
|
|
|
|
2016-04-09 00:00:23 +02:00
|
|
|
static inline bool use_goto_tb(DisasContext *dc, target_ulong dest)
|
|
|
|
{
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
return (dc->tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK);
|
|
|
|
#else
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
static void gen_goto_tb(DisasContext *dc, int n, target_ulong dest)
|
|
|
|
{
|
2016-04-09 00:00:23 +02:00
|
|
|
if (use_goto_tb(dc, dest)) {
|
2009-05-20 19:37:39 +02:00
|
|
|
tcg_gen_goto_tb(n);
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_PC], dest);
|
2016-04-09 00:00:23 +02:00
|
|
|
tcg_gen_exit_tb((uintptr_t)dc->tb + n);
|
2009-05-20 19:37:39 +02:00
|
|
|
} else {
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_PC], dest);
|
|
|
|
tcg_gen_exit_tb(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-22 11:57:19 +01:00
|
|
|
static void read_carry(DisasContext *dc, TCGv d)
|
|
|
|
{
|
|
|
|
tcg_gen_shri_tl(d, cpu_SR[SR_MSR], 31);
|
|
|
|
}
|
|
|
|
|
2013-10-24 22:31:22 +02:00
|
|
|
/*
|
|
|
|
* write_carry sets the carry bits in MSR based on bit 0 of v.
|
|
|
|
* v[31:1] are ignored.
|
|
|
|
*/
|
2011-01-22 11:57:19 +01:00
|
|
|
static void write_carry(DisasContext *dc, TCGv v)
|
|
|
|
{
|
|
|
|
TCGv t0 = tcg_temp_new();
|
|
|
|
tcg_gen_shli_tl(t0, v, 31);
|
|
|
|
tcg_gen_sari_tl(t0, t0, 31);
|
|
|
|
tcg_gen_andi_tl(t0, t0, (MSR_C | MSR_CC));
|
|
|
|
tcg_gen_andi_tl(cpu_SR[SR_MSR], cpu_SR[SR_MSR],
|
|
|
|
~(MSR_C | MSR_CC));
|
|
|
|
tcg_gen_or_tl(cpu_SR[SR_MSR], cpu_SR[SR_MSR], t0);
|
|
|
|
tcg_temp_free(t0);
|
|
|
|
}
|
|
|
|
|
2013-10-24 12:49:05 +02:00
|
|
|
static void write_carryi(DisasContext *dc, bool carry)
|
2012-06-01 05:23:28 +02:00
|
|
|
{
|
|
|
|
TCGv t0 = tcg_temp_new();
|
2013-10-24 12:49:05 +02:00
|
|
|
tcg_gen_movi_tl(t0, carry);
|
2012-06-01 05:23:28 +02:00
|
|
|
write_carry(dc, t0);
|
|
|
|
tcg_temp_free(t0);
|
|
|
|
}
|
|
|
|
|
2010-07-24 21:24:59 +02:00
|
|
|
/* True if ALU operand b is a small immediate that may deserve
|
|
|
|
faster treatment. */
|
|
|
|
static inline int dec_alu_op_b_is_small_imm(DisasContext *dc)
|
|
|
|
{
|
|
|
|
/* Immediate insn without the imm prefix ? */
|
|
|
|
return dc->type_b && !(dc->tb_flags & IMM_FLAG);
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
static inline TCGv *dec_alu_op_b(DisasContext *dc)
|
|
|
|
{
|
|
|
|
if (dc->type_b) {
|
|
|
|
if (dc->tb_flags & IMM_FLAG)
|
|
|
|
tcg_gen_ori_tl(env_imm, env_imm, dc->imm);
|
|
|
|
else
|
|
|
|
tcg_gen_movi_tl(env_imm, (int32_t)((int16_t)dc->imm));
|
|
|
|
return &env_imm;
|
|
|
|
} else
|
|
|
|
return &cpu_R[dc->rb];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dec_add(DisasContext *dc)
|
|
|
|
{
|
|
|
|
unsigned int k, c;
|
2011-01-22 12:02:53 +01:00
|
|
|
TCGv cf;
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
k = dc->opcode & 4;
|
|
|
|
c = dc->opcode & 2;
|
|
|
|
|
|
|
|
LOG_DIS("add%s%s%s r%d r%d r%d\n",
|
|
|
|
dc->type_b ? "i" : "", k ? "k" : "", c ? "c" : "",
|
|
|
|
dc->rd, dc->ra, dc->rb);
|
|
|
|
|
2011-01-22 12:02:53 +01:00
|
|
|
/* Take care of the easy cases first. */
|
|
|
|
if (k) {
|
|
|
|
/* k - keep carry, no need to update MSR. */
|
|
|
|
/* If rd == r0, it's a nop. */
|
|
|
|
if (dc->rd) {
|
|
|
|
tcg_gen_add_tl(cpu_R[dc->rd], cpu_R[dc->ra], *(dec_alu_op_b(dc)));
|
|
|
|
|
|
|
|
if (c) {
|
|
|
|
/* c - Add carry into the result. */
|
|
|
|
cf = tcg_temp_new();
|
|
|
|
|
|
|
|
read_carry(dc, cf);
|
|
|
|
tcg_gen_add_tl(cpu_R[dc->rd], cpu_R[dc->rd], cf);
|
|
|
|
tcg_temp_free(cf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* From now on, we can assume k is zero. So we need to update MSR. */
|
|
|
|
/* Extract carry. */
|
|
|
|
cf = tcg_temp_new();
|
|
|
|
if (c) {
|
|
|
|
read_carry(dc, cf);
|
|
|
|
} else {
|
|
|
|
tcg_gen_movi_tl(cf, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dc->rd) {
|
|
|
|
TCGv ncf = tcg_temp_new();
|
2011-01-23 03:52:20 +01:00
|
|
|
gen_helper_carry(ncf, cpu_R[dc->ra], *(dec_alu_op_b(dc)), cf);
|
2009-05-20 19:37:39 +02:00
|
|
|
tcg_gen_add_tl(cpu_R[dc->rd], cpu_R[dc->ra], *(dec_alu_op_b(dc)));
|
2011-01-22 12:02:53 +01:00
|
|
|
tcg_gen_add_tl(cpu_R[dc->rd], cpu_R[dc->rd], cf);
|
|
|
|
write_carry(dc, ncf);
|
|
|
|
tcg_temp_free(ncf);
|
|
|
|
} else {
|
2011-01-23 03:52:20 +01:00
|
|
|
gen_helper_carry(cf, cpu_R[dc->ra], *(dec_alu_op_b(dc)), cf);
|
2011-01-22 12:02:53 +01:00
|
|
|
write_carry(dc, cf);
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
2011-01-22 12:02:53 +01:00
|
|
|
tcg_temp_free(cf);
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void dec_sub(DisasContext *dc)
|
|
|
|
{
|
|
|
|
unsigned int u, cmp, k, c;
|
2011-01-22 12:39:16 +01:00
|
|
|
TCGv cf, na;
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
u = dc->imm & 2;
|
|
|
|
k = dc->opcode & 4;
|
|
|
|
c = dc->opcode & 2;
|
|
|
|
cmp = (dc->imm & 1) && (!dc->type_b) && k;
|
|
|
|
|
|
|
|
if (cmp) {
|
|
|
|
LOG_DIS("cmp%s r%d, r%d ir=%x\n", u ? "u" : "", dc->rd, dc->ra, dc->ir);
|
|
|
|
if (dc->rd) {
|
|
|
|
if (u)
|
|
|
|
gen_helper_cmpu(cpu_R[dc->rd], cpu_R[dc->ra], cpu_R[dc->rb]);
|
|
|
|
else
|
|
|
|
gen_helper_cmp(cpu_R[dc->rd], cpu_R[dc->ra], cpu_R[dc->rb]);
|
|
|
|
}
|
2011-01-22 12:39:16 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_DIS("sub%s%s r%d, r%d r%d\n",
|
|
|
|
k ? "k" : "", c ? "c" : "", dc->rd, dc->ra, dc->rb);
|
|
|
|
|
|
|
|
/* Take care of the easy cases first. */
|
|
|
|
if (k) {
|
|
|
|
/* k - keep carry, no need to update MSR. */
|
|
|
|
/* If rd == r0, it's a nop. */
|
|
|
|
if (dc->rd) {
|
2009-05-20 19:37:39 +02:00
|
|
|
tcg_gen_sub_tl(cpu_R[dc->rd], *(dec_alu_op_b(dc)), cpu_R[dc->ra]);
|
2011-01-22 12:39:16 +01:00
|
|
|
|
|
|
|
if (c) {
|
|
|
|
/* c - Add carry into the result. */
|
|
|
|
cf = tcg_temp_new();
|
|
|
|
|
|
|
|
read_carry(dc, cf);
|
|
|
|
tcg_gen_add_tl(cpu_R[dc->rd], cpu_R[dc->rd], cf);
|
|
|
|
tcg_temp_free(cf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* From now on, we can assume k is zero. So we need to update MSR. */
|
|
|
|
/* Extract carry. And complement a into na. */
|
|
|
|
cf = tcg_temp_new();
|
|
|
|
na = tcg_temp_new();
|
|
|
|
if (c) {
|
|
|
|
read_carry(dc, cf);
|
|
|
|
} else {
|
|
|
|
tcg_gen_movi_tl(cf, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* d = b + ~a + c. carry defaults to 1. */
|
|
|
|
tcg_gen_not_tl(na, cpu_R[dc->ra]);
|
|
|
|
|
|
|
|
if (dc->rd) {
|
|
|
|
TCGv ncf = tcg_temp_new();
|
2011-01-23 03:52:20 +01:00
|
|
|
gen_helper_carry(ncf, na, *(dec_alu_op_b(dc)), cf);
|
2011-01-22 12:39:16 +01:00
|
|
|
tcg_gen_add_tl(cpu_R[dc->rd], na, *(dec_alu_op_b(dc)));
|
|
|
|
tcg_gen_add_tl(cpu_R[dc->rd], cpu_R[dc->rd], cf);
|
|
|
|
write_carry(dc, ncf);
|
|
|
|
tcg_temp_free(ncf);
|
|
|
|
} else {
|
2011-01-23 03:52:20 +01:00
|
|
|
gen_helper_carry(cf, na, *(dec_alu_op_b(dc)), cf);
|
2011-01-22 12:39:16 +01:00
|
|
|
write_carry(dc, cf);
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
2011-01-22 12:39:16 +01:00
|
|
|
tcg_temp_free(cf);
|
|
|
|
tcg_temp_free(na);
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void dec_pattern(DisasContext *dc)
|
|
|
|
{
|
|
|
|
unsigned int mode;
|
|
|
|
|
2009-09-03 11:12:30 +02:00
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
2013-09-03 20:02:48 +02:00
|
|
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
|
|
|
&& !((dc->cpu->env.pvr.regs[2] & PVR2_USE_PCMP_INSTR))) {
|
2009-09-03 11:12:30 +02:00
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
mode = dc->opcode & 3;
|
|
|
|
switch (mode) {
|
|
|
|
case 0:
|
|
|
|
/* pcmpbf. */
|
|
|
|
LOG_DIS("pcmpbf r%d r%d r%d\n", dc->rd, dc->ra, dc->rb);
|
|
|
|
if (dc->rd)
|
|
|
|
gen_helper_pcmpbf(cpu_R[dc->rd], cpu_R[dc->ra], cpu_R[dc->rb]);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
LOG_DIS("pcmpeq r%d r%d r%d\n", dc->rd, dc->ra, dc->rb);
|
|
|
|
if (dc->rd) {
|
2015-09-02 23:46:01 +02:00
|
|
|
tcg_gen_setcond_tl(TCG_COND_EQ, cpu_R[dc->rd],
|
|
|
|
cpu_R[dc->ra], cpu_R[dc->rb]);
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
LOG_DIS("pcmpne r%d r%d r%d\n", dc->rd, dc->ra, dc->rb);
|
|
|
|
if (dc->rd) {
|
2015-09-02 23:46:01 +02:00
|
|
|
tcg_gen_setcond_tl(TCG_COND_NE, cpu_R[dc->rd],
|
|
|
|
cpu_R[dc->ra], cpu_R[dc->rb]);
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2013-09-03 20:02:48 +02:00
|
|
|
cpu_abort(CPU(dc->cpu),
|
2009-05-20 19:37:39 +02:00
|
|
|
"unsupported pattern insn opcode=%x\n", dc->opcode);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dec_and(DisasContext *dc)
|
|
|
|
{
|
|
|
|
unsigned int not;
|
|
|
|
|
|
|
|
if (!dc->type_b && (dc->imm & (1 << 10))) {
|
|
|
|
dec_pattern(dc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
not = dc->opcode & (1 << 1);
|
|
|
|
LOG_DIS("and%s\n", not ? "n" : "");
|
|
|
|
|
|
|
|
if (!dc->rd)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (not) {
|
2013-10-24 18:49:46 +02:00
|
|
|
tcg_gen_andc_tl(cpu_R[dc->rd], cpu_R[dc->ra], *(dec_alu_op_b(dc)));
|
2009-05-20 19:37:39 +02:00
|
|
|
} else
|
|
|
|
tcg_gen_and_tl(cpu_R[dc->rd], cpu_R[dc->ra], *(dec_alu_op_b(dc)));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dec_or(DisasContext *dc)
|
|
|
|
{
|
|
|
|
if (!dc->type_b && (dc->imm & (1 << 10))) {
|
|
|
|
dec_pattern(dc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_DIS("or r%d r%d r%d imm=%x\n", dc->rd, dc->ra, dc->rb, dc->imm);
|
|
|
|
if (dc->rd)
|
|
|
|
tcg_gen_or_tl(cpu_R[dc->rd], cpu_R[dc->ra], *(dec_alu_op_b(dc)));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dec_xor(DisasContext *dc)
|
|
|
|
{
|
|
|
|
if (!dc->type_b && (dc->imm & (1 << 10))) {
|
|
|
|
dec_pattern(dc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_DIS("xor r%d\n", dc->rd);
|
|
|
|
if (dc->rd)
|
|
|
|
tcg_gen_xor_tl(cpu_R[dc->rd], cpu_R[dc->ra], *(dec_alu_op_b(dc)));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void msr_read(DisasContext *dc, TCGv d)
|
|
|
|
{
|
|
|
|
tcg_gen_mov_tl(d, cpu_SR[SR_MSR]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void msr_write(DisasContext *dc, TCGv v)
|
|
|
|
{
|
2011-08-25 08:41:18 +02:00
|
|
|
TCGv t;
|
|
|
|
|
|
|
|
t = tcg_temp_new();
|
2009-05-20 19:37:39 +02:00
|
|
|
dc->cpustate_changed = 1;
|
2011-08-25 08:41:18 +02:00
|
|
|
/* PVR bit is not writable. */
|
2011-08-25 08:41:19 +02:00
|
|
|
tcg_gen_andi_tl(t, v, ~MSR_PVR);
|
|
|
|
tcg_gen_andi_tl(cpu_SR[SR_MSR], cpu_SR[SR_MSR], MSR_PVR);
|
2011-08-25 08:41:18 +02:00
|
|
|
tcg_gen_or_tl(cpu_SR[SR_MSR], cpu_SR[SR_MSR], v);
|
|
|
|
tcg_temp_free(t);
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void dec_msr(DisasContext *dc)
|
|
|
|
{
|
2013-09-03 20:02:48 +02:00
|
|
|
CPUState *cs = CPU(dc->cpu);
|
2009-05-20 19:37:39 +02:00
|
|
|
TCGv t0, t1;
|
|
|
|
unsigned int sr, to, rn;
|
2015-08-17 09:34:10 +02:00
|
|
|
int mem_index = cpu_mmu_index(&dc->cpu->env, false);
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
sr = dc->imm & ((1 << 14) - 1);
|
|
|
|
to = dc->imm & (1 << 14);
|
|
|
|
dc->type_b = 1;
|
|
|
|
if (to)
|
|
|
|
dc->cpustate_changed = 1;
|
|
|
|
|
|
|
|
/* msrclr and msrset. */
|
|
|
|
if (!(dc->imm & (1 << 15))) {
|
|
|
|
unsigned int clr = dc->ir & (1 << 16);
|
|
|
|
|
|
|
|
LOG_DIS("msr%s r%d imm=%x\n", clr ? "clr" : "set",
|
|
|
|
dc->rd, dc->imm);
|
2009-09-03 11:12:30 +02:00
|
|
|
|
2013-09-03 20:02:48 +02:00
|
|
|
if (!(dc->cpu->env.pvr.regs[2] & PVR2_USE_MSR_INSTR)) {
|
2009-09-03 11:12:30 +02:00
|
|
|
/* nop??? */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
|
|
|
&& mem_index == MMU_USER_IDX && (dc->imm != 4 && dc->imm != 0)) {
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_PRIVINSN);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
if (dc->rd)
|
|
|
|
msr_read(dc, cpu_R[dc->rd]);
|
|
|
|
|
|
|
|
t0 = tcg_temp_new();
|
|
|
|
t1 = tcg_temp_new();
|
|
|
|
msr_read(dc, t0);
|
|
|
|
tcg_gen_mov_tl(t1, *(dec_alu_op_b(dc)));
|
|
|
|
|
|
|
|
if (clr) {
|
|
|
|
tcg_gen_not_tl(t1, t1);
|
|
|
|
tcg_gen_and_tl(t0, t0, t1);
|
|
|
|
} else
|
|
|
|
tcg_gen_or_tl(t0, t0, t1);
|
|
|
|
msr_write(dc, t0);
|
|
|
|
tcg_temp_free(t0);
|
|
|
|
tcg_temp_free(t1);
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_PC], dc->pc + 4);
|
|
|
|
dc->is_jmp = DISAS_UPDATE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-09-03 11:12:30 +02:00
|
|
|
if (to) {
|
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
|
|
|
&& mem_index == MMU_USER_IDX) {
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_PRIVINSN);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
/* Catch read/writes to the mmu block. */
|
|
|
|
if ((sr & ~0xff) == 0x1000) {
|
|
|
|
sr &= 7;
|
|
|
|
LOG_DIS("m%ss sr%d r%d imm=%x\n", to ? "t" : "f", sr, dc->ra, dc->imm);
|
|
|
|
if (to)
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_mmu_write(cpu_env, tcg_const_tl(sr), cpu_R[dc->ra]);
|
2009-05-20 19:37:39 +02:00
|
|
|
else
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_mmu_read(cpu_R[dc->rd], cpu_env, tcg_const_tl(sr));
|
2009-05-20 19:37:39 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (to) {
|
|
|
|
LOG_DIS("m%ss sr%x r%d imm=%x\n", to ? "t" : "f", sr, dc->ra, dc->imm);
|
|
|
|
switch (sr) {
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
msr_write(dc, cpu_R[dc->ra]);
|
|
|
|
break;
|
|
|
|
case 0x3:
|
|
|
|
tcg_gen_mov_tl(cpu_SR[SR_EAR], cpu_R[dc->ra]);
|
|
|
|
break;
|
|
|
|
case 0x5:
|
|
|
|
tcg_gen_mov_tl(cpu_SR[SR_ESR], cpu_R[dc->ra]);
|
|
|
|
break;
|
|
|
|
case 0x7:
|
2010-09-09 10:20:17 +02:00
|
|
|
tcg_gen_andi_tl(cpu_SR[SR_FSR], cpu_R[dc->ra], 31);
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
2012-01-10 10:27:11 +01:00
|
|
|
case 0x800:
|
2012-03-14 01:38:22 +01:00
|
|
|
tcg_gen_st_tl(cpu_R[dc->ra], cpu_env, offsetof(CPUMBState, slr));
|
2012-01-10 10:27:11 +01:00
|
|
|
break;
|
|
|
|
case 0x802:
|
2012-03-14 01:38:22 +01:00
|
|
|
tcg_gen_st_tl(cpu_R[dc->ra], cpu_env, offsetof(CPUMBState, shr));
|
2012-01-10 10:27:11 +01:00
|
|
|
break;
|
2009-05-20 19:37:39 +02:00
|
|
|
default:
|
2013-09-03 20:02:48 +02:00
|
|
|
cpu_abort(CPU(dc->cpu), "unknown mts reg %x\n", sr);
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
LOG_DIS("m%ss r%d sr%x imm=%x\n", to ? "t" : "f", dc->rd, sr, dc->imm);
|
|
|
|
|
|
|
|
switch (sr) {
|
|
|
|
case 0:
|
|
|
|
tcg_gen_movi_tl(cpu_R[dc->rd], dc->pc);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
msr_read(dc, cpu_R[dc->rd]);
|
|
|
|
break;
|
|
|
|
case 0x3:
|
|
|
|
tcg_gen_mov_tl(cpu_R[dc->rd], cpu_SR[SR_EAR]);
|
|
|
|
break;
|
|
|
|
case 0x5:
|
|
|
|
tcg_gen_mov_tl(cpu_R[dc->rd], cpu_SR[SR_ESR]);
|
|
|
|
break;
|
|
|
|
case 0x7:
|
2010-09-09 10:20:17 +02:00
|
|
|
tcg_gen_mov_tl(cpu_R[dc->rd], cpu_SR[SR_FSR]);
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
case 0xb:
|
|
|
|
tcg_gen_mov_tl(cpu_R[dc->rd], cpu_SR[SR_BTR]);
|
|
|
|
break;
|
2012-01-10 10:27:11 +01:00
|
|
|
case 0x800:
|
2012-03-14 01:38:22 +01:00
|
|
|
tcg_gen_ld_tl(cpu_R[dc->rd], cpu_env, offsetof(CPUMBState, slr));
|
2012-01-10 10:27:11 +01:00
|
|
|
break;
|
|
|
|
case 0x802:
|
2012-03-14 01:38:22 +01:00
|
|
|
tcg_gen_ld_tl(cpu_R[dc->rd], cpu_env, offsetof(CPUMBState, shr));
|
2012-01-10 10:27:11 +01:00
|
|
|
break;
|
2009-05-20 19:37:39 +02:00
|
|
|
case 0x2000:
|
|
|
|
case 0x2001:
|
|
|
|
case 0x2002:
|
|
|
|
case 0x2003:
|
|
|
|
case 0x2004:
|
|
|
|
case 0x2005:
|
|
|
|
case 0x2006:
|
|
|
|
case 0x2007:
|
|
|
|
case 0x2008:
|
|
|
|
case 0x2009:
|
|
|
|
case 0x200a:
|
|
|
|
case 0x200b:
|
|
|
|
case 0x200c:
|
|
|
|
rn = sr & 0xf;
|
|
|
|
tcg_gen_ld_tl(cpu_R[dc->rd],
|
2012-03-14 01:38:22 +01:00
|
|
|
cpu_env, offsetof(CPUMBState, pvr.regs[rn]));
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
default:
|
2013-09-03 17:38:47 +02:00
|
|
|
cpu_abort(cs, "unknown mfs reg %x\n", sr);
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-09-03 11:18:55 +02:00
|
|
|
|
|
|
|
if (dc->rd == 0) {
|
|
|
|
tcg_gen_movi_tl(cpu_R[0], 0);
|
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 64-bit signed mul, lower result in d and upper in d2. */
|
|
|
|
static void t_gen_muls(TCGv d, TCGv d2, TCGv a, TCGv b)
|
|
|
|
{
|
|
|
|
TCGv_i64 t0, t1;
|
|
|
|
|
|
|
|
t0 = tcg_temp_new_i64();
|
|
|
|
t1 = tcg_temp_new_i64();
|
|
|
|
|
|
|
|
tcg_gen_ext_i32_i64(t0, a);
|
|
|
|
tcg_gen_ext_i32_i64(t1, b);
|
|
|
|
tcg_gen_mul_i64(t0, t0, t1);
|
|
|
|
|
2015-07-24 20:49:53 +02:00
|
|
|
tcg_gen_extrl_i64_i32(d, t0);
|
2009-05-20 19:37:39 +02:00
|
|
|
tcg_gen_shri_i64(t0, t0, 32);
|
2015-07-24 20:49:53 +02:00
|
|
|
tcg_gen_extrl_i64_i32(d2, t0);
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
tcg_temp_free_i64(t0);
|
|
|
|
tcg_temp_free_i64(t1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 64-bit unsigned muls, lower result in d and upper in d2. */
|
|
|
|
static void t_gen_mulu(TCGv d, TCGv d2, TCGv a, TCGv b)
|
|
|
|
{
|
|
|
|
TCGv_i64 t0, t1;
|
|
|
|
|
|
|
|
t0 = tcg_temp_new_i64();
|
|
|
|
t1 = tcg_temp_new_i64();
|
|
|
|
|
|
|
|
tcg_gen_extu_i32_i64(t0, a);
|
|
|
|
tcg_gen_extu_i32_i64(t1, b);
|
|
|
|
tcg_gen_mul_i64(t0, t0, t1);
|
|
|
|
|
2015-07-24 20:49:53 +02:00
|
|
|
tcg_gen_extrl_i64_i32(d, t0);
|
2009-05-20 19:37:39 +02:00
|
|
|
tcg_gen_shri_i64(t0, t0, 32);
|
2015-07-24 20:49:53 +02:00
|
|
|
tcg_gen_extrl_i64_i32(d2, t0);
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
tcg_temp_free_i64(t0);
|
|
|
|
tcg_temp_free_i64(t1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Multiplier unit. */
|
|
|
|
static void dec_mul(DisasContext *dc)
|
|
|
|
{
|
|
|
|
TCGv d[2];
|
|
|
|
unsigned int subcode;
|
|
|
|
|
2009-09-03 11:12:30 +02:00
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
2013-09-03 20:02:48 +02:00
|
|
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
|
|
|
&& !(dc->cpu->env.pvr.regs[0] & PVR0_USE_HW_MUL_MASK)) {
|
2009-09-03 11:12:30 +02:00
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
subcode = dc->imm & 3;
|
|
|
|
d[0] = tcg_temp_new();
|
|
|
|
d[1] = tcg_temp_new();
|
|
|
|
|
|
|
|
if (dc->type_b) {
|
|
|
|
LOG_DIS("muli r%d r%d %x\n", dc->rd, dc->ra, dc->imm);
|
|
|
|
t_gen_mulu(cpu_R[dc->rd], d[1], cpu_R[dc->ra], *(dec_alu_op_b(dc)));
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2009-09-03 11:12:30 +02:00
|
|
|
/* mulh, mulhsu and mulhu are not available if C_USE_HW_MUL is < 2. */
|
|
|
|
if (subcode >= 1 && subcode <= 3
|
2013-09-03 20:02:48 +02:00
|
|
|
&& !((dc->cpu->env.pvr.regs[2] & PVR2_USE_MUL64_MASK))) {
|
2009-09-03 11:12:30 +02:00
|
|
|
/* nop??? */
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
switch (subcode) {
|
|
|
|
case 0:
|
|
|
|
LOG_DIS("mul r%d r%d r%d\n", dc->rd, dc->ra, dc->rb);
|
|
|
|
t_gen_mulu(cpu_R[dc->rd], d[1], cpu_R[dc->ra], cpu_R[dc->rb]);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
LOG_DIS("mulh r%d r%d r%d\n", dc->rd, dc->ra, dc->rb);
|
|
|
|
t_gen_muls(d[0], cpu_R[dc->rd], cpu_R[dc->ra], cpu_R[dc->rb]);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
LOG_DIS("mulhsu r%d r%d r%d\n", dc->rd, dc->ra, dc->rb);
|
|
|
|
t_gen_muls(d[0], cpu_R[dc->rd], cpu_R[dc->ra], cpu_R[dc->rb]);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
LOG_DIS("mulhu r%d r%d r%d\n", dc->rd, dc->ra, dc->rb);
|
|
|
|
t_gen_mulu(d[0], cpu_R[dc->rd], cpu_R[dc->ra], cpu_R[dc->rb]);
|
|
|
|
break;
|
|
|
|
default:
|
2013-09-03 20:02:48 +02:00
|
|
|
cpu_abort(CPU(dc->cpu), "unknown MUL insn %x\n", subcode);
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
done:
|
|
|
|
tcg_temp_free(d[0]);
|
|
|
|
tcg_temp_free(d[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Div unit. */
|
|
|
|
static void dec_div(DisasContext *dc)
|
|
|
|
{
|
|
|
|
unsigned int u;
|
|
|
|
|
|
|
|
u = dc->imm & 2;
|
|
|
|
LOG_DIS("div\n");
|
|
|
|
|
2013-09-03 20:02:48 +02:00
|
|
|
if ((dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
|
|
|
&& !((dc->cpu->env.pvr.regs[0] & PVR0_USE_DIV_MASK))) {
|
2009-09-03 11:12:30 +02:00
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
if (u)
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_divu(cpu_R[dc->rd], cpu_env, *(dec_alu_op_b(dc)),
|
|
|
|
cpu_R[dc->ra]);
|
2009-05-20 19:37:39 +02:00
|
|
|
else
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_divs(cpu_R[dc->rd], cpu_env, *(dec_alu_op_b(dc)),
|
|
|
|
cpu_R[dc->ra]);
|
2009-05-20 19:37:39 +02:00
|
|
|
if (!dc->rd)
|
|
|
|
tcg_gen_movi_tl(cpu_R[dc->rd], 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dec_barrel(DisasContext *dc)
|
|
|
|
{
|
|
|
|
TCGv t0;
|
|
|
|
unsigned int s, t;
|
|
|
|
|
2009-09-03 11:12:30 +02:00
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
2013-09-03 20:02:48 +02:00
|
|
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
|
|
|
&& !(dc->cpu->env.pvr.regs[0] & PVR0_USE_BARREL_MASK)) {
|
2009-09-03 11:12:30 +02:00
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
s = dc->imm & (1 << 10);
|
|
|
|
t = dc->imm & (1 << 9);
|
|
|
|
|
|
|
|
LOG_DIS("bs%s%s r%d r%d r%d\n",
|
|
|
|
s ? "l" : "r", t ? "a" : "l", dc->rd, dc->ra, dc->rb);
|
|
|
|
|
|
|
|
t0 = tcg_temp_new();
|
|
|
|
|
|
|
|
tcg_gen_mov_tl(t0, *(dec_alu_op_b(dc)));
|
|
|
|
tcg_gen_andi_tl(t0, t0, 31);
|
|
|
|
|
|
|
|
if (s)
|
|
|
|
tcg_gen_shl_tl(cpu_R[dc->rd], cpu_R[dc->ra], t0);
|
|
|
|
else {
|
|
|
|
if (t)
|
|
|
|
tcg_gen_sar_tl(cpu_R[dc->rd], cpu_R[dc->ra], t0);
|
|
|
|
else
|
|
|
|
tcg_gen_shr_tl(cpu_R[dc->rd], cpu_R[dc->ra], t0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dec_bit(DisasContext *dc)
|
|
|
|
{
|
2013-09-03 20:02:48 +02:00
|
|
|
CPUState *cs = CPU(dc->cpu);
|
2013-10-24 19:18:28 +02:00
|
|
|
TCGv t0;
|
2009-05-20 19:37:39 +02:00
|
|
|
unsigned int op;
|
2015-08-17 09:34:10 +02:00
|
|
|
int mem_index = cpu_mmu_index(&dc->cpu->env, false);
|
2009-05-20 19:37:39 +02:00
|
|
|
|
2012-05-17 07:37:49 +02:00
|
|
|
op = dc->ir & ((1 << 9) - 1);
|
2009-05-20 19:37:39 +02:00
|
|
|
switch (op) {
|
|
|
|
case 0x21:
|
|
|
|
/* src. */
|
|
|
|
t0 = tcg_temp_new();
|
|
|
|
|
|
|
|
LOG_DIS("src r%d r%d\n", dc->rd, dc->ra);
|
2013-10-24 19:18:28 +02:00
|
|
|
tcg_gen_andi_tl(t0, cpu_SR[SR_MSR], MSR_CC);
|
|
|
|
write_carry(dc, cpu_R[dc->ra]);
|
2009-05-20 19:37:39 +02:00
|
|
|
if (dc->rd) {
|
|
|
|
tcg_gen_shri_tl(cpu_R[dc->rd], cpu_R[dc->ra], 1);
|
2013-10-24 19:18:28 +02:00
|
|
|
tcg_gen_or_tl(cpu_R[dc->rd], cpu_R[dc->rd], t0);
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
tcg_temp_free(t0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x1:
|
|
|
|
case 0x41:
|
|
|
|
/* srl. */
|
|
|
|
LOG_DIS("srl r%d r%d\n", dc->rd, dc->ra);
|
|
|
|
|
2013-10-24 19:03:44 +02:00
|
|
|
/* Update carry. Note that write carry only looks at the LSB. */
|
|
|
|
write_carry(dc, cpu_R[dc->ra]);
|
2009-05-20 19:37:39 +02:00
|
|
|
if (dc->rd) {
|
|
|
|
if (op == 0x41)
|
|
|
|
tcg_gen_shri_tl(cpu_R[dc->rd], cpu_R[dc->ra], 1);
|
|
|
|
else
|
|
|
|
tcg_gen_sari_tl(cpu_R[dc->rd], cpu_R[dc->ra], 1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x60:
|
|
|
|
LOG_DIS("ext8s r%d r%d\n", dc->rd, dc->ra);
|
|
|
|
tcg_gen_ext8s_i32(cpu_R[dc->rd], cpu_R[dc->ra]);
|
|
|
|
break;
|
|
|
|
case 0x61:
|
|
|
|
LOG_DIS("ext16s r%d r%d\n", dc->rd, dc->ra);
|
|
|
|
tcg_gen_ext16s_i32(cpu_R[dc->rd], cpu_R[dc->ra]);
|
|
|
|
break;
|
|
|
|
case 0x64:
|
2009-12-13 09:10:08 +01:00
|
|
|
case 0x66:
|
|
|
|
case 0x74:
|
|
|
|
case 0x76:
|
2009-05-20 19:37:39 +02:00
|
|
|
/* wdc. */
|
|
|
|
LOG_DIS("wdc r%d\n", dc->ra);
|
2009-09-03 11:12:30 +02:00
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
|
|
|
&& mem_index == MMU_USER_IDX) {
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_PRIVINSN);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
case 0x68:
|
|
|
|
/* wic. */
|
|
|
|
LOG_DIS("wic r%d\n", dc->ra);
|
2009-09-03 11:12:30 +02:00
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
|
|
|
&& mem_index == MMU_USER_IDX) {
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_PRIVINSN);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
2012-01-10 10:17:21 +01:00
|
|
|
case 0xe0:
|
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
2013-09-03 20:02:48 +02:00
|
|
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
|
|
|
&& !((dc->cpu->env.pvr.regs[2] & PVR2_USE_PCMP_INSTR))) {
|
2012-01-10 10:17:21 +01:00
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
}
|
2013-09-03 20:02:48 +02:00
|
|
|
if (dc->cpu->env.pvr.regs[2] & PVR2_USE_PCMP_INSTR) {
|
2012-01-10 10:17:21 +01:00
|
|
|
gen_helper_clz(cpu_R[dc->rd], cpu_R[dc->ra]);
|
|
|
|
}
|
|
|
|
break;
|
2012-05-17 07:37:49 +02:00
|
|
|
case 0x1e0:
|
|
|
|
/* swapb */
|
|
|
|
LOG_DIS("swapb r%d r%d\n", dc->rd, dc->ra);
|
|
|
|
tcg_gen_bswap32_i32(cpu_R[dc->rd], cpu_R[dc->ra]);
|
|
|
|
break;
|
2012-11-08 05:01:19 +01:00
|
|
|
case 0x1e2:
|
2012-05-17 07:37:49 +02:00
|
|
|
/*swaph */
|
|
|
|
LOG_DIS("swaph r%d r%d\n", dc->rd, dc->ra);
|
|
|
|
tcg_gen_rotri_i32(cpu_R[dc->rd], cpu_R[dc->ra], 16);
|
|
|
|
break;
|
2009-05-20 19:37:39 +02:00
|
|
|
default:
|
2013-09-03 17:38:47 +02:00
|
|
|
cpu_abort(cs, "unknown bit oc=%x op=%x rd=%d ra=%d rb=%d\n",
|
|
|
|
dc->pc, op, dc->rd, dc->ra, dc->rb);
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void sync_jmpstate(DisasContext *dc)
|
|
|
|
{
|
2011-01-14 12:30:26 +01:00
|
|
|
if (dc->jmp == JMP_DIRECT || dc->jmp == JMP_DIRECT_CC) {
|
|
|
|
if (dc->jmp == JMP_DIRECT) {
|
|
|
|
tcg_gen_movi_tl(env_btaken, 1);
|
|
|
|
}
|
2011-01-05 02:21:19 +01:00
|
|
|
dc->jmp = JMP_INDIRECT;
|
|
|
|
tcg_gen_movi_tl(env_btarget, dc->jmp_pc);
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dec_imm(DisasContext *dc)
|
|
|
|
{
|
|
|
|
LOG_DIS("imm %x\n", dc->imm << 16);
|
|
|
|
tcg_gen_movi_tl(env_imm, (dc->imm << 16));
|
|
|
|
dc->tb_flags |= IMM_FLAG;
|
|
|
|
dc->clear_imm = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline TCGv *compute_ldst_addr(DisasContext *dc, TCGv *t)
|
|
|
|
{
|
|
|
|
unsigned int extimm = dc->tb_flags & IMM_FLAG;
|
2012-01-10 10:27:11 +01:00
|
|
|
/* Should be set to one if r1 is used by loadstores. */
|
|
|
|
int stackprot = 0;
|
|
|
|
|
|
|
|
/* All load/stores use ra. */
|
2015-05-29 08:30:43 +02:00
|
|
|
if (dc->ra == 1 && dc->cpu->cfg.stackprot) {
|
2012-01-10 10:27:11 +01:00
|
|
|
stackprot = 1;
|
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
|
2011-01-19 22:48:07 +01:00
|
|
|
/* Treat the common cases first. */
|
2009-05-20 19:37:39 +02:00
|
|
|
if (!dc->type_b) {
|
2010-07-24 23:25:49 +02:00
|
|
|
/* If any of the regs is r0, return a ptr to the other. */
|
|
|
|
if (dc->ra == 0) {
|
|
|
|
return &cpu_R[dc->rb];
|
|
|
|
} else if (dc->rb == 0) {
|
|
|
|
return &cpu_R[dc->ra];
|
|
|
|
}
|
|
|
|
|
2015-05-29 08:30:43 +02:00
|
|
|
if (dc->rb == 1 && dc->cpu->cfg.stackprot) {
|
2012-01-10 10:27:11 +01:00
|
|
|
stackprot = 1;
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
*t = tcg_temp_new();
|
|
|
|
tcg_gen_add_tl(*t, cpu_R[dc->ra], cpu_R[dc->rb]);
|
2012-01-10 10:27:11 +01:00
|
|
|
|
|
|
|
if (stackprot) {
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_stackprot(cpu_env, *t);
|
2012-01-10 10:27:11 +01:00
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
return t;
|
|
|
|
}
|
|
|
|
/* Immediate. */
|
|
|
|
if (!extimm) {
|
|
|
|
if (dc->imm == 0) {
|
|
|
|
return &cpu_R[dc->ra];
|
|
|
|
}
|
|
|
|
*t = tcg_temp_new();
|
|
|
|
tcg_gen_movi_tl(*t, (int32_t)((int16_t)dc->imm));
|
|
|
|
tcg_gen_add_tl(*t, cpu_R[dc->ra], *t);
|
|
|
|
} else {
|
|
|
|
*t = tcg_temp_new();
|
|
|
|
tcg_gen_add_tl(*t, cpu_R[dc->ra], *(dec_alu_op_b(dc)));
|
|
|
|
}
|
|
|
|
|
2012-01-10 10:27:11 +01:00
|
|
|
if (stackprot) {
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_stackprot(cpu_env, *t);
|
2012-01-10 10:27:11 +01:00
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dec_load(DisasContext *dc)
|
|
|
|
{
|
2013-12-11 00:40:21 +01:00
|
|
|
TCGv t, v, *addr;
|
2012-06-01 05:23:28 +02:00
|
|
|
unsigned int size, rev = 0, ex = 0;
|
2013-12-11 00:40:21 +01:00
|
|
|
TCGMemOp mop;
|
2009-05-20 19:37:39 +02:00
|
|
|
|
2013-12-11 00:40:21 +01:00
|
|
|
mop = dc->opcode & 3;
|
|
|
|
size = 1 << mop;
|
2011-01-19 23:18:00 +01:00
|
|
|
if (!dc->type_b) {
|
|
|
|
rev = (dc->ir >> 9) & 1;
|
2012-06-01 05:23:28 +02:00
|
|
|
ex = (dc->ir >> 10) & 1;
|
2011-01-19 23:18:00 +01:00
|
|
|
}
|
2013-12-11 00:40:21 +01:00
|
|
|
mop |= MO_TE;
|
|
|
|
if (rev) {
|
|
|
|
mop ^= MO_BSWAP;
|
|
|
|
}
|
2011-01-19 23:18:00 +01:00
|
|
|
|
2009-09-04 10:38:59 +02:00
|
|
|
if (size > 4 && (dc->tb_flags & MSR_EE_FLAG)
|
2013-09-03 20:02:48 +02:00
|
|
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)) {
|
2009-09-04 10:38:59 +02:00
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
|
2012-06-01 05:23:28 +02:00
|
|
|
LOG_DIS("l%d%s%s%s\n", size, dc->type_b ? "i" : "", rev ? "r" : "",
|
|
|
|
ex ? "x" : "");
|
2011-01-19 23:18:00 +01:00
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
t_sync_flags(dc);
|
|
|
|
addr = compute_ldst_addr(dc, &t);
|
|
|
|
|
2011-01-19 23:18:00 +01:00
|
|
|
/*
|
|
|
|
* When doing reverse accesses we need to do two things.
|
|
|
|
*
|
2011-03-13 15:44:02 +01:00
|
|
|
* 1. Reverse the address wrt endianness.
|
2011-01-19 23:18:00 +01:00
|
|
|
* 2. Byteswap the data lanes on the way back into the CPU core.
|
|
|
|
*/
|
|
|
|
if (rev && size != 4) {
|
|
|
|
/* Endian reverse the address. t is addr. */
|
|
|
|
switch (size) {
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
/* 00 -> 11
|
|
|
|
01 -> 10
|
|
|
|
10 -> 10
|
|
|
|
11 -> 00 */
|
|
|
|
TCGv low = tcg_temp_new();
|
|
|
|
|
|
|
|
/* Force addr into the temp. */
|
|
|
|
if (addr != &t) {
|
|
|
|
t = tcg_temp_new();
|
|
|
|
tcg_gen_mov_tl(t, *addr);
|
|
|
|
addr = &t;
|
|
|
|
}
|
|
|
|
|
|
|
|
tcg_gen_andi_tl(low, t, 3);
|
|
|
|
tcg_gen_sub_tl(low, tcg_const_tl(3), low);
|
|
|
|
tcg_gen_andi_tl(t, t, ~3);
|
|
|
|
tcg_gen_or_tl(t, t, low);
|
|
|
|
tcg_gen_mov_tl(env_imm, t);
|
|
|
|
tcg_temp_free(low);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
/* 00 -> 10
|
|
|
|
10 -> 00. */
|
|
|
|
/* Force addr into the temp. */
|
|
|
|
if (addr != &t) {
|
|
|
|
t = tcg_temp_new();
|
|
|
|
tcg_gen_xori_tl(t, *addr, 2);
|
|
|
|
addr = &t;
|
|
|
|
} else {
|
|
|
|
tcg_gen_xori_tl(t, t, 2);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2013-09-03 20:02:48 +02:00
|
|
|
cpu_abort(CPU(dc->cpu), "Invalid reverse size\n");
|
2011-01-19 23:18:00 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-01 05:23:28 +02:00
|
|
|
/* lwx does not throw unaligned access errors, so force alignment */
|
|
|
|
if (ex) {
|
|
|
|
/* Force addr into the temp. */
|
|
|
|
if (addr != &t) {
|
|
|
|
t = tcg_temp_new();
|
|
|
|
tcg_gen_mov_tl(t, *addr);
|
|
|
|
addr = &t;
|
|
|
|
}
|
|
|
|
tcg_gen_andi_tl(t, t, ~3);
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
/* If we get a fault on a dslot, the jmpstate better be in sync. */
|
|
|
|
sync_jmpstate(dc);
|
2009-09-03 12:59:46 +02:00
|
|
|
|
|
|
|
/* Verify alignment if needed. */
|
2013-12-11 00:40:21 +01:00
|
|
|
/*
|
|
|
|
* Microblaze gives MMU faults priority over faults due to
|
|
|
|
* unaligned addresses. That's why we speculatively do the load
|
|
|
|
* into v. If the load succeeds, we verify alignment of the
|
|
|
|
* address and if that succeeds we write into the destination reg.
|
|
|
|
*/
|
|
|
|
v = tcg_temp_new();
|
2015-08-17 09:34:10 +02:00
|
|
|
tcg_gen_qemu_ld_tl(v, *addr, cpu_mmu_index(&dc->cpu->env, false), mop);
|
2009-09-11 10:35:27 +02:00
|
|
|
|
2013-09-03 20:02:48 +02:00
|
|
|
if ((dc->cpu->env.pvr.regs[2] & PVR2_UNALIGNED_EXC_MASK) && size > 1) {
|
2009-09-11 10:35:27 +02:00
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_PC], dc->pc);
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_memalign(cpu_env, *addr, tcg_const_tl(dc->rd),
|
2009-09-03 22:28:21 +02:00
|
|
|
tcg_const_tl(0), tcg_const_tl(size - 1));
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
|
2013-12-11 00:40:21 +01:00
|
|
|
if (ex) {
|
|
|
|
tcg_gen_mov_tl(env_res_addr, *addr);
|
|
|
|
tcg_gen_mov_tl(env_res_val, v);
|
|
|
|
}
|
|
|
|
if (dc->rd) {
|
|
|
|
tcg_gen_mov_tl(cpu_R[dc->rd], v);
|
|
|
|
}
|
|
|
|
tcg_temp_free(v);
|
|
|
|
|
2012-06-01 05:23:28 +02:00
|
|
|
if (ex) { /* lwx */
|
2015-08-26 13:17:13 +02:00
|
|
|
/* no support for AXI exclusive so always clear C */
|
2012-06-01 05:23:28 +02:00
|
|
|
write_carryi(dc, 0);
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
if (addr == &t)
|
|
|
|
tcg_temp_free(t);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dec_store(DisasContext *dc)
|
|
|
|
{
|
2013-10-23 16:44:08 +02:00
|
|
|
TCGv t, *addr, swx_addr;
|
2015-02-13 21:51:55 +01:00
|
|
|
TCGLabel *swx_skip = NULL;
|
2012-06-01 05:23:28 +02:00
|
|
|
unsigned int size, rev = 0, ex = 0;
|
2013-12-11 00:40:21 +01:00
|
|
|
TCGMemOp mop;
|
2009-05-20 19:37:39 +02:00
|
|
|
|
2013-12-11 00:40:21 +01:00
|
|
|
mop = dc->opcode & 3;
|
|
|
|
size = 1 << mop;
|
2011-01-19 23:18:00 +01:00
|
|
|
if (!dc->type_b) {
|
|
|
|
rev = (dc->ir >> 9) & 1;
|
2012-06-01 05:23:28 +02:00
|
|
|
ex = (dc->ir >> 10) & 1;
|
2011-01-19 23:18:00 +01:00
|
|
|
}
|
2013-12-11 00:40:21 +01:00
|
|
|
mop |= MO_TE;
|
|
|
|
if (rev) {
|
|
|
|
mop ^= MO_BSWAP;
|
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
|
2009-09-04 10:38:59 +02:00
|
|
|
if (size > 4 && (dc->tb_flags & MSR_EE_FLAG)
|
2013-09-03 20:02:48 +02:00
|
|
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)) {
|
2009-09-04 10:38:59 +02:00
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-06-01 05:23:28 +02:00
|
|
|
LOG_DIS("s%d%s%s%s\n", size, dc->type_b ? "i" : "", rev ? "r" : "",
|
|
|
|
ex ? "x" : "");
|
2009-05-20 19:37:39 +02:00
|
|
|
t_sync_flags(dc);
|
|
|
|
/* If we get a fault on a dslot, the jmpstate better be in sync. */
|
|
|
|
sync_jmpstate(dc);
|
|
|
|
addr = compute_ldst_addr(dc, &t);
|
2009-09-03 12:59:46 +02:00
|
|
|
|
2012-06-05 04:31:04 +02:00
|
|
|
swx_addr = tcg_temp_local_new();
|
2012-06-01 05:23:28 +02:00
|
|
|
if (ex) { /* swx */
|
2013-10-23 16:54:31 +02:00
|
|
|
TCGv tval;
|
2012-06-01 05:23:28 +02:00
|
|
|
|
|
|
|
/* Force addr into the swx_addr. */
|
|
|
|
tcg_gen_mov_tl(swx_addr, *addr);
|
|
|
|
addr = &swx_addr;
|
|
|
|
/* swx does not throw unaligned access errors, so force alignment */
|
|
|
|
tcg_gen_andi_tl(swx_addr, swx_addr, ~3);
|
|
|
|
|
|
|
|
write_carryi(dc, 1);
|
|
|
|
swx_skip = gen_new_label();
|
2013-10-23 16:44:08 +02:00
|
|
|
tcg_gen_brcond_tl(TCG_COND_NE, env_res_addr, swx_addr, swx_skip);
|
2013-10-23 16:54:31 +02:00
|
|
|
|
|
|
|
/* Compare the value loaded at lwx with current contents of
|
|
|
|
the reserved location.
|
|
|
|
FIXME: This only works for system emulation where we can expect
|
|
|
|
this compare and the following write to be atomic. For user
|
|
|
|
emulation we need to add atomicity between threads. */
|
|
|
|
tval = tcg_temp_new();
|
2015-08-17 09:34:10 +02:00
|
|
|
tcg_gen_qemu_ld_tl(tval, swx_addr, cpu_mmu_index(&dc->cpu->env, false),
|
2013-09-03 20:02:48 +02:00
|
|
|
MO_TEUL);
|
2013-10-23 16:54:31 +02:00
|
|
|
tcg_gen_brcond_tl(TCG_COND_NE, env_res_val, tval, swx_skip);
|
2012-06-01 05:23:28 +02:00
|
|
|
write_carryi(dc, 0);
|
2013-10-23 16:54:31 +02:00
|
|
|
tcg_temp_free(tval);
|
2012-06-01 05:23:28 +02:00
|
|
|
}
|
|
|
|
|
2011-01-19 23:18:00 +01:00
|
|
|
if (rev && size != 4) {
|
|
|
|
/* Endian reverse the address. t is addr. */
|
|
|
|
switch (size) {
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
/* 00 -> 11
|
|
|
|
01 -> 10
|
|
|
|
10 -> 10
|
|
|
|
11 -> 00 */
|
|
|
|
TCGv low = tcg_temp_new();
|
|
|
|
|
|
|
|
/* Force addr into the temp. */
|
|
|
|
if (addr != &t) {
|
|
|
|
t = tcg_temp_new();
|
|
|
|
tcg_gen_mov_tl(t, *addr);
|
|
|
|
addr = &t;
|
|
|
|
}
|
|
|
|
|
|
|
|
tcg_gen_andi_tl(low, t, 3);
|
|
|
|
tcg_gen_sub_tl(low, tcg_const_tl(3), low);
|
|
|
|
tcg_gen_andi_tl(t, t, ~3);
|
|
|
|
tcg_gen_or_tl(t, t, low);
|
|
|
|
tcg_gen_mov_tl(env_imm, t);
|
|
|
|
tcg_temp_free(low);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
/* 00 -> 10
|
|
|
|
10 -> 00. */
|
|
|
|
/* Force addr into the temp. */
|
|
|
|
if (addr != &t) {
|
|
|
|
t = tcg_temp_new();
|
|
|
|
tcg_gen_xori_tl(t, *addr, 2);
|
|
|
|
addr = &t;
|
|
|
|
} else {
|
|
|
|
tcg_gen_xori_tl(t, t, 2);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2013-09-03 20:02:48 +02:00
|
|
|
cpu_abort(CPU(dc->cpu), "Invalid reverse size\n");
|
2011-01-19 23:18:00 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-08-17 09:34:10 +02:00
|
|
|
tcg_gen_qemu_st_tl(cpu_R[dc->rd], *addr, cpu_mmu_index(&dc->cpu->env, false), mop);
|
2009-09-11 10:35:27 +02:00
|
|
|
|
2009-09-03 12:59:46 +02:00
|
|
|
/* Verify alignment if needed. */
|
2013-09-03 20:02:48 +02:00
|
|
|
if ((dc->cpu->env.pvr.regs[2] & PVR2_UNALIGNED_EXC_MASK) && size > 1) {
|
2009-09-11 10:35:27 +02:00
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_PC], dc->pc);
|
|
|
|
/* FIXME: if the alignment is wrong, we should restore the value
|
2011-11-22 11:06:21 +01:00
|
|
|
* in memory. One possible way to achieve this is to probe
|
2011-01-19 23:18:00 +01:00
|
|
|
* the MMU prior to the memaccess, thay way we could put
|
|
|
|
* the alignment checks in between the probe and the mem
|
|
|
|
* access.
|
2009-09-11 10:35:27 +02:00
|
|
|
*/
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_memalign(cpu_env, *addr, tcg_const_tl(dc->rd),
|
2009-09-03 22:28:21 +02:00
|
|
|
tcg_const_tl(1), tcg_const_tl(size - 1));
|
2009-09-03 12:59:46 +02:00
|
|
|
}
|
2012-06-05 04:31:04 +02:00
|
|
|
|
2012-06-01 05:23:28 +02:00
|
|
|
if (ex) {
|
|
|
|
gen_set_label(swx_skip);
|
|
|
|
}
|
2012-06-05 04:31:04 +02:00
|
|
|
tcg_temp_free(swx_addr);
|
2009-09-03 12:59:46 +02:00
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
if (addr == &t)
|
|
|
|
tcg_temp_free(t);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void eval_cc(DisasContext *dc, unsigned int cc,
|
|
|
|
TCGv d, TCGv a, TCGv b)
|
|
|
|
{
|
|
|
|
switch (cc) {
|
|
|
|
case CC_EQ:
|
2010-07-24 21:51:51 +02:00
|
|
|
tcg_gen_setcond_tl(TCG_COND_EQ, d, a, b);
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
case CC_NE:
|
2010-07-24 21:51:51 +02:00
|
|
|
tcg_gen_setcond_tl(TCG_COND_NE, d, a, b);
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
case CC_LT:
|
2010-07-24 21:51:51 +02:00
|
|
|
tcg_gen_setcond_tl(TCG_COND_LT, d, a, b);
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
case CC_LE:
|
2010-07-24 21:51:51 +02:00
|
|
|
tcg_gen_setcond_tl(TCG_COND_LE, d, a, b);
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
case CC_GE:
|
2010-07-24 21:51:51 +02:00
|
|
|
tcg_gen_setcond_tl(TCG_COND_GE, d, a, b);
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
case CC_GT:
|
2010-07-24 21:51:51 +02:00
|
|
|
tcg_gen_setcond_tl(TCG_COND_GT, d, a, b);
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
default:
|
2013-09-03 20:02:48 +02:00
|
|
|
cpu_abort(CPU(dc->cpu), "Unknown condition code %x.\n", cc);
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void eval_cond_jmp(DisasContext *dc, TCGv pc_true, TCGv pc_false)
|
|
|
|
{
|
2015-02-13 21:51:55 +01:00
|
|
|
TCGLabel *l1 = gen_new_label();
|
2009-05-20 19:37:39 +02:00
|
|
|
/* Conditional jmp. */
|
|
|
|
tcg_gen_mov_tl(cpu_SR[SR_PC], pc_false);
|
|
|
|
tcg_gen_brcondi_tl(TCG_COND_EQ, env_btaken, 0, l1);
|
|
|
|
tcg_gen_mov_tl(cpu_SR[SR_PC], pc_true);
|
|
|
|
gen_set_label(l1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dec_bcc(DisasContext *dc)
|
|
|
|
{
|
|
|
|
unsigned int cc;
|
|
|
|
unsigned int dslot;
|
|
|
|
|
|
|
|
cc = EXTRACT_FIELD(dc->ir, 21, 23);
|
|
|
|
dslot = dc->ir & (1 << 25);
|
|
|
|
LOG_DIS("bcc%s r%d %x\n", dslot ? "d" : "", dc->ra, dc->imm);
|
|
|
|
|
|
|
|
dc->delayed_branch = 1;
|
|
|
|
if (dslot) {
|
|
|
|
dc->delayed_branch = 2;
|
|
|
|
dc->tb_flags |= D_FLAG;
|
|
|
|
tcg_gen_st_tl(tcg_const_tl(dc->type_b && (dc->tb_flags & IMM_FLAG)),
|
2012-03-14 01:38:22 +01:00
|
|
|
cpu_env, offsetof(CPUMBState, bimm));
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
|
2010-07-24 21:24:59 +02:00
|
|
|
if (dec_alu_op_b_is_small_imm(dc)) {
|
|
|
|
int32_t offset = (int32_t)((int16_t)dc->imm); /* sign-extend. */
|
|
|
|
|
|
|
|
tcg_gen_movi_tl(env_btarget, dc->pc + offset);
|
2011-01-14 12:30:26 +01:00
|
|
|
dc->jmp = JMP_DIRECT_CC;
|
2011-01-05 02:21:19 +01:00
|
|
|
dc->jmp_pc = dc->pc + offset;
|
2010-07-24 21:24:59 +02:00
|
|
|
} else {
|
2011-01-05 02:21:19 +01:00
|
|
|
dc->jmp = JMP_INDIRECT;
|
2010-07-24 21:24:59 +02:00
|
|
|
tcg_gen_movi_tl(env_btarget, dc->pc);
|
|
|
|
tcg_gen_add_tl(env_btarget, env_btarget, *(dec_alu_op_b(dc)));
|
|
|
|
}
|
|
|
|
eval_cc(dc, cc, env_btaken, cpu_R[dc->ra], tcg_const_tl(0));
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void dec_br(DisasContext *dc)
|
|
|
|
{
|
2012-01-10 10:33:37 +01:00
|
|
|
unsigned int dslot, link, abs, mbar;
|
2015-08-17 09:34:10 +02:00
|
|
|
int mem_index = cpu_mmu_index(&dc->cpu->env, false);
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
dslot = dc->ir & (1 << 20);
|
|
|
|
abs = dc->ir & (1 << 19);
|
|
|
|
link = dc->ir & (1 << 18);
|
2012-01-10 10:33:37 +01:00
|
|
|
|
|
|
|
/* Memory barrier. */
|
|
|
|
mbar = (dc->ir >> 16) & 31;
|
|
|
|
if (mbar == 2 && dc->imm == 4) {
|
2013-03-28 22:59:03 +01:00
|
|
|
/* mbar IMM & 16 decodes to sleep. */
|
|
|
|
if (dc->rd & 16) {
|
|
|
|
TCGv_i32 tmp_hlt = tcg_const_i32(EXCP_HLT);
|
|
|
|
TCGv_i32 tmp_1 = tcg_const_i32(1);
|
|
|
|
|
|
|
|
LOG_DIS("sleep\n");
|
|
|
|
|
|
|
|
t_sync_flags(dc);
|
|
|
|
tcg_gen_st_i32(tmp_1, cpu_env,
|
|
|
|
-offsetof(MicroBlazeCPU, env)
|
|
|
|
+offsetof(CPUState, halted));
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_PC], dc->pc + 4);
|
|
|
|
gen_helper_raise_exception(cpu_env, tmp_hlt);
|
|
|
|
tcg_temp_free_i32(tmp_hlt);
|
|
|
|
tcg_temp_free_i32(tmp_1);
|
|
|
|
return;
|
|
|
|
}
|
2012-01-10 10:33:37 +01:00
|
|
|
LOG_DIS("mbar %d\n", dc->rd);
|
|
|
|
/* Break the TB. */
|
|
|
|
dc->cpustate_changed = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
LOG_DIS("br%s%s%s%s imm=%x\n",
|
|
|
|
abs ? "a" : "", link ? "l" : "",
|
|
|
|
dc->type_b ? "i" : "", dslot ? "d" : "",
|
|
|
|
dc->imm);
|
|
|
|
|
|
|
|
dc->delayed_branch = 1;
|
|
|
|
if (dslot) {
|
|
|
|
dc->delayed_branch = 2;
|
|
|
|
dc->tb_flags |= D_FLAG;
|
|
|
|
tcg_gen_st_tl(tcg_const_tl(dc->type_b && (dc->tb_flags & IMM_FLAG)),
|
2012-03-14 01:38:22 +01:00
|
|
|
cpu_env, offsetof(CPUMBState, bimm));
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
if (link && dc->rd)
|
|
|
|
tcg_gen_movi_tl(cpu_R[dc->rd], dc->pc);
|
|
|
|
|
|
|
|
dc->jmp = JMP_INDIRECT;
|
|
|
|
if (abs) {
|
|
|
|
tcg_gen_movi_tl(env_btaken, 1);
|
|
|
|
tcg_gen_mov_tl(env_btarget, *(dec_alu_op_b(dc)));
|
2010-02-20 14:04:01 +01:00
|
|
|
if (link && !dslot) {
|
|
|
|
if (!(dc->tb_flags & IMM_FLAG) && (dc->imm == 8 || dc->imm == 0x18))
|
|
|
|
t_gen_raise_exception(dc, EXCP_BREAK);
|
|
|
|
if (dc->imm == 0) {
|
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG) && mem_index == MMU_USER_IDX) {
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_PRIVINSN);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
t_gen_raise_exception(dc, EXCP_DEBUG);
|
|
|
|
}
|
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
} else {
|
2010-07-24 21:24:59 +02:00
|
|
|
if (dec_alu_op_b_is_small_imm(dc)) {
|
|
|
|
dc->jmp = JMP_DIRECT;
|
|
|
|
dc->jmp_pc = dc->pc + (int32_t)((int16_t)dc->imm);
|
|
|
|
} else {
|
2009-05-20 19:37:39 +02:00
|
|
|
tcg_gen_movi_tl(env_btaken, 1);
|
|
|
|
tcg_gen_movi_tl(env_btarget, dc->pc);
|
|
|
|
tcg_gen_add_tl(env_btarget, env_btarget, *(dec_alu_op_b(dc)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void do_rti(DisasContext *dc)
|
|
|
|
{
|
|
|
|
TCGv t0, t1;
|
|
|
|
t0 = tcg_temp_new();
|
|
|
|
t1 = tcg_temp_new();
|
|
|
|
tcg_gen_shri_tl(t0, cpu_SR[SR_MSR], 1);
|
|
|
|
tcg_gen_ori_tl(t1, cpu_SR[SR_MSR], MSR_IE);
|
|
|
|
tcg_gen_andi_tl(t0, t0, (MSR_VM | MSR_UM));
|
|
|
|
|
|
|
|
tcg_gen_andi_tl(t1, t1, ~(MSR_VM | MSR_UM));
|
|
|
|
tcg_gen_or_tl(t1, t1, t0);
|
|
|
|
msr_write(dc, t1);
|
|
|
|
tcg_temp_free(t1);
|
|
|
|
tcg_temp_free(t0);
|
|
|
|
dc->tb_flags &= ~DRTI_FLAG;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void do_rtb(DisasContext *dc)
|
|
|
|
{
|
|
|
|
TCGv t0, t1;
|
|
|
|
t0 = tcg_temp_new();
|
|
|
|
t1 = tcg_temp_new();
|
|
|
|
tcg_gen_andi_tl(t1, cpu_SR[SR_MSR], ~MSR_BIP);
|
|
|
|
tcg_gen_shri_tl(t0, t1, 1);
|
|
|
|
tcg_gen_andi_tl(t0, t0, (MSR_VM | MSR_UM));
|
|
|
|
|
|
|
|
tcg_gen_andi_tl(t1, t1, ~(MSR_VM | MSR_UM));
|
|
|
|
tcg_gen_or_tl(t1, t1, t0);
|
|
|
|
msr_write(dc, t1);
|
|
|
|
tcg_temp_free(t1);
|
|
|
|
tcg_temp_free(t0);
|
|
|
|
dc->tb_flags &= ~DRTB_FLAG;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void do_rte(DisasContext *dc)
|
|
|
|
{
|
|
|
|
TCGv t0, t1;
|
|
|
|
t0 = tcg_temp_new();
|
|
|
|
t1 = tcg_temp_new();
|
|
|
|
|
|
|
|
tcg_gen_ori_tl(t1, cpu_SR[SR_MSR], MSR_EE);
|
|
|
|
tcg_gen_andi_tl(t1, t1, ~MSR_EIP);
|
|
|
|
tcg_gen_shri_tl(t0, t1, 1);
|
|
|
|
tcg_gen_andi_tl(t0, t0, (MSR_VM | MSR_UM));
|
|
|
|
|
|
|
|
tcg_gen_andi_tl(t1, t1, ~(MSR_VM | MSR_UM));
|
|
|
|
tcg_gen_or_tl(t1, t1, t0);
|
|
|
|
msr_write(dc, t1);
|
|
|
|
tcg_temp_free(t1);
|
|
|
|
tcg_temp_free(t0);
|
|
|
|
dc->tb_flags &= ~DRTE_FLAG;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dec_rts(DisasContext *dc)
|
|
|
|
{
|
|
|
|
unsigned int b_bit, i_bit, e_bit;
|
2015-08-17 09:34:10 +02:00
|
|
|
int mem_index = cpu_mmu_index(&dc->cpu->env, false);
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
i_bit = dc->ir & (1 << 21);
|
|
|
|
b_bit = dc->ir & (1 << 22);
|
|
|
|
e_bit = dc->ir & (1 << 23);
|
|
|
|
|
|
|
|
dc->delayed_branch = 2;
|
|
|
|
dc->tb_flags |= D_FLAG;
|
|
|
|
tcg_gen_st_tl(tcg_const_tl(dc->type_b && (dc->tb_flags & IMM_FLAG)),
|
2012-03-14 01:38:22 +01:00
|
|
|
cpu_env, offsetof(CPUMBState, bimm));
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
if (i_bit) {
|
|
|
|
LOG_DIS("rtid ir=%x\n", dc->ir);
|
2009-09-03 11:12:30 +02:00
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
|
|
|
&& mem_index == MMU_USER_IDX) {
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_PRIVINSN);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
dc->tb_flags |= DRTI_FLAG;
|
|
|
|
} else if (b_bit) {
|
|
|
|
LOG_DIS("rtbd ir=%x\n", dc->ir);
|
2009-09-03 11:12:30 +02:00
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
|
|
|
&& mem_index == MMU_USER_IDX) {
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_PRIVINSN);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
dc->tb_flags |= DRTB_FLAG;
|
|
|
|
} else if (e_bit) {
|
|
|
|
LOG_DIS("rted ir=%x\n", dc->ir);
|
2009-09-03 11:12:30 +02:00
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
|
|
|
&& mem_index == MMU_USER_IDX) {
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_PRIVINSN);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
dc->tb_flags |= DRTE_FLAG;
|
|
|
|
} else
|
|
|
|
LOG_DIS("rts ir=%x\n", dc->ir);
|
|
|
|
|
2011-01-05 02:21:19 +01:00
|
|
|
dc->jmp = JMP_INDIRECT;
|
2009-05-20 19:37:39 +02:00
|
|
|
tcg_gen_movi_tl(env_btaken, 1);
|
|
|
|
tcg_gen_add_tl(env_btarget, cpu_R[dc->ra], *(dec_alu_op_b(dc)));
|
|
|
|
}
|
|
|
|
|
2010-09-09 10:20:17 +02:00
|
|
|
static int dec_check_fpuv2(DisasContext *dc)
|
|
|
|
{
|
2015-06-19 06:16:25 +02:00
|
|
|
if ((dc->cpu->cfg.use_fpu != 2) && (dc->tb_flags & MSR_EE_FLAG)) {
|
2010-09-09 10:20:17 +02:00
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_FPU);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
}
|
2015-06-19 06:16:25 +02:00
|
|
|
return (dc->cpu->cfg.use_fpu == 2) ? 0 : PVR2_USE_FPU2_MASK;
|
2010-09-09 10:20:17 +02:00
|
|
|
}
|
|
|
|
|
2009-09-03 11:12:30 +02:00
|
|
|
static void dec_fpu(DisasContext *dc)
|
|
|
|
{
|
2010-09-09 10:20:17 +02:00
|
|
|
unsigned int fpu_insn;
|
|
|
|
|
2009-09-03 11:12:30 +02:00
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
2013-09-03 20:02:48 +02:00
|
|
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
2015-06-19 06:16:25 +02:00
|
|
|
&& (dc->cpu->cfg.use_fpu != 1)) {
|
2010-09-09 10:20:17 +02:00
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
2009-09-03 11:12:30 +02:00
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-09-09 10:20:17 +02:00
|
|
|
fpu_insn = (dc->ir >> 7) & 7;
|
|
|
|
|
|
|
|
switch (fpu_insn) {
|
|
|
|
case 0:
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_fadd(cpu_R[dc->rd], cpu_env, cpu_R[dc->ra],
|
|
|
|
cpu_R[dc->rb]);
|
2010-09-09 10:20:17 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_frsub(cpu_R[dc->rd], cpu_env, cpu_R[dc->ra],
|
|
|
|
cpu_R[dc->rb]);
|
2010-09-09 10:20:17 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_fmul(cpu_R[dc->rd], cpu_env, cpu_R[dc->ra],
|
|
|
|
cpu_R[dc->rb]);
|
2010-09-09 10:20:17 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_fdiv(cpu_R[dc->rd], cpu_env, cpu_R[dc->ra],
|
|
|
|
cpu_R[dc->rb]);
|
2010-09-09 10:20:17 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 4:
|
|
|
|
switch ((dc->ir >> 4) & 7) {
|
|
|
|
case 0:
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_fcmp_un(cpu_R[dc->rd], cpu_env,
|
2010-09-09 10:20:17 +02:00
|
|
|
cpu_R[dc->ra], cpu_R[dc->rb]);
|
|
|
|
break;
|
|
|
|
case 1:
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_fcmp_lt(cpu_R[dc->rd], cpu_env,
|
2010-09-09 10:20:17 +02:00
|
|
|
cpu_R[dc->ra], cpu_R[dc->rb]);
|
|
|
|
break;
|
|
|
|
case 2:
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_fcmp_eq(cpu_R[dc->rd], cpu_env,
|
2010-09-09 10:20:17 +02:00
|
|
|
cpu_R[dc->ra], cpu_R[dc->rb]);
|
|
|
|
break;
|
|
|
|
case 3:
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_fcmp_le(cpu_R[dc->rd], cpu_env,
|
2010-09-09 10:20:17 +02:00
|
|
|
cpu_R[dc->ra], cpu_R[dc->rb]);
|
|
|
|
break;
|
|
|
|
case 4:
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_fcmp_gt(cpu_R[dc->rd], cpu_env,
|
2010-09-09 10:20:17 +02:00
|
|
|
cpu_R[dc->ra], cpu_R[dc->rb]);
|
|
|
|
break;
|
|
|
|
case 5:
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_fcmp_ne(cpu_R[dc->rd], cpu_env,
|
2010-09-09 10:20:17 +02:00
|
|
|
cpu_R[dc->ra], cpu_R[dc->rb]);
|
|
|
|
break;
|
|
|
|
case 6:
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_fcmp_ge(cpu_R[dc->rd], cpu_env,
|
2010-09-09 10:20:17 +02:00
|
|
|
cpu_R[dc->ra], cpu_R[dc->rb]);
|
|
|
|
break;
|
|
|
|
default:
|
2012-06-03 19:06:07 +02:00
|
|
|
qemu_log_mask(LOG_UNIMP,
|
|
|
|
"unimplemented fcmp fpu_insn=%x pc=%x"
|
|
|
|
" opc=%x\n",
|
|
|
|
fpu_insn, dc->pc, dc->opcode);
|
2010-09-09 10:20:17 +02:00
|
|
|
dc->abort_at_next_insn = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 5:
|
|
|
|
if (!dec_check_fpuv2(dc)) {
|
|
|
|
return;
|
|
|
|
}
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_flt(cpu_R[dc->rd], cpu_env, cpu_R[dc->ra]);
|
2010-09-09 10:20:17 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 6:
|
|
|
|
if (!dec_check_fpuv2(dc)) {
|
|
|
|
return;
|
|
|
|
}
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_fint(cpu_R[dc->rd], cpu_env, cpu_R[dc->ra]);
|
2010-09-09 10:20:17 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 7:
|
|
|
|
if (!dec_check_fpuv2(dc)) {
|
|
|
|
return;
|
|
|
|
}
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_fsqrt(cpu_R[dc->rd], cpu_env, cpu_R[dc->ra]);
|
2010-09-09 10:20:17 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2012-06-03 19:06:07 +02:00
|
|
|
qemu_log_mask(LOG_UNIMP, "unimplemented FPU insn fpu_insn=%x pc=%x"
|
|
|
|
" opc=%x\n",
|
|
|
|
fpu_insn, dc->pc, dc->opcode);
|
2010-09-09 10:20:17 +02:00
|
|
|
dc->abort_at_next_insn = 1;
|
|
|
|
break;
|
|
|
|
}
|
2009-09-03 11:12:30 +02:00
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
static void dec_null(DisasContext *dc)
|
|
|
|
{
|
2009-09-11 10:38:31 +02:00
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
2013-09-03 20:02:48 +02:00
|
|
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)) {
|
2009-09-11 10:38:31 +02:00
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
return;
|
|
|
|
}
|
2015-11-13 13:24:57 +01:00
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "unknown insn pc=%x opc=%x\n", dc->pc, dc->opcode);
|
2009-05-20 19:37:39 +02:00
|
|
|
dc->abort_at_next_insn = 1;
|
|
|
|
}
|
|
|
|
|
2011-04-12 00:48:33 +02:00
|
|
|
/* Insns connected to FSL or AXI stream attached devices. */
|
|
|
|
static void dec_stream(DisasContext *dc)
|
|
|
|
{
|
2015-08-17 09:34:10 +02:00
|
|
|
int mem_index = cpu_mmu_index(&dc->cpu->env, false);
|
2011-04-12 00:48:33 +02:00
|
|
|
TCGv_i32 t_id, t_ctrl;
|
|
|
|
int ctrl;
|
|
|
|
|
|
|
|
LOG_DIS("%s%s imm=%x\n", dc->rd ? "get" : "put",
|
|
|
|
dc->type_b ? "" : "d", dc->imm);
|
|
|
|
|
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG) && (mem_index == MMU_USER_IDX)) {
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_PRIVINSN);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
t_id = tcg_temp_new();
|
|
|
|
if (dc->type_b) {
|
|
|
|
tcg_gen_movi_tl(t_id, dc->imm & 0xf);
|
|
|
|
ctrl = dc->imm >> 10;
|
|
|
|
} else {
|
|
|
|
tcg_gen_andi_tl(t_id, cpu_R[dc->rb], 0xf);
|
|
|
|
ctrl = dc->imm >> 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
t_ctrl = tcg_const_tl(ctrl);
|
|
|
|
|
|
|
|
if (dc->rd == 0) {
|
|
|
|
gen_helper_put(t_id, t_ctrl, cpu_R[dc->ra]);
|
|
|
|
} else {
|
|
|
|
gen_helper_get(cpu_R[dc->rd], t_id, t_ctrl);
|
|
|
|
}
|
|
|
|
tcg_temp_free(t_id);
|
|
|
|
tcg_temp_free(t_ctrl);
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
static struct decoder_info {
|
|
|
|
struct {
|
|
|
|
uint32_t bits;
|
|
|
|
uint32_t mask;
|
|
|
|
};
|
|
|
|
void (*dec)(DisasContext *dc);
|
|
|
|
} decinfo[] = {
|
|
|
|
{DEC_ADD, dec_add},
|
|
|
|
{DEC_SUB, dec_sub},
|
|
|
|
{DEC_AND, dec_and},
|
|
|
|
{DEC_XOR, dec_xor},
|
|
|
|
{DEC_OR, dec_or},
|
|
|
|
{DEC_BIT, dec_bit},
|
|
|
|
{DEC_BARREL, dec_barrel},
|
|
|
|
{DEC_LD, dec_load},
|
|
|
|
{DEC_ST, dec_store},
|
|
|
|
{DEC_IMM, dec_imm},
|
|
|
|
{DEC_BR, dec_br},
|
|
|
|
{DEC_BCC, dec_bcc},
|
|
|
|
{DEC_RTS, dec_rts},
|
2009-09-03 11:12:30 +02:00
|
|
|
{DEC_FPU, dec_fpu},
|
2009-05-20 19:37:39 +02:00
|
|
|
{DEC_MUL, dec_mul},
|
|
|
|
{DEC_DIV, dec_div},
|
|
|
|
{DEC_MSR, dec_msr},
|
2011-04-12 00:48:33 +02:00
|
|
|
{DEC_STREAM, dec_stream},
|
2009-05-20 19:37:39 +02:00
|
|
|
{{0, 0}, dec_null}
|
|
|
|
};
|
|
|
|
|
2012-09-02 10:39:22 +02:00
|
|
|
static inline void decode(DisasContext *dc, uint32_t ir)
|
2009-05-20 19:37:39 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2012-09-02 10:39:22 +02:00
|
|
|
dc->ir = ir;
|
2009-05-20 19:37:39 +02:00
|
|
|
LOG_DIS("%8.8x\t", dc->ir);
|
|
|
|
|
|
|
|
if (dc->ir)
|
|
|
|
dc->nr_nops = 0;
|
|
|
|
else {
|
2009-09-03 11:12:30 +02:00
|
|
|
if ((dc->tb_flags & MSR_EE_FLAG)
|
2013-09-03 20:02:48 +02:00
|
|
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_ILL_OPCODE_EXC_MASK)
|
|
|
|
&& (dc->cpu->env.pvr.regs[2] & PVR2_OPCODE_0x0_ILL_MASK)) {
|
2009-09-03 11:12:30 +02:00
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_ESR], ESR_EC_ILLEGAL_OP);
|
|
|
|
t_gen_raise_exception(dc, EXCP_HW_EXCP);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
LOG_DIS("nr_nops=%d\t", dc->nr_nops);
|
|
|
|
dc->nr_nops++;
|
2013-09-03 17:38:47 +02:00
|
|
|
if (dc->nr_nops > 4) {
|
2013-09-03 20:02:48 +02:00
|
|
|
cpu_abort(CPU(dc->cpu), "fetching nop sequence\n");
|
2013-09-03 17:38:47 +02:00
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
/* bit 2 seems to indicate insn type. */
|
|
|
|
dc->type_b = ir & (1 << 29);
|
|
|
|
|
|
|
|
dc->opcode = EXTRACT_FIELD(ir, 26, 31);
|
|
|
|
dc->rd = EXTRACT_FIELD(ir, 21, 25);
|
|
|
|
dc->ra = EXTRACT_FIELD(ir, 16, 20);
|
|
|
|
dc->rb = EXTRACT_FIELD(ir, 11, 15);
|
|
|
|
dc->imm = EXTRACT_FIELD(ir, 0, 15);
|
|
|
|
|
|
|
|
/* Large switch for all insns. */
|
|
|
|
for (i = 0; i < ARRAY_SIZE(decinfo); i++) {
|
|
|
|
if ((dc->opcode & decinfo[i].mask) == decinfo[i].bits) {
|
|
|
|
decinfo[i].dec(dc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* generate intermediate code for basic block 'tb'. */
|
2015-09-02 05:01:40 +02:00
|
|
|
void gen_intermediate_code(CPUMBState *env, struct TranslationBlock *tb)
|
2009-05-20 19:37:39 +02:00
|
|
|
{
|
2015-09-02 05:01:40 +02:00
|
|
|
MicroBlazeCPU *cpu = mb_env_get_cpu(env);
|
2013-06-21 20:20:45 +02:00
|
|
|
CPUState *cs = CPU(cpu);
|
2009-05-20 19:37:39 +02:00
|
|
|
uint32_t pc_start;
|
|
|
|
struct DisasContext ctx;
|
|
|
|
struct DisasContext *dc = &ctx;
|
|
|
|
uint32_t next_page_start, org_flags;
|
|
|
|
target_ulong npc;
|
|
|
|
int num_insns;
|
|
|
|
int max_insns;
|
|
|
|
|
|
|
|
pc_start = tb->pc;
|
2013-09-03 20:02:48 +02:00
|
|
|
dc->cpu = cpu;
|
2009-05-20 19:37:39 +02:00
|
|
|
dc->tb = tb;
|
|
|
|
org_flags = dc->synced_flags = dc->tb_flags = tb->flags;
|
|
|
|
|
|
|
|
dc->is_jmp = DISAS_NEXT;
|
|
|
|
dc->jmp = 0;
|
|
|
|
dc->delayed_branch = !!(dc->tb_flags & D_FLAG);
|
2011-01-05 02:21:19 +01:00
|
|
|
if (dc->delayed_branch) {
|
|
|
|
dc->jmp = JMP_INDIRECT;
|
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
dc->pc = pc_start;
|
2013-06-21 20:20:45 +02:00
|
|
|
dc->singlestep_enabled = cs->singlestep_enabled;
|
2009-05-20 19:37:39 +02:00
|
|
|
dc->cpustate_changed = 0;
|
|
|
|
dc->abort_at_next_insn = 0;
|
|
|
|
dc->nr_nops = 0;
|
|
|
|
|
2013-09-03 17:38:47 +02:00
|
|
|
if (pc_start & 3) {
|
|
|
|
cpu_abort(cs, "Microblaze: unaligned PC=%x\n", pc_start);
|
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) {
|
|
|
|
#if !SIM_COMPAT
|
|
|
|
qemu_log("--------------\n");
|
2013-06-16 07:28:50 +02:00
|
|
|
log_cpu_state(CPU(cpu), 0);
|
2009-05-20 19:37:39 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
next_page_start = (pc_start & TARGET_PAGE_MASK) + TARGET_PAGE_SIZE;
|
|
|
|
num_insns = 0;
|
|
|
|
max_insns = tb->cflags & CF_COUNT_MASK;
|
2015-08-31 23:34:41 +02:00
|
|
|
if (max_insns == 0) {
|
2009-05-20 19:37:39 +02:00
|
|
|
max_insns = CF_COUNT_MASK;
|
2015-08-31 23:34:41 +02:00
|
|
|
}
|
|
|
|
if (max_insns > TCG_MAX_INSNS) {
|
|
|
|
max_insns = TCG_MAX_INSNS;
|
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
|
2014-11-26 11:40:05 +01:00
|
|
|
gen_tb_start(tb);
|
2009-05-20 19:37:39 +02:00
|
|
|
do
|
|
|
|
{
|
2015-08-29 21:59:29 +02:00
|
|
|
tcg_gen_insn_start(dc->pc);
|
2015-09-17 23:25:46 +02:00
|
|
|
num_insns++;
|
2009-05-20 19:37:39 +02:00
|
|
|
|
2015-09-18 00:58:10 +02:00
|
|
|
#if SIM_COMPAT
|
|
|
|
if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) {
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_PC], dc->pc);
|
|
|
|
gen_helper_debug();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (unlikely(cpu_breakpoint_test(cs, dc->pc, BP_ANY))) {
|
|
|
|
t_gen_raise_exception(dc, EXCP_DEBUG);
|
|
|
|
dc->is_jmp = DISAS_UPDATE;
|
2015-10-14 00:07:49 +02:00
|
|
|
/* The address covered by the breakpoint must be included in
|
|
|
|
[tb->pc, tb->pc + tb->size) in order to for it to be
|
|
|
|
properly cleared -- thus we increment the PC here so that
|
|
|
|
the logic setting tb->size below does the right thing. */
|
|
|
|
dc->pc += 4;
|
2015-09-18 00:58:10 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
/* Pretty disas. */
|
|
|
|
LOG_DIS("%8.8x:\t", dc->pc);
|
|
|
|
|
2015-09-17 23:25:46 +02:00
|
|
|
if (num_insns == max_insns && (tb->cflags & CF_LAST_IO)) {
|
2009-05-20 19:37:39 +02:00
|
|
|
gen_io_start();
|
2015-09-17 23:25:46 +02:00
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
dc->clear_imm = 1;
|
2012-09-02 10:39:22 +02:00
|
|
|
decode(dc, cpu_ldl_code(env, dc->pc));
|
2009-05-20 19:37:39 +02:00
|
|
|
if (dc->clear_imm)
|
|
|
|
dc->tb_flags &= ~IMM_FLAG;
|
|
|
|
dc->pc += 4;
|
|
|
|
|
|
|
|
if (dc->delayed_branch) {
|
|
|
|
dc->delayed_branch--;
|
|
|
|
if (!dc->delayed_branch) {
|
|
|
|
if (dc->tb_flags & DRTI_FLAG)
|
|
|
|
do_rti(dc);
|
|
|
|
if (dc->tb_flags & DRTB_FLAG)
|
|
|
|
do_rtb(dc);
|
|
|
|
if (dc->tb_flags & DRTE_FLAG)
|
|
|
|
do_rte(dc);
|
|
|
|
/* Clear the delay slot flag. */
|
|
|
|
dc->tb_flags &= ~D_FLAG;
|
|
|
|
/* If it is a direct jump, try direct chaining. */
|
2011-01-05 02:21:19 +01:00
|
|
|
if (dc->jmp == JMP_INDIRECT) {
|
2009-05-20 19:37:39 +02:00
|
|
|
eval_cond_jmp(dc, env_btarget, tcg_const_tl(dc->pc));
|
|
|
|
dc->is_jmp = DISAS_JUMP;
|
2011-01-05 02:21:19 +01:00
|
|
|
} else if (dc->jmp == JMP_DIRECT) {
|
2011-01-14 12:30:26 +01:00
|
|
|
t_sync_flags(dc);
|
|
|
|
gen_goto_tb(dc, 0, dc->jmp_pc);
|
|
|
|
dc->is_jmp = DISAS_TB_JUMP;
|
|
|
|
} else if (dc->jmp == JMP_DIRECT_CC) {
|
2015-02-13 21:51:55 +01:00
|
|
|
TCGLabel *l1 = gen_new_label();
|
2011-01-05 02:21:19 +01:00
|
|
|
t_sync_flags(dc);
|
|
|
|
/* Conditional jmp. */
|
|
|
|
tcg_gen_brcondi_tl(TCG_COND_NE, env_btaken, 0, l1);
|
|
|
|
gen_goto_tb(dc, 1, dc->pc);
|
|
|
|
gen_set_label(l1);
|
|
|
|
gen_goto_tb(dc, 0, dc->jmp_pc);
|
|
|
|
|
|
|
|
dc->is_jmp = DISAS_TB_JUMP;
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-06-21 20:20:45 +02:00
|
|
|
if (cs->singlestep_enabled) {
|
2009-05-20 19:37:39 +02:00
|
|
|
break;
|
2013-06-21 20:20:45 +02:00
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
} while (!dc->is_jmp && !dc->cpustate_changed
|
2014-03-31 00:36:56 +02:00
|
|
|
&& !tcg_op_buf_full()
|
|
|
|
&& !singlestep
|
|
|
|
&& (dc->pc < next_page_start)
|
|
|
|
&& num_insns < max_insns);
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
npc = dc->pc;
|
2011-01-14 12:30:26 +01:00
|
|
|
if (dc->jmp == JMP_DIRECT || dc->jmp == JMP_DIRECT_CC) {
|
2009-05-20 19:37:39 +02:00
|
|
|
if (dc->tb_flags & D_FLAG) {
|
|
|
|
dc->is_jmp = DISAS_UPDATE;
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_PC], npc);
|
|
|
|
sync_jmpstate(dc);
|
|
|
|
} else
|
|
|
|
npc = dc->jmp_pc;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tb->cflags & CF_LAST_IO)
|
|
|
|
gen_io_end();
|
|
|
|
/* Force an update if the per-tb cpu state has changed. */
|
|
|
|
if (dc->is_jmp == DISAS_NEXT
|
|
|
|
&& (dc->cpustate_changed || org_flags != dc->tb_flags)) {
|
|
|
|
dc->is_jmp = DISAS_UPDATE;
|
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_PC], npc);
|
|
|
|
}
|
|
|
|
t_sync_flags(dc);
|
|
|
|
|
2013-06-21 20:20:45 +02:00
|
|
|
if (unlikely(cs->singlestep_enabled)) {
|
2011-02-10 00:46:09 +01:00
|
|
|
TCGv_i32 tmp = tcg_const_i32(EXCP_DEBUG);
|
|
|
|
|
|
|
|
if (dc->is_jmp != DISAS_JUMP) {
|
2009-05-20 19:37:39 +02:00
|
|
|
tcg_gen_movi_tl(cpu_SR[SR_PC], npc);
|
2011-02-10 00:46:09 +01:00
|
|
|
}
|
2012-09-02 10:39:22 +02:00
|
|
|
gen_helper_raise_exception(cpu_env, tmp);
|
2011-02-10 00:46:09 +01:00
|
|
|
tcg_temp_free_i32(tmp);
|
2009-05-20 19:37:39 +02:00
|
|
|
} else {
|
|
|
|
switch(dc->is_jmp) {
|
|
|
|
case DISAS_NEXT:
|
|
|
|
gen_goto_tb(dc, 1, npc);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case DISAS_JUMP:
|
|
|
|
case DISAS_UPDATE:
|
|
|
|
/* indicate that the hash table must be used
|
|
|
|
to find the next TB */
|
|
|
|
tcg_gen_exit_tb(0);
|
|
|
|
break;
|
|
|
|
case DISAS_TB_JUMP:
|
|
|
|
/* nothing more to generate */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-02-22 19:10:05 +01:00
|
|
|
gen_tb_end(tb, num_insns);
|
2014-03-30 23:50:30 +02:00
|
|
|
|
2015-09-02 05:01:40 +02:00
|
|
|
tb->size = dc->pc - pc_start;
|
|
|
|
tb->icount = num_insns;
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
#ifdef DEBUG_DISAS
|
|
|
|
#if !SIM_COMPAT
|
|
|
|
if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) {
|
|
|
|
qemu_log("\n");
|
|
|
|
#if DISAS_GNU
|
2015-05-24 23:20:41 +02:00
|
|
|
log_target_disas(cs, pc_start, dc->pc - pc_start, 0);
|
2009-05-20 19:37:39 +02:00
|
|
|
#endif
|
2014-03-31 00:36:56 +02:00
|
|
|
qemu_log("\nisize=%d osize=%d\n",
|
|
|
|
dc->pc - pc_start, tcg_op_buf_count());
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
assert(!dc->abort_at_next_insn);
|
|
|
|
}
|
|
|
|
|
2013-05-27 01:33:50 +02:00
|
|
|
void mb_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf,
|
|
|
|
int flags)
|
2009-05-20 19:37:39 +02:00
|
|
|
{
|
2013-05-27 01:33:50 +02:00
|
|
|
MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
|
|
|
|
CPUMBState *env = &cpu->env;
|
2009-05-20 19:37:39 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!env || !f)
|
|
|
|
return;
|
|
|
|
|
|
|
|
cpu_fprintf(f, "IN: PC=%x %s\n",
|
|
|
|
env->sregs[SR_PC], lookup_symbol(env->sregs[SR_PC]));
|
2010-09-09 10:20:17 +02:00
|
|
|
cpu_fprintf(f, "rmsr=%x resr=%x rear=%x debug=%x imm=%x iflags=%x fsr=%x\n",
|
2009-12-07 14:12:49 +01:00
|
|
|
env->sregs[SR_MSR], env->sregs[SR_ESR], env->sregs[SR_EAR],
|
2010-09-09 10:20:17 +02:00
|
|
|
env->debug, env->imm, env->iflags, env->sregs[SR_FSR]);
|
2009-12-16 12:52:56 +01:00
|
|
|
cpu_fprintf(f, "btaken=%d btarget=%x mode=%s(saved=%s) eip=%d ie=%d\n",
|
2009-05-20 19:37:39 +02:00
|
|
|
env->btaken, env->btarget,
|
|
|
|
(env->sregs[SR_MSR] & MSR_UM) ? "user" : "kernel",
|
2009-12-16 12:52:56 +01:00
|
|
|
(env->sregs[SR_MSR] & MSR_UMS) ? "user" : "kernel",
|
|
|
|
(env->sregs[SR_MSR] & MSR_EIP),
|
|
|
|
(env->sregs[SR_MSR] & MSR_IE));
|
|
|
|
|
2009-05-20 19:37:39 +02:00
|
|
|
for (i = 0; i < 32; i++) {
|
|
|
|
cpu_fprintf(f, "r%2.2d=%8.8x ", i, env->regs[i]);
|
|
|
|
if ((i + 1) % 4 == 0)
|
|
|
|
cpu_fprintf(f, "\n");
|
|
|
|
}
|
|
|
|
cpu_fprintf(f, "\n\n");
|
|
|
|
}
|
|
|
|
|
2012-05-05 12:14:03 +02:00
|
|
|
MicroBlazeCPU *cpu_mb_init(const char *cpu_model)
|
2009-05-20 19:37:39 +02:00
|
|
|
{
|
2012-04-12 02:17:53 +02:00
|
|
|
MicroBlazeCPU *cpu;
|
2009-05-20 19:37:39 +02:00
|
|
|
|
2012-04-12 02:17:53 +02:00
|
|
|
cpu = MICROBLAZE_CPU(object_new(TYPE_MICROBLAZE_CPU));
|
2009-05-20 19:37:39 +02:00
|
|
|
|
2013-01-05 15:27:31 +01:00
|
|
|
object_property_set_bool(OBJECT(cpu), true, "realized", NULL);
|
2009-05-20 19:37:39 +02:00
|
|
|
|
2013-01-20 01:10:52 +01:00
|
|
|
return cpu;
|
|
|
|
}
|
2009-05-20 19:37:39 +02:00
|
|
|
|
2013-01-20 01:10:52 +01:00
|
|
|
void mb_tcg_init(void)
|
|
|
|
{
|
|
|
|
int i;
|
2009-05-20 19:37:39 +02:00
|
|
|
|
|
|
|
cpu_env = tcg_global_reg_new_ptr(TCG_AREG0, "env");
|
|
|
|
|
2013-09-18 21:53:09 +02:00
|
|
|
env_debug = tcg_global_mem_new(cpu_env,
|
2012-03-14 01:38:22 +01:00
|
|
|
offsetof(CPUMBState, debug),
|
2009-05-20 19:37:39 +02:00
|
|
|
"debug0");
|
2013-09-18 21:53:09 +02:00
|
|
|
env_iflags = tcg_global_mem_new(cpu_env,
|
2012-03-14 01:38:22 +01:00
|
|
|
offsetof(CPUMBState, iflags),
|
2009-05-20 19:37:39 +02:00
|
|
|
"iflags");
|
2013-09-18 21:53:09 +02:00
|
|
|
env_imm = tcg_global_mem_new(cpu_env,
|
2012-03-14 01:38:22 +01:00
|
|
|
offsetof(CPUMBState, imm),
|
2009-05-20 19:37:39 +02:00
|
|
|
"imm");
|
2013-09-18 21:53:09 +02:00
|
|
|
env_btarget = tcg_global_mem_new(cpu_env,
|
2012-03-14 01:38:22 +01:00
|
|
|
offsetof(CPUMBState, btarget),
|
2009-05-20 19:37:39 +02:00
|
|
|
"btarget");
|
2013-09-18 21:53:09 +02:00
|
|
|
env_btaken = tcg_global_mem_new(cpu_env,
|
2012-03-14 01:38:22 +01:00
|
|
|
offsetof(CPUMBState, btaken),
|
2009-05-20 19:37:39 +02:00
|
|
|
"btaken");
|
2013-09-18 21:53:09 +02:00
|
|
|
env_res_addr = tcg_global_mem_new(cpu_env,
|
2013-10-23 16:44:08 +02:00
|
|
|
offsetof(CPUMBState, res_addr),
|
|
|
|
"res_addr");
|
2013-09-18 21:53:09 +02:00
|
|
|
env_res_val = tcg_global_mem_new(cpu_env,
|
2013-10-23 16:54:31 +02:00
|
|
|
offsetof(CPUMBState, res_val),
|
|
|
|
"res_val");
|
2009-05-20 19:37:39 +02:00
|
|
|
for (i = 0; i < ARRAY_SIZE(cpu_R); i++) {
|
2013-09-18 21:53:09 +02:00
|
|
|
cpu_R[i] = tcg_global_mem_new(cpu_env,
|
2012-03-14 01:38:22 +01:00
|
|
|
offsetof(CPUMBState, regs[i]),
|
2009-05-20 19:37:39 +02:00
|
|
|
regnames[i]);
|
|
|
|
}
|
|
|
|
for (i = 0; i < ARRAY_SIZE(cpu_SR); i++) {
|
2013-09-18 21:53:09 +02:00
|
|
|
cpu_SR[i] = tcg_global_mem_new(cpu_env,
|
2012-03-14 01:38:22 +01:00
|
|
|
offsetof(CPUMBState, sregs[i]),
|
2009-05-20 19:37:39 +02:00
|
|
|
special_regnames[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-02 00:51:12 +02:00
|
|
|
void restore_state_to_opc(CPUMBState *env, TranslationBlock *tb,
|
|
|
|
target_ulong *data)
|
2009-05-20 19:37:39 +02:00
|
|
|
{
|
2015-09-02 00:51:12 +02:00
|
|
|
env->sregs[SR_PC] = data[0];
|
2009-05-20 19:37:39 +02:00
|
|
|
}
|