2 * PowerPC emulation micro-operations for qemu.
4 * Copyright (c) 2003-2007 Jocelyn Mayer
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 /* General purpose registers moves */
22 void OPPROTO
glue(op_load_gpr_T0_gpr
, REG
) (void)
28 void OPPROTO
glue(op_load_gpr_T1_gpr
, REG
) (void)
34 void OPPROTO
glue(op_load_gpr_T2_gpr
, REG
) (void)
40 void OPPROTO
glue(op_store_T0_gpr_gpr
, REG
) (void)
46 void OPPROTO
glue(op_store_T1_gpr_gpr
, REG
) (void)
53 void OPPROTO
glue(op_store_T2_gpr_gpr
, REG
) (void)
60 #if defined(TARGET_PPCSPE)
61 void OPPROTO
glue(op_load_gpr64_T0_gpr
, REG
) (void)
63 T0_64
= regs
->gpr
[REG
];
67 void OPPROTO
glue(op_load_gpr64_T1_gpr
, REG
) (void)
69 T1_64
= regs
->gpr
[REG
];
74 void OPPROTO
glue(op_load_gpr64_T2_gpr
, REG
) (void)
76 T2_64
= regs
->gpr
[REG
];
81 void OPPROTO
glue(op_store_T0_gpr64_gpr
, REG
) (void)
83 regs
->gpr
[REG
] = T0_64
;
87 void OPPROTO
glue(op_store_T1_gpr64_gpr
, REG
) (void)
89 regs
->gpr
[REG
] = T1_64
;
94 void OPPROTO
glue(op_store_T2_gpr64_gpr
, REG
) (void)
96 regs
->gpr
[REG
] = T2_64
;
100 #endif /* defined(TARGET_PPCSPE) */
103 /* Condition register moves */
104 void OPPROTO
glue(op_load_crf_T0_crf
, REG
) (void)
110 void OPPROTO
glue(op_load_crf_T1_crf
, REG
) (void)
116 void OPPROTO
glue(op_store_T0_crf_crf
, REG
) (void)
122 void OPPROTO
glue(op_store_T1_crf_crf
, REG
) (void)
128 /* Floating point condition and status register moves */
129 void OPPROTO
glue(op_load_fpscr_T0_fpscr
, REG
) (void)
131 T0
= regs
->fpscr
[REG
];
136 void OPPROTO
glue(op_store_T0_fpscr_fpscr
, REG
) (void)
138 regs
->fpscr
[REG
] = (regs
->fpscr
[REG
] & 0x9) | (T0
& ~0x9);
142 void OPPROTO
glue(op_clear_fpscr_fpscr
, REG
) (void)
144 regs
->fpscr
[REG
] = (regs
->fpscr
[REG
] & 0x9);
148 void OPPROTO
glue(op_store_T0_fpscr_fpscr
, REG
) (void)
150 regs
->fpscr
[REG
] = T0
;
154 void OPPROTO
glue(op_clear_fpscr_fpscr
, REG
) (void)
156 regs
->fpscr
[REG
] = 0x0;
161 #endif /* REG <= 7 */
163 /* floating point registers moves */
164 void OPPROTO
glue(op_load_fpr_FT0_fpr
, REG
) (void)
170 void OPPROTO
glue(op_store_FT0_fpr_fpr
, REG
) (void)
176 void OPPROTO
glue(op_load_fpr_FT1_fpr
, REG
) (void)
182 void OPPROTO
glue(op_store_FT1_fpr_fpr
, REG
) (void)
188 void OPPROTO
glue(op_load_fpr_FT2_fpr
, REG
) (void)
195 void OPPROTO
glue(op_store_FT2_fpr_fpr
, REG
) (void)