Add TCG variable opaque type.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3961 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
pbrook 2008-02-03 19:56:33 +00:00
parent 724db11840
commit ac56dd4812
4 changed files with 489 additions and 365 deletions

View file

@ -122,9 +122,9 @@
#endif
/* global register indexes */
static int cpu_env, cpu_T[2], cpu_A0;
static TCGv cpu_env, cpu_T[2], cpu_A0;
/* local register indexes (only used inside old micro ops) */
static int cpu_tmp0;
static TCGv cpu_tmp0;
#ifdef TARGET_X86_64
static int x86_64_hregs;
@ -5592,7 +5592,7 @@ static target_ulong disas_insn(DisasContext *s, target_ulong pc_start)
gen_op_mov_reg_T0(OT_QUAD, reg);
} else
{
int tmp0;
TCGv tmp0;
gen_op_mov_TN_reg(OT_LONG, 0, reg);
tmp0 = tcg_temp_new(TCG_TYPE_I32);