mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 20:19:44 +00:00
f78fb44e82
Replace op_load_gpr_{T0,T1,T2} and op_store_{T0,T1,T2} with tcg_gen_mov_tl. Introduce TCG variables cpu_gpr[0..31]. For the SPE extension, assure that ppc_gpr_t is only uint64_t for ppc64. Introduce TCG variables cpu_gprh[0..31] for upper 32 bits on ppc and helpers gen_{load,store}_gpr64. Based on suggestions by Aurelien, Thiemo and Blue. Signed-off-by: Andreas Faerber <andreas.faerber@web.de> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5153 c046a42c-6fe2-441c-8c8c-71466251a162
130 lines
2.5 KiB
C
130 lines
2.5 KiB
C
/*
|
|
* PowerPC emulation micro-operations for qemu.
|
|
*
|
|
* Copyright (c) 2003-2007 Jocelyn Mayer
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
/* Altivec registers moves */
|
|
void OPPROTO glue(op_load_avr_A0_avr, REG) (void)
|
|
{
|
|
AVR0 = env->avr[REG];
|
|
RETURN();
|
|
}
|
|
|
|
void OPPROTO glue(op_load_avr_A1_avr, REG) (void)
|
|
{
|
|
AVR1 = env->avr[REG];
|
|
RETURN();
|
|
}
|
|
|
|
void OPPROTO glue(op_load_avr_A2_avr, REG) (void)
|
|
{
|
|
AVR2 = env->avr[REG];
|
|
RETURN();
|
|
}
|
|
|
|
void OPPROTO glue(op_store_A0_avr_avr, REG) (void)
|
|
{
|
|
env->avr[REG] = AVR0;
|
|
RETURN();
|
|
}
|
|
|
|
void OPPROTO glue(op_store_A1_avr_avr, REG) (void)
|
|
{
|
|
env->avr[REG] = AVR1;
|
|
RETURN();
|
|
}
|
|
|
|
#if 0 // unused
|
|
void OPPROTO glue(op_store_A2_avr_avr, REG) (void)
|
|
{
|
|
env->avr[REG] = AVR2;
|
|
RETURN();
|
|
}
|
|
#endif
|
|
|
|
#if REG <= 7
|
|
/* Condition register moves */
|
|
void OPPROTO glue(op_load_crf_T0_crf, REG) (void)
|
|
{
|
|
T0 = env->crf[REG];
|
|
RETURN();
|
|
}
|
|
|
|
void OPPROTO glue(op_load_crf_T1_crf, REG) (void)
|
|
{
|
|
T1 = env->crf[REG];
|
|
RETURN();
|
|
}
|
|
|
|
void OPPROTO glue(op_store_T0_crf_crf, REG) (void)
|
|
{
|
|
env->crf[REG] = T0;
|
|
RETURN();
|
|
}
|
|
|
|
#if 0 // Unused
|
|
void OPPROTO glue(op_store_T1_crf_crf, REG) (void)
|
|
{
|
|
env->crf[REG] = T1;
|
|
RETURN();
|
|
}
|
|
#endif
|
|
|
|
#endif /* REG <= 7 */
|
|
|
|
/* floating point registers moves */
|
|
void OPPROTO glue(op_load_fpr_FT0_fpr, REG) (void)
|
|
{
|
|
FT0 = env->fpr[REG];
|
|
RETURN();
|
|
}
|
|
|
|
void OPPROTO glue(op_store_FT0_fpr_fpr, REG) (void)
|
|
{
|
|
env->fpr[REG] = FT0;
|
|
RETURN();
|
|
}
|
|
|
|
void OPPROTO glue(op_load_fpr_FT1_fpr, REG) (void)
|
|
{
|
|
FT1 = env->fpr[REG];
|
|
RETURN();
|
|
}
|
|
|
|
void OPPROTO glue(op_store_FT1_fpr_fpr, REG) (void)
|
|
{
|
|
env->fpr[REG] = FT1;
|
|
RETURN();
|
|
}
|
|
|
|
void OPPROTO glue(op_load_fpr_FT2_fpr, REG) (void)
|
|
{
|
|
FT2 = env->fpr[REG];
|
|
RETURN();
|
|
}
|
|
|
|
#if 0 // unused
|
|
void OPPROTO glue(op_store_FT2_fpr_fpr, REG) (void)
|
|
{
|
|
env->fpr[REG] = FT2;
|
|
RETURN();
|
|
}
|
|
#endif
|
|
|
|
#undef REG
|