2003-10-01 04:36:07 +08:00
|
|
|
/*
|
|
|
|
SPARC translation
|
|
|
|
|
|
|
|
Copyright (C) 2003 Thomas M. Ogrisegg <tom@fnord.at>
|
2005-07-02 22:31:34 +08:00
|
|
|
Copyright (C) 2003-2005 Fabrice Bellard
|
2003-10-01 04:36:07 +08: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
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
TODO-list:
|
|
|
|
|
2005-07-02 22:31:34 +08:00
|
|
|
Rest of V9 instructions, VIS instructions
|
2004-01-05 08:06:41 +08:00
|
|
|
NPC/PC static optimisations (use JUMP_TB when possible)
|
2003-10-01 04:36:07 +08:00
|
|
|
Optimize synthetic instructions
|
2004-01-05 08:06:41 +08:00
|
|
|
*/
|
2003-10-01 04:36:07 +08:00
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "exec-all.h"
|
|
|
|
#include "disas.h"
|
2008-02-24 22:10:06 +08:00
|
|
|
#include "helper.h"
|
2008-02-01 18:50:11 +08:00
|
|
|
#include "tcg-op.h"
|
2003-10-01 04:36:07 +08:00
|
|
|
|
|
|
|
#define DEBUG_DISAS
|
|
|
|
|
2004-02-17 04:30:05 +08:00
|
|
|
#define DYNAMIC_PC 1 /* dynamic pc value */
|
|
|
|
#define JUMP_PC 2 /* dynamic pc value which takes only two values
|
|
|
|
according to jump_pc[T2] */
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
/* global register indexes */
|
2008-03-17 03:22:18 +08:00
|
|
|
static TCGv cpu_env, cpu_T[3], cpu_regwptr, cpu_cc_src, cpu_cc_src2, cpu_cc_dst;
|
2008-03-17 03:23:31 +08:00
|
|
|
static TCGv cpu_psr, cpu_fsr, cpu_pc, cpu_npc, cpu_gregs[8];
|
2008-03-14 04:45:31 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
static TCGv cpu_xcc;
|
|
|
|
#endif
|
2008-02-24 22:10:06 +08:00
|
|
|
/* local register indexes (only used inside old micro ops) */
|
2008-03-22 16:40:28 +08:00
|
|
|
static TCGv cpu_tmp0, cpu_tmp32, cpu_tmp64;
|
2008-02-24 22:10:06 +08:00
|
|
|
|
2003-10-01 04:36:07 +08:00
|
|
|
typedef struct DisasContext {
|
2007-09-20 22:54:22 +08:00
|
|
|
target_ulong pc; /* current Program Counter: integer or DYNAMIC_PC */
|
|
|
|
target_ulong npc; /* next PC: integer or DYNAMIC_PC or JUMP_PC */
|
2004-02-17 04:30:05 +08:00
|
|
|
target_ulong jump_pc[2]; /* used when JUMP_PC pc value is used */
|
2004-01-04 23:01:44 +08:00
|
|
|
int is_br;
|
2004-10-01 05:55:55 +08:00
|
|
|
int mem_idx;
|
2006-06-27 03:53:29 +08:00
|
|
|
int fpu_enabled;
|
2004-01-04 23:01:44 +08:00
|
|
|
struct TranslationBlock *tb;
|
2003-10-01 04:36:07 +08:00
|
|
|
} DisasContext;
|
|
|
|
|
2007-11-10 23:15:54 +08:00
|
|
|
typedef struct sparc_def_t sparc_def_t;
|
|
|
|
|
2007-03-25 15:55:52 +08:00
|
|
|
struct sparc_def_t {
|
|
|
|
const unsigned char *name;
|
|
|
|
target_ulong iu_version;
|
|
|
|
uint32_t fpu_version;
|
|
|
|
uint32_t mmu_version;
|
2007-11-08 01:03:37 +08:00
|
|
|
uint32_t mmu_bm;
|
2008-02-12 02:27:33 +08:00
|
|
|
uint32_t mmu_ctpr_mask;
|
|
|
|
uint32_t mmu_cxr_mask;
|
|
|
|
uint32_t mmu_sfsr_mask;
|
|
|
|
uint32_t mmu_trcr_mask;
|
2007-03-25 15:55:52 +08:00
|
|
|
};
|
|
|
|
|
2007-11-10 23:15:54 +08:00
|
|
|
static const sparc_def_t *cpu_sparc_find_by_name(const unsigned char *name);
|
|
|
|
|
2003-10-01 04:36:07 +08:00
|
|
|
extern FILE *logfile;
|
|
|
|
extern int loglevel;
|
|
|
|
|
2005-07-02 22:31:34 +08:00
|
|
|
// This function uses non-native bit order
|
2003-10-01 04:36:07 +08:00
|
|
|
#define GET_FIELD(X, FROM, TO) \
|
|
|
|
((X) >> (31 - (TO)) & ((1 << ((TO) - (FROM) + 1)) - 1))
|
|
|
|
|
2005-07-02 22:31:34 +08:00
|
|
|
// This function uses the order in the manuals, i.e. bit 0 is 2^0
|
|
|
|
#define GET_FIELD_SP(X, FROM, TO) \
|
|
|
|
GET_FIELD(X, 31 - (TO), 31 - (FROM))
|
|
|
|
|
|
|
|
#define GET_FIELDs(x,a,b) sign_extend (GET_FIELD(x,a,b), (b) - (a) + 1)
|
2007-07-05 04:22:35 +08:00
|
|
|
#define GET_FIELD_SPs(x,a,b) sign_extend (GET_FIELD_SP(x,a,b), ((b) - (a) + 1))
|
2005-07-02 22:31:34 +08:00
|
|
|
|
|
|
|
#ifdef TARGET_SPARC64
|
2008-03-09 05:36:50 +08:00
|
|
|
#define FFPREG(r) (r)
|
2007-10-04 01:46:29 +08:00
|
|
|
#define DFPREG(r) (((r & 1) << 5) | (r & 0x1e))
|
2007-11-26 02:40:20 +08:00
|
|
|
#define QFPREG(r) (((r & 1) << 5) | (r & 0x1c))
|
2005-07-02 22:31:34 +08:00
|
|
|
#else
|
2008-03-09 05:36:50 +08:00
|
|
|
#define FFPREG(r) (r)
|
2007-04-07 04:02:09 +08:00
|
|
|
#define DFPREG(r) (r & 0x1e)
|
2007-11-26 02:40:20 +08:00
|
|
|
#define QFPREG(r) (r & 0x1c)
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static int sign_extend(int x, int len)
|
|
|
|
{
|
|
|
|
len = 32 - len;
|
|
|
|
return (x << len) >> len;
|
|
|
|
}
|
|
|
|
|
2003-10-01 04:36:07 +08:00
|
|
|
#define IS_IMM (insn & (1<<13))
|
|
|
|
|
2004-01-04 23:01:44 +08:00
|
|
|
static void disas_sparc_insn(DisasContext * dc);
|
2003-10-01 04:36:07 +08:00
|
|
|
|
2008-03-22 01:53:56 +08:00
|
|
|
/* floating point registers moves */
|
|
|
|
static void gen_op_load_fpr_FT0(unsigned int src)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[src]));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, ft0));
|
2005-07-02 22:31:34 +08:00
|
|
|
}
|
2008-03-22 01:53:56 +08:00
|
|
|
|
|
|
|
static void gen_op_load_fpr_FT1(unsigned int src)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[src]));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, ft1));
|
2004-10-01 05:55:55 +08:00
|
|
|
}
|
|
|
|
|
2008-03-22 01:53:56 +08:00
|
|
|
static void gen_op_store_FT0_fpr(unsigned int dst)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, ft0));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[dst]));
|
2008-03-22 01:53:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gen_op_load_fpr_DT0(unsigned int src)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[src]));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, dt0) + offsetof(CPU_DoubleU, l.upper));
|
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[src + 1]));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, dt0) + offsetof(CPU_DoubleU, l.lower));
|
2008-03-22 01:53:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gen_op_load_fpr_DT1(unsigned int src)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[src]));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, dt1) + offsetof(CPU_DoubleU, l.upper));
|
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[src + 1]));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, dt1) + offsetof(CPU_DoubleU, l.lower));
|
2008-03-22 01:53:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gen_op_store_DT0_fpr(unsigned int dst)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, dt0) + offsetof(CPU_DoubleU, l.upper));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[dst]));
|
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, dt0) + offsetof(CPU_DoubleU, l.lower));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[dst + 1]));
|
2008-03-22 01:53:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
static void gen_op_load_fpr_QT0(unsigned int src)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[src]));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, qt0) + offsetof(CPU_QuadU, l.upmost));
|
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[src + 1]));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, qt0) + offsetof(CPU_QuadU, l.upper));
|
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[src + 2]));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, qt0) + offsetof(CPU_QuadU, l.lower));
|
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[src + 3]));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, qt0) + offsetof(CPU_QuadU, l.lowest));
|
2008-03-22 01:53:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gen_op_load_fpr_QT1(unsigned int src)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[src]));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, qt1) + offsetof(CPU_QuadU, l.upmost));
|
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[src + 1]));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, qt1) + offsetof(CPU_QuadU, l.upper));
|
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[src + 2]));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, qt1) + offsetof(CPU_QuadU, l.lower));
|
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[src + 3]));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, qt1) + offsetof(CPU_QuadU, l.lowest));
|
2008-03-22 01:53:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gen_op_store_QT0_fpr(unsigned int dst)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, qt0) + offsetof(CPU_QuadU, l.upmost));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[dst]));
|
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, qt0) + offsetof(CPU_QuadU, l.upper));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[dst + 1]));
|
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, qt0) + offsetof(CPU_QuadU, l.lower));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[dst + 2]));
|
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, qt0) + offsetof(CPU_QuadU, l.lowest));
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, fpr[dst + 3]));
|
2008-03-22 01:53:56 +08:00
|
|
|
}
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
|
|
|
|
2007-09-22 03:10:53 +08:00
|
|
|
/* moves */
|
|
|
|
#ifdef CONFIG_USER_ONLY
|
2005-07-02 22:31:34 +08:00
|
|
|
#define supervisor(dc) 0
|
2007-09-22 03:10:53 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-04-23 03:14:52 +08:00
|
|
|
#define hypervisor(dc) 0
|
2007-09-22 03:10:53 +08:00
|
|
|
#endif
|
2005-07-02 22:31:34 +08:00
|
|
|
#define gen_op_ldst(name) gen_op_##name##_raw()
|
|
|
|
#else
|
2007-10-15 01:07:21 +08:00
|
|
|
#define supervisor(dc) (dc->mem_idx >= 1)
|
2007-09-22 03:10:53 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
#define hypervisor(dc) (dc->mem_idx == 2)
|
2007-10-15 01:07:21 +08:00
|
|
|
#define OP_LD_TABLE(width) \
|
|
|
|
static GenOpFunc * const gen_op_##width[] = { \
|
|
|
|
&gen_op_##width##_user, \
|
|
|
|
&gen_op_##width##_kernel, \
|
|
|
|
&gen_op_##width##_hypv, \
|
|
|
|
};
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
#define OP_LD_TABLE(width) \
|
2007-04-22 20:45:28 +08:00
|
|
|
static GenOpFunc * const gen_op_##width[] = { \
|
2007-09-20 22:54:22 +08:00
|
|
|
&gen_op_##width##_user, \
|
|
|
|
&gen_op_##width##_kernel, \
|
2007-09-22 03:10:53 +08:00
|
|
|
};
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2007-10-15 01:07:21 +08:00
|
|
|
#define gen_op_ldst(name) (*gen_op_##name[dc->mem_idx])()
|
|
|
|
#endif
|
2004-10-01 05:55:55 +08:00
|
|
|
|
2007-09-22 03:10:53 +08:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2008-02-28 01:44:03 +08:00
|
|
|
#ifdef __i386__
|
|
|
|
OP_LD_TABLE(std);
|
|
|
|
#endif /* __i386__ */
|
2004-10-01 05:55:55 +08:00
|
|
|
OP_LD_TABLE(stdf);
|
|
|
|
OP_LD_TABLE(lddf);
|
2007-09-22 03:10:53 +08:00
|
|
|
#endif
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
#ifdef TARGET_ABI32
|
2008-03-22 16:40:28 +08:00
|
|
|
#define ABI32_MASK(addr) tcg_gen_andi_tl(addr, addr, 0xffffffffULL);
|
2008-02-24 22:10:06 +08:00
|
|
|
#else
|
|
|
|
#define ABI32_MASK(addr)
|
|
|
|
#endif
|
2007-10-01 03:38:12 +08:00
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
static inline void gen_movl_simm_T1(int32_t val)
|
2007-09-22 03:10:53 +08:00
|
|
|
{
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_movi_tl(cpu_T[1], val);
|
2007-09-22 03:10:53 +08:00
|
|
|
}
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
static inline void gen_movl_reg_TN(int reg, TCGv tn)
|
2007-09-22 03:10:53 +08:00
|
|
|
{
|
2008-02-24 22:10:06 +08:00
|
|
|
if (reg == 0)
|
|
|
|
tcg_gen_movi_tl(tn, 0);
|
|
|
|
else if (reg < 8)
|
2008-03-15 01:35:02 +08:00
|
|
|
tcg_gen_mov_tl(tn, cpu_gregs[reg]);
|
2008-02-24 22:10:06 +08:00
|
|
|
else {
|
|
|
|
tcg_gen_ld_tl(tn, cpu_regwptr, (reg - 8) * sizeof(target_ulong));
|
2007-09-22 03:10:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
static inline void gen_movl_reg_T0(int reg)
|
2007-09-22 03:10:53 +08:00
|
|
|
{
|
2008-02-24 22:10:06 +08:00
|
|
|
gen_movl_reg_TN(reg, cpu_T[0]);
|
2007-09-22 03:10:53 +08:00
|
|
|
}
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
static inline void gen_movl_reg_T1(int reg)
|
2007-09-22 03:10:53 +08:00
|
|
|
{
|
2008-02-24 22:10:06 +08:00
|
|
|
gen_movl_reg_TN(reg, cpu_T[1]);
|
2007-09-22 03:10:53 +08:00
|
|
|
}
|
|
|
|
|
2008-02-28 01:44:03 +08:00
|
|
|
#ifdef __i386__
|
|
|
|
static inline void gen_movl_reg_T2(int reg)
|
|
|
|
{
|
|
|
|
gen_movl_reg_TN(reg, cpu_T[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __i386__ */
|
2008-02-24 22:10:06 +08:00
|
|
|
static inline void gen_movl_TN_reg(int reg, TCGv tn)
|
2007-09-22 03:10:53 +08:00
|
|
|
{
|
2008-02-24 22:10:06 +08:00
|
|
|
if (reg == 0)
|
|
|
|
return;
|
|
|
|
else if (reg < 8)
|
2008-03-15 01:35:02 +08:00
|
|
|
tcg_gen_mov_tl(cpu_gregs[reg], tn);
|
2008-02-24 22:10:06 +08:00
|
|
|
else {
|
|
|
|
tcg_gen_st_tl(tn, cpu_regwptr, (reg - 8) * sizeof(target_ulong));
|
2007-09-22 03:10:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
static inline void gen_movl_T0_reg(int reg)
|
2005-07-02 22:31:34 +08:00
|
|
|
{
|
2008-02-24 22:10:06 +08:00
|
|
|
gen_movl_TN_reg(reg, cpu_T[0]);
|
2005-07-02 22:31:34 +08:00
|
|
|
}
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
static inline void gen_movl_T1_reg(int reg)
|
2005-07-02 22:31:34 +08:00
|
|
|
{
|
2008-02-24 22:10:06 +08:00
|
|
|
gen_movl_TN_reg(reg, cpu_T[1]);
|
2005-07-02 22:31:34 +08:00
|
|
|
}
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
static inline void gen_op_movl_T0_env(size_t offset)
|
2003-10-01 04:36:07 +08:00
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offset);
|
|
|
|
tcg_gen_ext_i32_tl(cpu_T[0], cpu_tmp32);
|
2003-10-01 04:36:07 +08:00
|
|
|
}
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
static inline void gen_op_movl_env_T0(size_t offset)
|
2003-10-01 04:36:07 +08:00
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_trunc_tl_i32(cpu_tmp32, cpu_T[0]);
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offset);
|
2003-10-01 04:36:07 +08:00
|
|
|
}
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
static inline void gen_op_movtl_T0_env(size_t offset)
|
2003-10-01 04:36:07 +08:00
|
|
|
{
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_ld_tl(cpu_T[0], cpu_env, offset);
|
2003-10-01 04:36:07 +08:00
|
|
|
}
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
static inline void gen_op_movtl_env_T0(size_t offset)
|
2003-10-01 04:36:07 +08:00
|
|
|
{
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_st_tl(cpu_T[0], cpu_env, offset);
|
2003-10-01 04:36:07 +08:00
|
|
|
}
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
static inline void gen_op_add_T1_T0(void)
|
2003-10-01 04:36:07 +08:00
|
|
|
{
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_add_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
2003-10-01 04:36:07 +08:00
|
|
|
}
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
static inline void gen_op_or_T1_T0(void)
|
2003-10-01 04:36:07 +08:00
|
|
|
{
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_or_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
2003-10-01 04:36:07 +08:00
|
|
|
}
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
static inline void gen_op_xor_T1_T0(void)
|
2003-10-01 04:36:07 +08:00
|
|
|
{
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_xor_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
2003-10-01 04:36:07 +08:00
|
|
|
}
|
|
|
|
|
2005-07-02 22:31:34 +08:00
|
|
|
static inline void gen_jmp_im(target_ulong pc)
|
|
|
|
{
|
2008-03-17 03:23:31 +08:00
|
|
|
tcg_gen_movi_tl(cpu_pc, pc);
|
2005-07-02 22:31:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_movl_npc_im(target_ulong npc)
|
|
|
|
{
|
2008-03-17 03:23:31 +08:00
|
|
|
tcg_gen_movi_tl(cpu_npc, npc);
|
2005-07-02 22:31:34 +08:00
|
|
|
}
|
|
|
|
|
2007-09-17 05:08:06 +08:00
|
|
|
static inline void gen_goto_tb(DisasContext *s, int tb_num,
|
2005-11-20 18:32:05 +08:00
|
|
|
target_ulong pc, target_ulong npc)
|
|
|
|
{
|
|
|
|
TranslationBlock *tb;
|
|
|
|
|
|
|
|
tb = s->tb;
|
|
|
|
if ((pc & TARGET_PAGE_MASK) == (tb->pc & TARGET_PAGE_MASK) &&
|
|
|
|
(npc & TARGET_PAGE_MASK) == (tb->pc & TARGET_PAGE_MASK)) {
|
|
|
|
/* jump to same page: we can use a direct jump */
|
2008-02-01 18:50:11 +08:00
|
|
|
tcg_gen_goto_tb(tb_num);
|
2005-11-20 18:32:05 +08:00
|
|
|
gen_jmp_im(pc);
|
|
|
|
gen_movl_npc_im(npc);
|
2008-02-01 18:50:11 +08:00
|
|
|
tcg_gen_exit_tb((long)tb + tb_num);
|
2005-11-20 18:32:05 +08:00
|
|
|
} else {
|
|
|
|
/* jump to another page: currently not optimized */
|
|
|
|
gen_jmp_im(pc);
|
|
|
|
gen_movl_npc_im(npc);
|
2008-02-01 18:50:11 +08:00
|
|
|
tcg_gen_exit_tb(0);
|
2005-11-20 18:32:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-09 05:36:50 +08:00
|
|
|
// XXX suboptimal
|
|
|
|
static inline void gen_mov_reg_N(TCGv reg, TCGv src)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_extu_i32_tl(reg, src);
|
|
|
|
tcg_gen_shri_tl(reg, reg, 23);
|
2008-03-09 05:36:50 +08:00
|
|
|
tcg_gen_andi_tl(reg, reg, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_mov_reg_Z(TCGv reg, TCGv src)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_extu_i32_tl(reg, src);
|
|
|
|
tcg_gen_shri_tl(reg, reg, 22);
|
2008-03-09 05:36:50 +08:00
|
|
|
tcg_gen_andi_tl(reg, reg, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_mov_reg_V(TCGv reg, TCGv src)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_extu_i32_tl(reg, src);
|
|
|
|
tcg_gen_shri_tl(reg, reg, 21);
|
2008-03-09 05:36:50 +08:00
|
|
|
tcg_gen_andi_tl(reg, reg, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_mov_reg_C(TCGv reg, TCGv src)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_extu_i32_tl(reg, src);
|
|
|
|
tcg_gen_shri_tl(reg, reg, 20);
|
2008-03-09 05:36:50 +08:00
|
|
|
tcg_gen_andi_tl(reg, reg, 0x1);
|
|
|
|
}
|
|
|
|
|
2008-03-14 04:45:31 +08:00
|
|
|
static inline void gen_op_exception(int exception)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_movi_i32(cpu_tmp32, exception);
|
|
|
|
tcg_gen_helper_0_1(raise_exception, cpu_tmp32);
|
2008-03-14 04:45:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_cc_clear(void)
|
|
|
|
{
|
|
|
|
tcg_gen_movi_i32(cpu_psr, 0);
|
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
tcg_gen_movi_i32(cpu_xcc, 0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* old op:
|
|
|
|
if (!T0)
|
|
|
|
env->psr |= PSR_ZERO;
|
|
|
|
if ((int32_t) T0 < 0)
|
|
|
|
env->psr |= PSR_NEG;
|
|
|
|
*/
|
|
|
|
static inline void gen_cc_NZ(TCGv dst)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
TCGv r_temp;
|
2008-03-14 04:45:31 +08:00
|
|
|
int l1, l2;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
|
|
|
l2 = gen_new_label();
|
2008-03-22 16:40:28 +08:00
|
|
|
r_temp = tcg_temp_new(TCG_TYPE_TL);
|
|
|
|
tcg_gen_andi_tl(r_temp, dst, 0xffffffffULL);
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_NE, r_temp, tcg_const_tl(0), l1);
|
2008-03-14 04:45:31 +08:00
|
|
|
tcg_gen_ori_i32(cpu_psr, cpu_psr, PSR_ZERO);
|
|
|
|
gen_set_label(l1);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_andi_tl(r_temp, dst, 0xffffffffULL);
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_GE, r_temp, tcg_const_tl(0), l2);
|
2008-03-14 04:45:31 +08:00
|
|
|
tcg_gen_ori_i32(cpu_psr, cpu_psr, PSR_NEG);
|
|
|
|
gen_set_label(l2);
|
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
{
|
|
|
|
int l3, l4;
|
|
|
|
|
|
|
|
l3 = gen_new_label();
|
|
|
|
l4 = gen_new_label();
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_brcond_tl(TCG_COND_NE, dst, tcg_const_tl(0), l3);
|
2008-03-14 04:45:31 +08:00
|
|
|
tcg_gen_ori_i32(cpu_xcc, cpu_xcc, PSR_ZERO);
|
|
|
|
gen_set_label(l3);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_brcond_tl(TCG_COND_GE, dst, tcg_const_tl(0), l4);
|
2008-03-14 04:45:31 +08:00
|
|
|
tcg_gen_ori_i32(cpu_xcc, cpu_xcc, PSR_NEG);
|
|
|
|
gen_set_label(l4);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* old op:
|
|
|
|
if (T0 < src1)
|
|
|
|
env->psr |= PSR_CARRY;
|
|
|
|
*/
|
|
|
|
static inline void gen_cc_C_add(TCGv dst, TCGv src1)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
TCGv r_temp;
|
2008-03-14 04:45:31 +08:00
|
|
|
int l1;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
2008-03-22 16:40:28 +08:00
|
|
|
r_temp = tcg_temp_new(TCG_TYPE_TL);
|
|
|
|
tcg_gen_andi_tl(r_temp, dst, 0xffffffffULL);
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_GEU, dst, src1, l1);
|
2008-03-14 04:45:31 +08:00
|
|
|
tcg_gen_ori_i32(cpu_psr, cpu_psr, PSR_CARRY);
|
|
|
|
gen_set_label(l1);
|
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
{
|
|
|
|
int l2;
|
|
|
|
|
|
|
|
l2 = gen_new_label();
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_GEU, dst, src1, l2);
|
|
|
|
tcg_gen_ori_i32(cpu_xcc, cpu_xcc, PSR_CARRY);
|
|
|
|
gen_set_label(l2);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* old op:
|
|
|
|
if (((src1 ^ T1 ^ -1) & (src1 ^ T0)) & (1 << 31))
|
|
|
|
env->psr |= PSR_OVF;
|
|
|
|
*/
|
|
|
|
static inline void gen_cc_V_add(TCGv dst, TCGv src1, TCGv src2)
|
|
|
|
{
|
2008-03-17 03:18:54 +08:00
|
|
|
TCGv r_temp;
|
2008-03-14 04:45:31 +08:00
|
|
|
int l1;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
|
|
|
|
|
|
|
r_temp = tcg_temp_new(TCG_TYPE_TL);
|
|
|
|
tcg_gen_xor_tl(r_temp, src1, src2);
|
|
|
|
tcg_gen_xori_tl(r_temp, r_temp, -1);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_xor_tl(cpu_tmp0, src1, dst);
|
|
|
|
tcg_gen_and_tl(r_temp, r_temp, cpu_tmp0);
|
|
|
|
tcg_gen_andi_tl(r_temp, r_temp, (1 << 31));
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, r_temp, tcg_const_tl(0), l1);
|
2008-03-14 04:45:31 +08:00
|
|
|
tcg_gen_ori_i32(cpu_psr, cpu_psr, PSR_OVF);
|
|
|
|
gen_set_label(l1);
|
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
{
|
|
|
|
int l2;
|
|
|
|
|
|
|
|
l2 = gen_new_label();
|
|
|
|
tcg_gen_xor_tl(r_temp, src1, src2);
|
|
|
|
tcg_gen_xori_tl(r_temp, r_temp, -1);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_xor_tl(cpu_tmp0, src1, dst);
|
|
|
|
tcg_gen_and_tl(r_temp, r_temp, cpu_tmp0);
|
|
|
|
tcg_gen_andi_tl(r_temp, r_temp, (1ULL << 63));
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, r_temp, tcg_const_tl(0), l2);
|
2008-03-14 04:45:31 +08:00
|
|
|
tcg_gen_ori_i32(cpu_xcc, cpu_xcc, PSR_OVF);
|
|
|
|
gen_set_label(l2);
|
|
|
|
}
|
|
|
|
#endif
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_tl(r_temp);
|
2008-03-14 04:45:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_add_tv(TCGv dst, TCGv src1, TCGv src2)
|
|
|
|
{
|
2008-03-17 03:18:54 +08:00
|
|
|
TCGv r_temp;
|
2008-03-14 04:45:31 +08:00
|
|
|
int l1;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
|
|
|
|
|
|
|
r_temp = tcg_temp_new(TCG_TYPE_TL);
|
|
|
|
tcg_gen_xor_tl(r_temp, src1, src2);
|
|
|
|
tcg_gen_xori_tl(r_temp, r_temp, -1);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_xor_tl(cpu_tmp0, src1, dst);
|
|
|
|
tcg_gen_and_tl(r_temp, r_temp, cpu_tmp0);
|
|
|
|
tcg_gen_andi_tl(r_temp, r_temp, (1 << 31));
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, r_temp, tcg_const_tl(0), l1);
|
2008-03-14 04:45:31 +08:00
|
|
|
gen_op_exception(TT_TOVF);
|
|
|
|
gen_set_label(l1);
|
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
{
|
|
|
|
int l2;
|
|
|
|
|
|
|
|
l2 = gen_new_label();
|
|
|
|
tcg_gen_xor_tl(r_temp, src1, src2);
|
|
|
|
tcg_gen_xori_tl(r_temp, r_temp, -1);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_xor_tl(cpu_tmp0, src1, dst);
|
|
|
|
tcg_gen_and_tl(r_temp, r_temp, cpu_tmp0);
|
|
|
|
tcg_gen_andi_tl(r_temp, r_temp, (1ULL << 63));
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, r_temp, tcg_const_tl(0), l2);
|
2008-03-14 04:45:31 +08:00
|
|
|
gen_op_exception(TT_TOVF);
|
|
|
|
gen_set_label(l2);
|
|
|
|
}
|
|
|
|
#endif
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_tl(r_temp);
|
2008-03-14 04:45:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_cc_V_tag(TCGv src1, TCGv src2)
|
|
|
|
{
|
|
|
|
int l1;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_or_tl(cpu_tmp0, src1, src2);
|
|
|
|
tcg_gen_andi_tl(cpu_tmp0, cpu_tmp0, 0x3);
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, cpu_tmp0, tcg_const_tl(0), l1);
|
2008-03-14 04:45:31 +08:00
|
|
|
tcg_gen_ori_i32(cpu_psr, cpu_psr, PSR_OVF);
|
|
|
|
gen_set_label(l1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_tag_tv(TCGv src1, TCGv src2)
|
|
|
|
{
|
|
|
|
int l1;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_or_tl(cpu_tmp0, src1, src2);
|
|
|
|
tcg_gen_andi_tl(cpu_tmp0, cpu_tmp0, 0x3);
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, cpu_tmp0, tcg_const_tl(0), l1);
|
2008-03-14 04:45:31 +08:00
|
|
|
gen_op_exception(TT_TOVF);
|
|
|
|
gen_set_label(l1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_add_T1_T0_cc(void)
|
|
|
|
{
|
|
|
|
tcg_gen_mov_tl(cpu_cc_src, cpu_T[0]);
|
|
|
|
tcg_gen_add_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
gen_cc_clear();
|
|
|
|
gen_cc_NZ(cpu_T[0]);
|
|
|
|
gen_cc_C_add(cpu_T[0], cpu_cc_src);
|
|
|
|
gen_cc_V_add(cpu_T[0], cpu_cc_src, cpu_T[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_addx_T1_T0_cc(void)
|
|
|
|
{
|
|
|
|
tcg_gen_mov_tl(cpu_cc_src, cpu_T[0]);
|
|
|
|
gen_mov_reg_C(cpu_tmp0, cpu_psr);
|
|
|
|
tcg_gen_add_tl(cpu_T[0], cpu_T[0], cpu_tmp0);
|
|
|
|
gen_cc_clear();
|
|
|
|
gen_cc_C_add(cpu_T[0], cpu_cc_src);
|
|
|
|
tcg_gen_add_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
gen_cc_C_add(cpu_T[0], cpu_cc_src);
|
|
|
|
gen_cc_NZ(cpu_T[0]);
|
|
|
|
gen_cc_V_add(cpu_T[0], cpu_cc_src, cpu_T[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_tadd_T1_T0_cc(void)
|
|
|
|
{
|
|
|
|
tcg_gen_mov_tl(cpu_cc_src, cpu_T[0]);
|
|
|
|
tcg_gen_add_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
gen_cc_clear();
|
|
|
|
gen_cc_NZ(cpu_T[0]);
|
|
|
|
gen_cc_C_add(cpu_T[0], cpu_cc_src);
|
|
|
|
gen_cc_V_add(cpu_T[0], cpu_cc_src, cpu_T[1]);
|
|
|
|
gen_cc_V_tag(cpu_cc_src, cpu_T[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_tadd_T1_T0_ccTV(void)
|
|
|
|
{
|
|
|
|
gen_tag_tv(cpu_T[0], cpu_T[1]);
|
|
|
|
tcg_gen_mov_tl(cpu_cc_src, cpu_T[0]);
|
|
|
|
tcg_gen_add_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
gen_add_tv(cpu_T[0], cpu_cc_src, cpu_T[1]);
|
|
|
|
gen_cc_clear();
|
|
|
|
gen_cc_NZ(cpu_T[0]);
|
|
|
|
gen_cc_C_add(cpu_T[0], cpu_cc_src);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* old op:
|
|
|
|
if (src1 < T1)
|
|
|
|
env->psr |= PSR_CARRY;
|
|
|
|
*/
|
|
|
|
static inline void gen_cc_C_sub(TCGv src1, TCGv src2)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
TCGv r_temp1, r_temp2;
|
2008-03-14 04:45:31 +08:00
|
|
|
int l1;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
2008-03-22 16:40:28 +08:00
|
|
|
r_temp1 = tcg_temp_new(TCG_TYPE_TL);
|
|
|
|
r_temp2 = tcg_temp_new(TCG_TYPE_TL);
|
|
|
|
tcg_gen_andi_tl(r_temp1, src1, 0xffffffffULL);
|
|
|
|
tcg_gen_andi_tl(r_temp2, src2, 0xffffffffULL);
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_GEU, r_temp1, r_temp2, l1);
|
2008-03-14 04:45:31 +08:00
|
|
|
tcg_gen_ori_i32(cpu_psr, cpu_psr, PSR_CARRY);
|
|
|
|
gen_set_label(l1);
|
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
{
|
|
|
|
int l2;
|
|
|
|
|
|
|
|
l2 = gen_new_label();
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_GEU, src1, src2, l2);
|
|
|
|
tcg_gen_ori_i32(cpu_xcc, cpu_xcc, PSR_CARRY);
|
|
|
|
gen_set_label(l2);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* old op:
|
|
|
|
if (((src1 ^ T1) & (src1 ^ T0)) & (1 << 31))
|
|
|
|
env->psr |= PSR_OVF;
|
|
|
|
*/
|
|
|
|
static inline void gen_cc_V_sub(TCGv dst, TCGv src1, TCGv src2)
|
|
|
|
{
|
2008-03-17 03:18:54 +08:00
|
|
|
TCGv r_temp;
|
2008-03-14 04:45:31 +08:00
|
|
|
int l1;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
|
|
|
|
|
|
|
r_temp = tcg_temp_new(TCG_TYPE_TL);
|
|
|
|
tcg_gen_xor_tl(r_temp, src1, src2);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_xor_tl(cpu_tmp0, src1, dst);
|
|
|
|
tcg_gen_and_tl(r_temp, r_temp, cpu_tmp0);
|
|
|
|
tcg_gen_andi_tl(r_temp, r_temp, (1 << 31));
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, r_temp, tcg_const_tl(0), l1);
|
2008-03-14 04:45:31 +08:00
|
|
|
tcg_gen_ori_i32(cpu_psr, cpu_psr, PSR_OVF);
|
|
|
|
gen_set_label(l1);
|
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
{
|
|
|
|
int l2;
|
|
|
|
|
|
|
|
l2 = gen_new_label();
|
|
|
|
tcg_gen_xor_tl(r_temp, src1, src2);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_xor_tl(cpu_tmp0, src1, dst);
|
|
|
|
tcg_gen_and_tl(r_temp, r_temp, cpu_tmp0);
|
|
|
|
tcg_gen_andi_tl(r_temp, r_temp, (1ULL << 63));
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, r_temp, tcg_const_tl(0), l2);
|
2008-03-14 04:45:31 +08:00
|
|
|
tcg_gen_ori_i32(cpu_xcc, cpu_xcc, PSR_OVF);
|
|
|
|
gen_set_label(l2);
|
|
|
|
}
|
|
|
|
#endif
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_tl(r_temp);
|
2008-03-14 04:45:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_sub_tv(TCGv dst, TCGv src1, TCGv src2)
|
|
|
|
{
|
2008-03-17 03:18:54 +08:00
|
|
|
TCGv r_temp;
|
2008-03-14 04:45:31 +08:00
|
|
|
int l1;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
|
|
|
|
|
|
|
r_temp = tcg_temp_new(TCG_TYPE_TL);
|
|
|
|
tcg_gen_xor_tl(r_temp, src1, src2);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_xor_tl(cpu_tmp0, src1, dst);
|
|
|
|
tcg_gen_and_tl(r_temp, r_temp, cpu_tmp0);
|
|
|
|
tcg_gen_andi_tl(r_temp, r_temp, (1 << 31));
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, r_temp, tcg_const_tl(0), l1);
|
2008-03-14 04:45:31 +08:00
|
|
|
gen_op_exception(TT_TOVF);
|
|
|
|
gen_set_label(l1);
|
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
{
|
|
|
|
int l2;
|
|
|
|
|
|
|
|
l2 = gen_new_label();
|
|
|
|
tcg_gen_xor_tl(r_temp, src1, src2);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_xor_tl(cpu_tmp0, src1, dst);
|
|
|
|
tcg_gen_and_tl(r_temp, r_temp, cpu_tmp0);
|
|
|
|
tcg_gen_andi_tl(r_temp, r_temp, (1ULL << 63));
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, r_temp, tcg_const_tl(0), l2);
|
2008-03-14 04:45:31 +08:00
|
|
|
gen_op_exception(TT_TOVF);
|
|
|
|
gen_set_label(l2);
|
|
|
|
}
|
|
|
|
#endif
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_tl(r_temp);
|
2008-03-14 04:45:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_sub_T1_T0_cc(void)
|
|
|
|
{
|
|
|
|
tcg_gen_mov_tl(cpu_cc_src, cpu_T[0]);
|
|
|
|
tcg_gen_sub_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
gen_cc_clear();
|
|
|
|
gen_cc_NZ(cpu_T[0]);
|
|
|
|
gen_cc_C_sub(cpu_cc_src, cpu_T[1]);
|
|
|
|
gen_cc_V_sub(cpu_T[0], cpu_cc_src, cpu_T[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_subx_T1_T0_cc(void)
|
|
|
|
{
|
|
|
|
tcg_gen_mov_tl(cpu_cc_src, cpu_T[0]);
|
|
|
|
gen_mov_reg_C(cpu_tmp0, cpu_psr);
|
|
|
|
tcg_gen_sub_tl(cpu_T[0], cpu_T[0], cpu_tmp0);
|
|
|
|
gen_cc_clear();
|
|
|
|
gen_cc_C_sub(cpu_T[0], cpu_cc_src);
|
|
|
|
tcg_gen_sub_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
gen_cc_C_sub(cpu_T[0], cpu_cc_src);
|
|
|
|
gen_cc_NZ(cpu_T[0]);
|
|
|
|
gen_cc_V_sub(cpu_T[0], cpu_cc_src, cpu_T[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_tsub_T1_T0_cc(void)
|
|
|
|
{
|
|
|
|
tcg_gen_mov_tl(cpu_cc_src, cpu_T[0]);
|
|
|
|
tcg_gen_sub_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
gen_cc_clear();
|
|
|
|
gen_cc_NZ(cpu_T[0]);
|
|
|
|
gen_cc_C_sub(cpu_cc_src, cpu_T[1]);
|
|
|
|
gen_cc_V_sub(cpu_T[0], cpu_cc_src, cpu_T[1]);
|
|
|
|
gen_cc_V_tag(cpu_cc_src, cpu_T[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_tsub_T1_T0_ccTV(void)
|
|
|
|
{
|
|
|
|
gen_tag_tv(cpu_T[0], cpu_T[1]);
|
|
|
|
tcg_gen_mov_tl(cpu_cc_src, cpu_T[0]);
|
|
|
|
tcg_gen_sub_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
gen_sub_tv(cpu_T[0], cpu_cc_src, cpu_T[1]);
|
|
|
|
gen_cc_clear();
|
|
|
|
gen_cc_NZ(cpu_T[0]);
|
|
|
|
gen_cc_C_sub(cpu_cc_src, cpu_T[1]);
|
|
|
|
}
|
|
|
|
|
2008-03-17 03:22:18 +08:00
|
|
|
static inline void gen_op_mulscc_T1_T0(void)
|
|
|
|
{
|
|
|
|
TCGv r_temp;
|
|
|
|
int l1, l2;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
|
|
|
l2 = gen_new_label();
|
|
|
|
r_temp = tcg_temp_new(TCG_TYPE_TL);
|
|
|
|
|
|
|
|
/* old op:
|
|
|
|
if (!(env->y & 1))
|
|
|
|
T1 = 0;
|
|
|
|
*/
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, y));
|
|
|
|
tcg_gen_extu_i32_tl(r_temp, cpu_tmp32);
|
|
|
|
tcg_gen_andi_tl(r_temp, r_temp, 0x1);
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, r_temp, tcg_const_tl(0), l1);
|
2008-03-17 03:22:18 +08:00
|
|
|
tcg_gen_mov_tl(cpu_cc_src2, cpu_T[1]);
|
2008-03-22 01:59:39 +08:00
|
|
|
tcg_gen_br(l2);
|
2008-03-17 03:22:18 +08:00
|
|
|
gen_set_label(l1);
|
|
|
|
tcg_gen_movi_tl(cpu_cc_src2, 0);
|
|
|
|
gen_set_label(l2);
|
|
|
|
|
|
|
|
// b2 = T0 & 1;
|
|
|
|
// env->y = (b2 << 31) | (env->y >> 1);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_shli_tl(r_temp, cpu_T[0], 31);
|
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, y));
|
|
|
|
tcg_gen_shri_i32(cpu_tmp32, cpu_tmp32, 1);
|
|
|
|
tcg_gen_or_i32(cpu_tmp32, cpu_tmp32, r_temp);
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env, offsetof(CPUSPARCState, y));
|
2008-03-17 03:22:18 +08:00
|
|
|
|
|
|
|
// b1 = N ^ V;
|
|
|
|
gen_mov_reg_N(cpu_tmp0, cpu_psr);
|
|
|
|
gen_mov_reg_V(r_temp, cpu_psr);
|
|
|
|
tcg_gen_xor_tl(cpu_tmp0, cpu_tmp0, r_temp);
|
|
|
|
|
|
|
|
// T0 = (b1 << 31) | (T0 >> 1);
|
|
|
|
// src1 = T0;
|
|
|
|
tcg_gen_shli_tl(cpu_tmp0, cpu_tmp0, 31);
|
|
|
|
tcg_gen_shri_tl(cpu_cc_src, cpu_T[0], 1);
|
|
|
|
tcg_gen_or_tl(cpu_cc_src, cpu_cc_src, cpu_tmp0);
|
|
|
|
|
|
|
|
/* do addition and update flags */
|
|
|
|
tcg_gen_add_tl(cpu_T[0], cpu_cc_src, cpu_cc_src2);
|
|
|
|
tcg_gen_discard_tl(r_temp);
|
|
|
|
|
|
|
|
gen_cc_clear();
|
|
|
|
gen_cc_NZ(cpu_T[0]);
|
|
|
|
gen_cc_V_add(cpu_T[0], cpu_cc_src, cpu_cc_src2);
|
|
|
|
gen_cc_C_add(cpu_T[0], cpu_cc_src);
|
|
|
|
}
|
|
|
|
|
2008-03-17 03:24:42 +08:00
|
|
|
static inline void gen_op_umul_T1_T0(void)
|
|
|
|
{
|
|
|
|
TCGv r_temp, r_temp2;
|
|
|
|
|
|
|
|
r_temp = tcg_temp_new(TCG_TYPE_I64);
|
|
|
|
r_temp2 = tcg_temp_new(TCG_TYPE_I64);
|
|
|
|
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_extu_tl_i64(r_temp, cpu_T[1]);
|
|
|
|
tcg_gen_extu_tl_i64(r_temp2, cpu_T[0]);
|
2008-03-17 03:24:42 +08:00
|
|
|
tcg_gen_mul_i64(r_temp2, r_temp, r_temp2);
|
|
|
|
|
|
|
|
tcg_gen_shri_i64(r_temp, r_temp2, 32);
|
|
|
|
tcg_gen_trunc_i64_i32(r_temp, r_temp);
|
|
|
|
tcg_gen_st_i32(r_temp, cpu_env, offsetof(CPUSPARCState, y));
|
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
tcg_gen_mov_i64(cpu_T[0], r_temp2);
|
|
|
|
#else
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_trunc_i64_tl(cpu_T[0], r_temp2);
|
2008-03-17 03:24:42 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
tcg_gen_discard_i64(r_temp);
|
|
|
|
tcg_gen_discard_i64(r_temp2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_smul_T1_T0(void)
|
|
|
|
{
|
|
|
|
TCGv r_temp, r_temp2;
|
|
|
|
|
|
|
|
r_temp = tcg_temp_new(TCG_TYPE_I64);
|
|
|
|
r_temp2 = tcg_temp_new(TCG_TYPE_I64);
|
|
|
|
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_ext_tl_i64(r_temp, cpu_T[1]);
|
|
|
|
tcg_gen_ext_tl_i64(r_temp2, cpu_T[0]);
|
2008-03-17 03:24:42 +08:00
|
|
|
tcg_gen_mul_i64(r_temp2, r_temp, r_temp2);
|
|
|
|
|
|
|
|
tcg_gen_shri_i64(r_temp, r_temp2, 32);
|
|
|
|
tcg_gen_trunc_i64_i32(r_temp, r_temp);
|
|
|
|
tcg_gen_st_i32(r_temp, cpu_env, offsetof(CPUSPARCState, y));
|
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
tcg_gen_mov_i64(cpu_T[0], r_temp2);
|
|
|
|
#else
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_trunc_i64_tl(cpu_T[0], r_temp2);
|
2008-03-17 03:24:42 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
tcg_gen_discard_i64(r_temp);
|
|
|
|
tcg_gen_discard_i64(r_temp2);
|
|
|
|
}
|
|
|
|
|
2008-03-19 02:10:42 +08:00
|
|
|
static inline void gen_op_udiv_T1_T0(void)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_1_2(helper_udiv, cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_sdiv_T1_T0(void)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_1_2(helper_sdiv, cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
}
|
|
|
|
|
2008-03-15 03:42:42 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2008-03-22 16:40:28 +08:00
|
|
|
static inline void gen_trap_ifdivzero_tl(TCGv divisor)
|
2008-03-15 03:42:42 +08:00
|
|
|
{
|
|
|
|
int l1;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_brcond_tl(TCG_COND_NE, divisor, tcg_const_tl(0), l1);
|
2008-03-15 03:42:42 +08:00
|
|
|
gen_op_exception(TT_DIV_ZERO);
|
|
|
|
gen_set_label(l1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_sdivx_T1_T0(void)
|
|
|
|
{
|
|
|
|
int l1, l2;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
|
|
|
l2 = gen_new_label();
|
2008-03-22 16:40:28 +08:00
|
|
|
gen_trap_ifdivzero_tl(cpu_T[1]);
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_NE, cpu_T[0], tcg_const_tl(INT64_MIN), l1);
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_NE, cpu_T[1], tcg_const_tl(-1), l1);
|
2008-03-15 03:42:42 +08:00
|
|
|
tcg_gen_movi_i64(cpu_T[0], INT64_MIN);
|
2008-03-22 01:59:39 +08:00
|
|
|
tcg_gen_br(l2);
|
2008-03-15 03:42:42 +08:00
|
|
|
gen_set_label(l1);
|
|
|
|
tcg_gen_div_i64(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
gen_set_label(l2);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-03-14 04:45:31 +08:00
|
|
|
static inline void gen_op_div_cc(void)
|
|
|
|
{
|
|
|
|
int l1;
|
|
|
|
|
|
|
|
gen_cc_clear();
|
|
|
|
gen_cc_NZ(cpu_T[0]);
|
|
|
|
l1 = gen_new_label();
|
2008-03-19 02:10:42 +08:00
|
|
|
tcg_gen_ld_tl(cpu_tmp0, cpu_env, offsetof(CPUSPARCState, cc_src2));
|
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, cpu_tmp0, tcg_const_tl(0), l1);
|
2008-03-14 04:45:31 +08:00
|
|
|
tcg_gen_ori_i32(cpu_psr, cpu_psr, PSR_OVF);
|
|
|
|
gen_set_label(l1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_logic_T0_cc(void)
|
|
|
|
{
|
|
|
|
gen_cc_clear();
|
|
|
|
gen_cc_NZ(cpu_T[0]);
|
|
|
|
}
|
|
|
|
|
2008-03-09 05:36:50 +08:00
|
|
|
// 1
|
|
|
|
static inline void gen_op_eval_ba(TCGv dst)
|
|
|
|
{
|
|
|
|
tcg_gen_movi_tl(dst, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Z
|
|
|
|
static inline void gen_op_eval_be(TCGv dst, TCGv src)
|
|
|
|
{
|
|
|
|
gen_mov_reg_Z(dst, src);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Z | (N ^ V)
|
|
|
|
static inline void gen_op_eval_ble(TCGv dst, TCGv src)
|
|
|
|
{
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_N(cpu_tmp0, src);
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_mov_reg_V(dst, src);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_xor_tl(dst, dst, cpu_tmp0);
|
|
|
|
gen_mov_reg_Z(cpu_tmp0, src);
|
|
|
|
tcg_gen_or_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// N ^ V
|
|
|
|
static inline void gen_op_eval_bl(TCGv dst, TCGv src)
|
|
|
|
{
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_V(cpu_tmp0, src);
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_mov_reg_N(dst, src);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_xor_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// C | Z
|
|
|
|
static inline void gen_op_eval_bleu(TCGv dst, TCGv src)
|
|
|
|
{
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_Z(cpu_tmp0, src);
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_mov_reg_C(dst, src);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_or_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// C
|
|
|
|
static inline void gen_op_eval_bcs(TCGv dst, TCGv src)
|
|
|
|
{
|
|
|
|
gen_mov_reg_C(dst, src);
|
|
|
|
}
|
|
|
|
|
|
|
|
// V
|
|
|
|
static inline void gen_op_eval_bvs(TCGv dst, TCGv src)
|
|
|
|
{
|
|
|
|
gen_mov_reg_V(dst, src);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 0
|
|
|
|
static inline void gen_op_eval_bn(TCGv dst)
|
|
|
|
{
|
|
|
|
tcg_gen_movi_tl(dst, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// N
|
|
|
|
static inline void gen_op_eval_bneg(TCGv dst, TCGv src)
|
|
|
|
{
|
|
|
|
gen_mov_reg_N(dst, src);
|
|
|
|
}
|
|
|
|
|
|
|
|
// !Z
|
|
|
|
static inline void gen_op_eval_bne(TCGv dst, TCGv src)
|
|
|
|
{
|
|
|
|
gen_mov_reg_Z(dst, src);
|
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// !(Z | (N ^ V))
|
|
|
|
static inline void gen_op_eval_bg(TCGv dst, TCGv src)
|
|
|
|
{
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_N(cpu_tmp0, src);
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_mov_reg_V(dst, src);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_xor_tl(dst, dst, cpu_tmp0);
|
|
|
|
gen_mov_reg_Z(cpu_tmp0, src);
|
|
|
|
tcg_gen_or_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// !(N ^ V)
|
|
|
|
static inline void gen_op_eval_bge(TCGv dst, TCGv src)
|
|
|
|
{
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_V(cpu_tmp0, src);
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_mov_reg_N(dst, src);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_xor_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// !(C | Z)
|
|
|
|
static inline void gen_op_eval_bgu(TCGv dst, TCGv src)
|
|
|
|
{
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_Z(cpu_tmp0, src);
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_mov_reg_C(dst, src);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_or_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// !C
|
|
|
|
static inline void gen_op_eval_bcc(TCGv dst, TCGv src)
|
|
|
|
{
|
|
|
|
gen_mov_reg_C(dst, src);
|
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// !N
|
|
|
|
static inline void gen_op_eval_bpos(TCGv dst, TCGv src)
|
|
|
|
{
|
|
|
|
gen_mov_reg_N(dst, src);
|
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// !V
|
|
|
|
static inline void gen_op_eval_bvc(TCGv dst, TCGv src)
|
|
|
|
{
|
|
|
|
gen_mov_reg_V(dst, src);
|
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
FPSR bit field FCC1 | FCC0:
|
|
|
|
0 =
|
|
|
|
1 <
|
|
|
|
2 >
|
|
|
|
3 unordered
|
|
|
|
*/
|
|
|
|
static inline void gen_mov_reg_FCC0(TCGv reg, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_extu_i32_tl(reg, src);
|
|
|
|
tcg_gen_shri_tl(reg, reg, 10 + fcc_offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
tcg_gen_andi_tl(reg, reg, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_mov_reg_FCC1(TCGv reg, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_extu_i32_tl(reg, src);
|
|
|
|
tcg_gen_shri_tl(reg, reg, 11 + fcc_offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
tcg_gen_andi_tl(reg, reg, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// !0: FCC0 | FCC1
|
|
|
|
static inline void gen_op_eval_fbne(TCGv dst, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
|
|
|
gen_mov_reg_FCC0(dst, src, fcc_offset);
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
|
|
|
|
tcg_gen_or_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 1 or 2: FCC0 ^ FCC1
|
|
|
|
static inline void gen_op_eval_fblg(TCGv dst, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
|
|
|
gen_mov_reg_FCC0(dst, src, fcc_offset);
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
|
|
|
|
tcg_gen_xor_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 1 or 3: FCC0
|
|
|
|
static inline void gen_op_eval_fbul(TCGv dst, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
|
|
|
gen_mov_reg_FCC0(dst, src, fcc_offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 1: FCC0 & !FCC1
|
|
|
|
static inline void gen_op_eval_fbl(TCGv dst, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
|
|
|
gen_mov_reg_FCC0(dst, src, fcc_offset);
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
|
|
|
|
tcg_gen_xori_tl(cpu_tmp0, cpu_tmp0, 0x1);
|
|
|
|
tcg_gen_and_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 2 or 3: FCC1
|
|
|
|
static inline void gen_op_eval_fbug(TCGv dst, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
|
|
|
gen_mov_reg_FCC1(dst, src, fcc_offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 2: !FCC0 & FCC1
|
|
|
|
static inline void gen_op_eval_fbg(TCGv dst, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
|
|
|
gen_mov_reg_FCC0(dst, src, fcc_offset);
|
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
|
|
|
|
tcg_gen_and_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 3: FCC0 & FCC1
|
|
|
|
static inline void gen_op_eval_fbu(TCGv dst, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
|
|
|
gen_mov_reg_FCC0(dst, src, fcc_offset);
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
|
|
|
|
tcg_gen_and_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 0: !(FCC0 | FCC1)
|
|
|
|
static inline void gen_op_eval_fbe(TCGv dst, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
|
|
|
gen_mov_reg_FCC0(dst, src, fcc_offset);
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
|
|
|
|
tcg_gen_or_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 0 or 3: !(FCC0 ^ FCC1)
|
|
|
|
static inline void gen_op_eval_fbue(TCGv dst, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
|
|
|
gen_mov_reg_FCC0(dst, src, fcc_offset);
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
|
|
|
|
tcg_gen_xor_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 0 or 2: !FCC0
|
|
|
|
static inline void gen_op_eval_fbge(TCGv dst, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
|
|
|
gen_mov_reg_FCC0(dst, src, fcc_offset);
|
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// !1: !(FCC0 & !FCC1)
|
|
|
|
static inline void gen_op_eval_fbuge(TCGv dst, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
|
|
|
gen_mov_reg_FCC0(dst, src, fcc_offset);
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
|
|
|
|
tcg_gen_xori_tl(cpu_tmp0, cpu_tmp0, 0x1);
|
|
|
|
tcg_gen_and_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 0 or 1: !FCC1
|
|
|
|
static inline void gen_op_eval_fble(TCGv dst, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
|
|
|
gen_mov_reg_FCC1(dst, src, fcc_offset);
|
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// !2: !(!FCC0 & FCC1)
|
|
|
|
static inline void gen_op_eval_fbule(TCGv dst, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
|
|
|
gen_mov_reg_FCC0(dst, src, fcc_offset);
|
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
|
|
|
|
tcg_gen_and_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// !3: !(FCC0 & FCC1)
|
|
|
|
static inline void gen_op_eval_fbo(TCGv dst, TCGv src,
|
|
|
|
unsigned int fcc_offset)
|
|
|
|
{
|
|
|
|
gen_mov_reg_FCC0(dst, src, fcc_offset);
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
|
|
|
|
tcg_gen_and_tl(dst, dst, cpu_tmp0);
|
2008-03-09 05:36:50 +08:00
|
|
|
tcg_gen_xori_tl(dst, dst, 0x1);
|
|
|
|
}
|
|
|
|
|
2007-06-26 03:52:58 +08:00
|
|
|
static inline void gen_branch2(DisasContext *dc, target_ulong pc1,
|
2008-03-09 05:36:50 +08:00
|
|
|
target_ulong pc2, TCGv r_cond)
|
2005-07-23 22:27:54 +08:00
|
|
|
{
|
|
|
|
int l1;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
|
|
|
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, r_cond, tcg_const_tl(0), l1);
|
2005-07-23 22:27:54 +08:00
|
|
|
|
2005-11-20 18:32:05 +08:00
|
|
|
gen_goto_tb(dc, 0, pc1, pc1 + 4);
|
2005-07-23 22:27:54 +08:00
|
|
|
|
|
|
|
gen_set_label(l1);
|
2005-11-20 18:32:05 +08:00
|
|
|
gen_goto_tb(dc, 1, pc2, pc2 + 4);
|
2005-07-23 22:27:54 +08:00
|
|
|
}
|
|
|
|
|
2007-06-26 03:52:58 +08:00
|
|
|
static inline void gen_branch_a(DisasContext *dc, target_ulong pc1,
|
2008-03-09 05:36:50 +08:00
|
|
|
target_ulong pc2, TCGv r_cond)
|
2005-07-23 22:27:54 +08:00
|
|
|
{
|
|
|
|
int l1;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
|
|
|
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, r_cond, tcg_const_tl(0), l1);
|
2005-07-23 22:27:54 +08:00
|
|
|
|
2005-11-20 18:32:05 +08:00
|
|
|
gen_goto_tb(dc, 0, pc2, pc1);
|
2005-07-23 22:27:54 +08:00
|
|
|
|
|
|
|
gen_set_label(l1);
|
2005-11-20 18:32:05 +08:00
|
|
|
gen_goto_tb(dc, 1, pc2 + 4, pc2 + 8);
|
2005-07-23 22:27:54 +08:00
|
|
|
}
|
|
|
|
|
2007-06-26 03:52:58 +08:00
|
|
|
static inline void gen_branch(DisasContext *dc, target_ulong pc,
|
|
|
|
target_ulong npc)
|
2005-07-23 22:27:54 +08:00
|
|
|
{
|
2005-11-20 18:32:05 +08:00
|
|
|
gen_goto_tb(dc, 0, pc, npc);
|
2005-07-23 22:27:54 +08:00
|
|
|
}
|
|
|
|
|
2008-03-09 05:36:50 +08:00
|
|
|
static inline void gen_generic_branch(target_ulong npc1, target_ulong npc2,
|
|
|
|
TCGv r_cond)
|
2005-07-23 22:27:54 +08:00
|
|
|
{
|
|
|
|
int l1, l2;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
|
|
|
l2 = gen_new_label();
|
2008-03-09 05:36:50 +08:00
|
|
|
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, r_cond, tcg_const_tl(0), l1);
|
2005-07-23 22:27:54 +08:00
|
|
|
|
|
|
|
gen_movl_npc_im(npc1);
|
2008-03-22 01:59:39 +08:00
|
|
|
tcg_gen_br(l2);
|
2005-07-23 22:27:54 +08:00
|
|
|
|
|
|
|
gen_set_label(l1);
|
|
|
|
gen_movl_npc_im(npc2);
|
|
|
|
gen_set_label(l2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* call this function before using T2 as it may have been set for a jump */
|
|
|
|
static inline void flush_T2(DisasContext * dc)
|
|
|
|
{
|
|
|
|
if (dc->npc == JUMP_PC) {
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_generic_branch(dc->jump_pc[0], dc->jump_pc[1], cpu_T[2]);
|
2005-07-23 22:27:54 +08:00
|
|
|
dc->npc = DYNAMIC_PC;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-17 04:30:05 +08:00
|
|
|
static inline void save_npc(DisasContext * dc)
|
|
|
|
{
|
|
|
|
if (dc->npc == JUMP_PC) {
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_generic_branch(dc->jump_pc[0], dc->jump_pc[1], cpu_T[2]);
|
2004-02-17 04:30:05 +08:00
|
|
|
dc->npc = DYNAMIC_PC;
|
|
|
|
} else if (dc->npc != DYNAMIC_PC) {
|
2005-07-02 22:31:34 +08:00
|
|
|
gen_movl_npc_im(dc->npc);
|
2004-02-17 04:30:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void save_state(DisasContext * dc)
|
|
|
|
{
|
2005-07-02 22:31:34 +08:00
|
|
|
gen_jmp_im(dc->pc);
|
2004-02-17 04:30:05 +08:00
|
|
|
save_npc(dc);
|
|
|
|
}
|
|
|
|
|
2005-02-14 04:11:30 +08:00
|
|
|
static inline void gen_mov_pc_npc(DisasContext * dc)
|
|
|
|
{
|
|
|
|
if (dc->npc == JUMP_PC) {
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_generic_branch(dc->jump_pc[0], dc->jump_pc[1], cpu_T[2]);
|
2008-03-17 03:23:31 +08:00
|
|
|
tcg_gen_mov_tl(cpu_pc, cpu_npc);
|
2005-02-14 04:11:30 +08:00
|
|
|
dc->pc = DYNAMIC_PC;
|
|
|
|
} else if (dc->npc == DYNAMIC_PC) {
|
2008-03-17 03:23:31 +08:00
|
|
|
tcg_gen_mov_tl(cpu_pc, cpu_npc);
|
2005-02-14 04:11:30 +08:00
|
|
|
dc->pc = DYNAMIC_PC;
|
|
|
|
} else {
|
|
|
|
dc->pc = dc->npc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-03 02:22:19 +08:00
|
|
|
static inline void gen_op_next_insn(void)
|
|
|
|
{
|
2008-03-17 03:23:31 +08:00
|
|
|
tcg_gen_mov_tl(cpu_pc, cpu_npc);
|
|
|
|
tcg_gen_addi_tl(cpu_npc, cpu_npc, 4);
|
2008-03-03 02:22:19 +08:00
|
|
|
}
|
|
|
|
|
2008-03-09 05:36:50 +08:00
|
|
|
static inline void gen_cond(TCGv r_dst, unsigned int cc, unsigned int cond)
|
|
|
|
{
|
|
|
|
TCGv r_src;
|
2005-07-02 22:31:34 +08:00
|
|
|
|
|
|
|
#ifdef TARGET_SPARC64
|
2008-03-09 05:36:50 +08:00
|
|
|
if (cc)
|
2008-03-14 04:45:31 +08:00
|
|
|
r_src = cpu_xcc;
|
2008-03-09 05:36:50 +08:00
|
|
|
else
|
2008-03-14 04:45:31 +08:00
|
|
|
r_src = cpu_psr;
|
2005-07-02 22:31:34 +08:00
|
|
|
#else
|
2008-03-14 04:45:31 +08:00
|
|
|
r_src = cpu_psr;
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2008-03-09 05:36:50 +08:00
|
|
|
switch (cond) {
|
|
|
|
case 0x0:
|
|
|
|
gen_op_eval_bn(r_dst);
|
|
|
|
break;
|
|
|
|
case 0x1:
|
|
|
|
gen_op_eval_be(r_dst, r_src);
|
|
|
|
break;
|
|
|
|
case 0x2:
|
|
|
|
gen_op_eval_ble(r_dst, r_src);
|
|
|
|
break;
|
|
|
|
case 0x3:
|
|
|
|
gen_op_eval_bl(r_dst, r_src);
|
|
|
|
break;
|
|
|
|
case 0x4:
|
|
|
|
gen_op_eval_bleu(r_dst, r_src);
|
|
|
|
break;
|
|
|
|
case 0x5:
|
|
|
|
gen_op_eval_bcs(r_dst, r_src);
|
|
|
|
break;
|
|
|
|
case 0x6:
|
|
|
|
gen_op_eval_bneg(r_dst, r_src);
|
|
|
|
break;
|
|
|
|
case 0x7:
|
|
|
|
gen_op_eval_bvs(r_dst, r_src);
|
|
|
|
break;
|
|
|
|
case 0x8:
|
|
|
|
gen_op_eval_ba(r_dst);
|
|
|
|
break;
|
|
|
|
case 0x9:
|
|
|
|
gen_op_eval_bne(r_dst, r_src);
|
|
|
|
break;
|
|
|
|
case 0xa:
|
|
|
|
gen_op_eval_bg(r_dst, r_src);
|
|
|
|
break;
|
|
|
|
case 0xb:
|
|
|
|
gen_op_eval_bge(r_dst, r_src);
|
|
|
|
break;
|
|
|
|
case 0xc:
|
|
|
|
gen_op_eval_bgu(r_dst, r_src);
|
|
|
|
break;
|
|
|
|
case 0xd:
|
|
|
|
gen_op_eval_bcc(r_dst, r_src);
|
|
|
|
break;
|
|
|
|
case 0xe:
|
|
|
|
gen_op_eval_bpos(r_dst, r_src);
|
|
|
|
break;
|
|
|
|
case 0xf:
|
|
|
|
gen_op_eval_bvc(r_dst, r_src);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2003-10-01 04:36:07 +08:00
|
|
|
|
2008-03-09 05:36:50 +08:00
|
|
|
static inline void gen_fcond(TCGv r_dst, unsigned int cc, unsigned int cond)
|
2004-10-01 05:55:55 +08:00
|
|
|
{
|
2008-03-09 05:36:50 +08:00
|
|
|
unsigned int offset;
|
|
|
|
|
|
|
|
switch (cc) {
|
|
|
|
default:
|
|
|
|
case 0x0:
|
|
|
|
offset = 0;
|
|
|
|
break;
|
|
|
|
case 0x1:
|
|
|
|
offset = 32 - 10;
|
|
|
|
break;
|
|
|
|
case 0x2:
|
|
|
|
offset = 34 - 10;
|
|
|
|
break;
|
|
|
|
case 0x3:
|
|
|
|
offset = 36 - 10;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (cond) {
|
|
|
|
case 0x0:
|
|
|
|
gen_op_eval_bn(r_dst);
|
|
|
|
break;
|
|
|
|
case 0x1:
|
2008-03-16 02:12:11 +08:00
|
|
|
gen_op_eval_fbne(r_dst, cpu_fsr, offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
break;
|
|
|
|
case 0x2:
|
2008-03-16 02:12:11 +08:00
|
|
|
gen_op_eval_fblg(r_dst, cpu_fsr, offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
break;
|
|
|
|
case 0x3:
|
2008-03-16 02:12:11 +08:00
|
|
|
gen_op_eval_fbul(r_dst, cpu_fsr, offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
break;
|
|
|
|
case 0x4:
|
2008-03-16 02:12:11 +08:00
|
|
|
gen_op_eval_fbl(r_dst, cpu_fsr, offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
break;
|
|
|
|
case 0x5:
|
2008-03-16 02:12:11 +08:00
|
|
|
gen_op_eval_fbug(r_dst, cpu_fsr, offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
break;
|
|
|
|
case 0x6:
|
2008-03-16 02:12:11 +08:00
|
|
|
gen_op_eval_fbg(r_dst, cpu_fsr, offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
break;
|
|
|
|
case 0x7:
|
2008-03-16 02:12:11 +08:00
|
|
|
gen_op_eval_fbu(r_dst, cpu_fsr, offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
break;
|
|
|
|
case 0x8:
|
|
|
|
gen_op_eval_ba(r_dst);
|
|
|
|
break;
|
|
|
|
case 0x9:
|
2008-03-16 02:12:11 +08:00
|
|
|
gen_op_eval_fbe(r_dst, cpu_fsr, offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
break;
|
|
|
|
case 0xa:
|
2008-03-16 02:12:11 +08:00
|
|
|
gen_op_eval_fbue(r_dst, cpu_fsr, offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
break;
|
|
|
|
case 0xb:
|
2008-03-16 02:12:11 +08:00
|
|
|
gen_op_eval_fbge(r_dst, cpu_fsr, offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
break;
|
|
|
|
case 0xc:
|
2008-03-16 02:12:11 +08:00
|
|
|
gen_op_eval_fbuge(r_dst, cpu_fsr, offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
break;
|
|
|
|
case 0xd:
|
2008-03-16 02:12:11 +08:00
|
|
|
gen_op_eval_fble(r_dst, cpu_fsr, offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
break;
|
|
|
|
case 0xe:
|
2008-03-16 02:12:11 +08:00
|
|
|
gen_op_eval_fbule(r_dst, cpu_fsr, offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
break;
|
|
|
|
case 0xf:
|
2008-03-16 02:12:11 +08:00
|
|
|
gen_op_eval_fbo(r_dst, cpu_fsr, offset);
|
2008-03-09 05:36:50 +08:00
|
|
|
break;
|
|
|
|
}
|
2004-10-01 05:55:55 +08:00
|
|
|
}
|
2008-03-03 02:25:27 +08:00
|
|
|
|
2008-03-09 05:36:50 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2008-03-03 02:25:27 +08:00
|
|
|
// Inverted logic
|
|
|
|
static const int gen_tcg_cond_reg[8] = {
|
|
|
|
-1,
|
|
|
|
TCG_COND_NE,
|
|
|
|
TCG_COND_GT,
|
|
|
|
TCG_COND_GE,
|
|
|
|
-1,
|
|
|
|
TCG_COND_EQ,
|
|
|
|
TCG_COND_LE,
|
|
|
|
TCG_COND_LT,
|
|
|
|
};
|
2008-03-09 05:36:50 +08:00
|
|
|
|
|
|
|
static inline void gen_cond_reg(TCGv r_dst, int cond)
|
|
|
|
{
|
|
|
|
int l1;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_movi_tl(r_dst, 0);
|
|
|
|
tcg_gen_brcond_tl(gen_tcg_cond_reg[cond], cpu_T[0], tcg_const_tl(0), l1);
|
2008-03-09 05:36:50 +08:00
|
|
|
tcg_gen_movi_tl(r_dst, 1);
|
|
|
|
gen_set_label(l1);
|
|
|
|
}
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2004-01-04 23:01:44 +08:00
|
|
|
|
2005-02-14 04:11:30 +08:00
|
|
|
/* XXX: potentially incorrect if dynamic npc */
|
2005-07-02 22:31:34 +08:00
|
|
|
static void do_branch(DisasContext * dc, int32_t offset, uint32_t insn, int cc)
|
2003-10-01 04:36:07 +08:00
|
|
|
{
|
2004-01-04 23:01:44 +08:00
|
|
|
unsigned int cond = GET_FIELD(insn, 3, 6), a = (insn & (1 << 29));
|
2005-01-31 06:39:04 +08:00
|
|
|
target_ulong target = dc->pc + offset;
|
2007-09-17 05:08:06 +08:00
|
|
|
|
2004-01-04 23:01:44 +08:00
|
|
|
if (cond == 0x0) {
|
2007-09-20 22:54:22 +08:00
|
|
|
/* unconditional not taken */
|
|
|
|
if (a) {
|
|
|
|
dc->pc = dc->npc + 4;
|
|
|
|
dc->npc = dc->pc + 4;
|
|
|
|
} else {
|
|
|
|
dc->pc = dc->npc;
|
|
|
|
dc->npc = dc->pc + 4;
|
|
|
|
}
|
2004-01-04 23:01:44 +08:00
|
|
|
} else if (cond == 0x8) {
|
2007-09-20 22:54:22 +08:00
|
|
|
/* unconditional taken */
|
|
|
|
if (a) {
|
|
|
|
dc->pc = target;
|
|
|
|
dc->npc = dc->pc + 4;
|
|
|
|
} else {
|
|
|
|
dc->pc = dc->npc;
|
|
|
|
dc->npc = target;
|
|
|
|
}
|
2004-01-04 23:01:44 +08:00
|
|
|
} else {
|
2004-02-17 04:30:05 +08:00
|
|
|
flush_T2(dc);
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_cond(cpu_T[2], cc, cond);
|
2007-09-20 22:54:22 +08:00
|
|
|
if (a) {
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_branch_a(dc, target, dc->npc, cpu_T[2]);
|
2004-01-04 23:01:44 +08:00
|
|
|
dc->is_br = 1;
|
2007-09-20 22:54:22 +08:00
|
|
|
} else {
|
2004-01-04 23:01:44 +08:00
|
|
|
dc->pc = dc->npc;
|
2004-02-17 04:30:05 +08:00
|
|
|
dc->jump_pc[0] = target;
|
|
|
|
dc->jump_pc[1] = dc->npc + 4;
|
|
|
|
dc->npc = JUMP_PC;
|
2007-09-20 22:54:22 +08:00
|
|
|
}
|
2004-01-04 23:01:44 +08:00
|
|
|
}
|
2003-10-01 04:36:07 +08:00
|
|
|
}
|
|
|
|
|
2005-02-14 04:11:30 +08:00
|
|
|
/* XXX: potentially incorrect if dynamic npc */
|
2005-07-02 22:31:34 +08:00
|
|
|
static void do_fbranch(DisasContext * dc, int32_t offset, uint32_t insn, int cc)
|
2004-10-01 05:55:55 +08:00
|
|
|
{
|
|
|
|
unsigned int cond = GET_FIELD(insn, 3, 6), a = (insn & (1 << 29));
|
2005-01-31 06:39:04 +08:00
|
|
|
target_ulong target = dc->pc + offset;
|
|
|
|
|
2004-10-01 05:55:55 +08:00
|
|
|
if (cond == 0x0) {
|
2007-09-20 22:54:22 +08:00
|
|
|
/* unconditional not taken */
|
|
|
|
if (a) {
|
|
|
|
dc->pc = dc->npc + 4;
|
|
|
|
dc->npc = dc->pc + 4;
|
|
|
|
} else {
|
|
|
|
dc->pc = dc->npc;
|
|
|
|
dc->npc = dc->pc + 4;
|
|
|
|
}
|
2004-10-01 05:55:55 +08:00
|
|
|
} else if (cond == 0x8) {
|
2007-09-20 22:54:22 +08:00
|
|
|
/* unconditional taken */
|
|
|
|
if (a) {
|
|
|
|
dc->pc = target;
|
|
|
|
dc->npc = dc->pc + 4;
|
|
|
|
} else {
|
|
|
|
dc->pc = dc->npc;
|
|
|
|
dc->npc = target;
|
|
|
|
}
|
2004-10-01 05:55:55 +08:00
|
|
|
} else {
|
|
|
|
flush_T2(dc);
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_fcond(cpu_T[2], cc, cond);
|
2007-09-20 22:54:22 +08:00
|
|
|
if (a) {
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_branch_a(dc, target, dc->npc, cpu_T[2]);
|
2004-10-01 05:55:55 +08:00
|
|
|
dc->is_br = 1;
|
2007-09-20 22:54:22 +08:00
|
|
|
} else {
|
2004-10-01 05:55:55 +08:00
|
|
|
dc->pc = dc->npc;
|
|
|
|
dc->jump_pc[0] = target;
|
|
|
|
dc->jump_pc[1] = dc->npc + 4;
|
|
|
|
dc->npc = JUMP_PC;
|
2007-09-20 22:54:22 +08:00
|
|
|
}
|
2004-10-01 05:55:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
/* XXX: potentially incorrect if dynamic npc */
|
|
|
|
static void do_branch_reg(DisasContext * dc, int32_t offset, uint32_t insn)
|
2003-10-01 04:36:07 +08:00
|
|
|
{
|
2005-07-02 22:31:34 +08:00
|
|
|
unsigned int cond = GET_FIELD_SP(insn, 25, 27), a = (insn & (1 << 29));
|
|
|
|
target_ulong target = dc->pc + offset;
|
|
|
|
|
|
|
|
flush_T2(dc);
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_cond_reg(cpu_T[2], cond);
|
2005-07-02 22:31:34 +08:00
|
|
|
if (a) {
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_branch_a(dc, target, dc->npc, cpu_T[2]);
|
2007-09-20 22:54:22 +08:00
|
|
|
dc->is_br = 1;
|
2005-07-02 22:31:34 +08:00
|
|
|
} else {
|
2007-09-20 22:54:22 +08:00
|
|
|
dc->pc = dc->npc;
|
|
|
|
dc->jump_pc[0] = target;
|
|
|
|
dc->jump_pc[1] = dc->npc + 4;
|
|
|
|
dc->npc = JUMP_PC;
|
2005-07-02 22:31:34 +08:00
|
|
|
}
|
2003-10-01 04:36:07 +08:00
|
|
|
}
|
|
|
|
|
2005-07-02 22:31:34 +08:00
|
|
|
static GenOpFunc * const gen_fcmps[4] = {
|
2008-03-05 04:00:18 +08:00
|
|
|
helper_fcmps,
|
|
|
|
helper_fcmps_fcc1,
|
|
|
|
helper_fcmps_fcc2,
|
|
|
|
helper_fcmps_fcc3,
|
2005-07-02 22:31:34 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static GenOpFunc * const gen_fcmpd[4] = {
|
2008-03-05 04:00:18 +08:00
|
|
|
helper_fcmpd,
|
|
|
|
helper_fcmpd_fcc1,
|
|
|
|
helper_fcmpd_fcc2,
|
|
|
|
helper_fcmpd_fcc3,
|
2005-07-02 22:31:34 +08:00
|
|
|
};
|
2007-04-07 04:03:29 +08:00
|
|
|
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
static GenOpFunc * const gen_fcmpq[4] = {
|
2008-03-05 04:00:18 +08:00
|
|
|
helper_fcmpq,
|
|
|
|
helper_fcmpq_fcc1,
|
|
|
|
helper_fcmpq_fcc2,
|
|
|
|
helper_fcmpq_fcc3,
|
2007-11-26 02:40:20 +08:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2007-04-07 04:03:29 +08:00
|
|
|
static GenOpFunc * const gen_fcmpes[4] = {
|
2008-03-05 04:00:18 +08:00
|
|
|
helper_fcmpes,
|
|
|
|
helper_fcmpes_fcc1,
|
|
|
|
helper_fcmpes_fcc2,
|
|
|
|
helper_fcmpes_fcc3,
|
2007-04-07 04:03:29 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static GenOpFunc * const gen_fcmped[4] = {
|
2008-03-05 04:00:18 +08:00
|
|
|
helper_fcmped,
|
|
|
|
helper_fcmped_fcc1,
|
|
|
|
helper_fcmped_fcc2,
|
|
|
|
helper_fcmped_fcc3,
|
2007-04-07 04:03:29 +08:00
|
|
|
};
|
|
|
|
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
static GenOpFunc * const gen_fcmpeq[4] = {
|
2008-03-05 04:00:18 +08:00
|
|
|
helper_fcmpeq,
|
|
|
|
helper_fcmpeq_fcc1,
|
|
|
|
helper_fcmpeq_fcc2,
|
|
|
|
helper_fcmpeq_fcc3,
|
2007-11-26 02:40:20 +08:00
|
|
|
};
|
|
|
|
#endif
|
2008-03-05 04:00:18 +08:00
|
|
|
|
|
|
|
static inline void gen_op_fcmps(int fccno)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_0_0(gen_fcmps[fccno]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_fcmpd(int fccno)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_0_0(gen_fcmpd[fccno]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
static inline void gen_op_fcmpq(int fccno)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_0_0(gen_fcmpq[fccno]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline void gen_op_fcmpes(int fccno)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_0_0(gen_fcmpes[fccno]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_fcmped(int fccno)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_0_0(gen_fcmped[fccno]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
static inline void gen_op_fcmpeq(int fccno)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_0_0(gen_fcmpeq[fccno]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
static inline void gen_op_fcmps(int fccno)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_0_0(helper_fcmps);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_fcmpd(int fccno)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_0_0(helper_fcmpd);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
static inline void gen_op_fcmpq(int fccno)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_0_0(helper_fcmpq);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline void gen_op_fcmpes(int fccno)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_0_0(helper_fcmpes);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_fcmped(int fccno)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_0_0(helper_fcmped);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
static inline void gen_op_fcmpeq(int fccno)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_0_0(helper_fcmpeq);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
|
|
|
|
2008-03-07 04:09:54 +08:00
|
|
|
static inline void gen_op_fpexception_im(int fsr_flags)
|
|
|
|
{
|
2008-03-16 02:12:11 +08:00
|
|
|
tcg_gen_andi_tl(cpu_fsr, cpu_fsr, ~FSR_FTT_MASK);
|
|
|
|
tcg_gen_ori_tl(cpu_fsr, cpu_fsr, fsr_flags);
|
2008-03-07 04:09:54 +08:00
|
|
|
gen_op_exception(TT_FP_EXCP);
|
|
|
|
}
|
|
|
|
|
2006-06-27 03:53:29 +08:00
|
|
|
static int gen_trap_ifnofpu(DisasContext * dc)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
if (!dc->fpu_enabled) {
|
|
|
|
save_state(dc);
|
|
|
|
gen_op_exception(TT_NFPU_INSN);
|
|
|
|
dc->is_br = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-03-05 04:00:18 +08:00
|
|
|
static inline void gen_op_clear_ieee_excp_and_FTT(void)
|
|
|
|
{
|
2008-03-16 02:12:11 +08:00
|
|
|
tcg_gen_andi_tl(cpu_fsr, cpu_fsr, ~(FSR_FTT_MASK | FSR_CEXC_MASK));
|
2008-03-05 04:00:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_clear_float_exceptions(void)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_0_0(helper_clear_float_exceptions);
|
|
|
|
}
|
|
|
|
|
2008-03-22 02:08:59 +08:00
|
|
|
static inline void gen_check_align(TCGv r_addr, int align)
|
|
|
|
{
|
|
|
|
tcg_gen_helper_0_2(helper_check_align, r_addr, tcg_const_i32(align));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_check_align_T0_1(void)
|
|
|
|
{
|
|
|
|
gen_check_align(cpu_T[0], 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_check_align_T0_3(void)
|
|
|
|
{
|
|
|
|
gen_check_align(cpu_T[0], 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_op_check_align_T0_7(void)
|
|
|
|
{
|
|
|
|
gen_check_align(cpu_T[0], 7);
|
|
|
|
}
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
/* asi moves */
|
|
|
|
#ifdef TARGET_SPARC64
|
2008-03-17 03:18:54 +08:00
|
|
|
static inline TCGv gen_get_asi(int insn, TCGv r_addr)
|
2008-02-24 22:10:06 +08:00
|
|
|
{
|
|
|
|
int asi, offset;
|
2008-03-17 03:18:54 +08:00
|
|
|
TCGv r_asi;
|
2008-02-24 22:10:06 +08:00
|
|
|
|
|
|
|
if (IS_IMM) {
|
2008-03-17 03:18:54 +08:00
|
|
|
r_asi = tcg_temp_new(TCG_TYPE_I32);
|
2008-02-24 22:10:06 +08:00
|
|
|
offset = GET_FIELD(insn, 25, 31);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_addi_tl(r_addr, r_addr, offset);
|
|
|
|
tcg_gen_ld_i32(r_asi, cpu_env, offsetof(CPUSPARCState, asi));
|
2008-02-24 22:10:06 +08:00
|
|
|
} else {
|
|
|
|
asi = GET_FIELD(insn, 19, 26);
|
2008-03-17 03:18:54 +08:00
|
|
|
r_asi = tcg_const_i32(asi);
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
2008-03-17 03:18:54 +08:00
|
|
|
return r_asi;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_ld_asi(int insn, int size, int sign)
|
|
|
|
{
|
|
|
|
TCGv r_asi;
|
|
|
|
|
|
|
|
r_asi = gen_get_asi(insn, cpu_T[0]);
|
|
|
|
tcg_gen_helper_1_4(helper_ld_asi, cpu_T[1], cpu_T[0], r_asi,
|
|
|
|
tcg_const_i32(size), tcg_const_i32(sign));
|
|
|
|
tcg_gen_discard_i32(r_asi);
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_st_asi(int insn, int size)
|
|
|
|
{
|
2008-03-17 03:18:54 +08:00
|
|
|
TCGv r_asi;
|
2008-02-24 22:10:06 +08:00
|
|
|
|
2008-03-17 03:18:54 +08:00
|
|
|
r_asi = gen_get_asi(insn, cpu_T[0]);
|
|
|
|
tcg_gen_helper_0_4(helper_st_asi, cpu_T[0], cpu_T[1], r_asi,
|
|
|
|
tcg_const_i32(size));
|
|
|
|
tcg_gen_discard_i32(r_asi);
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_ldf_asi(int insn, int size, int rd)
|
|
|
|
{
|
2008-03-17 03:18:54 +08:00
|
|
|
TCGv r_asi;
|
2008-02-24 22:10:06 +08:00
|
|
|
|
2008-03-17 03:18:54 +08:00
|
|
|
r_asi = gen_get_asi(insn, cpu_T[0]);
|
|
|
|
tcg_gen_helper_0_4(helper_ldf_asi, cpu_T[0], r_asi, tcg_const_i32(size),
|
|
|
|
tcg_const_i32(rd));
|
|
|
|
tcg_gen_discard_i32(r_asi);
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_stf_asi(int insn, int size, int rd)
|
|
|
|
{
|
2008-03-17 03:18:54 +08:00
|
|
|
TCGv r_asi;
|
2008-02-24 22:10:06 +08:00
|
|
|
|
2008-03-17 03:18:54 +08:00
|
|
|
r_asi = gen_get_asi(insn, cpu_T[0]);
|
|
|
|
tcg_gen_helper_0_4(helper_stf_asi, cpu_T[0], r_asi, tcg_const_i32(size),
|
|
|
|
tcg_const_i32(rd));
|
|
|
|
tcg_gen_discard_i32(r_asi);
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_swap_asi(int insn)
|
|
|
|
{
|
2008-03-17 03:18:54 +08:00
|
|
|
TCGv r_temp, r_asi;
|
2008-02-24 22:10:06 +08:00
|
|
|
|
|
|
|
r_temp = tcg_temp_new(TCG_TYPE_I32);
|
2008-03-17 03:18:54 +08:00
|
|
|
r_asi = gen_get_asi(insn, cpu_T[0]);
|
|
|
|
tcg_gen_helper_1_4(helper_ld_asi, r_temp, cpu_T[0], r_asi,
|
|
|
|
tcg_const_i32(4), tcg_const_i32(0));
|
|
|
|
tcg_gen_helper_0_4(helper_st_asi, cpu_T[0], r_temp, r_asi,
|
|
|
|
tcg_const_i32(4));
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_extu_i32_tl(cpu_T[1], r_temp);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_i32(r_asi);
|
|
|
|
tcg_gen_discard_i32(r_temp);
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_ldda_asi(int insn)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
TCGv r_asi;
|
2008-02-24 22:10:06 +08:00
|
|
|
|
2008-03-17 03:18:54 +08:00
|
|
|
r_asi = gen_get_asi(insn, cpu_T[0]);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_helper_1_4(helper_ld_asi, cpu_tmp64, cpu_T[0], r_asi,
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_const_i32(8), tcg_const_i32(0));
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_andi_i64(cpu_T[0], cpu_tmp64, 0xffffffffULL);
|
|
|
|
tcg_gen_shri_i64(cpu_tmp64, cpu_tmp64, 32);
|
|
|
|
tcg_gen_andi_i64(cpu_T[1], cpu_tmp64, 0xffffffffULL);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_i32(r_asi);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_stda_asi(int insn, int rd)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
TCGv r_temp, r_asi;
|
2008-03-17 03:18:54 +08:00
|
|
|
|
|
|
|
r_temp = tcg_temp_new(TCG_TYPE_I32);
|
|
|
|
gen_movl_reg_TN(rd + 1, r_temp);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_helper_1_2(helper_pack64, cpu_tmp64, cpu_T[1],
|
2008-03-17 03:18:54 +08:00
|
|
|
r_temp);
|
|
|
|
r_asi = gen_get_asi(insn, cpu_T[0]);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_helper_0_4(helper_st_asi, cpu_T[0], cpu_tmp64, r_asi,
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_const_i32(8));
|
|
|
|
tcg_gen_discard_i32(r_asi);
|
|
|
|
tcg_gen_discard_i32(r_temp);
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_cas_asi(int insn, int rd)
|
|
|
|
{
|
|
|
|
TCGv r_val1, r_asi;
|
|
|
|
|
|
|
|
r_val1 = tcg_temp_new(TCG_TYPE_I32);
|
|
|
|
gen_movl_reg_TN(rd, r_val1);
|
2008-03-17 03:18:54 +08:00
|
|
|
r_asi = gen_get_asi(insn, cpu_T[0]);
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_helper_1_4(helper_cas_asi, cpu_T[1], cpu_T[0], r_val1, cpu_T[1],
|
|
|
|
r_asi);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_i32(r_asi);
|
|
|
|
tcg_gen_discard_i32(r_val1);
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_casx_asi(int insn, int rd)
|
|
|
|
{
|
2008-03-22 16:40:28 +08:00
|
|
|
TCGv r_asi;
|
2008-02-24 22:10:06 +08:00
|
|
|
|
2008-03-22 16:40:28 +08:00
|
|
|
gen_movl_reg_TN(rd, cpu_tmp64);
|
2008-03-17 03:18:54 +08:00
|
|
|
r_asi = gen_get_asi(insn, cpu_T[0]);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_helper_1_4(helper_casx_asi, cpu_T[1], cpu_T[0], cpu_tmp64, cpu_T[1],
|
2008-02-24 22:10:06 +08:00
|
|
|
r_asi);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_i32(r_asi);
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#elif !defined(CONFIG_USER_ONLY)
|
|
|
|
|
|
|
|
static inline void gen_ld_asi(int insn, int size, int sign)
|
|
|
|
{
|
|
|
|
int asi;
|
|
|
|
|
|
|
|
asi = GET_FIELD(insn, 19, 26);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_helper_1_4(helper_ld_asi, cpu_tmp64, cpu_T[0], tcg_const_i32(asi),
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_const_i32(size), tcg_const_i32(sign));
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_trunc_i64_tl(cpu_T[1], cpu_tmp64);
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_st_asi(int insn, int size)
|
|
|
|
{
|
|
|
|
int asi;
|
|
|
|
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_extu_tl_i64(cpu_tmp64, cpu_T[1]);
|
2008-02-24 22:10:06 +08:00
|
|
|
asi = GET_FIELD(insn, 19, 26);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_helper_0_4(helper_st_asi, cpu_T[0], cpu_tmp64, tcg_const_i32(asi),
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_const_i32(size));
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_swap_asi(int insn)
|
|
|
|
{
|
|
|
|
int asi;
|
2008-03-17 03:18:54 +08:00
|
|
|
TCGv r_temp;
|
2008-02-24 22:10:06 +08:00
|
|
|
|
|
|
|
r_temp = tcg_temp_new(TCG_TYPE_I32);
|
|
|
|
asi = GET_FIELD(insn, 19, 26);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_helper_1_4(helper_ld_asi, r_temp, cpu_T[0], tcg_const_i32(asi),
|
|
|
|
tcg_const_i32(4), tcg_const_i32(0));
|
|
|
|
tcg_gen_helper_0_4(helper_st_asi, cpu_T[0], cpu_T[1], tcg_const_i32(asi),
|
|
|
|
tcg_const_i32(4));
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_extu_i32_tl(cpu_T[1], r_temp);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_i32(r_temp);
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_ldda_asi(int insn)
|
|
|
|
{
|
|
|
|
int asi;
|
|
|
|
|
|
|
|
asi = GET_FIELD(insn, 19, 26);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_helper_1_4(helper_ld_asi, cpu_tmp64, cpu_T[0], tcg_const_i32(asi),
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_const_i32(8), tcg_const_i32(0));
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_trunc_i64_tl(cpu_T[0], cpu_tmp64);
|
|
|
|
tcg_gen_shri_i64(cpu_tmp64, cpu_tmp64, 32);
|
|
|
|
tcg_gen_trunc_i64_tl(cpu_T[1], cpu_tmp64);
|
2008-03-17 03:18:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_stda_asi(int insn, int rd)
|
|
|
|
{
|
|
|
|
int asi;
|
2008-03-22 16:40:28 +08:00
|
|
|
TCGv r_temp;
|
2008-03-17 03:18:54 +08:00
|
|
|
|
|
|
|
r_temp = tcg_temp_new(TCG_TYPE_I32);
|
|
|
|
gen_movl_reg_TN(rd + 1, r_temp);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_helper_1_2(helper_pack64, cpu_tmp64, cpu_T[1], r_temp);
|
2008-03-17 03:18:54 +08:00
|
|
|
asi = GET_FIELD(insn, 19, 26);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_helper_0_4(helper_st_asi, cpu_T[0], cpu_tmp64, tcg_const_i32(asi),
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_const_i32(8));
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(CONFIG_USER_ONLY) || defined(TARGET_SPARC64)
|
|
|
|
static inline void gen_ldstub_asi(int insn)
|
|
|
|
{
|
|
|
|
int asi;
|
|
|
|
|
|
|
|
gen_ld_asi(insn, 1, 0);
|
|
|
|
|
|
|
|
asi = GET_FIELD(insn, 19, 26);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_helper_0_4(helper_st_asi, cpu_T[0], tcg_const_i64(0xffULL),
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_const_i32(asi), tcg_const_i32(1));
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-02-14 04:11:30 +08:00
|
|
|
/* before an instruction, dc->pc must be static */
|
2004-01-04 23:01:44 +08:00
|
|
|
static void disas_sparc_insn(DisasContext * dc)
|
|
|
|
{
|
|
|
|
unsigned int insn, opc, rs1, rs2, rd;
|
2003-10-01 04:36:07 +08:00
|
|
|
|
2005-01-04 07:43:32 +08:00
|
|
|
insn = ldl_code(dc->pc);
|
2004-01-04 23:01:44 +08:00
|
|
|
opc = GET_FIELD(insn, 0, 1);
|
2003-10-01 04:36:07 +08:00
|
|
|
|
2004-01-04 23:01:44 +08:00
|
|
|
rd = GET_FIELD(insn, 2, 6);
|
|
|
|
switch (opc) {
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0: /* branches/sethi */
|
|
|
|
{
|
|
|
|
unsigned int xop = GET_FIELD(insn, 7, 9);
|
|
|
|
int32_t target;
|
|
|
|
switch (xop) {
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x1: /* V9 BPcc */
|
|
|
|
{
|
|
|
|
int cc;
|
|
|
|
|
|
|
|
target = GET_FIELD_SP(insn, 0, 18);
|
|
|
|
target = sign_extend(target, 18);
|
|
|
|
target <<= 2;
|
|
|
|
cc = GET_FIELD_SP(insn, 20, 21);
|
|
|
|
if (cc == 0)
|
|
|
|
do_branch(dc, target, insn, 0);
|
|
|
|
else if (cc == 2)
|
|
|
|
do_branch(dc, target, insn, 1);
|
|
|
|
else
|
|
|
|
goto illegal_insn;
|
|
|
|
goto jmp_insn;
|
|
|
|
}
|
|
|
|
case 0x3: /* V9 BPr */
|
|
|
|
{
|
|
|
|
target = GET_FIELD_SP(insn, 0, 13) |
|
2006-06-24 05:01:56 +08:00
|
|
|
(GET_FIELD_SP(insn, 20, 21) << 14);
|
2007-09-20 22:54:22 +08:00
|
|
|
target = sign_extend(target, 16);
|
|
|
|
target <<= 2;
|
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
|
|
|
gen_movl_reg_T0(rs1);
|
|
|
|
do_branch_reg(dc, target, insn);
|
|
|
|
goto jmp_insn;
|
|
|
|
}
|
|
|
|
case 0x5: /* V9 FBPcc */
|
|
|
|
{
|
|
|
|
int cc = GET_FIELD_SP(insn, 20, 21);
|
2006-06-27 03:53:29 +08:00
|
|
|
if (gen_trap_ifnofpu(dc))
|
|
|
|
goto jmp_insn;
|
2007-09-20 22:54:22 +08:00
|
|
|
target = GET_FIELD_SP(insn, 0, 18);
|
|
|
|
target = sign_extend(target, 19);
|
|
|
|
target <<= 2;
|
|
|
|
do_fbranch(dc, target, insn, cc);
|
|
|
|
goto jmp_insn;
|
|
|
|
}
|
2007-04-06 02:09:15 +08:00
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x7: /* CBN+x */
|
|
|
|
{
|
|
|
|
goto ncp_insn;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
case 0x2: /* BN+x */
|
|
|
|
{
|
|
|
|
target = GET_FIELD(insn, 10, 31);
|
|
|
|
target = sign_extend(target, 22);
|
|
|
|
target <<= 2;
|
|
|
|
do_branch(dc, target, insn, 0);
|
|
|
|
goto jmp_insn;
|
|
|
|
}
|
|
|
|
case 0x6: /* FBN+x */
|
|
|
|
{
|
2006-06-27 03:53:29 +08:00
|
|
|
if (gen_trap_ifnofpu(dc))
|
|
|
|
goto jmp_insn;
|
2007-09-20 22:54:22 +08:00
|
|
|
target = GET_FIELD(insn, 10, 31);
|
|
|
|
target = sign_extend(target, 22);
|
|
|
|
target <<= 2;
|
|
|
|
do_fbranch(dc, target, insn, 0);
|
|
|
|
goto jmp_insn;
|
|
|
|
}
|
|
|
|
case 0x4: /* SETHI */
|
2004-12-20 07:18:01 +08:00
|
|
|
#define OPTIM
|
|
|
|
#if defined(OPTIM)
|
2007-09-20 22:54:22 +08:00
|
|
|
if (rd) { // nop
|
2004-12-20 07:18:01 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
uint32_t value = GET_FIELD(insn, 10, 31);
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_movi_tl(cpu_T[0], value << 10);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
2004-12-20 07:18:01 +08:00
|
|
|
#if defined(OPTIM)
|
2007-09-20 22:54:22 +08:00
|
|
|
}
|
2004-12-20 07:18:01 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x0: /* UNIMPL */
|
|
|
|
default:
|
2005-07-02 22:31:34 +08:00
|
|
|
goto illegal_insn;
|
2007-09-20 22:54:22 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2004-01-04 23:01:44 +08:00
|
|
|
case 1:
|
2007-09-20 22:54:22 +08:00
|
|
|
/*CALL*/ {
|
|
|
|
target_long target = GET_FIELDs(insn, 2, 31) << 2;
|
2004-01-04 23:01:44 +08:00
|
|
|
|
2008-03-17 03:23:31 +08:00
|
|
|
gen_movl_TN_reg(15, tcg_const_tl(dc->pc));
|
2007-09-20 22:54:22 +08:00
|
|
|
target += dc->pc;
|
2005-02-14 04:11:30 +08:00
|
|
|
gen_mov_pc_npc(dc);
|
2007-09-20 22:54:22 +08:00
|
|
|
dc->npc = target;
|
|
|
|
}
|
|
|
|
goto jmp_insn;
|
|
|
|
case 2: /* FPU & Logical Operations */
|
|
|
|
{
|
|
|
|
unsigned int xop = GET_FIELD(insn, 7, 12);
|
|
|
|
if (xop == 0x3a) { /* generate trap */
|
2004-01-04 23:01:44 +08:00
|
|
|
int cond;
|
2005-07-02 22:31:34 +08:00
|
|
|
|
2004-01-04 23:01:44 +08:00
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
|
|
|
gen_movl_reg_T0(rs1);
|
2007-09-20 22:54:22 +08:00
|
|
|
if (IS_IMM) {
|
|
|
|
rs2 = GET_FIELD(insn, 25, 31);
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_addi_tl(cpu_T[0], cpu_T[0], rs2);
|
2004-01-04 23:01:44 +08:00
|
|
|
} else {
|
|
|
|
rs2 = GET_FIELD(insn, 27, 31);
|
2004-12-20 07:18:01 +08:00
|
|
|
#if defined(OPTIM)
|
2007-09-20 22:54:22 +08:00
|
|
|
if (rs2 != 0) {
|
2004-12-20 07:18:01 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_reg_T1(rs2);
|
|
|
|
gen_op_add_T1_T0();
|
2004-12-20 07:18:01 +08:00
|
|
|
#if defined(OPTIM)
|
2007-09-20 22:54:22 +08:00
|
|
|
}
|
2004-12-20 07:18:01 +08:00
|
|
|
#endif
|
2004-01-04 23:01:44 +08:00
|
|
|
}
|
|
|
|
cond = GET_FIELD(insn, 3, 6);
|
|
|
|
if (cond == 0x8) {
|
2006-06-27 03:53:29 +08:00
|
|
|
save_state(dc);
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_helper_0_1(helper_trap, cpu_T[0]);
|
2005-01-31 06:39:04 +08:00
|
|
|
} else if (cond != 0) {
|
2008-03-15 05:09:15 +08:00
|
|
|
TCGv r_cond = tcg_temp_new(TCG_TYPE_TL);
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
/* V9 icc/xcc */
|
|
|
|
int cc = GET_FIELD_SP(insn, 11, 12);
|
2008-03-15 05:09:15 +08:00
|
|
|
|
2006-06-27 03:53:29 +08:00
|
|
|
save_state(dc);
|
2007-09-20 22:54:22 +08:00
|
|
|
if (cc == 0)
|
2008-03-15 05:09:15 +08:00
|
|
|
gen_cond(r_cond, 0, cond);
|
2007-09-20 22:54:22 +08:00
|
|
|
else if (cc == 2)
|
2008-03-15 05:09:15 +08:00
|
|
|
gen_cond(r_cond, 1, cond);
|
2007-09-20 22:54:22 +08:00
|
|
|
else
|
|
|
|
goto illegal_insn;
|
2005-07-02 22:31:34 +08:00
|
|
|
#else
|
2006-06-27 03:53:29 +08:00
|
|
|
save_state(dc);
|
2008-03-15 05:09:15 +08:00
|
|
|
gen_cond(r_cond, 0, cond);
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2008-03-15 05:09:15 +08:00
|
|
|
tcg_gen_helper_0_2(helper_trapcc, cpu_T[0], r_cond);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_tl(r_cond);
|
2004-01-04 23:01:44 +08:00
|
|
|
}
|
2006-06-27 03:53:29 +08:00
|
|
|
gen_op_next_insn();
|
2008-02-01 18:50:11 +08:00
|
|
|
tcg_gen_exit_tb(0);
|
2006-06-27 03:53:29 +08:00
|
|
|
dc->is_br = 1;
|
|
|
|
goto jmp_insn;
|
2004-01-04 23:01:44 +08:00
|
|
|
} else if (xop == 0x28) {
|
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
|
|
|
switch(rs1) {
|
|
|
|
case 0: /* rdy */
|
2007-04-01 23:05:09 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
|
|
|
case 0x01 ... 0x0e: /* undefined in the SPARCv8
|
|
|
|
manual, rdy on the microSPARC
|
|
|
|
II */
|
|
|
|
case 0x0f: /* stbar in the SPARCv8 manual,
|
|
|
|
rdy on the microSPARC II */
|
|
|
|
case 0x10 ... 0x1f: /* implementation-dependent in the
|
|
|
|
SPARCv8 manual, rdy on the
|
|
|
|
microSPARC II */
|
|
|
|
#endif
|
|
|
|
gen_op_movtl_T0_env(offsetof(CPUSPARCState, y));
|
2004-01-04 23:01:44 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x2: /* V9 rdccr */
|
2008-03-19 02:08:25 +08:00
|
|
|
tcg_gen_helper_1_0(helper_rdccr, cpu_T[0]);
|
2005-07-02 22:31:34 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x3: /* V9 rdasi */
|
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, asi));
|
2005-07-02 22:31:34 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x4: /* V9 rdtick */
|
2008-03-03 02:28:06 +08:00
|
|
|
{
|
|
|
|
TCGv r_tickptr;
|
|
|
|
|
|
|
|
r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tickptr, cpu_env,
|
|
|
|
offsetof(CPUState, tick));
|
|
|
|
tcg_gen_helper_1_1(helper_tick_get_count, cpu_T[0],
|
|
|
|
r_tickptr);
|
|
|
|
gen_movl_T0_reg(rd);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tickptr);
|
2008-03-03 02:28:06 +08:00
|
|
|
}
|
2005-07-02 22:31:34 +08:00
|
|
|
break;
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x5: /* V9 rdpc */
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_movi_tl(cpu_T[0], dc->pc);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
|
|
|
case 0x6: /* V9 rdfprs */
|
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, fprs));
|
2005-07-02 22:31:34 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2007-04-01 23:05:09 +08:00
|
|
|
case 0xf: /* V9 membar */
|
|
|
|
break; /* no effect */
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x13: /* Graphics Status */
|
2006-07-19 05:12:17 +08:00
|
|
|
if (gen_trap_ifnofpu(dc))
|
|
|
|
goto jmp_insn;
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_movtl_T0_env(offsetof(CPUSPARCState, gsr));
|
2006-07-19 05:12:17 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x17: /* Tick compare */
|
|
|
|
gen_op_movtl_T0_env(offsetof(CPUSPARCState, tick_cmpr));
|
2005-07-23 22:27:54 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x18: /* System tick */
|
2008-03-03 02:28:06 +08:00
|
|
|
{
|
|
|
|
TCGv r_tickptr;
|
|
|
|
|
|
|
|
r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tickptr, cpu_env,
|
|
|
|
offsetof(CPUState, stick));
|
|
|
|
tcg_gen_helper_1_1(helper_tick_get_count, cpu_T[0],
|
|
|
|
r_tickptr);
|
|
|
|
gen_movl_T0_reg(rd);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tickptr);
|
2008-03-03 02:28:06 +08:00
|
|
|
}
|
2005-07-23 22:27:54 +08:00
|
|
|
break;
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x19: /* System tick compare */
|
|
|
|
gen_op_movtl_T0_env(offsetof(CPUSPARCState, stick_cmpr));
|
2005-07-23 22:27:54 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x10: /* Performance Control */
|
|
|
|
case 0x11: /* Performance Instrumentation Counter */
|
|
|
|
case 0x12: /* Dispatch Control */
|
|
|
|
case 0x14: /* Softint set, WO */
|
|
|
|
case 0x15: /* Softint clear, WO */
|
|
|
|
case 0x16: /* Softint write */
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
|
|
|
default:
|
2004-01-04 23:01:44 +08:00
|
|
|
goto illegal_insn;
|
|
|
|
}
|
2004-10-01 05:55:55 +08:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2007-04-23 03:14:52 +08:00
|
|
|
} else if (xop == 0x29) { /* rdpsr / UA2005 rdhpr */
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_helper_1_0(helper_rdpsr, cpu_T[0]);
|
2007-04-23 03:14:52 +08:00
|
|
|
#else
|
|
|
|
if (!hypervisor(dc))
|
|
|
|
goto priv_insn;
|
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
|
|
|
switch (rs1) {
|
|
|
|
case 0: // hpstate
|
|
|
|
// gen_op_rdhpstate();
|
|
|
|
break;
|
|
|
|
case 1: // htstate
|
|
|
|
// gen_op_rdhtstate();
|
|
|
|
break;
|
|
|
|
case 3: // hintp
|
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, hintp));
|
|
|
|
break;
|
|
|
|
case 5: // htba
|
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, htba));
|
|
|
|
break;
|
|
|
|
case 6: // hver
|
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, hver));
|
|
|
|
break;
|
|
|
|
case 31: // hstick_cmpr
|
|
|
|
gen_op_movl_env_T0(offsetof(CPUSPARCState, hstick_cmpr));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
|
|
|
#endif
|
2004-10-01 05:55:55 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2005-07-02 22:31:34 +08:00
|
|
|
} else if (xop == 0x2a) { /* rdwim / V9 rdpr */
|
2007-09-20 22:54:22 +08:00
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
2007-09-20 22:54:22 +08:00
|
|
|
switch (rs1) {
|
|
|
|
case 0: // tpc
|
2008-03-06 01:59:48 +08:00
|
|
|
{
|
|
|
|
TCGv r_tsptr;
|
|
|
|
|
|
|
|
r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tsptr, cpu_env,
|
|
|
|
offsetof(CPUState, tsptr));
|
|
|
|
tcg_gen_ld_tl(cpu_T[0], r_tsptr,
|
|
|
|
offsetof(trap_state, tpc));
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tsptr);
|
2008-03-06 01:59:48 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 1: // tnpc
|
2008-03-06 01:59:48 +08:00
|
|
|
{
|
|
|
|
TCGv r_tsptr;
|
|
|
|
|
|
|
|
r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tsptr, cpu_env,
|
|
|
|
offsetof(CPUState, tsptr));
|
|
|
|
tcg_gen_ld_tl(cpu_T[0], r_tsptr,
|
|
|
|
offsetof(trap_state, tnpc));
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tsptr);
|
2008-03-06 01:59:48 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 2: // tstate
|
2008-03-06 01:59:48 +08:00
|
|
|
{
|
|
|
|
TCGv r_tsptr;
|
|
|
|
|
|
|
|
r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tsptr, cpu_env,
|
|
|
|
offsetof(CPUState, tsptr));
|
|
|
|
tcg_gen_ld_tl(cpu_T[0], r_tsptr,
|
|
|
|
offsetof(trap_state, tstate));
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tsptr);
|
2008-03-06 01:59:48 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 3: // tt
|
2008-03-06 01:59:48 +08:00
|
|
|
{
|
|
|
|
TCGv r_tsptr;
|
|
|
|
|
|
|
|
r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tsptr, cpu_env,
|
|
|
|
offsetof(CPUState, tsptr));
|
|
|
|
tcg_gen_ld_i32(cpu_T[0], r_tsptr,
|
|
|
|
offsetof(trap_state, tt));
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tsptr);
|
2008-03-06 01:59:48 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 4: // tick
|
2008-03-03 02:28:06 +08:00
|
|
|
{
|
|
|
|
TCGv r_tickptr;
|
|
|
|
|
|
|
|
r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tickptr, cpu_env,
|
|
|
|
offsetof(CPUState, tick));
|
|
|
|
tcg_gen_helper_1_1(helper_tick_get_count, cpu_T[0],
|
|
|
|
r_tickptr);
|
|
|
|
gen_movl_T0_reg(rd);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tickptr);
|
2008-03-03 02:28:06 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 5: // tba
|
|
|
|
gen_op_movtl_T0_env(offsetof(CPUSPARCState, tbr));
|
|
|
|
break;
|
|
|
|
case 6: // pstate
|
2008-02-24 22:10:06 +08:00
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, pstate));
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 7: // tl
|
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, tl));
|
|
|
|
break;
|
|
|
|
case 8: // pil
|
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, psrpil));
|
|
|
|
break;
|
|
|
|
case 9: // cwp
|
2008-03-19 02:08:25 +08:00
|
|
|
tcg_gen_helper_1_0(helper_rdcwp, cpu_T[0]);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 10: // cansave
|
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, cansave));
|
|
|
|
break;
|
|
|
|
case 11: // canrestore
|
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, canrestore));
|
|
|
|
break;
|
|
|
|
case 12: // cleanwin
|
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, cleanwin));
|
|
|
|
break;
|
|
|
|
case 13: // otherwin
|
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, otherwin));
|
|
|
|
break;
|
|
|
|
case 14: // wstate
|
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, wstate));
|
|
|
|
break;
|
2007-04-23 03:14:52 +08:00
|
|
|
case 16: // UA2005 gl
|
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, gl));
|
|
|
|
break;
|
|
|
|
case 26: // UA2005 strand status
|
|
|
|
if (!hypervisor(dc))
|
|
|
|
goto priv_insn;
|
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, ssr));
|
|
|
|
break;
|
2007-09-20 22:54:22 +08:00
|
|
|
case 31: // ver
|
|
|
|
gen_op_movtl_T0_env(offsetof(CPUSPARCState, version));
|
|
|
|
break;
|
|
|
|
case 15: // fq
|
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
2005-07-02 22:31:34 +08:00
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_movl_T0_env(offsetof(CPUSPARCState, wim));
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2004-10-01 05:55:55 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2005-07-02 22:31:34 +08:00
|
|
|
} else if (xop == 0x2b) { /* rdtbr / V9 flushw */
|
|
|
|
#ifdef TARGET_SPARC64
|
2008-03-22 01:57:29 +08:00
|
|
|
tcg_gen_helper_0_0(helper_flushw);
|
2005-07-02 22:31:34 +08:00
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
|
|
|
gen_op_movtl_T0_env(offsetof(CPUSPARCState, tbr));
|
2004-10-01 05:55:55 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2004-10-01 05:55:55 +08:00
|
|
|
break;
|
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
} else if (xop == 0x34) { /* FPU Operations */
|
2006-06-27 03:53:29 +08:00
|
|
|
if (gen_trap_ifnofpu(dc))
|
|
|
|
goto jmp_insn;
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_clear_ieee_excp_and_FTT();
|
2004-10-01 05:55:55 +08:00
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
2007-09-20 22:54:22 +08:00
|
|
|
rs2 = GET_FIELD(insn, 27, 31);
|
|
|
|
xop = GET_FIELD(insn, 18, 26);
|
|
|
|
switch (xop) {
|
|
|
|
case 0x1: /* fmovs */
|
|
|
|
gen_op_load_fpr_FT0(rs2);
|
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x5: /* fnegs */
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fnegs);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x9: /* fabss */
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fabss);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x29: /* fsqrts */
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
|
|
|
tcg_gen_helper_0_0(helper_fsqrts);
|
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x2a: /* fsqrtd */
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
|
|
|
tcg_gen_helper_0_0(helper_fsqrtd);
|
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
|
|
|
case 0x2b: /* fsqrtq */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_QT1(QFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
|
|
|
tcg_gen_helper_0_0(helper_fsqrtq);
|
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_QT0_fpr(QFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x41:
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fadds);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x42:
|
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_faddd);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
|
|
|
case 0x43: /* faddq */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_QT0(QFPREG(rs1));
|
|
|
|
gen_op_load_fpr_QT1(QFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_faddq);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_QT0_fpr(QFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x45:
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fsubs);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x46:
|
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fsubd);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
|
|
|
case 0x47: /* fsubq */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_QT0(QFPREG(rs1));
|
|
|
|
gen_op_load_fpr_QT1(QFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fsubq);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_QT0_fpr(QFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x49:
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fmuls);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x4a:
|
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fmuld);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x4b: /* fmulq */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_QT0(QFPREG(rs1));
|
|
|
|
gen_op_load_fpr_QT1(QFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fmulq);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_QT0_fpr(QFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x4d:
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fdivs);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x4e:
|
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fdivd);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
|
|
|
case 0x4f: /* fdivq */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_QT0(QFPREG(rs1));
|
|
|
|
gen_op_load_fpr_QT1(QFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fdivq);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_QT0_fpr(QFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x69:
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fsmuld);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
|
|
|
case 0x6e: /* fdmulq */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fdmulq);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_QT0_fpr(QFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0xc4:
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fitos);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0xc6:
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fdtos);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0xc7: /* fqtos */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_QT1(QFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fqtos);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0xc8:
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fitod);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
|
|
|
case 0xc9:
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fstod);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
|
|
|
case 0xcb: /* fqtod */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_QT1(QFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fqtod);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0xcc: /* fitoq */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fitoq);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_QT0_fpr(QFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0xcd: /* fstoq */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fstoq);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_QT0_fpr(QFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0xce: /* fdtoq */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fdtoq);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_QT0_fpr(QFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0xd1:
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fstoi);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0xd2:
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fdtoi);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0xd3: /* fqtoi */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_QT1(QFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fqtoi);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x2: /* V9 fmovd */
|
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs2));
|
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
2007-11-26 02:40:20 +08:00
|
|
|
case 0x3: /* V9 fmovq */
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_QT0(QFPREG(rs2));
|
|
|
|
gen_op_store_QT0_fpr(QFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
|
|
|
goto nfpu_insn;
|
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x6: /* V9 fnegd */
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fnegd);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
2007-11-26 02:40:20 +08:00
|
|
|
case 0x7: /* V9 fnegq */
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_QT1(QFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fnegq);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_QT0_fpr(QFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
|
|
|
goto nfpu_insn;
|
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0xa: /* V9 fabsd */
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fabsd);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
2007-11-26 02:40:20 +08:00
|
|
|
case 0xb: /* V9 fabsq */
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_QT1(QFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fabsq);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_QT0_fpr(QFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
|
|
|
goto nfpu_insn;
|
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x81: /* V9 fstox */
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fstox);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
|
|
|
case 0x82: /* V9 fdtox */
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fdtox);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
2007-11-26 02:40:20 +08:00
|
|
|
case 0x83: /* V9 fqtox */
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_QT1(QFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fqtox);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
|
|
|
goto nfpu_insn;
|
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x84: /* V9 fxtos */
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fxtos);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x88: /* V9 fxtod */
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fxtod);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
|
|
|
case 0x8c: /* V9 fxtoq */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_clear_float_exceptions();
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fxtoq);
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_check_ieee_exceptions);
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_QT0_fpr(QFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
|
|
|
} else if (xop == 0x35) { /* FPU Operations */
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
int cond;
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2006-06-27 03:53:29 +08:00
|
|
|
if (gen_trap_ifnofpu(dc))
|
|
|
|
goto jmp_insn;
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_clear_ieee_excp_and_FTT();
|
2004-01-04 23:01:44 +08:00
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
2007-09-20 22:54:22 +08:00
|
|
|
rs2 = GET_FIELD(insn, 27, 31);
|
|
|
|
xop = GET_FIELD(insn, 18, 26);
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
if ((xop & 0x11f) == 0x005) { // V9 fmovsr
|
2008-03-05 03:56:06 +08:00
|
|
|
int l1;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
2007-09-20 22:54:22 +08:00
|
|
|
cond = GET_FIELD_SP(insn, 14, 17);
|
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
|
|
|
gen_movl_reg_T0(rs1);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_brcond_tl(gen_tcg_cond_reg[cond], cpu_T[0],
|
|
|
|
tcg_const_tl(0), l1);
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_op_load_fpr_FT0(rs2);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
2008-03-05 03:56:06 +08:00
|
|
|
gen_set_label(l1);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
} else if ((xop & 0x11f) == 0x006) { // V9 fmovdr
|
2008-03-05 03:56:06 +08:00
|
|
|
int l1;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
2007-09-20 22:54:22 +08:00
|
|
|
cond = GET_FIELD_SP(insn, 14, 17);
|
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
|
|
|
gen_movl_reg_T0(rs1);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_brcond_tl(gen_tcg_cond_reg[cond], cpu_T[0],
|
|
|
|
tcg_const_tl(0), l1);
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs2));
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2008-03-05 03:56:06 +08:00
|
|
|
gen_set_label(l1);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
} else if ((xop & 0x11f) == 0x007) { // V9 fmovqr
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
2008-03-05 03:56:06 +08:00
|
|
|
int l1;
|
|
|
|
|
|
|
|
l1 = gen_new_label();
|
2007-11-26 02:40:20 +08:00
|
|
|
cond = GET_FIELD_SP(insn, 14, 17);
|
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
|
|
|
gen_movl_reg_T0(rs1);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_brcond_tl(gen_tcg_cond_reg[cond], cpu_T[0],
|
|
|
|
tcg_const_tl(0), l1);
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_op_load_fpr_QT0(QFPREG(rs2));
|
2007-11-26 02:40:20 +08:00
|
|
|
gen_op_store_QT0_fpr(QFPREG(rd));
|
2008-03-05 03:56:06 +08:00
|
|
|
gen_set_label(l1);
|
2007-11-26 02:40:20 +08:00
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
switch (xop) {
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2008-03-09 05:36:50 +08:00
|
|
|
#define FMOVCC(size_FDQ, fcc) \
|
|
|
|
{ \
|
2008-03-17 03:18:54 +08:00
|
|
|
TCGv r_cond; \
|
2008-03-09 05:36:50 +08:00
|
|
|
int l1; \
|
|
|
|
\
|
|
|
|
l1 = gen_new_label(); \
|
|
|
|
r_cond = tcg_temp_new(TCG_TYPE_TL); \
|
|
|
|
cond = GET_FIELD_SP(insn, 14, 17); \
|
|
|
|
gen_fcond(r_cond, fcc, cond); \
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, r_cond, \
|
|
|
|
tcg_const_tl(0), l1); \
|
2008-03-09 05:36:50 +08:00
|
|
|
glue(glue(gen_op_load_fpr_, size_FDQ), T0)(glue(size_FDQ, FPREG(rs2))); \
|
|
|
|
glue(glue(gen_op_store_, size_FDQ), T0_fpr)(glue(size_FDQ, FPREG(rd))); \
|
|
|
|
gen_set_label(l1); \
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_tl(r_cond); \
|
2008-03-09 05:36:50 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x001: /* V9 fmovscc %fcc0 */
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(F, 0);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x002: /* V9 fmovdcc %fcc0 */
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(D, 0);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x003: /* V9 fmovqcc %fcc0 */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(Q, 0);
|
2007-11-26 02:40:20 +08:00
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x041: /* V9 fmovscc %fcc1 */
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(F, 1);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x042: /* V9 fmovdcc %fcc1 */
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(D, 1);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x043: /* V9 fmovqcc %fcc1 */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(Q, 1);
|
2007-11-26 02:40:20 +08:00
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x081: /* V9 fmovscc %fcc2 */
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(F, 2);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x082: /* V9 fmovdcc %fcc2 */
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(D, 2);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x083: /* V9 fmovqcc %fcc2 */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(Q, 2);
|
2007-11-26 02:40:20 +08:00
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x0c1: /* V9 fmovscc %fcc3 */
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(F, 3);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x0c2: /* V9 fmovdcc %fcc3 */
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(D, 3);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x0c3: /* V9 fmovqcc %fcc3 */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(Q, 3);
|
2007-11-26 02:40:20 +08:00
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2008-03-09 05:36:50 +08:00
|
|
|
#undef FMOVCC
|
|
|
|
#define FMOVCC(size_FDQ, icc) \
|
|
|
|
{ \
|
2008-03-17 03:18:54 +08:00
|
|
|
TCGv r_cond; \
|
2008-03-09 05:36:50 +08:00
|
|
|
int l1; \
|
|
|
|
\
|
|
|
|
l1 = gen_new_label(); \
|
|
|
|
r_cond = tcg_temp_new(TCG_TYPE_TL); \
|
|
|
|
cond = GET_FIELD_SP(insn, 14, 17); \
|
|
|
|
gen_cond(r_cond, icc, cond); \
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, r_cond, \
|
|
|
|
tcg_const_tl(0), l1); \
|
2008-03-09 05:36:50 +08:00
|
|
|
glue(glue(gen_op_load_fpr_, size_FDQ), T0)(glue(size_FDQ, FPREG(rs2))); \
|
|
|
|
glue(glue(gen_op_store_, size_FDQ), T0_fpr)(glue(size_FDQ, FPREG(rd))); \
|
|
|
|
gen_set_label(l1); \
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_tl(r_cond); \
|
2008-03-09 05:36:50 +08:00
|
|
|
}
|
|
|
|
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x101: /* V9 fmovscc %icc */
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(F, 0);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x102: /* V9 fmovdcc %icc */
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(D, 0);
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x103: /* V9 fmovqcc %icc */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(D, 0);
|
2007-11-26 02:40:20 +08:00
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x181: /* V9 fmovscc %xcc */
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(F, 1);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x182: /* V9 fmovdcc %xcc */
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(D, 1);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x183: /* V9 fmovqcc %xcc */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
2008-03-09 05:36:50 +08:00
|
|
|
FMOVCC(Q, 1);
|
2007-11-26 02:40:20 +08:00
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
|
|
|
#endif
|
2008-03-09 05:36:50 +08:00
|
|
|
#undef FMOVCC
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
|
|
|
case 0x51: /* fcmps, V9 %fcc */
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_op_fcmps(rd & 3);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
2007-11-26 02:40:20 +08:00
|
|
|
case 0x52: /* fcmpd, V9 %fcc */
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_op_fcmpd(rd & 3);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
2007-11-26 02:40:20 +08:00
|
|
|
case 0x53: /* fcmpq, V9 %fcc */
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_QT0(QFPREG(rs1));
|
|
|
|
gen_op_load_fpr_QT1(QFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_op_fcmpq(rd & 3);
|
2007-11-26 02:40:20 +08:00
|
|
|
break;
|
|
|
|
#else /* !defined(CONFIG_USER_ONLY) */
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x55: /* fcmpes, V9 %fcc */
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_op_fcmpes(rd & 3);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x56: /* fcmped, V9 %fcc */
|
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_op_fcmped(rd & 3);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
2007-11-26 02:40:20 +08:00
|
|
|
case 0x57: /* fcmpeq, V9 %fcc */
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_load_fpr_QT0(QFPREG(rs1));
|
|
|
|
gen_op_load_fpr_QT1(QFPREG(rs2));
|
2008-03-05 04:00:18 +08:00
|
|
|
gen_op_fcmpeq(rd & 3);
|
2007-11-26 02:40:20 +08:00
|
|
|
break;
|
|
|
|
#else/* !defined(CONFIG_USER_ONLY) */
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
2004-12-20 07:18:01 +08:00
|
|
|
#if defined(OPTIM)
|
2007-09-20 22:54:22 +08:00
|
|
|
} else if (xop == 0x2) {
|
|
|
|
// clr/mov shortcut
|
2004-12-20 07:18:01 +08:00
|
|
|
|
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
2007-09-20 22:54:22 +08:00
|
|
|
if (rs1 == 0) {
|
2008-02-24 22:10:06 +08:00
|
|
|
// or %g0, x, y -> mov T0, x; mov y, T0
|
2007-09-20 22:54:22 +08:00
|
|
|
if (IS_IMM) { /* immediate */
|
|
|
|
rs2 = GET_FIELDs(insn, 19, 31);
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_movi_tl(cpu_T[0], (int)rs2);
|
2007-09-20 22:54:22 +08:00
|
|
|
} else { /* register */
|
|
|
|
rs2 = GET_FIELD(insn, 27, 31);
|
2008-02-24 22:10:06 +08:00
|
|
|
gen_movl_reg_T0(rs2);
|
2007-09-20 22:54:22 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
gen_movl_reg_T0(rs1);
|
|
|
|
if (IS_IMM) { /* immediate */
|
|
|
|
rs2 = GET_FIELDs(insn, 19, 31);
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_ori_tl(cpu_T[0], cpu_T[0], (int)rs2);
|
2007-09-20 22:54:22 +08:00
|
|
|
} else { /* register */
|
|
|
|
// or x, %g0, y -> mov T1, x; mov y, T1
|
|
|
|
rs2 = GET_FIELD(insn, 27, 31);
|
|
|
|
if (rs2 != 0) {
|
|
|
|
gen_movl_reg_T1(rs2);
|
|
|
|
gen_op_or_T1_T0();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-02-24 22:10:06 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
2005-07-23 22:27:54 +08:00
|
|
|
#endif
|
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
} else if (xop == 0x25) { /* sll, V9 sllx */
|
2005-07-23 22:27:54 +08:00
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_reg_T0(rs1);
|
|
|
|
if (IS_IMM) { /* immediate */
|
2005-07-23 22:27:54 +08:00
|
|
|
rs2 = GET_FIELDs(insn, 20, 31);
|
2008-02-24 22:10:06 +08:00
|
|
|
if (insn & (1 << 12)) {
|
|
|
|
tcg_gen_shli_i64(cpu_T[0], cpu_T[0], rs2 & 0x3f);
|
|
|
|
} else {
|
|
|
|
tcg_gen_andi_i64(cpu_T[0], cpu_T[0], 0xffffffffULL);
|
|
|
|
tcg_gen_shli_i64(cpu_T[0], cpu_T[0], rs2 & 0x1f);
|
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
} else { /* register */
|
2005-07-23 22:27:54 +08:00
|
|
|
rs2 = GET_FIELD(insn, 27, 31);
|
|
|
|
gen_movl_reg_T1(rs2);
|
2008-02-24 22:10:06 +08:00
|
|
|
if (insn & (1 << 12)) {
|
|
|
|
tcg_gen_andi_i64(cpu_T[1], cpu_T[1], 0x3f);
|
|
|
|
tcg_gen_shl_i64(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
} else {
|
|
|
|
tcg_gen_andi_i64(cpu_T[1], cpu_T[1], 0x1f);
|
|
|
|
tcg_gen_andi_i64(cpu_T[0], cpu_T[0], 0xffffffffULL);
|
|
|
|
tcg_gen_shl_i64(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
}
|
2005-07-23 22:27:54 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
} else if (xop == 0x26) { /* srl, V9 srlx */
|
2005-07-23 22:27:54 +08:00
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_reg_T0(rs1);
|
|
|
|
if (IS_IMM) { /* immediate */
|
2005-07-23 22:27:54 +08:00
|
|
|
rs2 = GET_FIELDs(insn, 20, 31);
|
2008-02-24 22:10:06 +08:00
|
|
|
if (insn & (1 << 12)) {
|
|
|
|
tcg_gen_shri_i64(cpu_T[0], cpu_T[0], rs2 & 0x3f);
|
|
|
|
} else {
|
|
|
|
tcg_gen_andi_i64(cpu_T[0], cpu_T[0], 0xffffffffULL);
|
|
|
|
tcg_gen_shri_i64(cpu_T[0], cpu_T[0], rs2 & 0x1f);
|
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
} else { /* register */
|
2005-07-23 22:27:54 +08:00
|
|
|
rs2 = GET_FIELD(insn, 27, 31);
|
|
|
|
gen_movl_reg_T1(rs2);
|
2008-02-24 22:10:06 +08:00
|
|
|
if (insn & (1 << 12)) {
|
|
|
|
tcg_gen_andi_i64(cpu_T[1], cpu_T[1], 0x3f);
|
|
|
|
tcg_gen_shr_i64(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
} else {
|
|
|
|
tcg_gen_andi_i64(cpu_T[1], cpu_T[1], 0x1f);
|
|
|
|
tcg_gen_andi_i64(cpu_T[0], cpu_T[0], 0xffffffffULL);
|
|
|
|
tcg_gen_shr_i64(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
}
|
2005-07-23 22:27:54 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
} else if (xop == 0x27) { /* sra, V9 srax */
|
2005-07-23 22:27:54 +08:00
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_reg_T0(rs1);
|
|
|
|
if (IS_IMM) { /* immediate */
|
2005-07-23 22:27:54 +08:00
|
|
|
rs2 = GET_FIELDs(insn, 20, 31);
|
2008-02-24 22:10:06 +08:00
|
|
|
if (insn & (1 << 12)) {
|
|
|
|
tcg_gen_sari_i64(cpu_T[0], cpu_T[0], rs2 & 0x3f);
|
|
|
|
} else {
|
|
|
|
tcg_gen_andi_i64(cpu_T[0], cpu_T[0], 0xffffffffULL);
|
|
|
|
tcg_gen_ext_i32_i64(cpu_T[0], cpu_T[0]);
|
|
|
|
tcg_gen_sari_i64(cpu_T[0], cpu_T[0], rs2 & 0x1f);
|
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
} else { /* register */
|
2005-07-23 22:27:54 +08:00
|
|
|
rs2 = GET_FIELD(insn, 27, 31);
|
|
|
|
gen_movl_reg_T1(rs2);
|
2008-02-24 22:10:06 +08:00
|
|
|
if (insn & (1 << 12)) {
|
|
|
|
tcg_gen_andi_i64(cpu_T[1], cpu_T[1], 0x3f);
|
|
|
|
tcg_gen_sar_i64(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
} else {
|
|
|
|
tcg_gen_andi_i64(cpu_T[1], cpu_T[1], 0x1f);
|
|
|
|
tcg_gen_andi_i64(cpu_T[0], cpu_T[0], 0xffffffffULL);
|
|
|
|
tcg_gen_sar_i64(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
}
|
2005-07-23 22:27:54 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
2004-12-20 07:18:01 +08:00
|
|
|
#endif
|
2007-04-01 23:08:21 +08:00
|
|
|
} else if (xop < 0x36) {
|
2004-12-20 07:18:01 +08:00
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_reg_T0(rs1);
|
|
|
|
if (IS_IMM) { /* immediate */
|
2004-01-04 23:01:44 +08:00
|
|
|
rs2 = GET_FIELDs(insn, 19, 31);
|
2005-07-02 22:31:34 +08:00
|
|
|
gen_movl_simm_T1(rs2);
|
2007-09-20 22:54:22 +08:00
|
|
|
} else { /* register */
|
2004-01-04 23:01:44 +08:00
|
|
|
rs2 = GET_FIELD(insn, 27, 31);
|
|
|
|
gen_movl_reg_T1(rs2);
|
|
|
|
}
|
|
|
|
if (xop < 0x20) {
|
|
|
|
switch (xop & ~0x10) {
|
|
|
|
case 0x0:
|
|
|
|
if (xop & 0x10)
|
|
|
|
gen_op_add_T1_T0_cc();
|
|
|
|
else
|
|
|
|
gen_op_add_T1_T0();
|
|
|
|
break;
|
|
|
|
case 0x1:
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_and_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
2004-01-04 23:01:44 +08:00
|
|
|
if (xop & 0x10)
|
|
|
|
gen_op_logic_T0_cc();
|
|
|
|
break;
|
|
|
|
case 0x2:
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_or_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
2007-09-20 22:54:22 +08:00
|
|
|
if (xop & 0x10)
|
|
|
|
gen_op_logic_T0_cc();
|
|
|
|
break;
|
2004-01-04 23:01:44 +08:00
|
|
|
case 0x3:
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_xor_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
2004-01-04 23:01:44 +08:00
|
|
|
if (xop & 0x10)
|
|
|
|
gen_op_logic_T0_cc();
|
|
|
|
break;
|
|
|
|
case 0x4:
|
|
|
|
if (xop & 0x10)
|
|
|
|
gen_op_sub_T1_T0_cc();
|
|
|
|
else
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_sub_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
2004-01-04 23:01:44 +08:00
|
|
|
break;
|
|
|
|
case 0x5:
|
2008-03-10 04:46:51 +08:00
|
|
|
tcg_gen_xori_tl(cpu_T[1], cpu_T[1], -1);
|
|
|
|
tcg_gen_and_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
2004-01-04 23:01:44 +08:00
|
|
|
if (xop & 0x10)
|
|
|
|
gen_op_logic_T0_cc();
|
|
|
|
break;
|
|
|
|
case 0x6:
|
2008-03-10 04:46:51 +08:00
|
|
|
tcg_gen_xori_tl(cpu_T[1], cpu_T[1], -1);
|
|
|
|
tcg_gen_or_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
2004-01-04 23:01:44 +08:00
|
|
|
if (xop & 0x10)
|
|
|
|
gen_op_logic_T0_cc();
|
|
|
|
break;
|
|
|
|
case 0x7:
|
2008-03-10 04:46:51 +08:00
|
|
|
tcg_gen_xori_tl(cpu_T[1], cpu_T[1], -1);
|
|
|
|
tcg_gen_xor_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
2004-01-04 23:01:44 +08:00
|
|
|
if (xop & 0x10)
|
|
|
|
gen_op_logic_T0_cc();
|
|
|
|
break;
|
|
|
|
case 0x8:
|
|
|
|
if (xop & 0x10)
|
2005-01-31 06:39:04 +08:00
|
|
|
gen_op_addx_T1_T0_cc();
|
2008-03-03 02:22:19 +08:00
|
|
|
else {
|
2008-03-14 04:45:31 +08:00
|
|
|
gen_mov_reg_C(cpu_tmp0, cpu_psr);
|
2008-03-03 02:22:19 +08:00
|
|
|
tcg_gen_add_tl(cpu_T[1], cpu_T[1], cpu_tmp0);
|
|
|
|
tcg_gen_add_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
}
|
2004-01-04 23:01:44 +08:00
|
|
|
break;
|
2006-06-19 03:36:58 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x9: /* V9 mulx */
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_mul_i64(cpu_T[0], cpu_T[0], cpu_T[1]);
|
2006-06-19 03:36:58 +08:00
|
|
|
break;
|
|
|
|
#endif
|
2004-01-04 23:01:44 +08:00
|
|
|
case 0xa:
|
|
|
|
gen_op_umul_T1_T0();
|
|
|
|
if (xop & 0x10)
|
|
|
|
gen_op_logic_T0_cc();
|
|
|
|
break;
|
|
|
|
case 0xb:
|
|
|
|
gen_op_smul_T1_T0();
|
|
|
|
if (xop & 0x10)
|
|
|
|
gen_op_logic_T0_cc();
|
|
|
|
break;
|
|
|
|
case 0xc:
|
|
|
|
if (xop & 0x10)
|
2005-01-31 06:39:04 +08:00
|
|
|
gen_op_subx_T1_T0_cc();
|
2008-03-03 02:22:19 +08:00
|
|
|
else {
|
2008-03-14 04:45:31 +08:00
|
|
|
gen_mov_reg_C(cpu_tmp0, cpu_psr);
|
2008-03-03 02:22:19 +08:00
|
|
|
tcg_gen_add_tl(cpu_T[1], cpu_T[1], cpu_tmp0);
|
|
|
|
tcg_gen_sub_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
|
|
|
}
|
2004-01-04 23:01:44 +08:00
|
|
|
break;
|
2006-06-19 03:36:58 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0xd: /* V9 udivx */
|
2008-03-22 16:40:28 +08:00
|
|
|
gen_trap_ifdivzero_tl(cpu_T[1]);
|
2008-03-15 03:42:42 +08:00
|
|
|
tcg_gen_divu_i64(cpu_T[0], cpu_T[0], cpu_T[1]);
|
2006-06-19 03:36:58 +08:00
|
|
|
break;
|
|
|
|
#endif
|
2004-01-04 23:01:44 +08:00
|
|
|
case 0xe:
|
|
|
|
gen_op_udiv_T1_T0();
|
|
|
|
if (xop & 0x10)
|
|
|
|
gen_op_div_cc();
|
|
|
|
break;
|
|
|
|
case 0xf:
|
|
|
|
gen_op_sdiv_T1_T0();
|
|
|
|
if (xop & 0x10)
|
|
|
|
gen_op_div_cc();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
2004-01-04 23:01:44 +08:00
|
|
|
} else {
|
|
|
|
switch (xop) {
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x20: /* taddcc */
|
|
|
|
gen_op_tadd_T1_T0_cc();
|
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
|
|
|
case 0x21: /* tsubcc */
|
|
|
|
gen_op_tsub_T1_T0_cc();
|
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
|
|
|
case 0x22: /* taddcctv */
|
2007-10-11 03:11:54 +08:00
|
|
|
save_state(dc);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_tadd_T1_T0_ccTV();
|
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
|
|
|
case 0x23: /* tsubcctv */
|
2007-10-11 03:11:54 +08:00
|
|
|
save_state(dc);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_tsub_T1_T0_ccTV();
|
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2004-01-04 23:01:44 +08:00
|
|
|
case 0x24: /* mulscc */
|
|
|
|
gen_op_mulscc_T1_T0();
|
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2005-07-23 22:27:54 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x25: /* sll */
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_andi_tl(cpu_T[1], cpu_T[1], 0x1f);
|
|
|
|
tcg_gen_shl_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
2004-01-04 23:01:44 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2005-07-23 22:27:54 +08:00
|
|
|
case 0x26: /* srl */
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_andi_tl(cpu_T[1], cpu_T[1], 0x1f);
|
|
|
|
tcg_gen_shr_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
2004-01-04 23:01:44 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2005-07-23 22:27:54 +08:00
|
|
|
case 0x27: /* sra */
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_andi_tl(cpu_T[1], cpu_T[1], 0x1f);
|
|
|
|
tcg_gen_sar_tl(cpu_T[0], cpu_T[0], cpu_T[1]);
|
2004-01-04 23:01:44 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2005-07-23 22:27:54 +08:00
|
|
|
#endif
|
2004-01-04 23:01:44 +08:00
|
|
|
case 0x30:
|
|
|
|
{
|
|
|
|
switch(rd) {
|
2005-07-02 22:31:34 +08:00
|
|
|
case 0: /* wry */
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_xor_T1_T0();
|
|
|
|
gen_op_movtl_env_T0(offsetof(CPUSPARCState, y));
|
2004-01-04 23:01:44 +08:00
|
|
|
break;
|
2007-04-01 23:05:09 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
|
|
|
case 0x01 ... 0x0f: /* undefined in the
|
|
|
|
SPARCv8 manual, nop
|
|
|
|
on the microSPARC
|
|
|
|
II */
|
|
|
|
case 0x10 ... 0x1f: /* implementation-dependent
|
|
|
|
in the SPARCv8
|
|
|
|
manual, nop on the
|
|
|
|
microSPARC II */
|
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x2: /* V9 wrccr */
|
2007-10-01 00:37:00 +08:00
|
|
|
gen_op_xor_T1_T0();
|
2008-03-19 02:08:25 +08:00
|
|
|
tcg_gen_helper_0_1(helper_wrccr, cpu_T[0]);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x3: /* V9 wrasi */
|
2007-10-01 00:37:00 +08:00
|
|
|
gen_op_xor_T1_T0();
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_movl_env_T0(offsetof(CPUSPARCState, asi));
|
|
|
|
break;
|
|
|
|
case 0x6: /* V9 wrfprs */
|
|
|
|
gen_op_xor_T1_T0();
|
|
|
|
gen_op_movl_env_T0(offsetof(CPUSPARCState, fprs));
|
2007-04-13 23:49:56 +08:00
|
|
|
save_state(dc);
|
|
|
|
gen_op_next_insn();
|
2008-02-01 18:50:11 +08:00
|
|
|
tcg_gen_exit_tb(0);
|
2007-04-13 23:49:56 +08:00
|
|
|
dc->is_br = 1;
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0xf: /* V9 sir, nop if user */
|
2005-07-02 22:31:34 +08:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2007-09-20 22:54:22 +08:00
|
|
|
if (supervisor(dc))
|
2008-02-24 22:10:06 +08:00
|
|
|
; // XXX
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x13: /* Graphics Status */
|
2006-07-19 05:12:17 +08:00
|
|
|
if (gen_trap_ifnofpu(dc))
|
|
|
|
goto jmp_insn;
|
2007-10-01 00:37:00 +08:00
|
|
|
gen_op_xor_T1_T0();
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_movtl_env_T0(offsetof(CPUSPARCState, gsr));
|
|
|
|
break;
|
|
|
|
case 0x17: /* Tick compare */
|
2005-07-23 22:27:54 +08:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2007-09-20 22:54:22 +08:00
|
|
|
if (!supervisor(dc))
|
|
|
|
goto illegal_insn;
|
2005-07-23 22:27:54 +08:00
|
|
|
#endif
|
2008-03-03 02:28:06 +08:00
|
|
|
{
|
|
|
|
TCGv r_tickptr;
|
|
|
|
|
|
|
|
gen_op_xor_T1_T0();
|
|
|
|
gen_op_movtl_env_T0(offsetof(CPUSPARCState,
|
|
|
|
tick_cmpr));
|
|
|
|
r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tickptr, cpu_env,
|
|
|
|
offsetof(CPUState, tick));
|
|
|
|
tcg_gen_helper_0_2(helper_tick_set_limit,
|
|
|
|
r_tickptr, cpu_T[0]);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tickptr);
|
2008-03-03 02:28:06 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x18: /* System tick */
|
2005-07-23 22:27:54 +08:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2007-09-20 22:54:22 +08:00
|
|
|
if (!supervisor(dc))
|
|
|
|
goto illegal_insn;
|
2005-07-23 22:27:54 +08:00
|
|
|
#endif
|
2008-03-03 02:28:06 +08:00
|
|
|
{
|
|
|
|
TCGv r_tickptr;
|
|
|
|
|
|
|
|
gen_op_xor_T1_T0();
|
|
|
|
r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tickptr, cpu_env,
|
|
|
|
offsetof(CPUState, stick));
|
|
|
|
tcg_gen_helper_0_2(helper_tick_set_count,
|
|
|
|
r_tickptr, cpu_T[0]);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tickptr);
|
2008-03-03 02:28:06 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x19: /* System tick compare */
|
2005-07-23 22:27:54 +08:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2007-09-20 22:54:22 +08:00
|
|
|
if (!supervisor(dc))
|
|
|
|
goto illegal_insn;
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2008-03-03 02:28:06 +08:00
|
|
|
{
|
|
|
|
TCGv r_tickptr;
|
|
|
|
|
|
|
|
gen_op_xor_T1_T0();
|
|
|
|
gen_op_movtl_env_T0(offsetof(CPUSPARCState,
|
|
|
|
stick_cmpr));
|
|
|
|
r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tickptr, cpu_env,
|
|
|
|
offsetof(CPUState, stick));
|
|
|
|
tcg_gen_helper_0_2(helper_tick_set_limit,
|
|
|
|
r_tickptr, cpu_T[0]);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tickptr);
|
2008-03-03 02:28:06 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
2005-07-23 22:27:54 +08:00
|
|
|
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x10: /* Performance Control */
|
|
|
|
case 0x11: /* Performance Instrumentation Counter */
|
|
|
|
case 0x12: /* Dispatch Control */
|
|
|
|
case 0x14: /* Softint set */
|
|
|
|
case 0x15: /* Softint clear */
|
|
|
|
case 0x16: /* Softint write */
|
2005-07-23 22:27:54 +08:00
|
|
|
#endif
|
2005-07-02 22:31:34 +08:00
|
|
|
default:
|
2004-01-04 23:01:44 +08:00
|
|
|
goto illegal_insn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2004-10-01 05:55:55 +08:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2005-01-31 06:39:04 +08:00
|
|
|
case 0x31: /* wrpsr, V9 saved, restored */
|
2004-10-01 05:55:55 +08:00
|
|
|
{
|
2007-09-20 22:54:22 +08:00
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
switch (rd) {
|
|
|
|
case 0:
|
2008-03-22 01:57:29 +08:00
|
|
|
tcg_gen_helper_0_0(helper_saved);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 1:
|
2008-03-22 01:57:29 +08:00
|
|
|
tcg_gen_helper_0_0(helper_restored);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
2007-04-23 03:14:52 +08:00
|
|
|
case 2: /* UA2005 allclean */
|
|
|
|
case 3: /* UA2005 otherw */
|
|
|
|
case 4: /* UA2005 normalw */
|
|
|
|
case 5: /* UA2005 invalw */
|
|
|
|
// XXX
|
2007-09-20 22:54:22 +08:00
|
|
|
default:
|
2005-07-02 22:31:34 +08:00
|
|
|
goto illegal_insn;
|
|
|
|
}
|
|
|
|
#else
|
2004-10-01 05:55:55 +08:00
|
|
|
gen_op_xor_T1_T0();
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_helper_0_1(helper_wrpsr, cpu_T[0]);
|
2005-11-11 08:24:58 +08:00
|
|
|
save_state(dc);
|
|
|
|
gen_op_next_insn();
|
2008-02-01 18:50:11 +08:00
|
|
|
tcg_gen_exit_tb(0);
|
2007-09-20 22:54:22 +08:00
|
|
|
dc->is_br = 1;
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2004-10-01 05:55:55 +08:00
|
|
|
}
|
|
|
|
break;
|
2005-01-31 06:39:04 +08:00
|
|
|
case 0x32: /* wrwim, V9 wrpr */
|
2004-10-01 05:55:55 +08:00
|
|
|
{
|
2007-09-20 22:54:22 +08:00
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
2004-10-01 05:55:55 +08:00
|
|
|
gen_op_xor_T1_T0();
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
switch (rd) {
|
|
|
|
case 0: // tpc
|
2008-03-06 01:59:48 +08:00
|
|
|
{
|
|
|
|
TCGv r_tsptr;
|
|
|
|
|
|
|
|
r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tsptr, cpu_env,
|
|
|
|
offsetof(CPUState, tsptr));
|
|
|
|
tcg_gen_st_tl(cpu_T[0], r_tsptr,
|
|
|
|
offsetof(trap_state, tpc));
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tsptr);
|
2008-03-06 01:59:48 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 1: // tnpc
|
2008-03-06 01:59:48 +08:00
|
|
|
{
|
|
|
|
TCGv r_tsptr;
|
|
|
|
|
|
|
|
r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tsptr, cpu_env,
|
|
|
|
offsetof(CPUState, tsptr));
|
|
|
|
tcg_gen_st_tl(cpu_T[0], r_tsptr,
|
|
|
|
offsetof(trap_state, tnpc));
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tsptr);
|
2008-03-06 01:59:48 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 2: // tstate
|
2008-03-06 01:59:48 +08:00
|
|
|
{
|
|
|
|
TCGv r_tsptr;
|
|
|
|
|
|
|
|
r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tsptr, cpu_env,
|
|
|
|
offsetof(CPUState, tsptr));
|
|
|
|
tcg_gen_st_tl(cpu_T[0], r_tsptr,
|
|
|
|
offsetof(trap_state, tstate));
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tsptr);
|
2008-03-06 01:59:48 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 3: // tt
|
2008-03-06 01:59:48 +08:00
|
|
|
{
|
|
|
|
TCGv r_tsptr;
|
|
|
|
|
|
|
|
r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tsptr, cpu_env,
|
|
|
|
offsetof(CPUState, tsptr));
|
|
|
|
tcg_gen_st_i32(cpu_T[0], r_tsptr,
|
|
|
|
offsetof(trap_state, tt));
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tsptr);
|
2008-03-06 01:59:48 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 4: // tick
|
2008-03-03 02:28:06 +08:00
|
|
|
{
|
|
|
|
TCGv r_tickptr;
|
|
|
|
|
|
|
|
r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tickptr, cpu_env,
|
|
|
|
offsetof(CPUState, tick));
|
|
|
|
tcg_gen_helper_0_2(helper_tick_set_count,
|
|
|
|
r_tickptr, cpu_T[0]);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tickptr);
|
2008-03-03 02:28:06 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 5: // tba
|
|
|
|
gen_op_movtl_env_T0(offsetof(CPUSPARCState, tbr));
|
|
|
|
break;
|
|
|
|
case 6: // pstate
|
2006-06-19 03:36:58 +08:00
|
|
|
save_state(dc);
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_helper_0_1(helper_wrpstate, cpu_T[0]);
|
2006-06-19 03:36:58 +08:00
|
|
|
gen_op_next_insn();
|
2008-02-01 18:50:11 +08:00
|
|
|
tcg_gen_exit_tb(0);
|
2006-06-19 03:36:58 +08:00
|
|
|
dc->is_br = 1;
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 7: // tl
|
|
|
|
gen_op_movl_env_T0(offsetof(CPUSPARCState, tl));
|
|
|
|
break;
|
|
|
|
case 8: // pil
|
|
|
|
gen_op_movl_env_T0(offsetof(CPUSPARCState, psrpil));
|
|
|
|
break;
|
|
|
|
case 9: // cwp
|
2008-03-19 02:08:25 +08:00
|
|
|
tcg_gen_helper_0_1(helper_wrcwp, cpu_T[0]);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 10: // cansave
|
|
|
|
gen_op_movl_env_T0(offsetof(CPUSPARCState, cansave));
|
|
|
|
break;
|
|
|
|
case 11: // canrestore
|
|
|
|
gen_op_movl_env_T0(offsetof(CPUSPARCState, canrestore));
|
|
|
|
break;
|
|
|
|
case 12: // cleanwin
|
|
|
|
gen_op_movl_env_T0(offsetof(CPUSPARCState, cleanwin));
|
|
|
|
break;
|
|
|
|
case 13: // otherwin
|
|
|
|
gen_op_movl_env_T0(offsetof(CPUSPARCState, otherwin));
|
|
|
|
break;
|
|
|
|
case 14: // wstate
|
|
|
|
gen_op_movl_env_T0(offsetof(CPUSPARCState, wstate));
|
|
|
|
break;
|
2007-04-23 03:14:52 +08:00
|
|
|
case 16: // UA2005 gl
|
|
|
|
gen_op_movl_env_T0(offsetof(CPUSPARCState, gl));
|
|
|
|
break;
|
|
|
|
case 26: // UA2005 strand status
|
|
|
|
if (!hypervisor(dc))
|
|
|
|
goto priv_insn;
|
|
|
|
gen_op_movl_env_T0(offsetof(CPUSPARCState, ssr));
|
|
|
|
break;
|
2007-09-20 22:54:22 +08:00
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
2005-07-02 22:31:34 +08:00
|
|
|
#else
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_andi_tl(cpu_T[0], cpu_T[0], ((1 << NWINDOWS) - 1));
|
2008-02-24 22:10:06 +08:00
|
|
|
gen_op_movl_env_T0(offsetof(CPUSPARCState, wim));
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2004-10-01 05:55:55 +08:00
|
|
|
}
|
|
|
|
break;
|
2007-04-23 03:14:52 +08:00
|
|
|
case 0x33: /* wrtbr, UA2005 wrhpr */
|
2004-10-01 05:55:55 +08:00
|
|
|
{
|
2007-04-23 03:14:52 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
2004-10-01 05:55:55 +08:00
|
|
|
gen_op_xor_T1_T0();
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_movtl_env_T0(offsetof(CPUSPARCState, tbr));
|
|
|
|
#else
|
|
|
|
if (!hypervisor(dc))
|
|
|
|
goto priv_insn;
|
|
|
|
gen_op_xor_T1_T0();
|
|
|
|
switch (rd) {
|
|
|
|
case 0: // hpstate
|
|
|
|
// XXX gen_op_wrhpstate();
|
|
|
|
save_state(dc);
|
|
|
|
gen_op_next_insn();
|
2008-02-01 18:50:11 +08:00
|
|
|
tcg_gen_exit_tb(0);
|
2007-04-23 03:14:52 +08:00
|
|
|
dc->is_br = 1;
|
|
|
|
break;
|
|
|
|
case 1: // htstate
|
|
|
|
// XXX gen_op_wrhtstate();
|
|
|
|
break;
|
|
|
|
case 3: // hintp
|
|
|
|
gen_op_movl_env_T0(offsetof(CPUSPARCState, hintp));
|
|
|
|
break;
|
|
|
|
case 5: // htba
|
|
|
|
gen_op_movl_env_T0(offsetof(CPUSPARCState, htba));
|
|
|
|
break;
|
|
|
|
case 31: // hstick_cmpr
|
2008-03-03 02:28:06 +08:00
|
|
|
{
|
|
|
|
TCGv r_tickptr;
|
|
|
|
|
|
|
|
gen_op_movtl_env_T0(offsetof(CPUSPARCState,
|
|
|
|
hstick_cmpr));
|
|
|
|
r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
|
|
|
|
tcg_gen_ld_ptr(r_tickptr, cpu_env,
|
|
|
|
offsetof(CPUState, hstick));
|
|
|
|
tcg_gen_helper_0_2(helper_tick_set_limit,
|
|
|
|
r_tickptr, cpu_T[0]);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_ptr(r_tickptr);
|
2008-03-03 02:28:06 +08:00
|
|
|
}
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 6: // hver readonly
|
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
|
|
|
#endif
|
2004-10-01 05:55:55 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
#endif
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x2c: /* V9 movcc */
|
|
|
|
{
|
|
|
|
int cc = GET_FIELD_SP(insn, 11, 12);
|
|
|
|
int cond = GET_FIELD_SP(insn, 14, 17);
|
2008-03-15 05:09:15 +08:00
|
|
|
TCGv r_cond;
|
2008-03-03 02:25:27 +08:00
|
|
|
int l1;
|
|
|
|
|
2008-03-15 05:09:15 +08:00
|
|
|
r_cond = tcg_temp_new(TCG_TYPE_TL);
|
2007-09-20 22:54:22 +08:00
|
|
|
if (insn & (1 << 18)) {
|
|
|
|
if (cc == 0)
|
2008-03-15 05:09:15 +08:00
|
|
|
gen_cond(r_cond, 0, cond);
|
2007-09-20 22:54:22 +08:00
|
|
|
else if (cc == 2)
|
2008-03-15 05:09:15 +08:00
|
|
|
gen_cond(r_cond, 1, cond);
|
2007-09-20 22:54:22 +08:00
|
|
|
else
|
|
|
|
goto illegal_insn;
|
|
|
|
} else {
|
2008-03-15 05:09:15 +08:00
|
|
|
gen_fcond(r_cond, cc, cond);
|
2007-09-20 22:54:22 +08:00
|
|
|
}
|
2008-03-03 02:25:27 +08:00
|
|
|
|
|
|
|
l1 = gen_new_label();
|
|
|
|
|
2008-03-15 05:09:15 +08:00
|
|
|
tcg_gen_brcond_tl(TCG_COND_EQ, r_cond,
|
|
|
|
tcg_const_tl(0), l1);
|
2008-03-03 02:25:27 +08:00
|
|
|
if (IS_IMM) { /* immediate */
|
|
|
|
rs2 = GET_FIELD_SPs(insn, 0, 10);
|
|
|
|
gen_movl_simm_T1(rs2);
|
|
|
|
} else {
|
|
|
|
rs2 = GET_FIELD_SP(insn, 0, 4);
|
|
|
|
gen_movl_reg_T1(rs2);
|
|
|
|
}
|
|
|
|
gen_movl_T1_reg(rd);
|
|
|
|
gen_set_label(l1);
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_discard_tl(r_cond);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 0x2d: /* V9 sdivx */
|
2005-07-02 22:31:34 +08:00
|
|
|
gen_op_sdivx_T1_T0();
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
|
|
|
case 0x2e: /* V9 popc */
|
|
|
|
{
|
|
|
|
if (IS_IMM) { /* immediate */
|
|
|
|
rs2 = GET_FIELD_SPs(insn, 0, 12);
|
|
|
|
gen_movl_simm_T1(rs2);
|
|
|
|
// XXX optimize: popc(constant)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rs2 = GET_FIELD_SP(insn, 0, 4);
|
|
|
|
gen_movl_reg_T1(rs2);
|
|
|
|
}
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_helper_1_1(helper_popc, cpu_T[0],
|
|
|
|
cpu_T[1]);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
}
|
|
|
|
case 0x2f: /* V9 movr */
|
|
|
|
{
|
|
|
|
int cond = GET_FIELD_SP(insn, 10, 12);
|
2008-03-03 02:25:27 +08:00
|
|
|
int l1;
|
|
|
|
|
2007-09-20 22:54:22 +08:00
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
|
|
|
gen_movl_reg_T0(rs1);
|
2008-03-03 02:25:27 +08:00
|
|
|
|
|
|
|
l1 = gen_new_label();
|
|
|
|
|
2008-03-17 03:18:54 +08:00
|
|
|
tcg_gen_brcond_tl(gen_tcg_cond_reg[cond], cpu_T[0],
|
|
|
|
tcg_const_tl(0), l1);
|
2007-09-20 22:54:22 +08:00
|
|
|
if (IS_IMM) { /* immediate */
|
|
|
|
rs2 = GET_FIELD_SPs(insn, 0, 9);
|
|
|
|
gen_movl_simm_T1(rs2);
|
2008-03-03 02:25:27 +08:00
|
|
|
} else {
|
2007-09-20 22:54:22 +08:00
|
|
|
rs2 = GET_FIELD_SP(insn, 0, 4);
|
|
|
|
gen_movl_reg_T1(rs2);
|
|
|
|
}
|
2008-03-03 02:25:27 +08:00
|
|
|
gen_movl_T1_reg(rd);
|
|
|
|
gen_set_label(l1);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
|
|
|
}
|
2007-04-13 23:49:56 +08:00
|
|
|
} else if (xop == 0x36) { /* UltraSparc shutdown, VIS, V8 CPop1 */
|
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
int opf = GET_FIELD_SP(insn, 5, 13);
|
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
|
|
|
rs2 = GET_FIELD(insn, 27, 31);
|
2007-04-23 03:14:52 +08:00
|
|
|
if (gen_trap_ifnofpu(dc))
|
|
|
|
goto jmp_insn;
|
2007-04-13 23:49:56 +08:00
|
|
|
|
|
|
|
switch (opf) {
|
2007-04-23 03:14:52 +08:00
|
|
|
case 0x000: /* VIS I edge8cc */
|
|
|
|
case 0x001: /* VIS II edge8n */
|
|
|
|
case 0x002: /* VIS I edge8lcc */
|
|
|
|
case 0x003: /* VIS II edge8ln */
|
|
|
|
case 0x004: /* VIS I edge16cc */
|
|
|
|
case 0x005: /* VIS II edge16n */
|
|
|
|
case 0x006: /* VIS I edge16lcc */
|
|
|
|
case 0x007: /* VIS II edge16ln */
|
|
|
|
case 0x008: /* VIS I edge32cc */
|
|
|
|
case 0x009: /* VIS II edge32n */
|
|
|
|
case 0x00a: /* VIS I edge32lcc */
|
|
|
|
case 0x00b: /* VIS II edge32ln */
|
|
|
|
// XXX
|
|
|
|
goto illegal_insn;
|
|
|
|
case 0x010: /* VIS I array8 */
|
|
|
|
gen_movl_reg_T0(rs1);
|
|
|
|
gen_movl_reg_T1(rs2);
|
2008-03-19 02:06:54 +08:00
|
|
|
tcg_gen_helper_1_2(helper_array8, cpu_T[0], cpu_T[0],
|
|
|
|
cpu_T[1]);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
|
|
|
case 0x012: /* VIS I array16 */
|
|
|
|
gen_movl_reg_T0(rs1);
|
|
|
|
gen_movl_reg_T1(rs2);
|
2008-03-19 02:06:54 +08:00
|
|
|
tcg_gen_helper_1_2(helper_array8, cpu_T[0], cpu_T[0],
|
|
|
|
cpu_T[1]);
|
|
|
|
tcg_gen_shli_i64(cpu_T[0], cpu_T[0], 1);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
|
|
|
case 0x014: /* VIS I array32 */
|
|
|
|
gen_movl_reg_T0(rs1);
|
|
|
|
gen_movl_reg_T1(rs2);
|
2008-03-19 02:06:54 +08:00
|
|
|
tcg_gen_helper_1_2(helper_array8, cpu_T[0], cpu_T[0],
|
|
|
|
cpu_T[1]);
|
|
|
|
tcg_gen_shli_i64(cpu_T[0], cpu_T[0], 2);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2007-04-13 23:49:56 +08:00
|
|
|
case 0x018: /* VIS I alignaddr */
|
|
|
|
gen_movl_reg_T0(rs1);
|
|
|
|
gen_movl_reg_T1(rs2);
|
2008-03-19 02:06:54 +08:00
|
|
|
tcg_gen_helper_1_2(helper_alignaddr, cpu_T[0], cpu_T[0],
|
|
|
|
cpu_T[1]);
|
2007-04-13 23:49:56 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2007-04-23 03:14:52 +08:00
|
|
|
case 0x019: /* VIS II bmask */
|
2007-04-13 23:49:56 +08:00
|
|
|
case 0x01a: /* VIS I alignaddrl */
|
|
|
|
// XXX
|
2007-04-23 03:14:52 +08:00
|
|
|
goto illegal_insn;
|
|
|
|
case 0x020: /* VIS I fcmple16 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fcmple16);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x022: /* VIS I fcmpne16 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fcmpne16);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-13 23:49:56 +08:00
|
|
|
break;
|
2007-04-23 03:14:52 +08:00
|
|
|
case 0x024: /* VIS I fcmple32 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fcmple32);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x026: /* VIS I fcmpne32 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fcmpne32);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x028: /* VIS I fcmpgt16 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fcmpgt16);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x02a: /* VIS I fcmpeq16 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fcmpeq16);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x02c: /* VIS I fcmpgt32 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fcmpgt32);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x02e: /* VIS I fcmpeq32 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fcmpeq32);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x031: /* VIS I fmul8x16 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fmul8x16);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x033: /* VIS I fmul8x16au */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fmul8x16au);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x035: /* VIS I fmul8x16al */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fmul8x16al);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x036: /* VIS I fmul8sux16 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fmul8sux16);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x037: /* VIS I fmul8ulx16 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fmul8ulx16);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x038: /* VIS I fmuld8sux16 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fmuld8sux16);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x039: /* VIS I fmuld8ulx16 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fmuld8ulx16);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x03a: /* VIS I fpack32 */
|
|
|
|
case 0x03b: /* VIS I fpack16 */
|
|
|
|
case 0x03d: /* VIS I fpackfix */
|
|
|
|
case 0x03e: /* VIS I pdist */
|
|
|
|
// XXX
|
|
|
|
goto illegal_insn;
|
2007-04-13 23:49:56 +08:00
|
|
|
case 0x048: /* VIS I faligndata */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_faligndata);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-13 23:49:56 +08:00
|
|
|
break;
|
2007-04-23 03:14:52 +08:00
|
|
|
case 0x04b: /* VIS I fpmerge */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fpmerge);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x04c: /* VIS II bshuffle */
|
|
|
|
// XXX
|
|
|
|
goto illegal_insn;
|
|
|
|
case 0x04d: /* VIS I fexpand */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fexpand);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x050: /* VIS I fpadd16 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fpadd16);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x051: /* VIS I fpadd16s */
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fpadd16s);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x052: /* VIS I fpadd32 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fpadd32);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x053: /* VIS I fpadd32s */
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fpadd32s);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x054: /* VIS I fpsub16 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fpsub16);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x055: /* VIS I fpsub16s */
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fpsub16s);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x056: /* VIS I fpsub32 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fpadd32);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x057: /* VIS I fpsub32s */
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fpsub32s);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
2007-04-13 23:49:56 +08:00
|
|
|
case 0x060: /* VIS I fzero */
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_movl_DT0_0);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-13 23:49:56 +08:00
|
|
|
break;
|
|
|
|
case 0x061: /* VIS I fzeros */
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_movl_FT0_0);
|
2007-04-13 23:49:56 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
2007-04-23 03:14:52 +08:00
|
|
|
case 0x062: /* VIS I fnor */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fnor);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x063: /* VIS I fnors */
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fnors);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x064: /* VIS I fandnot2 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fandnot);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x065: /* VIS I fandnot2s */
|
|
|
|
gen_op_load_fpr_FT1(rs1);
|
|
|
|
gen_op_load_fpr_FT0(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fandnots);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x066: /* VIS I fnot2 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fnot);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x067: /* VIS I fnot2s */
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fnot);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x068: /* VIS I fandnot1 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fandnot);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x069: /* VIS I fandnot1s */
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fandnots);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x06a: /* VIS I fnot1 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs1));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fnot);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x06b: /* VIS I fnot1s */
|
|
|
|
gen_op_load_fpr_FT1(rs1);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fnot);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x06c: /* VIS I fxor */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fxor);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x06d: /* VIS I fxors */
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fxors);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x06e: /* VIS I fnand */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fnand);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x06f: /* VIS I fnands */
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fnands);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x070: /* VIS I fand */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fand);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x071: /* VIS I fands */
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fands);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x072: /* VIS I fxnor */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fxnor);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x073: /* VIS I fxnors */
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fxnors);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
2007-04-13 23:49:56 +08:00
|
|
|
case 0x074: /* VIS I fsrc1 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-13 23:49:56 +08:00
|
|
|
break;
|
|
|
|
case 0x075: /* VIS I fsrc1s */
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
2007-04-23 03:14:52 +08:00
|
|
|
case 0x076: /* VIS I fornot2 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fornot);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x077: /* VIS I fornot2s */
|
|
|
|
gen_op_load_fpr_FT1(rs1);
|
|
|
|
gen_op_load_fpr_FT0(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fornots);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
2007-04-13 23:49:56 +08:00
|
|
|
case 0x078: /* VIS I fsrc2 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs2));
|
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-13 23:49:56 +08:00
|
|
|
break;
|
|
|
|
case 0x079: /* VIS I fsrc2s */
|
|
|
|
gen_op_load_fpr_FT0(rs2);
|
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
2007-04-23 03:14:52 +08:00
|
|
|
case 0x07a: /* VIS I fornot1 */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fornot);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x07b: /* VIS I fornot1s */
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fornots);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
|
|
|
case 0x07c: /* VIS I for */
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rs1));
|
|
|
|
gen_op_load_fpr_DT1(DFPREG(rs2));
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_for);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-23 03:14:52 +08:00
|
|
|
break;
|
|
|
|
case 0x07d: /* VIS I fors */
|
|
|
|
gen_op_load_fpr_FT0(rs1);
|
|
|
|
gen_op_load_fpr_FT1(rs2);
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_fors);
|
2007-04-23 03:14:52 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
2007-04-13 23:49:56 +08:00
|
|
|
case 0x07e: /* VIS I fone */
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_movl_DT0_1);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
2007-04-13 23:49:56 +08:00
|
|
|
break;
|
|
|
|
case 0x07f: /* VIS I fones */
|
2008-03-22 01:56:02 +08:00
|
|
|
tcg_gen_helper_0_0(helper_movl_FT0_1);
|
2007-04-13 23:49:56 +08:00
|
|
|
gen_op_store_FT0_fpr(rd);
|
|
|
|
break;
|
2007-04-23 03:14:52 +08:00
|
|
|
case 0x080: /* VIS I shutdown */
|
|
|
|
case 0x081: /* VIS II siam */
|
|
|
|
// XXX
|
|
|
|
goto illegal_insn;
|
2007-04-13 23:49:56 +08:00
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto ncp_insn;
|
2007-04-13 23:49:56 +08:00
|
|
|
#endif
|
|
|
|
} else if (xop == 0x37) { /* V8 CPop2, V9 impdep2 */
|
2007-04-01 23:08:21 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
goto illegal_insn;
|
2007-04-01 23:08:21 +08:00
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto ncp_insn;
|
2007-04-01 23:08:21 +08:00
|
|
|
#endif
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
} else if (xop == 0x39) { /* V9 return */
|
2005-07-02 22:31:34 +08:00
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
2007-07-09 03:48:40 +08:00
|
|
|
save_state(dc);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_reg_T0(rs1);
|
|
|
|
if (IS_IMM) { /* immediate */
|
|
|
|
rs2 = GET_FIELDs(insn, 19, 31);
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_addi_tl(cpu_T[0], cpu_T[0], (int)rs2);
|
2007-09-20 22:54:22 +08:00
|
|
|
} else { /* register */
|
2005-07-02 22:31:34 +08:00
|
|
|
rs2 = GET_FIELD(insn, 27, 31);
|
|
|
|
#if defined(OPTIM)
|
2007-09-20 22:54:22 +08:00
|
|
|
if (rs2) {
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_reg_T1(rs2);
|
|
|
|
gen_op_add_T1_T0();
|
2005-07-02 22:31:34 +08:00
|
|
|
#if defined(OPTIM)
|
2007-09-20 22:54:22 +08:00
|
|
|
}
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
|
|
|
}
|
2008-03-22 01:57:29 +08:00
|
|
|
tcg_gen_helper_0_0(helper_restore);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_mov_pc_npc(dc);
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2008-03-17 03:23:31 +08:00
|
|
|
tcg_gen_mov_tl(cpu_npc, cpu_T[0]);
|
2007-09-20 22:54:22 +08:00
|
|
|
dc->npc = DYNAMIC_PC;
|
|
|
|
goto jmp_insn;
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
} else {
|
2004-12-20 07:18:01 +08:00
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_reg_T0(rs1);
|
|
|
|
if (IS_IMM) { /* immediate */
|
|
|
|
rs2 = GET_FIELDs(insn, 19, 31);
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_addi_tl(cpu_T[0], cpu_T[0], (int)rs2);
|
2007-09-20 22:54:22 +08:00
|
|
|
} else { /* register */
|
2004-12-20 07:18:01 +08:00
|
|
|
rs2 = GET_FIELD(insn, 27, 31);
|
|
|
|
#if defined(OPTIM)
|
2007-09-20 22:54:22 +08:00
|
|
|
if (rs2) {
|
2004-12-20 07:18:01 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_reg_T1(rs2);
|
|
|
|
gen_op_add_T1_T0();
|
2004-12-20 07:18:01 +08:00
|
|
|
#if defined(OPTIM)
|
2007-09-20 22:54:22 +08:00
|
|
|
}
|
2004-10-01 05:55:55 +08:00
|
|
|
#endif
|
2004-01-04 23:01:44 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
switch (xop) {
|
|
|
|
case 0x38: /* jmpl */
|
|
|
|
{
|
|
|
|
if (rd != 0) {
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_movi_tl(cpu_T[1], dc->pc);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_T1_reg(rd);
|
|
|
|
}
|
2005-02-14 04:11:30 +08:00
|
|
|
gen_mov_pc_npc(dc);
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2008-03-17 03:23:31 +08:00
|
|
|
tcg_gen_mov_tl(cpu_npc, cpu_T[0]);
|
2007-09-20 22:54:22 +08:00
|
|
|
dc->npc = DYNAMIC_PC;
|
|
|
|
}
|
|
|
|
goto jmp_insn;
|
2005-07-02 22:31:34 +08:00
|
|
|
#if !defined(CONFIG_USER_ONLY) && !defined(TARGET_SPARC64)
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x39: /* rett, V9 return */
|
|
|
|
{
|
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
2005-02-14 04:11:30 +08:00
|
|
|
gen_mov_pc_npc(dc);
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2008-03-17 03:23:31 +08:00
|
|
|
tcg_gen_mov_tl(cpu_npc, cpu_T[0]);
|
2007-09-20 22:54:22 +08:00
|
|
|
dc->npc = DYNAMIC_PC;
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_helper_0_0(helper_rett);
|
2007-09-20 22:54:22 +08:00
|
|
|
}
|
|
|
|
goto jmp_insn;
|
|
|
|
#endif
|
|
|
|
case 0x3b: /* flush */
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_helper_0_1(helper_flush, cpu_T[0]);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x3c: /* save */
|
|
|
|
save_state(dc);
|
2008-03-22 01:57:29 +08:00
|
|
|
tcg_gen_helper_0_0(helper_save);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
|
|
|
case 0x3d: /* restore */
|
|
|
|
save_state(dc);
|
2008-03-22 01:57:29 +08:00
|
|
|
tcg_gen_helper_0_0(helper_restore);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_T0_reg(rd);
|
|
|
|
break;
|
2005-07-02 22:31:34 +08:00
|
|
|
#if !defined(CONFIG_USER_ONLY) && defined(TARGET_SPARC64)
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x3e: /* V9 done/retry */
|
|
|
|
{
|
|
|
|
switch (rd) {
|
|
|
|
case 0:
|
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
|
|
|
dc->npc = DYNAMIC_PC;
|
|
|
|
dc->pc = DYNAMIC_PC;
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_helper_0_0(helper_done);
|
2007-09-20 22:54:22 +08:00
|
|
|
goto jmp_insn;
|
|
|
|
case 1:
|
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
|
|
|
dc->npc = DYNAMIC_PC;
|
|
|
|
dc->pc = DYNAMIC_PC;
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_helper_0_0(helper_retry);
|
2007-09-20 22:54:22 +08:00
|
|
|
goto jmp_insn;
|
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
2004-01-04 23:01:44 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3: /* load/store instructions */
|
|
|
|
{
|
|
|
|
unsigned int xop = GET_FIELD(insn, 7, 12);
|
|
|
|
rs1 = GET_FIELD(insn, 13, 17);
|
2007-05-08 01:01:15 +08:00
|
|
|
save_state(dc);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_reg_T0(rs1);
|
2007-09-22 03:10:53 +08:00
|
|
|
if (xop == 0x3c || xop == 0x3e)
|
|
|
|
{
|
|
|
|
rs2 = GET_FIELD(insn, 27, 31);
|
|
|
|
gen_movl_reg_T1(rs2);
|
|
|
|
}
|
|
|
|
else if (IS_IMM) { /* immediate */
|
2007-09-20 22:54:22 +08:00
|
|
|
rs2 = GET_FIELDs(insn, 19, 31);
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_addi_tl(cpu_T[0], cpu_T[0], (int)rs2);
|
2007-09-20 22:54:22 +08:00
|
|
|
} else { /* register */
|
|
|
|
rs2 = GET_FIELD(insn, 27, 31);
|
2004-12-20 07:18:01 +08:00
|
|
|
#if defined(OPTIM)
|
2007-09-20 22:54:22 +08:00
|
|
|
if (rs2 != 0) {
|
2004-12-20 07:18:01 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_reg_T1(rs2);
|
|
|
|
gen_op_add_T1_T0();
|
2004-12-20 07:18:01 +08:00
|
|
|
#if defined(OPTIM)
|
2007-09-20 22:54:22 +08:00
|
|
|
}
|
2004-12-20 07:18:01 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
}
|
2007-06-11 04:26:38 +08:00
|
|
|
if (xop < 4 || (xop > 7 && xop < 0x14 && xop != 0x0e) ||
|
|
|
|
(xop > 0x17 && xop <= 0x1d ) ||
|
|
|
|
(xop > 0x2c && xop <= 0x33) || xop == 0x1f || xop == 0x3d) {
|
2007-09-20 22:54:22 +08:00
|
|
|
switch (xop) {
|
2008-02-24 22:10:06 +08:00
|
|
|
case 0x0: /* load unsigned word */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2008-02-24 22:10:06 +08:00
|
|
|
ABI32_MASK(cpu_T[0]);
|
|
|
|
tcg_gen_qemu_ld32u(cpu_T[1], cpu_T[0], dc->mem_idx);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x1: /* load unsigned byte */
|
2008-02-24 22:10:06 +08:00
|
|
|
ABI32_MASK(cpu_T[0]);
|
|
|
|
tcg_gen_qemu_ld8u(cpu_T[1], cpu_T[0], dc->mem_idx);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x2: /* load unsigned halfword */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_1();
|
2008-02-24 22:10:06 +08:00
|
|
|
ABI32_MASK(cpu_T[0]);
|
|
|
|
tcg_gen_qemu_ld16u(cpu_T[1], cpu_T[0], dc->mem_idx);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x3: /* load double word */
|
|
|
|
if (rd & 1)
|
2007-04-01 23:15:36 +08:00
|
|
|
goto illegal_insn;
|
2008-02-24 22:10:06 +08:00
|
|
|
else {
|
|
|
|
gen_op_check_align_T0_7();
|
|
|
|
ABI32_MASK(cpu_T[0]);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_qemu_ld64(cpu_tmp64, cpu_T[0], dc->mem_idx);
|
|
|
|
tcg_gen_trunc_i64_tl(cpu_T[0], cpu_tmp64);
|
|
|
|
tcg_gen_andi_tl(cpu_T[0], cpu_T[0], 0xffffffffULL);
|
2008-02-24 22:10:06 +08:00
|
|
|
gen_movl_T0_reg(rd + 1);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_shri_i64(cpu_tmp64, cpu_tmp64, 32);
|
|
|
|
tcg_gen_trunc_i64_tl(cpu_T[1], cpu_tmp64);
|
|
|
|
tcg_gen_andi_tl(cpu_T[1], cpu_T[1], 0xffffffffULL);
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x9: /* load signed byte */
|
2008-02-24 22:10:06 +08:00
|
|
|
ABI32_MASK(cpu_T[0]);
|
|
|
|
tcg_gen_qemu_ld8s(cpu_T[1], cpu_T[0], dc->mem_idx);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0xa: /* load signed halfword */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_1();
|
2008-02-24 22:10:06 +08:00
|
|
|
ABI32_MASK(cpu_T[0]);
|
|
|
|
tcg_gen_qemu_ld16s(cpu_T[1], cpu_T[0], dc->mem_idx);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0xd: /* ldstub -- XXX: should be atomically */
|
2008-02-24 22:10:06 +08:00
|
|
|
ABI32_MASK(cpu_T[0]);
|
|
|
|
tcg_gen_qemu_ld8s(cpu_T[1], cpu_T[0], dc->mem_idx);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_qemu_st8(tcg_const_tl(0xff), cpu_T[0], dc->mem_idx);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x0f: /* swap register with memory. Also atomically */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_reg_T1(rd);
|
2008-02-24 22:10:06 +08:00
|
|
|
ABI32_MASK(cpu_T[0]);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_qemu_ld32u(cpu_tmp32, cpu_T[0], dc->mem_idx);
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_qemu_st32(cpu_T[1], cpu_T[0], dc->mem_idx);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_extu_i32_tl(cpu_T[1], cpu_tmp32);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
2005-07-02 22:31:34 +08:00
|
|
|
#if !defined(CONFIG_USER_ONLY) || defined(TARGET_SPARC64)
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x10: /* load word alternate */
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
if (IS_IMM)
|
|
|
|
goto illegal_insn;
|
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
2007-07-12 00:43:30 +08:00
|
|
|
#endif
|
2007-10-18 01:34:57 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_ld_asi(insn, 4, 0);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x11: /* load unsigned byte alternate */
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
if (IS_IMM)
|
|
|
|
goto illegal_insn;
|
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
|
|
|
#endif
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_ld_asi(insn, 1, 0);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x12: /* load unsigned halfword alternate */
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
if (IS_IMM)
|
|
|
|
goto illegal_insn;
|
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2007-10-18 01:34:57 +08:00
|
|
|
gen_op_check_align_T0_1();
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_ld_asi(insn, 2, 0);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x13: /* load double word alternate */
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
if (IS_IMM)
|
|
|
|
goto illegal_insn;
|
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
if (rd & 1)
|
2007-04-01 23:15:36 +08:00
|
|
|
goto illegal_insn;
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_7();
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_ldda_asi(insn);
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_movl_T0_reg(rd + 1);
|
|
|
|
break;
|
|
|
|
case 0x19: /* load signed byte alternate */
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
if (IS_IMM)
|
|
|
|
goto illegal_insn;
|
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
|
|
|
#endif
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_ld_asi(insn, 1, 1);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x1a: /* load signed halfword alternate */
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
if (IS_IMM)
|
|
|
|
goto illegal_insn;
|
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2007-10-18 01:34:57 +08:00
|
|
|
gen_op_check_align_T0_1();
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_ld_asi(insn, 2, 1);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x1d: /* ldstuba -- XXX: should be atomically */
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
if (IS_IMM)
|
|
|
|
goto illegal_insn;
|
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
|
|
|
#endif
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_ldstub_asi(insn);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x1f: /* swap reg with alt. memory. Also atomically */
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
if (IS_IMM)
|
|
|
|
goto illegal_insn;
|
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
2007-07-12 00:43:30 +08:00
|
|
|
#endif
|
2007-10-18 01:34:57 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_movl_reg_T1(rd);
|
|
|
|
gen_swap_asi(insn);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
2005-07-02 22:31:34 +08:00
|
|
|
|
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x30: /* ldc */
|
|
|
|
case 0x31: /* ldcsr */
|
|
|
|
case 0x33: /* lddc */
|
|
|
|
goto ncp_insn;
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x08: /* V9 ldsw */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2008-02-24 22:10:06 +08:00
|
|
|
ABI32_MASK(cpu_T[0]);
|
|
|
|
tcg_gen_qemu_ld32s(cpu_T[1], cpu_T[0], dc->mem_idx);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x0b: /* V9 ldx */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_7();
|
2008-02-24 22:10:06 +08:00
|
|
|
ABI32_MASK(cpu_T[0]);
|
|
|
|
tcg_gen_qemu_ld64(cpu_T[1], cpu_T[0], dc->mem_idx);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x18: /* V9 ldswa */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_ld_asi(insn, 4, 1);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x1b: /* V9 ldxa */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_7();
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_ld_asi(insn, 8, 0);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x2d: /* V9 prefetch, no effect */
|
|
|
|
goto skip_move;
|
|
|
|
case 0x30: /* V9 ldfa */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_ldf_asi(insn, 4, rd);
|
2007-09-22 03:10:53 +08:00
|
|
|
goto skip_move;
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x33: /* V9 lddfa */
|
2007-10-01 03:38:12 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_ldf_asi(insn, 8, DFPREG(rd));
|
2007-09-22 03:10:53 +08:00
|
|
|
goto skip_move;
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x3d: /* V9 prefetcha, no effect */
|
|
|
|
goto skip_move;
|
|
|
|
case 0x32: /* V9 ldqfa */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_check_align_T0_3();
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_ldf_asi(insn, 16, QFPREG(rd));
|
2007-11-26 02:40:20 +08:00
|
|
|
goto skip_move;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
|
|
|
gen_movl_T1_reg(rd);
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
skip_move: ;
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
} else if (xop >= 0x20 && xop < 0x24) {
|
2006-06-27 03:53:29 +08:00
|
|
|
if (gen_trap_ifnofpu(dc))
|
|
|
|
goto jmp_insn;
|
2007-09-20 22:54:22 +08:00
|
|
|
switch (xop) {
|
|
|
|
case 0x20: /* load fpreg */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2008-03-22 16:47:14 +08:00
|
|
|
tcg_gen_qemu_ld32u(cpu_tmp32, cpu_T[0], dc->mem_idx);
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env,
|
|
|
|
offsetof(CPUState, fpr[rd]));
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x21: /* load fsr */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2008-03-22 16:47:14 +08:00
|
|
|
tcg_gen_qemu_ld32u(cpu_tmp32, cpu_T[0], dc->mem_idx);
|
|
|
|
tcg_gen_st_i32(cpu_tmp32, cpu_env,
|
|
|
|
offsetof(CPUState, ft0));
|
2008-03-05 04:00:18 +08:00
|
|
|
tcg_gen_helper_0_0(helper_ldfsr);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x22: /* load quad fpreg */
|
2007-11-26 02:40:20 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_check_align_T0_7();
|
|
|
|
gen_op_ldst(ldqf);
|
|
|
|
gen_op_store_QT0_fpr(QFPREG(rd));
|
|
|
|
break;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
goto nfpu_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x23: /* load double fpreg */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_7();
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_ldst(lddf);
|
|
|
|
gen_op_store_DT0_fpr(DFPREG(rd));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
|
|
|
} else if (xop < 8 || (xop >= 0x14 && xop < 0x18) || \
|
|
|
|
xop == 0xe || xop == 0x1e) {
|
|
|
|
gen_movl_reg_T1(rd);
|
|
|
|
switch (xop) {
|
2008-02-24 22:10:06 +08:00
|
|
|
case 0x4: /* store word */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2008-02-24 22:10:06 +08:00
|
|
|
ABI32_MASK(cpu_T[0]);
|
|
|
|
tcg_gen_qemu_st32(cpu_T[1], cpu_T[0], dc->mem_idx);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
2008-02-24 22:10:06 +08:00
|
|
|
case 0x5: /* store byte */
|
|
|
|
ABI32_MASK(cpu_T[0]);
|
|
|
|
tcg_gen_qemu_st8(cpu_T[1], cpu_T[0], dc->mem_idx);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
2008-02-24 22:10:06 +08:00
|
|
|
case 0x6: /* store halfword */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_1();
|
2008-02-24 22:10:06 +08:00
|
|
|
ABI32_MASK(cpu_T[0]);
|
|
|
|
tcg_gen_qemu_st16(cpu_T[1], cpu_T[0], dc->mem_idx);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
2008-02-24 22:10:06 +08:00
|
|
|
case 0x7: /* store double word */
|
2007-09-20 22:54:22 +08:00
|
|
|
if (rd & 1)
|
2007-04-01 23:15:36 +08:00
|
|
|
goto illegal_insn;
|
2008-02-28 01:44:03 +08:00
|
|
|
#ifndef __i386__
|
2008-02-24 22:10:06 +08:00
|
|
|
else {
|
2008-03-22 16:40:28 +08:00
|
|
|
TCGv r_low;
|
2008-02-24 22:10:06 +08:00
|
|
|
|
|
|
|
gen_op_check_align_T0_7();
|
|
|
|
r_low = tcg_temp_new(TCG_TYPE_I32);
|
|
|
|
gen_movl_reg_TN(rd + 1, r_low);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_helper_1_2(helper_pack64, cpu_tmp64, cpu_T[1],
|
2008-02-24 22:10:06 +08:00
|
|
|
r_low);
|
2008-03-22 16:40:28 +08:00
|
|
|
tcg_gen_qemu_st64(cpu_tmp64, cpu_T[0], dc->mem_idx);
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
2008-02-28 01:44:03 +08:00
|
|
|
#else /* __i386__ */
|
|
|
|
gen_op_check_align_T0_7();
|
|
|
|
flush_T2(dc);
|
|
|
|
gen_movl_reg_T2(rd + 1);
|
|
|
|
gen_op_ldst(std);
|
|
|
|
#endif /* __i386__ */
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
2005-07-02 22:31:34 +08:00
|
|
|
#if !defined(CONFIG_USER_ONLY) || defined(TARGET_SPARC64)
|
2008-02-24 22:10:06 +08:00
|
|
|
case 0x14: /* store word alternate */
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
if (IS_IMM)
|
|
|
|
goto illegal_insn;
|
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
2007-07-12 00:43:30 +08:00
|
|
|
#endif
|
|
|
|
gen_op_check_align_T0_3();
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_st_asi(insn, 4);
|
2005-04-10 22:40:58 +08:00
|
|
|
break;
|
2008-02-24 22:10:06 +08:00
|
|
|
case 0x15: /* store byte alternate */
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
if (IS_IMM)
|
|
|
|
goto illegal_insn;
|
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_st_asi(insn, 1);
|
2005-04-10 22:40:58 +08:00
|
|
|
break;
|
2008-02-24 22:10:06 +08:00
|
|
|
case 0x16: /* store halfword alternate */
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
if (IS_IMM)
|
|
|
|
goto illegal_insn;
|
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
2007-07-12 00:43:30 +08:00
|
|
|
#endif
|
|
|
|
gen_op_check_align_T0_1();
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_st_asi(insn, 2);
|
2005-04-10 22:40:58 +08:00
|
|
|
break;
|
2008-02-24 22:10:06 +08:00
|
|
|
case 0x17: /* store double word alternate */
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
if (IS_IMM)
|
|
|
|
goto illegal_insn;
|
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
if (rd & 1)
|
2007-04-01 23:15:36 +08:00
|
|
|
goto illegal_insn;
|
2008-02-24 22:10:06 +08:00
|
|
|
else {
|
|
|
|
gen_op_check_align_T0_7();
|
2008-03-17 03:18:54 +08:00
|
|
|
gen_stda_asi(insn, rd);
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
2005-04-10 22:40:58 +08:00
|
|
|
break;
|
2004-12-20 07:18:01 +08:00
|
|
|
#endif
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x0e: /* V9 stx */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_7();
|
2008-02-24 22:10:06 +08:00
|
|
|
ABI32_MASK(cpu_T[0]);
|
|
|
|
tcg_gen_qemu_st64(cpu_T[1], cpu_T[0], dc->mem_idx);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x1e: /* V9 stxa */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_7();
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_st_asi(insn, 8);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
|
|
|
} else if (xop > 0x23 && xop < 0x28) {
|
2006-06-27 03:53:29 +08:00
|
|
|
if (gen_trap_ifnofpu(dc))
|
|
|
|
goto jmp_insn;
|
2007-09-20 22:54:22 +08:00
|
|
|
switch (xop) {
|
2008-03-22 16:47:14 +08:00
|
|
|
case 0x24: /* store fpreg */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2008-03-22 16:47:14 +08:00
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env,
|
|
|
|
offsetof(CPUState, fpr[rd]));
|
|
|
|
tcg_gen_qemu_st32(cpu_tmp32, cpu_T[0], dc->mem_idx);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x25: /* stfsr, V9 stxfsr */
|
2007-07-12 00:43:30 +08:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
gen_op_check_align_T0_3();
|
|
|
|
#endif
|
2008-03-16 02:11:06 +08:00
|
|
|
tcg_gen_helper_0_0(helper_stfsr);
|
2008-03-22 16:47:14 +08:00
|
|
|
tcg_gen_ld_i32(cpu_tmp32, cpu_env,
|
|
|
|
offsetof(CPUState, ft0));
|
|
|
|
tcg_gen_qemu_st32(cpu_tmp32, cpu_T[0], dc->mem_idx);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
2007-11-26 02:40:20 +08:00
|
|
|
case 0x26:
|
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
/* V9 stqf, store quad fpreg */
|
|
|
|
gen_op_check_align_T0_7();
|
|
|
|
gen_op_load_fpr_QT0(QFPREG(rd));
|
|
|
|
gen_op_ldst(stqf);
|
|
|
|
break;
|
|
|
|
#else
|
|
|
|
goto nfpu_insn;
|
|
|
|
#endif
|
|
|
|
#else /* !TARGET_SPARC64 */
|
|
|
|
/* stdfq, store floating point queue */
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
goto illegal_insn;
|
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
if (!supervisor(dc))
|
|
|
|
goto priv_insn;
|
|
|
|
if (gen_trap_ifnofpu(dc))
|
|
|
|
goto jmp_insn;
|
|
|
|
goto nfq_insn;
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
#endif
|
|
|
|
case 0x27:
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_7();
|
2005-07-02 22:31:34 +08:00
|
|
|
gen_op_load_fpr_DT0(DFPREG(rd));
|
2007-09-20 22:54:22 +08:00
|
|
|
gen_op_ldst(stdf);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
|
|
|
} else if (xop > 0x33 && xop < 0x3f) {
|
|
|
|
switch (xop) {
|
2007-04-06 02:09:15 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x34: /* V9 stfa */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2007-10-01 03:38:12 +08:00
|
|
|
gen_op_load_fpr_FT0(rd);
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_stf_asi(insn, 4, rd);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
2007-11-26 02:40:20 +08:00
|
|
|
case 0x36: /* V9 stqfa */
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
gen_op_check_align_T0_7();
|
|
|
|
gen_op_load_fpr_QT0(QFPREG(rd));
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_stf_asi(insn, 16, QFPREG(rd));
|
2007-11-26 02:40:20 +08:00
|
|
|
break;
|
|
|
|
#else
|
|
|
|
goto nfpu_insn;
|
|
|
|
#endif
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x37: /* V9 stdfa */
|
2007-10-01 03:38:12 +08:00
|
|
|
gen_op_check_align_T0_3();
|
|
|
|
gen_op_load_fpr_DT0(DFPREG(rd));
|
2007-11-26 04:27:35 +08:00
|
|
|
gen_stf_asi(insn, 8, DFPREG(rd));
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x3c: /* V9 casa */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_3();
|
2008-02-24 22:10:06 +08:00
|
|
|
gen_cas_asi(insn, rd);
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_movl_T1_reg(rd);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
|
|
|
case 0x3e: /* V9 casxa */
|
2007-07-12 00:43:30 +08:00
|
|
|
gen_op_check_align_T0_7();
|
2008-02-24 22:10:06 +08:00
|
|
|
gen_casx_asi(insn, rd);
|
2007-09-22 03:10:53 +08:00
|
|
|
gen_movl_T1_reg(rd);
|
2007-09-20 22:54:22 +08:00
|
|
|
break;
|
2007-04-06 02:09:15 +08:00
|
|
|
#else
|
2007-09-20 22:54:22 +08:00
|
|
|
case 0x34: /* stc */
|
|
|
|
case 0x35: /* stcsr */
|
|
|
|
case 0x36: /* stdcq */
|
|
|
|
case 0x37: /* stdc */
|
|
|
|
goto ncp_insn;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
2004-10-01 05:55:55 +08:00
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
else
|
|
|
|
goto illegal_insn;
|
|
|
|
}
|
|
|
|
break;
|
2004-01-04 23:01:44 +08:00
|
|
|
}
|
|
|
|
/* default case for non jump instructions */
|
2004-02-17 04:30:05 +08:00
|
|
|
if (dc->npc == DYNAMIC_PC) {
|
2007-09-20 22:54:22 +08:00
|
|
|
dc->pc = DYNAMIC_PC;
|
|
|
|
gen_op_next_insn();
|
2004-02-17 04:30:05 +08:00
|
|
|
} else if (dc->npc == JUMP_PC) {
|
|
|
|
/* we can do a static jump */
|
2008-03-09 05:36:50 +08:00
|
|
|
gen_branch2(dc, dc->jump_pc[0], dc->jump_pc[1], cpu_T[2]);
|
2004-02-17 04:30:05 +08:00
|
|
|
dc->is_br = 1;
|
|
|
|
} else {
|
2007-09-20 22:54:22 +08:00
|
|
|
dc->pc = dc->npc;
|
|
|
|
dc->npc = dc->npc + 4;
|
2004-01-04 23:01:44 +08:00
|
|
|
}
|
2004-12-20 07:18:01 +08:00
|
|
|
jmp_insn:
|
2004-01-04 23:01:44 +08:00
|
|
|
return;
|
|
|
|
illegal_insn:
|
2004-02-17 04:30:05 +08:00
|
|
|
save_state(dc);
|
2004-01-04 23:01:44 +08:00
|
|
|
gen_op_exception(TT_ILL_INSN);
|
|
|
|
dc->is_br = 1;
|
2004-10-01 05:55:55 +08:00
|
|
|
return;
|
2004-12-20 07:18:01 +08:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2004-10-01 05:55:55 +08:00
|
|
|
priv_insn:
|
|
|
|
save_state(dc);
|
|
|
|
gen_op_exception(TT_PRIV_INSN);
|
|
|
|
dc->is_br = 1;
|
2004-12-20 07:18:01 +08:00
|
|
|
return;
|
|
|
|
nfpu_insn:
|
|
|
|
save_state(dc);
|
|
|
|
gen_op_fpexception_im(FSR_FTT_UNIMPFPOP);
|
|
|
|
dc->is_br = 1;
|
2007-04-01 23:08:21 +08:00
|
|
|
return;
|
2007-11-26 02:40:20 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
2007-04-06 02:12:08 +08:00
|
|
|
nfq_insn:
|
|
|
|
save_state(dc);
|
|
|
|
gen_op_fpexception_im(FSR_FTT_SEQ_ERROR);
|
|
|
|
dc->is_br = 1;
|
|
|
|
return;
|
|
|
|
#endif
|
2007-11-26 02:40:20 +08:00
|
|
|
#endif
|
2007-04-01 23:08:21 +08:00
|
|
|
#ifndef TARGET_SPARC64
|
|
|
|
ncp_insn:
|
|
|
|
save_state(dc);
|
|
|
|
gen_op_exception(TT_NCP_INSN);
|
|
|
|
dc->is_br = 1;
|
|
|
|
return;
|
|
|
|
#endif
|
2003-10-01 04:36:07 +08:00
|
|
|
}
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
static void tcg_macro_func(TCGContext *s, int macro_id, const int *dead_args)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2004-01-04 23:01:44 +08:00
|
|
|
static inline int gen_intermediate_code_internal(TranslationBlock * tb,
|
2007-09-20 22:54:22 +08:00
|
|
|
int spc, CPUSPARCState *env)
|
2003-10-01 04:36:07 +08:00
|
|
|
{
|
2004-02-17 04:30:05 +08:00
|
|
|
target_ulong pc_start, last_pc;
|
2004-01-04 23:01:44 +08:00
|
|
|
uint16_t *gen_opc_end;
|
|
|
|
DisasContext dc1, *dc = &dc1;
|
2004-10-01 05:55:55 +08:00
|
|
|
int j, lj = -1;
|
2004-01-04 23:01:44 +08:00
|
|
|
|
|
|
|
memset(dc, 0, sizeof(DisasContext));
|
|
|
|
dc->tb = tb;
|
2004-02-17 04:30:05 +08:00
|
|
|
pc_start = tb->pc;
|
2004-01-04 23:01:44 +08:00
|
|
|
dc->pc = pc_start;
|
2004-12-20 07:18:01 +08:00
|
|
|
last_pc = dc->pc;
|
2004-02-17 04:30:05 +08:00
|
|
|
dc->npc = (target_ulong) tb->cs_base;
|
2007-10-15 01:07:21 +08:00
|
|
|
dc->mem_idx = cpu_mmu_index(env);
|
|
|
|
dc->fpu_enabled = cpu_fpu_enabled(env);
|
2004-01-04 23:01:44 +08:00
|
|
|
gen_opc_end = gen_opc_buf + OPC_MAX_SIZE;
|
|
|
|
|
2008-02-24 22:10:06 +08:00
|
|
|
cpu_tmp0 = tcg_temp_new(TCG_TYPE_TL);
|
2008-03-22 16:40:28 +08:00
|
|
|
cpu_tmp32 = tcg_temp_new(TCG_TYPE_I32);
|
|
|
|
cpu_tmp64 = tcg_temp_new(TCG_TYPE_I64);
|
2008-02-24 22:10:06 +08:00
|
|
|
|
2004-01-04 23:01:44 +08:00
|
|
|
do {
|
2004-10-01 05:55:55 +08:00
|
|
|
if (env->nb_breakpoints > 0) {
|
|
|
|
for(j = 0; j < env->nb_breakpoints; j++) {
|
|
|
|
if (env->breakpoints[j] == dc->pc) {
|
2007-09-20 22:54:22 +08:00
|
|
|
if (dc->pc != pc_start)
|
|
|
|
save_state(dc);
|
2008-02-24 22:10:06 +08:00
|
|
|
tcg_gen_helper_0_0(helper_debug);
|
2008-02-01 18:50:11 +08:00
|
|
|
tcg_gen_exit_tb(0);
|
2007-09-20 22:54:22 +08:00
|
|
|
dc->is_br = 1;
|
2004-12-20 07:18:01 +08:00
|
|
|
goto exit_gen_loop;
|
2004-10-01 05:55:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (spc) {
|
|
|
|
if (loglevel > 0)
|
|
|
|
fprintf(logfile, "Search PC...\n");
|
|
|
|
j = gen_opc_ptr - gen_opc_buf;
|
|
|
|
if (lj < j) {
|
|
|
|
lj++;
|
|
|
|
while (lj < j)
|
|
|
|
gen_opc_instr_start[lj++] = 0;
|
|
|
|
gen_opc_pc[lj] = dc->pc;
|
|
|
|
gen_opc_npc[lj] = dc->npc;
|
|
|
|
gen_opc_instr_start[lj] = 1;
|
|
|
|
}
|
|
|
|
}
|
2007-09-20 22:54:22 +08:00
|
|
|
last_pc = dc->pc;
|
|
|
|
disas_sparc_insn(dc);
|
|
|
|
|
|
|
|
if (dc->is_br)
|
|
|
|
break;
|
|
|
|
/* if the next PC is different, we abort now */
|
|
|
|
if (dc->pc != (last_pc + 4))
|
|
|
|
break;
|
2005-04-10 22:40:58 +08:00
|
|
|
/* if we reach a page boundary, we stop generation so that the
|
|
|
|
PC of a TT_TFAULT exception is always in the right page */
|
|
|
|
if ((dc->pc & (TARGET_PAGE_SIZE - 1)) == 0)
|
|
|
|
break;
|
2004-12-20 07:18:01 +08:00
|
|
|
/* if single step mode, we generate only one instruction and
|
|
|
|
generate an exception */
|
|
|
|
if (env->singlestep_enabled) {
|
2005-07-02 22:31:34 +08:00
|
|
|
gen_jmp_im(dc->pc);
|
2008-02-01 18:50:11 +08:00
|
|
|
tcg_gen_exit_tb(0);
|
2004-12-20 07:18:01 +08:00
|
|
|
break;
|
|
|
|
}
|
2004-01-04 23:01:44 +08:00
|
|
|
} while ((gen_opc_ptr < gen_opc_end) &&
|
2007-09-20 22:54:22 +08:00
|
|
|
(dc->pc - pc_start) < (TARGET_PAGE_SIZE - 32));
|
2004-12-20 07:18:01 +08:00
|
|
|
|
|
|
|
exit_gen_loop:
|
2004-02-17 04:30:05 +08:00
|
|
|
if (!dc->is_br) {
|
2007-09-17 05:08:06 +08:00
|
|
|
if (dc->pc != DYNAMIC_PC &&
|
2004-02-17 04:30:05 +08:00
|
|
|
(dc->npc != DYNAMIC_PC && dc->npc != JUMP_PC)) {
|
|
|
|
/* static PC and NPC: we can use direct chaining */
|
2007-06-26 03:52:58 +08:00
|
|
|
gen_branch(dc, dc->pc, dc->npc);
|
2004-02-17 04:30:05 +08:00
|
|
|
} else {
|
|
|
|
if (dc->pc != DYNAMIC_PC)
|
2005-07-02 22:31:34 +08:00
|
|
|
gen_jmp_im(dc->pc);
|
2004-02-17 04:30:05 +08:00
|
|
|
save_npc(dc);
|
2008-02-01 18:50:11 +08:00
|
|
|
tcg_gen_exit_tb(0);
|
2004-02-17 04:30:05 +08:00
|
|
|
}
|
|
|
|
}
|
2004-01-04 23:01:44 +08:00
|
|
|
*gen_opc_ptr = INDEX_op_end;
|
2004-10-01 05:55:55 +08:00
|
|
|
if (spc) {
|
|
|
|
j = gen_opc_ptr - gen_opc_buf;
|
|
|
|
lj++;
|
|
|
|
while (lj <= j)
|
|
|
|
gen_opc_instr_start[lj++] = 0;
|
|
|
|
#if 0
|
|
|
|
if (loglevel > 0) {
|
|
|
|
page_dump(logfile);
|
|
|
|
}
|
|
|
|
#endif
|
2005-03-20 20:43:29 +08:00
|
|
|
gen_opc_jump_pc[0] = dc->jump_pc[0];
|
|
|
|
gen_opc_jump_pc[1] = dc->jump_pc[1];
|
2004-10-01 05:55:55 +08:00
|
|
|
} else {
|
2004-12-20 07:18:01 +08:00
|
|
|
tb->size = last_pc + 4 - pc_start;
|
2004-10-01 05:55:55 +08:00
|
|
|
}
|
2003-10-01 04:36:07 +08:00
|
|
|
#ifdef DEBUG_DISAS
|
2004-03-22 01:08:23 +08:00
|
|
|
if (loglevel & CPU_LOG_TB_IN_ASM) {
|
2007-09-20 22:54:22 +08:00
|
|
|
fprintf(logfile, "--------------\n");
|
|
|
|
fprintf(logfile, "IN: %s\n", lookup_symbol(pc_start));
|
|
|
|
target_disas(logfile, pc_start, last_pc + 4 - pc_start, 0);
|
|
|
|
fprintf(logfile, "\n");
|
2004-01-04 23:01:44 +08:00
|
|
|
}
|
2003-10-01 04:36:07 +08:00
|
|
|
#endif
|
2004-01-04 23:01:44 +08:00
|
|
|
return 0;
|
2003-10-01 04:36:07 +08:00
|
|
|
}
|
|
|
|
|
2004-01-04 23:01:44 +08:00
|
|
|
int gen_intermediate_code(CPUSPARCState * env, TranslationBlock * tb)
|
2003-10-01 04:36:07 +08:00
|
|
|
{
|
2004-10-01 05:55:55 +08:00
|
|
|
return gen_intermediate_code_internal(tb, 0, env);
|
2003-10-01 04:36:07 +08:00
|
|
|
}
|
|
|
|
|
2004-01-04 23:01:44 +08:00
|
|
|
int gen_intermediate_code_pc(CPUSPARCState * env, TranslationBlock * tb)
|
2003-10-01 04:36:07 +08:00
|
|
|
{
|
2004-10-01 05:55:55 +08:00
|
|
|
return gen_intermediate_code_internal(tb, 1, env);
|
2003-10-01 04:36:07 +08:00
|
|
|
}
|
|
|
|
|
2004-12-20 07:18:01 +08:00
|
|
|
void cpu_reset(CPUSPARCState *env)
|
|
|
|
{
|
2005-01-28 08:01:00 +08:00
|
|
|
tlb_flush(env, 1);
|
2004-01-04 23:01:44 +08:00
|
|
|
env->cwp = 0;
|
|
|
|
env->wim = 1;
|
|
|
|
env->regwptr = env->regbase + (env->cwp * 16);
|
2004-10-01 05:55:55 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
2004-01-04 23:01:44 +08:00
|
|
|
env->user_mode_only = 1;
|
2006-07-19 05:14:09 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-07-08 04:48:42 +08:00
|
|
|
env->cleanwin = NWINDOWS - 2;
|
|
|
|
env->cansave = NWINDOWS - 2;
|
|
|
|
env->pstate = PS_RMO | PS_PEF | PS_IE;
|
|
|
|
env->asi = 0x82; // Primary no-fault
|
2006-07-19 05:14:09 +08:00
|
|
|
#endif
|
2004-10-01 05:55:55 +08:00
|
|
|
#else
|
2007-04-30 03:49:15 +08:00
|
|
|
env->psret = 0;
|
2004-10-01 05:55:55 +08:00
|
|
|
env->psrs = 1;
|
2005-02-14 04:11:30 +08:00
|
|
|
env->psrps = 1;
|
2005-07-02 22:31:34 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2005-07-23 22:27:54 +08:00
|
|
|
env->pstate = PS_PRIV;
|
2007-10-15 01:07:21 +08:00
|
|
|
env->hpstate = HS_PRIV;
|
2005-07-23 22:27:54 +08:00
|
|
|
env->pc = 0x1fff0000000ULL;
|
2008-03-06 01:59:48 +08:00
|
|
|
env->tsptr = &env->ts[env->tl];
|
2005-07-02 22:31:34 +08:00
|
|
|
#else
|
2007-09-25 03:44:09 +08:00
|
|
|
env->pc = 0;
|
2007-04-30 03:49:15 +08:00
|
|
|
env->mmuregs[0] &= ~(MMU_E | MMU_NF);
|
2007-11-08 01:03:37 +08:00
|
|
|
env->mmuregs[0] |= env->mmu_bm;
|
2005-07-02 22:31:34 +08:00
|
|
|
#endif
|
2005-07-23 22:27:54 +08:00
|
|
|
env->npc = env->pc + 4;
|
2004-10-01 05:55:55 +08:00
|
|
|
#endif
|
2004-12-20 07:18:01 +08:00
|
|
|
}
|
|
|
|
|
2007-11-10 23:15:54 +08:00
|
|
|
CPUSPARCState *cpu_sparc_init(const char *cpu_model)
|
2004-12-20 07:18:01 +08:00
|
|
|
{
|
|
|
|
CPUSPARCState *env;
|
2007-11-10 23:15:54 +08:00
|
|
|
const sparc_def_t *def;
|
2008-02-24 22:10:06 +08:00
|
|
|
static int inited;
|
2008-03-15 01:35:02 +08:00
|
|
|
unsigned int i;
|
|
|
|
static const char * const gregnames[8] = {
|
|
|
|
NULL, // g0 not used
|
|
|
|
"g1",
|
|
|
|
"g2",
|
|
|
|
"g3",
|
|
|
|
"g4",
|
|
|
|
"g5",
|
|
|
|
"g6",
|
|
|
|
"g7",
|
|
|
|
};
|
2007-11-10 23:15:54 +08:00
|
|
|
|
|
|
|
def = cpu_sparc_find_by_name(cpu_model);
|
|
|
|
if (!def)
|
|
|
|
return NULL;
|
2004-12-20 07:18:01 +08:00
|
|
|
|
2005-11-22 07:33:12 +08:00
|
|
|
env = qemu_mallocz(sizeof(CPUSPARCState));
|
|
|
|
if (!env)
|
2007-09-20 22:54:22 +08:00
|
|
|
return NULL;
|
2005-11-22 07:33:12 +08:00
|
|
|
cpu_exec_init(env);
|
2007-12-09 10:22:57 +08:00
|
|
|
env->cpu_model_str = cpu_model;
|
2007-11-10 23:15:54 +08:00
|
|
|
env->version = def->iu_version;
|
|
|
|
env->fsr = def->fpu_version;
|
|
|
|
#if !defined(TARGET_SPARC64)
|
|
|
|
env->mmu_bm = def->mmu_bm;
|
2008-02-12 02:27:33 +08:00
|
|
|
env->mmu_ctpr_mask = def->mmu_ctpr_mask;
|
|
|
|
env->mmu_cxr_mask = def->mmu_cxr_mask;
|
|
|
|
env->mmu_sfsr_mask = def->mmu_sfsr_mask;
|
|
|
|
env->mmu_trcr_mask = def->mmu_trcr_mask;
|
2007-11-10 23:15:54 +08:00
|
|
|
env->mmuregs[0] |= def->mmu_version;
|
|
|
|
cpu_sparc_set_id(env, 0);
|
|
|
|
#endif
|
2008-02-24 22:10:06 +08:00
|
|
|
|
|
|
|
/* init various static tables */
|
|
|
|
if (!inited) {
|
|
|
|
inited = 1;
|
|
|
|
|
|
|
|
tcg_set_macro_func(&tcg_ctx, tcg_macro_func);
|
|
|
|
cpu_env = tcg_global_reg_new(TCG_TYPE_PTR, TCG_AREG0, "env");
|
2008-03-12 04:59:02 +08:00
|
|
|
cpu_regwptr = tcg_global_mem_new(TCG_TYPE_PTR, TCG_AREG0,
|
|
|
|
offsetof(CPUState, regwptr),
|
|
|
|
"regwptr");
|
2008-02-24 22:10:06 +08:00
|
|
|
//#if TARGET_LONG_BITS > HOST_LONG_BITS
|
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
cpu_T[0] = tcg_global_mem_new(TCG_TYPE_TL,
|
|
|
|
TCG_AREG0, offsetof(CPUState, t0), "T0");
|
|
|
|
cpu_T[1] = tcg_global_mem_new(TCG_TYPE_TL,
|
|
|
|
TCG_AREG0, offsetof(CPUState, t1), "T1");
|
|
|
|
cpu_T[2] = tcg_global_mem_new(TCG_TYPE_TL,
|
|
|
|
TCG_AREG0, offsetof(CPUState, t2), "T2");
|
2008-03-14 04:45:31 +08:00
|
|
|
cpu_xcc = tcg_global_mem_new(TCG_TYPE_I32,
|
|
|
|
TCG_AREG0, offsetof(CPUState, xcc),
|
|
|
|
"xcc");
|
2008-02-24 22:10:06 +08:00
|
|
|
#else
|
|
|
|
cpu_T[0] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG1, "T0");
|
|
|
|
cpu_T[1] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG2, "T1");
|
|
|
|
cpu_T[2] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG3, "T2");
|
|
|
|
#endif
|
2008-03-14 04:45:31 +08:00
|
|
|
cpu_cc_src = tcg_global_mem_new(TCG_TYPE_TL,
|
|
|
|
TCG_AREG0, offsetof(CPUState, cc_src),
|
|
|
|
"cc_src");
|
2008-03-17 03:22:18 +08:00
|
|
|
cpu_cc_src2 = tcg_global_mem_new(TCG_TYPE_TL, TCG_AREG0,
|
|
|
|
offsetof(CPUState, cc_src2),
|
|
|
|
"cc_src2");
|
2008-03-14 04:45:31 +08:00
|
|
|
cpu_cc_dst = tcg_global_mem_new(TCG_TYPE_TL,
|
|
|
|
TCG_AREG0, offsetof(CPUState, cc_dst),
|
|
|
|
"cc_dst");
|
|
|
|
cpu_psr = tcg_global_mem_new(TCG_TYPE_I32,
|
|
|
|
TCG_AREG0, offsetof(CPUState, psr),
|
|
|
|
"psr");
|
2008-03-16 02:12:11 +08:00
|
|
|
cpu_fsr = tcg_global_mem_new(TCG_TYPE_TL,
|
|
|
|
TCG_AREG0, offsetof(CPUState, fsr),
|
|
|
|
"fsr");
|
2008-03-17 03:23:31 +08:00
|
|
|
cpu_pc = tcg_global_mem_new(TCG_TYPE_TL,
|
|
|
|
TCG_AREG0, offsetof(CPUState, pc),
|
|
|
|
"pc");
|
|
|
|
cpu_npc = tcg_global_mem_new(TCG_TYPE_TL,
|
|
|
|
TCG_AREG0, offsetof(CPUState, npc),
|
|
|
|
"npc");
|
2008-03-15 01:35:02 +08:00
|
|
|
for (i = 1; i < 8; i++)
|
|
|
|
cpu_gregs[i] = tcg_global_mem_new(TCG_TYPE_TL, TCG_AREG0,
|
|
|
|
offsetof(CPUState, gregs[i]),
|
|
|
|
gregnames[i]);
|
2008-02-24 22:10:06 +08:00
|
|
|
}
|
|
|
|
|
2007-11-10 23:15:54 +08:00
|
|
|
cpu_reset(env);
|
|
|
|
|
|
|
|
return env;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cpu_sparc_set_id(CPUSPARCState *env, unsigned int cpu)
|
|
|
|
{
|
|
|
|
#if !defined(TARGET_SPARC64)
|
|
|
|
env->mxccregs[7] = ((cpu + 8) & 0xf) << 24;
|
|
|
|
#endif
|
2003-10-01 04:36:07 +08:00
|
|
|
}
|
|
|
|
|
2007-03-25 15:55:52 +08:00
|
|
|
static const sparc_def_t sparc_defs[] = {
|
|
|
|
#ifdef TARGET_SPARC64
|
2007-11-10 17:32:02 +08:00
|
|
|
{
|
|
|
|
.name = "Fujitsu Sparc64",
|
|
|
|
.iu_version = ((0x04ULL << 48) | (0x02ULL << 32) | (0ULL << 24)
|
|
|
|
| (MAXTL << 8) | (NWINDOWS - 1)),
|
|
|
|
.fpu_version = 0x00000000,
|
|
|
|
.mmu_version = 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Fujitsu Sparc64 III",
|
|
|
|
.iu_version = ((0x04ULL << 48) | (0x03ULL << 32) | (0ULL << 24)
|
|
|
|
| (MAXTL << 8) | (NWINDOWS - 1)),
|
|
|
|
.fpu_version = 0x00000000,
|
|
|
|
.mmu_version = 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Fujitsu Sparc64 IV",
|
|
|
|
.iu_version = ((0x04ULL << 48) | (0x04ULL << 32) | (0ULL << 24)
|
|
|
|
| (MAXTL << 8) | (NWINDOWS - 1)),
|
|
|
|
.fpu_version = 0x00000000,
|
|
|
|
.mmu_version = 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Fujitsu Sparc64 V",
|
|
|
|
.iu_version = ((0x04ULL << 48) | (0x05ULL << 32) | (0x51ULL << 24)
|
|
|
|
| (MAXTL << 8) | (NWINDOWS - 1)),
|
|
|
|
.fpu_version = 0x00000000,
|
|
|
|
.mmu_version = 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "TI UltraSparc I",
|
|
|
|
.iu_version = ((0x17ULL << 48) | (0x10ULL << 32) | (0x40ULL << 24)
|
|
|
|
| (MAXTL << 8) | (NWINDOWS - 1)),
|
|
|
|
.fpu_version = 0x00000000,
|
|
|
|
.mmu_version = 0,
|
|
|
|
},
|
2007-03-25 15:55:52 +08:00
|
|
|
{
|
|
|
|
.name = "TI UltraSparc II",
|
2007-11-10 17:32:02 +08:00
|
|
|
.iu_version = ((0x17ULL << 48) | (0x11ULL << 32) | (0x20ULL << 24)
|
|
|
|
| (MAXTL << 8) | (NWINDOWS - 1)),
|
|
|
|
.fpu_version = 0x00000000,
|
|
|
|
.mmu_version = 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "TI UltraSparc IIi",
|
|
|
|
.iu_version = ((0x17ULL << 48) | (0x12ULL << 32) | (0x91ULL << 24)
|
|
|
|
| (MAXTL << 8) | (NWINDOWS - 1)),
|
|
|
|
.fpu_version = 0x00000000,
|
|
|
|
.mmu_version = 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "TI UltraSparc IIe",
|
|
|
|
.iu_version = ((0x17ULL << 48) | (0x13ULL << 32) | (0x14ULL << 24)
|
|
|
|
| (MAXTL << 8) | (NWINDOWS - 1)),
|
|
|
|
.fpu_version = 0x00000000,
|
|
|
|
.mmu_version = 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Sun UltraSparc III",
|
|
|
|
.iu_version = ((0x3eULL << 48) | (0x14ULL << 32) | (0x34ULL << 24)
|
|
|
|
| (MAXTL << 8) | (NWINDOWS - 1)),
|
|
|
|
.fpu_version = 0x00000000,
|
|
|
|
.mmu_version = 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Sun UltraSparc III Cu",
|
|
|
|
.iu_version = ((0x3eULL << 48) | (0x15ULL << 32) | (0x41ULL << 24)
|
|
|
|
| (MAXTL << 8) | (NWINDOWS - 1)),
|
|
|
|
.fpu_version = 0x00000000,
|
|
|
|
.mmu_version = 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Sun UltraSparc IIIi",
|
|
|
|
.iu_version = ((0x3eULL << 48) | (0x16ULL << 32) | (0x34ULL << 24)
|
|
|
|
| (MAXTL << 8) | (NWINDOWS - 1)),
|
|
|
|
.fpu_version = 0x00000000,
|
|
|
|
.mmu_version = 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Sun UltraSparc IV",
|
|
|
|
.iu_version = ((0x3eULL << 48) | (0x18ULL << 32) | (0x31ULL << 24)
|
|
|
|
| (MAXTL << 8) | (NWINDOWS - 1)),
|
|
|
|
.fpu_version = 0x00000000,
|
|
|
|
.mmu_version = 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Sun UltraSparc IV+",
|
|
|
|
.iu_version = ((0x3eULL << 48) | (0x19ULL << 32) | (0x22ULL << 24)
|
|
|
|
| (MAXTL << 8) | (NWINDOWS - 1)),
|
|
|
|
.fpu_version = 0x00000000,
|
|
|
|
.mmu_version = 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Sun UltraSparc IIIi+",
|
|
|
|
.iu_version = ((0x3eULL << 48) | (0x22ULL << 32) | (0ULL << 24)
|
|
|
|
| (MAXTL << 8) | (NWINDOWS - 1)),
|
|
|
|
.fpu_version = 0x00000000,
|
|
|
|
.mmu_version = 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "NEC UltraSparc I",
|
|
|
|
.iu_version = ((0x22ULL << 48) | (0x10ULL << 32) | (0x40ULL << 24)
|
2007-03-25 15:55:52 +08:00
|
|
|
| (MAXTL << 8) | (NWINDOWS - 1)),
|
|
|
|
.fpu_version = 0x00000000,
|
|
|
|
.mmu_version = 0,
|
|
|
|
},
|
|
|
|
#else
|
2007-11-10 03:08:43 +08:00
|
|
|
{
|
|
|
|
.name = "Fujitsu MB86900",
|
|
|
|
.iu_version = 0x00 << 24, /* Impl 0, ver 0 */
|
|
|
|
.fpu_version = 4 << 17, /* FPU version 4 (Meiko) */
|
|
|
|
.mmu_version = 0x00 << 24, /* Impl 0, ver 0 */
|
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0x007ffff0,
|
|
|
|
.mmu_cxr_mask = 0x0000003f,
|
|
|
|
.mmu_sfsr_mask = 0xffffffff,
|
|
|
|
.mmu_trcr_mask = 0xffffffff,
|
2007-11-10 03:08:43 +08:00
|
|
|
},
|
2007-03-25 15:55:52 +08:00
|
|
|
{
|
|
|
|
.name = "Fujitsu MB86904",
|
|
|
|
.iu_version = 0x04 << 24, /* Impl 0, ver 4 */
|
|
|
|
.fpu_version = 4 << 17, /* FPU version 4 (Meiko) */
|
|
|
|
.mmu_version = 0x04 << 24, /* Impl 0, ver 4 */
|
2007-11-08 01:03:37 +08:00
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0x00ffffc0,
|
|
|
|
.mmu_cxr_mask = 0x000000ff,
|
|
|
|
.mmu_sfsr_mask = 0x00016fff,
|
|
|
|
.mmu_trcr_mask = 0x00ffffff,
|
2007-03-25 15:55:52 +08:00
|
|
|
},
|
2007-04-01 23:55:28 +08:00
|
|
|
{
|
2007-04-30 03:54:32 +08:00
|
|
|
.name = "Fujitsu MB86907",
|
|
|
|
.iu_version = 0x05 << 24, /* Impl 0, ver 5 */
|
|
|
|
.fpu_version = 4 << 17, /* FPU version 4 (Meiko) */
|
|
|
|
.mmu_version = 0x05 << 24, /* Impl 0, ver 5 */
|
2007-11-08 01:03:37 +08:00
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0xffffffc0,
|
|
|
|
.mmu_cxr_mask = 0x000000ff,
|
|
|
|
.mmu_sfsr_mask = 0x00016fff,
|
|
|
|
.mmu_trcr_mask = 0xffffffff,
|
2007-04-30 03:54:32 +08:00
|
|
|
},
|
2007-11-10 03:08:43 +08:00
|
|
|
{
|
|
|
|
.name = "LSI L64811",
|
|
|
|
.iu_version = 0x10 << 24, /* Impl 1, ver 0 */
|
|
|
|
.fpu_version = 1 << 17, /* FPU version 1 (LSI L64814) */
|
|
|
|
.mmu_version = 0x10 << 24,
|
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0x007ffff0,
|
|
|
|
.mmu_cxr_mask = 0x0000003f,
|
|
|
|
.mmu_sfsr_mask = 0xffffffff,
|
|
|
|
.mmu_trcr_mask = 0xffffffff,
|
2007-11-10 03:08:43 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Cypress CY7C601",
|
|
|
|
.iu_version = 0x11 << 24, /* Impl 1, ver 1 */
|
|
|
|
.fpu_version = 3 << 17, /* FPU version 3 (Cypress CY7C602) */
|
|
|
|
.mmu_version = 0x10 << 24,
|
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0x007ffff0,
|
|
|
|
.mmu_cxr_mask = 0x0000003f,
|
|
|
|
.mmu_sfsr_mask = 0xffffffff,
|
|
|
|
.mmu_trcr_mask = 0xffffffff,
|
2007-11-10 03:08:43 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Cypress CY7C611",
|
|
|
|
.iu_version = 0x13 << 24, /* Impl 1, ver 3 */
|
|
|
|
.fpu_version = 3 << 17, /* FPU version 3 (Cypress CY7C602) */
|
|
|
|
.mmu_version = 0x10 << 24,
|
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0x007ffff0,
|
|
|
|
.mmu_cxr_mask = 0x0000003f,
|
|
|
|
.mmu_sfsr_mask = 0xffffffff,
|
|
|
|
.mmu_trcr_mask = 0xffffffff,
|
2007-11-10 03:08:43 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "TI SuperSparc II",
|
|
|
|
.iu_version = 0x40000000,
|
|
|
|
.fpu_version = 0 << 17,
|
|
|
|
.mmu_version = 0x04000000,
|
|
|
|
.mmu_bm = 0x00002000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0xffffffc0,
|
|
|
|
.mmu_cxr_mask = 0x0000ffff,
|
|
|
|
.mmu_sfsr_mask = 0xffffffff,
|
|
|
|
.mmu_trcr_mask = 0xffffffff,
|
2007-11-10 03:08:43 +08:00
|
|
|
},
|
2007-04-30 03:54:32 +08:00
|
|
|
{
|
|
|
|
.name = "TI MicroSparc I",
|
|
|
|
.iu_version = 0x41000000,
|
|
|
|
.fpu_version = 4 << 17,
|
|
|
|
.mmu_version = 0x41000000,
|
2007-11-08 01:03:37 +08:00
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0x007ffff0,
|
|
|
|
.mmu_cxr_mask = 0x0000003f,
|
|
|
|
.mmu_sfsr_mask = 0x00016fff,
|
|
|
|
.mmu_trcr_mask = 0x0000003f,
|
2007-04-30 03:54:32 +08:00
|
|
|
},
|
|
|
|
{
|
2007-11-10 03:08:43 +08:00
|
|
|
.name = "TI MicroSparc II",
|
|
|
|
.iu_version = 0x42000000,
|
|
|
|
.fpu_version = 4 << 17,
|
|
|
|
.mmu_version = 0x02000000,
|
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0x00ffffc0,
|
|
|
|
.mmu_cxr_mask = 0x000000ff,
|
2008-03-07 00:13:51 +08:00
|
|
|
.mmu_sfsr_mask = 0x00016fff,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_trcr_mask = 0x00ffffff,
|
2007-11-10 03:08:43 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "TI MicroSparc IIep",
|
|
|
|
.iu_version = 0x42000000,
|
|
|
|
.fpu_version = 4 << 17,
|
|
|
|
.mmu_version = 0x04000000,
|
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0x00ffffc0,
|
|
|
|
.mmu_cxr_mask = 0x000000ff,
|
|
|
|
.mmu_sfsr_mask = 0x00016bff,
|
|
|
|
.mmu_trcr_mask = 0x00ffffff,
|
2007-11-10 03:08:43 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "TI SuperSparc 51",
|
|
|
|
.iu_version = 0x43000000,
|
2007-04-30 03:54:32 +08:00
|
|
|
.fpu_version = 0 << 17,
|
|
|
|
.mmu_version = 0x04000000,
|
2007-11-08 01:03:37 +08:00
|
|
|
.mmu_bm = 0x00002000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0xffffffc0,
|
|
|
|
.mmu_cxr_mask = 0x0000ffff,
|
|
|
|
.mmu_sfsr_mask = 0xffffffff,
|
|
|
|
.mmu_trcr_mask = 0xffffffff,
|
2007-04-30 03:54:32 +08:00
|
|
|
},
|
|
|
|
{
|
2007-11-10 03:08:43 +08:00
|
|
|
.name = "TI SuperSparc 61",
|
|
|
|
.iu_version = 0x44000000,
|
|
|
|
.fpu_version = 0 << 17,
|
|
|
|
.mmu_version = 0x04000000,
|
|
|
|
.mmu_bm = 0x00002000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0xffffffc0,
|
|
|
|
.mmu_cxr_mask = 0x0000ffff,
|
|
|
|
.mmu_sfsr_mask = 0xffffffff,
|
|
|
|
.mmu_trcr_mask = 0xffffffff,
|
2007-11-10 03:08:43 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Ross RT625",
|
2007-04-30 03:54:32 +08:00
|
|
|
.iu_version = 0x1e000000,
|
|
|
|
.fpu_version = 1 << 17,
|
2007-11-10 03:08:43 +08:00
|
|
|
.mmu_version = 0x1e000000,
|
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0x007ffff0,
|
|
|
|
.mmu_cxr_mask = 0x0000003f,
|
|
|
|
.mmu_sfsr_mask = 0xffffffff,
|
|
|
|
.mmu_trcr_mask = 0xffffffff,
|
2007-11-10 03:08:43 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Ross RT620",
|
|
|
|
.iu_version = 0x1f000000,
|
|
|
|
.fpu_version = 1 << 17,
|
|
|
|
.mmu_version = 0x1f000000,
|
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0x007ffff0,
|
|
|
|
.mmu_cxr_mask = 0x0000003f,
|
|
|
|
.mmu_sfsr_mask = 0xffffffff,
|
|
|
|
.mmu_trcr_mask = 0xffffffff,
|
2007-11-10 03:08:43 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "BIT B5010",
|
|
|
|
.iu_version = 0x20000000,
|
|
|
|
.fpu_version = 0 << 17, /* B5010/B5110/B5120/B5210 */
|
|
|
|
.mmu_version = 0x20000000,
|
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0x007ffff0,
|
|
|
|
.mmu_cxr_mask = 0x0000003f,
|
|
|
|
.mmu_sfsr_mask = 0xffffffff,
|
|
|
|
.mmu_trcr_mask = 0xffffffff,
|
2007-11-10 03:08:43 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Matsushita MN10501",
|
|
|
|
.iu_version = 0x50000000,
|
|
|
|
.fpu_version = 0 << 17,
|
|
|
|
.mmu_version = 0x50000000,
|
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0x007ffff0,
|
|
|
|
.mmu_cxr_mask = 0x0000003f,
|
|
|
|
.mmu_sfsr_mask = 0xffffffff,
|
|
|
|
.mmu_trcr_mask = 0xffffffff,
|
2007-11-10 03:08:43 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Weitek W8601",
|
|
|
|
.iu_version = 0x90 << 24, /* Impl 9, ver 0 */
|
|
|
|
.fpu_version = 3 << 17, /* FPU version 3 (Weitek WTL3170/2) */
|
|
|
|
.mmu_version = 0x10 << 24,
|
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0x007ffff0,
|
|
|
|
.mmu_cxr_mask = 0x0000003f,
|
|
|
|
.mmu_sfsr_mask = 0xffffffff,
|
|
|
|
.mmu_trcr_mask = 0xffffffff,
|
2007-11-10 03:08:43 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "LEON2",
|
|
|
|
.iu_version = 0xf2000000,
|
|
|
|
.fpu_version = 4 << 17, /* FPU version 4 (Meiko) */
|
|
|
|
.mmu_version = 0xf2000000,
|
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0x007ffff0,
|
|
|
|
.mmu_cxr_mask = 0x0000003f,
|
|
|
|
.mmu_sfsr_mask = 0xffffffff,
|
|
|
|
.mmu_trcr_mask = 0xffffffff,
|
2007-11-10 03:08:43 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "LEON3",
|
|
|
|
.iu_version = 0xf3000000,
|
|
|
|
.fpu_version = 4 << 17, /* FPU version 4 (Meiko) */
|
|
|
|
.mmu_version = 0xf3000000,
|
2007-11-08 01:03:37 +08:00
|
|
|
.mmu_bm = 0x00004000,
|
2008-02-12 02:27:33 +08:00
|
|
|
.mmu_ctpr_mask = 0x007ffff0,
|
|
|
|
.mmu_cxr_mask = 0x0000003f,
|
|
|
|
.mmu_sfsr_mask = 0xffffffff,
|
|
|
|
.mmu_trcr_mask = 0xffffffff,
|
2007-04-01 23:55:28 +08:00
|
|
|
},
|
2007-03-25 15:55:52 +08:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2007-11-10 23:15:54 +08:00
|
|
|
static const sparc_def_t *cpu_sparc_find_by_name(const unsigned char *name)
|
2007-03-25 15:55:52 +08:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(sparc_defs) / sizeof(sparc_def_t); i++) {
|
|
|
|
if (strcasecmp(name, sparc_defs[i].name) == 0) {
|
2007-11-10 23:15:54 +08:00
|
|
|
return &sparc_defs[i];
|
2007-03-25 15:55:52 +08:00
|
|
|
}
|
|
|
|
}
|
2007-11-10 23:15:54 +08:00
|
|
|
return NULL;
|
2007-03-25 15:55:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void sparc_cpu_list (FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...))
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(sparc_defs) / sizeof(sparc_def_t); i++) {
|
|
|
|
(*cpu_fprintf)(f, "Sparc %16s IU " TARGET_FMT_lx " FPU %08x MMU %08x\n",
|
|
|
|
sparc_defs[i].name,
|
|
|
|
sparc_defs[i].iu_version,
|
|
|
|
sparc_defs[i].fpu_version,
|
|
|
|
sparc_defs[i].mmu_version);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-01 04:36:07 +08:00
|
|
|
#define GET_FLAG(a,b) ((env->psr & a)?b:'-')
|
|
|
|
|
2007-09-17 05:08:06 +08:00
|
|
|
void cpu_dump_state(CPUState *env, FILE *f,
|
2004-10-10 02:08:01 +08:00
|
|
|
int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
|
|
|
|
int flags)
|
2003-10-01 04:36:07 +08:00
|
|
|
{
|
2004-01-04 23:01:44 +08:00
|
|
|
int i, x;
|
|
|
|
|
2005-01-31 06:39:04 +08:00
|
|
|
cpu_fprintf(f, "pc: " TARGET_FMT_lx " npc: " TARGET_FMT_lx "\n", env->pc, env->npc);
|
2004-10-10 02:08:01 +08:00
|
|
|
cpu_fprintf(f, "General Registers:\n");
|
2004-01-04 23:01:44 +08:00
|
|
|
for (i = 0; i < 4; i++)
|
2007-09-20 22:54:22 +08:00
|
|
|
cpu_fprintf(f, "%%g%c: " TARGET_FMT_lx "\t", i + '0', env->gregs[i]);
|
2004-10-10 02:08:01 +08:00
|
|
|
cpu_fprintf(f, "\n");
|
2004-01-04 23:01:44 +08:00
|
|
|
for (; i < 8; i++)
|
2007-09-20 22:54:22 +08:00
|
|
|
cpu_fprintf(f, "%%g%c: " TARGET_FMT_lx "\t", i + '0', env->gregs[i]);
|
2004-10-10 02:08:01 +08:00
|
|
|
cpu_fprintf(f, "\nCurrent Register Window:\n");
|
2004-01-04 23:01:44 +08:00
|
|
|
for (x = 0; x < 3; x++) {
|
2007-09-20 22:54:22 +08:00
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
cpu_fprintf(f, "%%%c%d: " TARGET_FMT_lx "\t",
|
|
|
|
(x == 0 ? 'o' : (x == 1 ? 'l' : 'i')), i,
|
|
|
|
env->regwptr[i + x * 8]);
|
|
|
|
cpu_fprintf(f, "\n");
|
|
|
|
for (; i < 8; i++)
|
|
|
|
cpu_fprintf(f, "%%%c%d: " TARGET_FMT_lx "\t",
|
|
|
|
(x == 0 ? 'o' : x == 1 ? 'l' : 'i'), i,
|
|
|
|
env->regwptr[i + x * 8]);
|
|
|
|
cpu_fprintf(f, "\n");
|
2004-01-04 23:01:44 +08:00
|
|
|
}
|
2004-10-10 02:08:01 +08:00
|
|
|
cpu_fprintf(f, "\nFloating Point Registers:\n");
|
2004-10-01 05:55:55 +08:00
|
|
|
for (i = 0; i < 32; i++) {
|
|
|
|
if ((i & 3) == 0)
|
2004-10-10 02:08:01 +08:00
|
|
|
cpu_fprintf(f, "%%f%02d:", i);
|
|
|
|
cpu_fprintf(f, " %016lf", env->fpr[i]);
|
2004-10-01 05:55:55 +08:00
|
|
|
if ((i & 3) == 3)
|
2004-10-10 02:08:01 +08:00
|
|
|
cpu_fprintf(f, "\n");
|
2004-10-01 05:55:55 +08:00
|
|
|
}
|
2006-06-19 03:36:58 +08:00
|
|
|
#ifdef TARGET_SPARC64
|
2007-04-13 23:49:56 +08:00
|
|
|
cpu_fprintf(f, "pstate: 0x%08x ccr: 0x%02x asi: 0x%02x tl: %d fprs: %d\n",
|
2007-09-20 22:54:22 +08:00
|
|
|
env->pstate, GET_CCR(env), env->asi, env->tl, env->fprs);
|
2006-06-19 03:36:58 +08:00
|
|
|
cpu_fprintf(f, "cansave: %d canrestore: %d otherwin: %d wstate %d cleanwin %d cwp %d\n",
|
2007-09-20 22:54:22 +08:00
|
|
|
env->cansave, env->canrestore, env->otherwin, env->wstate,
|
|
|
|
env->cleanwin, NWINDOWS - 1 - env->cwp);
|
2006-06-19 03:36:58 +08:00
|
|
|
#else
|
2004-10-10 02:08:01 +08:00
|
|
|
cpu_fprintf(f, "psr: 0x%08x -> %c%c%c%c %c%c%c wim: 0x%08x\n", GET_PSR(env),
|
2007-09-20 22:54:22 +08:00
|
|
|
GET_FLAG(PSR_ZERO, 'Z'), GET_FLAG(PSR_OVF, 'V'),
|
|
|
|
GET_FLAG(PSR_NEG, 'N'), GET_FLAG(PSR_CARRY, 'C'),
|
|
|
|
env->psrs?'S':'-', env->psrps?'P':'-',
|
|
|
|
env->psret?'E':'-', env->wim);
|
2006-06-19 03:36:58 +08:00
|
|
|
#endif
|
2005-07-02 22:31:34 +08:00
|
|
|
cpu_fprintf(f, "fsr: 0x%08x\n", GET_FSR32(env));
|
2003-10-01 04:36:07 +08:00
|
|
|
}
|
2004-01-24 23:11:05 +08:00
|
|
|
|
2004-12-20 07:18:01 +08:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
2007-04-07 19:21:28 +08:00
|
|
|
target_phys_addr_t cpu_get_phys_page_debug(CPUState *env, target_ulong addr)
|
2004-01-24 23:11:05 +08:00
|
|
|
{
|
|
|
|
return addr;
|
|
|
|
}
|
2004-04-26 01:56:08 +08:00
|
|
|
|
2004-12-20 07:18:01 +08:00
|
|
|
#else
|
2005-01-31 06:39:04 +08:00
|
|
|
extern int get_physical_address (CPUState *env, target_phys_addr_t *physical, int *prot,
|
|
|
|
int *access_index, target_ulong address, int rw,
|
2007-10-14 15:07:08 +08:00
|
|
|
int mmu_idx);
|
2005-01-04 07:43:32 +08:00
|
|
|
|
2007-04-07 19:21:28 +08:00
|
|
|
target_phys_addr_t cpu_get_phys_page_debug(CPUState *env, target_ulong addr)
|
2004-12-20 07:18:01 +08:00
|
|
|
{
|
2005-01-31 06:39:04 +08:00
|
|
|
target_phys_addr_t phys_addr;
|
2004-12-20 07:18:01 +08:00
|
|
|
int prot, access_index;
|
|
|
|
|
2008-02-15 01:46:44 +08:00
|
|
|
if (get_physical_address(env, &phys_addr, &prot, &access_index, addr, 2,
|
|
|
|
MMU_KERNEL_IDX) != 0)
|
|
|
|
if (get_physical_address(env, &phys_addr, &prot, &access_index, addr,
|
|
|
|
0, MMU_KERNEL_IDX) != 0)
|
2006-06-25 23:33:53 +08:00
|
|
|
return -1;
|
2007-05-18 03:30:10 +08:00
|
|
|
if (cpu_get_physical_page_desc(phys_addr) == IO_MEM_UNASSIGNED)
|
|
|
|
return -1;
|
2004-12-20 07:18:01 +08:00
|
|
|
return phys_addr;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-04-26 01:56:08 +08:00
|
|
|
void helper_flush(target_ulong addr)
|
|
|
|
{
|
|
|
|
addr &= ~7;
|
|
|
|
tb_invalidate_page_range(addr, addr + 8);
|
|
|
|
}
|