提交 8579095b 编写于 作者: A aurel32

target-alpha: remove helper_load_implver

There is no need to use an helper.  Directly load the value with tcg code.
Signed-off-by: NTristan Gingold <gingold@adacore.com>
Signed-off-by: NAurelien Jarno <aurelien@aurel32.net>

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7074 c046a42c-6fe2-441c-8c8c-71466251a162
上级 ecbb5ea1
...@@ -5,7 +5,6 @@ DEF_HELPER_0(tb_flush, void) ...@@ -5,7 +5,6 @@ DEF_HELPER_0(tb_flush, void)
DEF_HELPER_2(excp, void, int, int) DEF_HELPER_2(excp, void, int, int)
DEF_HELPER_1(amask, i64, i64) DEF_HELPER_1(amask, i64, i64)
DEF_HELPER_0(load_pcc, i64) DEF_HELPER_0(load_pcc, i64)
DEF_HELPER_0(load_implver, i64)
DEF_HELPER_0(rc, i64) DEF_HELPER_0(rc, i64)
DEF_HELPER_0(rs, i64) DEF_HELPER_0(rs, i64)
......
...@@ -58,11 +58,6 @@ uint64_t helper_load_pcc (void) ...@@ -58,11 +58,6 @@ uint64_t helper_load_pcc (void)
return 0; return 0;
} }
uint64_t helper_load_implver (void)
{
return env->implver;
}
uint64_t helper_load_fpcr (void) uint64_t helper_load_fpcr (void)
{ {
uint64_t ret = 0; uint64_t ret = 0;
......
...@@ -51,6 +51,7 @@ struct DisasContext { ...@@ -51,6 +51,7 @@ struct DisasContext {
#if !defined (CONFIG_USER_ONLY) #if !defined (CONFIG_USER_ONLY)
int pal_mode; int pal_mode;
#endif #endif
CPUAlphaState *env;
uint32_t amask; uint32_t amask;
}; };
...@@ -1175,7 +1176,7 @@ static always_inline int translate_one (DisasContext *ctx, uint32_t insn) ...@@ -1175,7 +1176,7 @@ static always_inline int translate_one (DisasContext *ctx, uint32_t insn)
case 0x6C: case 0x6C:
/* IMPLVER */ /* IMPLVER */
if (rc != 31) if (rc != 31)
gen_helper_load_implver(cpu_ir[rc]); tcg_gen_movi_i64(cpu_ir[rc], ctx->env->implver);
break; break;
default: default:
goto invalid_opc; goto invalid_opc;
...@@ -2352,6 +2353,7 @@ static always_inline void gen_intermediate_code_internal (CPUState *env, ...@@ -2352,6 +2353,7 @@ static always_inline void gen_intermediate_code_internal (CPUState *env,
gen_opc_end = gen_opc_buf + OPC_MAX_SIZE; gen_opc_end = gen_opc_buf + OPC_MAX_SIZE;
ctx.pc = pc_start; ctx.pc = pc_start;
ctx.amask = env->amask; ctx.amask = env->amask;
ctx.env = env;
#if defined (CONFIG_USER_ONLY) #if defined (CONFIG_USER_ONLY)
ctx.mem_idx = 0; ctx.mem_idx = 0;
#else #else
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册